@lmvz-ds/components 0.35.1 → 0.36.0

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 (232) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/assets/icons/calendar.svg +7 -0
  3. package/cjs/{aria-validation-controller-BC0Eaiv4.js → aria-validation-controller-Do0uEK4t.js} +1 -1
  4. package/cjs/{directional-focus-controller-DBat-oF7.js → directional-focus-controller-3uDoin45.js} +3 -1
  5. package/cjs/{element-activation-controller-BHqCUgQv.js → element-activation-controller-BWtUKzu2.js} +1 -1
  6. package/cjs/{element.util-CRS_YJ59.js → element.util-CctmBvUY.js} +14 -0
  7. package/cjs/{index-TGsVZNDP.js → index-BgvZ4y-3.js} +12 -0
  8. package/cjs/lmvz-action-list.cjs.entry.js +5 -5
  9. package/cjs/lmvz-action.cjs.entry.js +1 -1
  10. package/cjs/lmvz-button-group.cjs.entry.js +2 -2
  11. package/cjs/lmvz-button_2.cjs.entry.js +6 -6
  12. package/cjs/lmvz-card.cjs.entry.js +2 -2
  13. package/cjs/lmvz-checkbox.cjs.entry.js +2 -2
  14. package/cjs/lmvz-chip.cjs.entry.js +2 -2
  15. package/cjs/lmvz-components.cjs.js +2 -2
  16. package/cjs/lmvz-datepicker.cjs.entry.js +2764 -0
  17. package/cjs/lmvz-header_2.cjs.entry.js +6 -6
  18. package/cjs/{lmvz-popover.cjs.entry.js → lmvz-input_2.cjs.entry.js} +230 -11
  19. package/cjs/lmvz-link.cjs.entry.js +2 -2
  20. package/cjs/lmvz-menuitem.cjs.entry.js +5 -5
  21. package/cjs/lmvz-message.cjs.entry.js +2 -2
  22. package/cjs/lmvz-modal.cjs.entry.js +4 -4
  23. package/cjs/lmvz-radio.cjs.entry.js +3 -3
  24. package/cjs/lmvz-select.cjs.entry.js +3 -3
  25. package/cjs/lmvz-snackbar.cjs.entry.js +2 -2
  26. package/cjs/lmvz-spinner.cjs.entry.js +2 -2
  27. package/cjs/lmvz-tab.cjs.entry.js +2 -2
  28. package/cjs/lmvz-tabs.cjs.entry.js +4 -4
  29. package/cjs/lmvz-toggle.cjs.entry.js +4 -5
  30. package/cjs/loader.cjs.js +2 -2
  31. package/cjs/{async.util-Dnl6c82X.js → stencil.util-TjS8_DoU.js} +13 -1
  32. package/collection/assets/icons/calendar.svg +7 -0
  33. package/collection/collection-manifest.json +1 -0
  34. package/collection/components/lmvz-action-list/lmvz-action-list.css +1 -0
  35. package/collection/components/lmvz-button/lmvz-button.css +1 -0
  36. package/collection/components/lmvz-card/lmvz-card.css +1 -0
  37. package/collection/components/lmvz-datepicker/lmvz-datepicker.css +166 -0
  38. package/collection/components/lmvz-datepicker/lmvz-datepicker.js +988 -0
  39. package/collection/components/lmvz-datepicker/lmvz-datepicker.utils.js +189 -0
  40. package/collection/components/lmvz-datepicker/test/lmvz-datepicker.utils.unit.js +300 -0
  41. package/collection/components/lmvz-header/lmvz-header.js +1 -1
  42. package/collection/components/lmvz-icon/lmvz-icon.js +1 -1
  43. package/collection/components/lmvz-input/lmvz-input.css +2 -1
  44. package/collection/components/lmvz-input/lmvz-input.js +40 -2
  45. package/collection/components/lmvz-link/lmvz-link.js +1 -1
  46. package/collection/components/lmvz-menuitem/lmvz-menuitem.js +1 -1
  47. package/collection/components/lmvz-message/lmvz-message.js +1 -1
  48. package/collection/components/lmvz-modal/lmvz-modal.js +1 -1
  49. package/collection/components/lmvz-popover/lmvz-popover.js +6 -2
  50. package/collection/components/lmvz-radio/lmvz-radio.js +1 -1
  51. package/collection/components/lmvz-select/lmvz-select.js +1 -1
  52. package/collection/components/lmvz-snackbar/lmvz-snackbar.js +1 -1
  53. package/collection/components/lmvz-spinner/lmvz-spinner.js +1 -1
  54. package/collection/components/lmvz-tab/lmvz-tab.js +1 -1
  55. package/collection/components/lmvz-tabs/lmvz-tabs.js +1 -1
  56. package/collection/components/lmvz-toggle/lmvz-toggle.js +1 -1
  57. package/collection/integration/header-integration/header-integration.js +1 -1
  58. package/collection/utils/aria/aria.constants.js +7 -0
  59. package/collection/utils/aria/directional-focus-controller.js +3 -1
  60. package/collection/utils/element/element.util.js +5 -0
  61. package/components/index.d.ts +2 -0
  62. package/components/index.d.ts.bak +2 -0
  63. package/components/index.js +1 -1
  64. package/components/lmvz-action-list.js +1 -1
  65. package/components/lmvz-action.js +1 -1
  66. package/components/lmvz-button-group.js +1 -1
  67. package/components/lmvz-button.js +1 -1
  68. package/components/lmvz-card.js +1 -1
  69. package/components/lmvz-checkbox.js +1 -1
  70. package/components/lmvz-chip.js +1 -1
  71. package/components/lmvz-datepicker.d.ts +11 -0
  72. package/components/lmvz-datepicker.d.ts.bak +11 -0
  73. package/components/lmvz-datepicker.js +1 -0
  74. package/components/lmvz-header.js +1 -1
  75. package/components/lmvz-icon.js +1 -1
  76. package/components/lmvz-input.js +1 -1
  77. package/components/lmvz-link.js +1 -1
  78. package/components/lmvz-menuitem.js +1 -1
  79. package/components/lmvz-message.js +1 -1
  80. package/components/lmvz-modal.js +1 -1
  81. package/components/lmvz-popover.js +1 -1
  82. package/components/lmvz-radio.js +1 -1
  83. package/components/lmvz-select.js +1 -1
  84. package/components/lmvz-snackbar.js +1 -1
  85. package/components/lmvz-spinner.js +1 -1
  86. package/components/lmvz-tab.js +1 -1
  87. package/components/lmvz-tabs.js +1 -1
  88. package/components/lmvz-toggle.js +1 -1
  89. package/components/{p-Chj7BuUZ.js → p--FDdvoIg.js} +1 -1
  90. package/components/{p-CFTmV4XZ.js → p-BAj4FkUt.js} +1 -1
  91. package/components/{p-CxLd309t.js → p-BLMXiDE0.js} +1 -1
  92. package/components/{p-DGg7OzDl.js → p-BPYBmylI.js} +1 -1
  93. package/components/p-BhALzK62.js +1 -0
  94. package/components/p-Bnri3fEI.js +1 -0
  95. package/components/p-C-pRMuMh.js +1 -0
  96. package/components/p-CPuI0_r_.js +1 -0
  97. package/components/p-CWpl0WaZ.js +1 -0
  98. package/components/{p-D5FL8n1q.js → p-CrQCHVKL.js} +1 -1
  99. package/components/p-DqdrUt_G.js +1 -0
  100. package/components/{p-CgK6-SEe.js → p-diOze8wI.js} +1 -1
  101. package/esm/{aria-validation-controller-BvOU1BO8.js → aria-validation-controller-Cp6pofER.js} +1 -1
  102. package/esm/{directional-focus-controller-DgAdCZrG.js → directional-focus-controller-Bhu7RqYE.js} +3 -1
  103. package/esm/{element-activation-controller-7PNSl6io.js → element-activation-controller-BuwyVq4A.js} +1 -1
  104. package/esm/{element.util-BFcYfHYq.js → element.util-Bd9JyKJZ.js} +13 -1
  105. package/esm/{index-BPeerEwm.js → index-BOXP1Vx0.js} +12 -1
  106. package/esm/lmvz-action-list.entry.js +5 -5
  107. package/esm/lmvz-action.entry.js +1 -1
  108. package/esm/lmvz-button-group.entry.js +2 -2
  109. package/esm/lmvz-button_2.entry.js +6 -6
  110. package/esm/lmvz-card.entry.js +2 -2
  111. package/esm/lmvz-checkbox.entry.js +2 -2
  112. package/esm/lmvz-chip.entry.js +2 -2
  113. package/esm/lmvz-components.js +3 -3
  114. package/esm/lmvz-datepicker.entry.js +2762 -0
  115. package/esm/lmvz-header_2.entry.js +6 -6
  116. package/esm/{lmvz-popover.entry.js → lmvz-input_2.entry.js} +227 -9
  117. package/esm/lmvz-link.entry.js +2 -2
  118. package/esm/lmvz-menuitem.entry.js +5 -5
  119. package/esm/lmvz-message.entry.js +2 -2
  120. package/esm/lmvz-modal.entry.js +4 -4
  121. package/esm/lmvz-radio.entry.js +3 -3
  122. package/esm/lmvz-select.entry.js +3 -3
  123. package/esm/lmvz-snackbar.entry.js +2 -2
  124. package/esm/lmvz-spinner.entry.js +2 -2
  125. package/esm/lmvz-tab.entry.js +2 -2
  126. package/esm/lmvz-tabs.entry.js +4 -4
  127. package/esm/lmvz-toggle.entry.js +4 -5
  128. package/esm/loader.js +3 -3
  129. package/esm/{async.util-DZj20TV1.js → stencil.util-C3QOYC8E.js} +13 -1
  130. package/hydrate/index.js +3083 -241
  131. package/hydrate/index.mjs +3083 -241
  132. package/lmvz-components/lmvz-components.esm.js +1 -1
  133. package/lmvz-components/{p-eb62d4af.entry.js → p-0af0211a.entry.js} +1 -1
  134. package/lmvz-components/{p-0c05f24b.entry.js → p-3d5867df.entry.js} +1 -1
  135. package/lmvz-components/{p-a887018d.entry.js → p-492adf21.entry.js} +1 -1
  136. package/lmvz-components/{p-24d13be6.entry.js → p-4fa6e72f.entry.js} +1 -1
  137. package/lmvz-components/{p-5bbbcfc0.entry.js → p-544e3ccb.entry.js} +1 -1
  138. package/lmvz-components/{p-eb4c5a6f.entry.js → p-63f6a596.entry.js} +1 -1
  139. package/lmvz-components/p-7a7aa922.entry.js +1 -0
  140. package/lmvz-components/p-8022c6dc.entry.js +1 -0
  141. package/lmvz-components/{p-BPeerEwm.js → p-BOXP1Vx0.js} +2 -2
  142. package/lmvz-components/p-Bd9JyKJZ.js +1 -0
  143. package/lmvz-components/{p-D9PQIBzA.js → p-BeY96W7m.js} +1 -1
  144. package/lmvz-components/p-C3QOYC8E.js +1 -0
  145. package/lmvz-components/p-GGkwaiT6.js +1 -0
  146. package/lmvz-components/{p-wlMjNjuv.js → p-UhNgD4L3.js} +1 -1
  147. package/lmvz-components/{p-d4154a65.entry.js → p-a611c110.entry.js} +1 -1
  148. package/lmvz-components/{p-46edf36f.entry.js → p-b1bb4393.entry.js} +1 -1
  149. package/lmvz-components/p-b50b1cb5.entry.js +1 -0
  150. package/lmvz-components/{p-f42b16e6.entry.js → p-b932cf91.entry.js} +1 -1
  151. package/lmvz-components/p-bff115d4.entry.js +1 -0
  152. package/lmvz-components/p-d280d21a.entry.js +1 -0
  153. package/lmvz-components/{p-c2544495.entry.js → p-d48203f9.entry.js} +1 -1
  154. package/lmvz-components/{p-e4ce63b3.entry.js → p-d9aede81.entry.js} +1 -1
  155. package/lmvz-components/{p-ecbd9e93.entry.js → p-dbfbcb74.entry.js} +1 -1
  156. package/lmvz-components/p-f0e28f3a.entry.js +1 -0
  157. package/lmvz-components/{p-aaa7691c.entry.js → p-f853faae.entry.js} +1 -1
  158. package/lmvz-components/p-fa2efc42.entry.js +1 -0
  159. package/lmvz-components/{p-194a3af5.entry.js → p-fe6f5bdc.entry.js} +1 -1
  160. package/manifest.json +940 -159
  161. package/package.json +5 -1
  162. package/types/api/ds.constants.d.ts +0 -1
  163. package/types/api/ds.types.d.ts +8 -0
  164. package/types/components/lmvz-action/lmvz-action.d.ts +0 -1
  165. package/types/components/lmvz-action-list/lmvz-action-list.d.ts +0 -1
  166. package/types/components/lmvz-button/lmvz-button.d.ts +0 -1
  167. package/types/components/lmvz-button-group/lmvz-button-group.d.ts +0 -1
  168. package/types/components/lmvz-card/lmvz-card.d.ts +0 -1
  169. package/types/components/lmvz-checkbox/lmvz-checkbox.d.ts +0 -1
  170. package/types/components/lmvz-chip/lmvz-chip.d.ts +0 -1
  171. package/types/components/lmvz-datepicker/lmvz-datepicker.d.ts +75 -0
  172. package/types/components/lmvz-datepicker/lmvz-datepicker.utils.d.ts +22 -0
  173. package/types/components/lmvz-datepicker/test/lmvz-datepicker.utils.unit.d.ts +1 -0
  174. package/types/components/lmvz-header/lmvz-header.d.ts +0 -1
  175. package/types/components/lmvz-icon/lmvz-icon.d.ts +0 -1
  176. package/types/components/lmvz-input/lmvz-input.d.ts +5 -1
  177. package/types/components/lmvz-link/lmvz-link.d.ts +0 -1
  178. package/types/components/lmvz-menuitem/lmvz-menuitem.d.ts +0 -1
  179. package/types/components/lmvz-message/lmvz-message.d.ts +0 -1
  180. package/types/components/lmvz-message/public.d.ts +0 -1
  181. package/types/components/lmvz-modal/lmvz-modal.d.ts +0 -1
  182. package/types/components/lmvz-modal/test/testing.d.ts +0 -1
  183. package/types/components/lmvz-popover/lmvz-popover.d.ts +0 -1
  184. package/types/components/lmvz-radio/lmvz-radio.d.ts +0 -1
  185. package/types/components/lmvz-select/lmvz-select.d.ts +0 -1
  186. package/types/components/lmvz-snackbar/lmvz-snackbar.d.ts +0 -1
  187. package/types/components/lmvz-snackbar/public.d.ts +0 -1
  188. package/types/components/lmvz-snackbar/snackbar-controller.d.ts +0 -1
  189. package/types/components/lmvz-spinner/lmvz-spinner.d.ts +0 -1
  190. package/types/components/lmvz-tab/lmvz-tab.d.ts +0 -1
  191. package/types/components/lmvz-tabs/lmvz-tabs.d.ts +0 -1
  192. package/types/components/lmvz-toggle/lmvz-toggle.d.ts +0 -1
  193. package/types/components.d.ts +216 -0
  194. package/types/index.d.ts +0 -1
  195. package/types/utils/aria/aria-validation-controller.d.ts +0 -1
  196. package/types/utils/aria/aria.constants.d.ts +1 -1
  197. package/types/utils/aria/directional-focus-controller.d.ts +0 -1
  198. package/types/utils/aria/element-activation-controller.d.ts +0 -1
  199. package/types/utils/async/async.util.d.ts +1 -2
  200. package/types/utils/data/event.util.d.ts +0 -1
  201. package/types/utils/data/number.util.d.ts +0 -1
  202. package/types/utils/data/object.util.d.ts +0 -1
  203. package/types/utils/data/time.util.d.ts +0 -1
  204. package/types/utils/element/element.util.d.ts +1 -1
  205. package/types/utils/environment.d.ts +0 -1
  206. package/types/utils/icons/icons-registry.d.ts +0 -1
  207. package/types/utils/icons/icons.d.ts +0 -1
  208. package/types/utils/icons/icons.unit.d.ts +0 -1
  209. package/types/utils/icons/public.d.ts +0 -1
  210. package/types/utils/public.d.ts +0 -1
  211. package/types/utils/radio/radio-group-controller.d.ts +0 -1
  212. package/types/utils/stencil/assets.d.ts +0 -1
  213. package/types/utils/stencil/reactive-controller-host.d.ts +0 -1
  214. package/types/utils/stencil/stencil.util.d.ts +0 -1
  215. package/cjs/lmvz-input.cjs.entry.js +0 -186
  216. package/cjs/stencil.util-CBrPLd-F.js +0 -17
  217. package/components/p-BVzxNP7h.js +0 -1
  218. package/components/p-DLUsBYJH.js +0 -1
  219. package/components/p-zMWemcoB.js +0 -1
  220. package/esm/lmvz-input.entry.js +0 -184
  221. package/esm/stencil.util-D2-5rsN3.js +0 -15
  222. package/lmvz-components/p-4416d688.entry.js +0 -1
  223. package/lmvz-components/p-489d9912.entry.js +0 -1
  224. package/lmvz-components/p-5ff55ba9.entry.js +0 -1
  225. package/lmvz-components/p-888e04d7.entry.js +0 -1
  226. package/lmvz-components/p-9dc420e2.entry.js +0 -1
  227. package/lmvz-components/p-BFcYfHYq.js +0 -1
  228. package/lmvz-components/p-BuEA0MWd.js +0 -1
  229. package/lmvz-components/p-DZj20TV1.js +0 -1
  230. package/lmvz-components/p-af48eccb.entry.js +0 -1
  231. package/lmvz-components/p-bc237ab7.entry.js +0 -1
  232. package/lmvz-components/p-bh9cItsP.js +0 -1
