@salla.sa/ui-address-autocomplete-widget 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1682,7 +1682,7 @@ d.styles = be`
1682
1682
 
1683
1683
  @media (max-width: 640px) {
1684
1684
  .dropdown {
1685
- max-height: var(--salla-autocomplete-dropdown-max-height-mobile, 35vh);
1685
+ max-height: var(--salla-autocomplete-dropdown-max-height-mobile, 25vh);
1686
1686
  border-radius: var(--salla-autocomplete-dropdown-border-radius-mobile, 0.5rem);
1687
1687
  margin-top: var(--salla-autocomplete-dropdown-margin-top-mobile, 0.25rem);
1688
1688
  }
@@ -1691,21 +1691,21 @@ d.styles = be`
1691
1691
  @media (max-width: 640px) and (max-height: 667px) {
1692
1692
  /* Smaller phones (iPhone SE, iPhone 8, etc.) */
1693
1693
  .dropdown {
1694
- max-height: var(--salla-autocomplete-dropdown-max-height-small, 30vh);
1694
+ max-height: var(--salla-autocomplete-dropdown-max-height-small, 22vh);
1695
1695
  }
1696
1696
  }
1697
1697
 
1698
1698
  @media (max-width: 640px) and (min-height: 668px) and (max-height: 896px) {
1699
1699
  /* Standard phones (iPhone 12, iPhone 13, etc.) */
1700
1700
  .dropdown {
1701
- max-height: var(--salla-autocomplete-dropdown-max-height-standard, 38vh);
1701
+ max-height: var(--salla-autocomplete-dropdown-max-height-standard, 28vh);
1702
1702
  }
1703
1703
  }
1704
1704
 
1705
1705
  @media (max-width: 640px) and (min-height: 897px) {
1706
1706
  /* Larger phones (iPhone 14 Pro Max, etc.) */
1707
1707
  .dropdown {
1708
- max-height: var(--salla-autocomplete-dropdown-max-height-large, 40vh);
1708
+ max-height: var(--salla-autocomplete-dropdown-max-height-large, 30vh);
1709
1709
  }
1710
1710
  }
1711
1711
 
package/package.json CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "name": "@salla.sa/ui-address-autocomplete-widget",
3
- "version": "1.0.2",
4
3
  "description": "Framework-agnostic address autocomplete web component using Lit",
5
4
  "type": "module",
6
5
  "main": "./dist/index.js",
@@ -37,5 +36,6 @@
37
36
  "@types/node": "^20.10.0",
38
37
  "typescript": "^5.3.3",
39
38
  "vite": "^5.0.8"
40
- }
39
+ },
40
+ "version": "1.0.4"
41
41
  }