Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added hideToggles option #3

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7101c99
upd: added hideToggles option
Mar 27, 2019
42ec5ab
upd: fill fields based on the seleted location
Mar 27, 2019
67f60a1
upd: added do not store option - it uses no internal storage for the …
Mar 27, 2019
4ab7160
upd: option to manually fill the related fields
Mar 27, 2019
52f4b75
upd: prod build
Mar 27, 2019
2df5103
upd: broader types for the autocomplete. ref: renamed nameField to ad…
Mar 27, 2019
9fb475c
upd: changed google maps key retrieval
Apr 3, 2019
7536fcb
upd: get first occurence of locality component in all results, not ju…
May 19, 2022
66ef956
upd: fallback to administrative_area_1 when locality is not present
Jul 13, 2022
c1568f7
add: timezone autoselect functionality using google timezone api [sc-…
alexander-ivanov-ampeco Jul 25, 2022
4b122fe
upd: call timezone api only if timezone field is present [cl-49574]
alexander-ivanov-ampeco Jul 25, 2022
a1daecb
upd: use same key for timezone api [sc-49574]
alexander-ivanov-ampeco Aug 8, 2022
4509e3b
upd: expect all timezones as a parameter [sc-49574]
alexander-ivanov-ampeco Aug 9, 2022
37a1ae4
Merge pull request #1 from ampeco/feature/sc-49574-multi-time-zones-a…
alexander-ivanov-ampeco Aug 9, 2022
f0ade95
ref: component to always set timezone, stop expecting all timezones p…
alexander-ivanov-ampeco Aug 10, 2022
f823749
ref: form field to call the BE for looking up timezones based on coor…
alexander-ivanov-ampeco Aug 18, 2022
7caab2c
wip: nova-address field google picker poplation for debug [sc-55763][…
petko-ampeco Sep 19, 2022
a67baae
add: fix jquery style for the region-value emit event [sc-55763]
petko-ampeco Sep 21, 2022
ae58466
upd: emit state-value event when country is US or AU
Sep 30, 2022
f953c35
Add states region option
petko-ampeco Oct 3, 2022
af8f0da
Merge pull request #2 from ampeco/feature/sc-57782-google-address-picker
petko-ampeco Oct 4, 2022
6270d5a
compile for production
petko-ampeco Oct 4, 2022
ba4ebb2
fix: populating the city field and the state/region field [fixes sc-9…
alexander-ivanov-ampeco Jul 7, 2023
6220f30
fix: state and city name when country does not have states
petko-ampeco Sep 29, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ AddressField::make('Address'),
//You can enable lat and lng inputs:
AddressField::make('Address')
->withLatLng(),

//You can enable map picking address:
AddressField::make('Address')
->withMap(),

//You can set the init location and zoom for the map:
AddressField::make('Address')
->withMap()->initLocation('24.6', '46.7')->zoom(5),
Expand Down
Loading