@@ -1,11 +1,10 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-TGsVZNDP.js');
4
- var ariaValidationController = require('./aria-validation-controller-BC0Eaiv4.js');
3
+ var index = require('./index-BgvZ4y-3.js');
4
+ var ariaValidationController = require('./aria-validation-controller-Do0uEK4t.js');
5
5
  var reactiveControllerHost = require('./reactive-controller-host-Bc6B_T45.js');
6
- var stencil_util = require('./stencil.util-CBrPLd-F.js');
6
+ var stencil_util = require('./stencil.util-TjS8_DoU.js');
7
7
  require('./aria-loader-DWUVcapD.js');
8
- require('./async.util-Dnl6c82X.js');
9
8
 
10
9
  const lmvzToggleCss = () => `@layer lmvz-ds.reset, lmvz-ds.theme, lmvz-ds.components, lmvz-ds.overrides; @layer lmvz-ds.theme { @font-face { font-family: Router; src: local('RouterBook-Regular'), local('Router-Book'), url('/assets/fonts/Router-Book.woff') format('woff'); font-weight: 400; } @font-face { font-family: Router; src: local('RouterMedium-Regular'), local('Router-Medium'), url('/assets/fonts/Router-Medium.woff') format('woff'); font-weight: 500; } @font-face { font-family: Router; src: local('RouterBold-Regular'), local('Router-Bold'), url('/assets/fonts/Router-Bold.woff') format('woff'); font-weight: 700; } } .sc-lmvz-toggle-h { display: inline-flex; align-items: center; gap: var(--lmvz-component-input-gap-md, clamp(0.5rem, 0.44rem + 0.26vw, 0.75rem)); padding-block: var(--lmvz-dimension-8-2, clamp(0.13rem, 0.03rem + 0.39vw, 0.5rem)); padding-inline: var(--lmvz-dimension-10-4, clamp(0.25rem, 0.16rem + 0.39vw, 0.63rem)); border-radius: var(--lmvz-semantic-border-radius-round, 999px); cursor: pointer; background-color: transparent; user-select: none; } .sc-lmvz-toggle-h:not([disabled]):hover { background-color: var(--lmvz-semantic-color-int-tertiary-hover, #f0f0f0); } [checked].sc-lmvz-toggle-h { background-color: var(--lmvz-semantic-color-status-active, #f6fbfe); } [disabled][checked].sc-lmvz-toggle-h { background-color: var(--lmvz-semantic-color-status-active, #f6fbfe); } [disabled].sc-lmvz-toggle-h { cursor: not-allowed; opacity: var(--lmvz-component-input-disabled-opacity, 40%); pointer-events: none; } .track.sc-lmvz-toggle { position: relative; flex-shrink: 0; width: var(--lmvz-global-s32, 32px); height: var(--lmvz-global-s20, 20px); border-radius: var(--lmvz-semantic-border-radius-round, 999px); background-color: var(--lmvz-semantic-color-surface-input-primary, #ffffff); border: var(--lmvz-semantic-border-width-default, 1px) solid var(--lmvz-semantic-color-border-default, #e0e0e0); } .sc-lmvz-toggle-h:not([disabled]):hover .track.sc-lmvz-toggle { border-color: var(--lmvz-semantic-color-border-hover, #a1a1a1); } [checked].sc-lmvz-toggle-h .track.sc-lmvz-toggle { border-color: var(--lmvz-semantic-color-border-active, #0f8acc); } input.sc-lmvz-toggle { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; margin: 0; cursor: inherit; } .thumb.sc-lmvz-toggle { position: absolute; width: var(--lmvz-global-s13, 13px); height: var(--lmvz-global-s13, 13px); border-radius: 50%; background-color: var(--lmvz-semantic-color-on-surface-input-secondary, #545454); top: 50%; transform: translateY(-50%); left: var(--lmvz-global-s4, 4px); transition: left 0.2s ease, background-color 0.2s ease; pointer-events: none; } [checked].sc-lmvz-toggle-h .thumb.sc-lmvz-toggle { left: calc(var(--lmvz-global-s4, 4px) + var(--lmvz-global-s11, 11px)); background-color: var(--lmvz-semantic-color-status-on-active, #0e7ab4); } label.sc-lmvz-toggle { font: var(--lmvz-typography-body-md, 400 clamp(0.88rem, 0.84rem + 0.13vw, 1rem) / 1.5 Router); color: var(--lmvz-semantic-color-on-surface-primary, #000000); cursor: pointer; }`;
11
10
 
@@ -83,7 +82,7 @@ const LmvzToggle = class extends reactiveControllerHost.ReactiveControllerHost {
83
82
  this.lmvzChange.emit(newChecked);
84
83
  };
85
84
  render() {
86
- return (index.h(index.Host, { key: '901f821ddae696fe877435bf20d08e4032cd61ee' }, index.h("span", { key: 'bbac0ab3e40e426be511cc49a0dcb2497edd7a9a', class: "track" }, index.h("input", { key: '1df7a78df28517189f690c6d453193e30d97d9ea', type: "checkbox", role: "switch", id: this.toggleId, checked: this.checked, disabled: this.disabled, required: this.required, name: this.name, value: this.value, form: this.form, ref: (el) => (this.nativeInputElement = el), onChange: this.handleChange }), index.h("span", { key: 'e975c1c280983355f2504fba15553a9f19e4216f', class: "thumb", "aria-hidden": "true" })), index.h("label", { key: '09b3305a1d0d6c116310cf88d1f8a92f6856f57e', htmlFor: this.toggleId }, this.label)));
85
+ return (index.h(index.Host, { key: 'bde08dcbd39c0c02602590bc0c536b5d671fa76e' }, index.h("span", { key: '2567f70f81014d8ab7b9073a0d59f33bfeeca6a5', class: "track" }, index.h("input", { key: '88c9fc7523489dd0decf5b5f3ddda604aadcf8a9', type: "checkbox", role: "switch", id: this.toggleId, checked: this.checked, disabled: this.disabled, required: this.required, name: this.name, value: this.value, form: this.form, ref: (el) => (this.nativeInputElement = el), onChange: this.handleChange }), index.h("span", { key: '816fc007d7c87acc8ff0286eb861bd29059b44eb', class: "thumb", "aria-hidden": "true" })), index.h("label", { key: '9525cd785d2c6c3b6242c6f5eac215996b881873', htmlFor: this.toggleId }, this.label)));
87
86
  }
88
87
  static get formAssociated() { return true; }
89
88
  static get watchers() { return {
package/cjs/loader.cjs.js CHANGED
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-TGsVZNDP.js');
3
+ var index = require('./index-BgvZ4y-3.js');
4
4
  var appGlobals = require('./app-globals-V2Kpy_OQ.js');
5
5
 
6
6
  const defineCustomElements = async (win, options) => {
7
7
  if (typeof window === 'undefined') return undefined;
8
8
  await appGlobals.globalScripts();
9
- return index.bootstrapLazy([["lmvz-modal.cjs",[[769,"lmvz-modal",{"open":[1540],"closeLabel":[1,"close-label"],"hasHeader":[32]},[[0,"submit","handleFormDialogSubmit"]],{"open":[{"handleOpenChange":0}]}]]],["lmvz-message.cjs",[[769,"lmvz-message",{"type":[513],"live":[1],"leadingIcon":[4,"leading-icon"],"dismissible":[4],"closeLabel":[1,"close-label"],"actionLabel":[1,"action-label"]}]]],["lmvz-snackbar.cjs",[[513,"lmvz-snackbar",{"status":[1537],"message":[1025],"duration":[1026],"priority":[1025],"actionLabel":[1025,"action-label"],"animationClass":[32],"show":[64],"hide":[64]},null,{"status":[{"onStatusChange":0}]}]]],["lmvz-link.cjs",[[785,"lmvz-link",{"href":[513],"target":[513],"rel":[1],"type":[1537],"externalLabel":[1,"external-label"]},null,{"type":[{"normalizeType":0}]}]]],["lmvz-header_2.cjs",[[769,"lmvz-header",{"role":[2561],"lmvzActiveNav":[1,"lmvz-active-nav"],"initFocus":[64]},null,{"lmvzActiveNav":[{"handleActiveNavChange":0}]}],[774,"lmvz-menuitem",{"role":[2561],"ti":[2562,"tabindex"]}]]],["lmvz-action.cjs",[[257,"lmvz-action"]]],["lmvz-action-list.cjs",[[774,"lmvz-action-list",{"label":[1],"initFocus":[64]}]]],["lmvz-card.cjs",[[774,"lmvz-card",{"cardTitle":[1,"card-title"],"imageUrl":[1,"image-url"],"description":[1],"primaryActionLabel":[1,"primary-action-label"]}]]],["lmvz-checkbox.cjs",[[578,"lmvz-checkbox",{"label":[1],"checked":[1540],"value":[1],"name":[1],"disabled":[516],"required":[516],"error":[516],"errorMessage":[1,"error-message"],"helperText":[1,"helper-text"],"form":[1],"autofocus":[4],"checkedState":[32],"focusInput":[64],"checkValidity":[64],"reportValidity":[64]},null,{"checked":[{"handleCheckedChange":0}]}]]],["lmvz-chip.cjs",[[769,"lmvz-chip",{"type":[1537],"size":[1537]},null,{"type":[{"normalizeType":0}],"size":[{"normalizeSize":0}]}]]],["lmvz-input.cjs",[[838,"lmvz-input",{"value":[1025],"label":[1],"helperText":[1,"helper-text"],"placeholder":[1],"disabled":[516],"readonly":[516],"required":[516],"name":[1],"type":[1],"errorMessage":[1,"error-message"],"autocomplete":[1],"inputmode":[1],"autocorrect":[1],"autocapitalize":[1],"spellcheck":[4],"autofocus":[4],"minlength":[2],"maxlength":[2],"pattern":[1],"min":[8],"max":[8],"step":[8],"form":[1],"size":[513],"error":[6660],"nativeError":[32],"setValue":[64],"focusInput":[64],"blurInput":[64],"select":[64],"checkValidity":[64],"reportValidity":[64],"getInputElement":[64]},null,{"value":[{"handleValueChange":0}],"disabled":[{"handleDisabledChange":0}]}]]],["lmvz-menuitem.cjs",[[774,"lmvz-menuitem",{"role":[2561],"ti":[2562,"tabindex"]}]]],["lmvz-popover.cjs",[[769,"lmvz-popover",{"open":[1540],"anchor":[1],"placement":[1],"size":[1],"autoFocus":[4,"auto-focus"],"label":[1],"anchorEl":[32],"show":[64],"hide":[64],"toggle":[64]},null,{"open":[{"handleOpenChange":0}],"anchor":[{"handleAnchorChange":1}]}]]],["lmvz-radio.cjs",[[578,"lmvz-radio",{"label":[1],"checked":[1540],"value":[1],"name":[1],"disabled":[516],"required":[516],"error":[516],"helperText":[1,"helper-text"],"form":[513],"autofocus":[4],"focusInput":[64],"checkValidity":[64],"reportValidity":[64]},[[0,"keydown","handleKeydown"]],{"checked":[{"handleCheckedChange":0}],"value":[{"handleValueChange":0}],"label":[{"handleLabelChange":0}]}]]],["lmvz-select.cjs",[[774,"lmvz-select",{"value":[1025],"label":[1],"helperText":[1,"helper-text"],"disabled":[516],"required":[516],"name":[1],"size":[513],"highlighted":[516],"selectedLabel":[32]},null,{"value":[{"handleValueChange":0}]}]]],["lmvz-spinner.cjs",[[513,"lmvz-spinner",{"size":[513],"ariaLabel":[513,"aria-label"]}]]],["lmvz-tab.cjs",[[785,"lmvz-tab",{"value":[513],"disabled":[516],"selected":[516],"vertical":[516]}]]],["lmvz-tabs.cjs",[[769,"lmvz-tabs",{"value":[1537],"orientation":[1537],"resolvedValue":[32],"initFocus":[64],"activateTab":[64],"getTabElements":[64],"setTabPanelIds":[64]},null,{"value":[{"handleValueChange":0}],"orientation":[{"handleOrientationChange":0}]}]]],["lmvz-toggle.cjs",[[578,"lmvz-toggle",{"label":[1],"checked":[1540],"disabled":[516],"required":[516],"name":[1],"value":[1],"form":[1],"focusToggle":[64],"blurToggle":[64],"checkValidity":[64],"reportValidity":[64],"getInputElement":[64]},null,{"checked":[{"handleCheckedChange":0}],"disabled":[{"handleDisabledChange":0}]}]]],["lmvz-button-group.cjs",[[769,"lmvz-button-group",{"stacked":[516],"primaryEnabledAction":[2064],"hasActions":[2052,"has-actions"]}]]],["lmvz-button_2.cjs",[[785,"lmvz-button",{"ti":[514,"tabindex"],"scale":[513],"variant":[513],"disabled":[516],"type":[1],"form":[1],"formMethod":[1,"form-method"],"name":[1],"value":[1],"buttonRole":[1,"button-role"]}],[514,"lmvz-icon",{"icon":[513],"weight":[513],"size":[513],"iconset":[513],"ariaLabel":[513,"aria-label"],"iconData":[32],"visible":[32]},null,{"icon":[{"loadIconPathData":0}],"iconset":[{"loadIconPathData":0}]}]]]], options);
9
+ return index.bootstrapLazy([["lmvz-datepicker.cjs",[[593,"lmvz-datepicker",{"value":[6145],"visibleMonth":[6145,"visible-month"],"min":[1],"max":[1],"locale":[1],"firstDayOfWeek":[2,"first-day-of-week"],"disabled":[516],"readonly":[516],"required":[516],"name":[513],"label":[1],"placeholder":[1],"helperText":[1,"helper-text"],"errorMessage":[1,"error-message"],"open":[1540],"displayFormat":[1,"display-format"],"focusedDate":[32],"valueDate":[32],"visibleMonthDate":[32],"inputText":[32],"hasUnparseableInput":[32],"isInvalid":[32],"checkValidity":[64],"reportValidity":[64]},[[0,"keydown","handleKeydown"],[0,"focusin","handleInputFocus"],[0,"click","handleInputFocus"]],{"required":[{"handleValidityRelevantPropChange":0}],"min":[{"handleValidityRelevantPropChange":0}],"max":[{"handleValidityRelevantPropChange":0}],"locale":[{"handleDisplayFormatChange":0}],"displayFormat":[{"handleDisplayFormatChange":0}],"disabled":[{"handleDisabledChange":0}]}]]],["lmvz-modal.cjs",[[769,"lmvz-modal",{"open":[1540],"closeLabel":[1,"close-label"],"hasHeader":[32]},[[0,"submit","handleFormDialogSubmit"]],{"open":[{"handleOpenChange":0}]}]]],["lmvz-message.cjs",[[769,"lmvz-message",{"type":[513],"live":[1],"leadingIcon":[4,"leading-icon"],"dismissible":[4],"closeLabel":[1,"close-label"],"actionLabel":[1,"action-label"]}]]],["lmvz-snackbar.cjs",[[513,"lmvz-snackbar",{"status":[1537],"message":[1025],"duration":[1026],"priority":[1025],"actionLabel":[1025,"action-label"],"animationClass":[32],"show":[64],"hide":[64]},null,{"status":[{"onStatusChange":0}]}]]],["lmvz-link.cjs",[[785,"lmvz-link",{"href":[513],"target":[513],"rel":[1],"type":[1537],"externalLabel":[1,"external-label"]},null,{"type":[{"normalizeType":0}]}]]],["lmvz-header_2.cjs",[[769,"lmvz-header",{"role":[2561],"lmvzActiveNav":[1,"lmvz-active-nav"],"initFocus":[64]},null,{"lmvzActiveNav":[{"handleActiveNavChange":0}]}],[774,"lmvz-menuitem",{"role":[2561],"ti":[2562,"tabindex"]}]]],["lmvz-action.cjs",[[257,"lmvz-action"]]],["lmvz-action-list.cjs",[[774,"lmvz-action-list",{"label":[1],"initFocus":[64]}]]],["lmvz-card.cjs",[[774,"lmvz-card",{"cardTitle":[1,"card-title"],"imageUrl":[1,"image-url"],"description":[1],"primaryActionLabel":[1,"primary-action-label"]}]]],["lmvz-checkbox.cjs",[[578,"lmvz-checkbox",{"label":[1],"checked":[1540],"value":[1],"name":[1],"disabled":[516],"required":[516],"error":[516],"errorMessage":[1,"error-message"],"helperText":[1,"helper-text"],"form":[1],"autofocus":[4],"checkedState":[32],"focusInput":[64],"checkValidity":[64],"reportValidity":[64]},null,{"checked":[{"handleCheckedChange":0}]}]]],["lmvz-chip.cjs",[[769,"lmvz-chip",{"type":[1537],"size":[1537]},null,{"type":[{"normalizeType":0}],"size":[{"normalizeSize":0}]}]]],["lmvz-menuitem.cjs",[[774,"lmvz-menuitem",{"role":[2561],"ti":[2562,"tabindex"]}]]],["lmvz-radio.cjs",[[578,"lmvz-radio",{"label":[1],"checked":[1540],"value":[1],"name":[1],"disabled":[516],"required":[516],"error":[516],"helperText":[1,"helper-text"],"form":[513],"autofocus":[4],"focusInput":[64],"checkValidity":[64],"reportValidity":[64]},[[0,"keydown","handleKeydown"]],{"checked":[{"handleCheckedChange":0}],"value":[{"handleValueChange":0}],"label":[{"handleLabelChange":0}]}]]],["lmvz-select.cjs",[[774,"lmvz-select",{"value":[1025],"label":[1],"helperText":[1,"helper-text"],"disabled":[516],"required":[516],"name":[1],"size":[513],"highlighted":[516],"selectedLabel":[32]},null,{"value":[{"handleValueChange":0}]}]]],["lmvz-spinner.cjs",[[513,"lmvz-spinner",{"size":[513],"ariaLabel":[513,"aria-label"]}]]],["lmvz-tab.cjs",[[785,"lmvz-tab",{"value":[513],"disabled":[516],"selected":[516],"vertical":[516]}]]],["lmvz-tabs.cjs",[[769,"lmvz-tabs",{"value":[1537],"orientation":[1537],"resolvedValue":[32],"initFocus":[64],"activateTab":[64],"getTabElements":[64],"setTabPanelIds":[64]},null,{"value":[{"handleValueChange":0}],"orientation":[{"handleOrientationChange":0}]}]]],["lmvz-toggle.cjs",[[578,"lmvz-toggle",{"label":[1],"checked":[1540],"disabled":[516],"required":[516],"name":[1],"value":[1],"form":[1],"focusToggle":[64],"blurToggle":[64],"checkValidity":[64],"reportValidity":[64],"getInputElement":[64]},null,{"checked":[{"handleCheckedChange":0}],"disabled":[{"handleDisabledChange":0}]}]]],["lmvz-button-group.cjs",[[769,"lmvz-button-group",{"stacked":[516],"primaryEnabledAction":[2064],"hasActions":[2052,"has-actions"]}]]],["lmvz-input_2.cjs",[[838,"lmvz-input",{"value":[1025],"label":[1],"helperText":[1,"helper-text"],"placeholder":[1],"disabled":[516],"readonly":[516],"required":[516],"name":[1],"type":[1],"errorMessage":[1,"error-message"],"autocomplete":[1],"inputmode":[1],"autocorrect":[1],"autocapitalize":[1],"spellcheck":[4],"autofocus":[4],"minlength":[2],"maxlength":[2],"pattern":[1],"min":[8],"max":[8],"step":[8],"form":[1],"size":[513],"error":[6660],"nativeError":[32],"setValue":[64],"focusInput":[64],"blurInput":[64],"select":[64],"checkValidity":[64],"reportValidity":[64],"getInputElement":[64]},null,{"value":[{"handleValueChange":0}],"disabled":[{"handleDisabledChange":0}]}],[769,"lmvz-popover",{"open":[1540],"anchor":[1],"placement":[1],"size":[1],"autoFocus":[4,"auto-focus"],"label":[1],"anchorEl":[32],"show":[64],"hide":[64],"toggle":[64]},null,{"open":[{"handleOpenChange":0}],"anchor":[{"handleAnchorChange":1}]}]]],["lmvz-button_2.cjs",[[785,"lmvz-button",{"ti":[514,"tabindex"],"scale":[513],"variant":[513],"disabled":[516],"type":[1],"form":[1],"formMethod":[1,"form-method"],"name":[1],"value":[1],"buttonRole":[1,"button-role"]}],[514,"lmvz-icon",{"icon":[513],"weight":[513],"size":[513],"iconset":[513],"ariaLabel":[513,"aria-label"],"iconData":[32],"visible":[32]},null,{"icon":[{"loadIconPathData":0}],"iconset":[{"loadIconPathData":0}]}]]]], options);
10
10
  };
11
11
 
12
12
  exports.setNonce = index.setNonce;
@@ -16,6 +16,18 @@ const raf = (h) => {
16
16
  return setTimeout(h);
17
17
  };
18
18
 
19
- exports.raf = raf;
19
+ const componentOnReady = (stencilEl, callback) => {
20
+ if (hasLazyBuild(stencilEl)) {
21
+ stencilEl.componentOnReady().then((resolvedEl) => callback(resolvedEl));
22
+ }
23
+ else {
24
+ raf(() => callback(stencilEl));
25
+ }
26
+ };
27
+ const hasLazyBuild = (stencilEl) => {
28
+ return stencilEl.componentOnReady !== undefined;
29
+ };
30
+
31
+ exports.componentOnReady = componentOnReady;
20
32
  exports.wait = wait;
21
33
  exports.waitFrame = waitFrame;
@@ -0,0 +1,7 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <rect x="3.5" y="5" width="17" height="15" rx="2" stroke="currentColor" stroke-width="1.75"/>
4
+ <path d="M3.5 9.5H20.5" stroke="currentColor" stroke-width="1.75"/>
5
+ <path d="M8 3V6.5" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
6
+ <path d="M16 3V6.5" stroke="currentColor" stroke-width="1.75" stroke-linecap="round"/>
7
+ </svg>
@@ -7,6 +7,7 @@
7
7
  "components/lmvz-card/lmvz-card.js",
8
8
  "components/lmvz-checkbox/lmvz-checkbox.js",
9
9
  "components/lmvz-chip/lmvz-chip.js",
10
+ "components/lmvz-datepicker/lmvz-datepicker.js",
10
11
  "components/lmvz-header/lmvz-header.js",
11
12
  "components/lmvz-icon/lmvz-icon.js",
12
13
  "components/lmvz-input/lmvz-input.js",
@@ -63,6 +63,7 @@ hr {
63
63
  padding-block: var(--lmvz-button-padding-block);
64
64
  padding-inline: var(--lmvz-button-padding-inline);
65
65
  min-height: var(--lmvz-button-min-height);
66
+ min-width: var(--lmvz-button-min-height);
66
67
  border-radius: var(--lmvz-button-radius);
67
68
  border: var(--lmvz-button-border-width) solid var(--lmvz-button-border-color);
68
69
  background-color: var(--lmvz-button-background);
@@ -91,6 +91,7 @@ hr {
91
91
  padding-block: var(--lmvz-button-padding-block);
92
92
  padding-inline: var(--lmvz-button-padding-inline);
93
93
  min-height: var(--lmvz-button-min-height);
94
+ min-width: var(--lmvz-button-min-height);
94
95
  border-radius: var(--lmvz-button-radius);
95
96
  border: var(--lmvz-button-border-width) solid var(--lmvz-button-border-color);
96
97
  background-color: var(--lmvz-button-background);
@@ -92,6 +92,7 @@ hr {
92
92
  padding-block: var(--lmvz-button-padding-block);
93
93
  padding-inline: var(--lmvz-button-padding-inline);
94
94
  min-height: var(--lmvz-button-min-height);
95
+ min-width: var(--lmvz-button-min-height);
95
96
  border-radius: var(--lmvz-button-radius);
96
97
  border: var(--lmvz-button-border-width) solid var(--lmvz-button-border-color);
97
98
  background-color: var(--lmvz-button-background);
@@ -0,0 +1,166 @@
1
+
2
+ @layer lmvz-ds.reset, lmvz-ds.theme, lmvz-ds.components, lmvz-ds.overrides;
3
+ /**
4
+ * This defines the order of our lmvz-ds' CSS layers. See readme.md for details.
5
+ * Important: Always import this file _before_ layering your own styles!
6
+ */
7
+ @layer lmvz-ds.theme {
8
+ /**
9
+ * !CAUTION: Changes to this file have to be manually synced into `/packages/styles/src/no-transform/router-font.css`
10
+ */
11
+
12
+ @font-face {
13
+ font-family: Router;
14
+ src:
15
+ local('RouterBook-Regular'),
16
+ local('Router-Book'),
17
+ url('/assets/fonts/Router-Book.woff') format('woff');
18
+ font-weight: 400;
19
+ }
20
+
21
+ @font-face {
22
+ font-family: Router;
23
+ src:
24
+ local('RouterMedium-Regular'),
25
+ local('Router-Medium'),
26
+ url('/assets/fonts/Router-Medium.woff') format('woff');
27
+ font-weight: 500;
28
+ }
29
+
30
+ @font-face {
31
+ font-family: Router;
32
+ src:
33
+ local('RouterBold-Regular'),
34
+ local('Router-Bold'),
35
+ url('/assets/fonts/Router-Bold.woff') format('woff');
36
+ font-weight: 700;
37
+ }
38
+
39
+ }
40
+ /* ─── Host / Panel ─────────────────────────────────────────────────────────── */
41
+ :host {
42
+ display: inline-block;
43
+ width: 100%;
44
+ }
45
+ /*
46
+ * Card chrome (background, border-radius, padding, shadow) is provided by the
47
+ * `lmvz-wrapper-card-md` class on the composed `lmvz-popover` — do not duplicate it here.
48
+ */
49
+ .datepicker-panel {
50
+ display: flex;
51
+ flex-direction: column;
52
+ gap: var(--lmvz-component-input-gap-lg, clamp(0.75rem, 0.69rem + 0.26vw, 1rem));
53
+ }
54
+ /* ─── Header ────────────────────────────────────────────────────────────────── */
55
+ .datepicker-header {
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: space-between;
59
+ width: 100%;
60
+ }
61
+ .datepicker-month-label {
62
+ /* Reset native button styles */
63
+ all: unset;
64
+ /* Re-apply needed styles */
65
+ font: var(--lmvz-typography-body-md-strong, 500 clamp(0.88rem, 0.84rem + 0.13vw, 1rem) / 1.5
66
+ Router);
67
+ color: var(--lmvz-semantic-color-on-surface-primary, #000000);
68
+ text-align: center;
69
+ cursor: default;
70
+ /* Disabled state: no pointer events, but remains visible */
71
+ pointer-events: none;
72
+ user-select: none;
73
+ }
74
+ /* ─── Weekday row ────────────────────────────────────────────────────────────── */
75
+ .datepicker-weekday-row {
76
+ display: flex;
77
+ gap: var(--lmvz-component-input-gap-md, clamp(0.5rem, 0.44rem + 0.26vw, 0.75rem));
78
+ width: 100%;
79
+ }
80
+ .datepicker-weekday {
81
+ flex: 1;
82
+ display: flex;
83
+ align-items: center;
84
+ justify-content: center;
85
+ font: var(--lmvz-typography-body-sm-strong, 500 clamp(0.75rem, 0.72rem + 0.13vw, 0.88rem) / 1.5
86
+ Router);
87
+ color: var(--lmvz-semantic-color-on-surface-secondary, #545454);
88
+ min-width: 0;
89
+ text-align: center;
90
+ }
91
+ /* ─── Grid ────────────────────────────────────────────────────────────────────── */
92
+ .datepicker-grid {
93
+ display: flex;
94
+ flex-direction: column;
95
+ gap: var(--lmvz-component-input-gap-md, clamp(0.5rem, 0.44rem + 0.26vw, 0.75rem));
96
+ }
97
+ .datepicker-week-row {
98
+ display: flex;
99
+ gap: var(--lmvz-component-input-gap-md, clamp(0.5rem, 0.44rem + 0.26vw, 0.75rem));
100
+ }
101
+ /* ─── Day cells ────────────────────────────────────────────────────────────────── */
102
+ [part~='day'] {
103
+ /* Reset native button */
104
+ all: unset;
105
+ /* Flex child of week-row (replaces removed .datepicker-cell wrapper) */
106
+ flex: 1;
107
+ /* Sizing: fluid square matching input-size-md */
108
+ width: var(--lmvz-component-input-size-md, clamp(2.5rem, 2.44rem + 0.26vw, 2.75rem));
109
+ height: var(--lmvz-component-input-size-md, clamp(2.5rem, 2.44rem + 0.26vw, 2.75rem));
110
+ min-width: var(--lmvz-component-input-size-md, clamp(2.5rem, 2.44rem + 0.26vw, 2.75rem));
111
+ box-sizing: border-box;
112
+
113
+ display: flex;
114
+ align-items: center;
115
+ justify-content: center;
116
+
117
+ border-radius: var(--lmvz-semantic-border-radius-round, 999px);
118
+ font: var(--lmvz-typography-body-md-strong, 500 clamp(0.88rem, 0.84rem + 0.13vw, 1rem) / 1.5
119
+ Router);
120
+ color: var(--lmvz-semantic-color-on-surface-primary, #000000);
121
+ background-color: transparent;
122
+ cursor: pointer;
123
+ /* Smooth state transitions */
124
+ transition:
125
+ background-color 0.15s ease,
126
+ color 0.15s ease;
127
+ /* Ensure the outline renders outside the border-radius */
128
+ position: relative;
129
+ }
130
+ [part~='day--disabled'],
131
+ [part~='day']:disabled {
132
+ opacity: var(--lmvz-global-opacity-disabled, 40%);
133
+ pointer-events: none;
134
+ }
135
+ [part~='day']:focus-visible {
136
+ outline: var(--lmvz-ds-outline, 1px solid #0e7ab4);
137
+ outline-offset: var(--lmvz-ds-outline-offset, clamp(0.25rem, 0.19rem + 0.26vw, 0.5rem));
138
+ }
139
+ [part~='day']:not(:disabled):hover {
140
+ background-color: var(--lmvz-semantic-color-int-tertiary-hover, #f0f0f0);
141
+ color: var(--lmvz-semantic-color-on-surface-primary, #000000);
142
+ }
143
+ [part~='day--today'] {
144
+ box-shadow: inset 0 0 0 1px var(--lmvz-semantic-color-border-active, #0f8acc);
145
+ }
146
+ [part~='day--today']:not(:disabled):hover {
147
+ background-color: var(--lmvz-semantic-color-int-tertiary-hover, #f0f0f0);
148
+ box-shadow: inset 0 0 0 1px var(--lmvz-semantic-color-border-active, #0f8acc);
149
+ }
150
+ [part~='day--selected'] {
151
+ background-color: var(--lmvz-semantic-color-status-active-alternate, #0f8acc);
152
+ color: var(--lmvz-semantic-color-status-on-active-alternate, #ffffff);
153
+ box-shadow: none;
154
+ }
155
+ [part~='day--today'][part~='day--selected'] {
156
+ background-color: var(--lmvz-semantic-color-status-active-alternate, #0f8acc);
157
+ color: var(--lmvz-semantic-color-status-on-active-alternate, #ffffff);
158
+ box-shadow: none;
159
+ }
160
+ [part~='day--selected']:not(:disabled):hover {
161
+ background-color: var(--lmvz-semantic-color-status-active-alternate, #0f8acc);
162
+ color: var(--lmvz-semantic-color-status-on-active-alternate, #ffffff);
163
+ }
164
+ [part~='day--out-of-month'] {
165
+ color: var(--lmvz-semantic-color-on-surface-tertiary, #7a7a7a);
166
+ }