@warp-ds/elements 2.10.0-next.9 → 2.10.1-next.1
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.
- package/dist/.storybook/utilities.js +4 -4
- package/dist/api.js.map +2 -2
- package/dist/custom-elements.json +1211 -542
- package/dist/docs/affix/affix.md +111 -2
- package/dist/docs/affix/api.md +2 -2
- package/dist/docs/affix/styling.md +107 -0
- package/dist/docs/alert/alert.md +5 -5
- package/dist/docs/alert/api.md +4 -4
- package/dist/docs/attention/api.md +50 -2
- package/dist/docs/attention/attention.md +53 -3
- package/dist/docs/badge/api.md +50 -4
- package/dist/docs/badge/badge.md +50 -4
- package/dist/docs/box/api.md +2 -2
- package/dist/docs/box/box.md +4 -2
- package/dist/docs/breadcrumb-item/api.md +27 -0
- package/dist/docs/breadcrumb-item/breadcrumb-item.md +36 -0
- package/dist/docs/breadcrumbs/accessibility.md +8 -18
- package/dist/docs/breadcrumbs/breadcrumbs.md +123 -34
- package/dist/docs/breadcrumbs/examples.md +8 -8
- package/dist/docs/breadcrumbs/styling.md +96 -0
- package/dist/docs/breadcrumbs/usage.md +8 -8
- package/dist/docs/button/api.md +32 -24
- package/dist/docs/button/button.md +35 -24
- package/dist/docs/card/api.md +8 -0
- package/dist/docs/card/card.md +10 -0
- package/dist/docs/checkbox/api.md +52 -13
- package/dist/docs/checkbox/checkbox.md +231 -14
- package/dist/docs/checkbox/styling.md +173 -0
- package/dist/docs/checkbox-group/api.md +30 -6
- package/dist/docs/checkbox-group/checkbox-group.md +66 -36
- package/dist/docs/checkbox-group/styling.md +31 -29
- package/dist/docs/combobox/api.md +20 -12
- package/dist/docs/combobox/combobox.md +22 -12
- package/dist/docs/datepicker/api.md +22 -14
- package/dist/docs/datepicker/datepicker.md +24 -16
- package/dist/docs/expandable/api.md +6 -6
- package/dist/docs/expandable/expandable.md +8 -6
- package/dist/docs/icon/api.md +4 -4
- package/dist/docs/icon/icon.md +5 -5
- package/dist/docs/index.md +35 -32
- package/dist/docs/link/api.md +10 -10
- package/dist/docs/link/link.md +13 -11
- package/dist/docs/modal/api.md +20 -2
- package/dist/docs/modal/modal.md +101 -10
- package/dist/docs/modal/styling.md +75 -0
- package/dist/docs/modal/usage.md +4 -8
- package/dist/docs/modal-footer/modal-footer.md +2 -0
- package/dist/docs/modal-header/modal-header.md +2 -0
- package/dist/docs/page-indicator/page-indicator.md +2 -0
- package/dist/docs/pagination/api.md +4 -4
- package/dist/docs/pagination/pagination.md +6 -4
- package/dist/docs/pill/api.md +8 -8
- package/dist/docs/pill/pill.md +10 -8
- package/dist/docs/radio/radio.md +5 -1
- package/dist/docs/radio-group/api.md +4 -4
- package/dist/docs/radio-group/radio-group.md +186 -69
- package/dist/docs/radio-group/styling.md +179 -64
- package/dist/docs/select/api.md +10 -10
- package/dist/docs/select/select.md +103 -10
- package/dist/docs/select/styling.md +91 -0
- package/dist/docs/slider/api.md +38 -22
- package/dist/docs/slider/slider.md +40 -22
- package/dist/docs/slider-thumb/api.md +28 -12
- package/dist/docs/slider-thumb/slider-thumb.md +28 -12
- package/dist/docs/snackbar/accessibility.md +20 -0
- package/dist/docs/snackbar/api.md +30 -0
- package/dist/docs/snackbar/examples.md +191 -0
- package/dist/docs/snackbar/snackbar.md +387 -0
- package/dist/docs/snackbar/styling.md +72 -0
- package/dist/docs/snackbar/usage.md +60 -0
- package/dist/docs/snackbar-item/api.md +41 -0
- package/dist/docs/snackbar-item/snackbar-item.md +51 -0
- package/dist/docs/step/api.md +16 -0
- package/dist/docs/step/step.md +19 -1
- package/dist/docs/step-indicator/step-indicator.md +2 -0
- package/dist/docs/switch/api.md +8 -0
- package/dist/docs/switch/switch.md +10 -0
- package/dist/docs/tab/tab.md +2 -0
- package/dist/docs/tab-panel/tab-panel.md +3 -0
- package/dist/docs/tabs/api.md +3 -3
- package/dist/docs/tabs/tabs.md +5 -3
- package/dist/docs/textarea/api.md +54 -14
- package/dist/docs/textarea/styling.md +91 -0
- package/dist/docs/textarea/textarea.md +146 -19
- package/dist/docs/textfield/api.md +74 -34
- package/dist/docs/textfield/styling.md +95 -0
- package/dist/docs/textfield/textfield.md +171 -34
- package/dist/entrypoint-react.d.ts +38 -0
- package/dist/entrypoint-react.js +39 -0
- package/dist/index.d.ts +1007 -154
- package/dist/packages/affix/affix-styles.d.ts +8 -0
- package/dist/packages/affix/affix-styles.js +108 -0
- package/dist/packages/affix/affix.d.ts +12 -14
- package/dist/packages/affix/affix.hydration.test.d.ts +1 -1
- package/dist/packages/affix/affix.hydration.test.js +15 -15
- package/dist/packages/affix/affix.js +451 -320
- package/dist/packages/affix/affix.js.map +4 -4
- package/dist/packages/affix/affix.react.stories.d.ts +3 -3
- package/dist/packages/affix/affix.react.stories.js +3 -3
- package/dist/packages/affix/affix.react.test.js +5 -3
- package/dist/packages/affix/affix.stories.d.ts +3 -3
- package/dist/packages/affix/affix.stories.js +10 -10
- package/dist/packages/affix/affix.test.d.ts +1 -1
- package/dist/packages/affix/affix.test.js +10 -10
- package/dist/packages/affix/react.d.ts +8 -3
- package/dist/packages/affix/react.js +11 -6
- package/dist/packages/affix/styles.js +2 -2
- package/dist/packages/alert/alert.d.ts +9 -6
- package/dist/packages/alert/alert.hydration.test.d.ts +1 -1
- package/dist/packages/alert/alert.hydration.test.js +21 -21
- package/dist/packages/alert/alert.js +349 -324
- package/dist/packages/alert/alert.js.map +3 -3
- package/dist/packages/alert/alert.react.stories.d.ts +2 -2
- package/dist/packages/alert/alert.react.stories.js +13 -13
- package/dist/packages/alert/alert.stories.d.ts +4 -4
- package/dist/packages/alert/alert.stories.js +29 -27
- package/dist/packages/alert/alert.test.d.ts +1 -1
- package/dist/packages/alert/alert.test.js +34 -21
- package/dist/packages/alert/react.d.ts +8 -1
- package/dist/packages/alert/react.js +11 -4
- package/dist/packages/alert/styles.js +2 -2
- package/dist/packages/attention/attention.d.ts +14 -7
- package/dist/packages/attention/attention.hydration.test.d.ts +1 -1
- package/dist/packages/attention/attention.hydration.test.js +29 -29
- package/dist/packages/attention/attention.js +1744 -1681
- package/dist/packages/attention/attention.js.map +4 -4
- package/dist/packages/attention/attention.react.stories.d.ts +3 -3
- package/dist/packages/attention/attention.react.stories.js +13 -13
- package/dist/packages/attention/attention.react.test.js +11 -7
- package/dist/packages/attention/attention.stories.d.ts +4 -4
- package/dist/packages/attention/attention.stories.js +126 -117
- package/dist/packages/attention/attention.test.d.ts +1 -1
- package/dist/packages/attention/attention.test.js +18 -10
- package/dist/packages/attention/layout-styles.js +900 -900
- package/dist/packages/attention/react.d.ts +16 -6
- package/dist/packages/attention/react.js +22 -11
- package/dist/packages/attention/styles.js +2 -2
- package/dist/packages/badge/badge.d.ts +8 -3
- package/dist/packages/badge/badge.hydration.test.d.ts +1 -1
- package/dist/packages/badge/badge.hydration.test.js +25 -25
- package/dist/packages/badge/badge.js +281 -281
- package/dist/packages/badge/badge.js.map +3 -3
- package/dist/packages/badge/badge.react.stories.d.ts +3 -3
- package/dist/packages/badge/badge.react.stories.js +17 -17
- package/dist/packages/badge/badge.stories.d.ts +3 -3
- package/dist/packages/badge/badge.stories.js +22 -20
- package/dist/packages/badge/badge.test.d.ts +1 -1
- package/dist/packages/badge/badge.test.js +13 -11
- package/dist/packages/badge/react.d.ts +6 -1
- package/dist/packages/badge/react.js +9 -4
- package/dist/packages/badge/styles.js +2 -2
- package/dist/packages/box/box.d.ts +7 -2
- package/dist/packages/box/box.hydration.test.d.ts +1 -1
- package/dist/packages/box/box.hydration.test.js +14 -14
- package/dist/packages/box/box.js +288 -288
- package/dist/packages/box/box.js.map +3 -3
- package/dist/packages/box/box.react.stories.d.ts +4 -4
- package/dist/packages/box/box.react.stories.js +8 -8
- package/dist/packages/box/box.stories.d.ts +3 -3
- package/dist/packages/box/box.stories.js +25 -19
- package/dist/packages/box/box.test.d.ts +1 -1
- package/dist/packages/box/box.test.js +6 -6
- package/dist/packages/box/react.d.ts +6 -1
- package/dist/packages/box/react.js +9 -4
- package/dist/packages/box/slot.test.d.ts +1 -1
- package/dist/packages/box/slot.test.js +6 -6
- package/dist/packages/box/styles.js +2 -2
- package/dist/packages/breadcrumb-item/breadcrumb-item.d.ts +34 -0
- package/dist/packages/breadcrumb-item/breadcrumb-item.js +2529 -0
- package/dist/packages/breadcrumb-item/breadcrumb-item.js.map +7 -0
- package/dist/packages/breadcrumb-item/react.d.ts +8 -0
- package/dist/packages/breadcrumb-item/react.js +17 -0
- package/dist/packages/breadcrumb-item/styles.d.ts +4 -0
- package/dist/packages/breadcrumb-item/styles.js +81 -0
- package/dist/packages/breadcrumbs/breadcrumbs.d.ts +11 -4
- package/dist/packages/breadcrumbs/breadcrumbs.hydration.test.d.ts +1 -1
- package/dist/packages/breadcrumbs/breadcrumbs.hydration.test.js +55 -49
- package/dist/packages/breadcrumbs/breadcrumbs.js +288 -284
- package/dist/packages/breadcrumbs/breadcrumbs.js.map +4 -4
- package/dist/packages/breadcrumbs/breadcrumbs.react.stories.d.ts +4 -4
- package/dist/packages/breadcrumbs/breadcrumbs.react.stories.js +17 -16
- package/dist/packages/breadcrumbs/breadcrumbs.stories.d.ts +7 -8
- package/dist/packages/breadcrumbs/breadcrumbs.stories.js +30 -26
- package/dist/packages/breadcrumbs/breadcrumbs.test.d.ts +1 -1
- package/dist/packages/breadcrumbs/breadcrumbs.test.js +19 -17
- package/dist/packages/breadcrumbs/react.d.ts +8 -1
- package/dist/packages/breadcrumbs/react.js +11 -4
- package/dist/packages/breadcrumbs/styles.js +2 -2
- package/dist/packages/button/button.d.ts +22 -16
- package/dist/packages/button/button.hydration.test.d.ts +1 -1
- package/dist/packages/button/button.hydration.test.js +19 -19
- package/dist/packages/button/button.js +758 -711
- package/dist/packages/button/button.js.map +4 -4
- package/dist/packages/button/button.react.stories.d.ts +5 -5
- package/dist/packages/button/button.react.stories.js +30 -30
- package/dist/packages/button/button.react.test.js +13 -13
- package/dist/packages/button/button.stories.d.ts +4 -4
- package/dist/packages/button/button.stories.js +276 -167
- package/dist/packages/button/button.test.d.ts +1 -1
- package/dist/packages/button/button.test.js +36 -35
- package/dist/packages/button/react.d.ts +10 -3
- package/dist/packages/button/react.js +14 -7
- package/dist/packages/button/styles.js +373 -331
- package/dist/packages/card/card.d.ts +7 -2
- package/dist/packages/card/card.hydration.test.d.ts +1 -1
- package/dist/packages/card/card.hydration.test.js +14 -14
- package/dist/packages/card/card.js +310 -295
- package/dist/packages/card/card.js.map +4 -4
- package/dist/packages/card/card.react.stories.d.ts +4 -4
- package/dist/packages/card/card.react.stories.js +11 -11
- package/dist/packages/card/card.stories.d.ts +3 -3
- package/dist/packages/card/card.stories.js +36 -24
- package/dist/packages/card/card.test.d.ts +1 -1
- package/dist/packages/card/card.test.js +6 -6
- package/dist/packages/card/react.d.ts +6 -1
- package/dist/packages/card/react.js +9 -4
- package/dist/packages/card/styles.js +2 -2
- package/dist/packages/checkbox/checkbox.a11y.test.d.ts +1 -1
- package/dist/packages/checkbox/checkbox.a11y.test.js +47 -33
- package/dist/packages/checkbox/checkbox.d.ts +10 -4
- package/dist/packages/checkbox/checkbox.hydration.test.d.ts +1 -1
- package/dist/packages/checkbox/checkbox.hydration.test.js +21 -21
- package/dist/packages/checkbox/checkbox.js +481 -430
- package/dist/packages/checkbox/checkbox.js.map +3 -3
- package/dist/packages/checkbox/checkbox.react.stories.d.ts +4 -4
- package/dist/packages/checkbox/checkbox.react.stories.js +3 -3
- package/dist/packages/checkbox/checkbox.stories.d.ts +4 -4
- package/dist/packages/checkbox/checkbox.stories.js +99 -91
- package/dist/packages/checkbox/checkbox.test.d.ts +1 -1
- package/dist/packages/checkbox/checkbox.test.js +64 -64
- package/dist/packages/checkbox/react.d.ts +12 -3
- package/dist/packages/checkbox/react.js +13 -6
- package/dist/packages/checkbox/styles.js +183 -132
- package/dist/packages/checkbox-group/checkbox-group.a11y.test.d.ts +2 -2
- package/dist/packages/checkbox-group/checkbox-group.a11y.test.js +83 -73
- package/dist/packages/checkbox-group/checkbox-group.d.ts +13 -6
- package/dist/packages/checkbox-group/checkbox-group.hydration.test.d.ts +2 -2
- package/dist/packages/checkbox-group/checkbox-group.hydration.test.js +36 -19
- package/dist/packages/checkbox-group/checkbox-group.js +62 -57
- package/dist/packages/checkbox-group/checkbox-group.js.map +3 -3
- package/dist/packages/checkbox-group/checkbox-group.react.test.js +4 -4
- package/dist/packages/checkbox-group/checkbox-group.test.d.ts +2 -2
- package/dist/packages/checkbox-group/checkbox-group.test.js +183 -90
- package/dist/packages/checkbox-group/react.d.ts +10 -3
- package/dist/packages/checkbox-group/react.js +13 -6
- package/dist/packages/combobox/combobox.a11y.test.d.ts +2 -2
- package/dist/packages/combobox/combobox.a11y.test.js +72 -49
- package/dist/packages/combobox/combobox.d.ts +8 -3
- package/dist/packages/combobox/combobox.hydration.test.d.ts +1 -1
- package/dist/packages/combobox/combobox.hydration.test.js +45 -45
- package/dist/packages/combobox/combobox.js +337 -338
- package/dist/packages/combobox/combobox.js.map +4 -4
- package/dist/packages/combobox/combobox.react.stories.d.ts +45 -13
- package/dist/packages/combobox/combobox.react.stories.js +29 -29
- package/dist/packages/combobox/combobox.react.test.js +8 -8
- package/dist/packages/combobox/combobox.stories.d.ts +4 -4
- package/dist/packages/combobox/combobox.stories.js +100 -94
- package/dist/packages/combobox/combobox.test.d.ts +2 -2
- package/dist/packages/combobox/combobox.test.js +249 -133
- package/dist/packages/combobox/react.d.ts +28 -7
- package/dist/packages/combobox/react.js +23 -14
- package/dist/packages/combobox/styles.js +2 -3
- package/dist/packages/datepicker/DatePicker.test.d.ts +2 -2
- package/dist/packages/datepicker/DatePicker.test.js +49 -42
- package/dist/packages/datepicker/datepicker.d.ts +15 -12
- package/dist/packages/datepicker/datepicker.hydration.test.d.ts +1 -1
- package/dist/packages/datepicker/datepicker.hydration.test.js +21 -21
- package/dist/packages/datepicker/datepicker.js +673 -632
- package/dist/packages/datepicker/datepicker.js.map +4 -4
- package/dist/packages/datepicker/datepicker.react.stories.d.ts +17 -17
- package/dist/packages/datepicker/datepicker.react.stories.js +9 -9
- package/dist/packages/datepicker/datepicker.react.test.js +6 -6
- package/dist/packages/datepicker/datepicker.stories.d.ts +4 -4
- package/dist/packages/datepicker/datepicker.stories.js +32 -32
- package/dist/packages/datepicker/datepicker.test.d.ts +2 -2
- package/dist/packages/datepicker/datepicker.test.js +77 -79
- package/dist/packages/datepicker/react.d.ts +15 -9
- package/dist/packages/datepicker/react.js +21 -14
- package/dist/packages/datepicker/styles/w-datepicker-calendar.styles.js +13 -12
- package/dist/packages/datepicker/styles/w-datepicker-day.styles.js +58 -55
- package/dist/packages/datepicker/styles/w-datepicker-month.styles.js +60 -57
- package/dist/packages/datepicker/styles/w-datepicker.styles.js +87 -87
- package/dist/packages/datepicker/utils.d.ts +3 -0
- package/dist/packages/datepicker/utils.js +40 -1
- package/dist/packages/datepicker/utils.test.d.ts +1 -0
- package/dist/packages/datepicker/utils.test.js +29 -0
- package/dist/packages/expandable/expandable.d.ts +14 -7
- package/dist/packages/expandable/expandable.hydration.test.d.ts +1 -1
- package/dist/packages/expandable/expandable.hydration.test.js +21 -21
- package/dist/packages/expandable/expandable.js +359 -332
- package/dist/packages/expandable/expandable.js.map +4 -4
- package/dist/packages/expandable/expandable.react.stories.d.ts +3 -3
- package/dist/packages/expandable/expandable.react.stories.js +7 -7
- package/dist/packages/expandable/expandable.react.test.js +15 -7
- package/dist/packages/expandable/expandable.stories.d.ts +5 -5
- package/dist/packages/expandable/expandable.stories.js +51 -45
- package/dist/packages/expandable/expandable.test.d.ts +1 -1
- package/dist/packages/expandable/expandable.test.js +19 -17
- package/dist/packages/expandable/react.d.ts +7 -2
- package/dist/packages/expandable/react.js +14 -9
- package/dist/packages/expandable/styles.js +2 -2
- package/dist/packages/global.d.ts +1 -0
- package/dist/packages/global.js +5 -0
- package/dist/packages/i18n.d.ts +1 -1
- package/dist/packages/i18n.js +37 -29
- package/dist/packages/icon/icon.d.ts +10 -2
- package/dist/packages/icon/icon.hydration.test.d.ts +1 -1
- package/dist/packages/icon/icon.hydration.test.js +25 -25
- package/dist/packages/icon/icon.js +31 -26
- package/dist/packages/icon/icon.js.map +2 -2
- package/dist/packages/icon/icon.react.stories.d.ts +3 -2
- package/dist/packages/icon/icon.react.stories.js +284 -283
- package/dist/packages/icon/icon.stories.d.ts +7 -30
- package/dist/packages/icon/icon.stories.js +307 -297
- package/dist/packages/icon/icon.test.d.ts +1 -1
- package/dist/packages/icon/icon.test.js +36 -28
- package/dist/packages/icon/react.d.ts +4 -1
- package/dist/packages/icon/react.js +7 -4
- package/dist/packages/icon/style.js +24 -25
- package/dist/packages/interaction-type-detection.d.ts +22 -0
- package/dist/packages/interaction-type-detection.js +38 -0
- package/dist/packages/link/link.d.ts +14 -9
- package/dist/packages/link/link.hydration.test.d.ts +1 -1
- package/dist/packages/link/link.hydration.test.js +27 -27
- package/dist/packages/link/link.js +726 -679
- package/dist/packages/link/link.js.map +3 -3
- package/dist/packages/link/link.react.stories.d.ts +5 -5
- package/dist/packages/link/link.react.stories.js +42 -42
- package/dist/packages/link/link.react.test.js +5 -3
- package/dist/packages/link/link.stories.d.ts +3 -3
- package/dist/packages/link/link.stories.js +51 -51
- package/dist/packages/link/link.test.d.ts +1 -1
- package/dist/packages/link/link.test.js +11 -7
- package/dist/packages/link/react.d.ts +8 -3
- package/dist/packages/link/react.js +11 -6
- package/dist/packages/link/styles.js +63 -58
- package/dist/packages/modal/index.d.ts +7 -7
- package/dist/packages/modal/index.js +7 -7
- package/dist/packages/modal/modal.d.ts +26 -4
- package/dist/packages/modal/modal.hydration.test.d.ts +1 -1
- package/dist/packages/modal/modal.hydration.test.js +12 -12
- package/dist/packages/modal/modal.js +456 -409
- package/dist/packages/modal/modal.js.map +4 -4
- package/dist/packages/modal/modal.react.stories.d.ts +7 -7
- package/dist/packages/modal/modal.react.stories.js +15 -6
- package/dist/packages/modal/modal.react.test.js +5 -5
- package/dist/packages/modal/modal.stories.d.ts +9 -8
- package/dist/packages/modal/modal.stories.js +266 -248
- package/dist/packages/modal/react.d.ts +40 -8
- package/dist/packages/modal/react.js +45 -13
- package/dist/packages/modal/styles.d.ts +1 -0
- package/dist/packages/modal/styles.js +171 -0
- package/dist/packages/modal/util.js +3 -1
- package/dist/packages/modal-footer/modal-footer.d.ts +13 -2
- package/dist/packages/modal-footer/modal-footer.js +299 -296
- package/dist/packages/modal-footer/modal-footer.js.map +4 -4
- package/dist/packages/modal-footer/react.d.ts +6 -1
- package/dist/packages/modal-footer/react.js +9 -4
- package/dist/packages/modal-footer/styles.d.ts +1 -0
- package/dist/packages/modal-footer/styles.js +22 -0
- package/dist/packages/modal-header/modal-header.d.ts +21 -7
- package/dist/packages/modal-header/modal-header.js +451 -422
- package/dist/packages/modal-header/modal-header.js.map +4 -4
- package/dist/packages/modal-header/modal-header.react.test.js +5 -3
- package/dist/packages/modal-header/react.d.ts +9 -4
- package/dist/packages/modal-header/react.js +13 -8
- package/dist/packages/modal-header/styles.d.ts +1 -0
- package/dist/packages/modal-header/styles.js +96 -0
- package/dist/packages/page-indicator/page-indicator.d.ts +8 -5
- package/dist/packages/page-indicator/page-indicator.hydration.test.d.ts +1 -1
- package/dist/packages/page-indicator/page-indicator.hydration.test.js +22 -22
- package/dist/packages/page-indicator/page-indicator.js +29 -29
- package/dist/packages/page-indicator/page-indicator.js.map +4 -4
- package/dist/packages/page-indicator/page-indicator.react.stories.d.ts +3 -3
- package/dist/packages/page-indicator/page-indicator.react.stories.js +11 -11
- package/dist/packages/page-indicator/page-indicator.react.test.js +5 -5
- package/dist/packages/page-indicator/page-indicator.stories.d.ts +9 -27
- package/dist/packages/page-indicator/page-indicator.stories.js +63 -32
- package/dist/packages/page-indicator/page-indicator.test.d.ts +1 -1
- package/dist/packages/page-indicator/page-indicator.test.js +110 -70
- package/dist/packages/page-indicator/react.d.ts +9 -2
- package/dist/packages/page-indicator/react.js +14 -7
- package/dist/packages/page-indicator/style.js +21 -21
- package/dist/packages/pagination/pagination.a11y.test.d.ts +1 -1
- package/dist/packages/pagination/pagination.a11y.test.js +59 -25
- package/dist/packages/pagination/pagination.d.ts +17 -11
- package/dist/packages/pagination/pagination.hydration.test.d.ts +1 -1
- package/dist/packages/pagination/pagination.hydration.test.js +19 -19
- package/dist/packages/pagination/pagination.js +385 -354
- package/dist/packages/pagination/pagination.js.map +4 -4
- package/dist/packages/pagination/pagination.react.stories.d.ts +19 -11
- package/dist/packages/pagination/pagination.react.stories.js +8 -8
- package/dist/packages/pagination/pagination.react.test.js +6 -6
- package/dist/packages/pagination/pagination.stories.d.ts +3 -3
- package/dist/packages/pagination/pagination.stories.js +18 -18
- package/dist/packages/pagination/pagination.test.d.ts +1 -1
- package/dist/packages/pagination/pagination.test.js +146 -72
- package/dist/packages/pagination/react.d.ts +15 -6
- package/dist/packages/pagination/react.js +17 -10
- package/dist/packages/pagination/styles.js +2 -2
- package/dist/packages/pill/pill.d.ts +13 -6
- package/dist/packages/pill/pill.hydration.test.d.ts +1 -1
- package/dist/packages/pill/pill.hydration.test.js +14 -14
- package/dist/packages/pill/pill.js +337 -314
- package/dist/packages/pill/pill.js.map +4 -4
- package/dist/packages/pill/pill.react.stories.d.ts +15 -11
- package/dist/packages/pill/pill.react.stories.js +7 -3
- package/dist/packages/pill/pill.react.test.js +8 -8
- package/dist/packages/pill/pill.stories.d.ts +3 -3
- package/dist/packages/pill/pill.stories.js +8 -8
- package/dist/packages/pill/pill.test.d.ts +1 -1
- package/dist/packages/pill/pill.test.js +17 -15
- package/dist/packages/pill/react.d.ts +11 -6
- package/dist/packages/pill/react.js +23 -14
- package/dist/packages/pill/styles.js +2 -2
- package/dist/packages/radio/base-element.d.ts +3 -3
- package/dist/packages/radio/base-element.js +3 -3
- package/dist/packages/radio/custom-error-validator.d.ts +1 -1
- package/dist/packages/radio/custom-error-validator.js +3 -3
- package/dist/packages/radio/form-associated-element.d.ts +9 -9
- package/dist/packages/radio/form-associated-element.js +27 -26
- package/dist/packages/radio/host-styles.js +9 -9
- package/dist/packages/radio/invalid.d.ts +1 -1
- package/dist/packages/radio/invalid.js +1 -1
- package/dist/packages/radio/radio-styles.js +199 -160
- package/dist/packages/radio/radio.a11y.test.d.ts +2 -2
- package/dist/packages/radio/radio.a11y.test.js +60 -58
- package/dist/packages/radio/radio.d.ts +10 -4
- package/dist/packages/radio/radio.hydration.test.d.ts +1 -1
- package/dist/packages/radio/radio.hydration.test.js +23 -14
- package/dist/packages/radio/radio.js +491 -452
- package/dist/packages/radio/radio.js.map +3 -3
- package/dist/packages/radio/radio.react.stories.d.ts +2 -2
- package/dist/packages/radio/radio.react.stories.js +3 -3
- package/dist/packages/radio/radio.stories.d.ts +4 -4
- package/dist/packages/radio/radio.stories.js +152 -136
- package/dist/packages/radio/radio.test.d.ts +1 -1
- package/dist/packages/radio/radio.test.js +74 -73
- package/dist/packages/radio/react.d.ts +8 -1
- package/dist/packages/radio/react.js +11 -4
- package/dist/packages/radio/required-validator.d.ts +1 -1
- package/dist/packages/radio/required-validator.js +12 -7
- package/dist/packages/radio/slot.d.ts +1 -1
- package/dist/packages/radio/slot.js +11 -8
- package/dist/packages/radio/watch.d.ts +1 -1
- package/dist/packages/radio/watch.js +3 -1
- package/dist/packages/radio-group/radio-group-styles.js +121 -88
- package/dist/packages/radio-group/radio-group.a11y.test.d.ts +2 -2
- package/dist/packages/radio-group/radio-group.a11y.test.js +81 -79
- package/dist/packages/radio-group/radio-group.d.ts +10 -8
- package/dist/packages/radio-group/radio-group.hydration.test.d.ts +2 -2
- package/dist/packages/radio-group/radio-group.hydration.test.js +29 -18
- package/dist/packages/radio-group/radio-group.js +654 -566
- package/dist/packages/radio-group/radio-group.js.map +4 -4
- package/dist/packages/radio-group/radio-group.react.test.js +4 -4
- package/dist/packages/radio-group/radio-group.test.d.ts +2 -2
- package/dist/packages/radio-group/radio-group.test.js +304 -230
- package/dist/packages/radio-group/react.d.ts +14 -7
- package/dist/packages/radio-group/react.js +18 -10
- package/dist/packages/select/input-styles.d.ts +11 -0
- package/dist/packages/select/input-styles.js +88 -0
- package/dist/packages/select/locales/da/messages.mjs +1 -1
- package/dist/packages/select/locales/en/messages.mjs +1 -1
- package/dist/packages/select/locales/fi/messages.mjs +1 -1
- package/dist/packages/select/locales/nb/messages.mjs +1 -1
- package/dist/packages/select/locales/sv/messages.mjs +1 -1
- package/dist/packages/select/react.d.ts +11 -5
- package/dist/packages/select/react.js +16 -11
- package/dist/packages/select/select.a11y.test.d.ts +1 -1
- package/dist/packages/select/select.a11y.test.js +98 -91
- package/dist/packages/select/select.d.ts +18 -13
- package/dist/packages/select/select.hydration.test.d.ts +1 -1
- package/dist/packages/select/select.hydration.test.js +16 -16
- package/dist/packages/select/select.js +432 -336
- package/dist/packages/select/select.js.map +4 -4
- package/dist/packages/select/select.react.stories.d.ts +10 -10
- package/dist/packages/select/select.react.stories.js +19 -14
- package/dist/packages/select/select.react.test.js +6 -6
- package/dist/packages/select/select.stories.d.ts +3 -3
- package/dist/packages/select/select.stories.js +51 -48
- package/dist/packages/select/select.test.d.ts +1 -1
- package/dist/packages/select/select.test.js +227 -178
- package/dist/packages/select/styles.js +2 -2
- package/dist/packages/slider/index.d.ts +2 -2
- package/dist/packages/slider/index.js +2 -2
- package/dist/packages/slider/locales/da/messages.mjs +1 -1
- package/dist/packages/slider/locales/en/messages.mjs +1 -1
- package/dist/packages/slider/locales/fi/messages.mjs +1 -1
- package/dist/packages/slider/locales/nb/messages.mjs +1 -1
- package/dist/packages/slider/locales/sv/messages.mjs +1 -1
- package/dist/packages/slider/react.d.ts +9 -4
- package/dist/packages/slider/react.js +14 -9
- package/dist/packages/slider/slider.d.ts +32 -17
- package/dist/packages/slider/slider.hydration.test.d.ts +1 -1
- package/dist/packages/slider/slider.hydration.test.js +39 -20
- package/dist/packages/slider/slider.js +523 -466
- package/dist/packages/slider/slider.js.map +4 -4
- package/dist/packages/slider/slider.react.stories.d.ts +4 -4
- package/dist/packages/slider/slider.react.stories.js +31 -34
- package/dist/packages/slider/slider.react.test.js +6 -6
- package/dist/packages/slider/slider.stories.d.ts +9 -7
- package/dist/packages/slider/slider.stories.js +369 -340
- package/dist/packages/slider/slider.test.d.ts +5 -5
- package/dist/packages/slider/slider.test.js +476 -336
- package/dist/packages/slider/styles/w-slider.styles.js +166 -148
- package/dist/packages/slider/styles.js +2 -2
- package/dist/packages/slider-thumb/oddbird-css-anchor-positioning.d.ts +1 -1
- package/dist/packages/slider-thumb/oddbird-css-anchor-positioning.js +1 -1
- package/dist/packages/slider-thumb/react.d.ts +16 -5
- package/dist/packages/slider-thumb/react.js +16 -9
- package/dist/packages/slider-thumb/slider-thumb.d.ts +22 -17
- package/dist/packages/slider-thumb/slider-thumb.hydration.test.d.ts +1 -1
- package/dist/packages/slider-thumb/slider-thumb.hydration.test.js +26 -17
- package/dist/packages/slider-thumb/slider-thumb.js +549 -552
- package/dist/packages/slider-thumb/slider-thumb.js.map +4 -4
- package/dist/packages/slider-thumb/slider-thumb.react.test.js +9 -5
- package/dist/packages/slider-thumb/styles/w-slider-thumb.styles.js +189 -188
- package/dist/packages/slider-thumb/styles.d.ts +1 -0
- package/dist/packages/slider-thumb/styles.js +2 -0
- package/dist/packages/snackbar/locales/da/messages.d.mts +1 -0
- package/dist/packages/snackbar/locales/da/messages.mjs +1 -0
- package/dist/packages/snackbar/locales/en/messages.d.mts +1 -0
- package/dist/packages/snackbar/locales/en/messages.mjs +1 -0
- package/dist/packages/snackbar/locales/fi/messages.d.mts +1 -0
- package/dist/packages/snackbar/locales/fi/messages.mjs +1 -0
- package/dist/packages/snackbar/locales/nb/messages.d.mts +1 -0
- package/dist/packages/snackbar/locales/nb/messages.mjs +1 -0
- package/dist/packages/snackbar/locales/sv/messages.d.mts +1 -0
- package/dist/packages/snackbar/locales/sv/messages.mjs +1 -0
- package/dist/packages/snackbar/react.d.ts +41 -0
- package/dist/packages/snackbar/react.js +50 -0
- package/dist/packages/snackbar/snackbar.d.ts +134 -0
- package/dist/packages/snackbar/snackbar.hydration.test.d.ts +1 -0
- package/dist/packages/snackbar/snackbar.hydration.test.js +13 -0
- package/dist/packages/snackbar/snackbar.js +2665 -0
- package/dist/packages/snackbar/snackbar.js.map +7 -0
- package/dist/packages/snackbar/snackbar.react.stories.d.ts +12 -0
- package/dist/packages/snackbar/snackbar.react.stories.js +160 -0
- package/dist/packages/snackbar/snackbar.stories.d.ts +20 -0
- package/dist/packages/snackbar/snackbar.stories.js +363 -0
- package/dist/packages/snackbar/snackbar.test.d.ts +4 -0
- package/dist/packages/snackbar/snackbar.test.js +17 -0
- package/dist/packages/snackbar/styles.d.ts +1 -0
- package/dist/packages/snackbar/styles.js +35 -0
- package/dist/packages/snackbar-item/react.d.ts +12 -0
- package/dist/packages/snackbar-item/react.js +23 -0
- package/dist/packages/snackbar-item/snackbar-item.d.ts +71 -0
- package/dist/packages/snackbar-item/snackbar-item.js +2620 -0
- package/dist/packages/snackbar-item/snackbar-item.js.map +7 -0
- package/dist/packages/snackbar-item/snackbar-item.react.test.d.ts +1 -0
- package/dist/packages/snackbar-item/snackbar-item.react.test.js +5 -0
- package/dist/packages/snackbar-item/styles.d.ts +1 -0
- package/dist/packages/snackbar-item/styles.js +133 -0
- package/dist/packages/step/react.d.ts +6 -1
- package/dist/packages/step/react.js +9 -4
- package/dist/packages/step/step.d.ts +10 -3
- package/dist/packages/step/step.hydration.test.d.ts +1 -1
- package/dist/packages/step/step.hydration.test.js +10 -10
- package/dist/packages/step/step.js +336 -314
- package/dist/packages/step/step.js.map +4 -4
- package/dist/packages/step/styles.d.ts +1 -0
- package/dist/packages/step/styles.js +2 -0
- package/dist/packages/step-indicator/index.d.ts +2 -2
- package/dist/packages/step-indicator/index.js +2 -2
- package/dist/packages/step-indicator/react.d.ts +7 -2
- package/dist/packages/step-indicator/react.js +10 -5
- package/dist/packages/step-indicator/step-indicator.a11y.test.d.ts +2 -2
- package/dist/packages/step-indicator/step-indicator.a11y.test.js +48 -46
- package/dist/packages/step-indicator/step-indicator.d.ts +8 -1
- package/dist/packages/step-indicator/step-indicator.hydration.test.d.ts +1 -1
- package/dist/packages/step-indicator/step-indicator.hydration.test.js +10 -10
- package/dist/packages/step-indicator/step-indicator.js +285 -281
- package/dist/packages/step-indicator/step-indicator.js.map +3 -3
- package/dist/packages/step-indicator/stepindicator.react.stories.d.ts +2 -2
- package/dist/packages/step-indicator/stepindicator.react.stories.js +3 -3
- package/dist/packages/step-indicator/stepindicator.stories.d.ts +3 -3
- package/dist/packages/step-indicator/stepindicator.stories.js +129 -129
- package/dist/packages/step-indicator/styles.js +2 -2
- package/dist/packages/styles.js +277 -275
- package/dist/packages/switch/react.d.ts +9 -3
- package/dist/packages/switch/react.js +11 -6
- package/dist/packages/switch/styles.js +2 -2
- package/dist/packages/switch/switch.a11y.test.d.ts +1 -1
- package/dist/packages/switch/switch.a11y.test.js +46 -38
- package/dist/packages/switch/switch.d.ts +10 -3
- package/dist/packages/switch/switch.hydration.test.d.ts +1 -1
- package/dist/packages/switch/switch.hydration.test.js +23 -23
- package/dist/packages/switch/switch.js +304 -304
- package/dist/packages/switch/switch.js.map +3 -3
- package/dist/packages/switch/switch.react.stories.d.ts +4 -4
- package/dist/packages/switch/switch.react.stories.js +2 -2
- package/dist/packages/switch/switch.stories.d.ts +2 -2
- package/dist/packages/switch/switch.stories.js +42 -37
- package/dist/packages/switch/switch.test.d.ts +1 -1
- package/dist/packages/switch/switch.test.js +30 -35
- package/dist/packages/tab/react.d.ts +12 -7
- package/dist/packages/tab/react.js +14 -10
- package/dist/packages/tab/styles.d.ts +1 -0
- package/dist/packages/tab/styles.js +2 -0
- package/dist/packages/tab/tab.d.ts +13 -6
- package/dist/packages/tab/tab.hydration.test.d.ts +1 -1
- package/dist/packages/tab/tab.hydration.test.js +18 -12
- package/dist/packages/tab/tab.js +309 -308
- package/dist/packages/tab/tab.js.map +4 -4
- package/dist/packages/tab/tab.react.test.js +5 -3
- package/dist/packages/tab-panel/react.d.ts +10 -2
- package/dist/packages/tab-panel/react.js +18 -5
- package/dist/packages/tab-panel/tab-panel.d.ts +6 -3
- package/dist/packages/tab-panel/tab-panel.hydration.test.d.ts +1 -1
- package/dist/packages/tab-panel/tab-panel.hydration.test.js +13 -10
- package/dist/packages/tab-panel/tab-panel.js +293 -291
- package/dist/packages/tab-panel/tab-panel.js.map +3 -3
- package/dist/packages/tabs/index.d.ts +4 -4
- package/dist/packages/tabs/index.js +3 -3
- package/dist/packages/tabs/react.d.ts +31 -8
- package/dist/packages/tabs/react.js +34 -9
- package/dist/packages/tabs/styles.js +2 -2
- package/dist/packages/tabs/tabs.a11y.test.d.ts +3 -3
- package/dist/packages/tabs/tabs.a11y.test.js +188 -169
- package/dist/packages/tabs/tabs.d.ts +9 -6
- package/dist/packages/tabs/tabs.hydration.test.d.ts +3 -1
- package/dist/packages/tabs/tabs.hydration.test.js +22 -8
- package/dist/packages/tabs/tabs.js +293 -286
- package/dist/packages/tabs/tabs.js.map +3 -3
- package/dist/packages/tabs/tabs.react.stories.d.ts +12 -10
- package/dist/packages/tabs/tabs.react.stories.js +28 -28
- package/dist/packages/tabs/tabs.stories.d.ts +4 -4
- package/dist/packages/tabs/tabs.stories.js +101 -95
- package/dist/packages/tabs/tabs.test.d.ts +3 -3
- package/dist/packages/tabs/tabs.test.js +136 -122
- package/dist/packages/textarea/input-styles.d.ts +11 -0
- package/dist/packages/textarea/input-styles.js +88 -0
- package/dist/packages/textarea/locales/da/messages.mjs +1 -1
- package/dist/packages/textarea/locales/en/messages.mjs +1 -1
- package/dist/packages/textarea/locales/fi/messages.mjs +1 -1
- package/dist/packages/textarea/locales/nb/messages.mjs +1 -1
- package/dist/packages/textarea/locales/sv/messages.mjs +1 -1
- package/dist/packages/textarea/react.d.ts +17 -11
- package/dist/packages/textarea/react.js +22 -17
- package/dist/packages/textarea/styles.js +2 -2
- package/dist/packages/textarea/textarea.a11y.test.d.ts +1 -1
- package/dist/packages/textarea/textarea.a11y.test.js +90 -58
- package/dist/packages/textarea/textarea.d.ts +20 -20
- package/dist/packages/textarea/textarea.hydration.test.d.ts +1 -1
- package/dist/packages/textarea/textarea.hydration.test.js +19 -19
- package/dist/packages/textarea/textarea.js +385 -304
- package/dist/packages/textarea/textarea.js.map +4 -4
- package/dist/packages/textarea/textarea.react.stories.d.ts +38 -21
- package/dist/packages/textarea/textarea.react.stories.js +30 -13
- package/dist/packages/textarea/textarea.react.test.js +7 -7
- package/dist/packages/textarea/textarea.stories.d.ts +3 -3
- package/dist/packages/textarea/textarea.stories.js +44 -42
- package/dist/packages/textarea/textarea.test.d.ts +1 -1
- package/dist/packages/textarea/textarea.test.js +197 -88
- package/dist/packages/textfield/input-styles.d.ts +11 -0
- package/dist/packages/textfield/input-styles.js +88 -0
- package/dist/packages/textfield/locales/da/messages.d.mts +1 -0
- package/dist/packages/textfield/locales/da/messages.mjs +1 -0
- package/dist/packages/textfield/locales/en/messages.d.mts +1 -0
- package/dist/packages/textfield/locales/en/messages.mjs +1 -0
- package/dist/packages/textfield/locales/fi/messages.d.mts +1 -0
- package/dist/packages/textfield/locales/fi/messages.mjs +1 -0
- package/dist/packages/textfield/locales/nb/messages.d.mts +1 -0
- package/dist/packages/textfield/locales/nb/messages.mjs +1 -0
- package/dist/packages/textfield/locales/sv/messages.d.mts +1 -0
- package/dist/packages/textfield/locales/sv/messages.mjs +1 -0
- package/dist/packages/textfield/react.d.ts +17 -11
- package/dist/packages/textfield/react.js +22 -17
- package/dist/packages/textfield/react.test.d.ts +1 -0
- package/dist/packages/textfield/react.test.js +20 -0
- package/dist/packages/textfield/styles/w-textfield.styles.js +60 -58
- package/dist/packages/textfield/styles.js +2 -2
- package/dist/packages/textfield/textfield.d.ts +38 -26
- package/dist/packages/textfield/textfield.hydration.test.d.ts +1 -1
- package/dist/packages/textfield/textfield.hydration.test.js +19 -19
- package/dist/packages/textfield/textfield.js +468 -373
- package/dist/packages/textfield/textfield.js.map +4 -4
- package/dist/packages/textfield/textfield.react.stories.d.ts +51 -21
- package/dist/packages/textfield/textfield.react.stories.js +63 -31
- package/dist/packages/textfield/textfield.react.test.js +7 -7
- package/dist/packages/textfield/textfield.stories.d.ts +4 -4
- package/dist/packages/textfield/textfield.stories.js +107 -89
- package/dist/packages/textfield/textfield.test.d.ts +2 -2
- package/dist/packages/textfield/textfield.test.js +174 -71
- package/dist/packages/toast/api.d.ts +2 -2
- package/dist/packages/toast/api.js +3 -3
- package/dist/packages/toast/index.d.ts +5 -5
- package/dist/packages/toast/index.js +5 -5
- package/dist/packages/toast/styles.js +2 -2
- package/dist/packages/toast/toast.d.ts +10 -5
- package/dist/packages/toast/toast.js +349 -320
- package/dist/packages/toast/toast.js.map +4 -4
- package/dist/packages/toast/toast.stories.d.ts +4 -4
- package/dist/packages/toast/toast.stories.js +37 -16
- package/dist/packages/toast/toast.test.d.ts +1 -1
- package/dist/packages/toast/toast.test.js +48 -31
- package/dist/packages/toast/types.d.ts +1 -1
- package/dist/packages/toast-container/styles.d.ts +1 -0
- package/dist/packages/toast-container/styles.js +2 -0
- package/dist/packages/toast-container/toast-container.d.ts +8 -3
- package/dist/packages/toast-container/toast-container.js +295 -294
- package/dist/packages/toast-container/toast-container.js.map +4 -4
- package/dist/packages/types.d.ts +16 -0
- package/dist/packages/types.js +1 -0
- package/dist/packages/utils/element-collapse.d.ts +12 -0
- package/dist/packages/utils/element-collapse.js +102 -0
- package/dist/packages/utils/expand-transition.d.ts +1 -1
- package/dist/packages/utils/expand-transition.js +12 -10
- package/dist/packages/utils/unstyled-heading.d.ts +1 -1
- package/dist/packages/utils/unstyled-heading.js +4 -4
- package/dist/packages/utils/window-exists.js +1 -1
- package/dist/packages/utils.js +2 -2
- package/dist/setup-tests.d.ts +3 -3
- package/dist/setup-tests.js +16 -13
- package/dist/tests/react-hydration.js +29 -30
- package/dist/tests/react-ssr-attributes.d.ts +1 -1
- package/dist/tests/react-ssr-attributes.js +4 -4
- package/dist/web-types.json +458 -256
- package/eik/index.js +20 -2460
- package/package.json +21 -129
- package/dist/packages/slider/Slider.d.ts +0 -2
- package/dist/packages/slider/Slider.js +0 -8
- package/dist/packages/slider-thumb/SliderThumb.d.ts +0 -2
- package/dist/packages/slider-thumb/SliderThumb.js +0 -8
|
@@ -1,285 +1,285 @@
|
|
|
1
|
-
var Ke=Object.defineProperty;var Qe=Object.getOwnPropertyDescriptor;var
|
|
1
|
+
var Ke=Object.defineProperty;var Qe=Object.getOwnPropertyDescriptor;var ke=o=>{throw TypeError(o)};var p=(o,r,e,t)=>{for(var a=t>1?void 0:t?Qe(r,e):r,s=o.length-1,i;s>=0;s--)(i=o[s])&&(a=(t?i(r,e,a):i(a))||a);return t&&a&&Ke(r,e,a),a};var ne=(o,r,e)=>r.has(o)||ke("Cannot "+e);var x=(o,r,e)=>(ne(o,r,"read from private field"),e?e.call(o):r.get(o)),U=(o,r,e)=>r.has(o)?ke("Cannot add the same private member more than once"):r instanceof WeakSet?r.add(o):r.set(o,e),le=(o,r,e,t)=>(ne(o,r,"write to private field"),t?t.call(o,e):r.set(o,e),e),f=(o,r,e)=>(ne(o,r,"access private method"),e);var q=function(){for(var o=[],r=arguments.length;r--;)o[r]=arguments[r];return o.reduce(function(e,t){return e.concat(typeof t=="string"?t:Array.isArray(t)?q.apply(void 0,t):typeof t=="object"&&t?Object.keys(t).map(function(a){return t[a]?a:""}):"")},[]).join(" ")};var T=o=>typeof o=="string",We=o=>typeof o=="function",_e=new Map,Ce="en";function be(o){return[...Array.isArray(o)?o:[o],Ce]}function pe(o,r,e){let t=be(o);e||(e="default");let a;if(typeof e=="string")switch(a={day:"numeric",month:"short",year:"numeric"},e){case"full":a.weekday="long";case"long":a.month="long";break;case"short":a.month="numeric";break}else a=e;return J(()=>K("date",t,e),()=>new Intl.DateTimeFormat(t,a)).format(T(r)?new Date(r):r)}function er(o,r,e){let t;if(e||(e="default"),typeof e=="string")switch(t={second:"numeric",minute:"numeric",hour:"numeric"},e){case"full":case"long":t.timeZoneName="short";break;case"short":delete t.second}else t=e;return pe(o,r,t)}function ce(o,r,e){let t=be(o);return J(()=>K("number",t,e),()=>new Intl.NumberFormat(t,e)).format(r)}function ze(o,r,e,{offset:t=0,...a}){let s=be(o),i=r?J(()=>K("plural-ordinal",s),()=>new Intl.PluralRules(s,{type:"ordinal"})):J(()=>K("plural-cardinal",s),()=>new Intl.PluralRules(s,{type:"cardinal"}));return a[e]??a[i.select(e-t)]??a.other}function J(o,r){let e=o(),t=_e.get(e);return t||(t=r(),_e.set(e,t)),t}function K(o,r,e){let t=r.join("-");return`${o}-${t}-${JSON.stringify(e)}`}var Fe=/\\u[a-fA-F0-9]{4}|\\x[a-fA-F0-9]{2}/,Ee=o=>o.replace(/\\u([a-fA-F0-9]{4})|\\x([a-fA-F0-9]{2})/g,(r,e,t)=>{if(e){let a=parseInt(e,16);return String.fromCharCode(a)}else{let a=parseInt(t,16);return String.fromCharCode(a)}}),Me="%__lingui_octothorpe__%",rr=(o,r,e={})=>{let t=r||o,a=i=>typeof i=="object"?i:e[i],s=(i,n)=>{let b=Object.keys(e).length?a("number"):void 0,w=ce(t,i,b);return n.replace(new RegExp(Me,"g"),w)};return{plural:(i,n)=>{let{offset:b=0}=n,w=ze(t,!1,i,n);return s(i-b,w)},selectordinal:(i,n)=>{let{offset:b=0}=n,w=ze(t,!0,i,n);return s(i-b,w)},select:tr,number:(i,n)=>ce(t,i,a(n)||{style:n}),date:(i,n)=>pe(t,i,a(n)||n),time:(i,n)=>er(t,i,a(n)||n)}},tr=(o,r)=>r[o]??r.other;function or(o,r,e){return(t={},a)=>{let s=rr(r,e,a),i=(b,w=!1)=>Array.isArray(b)?b.reduce((F,L)=>{if(L==="#"&&w)return F+Me;if(T(L))return F+L;let[D,_,V]=L,S={};_==="plural"||_==="selectordinal"||_==="select"?Object.entries(V).forEach(([O,Y])=>{S[O]=i(Y,_==="plural"||_==="selectordinal")}):S=V;let k;if(_){let O=s[_];k=O(t[D],S)}else k=t[D];return k==null?F:F+k},""):b,n=i(o);return T(n)&&Fe.test(n)?Ee(n):T(n)?n:n?String(n):""}}var ar=Object.defineProperty,ir=(o,r,e)=>r in o?ar(o,r,{enumerable:!0,configurable:!0,writable:!0,value:e}):o[r]=e,sr=(o,r,e)=>(ir(o,typeof r!="symbol"?r+"":r,e),e),de=class{constructor(){sr(this,"_events",{})}on(r,e){var t;return(t=this._events)[r]??(t[r]=[]),this._events[r].push(e),()=>this.removeListener(r,e)}removeListener(r,e){let t=this._getListeners(r);if(!t)return;let a=t.indexOf(e);~a&&t.splice(a,1)}emit(r,...e){let t=this._getListeners(r);t&&t.map(a=>a.apply(this,e))}_getListeners(r){let e=this._events[r];return Array.isArray(e)?e:!1}},nr=Object.defineProperty,lr=(o,r,e)=>r in o?nr(o,r,{enumerable:!0,configurable:!0,writable:!0,value:e}):o[r]=e,$=(o,r,e)=>(lr(o,typeof r!="symbol"?r+"":r,e),e),he=class extends de{constructor(r){super(),$(this,"_locale",""),$(this,"_locales"),$(this,"_localeData",{}),$(this,"_messages",{}),$(this,"_missing"),$(this,"_messageCompiler"),$(this,"t",this._.bind(this)),r.missing!=null&&(this._missing=r.missing),r.messages!=null&&this.load(r.messages),r.localeData!=null&&this.loadLocaleData(r.localeData),(typeof r.locale=="string"||r.locales)&&this.activate(r.locale??Ce,r.locales)}get locale(){return this._locale}get locales(){return this._locales}get messages(){return this._messages[this._locale]??{}}get localeData(){return this._localeData[this._locale]??{}}_loadLocaleData(r,e){let t=this._localeData[r];t?Object.assign(t,e):this._localeData[r]=e}setMessagesCompiler(r){return this._messageCompiler=r,this}loadLocaleData(r,e){typeof r=="string"?this._loadLocaleData(r,e):Object.keys(r).forEach(t=>this._loadLocaleData(t,r[t])),this.emit("change")}_load(r,e){let t=this._messages[r];t?Object.assign(t,e):this._messages[r]=e}load(r,e){typeof r=="string"&&typeof e=="object"?this._load(r,e):Object.entries(r).forEach(([t,a])=>this._load(t,a)),this.emit("change")}loadAndActivate({locale:r,locales:e,messages:t}){this._locale=r,this._locales=e||void 0,this._messages[this._locale]=t,this.emit("change")}activate(r,e){this._locale=r,this._locales=e,this.emit("change")}_(r,e,t){if(!this.locale)throw new Error("Lingui: Attempted to call a translation function without setting a locale.\nMake sure to call `i18n.activate(locale)` before using Lingui functions.\nThis issue may also occur due to a race condition in your initialization logic.");let a=t?.message;r||(r=""),T(r)||(e=r.values||e,a=r.message,r=r.id);let s=this.messages[r],i=s===void 0,n=this._missing;if(n&&i)return We(n)?n(this._locale,r):n;i&&this.emit("missing",{id:r,locale:this._locale});let b=s||a||r;return T(b)&&(this._messageCompiler?b=this._messageCompiler(b):console.warn(`Uncompiled message detected! Message:
|
|
2
2
|
|
|
3
|
-
> ${
|
|
3
|
+
> ${b}
|
|
4
4
|
|
|
5
5
|
That means you use raw catalog or your catalog doesn't have a translation for the message and fallback was used.
|
|
6
6
|
ICU features such as interpolation and plurals will not work properly for that message.
|
|
7
7
|
|
|
8
8
|
Please compile your catalog first.
|
|
9
|
-
`)),T(
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
`,
|
|
9
|
+
`)),T(b)&&Fe.test(b)?Ee(b):T(b)?b:or(b,this._locale,this._locales)(e,t?.formats)}date(r,e){return pe(this._locales||this._locale,r,e)}number(r,e){return ce(this._locales||this._locale,r,e)}};function cr(o={}){return new he(o)}var C=cr();var h=function(o,r,e,t){if(e==="a"&&!t)throw new TypeError("Private accessor was defined without a getter");if(typeof r=="function"?o!==r||!t:!r.has(o))throw new TypeError("Cannot read private member from an object whose class did not declare it");return e==="m"?t:e==="a"?t.call(o):t?t.value:r.get(o)},g=function(o,r,e,t,a){if(t==="m")throw new TypeError("Private method is not writable");if(t==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof r=="function"?o!==r||!a:!r.has(o))throw new TypeError("Cannot write private member to an object whose class did not declare it");return t==="a"?a.call(o,e):a?a.value=e:r.set(o,e),e};function Le(o){var r,e,t,a,s,i,n,b,w,F,L,D,_,V,S,k,O,Y,ae;class Je extends o{constructor(...c){var d,u,m;super(...c),r.add(this),this.internals=this.attachInternals(),e.set(this,!1),t.set(this,!1),a.set(this,!1),s.set(this,void 0),i.set(this,void 0),n.set(this,!0),w.set(this,""),F.set(this,()=>{g(this,a,!0,"f"),g(this,e,!0,"f"),h(this,r,"m",k).call(this)}),L.set(this,()=>{g(this,e,!1,"f"),h(this,r,"m",O).call(this,this.shouldFormValueUpdate()?h(this,w,"f"):""),!this.validity.valid&&h(this,a,"f")&&g(this,t,!0,"f");let E=h(this,r,"m",k).call(this);this.validationMessageCallback&&this.validationMessageCallback(E?this.internals.validationMessage:"")}),D.set(this,()=>{var E;h(this,n,"f")&&this.validationTarget&&(this.internals.setValidity(this.validity,this.validationMessage,this.validationTarget),g(this,n,!1,"f")),g(this,a,!0,"f"),g(this,t,!0,"f"),h(this,r,"m",k).call(this),(E=this===null||this===void 0?void 0:this.validationMessageCallback)===null||E===void 0||E.call(this,this.showError?this.internals.validationMessage:"")}),_.set(this,void 0),V.set(this,!1),S.set(this,Promise.resolve()),(d=this.addEventListener)===null||d===void 0||d.call(this,"focus",h(this,F,"f")),(u=this.addEventListener)===null||u===void 0||u.call(this,"blur",h(this,L,"f")),(m=this.addEventListener)===null||m===void 0||m.call(this,"invalid",h(this,D,"f")),this.setValue(null)}static get formAssociated(){return!0}static get validators(){return this.formControlValidators||[]}static get observedAttributes(){let c=this.validators.map(m=>m.attribute).flat(),d=super.observedAttributes||[];return[...new Set([...d,...c])]}static getValidator(c){return this.validators.find(d=>d.attribute===c)||null}static getValidators(c){return this.validators.filter(d=>{var u;if(d.attribute===c||!((u=d.attribute)===null||u===void 0)&&u.includes(c))return!0})}get form(){return this.internals.form}get showError(){return h(this,r,"m",k).call(this)}checkValidity(){return this.internals.checkValidity()}get validity(){return this.internals.validity}get validationMessage(){return this.internals.validationMessage}attributeChangedCallback(c,d,u){var m;(m=super.attributeChangedCallback)===null||m===void 0||m.call(this,c,d,u);let I=this.constructor.getValidators(c);I?.length&&this.validationTarget&&this.setValue(h(this,w,"f"))}setValue(c){var d;g(this,t,!1,"f"),(d=this.validationMessageCallback)===null||d===void 0||d.call(this,""),g(this,w,c,"f");let m=this.shouldFormValueUpdate()?c:null;this.internals.setFormValue(m),h(this,r,"m",O).call(this,m),this.valueChangedCallback&&this.valueChangedCallback(m),h(this,r,"m",k).call(this)}shouldFormValueUpdate(){return!0}get validationComplete(){return new Promise(c=>c(h(this,S,"f")))}formResetCallback(){var c,d;g(this,a,!1,"f"),g(this,t,!1,"f"),h(this,r,"m",k).call(this),(c=this.resetFormControl)===null||c===void 0||c.call(this),(d=this.validationMessageCallback)===null||d===void 0||d.call(this,h(this,r,"m",k).call(this)?this.validationMessage:"")}}return e=new WeakMap,t=new WeakMap,a=new WeakMap,s=new WeakMap,i=new WeakMap,n=new WeakMap,w=new WeakMap,F=new WeakMap,L=new WeakMap,D=new WeakMap,_=new WeakMap,V=new WeakMap,S=new WeakMap,r=new WeakSet,b=function(){let c=this.getRootNode(),d=`${this.localName}[name="${this.getAttribute("name")}"]`;return c.querySelectorAll(d)},k=function(){if(this.hasAttribute("disabled"))return!1;let c=h(this,t,"f")||h(this,a,"f")&&!this.validity.valid&&!h(this,e,"f");return c&&this.internals.states?this.internals.states.add("--show-error"):this.internals.states&&this.internals.states.delete("--show-error"),c},O=function(c){let d=this.constructor,u={},m=d.validators,E=[],I=m.some(z=>z.isValid instanceof Promise);h(this,V,"f")||(g(this,S,new Promise(z=>{g(this,_,z,"f")}),"f"),g(this,V,!0,"f")),h(this,s,"f")&&(h(this,s,"f").abort(),g(this,i,h(this,s,"f"),"f"));let H=new AbortController;g(this,s,H,"f");let X,ye=!1;m.length&&(m.forEach(z=>{let ie=z.key||"customError",A=z.isValid(this,c,H.signal);A instanceof Promise?(E.push(A),A.then(se=>{se!=null&&(u[ie]=!se,X=h(this,r,"m",ae).call(this,z,c),h(this,r,"m",Y).call(this,u,X))})):(u[ie]=!A,this.validity[ie]!==!A&&(ye=!0),!A&&!X&&(X=h(this,r,"m",ae).call(this,z,c)))}),Promise.allSettled(E).then(()=>{var z;H?.signal.aborted||(g(this,V,!1,"f"),(z=h(this,_,"f"))===null||z===void 0||z.call(this))}),(ye||!I)&&h(this,r,"m",Y).call(this,u,X))},Y=function(c,d){if(this.validationTarget)this.internals.setValidity(c,d,this.validationTarget),g(this,n,!1,"f");else{if(this.internals.setValidity(c,d),this.internals.validity.valid)return;g(this,n,!0,"f")}},ae=function(c,d){if(this.validityCallback){let u=this.validityCallback(c.key||"customError");if(u)return u}return c.message instanceof Function?c.message(this,d):c.message},Je}import{css as Cr,html as Z,LitElement as Fr}from"lit";import{property as y}from"lit/decorators.js";import{ifDefined as me}from"lit/directives/if-defined.js";import{when as fe}from"lit/directives/when.js";var dr=["en","nb","fi","da","sv"],ue="en",Q=o=>dr.find(r=>o===r||o.toLowerCase().includes(r))||ue;function W(){if(typeof window>"u"){let o=process.env.NMP_LANGUAGE||Intl.DateTimeFormat().resolvedOptions().locale;return Q(o)}try{let o=Se(document);if(o)return Q(o);let r=ur();if(r)return Q(r);let e=Se(Oe());return e?Q(e):ue}catch(o){return console.warn("could not detect locale, falling back to source locale",o),ue}}var Te=(o,r,e,t,a)=>{C.load("en",o),C.load("nb",r),C.load("fi",e),C.load("da",t),C.load("sv",a);let s=W();C.activate(s),Pe(),br()},hr="warp-i18n-change";function Pe(){typeof window>"u"||window.dispatchEvent(new Event(hr))}var Ve=!1;function br(){if(Ve||typeof window>"u"||!document?.documentElement)return;Ve=!0;let o=()=>{let a=W();C.locale!==a&&(C.activate(a),Pe())},r=new MutationObserver(a=>{for(let s of a)if(s.type==="attributes"&&s.attributeName==="lang"){o();break}});r.observe(document.documentElement,{attributes:!0,attributeFilter:["lang"]});let e=Oe();e&&e.documentElement&&e!==document&&r.observe(e.documentElement,{attributes:!0,attributeFilter:["lang"]});let t=pr();t&&r.observe(t,{attributes:!0,attributeFilter:["lang"]})}function Oe(){try{return window.parent?.document??null}catch{return null}}function Se(o){try{return o?.documentElement?.lang??""}catch{return""}}function pr(){try{return window.frameElement??null}catch{return null}}function ur(){try{return window.frameElement?.getAttribute?.("lang")??""}catch{return""}}import{css as gr}from"lit";import{unsafeCSS as vr}from"lit";var $e=gr`
|
|
10
|
+
*,
|
|
11
|
+
:before,
|
|
12
|
+
:after {
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
border-style: solid;
|
|
15
|
+
border-width: 0;
|
|
16
|
+
border-color: var(--w-s-color-border);
|
|
17
|
+
}
|
|
18
|
+
html {
|
|
19
|
+
font-size: 62.5%;
|
|
20
|
+
}
|
|
21
|
+
body {
|
|
22
|
+
background-color: var(--w-s-color-background);
|
|
23
|
+
min-height: 100%;
|
|
24
|
+
margin: 0;
|
|
25
|
+
overflow-y: scroll;
|
|
26
|
+
}
|
|
27
|
+
body,
|
|
28
|
+
:host {
|
|
29
|
+
-webkit-text-size-adjust: 100%;
|
|
30
|
+
tab-size: 4;
|
|
31
|
+
-webkit-tap-highlight-color: transparent;
|
|
32
|
+
font-family: var(--w-font-family);
|
|
33
|
+
font-size: var(--w-font-size-m);
|
|
34
|
+
line-height: var(--w-line-height-m);
|
|
35
|
+
color: var(--w-s-color-text);
|
|
36
|
+
}
|
|
37
|
+
hr {
|
|
38
|
+
color: inherit;
|
|
39
|
+
border-top-width: 1px;
|
|
40
|
+
height: 0;
|
|
41
|
+
}
|
|
42
|
+
abbr:where([title]) {
|
|
43
|
+
-webkit-text-decoration: underline dotted;
|
|
44
|
+
text-decoration: underline dotted;
|
|
45
|
+
}
|
|
46
|
+
h1,
|
|
47
|
+
h2,
|
|
48
|
+
h3,
|
|
49
|
+
h4,
|
|
50
|
+
h5,
|
|
51
|
+
h6 {
|
|
52
|
+
font-size: inherit;
|
|
53
|
+
font-weight: 700;
|
|
54
|
+
}
|
|
55
|
+
a {
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
color: var(--w-s-color-text-link);
|
|
58
|
+
text-decoration: none;
|
|
59
|
+
}
|
|
60
|
+
a:hover,
|
|
61
|
+
a:focus,
|
|
62
|
+
a:active {
|
|
63
|
+
text-decoration: underline;
|
|
64
|
+
}
|
|
65
|
+
a:focus-visible {
|
|
66
|
+
outline: 2px solid var(--w-s-color-border-focus);
|
|
67
|
+
outline-offset: 1px;
|
|
68
|
+
}
|
|
69
|
+
b,
|
|
70
|
+
strong {
|
|
71
|
+
font-weight: 700;
|
|
72
|
+
}
|
|
73
|
+
code,
|
|
74
|
+
kbd,
|
|
75
|
+
samp,
|
|
76
|
+
pre {
|
|
77
|
+
font-family:
|
|
78
|
+
ui-monospace,
|
|
79
|
+
SFMono-Regular,
|
|
80
|
+
Menlo,
|
|
81
|
+
Monaco,
|
|
82
|
+
Consolas,
|
|
83
|
+
Liberation Mono,
|
|
84
|
+
Courier New,
|
|
85
|
+
monospace;
|
|
86
|
+
font-size: 1em;
|
|
87
|
+
}
|
|
88
|
+
sub,
|
|
89
|
+
sup {
|
|
90
|
+
vertical-align: baseline;
|
|
91
|
+
font-size: 75%;
|
|
92
|
+
line-height: 0;
|
|
93
|
+
position: relative;
|
|
94
|
+
}
|
|
95
|
+
sub {
|
|
96
|
+
bottom: -0.25em;
|
|
97
|
+
}
|
|
98
|
+
sup {
|
|
99
|
+
top: -0.5em;
|
|
100
|
+
}
|
|
101
|
+
table {
|
|
102
|
+
text-indent: 0;
|
|
103
|
+
border-color: inherit;
|
|
104
|
+
border-collapse: collapse;
|
|
105
|
+
}
|
|
106
|
+
button,
|
|
107
|
+
input,
|
|
108
|
+
optgroup,
|
|
109
|
+
select,
|
|
110
|
+
textarea {
|
|
111
|
+
font-family: inherit;
|
|
112
|
+
font-size: 100%;
|
|
113
|
+
font-weight: inherit;
|
|
114
|
+
line-height: inherit;
|
|
115
|
+
color: inherit;
|
|
116
|
+
margin: 0;
|
|
117
|
+
padding: 0;
|
|
118
|
+
}
|
|
119
|
+
button,
|
|
120
|
+
select {
|
|
121
|
+
text-transform: none;
|
|
122
|
+
}
|
|
123
|
+
button,
|
|
124
|
+
[type="button"],
|
|
125
|
+
[type="reset"],
|
|
126
|
+
[type="submit"] {
|
|
127
|
+
-webkit-appearance: button;
|
|
128
|
+
}
|
|
129
|
+
:-moz-focusring {
|
|
130
|
+
outline: auto;
|
|
131
|
+
}
|
|
132
|
+
:-moz-ui-invalid {
|
|
133
|
+
box-shadow: none;
|
|
134
|
+
}
|
|
135
|
+
progress {
|
|
136
|
+
vertical-align: baseline;
|
|
137
|
+
}
|
|
138
|
+
::-webkit-inner-spin-button {
|
|
139
|
+
height: auto;
|
|
140
|
+
}
|
|
141
|
+
::-webkit-outer-spin-button {
|
|
142
|
+
height: auto;
|
|
143
|
+
}
|
|
144
|
+
[type="search"] {
|
|
145
|
+
-webkit-appearance: textfield;
|
|
146
|
+
outline-offset: -2px;
|
|
147
|
+
}
|
|
148
|
+
::-webkit-search-decoration {
|
|
149
|
+
-webkit-appearance: none;
|
|
150
|
+
}
|
|
151
|
+
::-webkit-file-upload-button {
|
|
152
|
+
-webkit-appearance: button;
|
|
153
|
+
font: inherit;
|
|
154
|
+
}
|
|
155
|
+
summary {
|
|
156
|
+
display: list-item;
|
|
157
|
+
}
|
|
158
|
+
blockquote,
|
|
159
|
+
dl,
|
|
160
|
+
dd,
|
|
161
|
+
h1,
|
|
162
|
+
h2,
|
|
163
|
+
h3,
|
|
164
|
+
h4,
|
|
165
|
+
h5,
|
|
166
|
+
h6,
|
|
167
|
+
hr,
|
|
168
|
+
figure,
|
|
169
|
+
p,
|
|
170
|
+
pre {
|
|
171
|
+
margin: 0;
|
|
172
|
+
}
|
|
173
|
+
fieldset {
|
|
174
|
+
margin: 0;
|
|
175
|
+
padding: 0;
|
|
176
|
+
}
|
|
177
|
+
legend {
|
|
178
|
+
padding: 0;
|
|
179
|
+
}
|
|
180
|
+
ol,
|
|
181
|
+
ul,
|
|
182
|
+
menu {
|
|
183
|
+
margin: 0;
|
|
184
|
+
padding: 0;
|
|
185
|
+
list-style: none;
|
|
186
|
+
}
|
|
187
|
+
textarea {
|
|
188
|
+
resize: vertical;
|
|
189
|
+
}
|
|
190
|
+
input::placeholder,
|
|
191
|
+
textarea::placeholder {
|
|
192
|
+
opacity: 1;
|
|
193
|
+
color: var(--w-s-color-text-placeholder);
|
|
194
|
+
}
|
|
195
|
+
button,
|
|
196
|
+
[role="button"] {
|
|
197
|
+
cursor: pointer;
|
|
198
|
+
}
|
|
199
|
+
:disabled {
|
|
200
|
+
cursor: default;
|
|
201
|
+
}
|
|
202
|
+
img,
|
|
203
|
+
svg,
|
|
204
|
+
video,
|
|
205
|
+
canvas,
|
|
206
|
+
audio,
|
|
207
|
+
iframe,
|
|
208
|
+
embed,
|
|
209
|
+
object {
|
|
210
|
+
vertical-align: middle;
|
|
211
|
+
display: block;
|
|
212
|
+
}
|
|
213
|
+
img,
|
|
214
|
+
video {
|
|
215
|
+
max-width: 100%;
|
|
216
|
+
height: auto;
|
|
217
|
+
}
|
|
218
|
+
h1 {
|
|
219
|
+
font-size: var(--w-font-size-xxl);
|
|
220
|
+
line-height: var(--w-line-height-xxl);
|
|
221
|
+
}
|
|
222
|
+
h2 {
|
|
223
|
+
font-size: var(--w-font-size-xl);
|
|
224
|
+
line-height: var(--w-line-height-xl);
|
|
225
|
+
}
|
|
226
|
+
h3 {
|
|
227
|
+
font-size: var(--w-font-size-l);
|
|
228
|
+
line-height: var(--w-line-height-l);
|
|
229
|
+
}
|
|
230
|
+
h4 {
|
|
231
|
+
font-size: var(--w-font-size-m);
|
|
232
|
+
line-height: var(--w-line-height-m);
|
|
233
|
+
}
|
|
234
|
+
h5 {
|
|
235
|
+
font-size: var(--w-font-size-s);
|
|
236
|
+
line-height: var(--w-line-height-s);
|
|
237
|
+
}
|
|
238
|
+
dt,
|
|
239
|
+
dd {
|
|
240
|
+
margin: 0 16px;
|
|
241
|
+
}
|
|
242
|
+
h1,
|
|
243
|
+
h2,
|
|
244
|
+
h3,
|
|
245
|
+
h4,
|
|
246
|
+
h5,
|
|
247
|
+
ul,
|
|
248
|
+
ol,
|
|
249
|
+
dl,
|
|
250
|
+
p,
|
|
251
|
+
blockquote {
|
|
252
|
+
margin: 0 0 8px;
|
|
253
|
+
}
|
|
254
|
+
[hidden] {
|
|
255
|
+
display: none !important;
|
|
256
|
+
}
|
|
257
|
+
[tabindex="-1"]:focus:not(:focus-visible) {
|
|
258
|
+
outline: none;
|
|
259
|
+
}
|
|
260
|
+
legend {
|
|
261
|
+
float: left;
|
|
262
|
+
width: 100%;
|
|
263
|
+
margin: 0;
|
|
264
|
+
padding: 0;
|
|
265
|
+
display: table;
|
|
266
|
+
}
|
|
267
|
+
legend + * {
|
|
268
|
+
clear: both;
|
|
269
|
+
}
|
|
270
|
+
fieldset {
|
|
271
|
+
border: 0;
|
|
272
|
+
min-width: 0;
|
|
273
|
+
margin: 0;
|
|
274
|
+
padding: 0.01em 0 0;
|
|
275
|
+
}
|
|
276
|
+
body:not(:-moz-handler-blocked) fieldset {
|
|
277
|
+
display: table-cell;
|
|
278
|
+
}
|
|
279
|
+
svg {
|
|
280
|
+
pointer-events: none;
|
|
281
|
+
}
|
|
282
|
+
`,Ar=vr(`*, :before, :after {
|
|
283
283
|
--w-rotate: 0;
|
|
284
284
|
--w-rotate-x: 0;
|
|
285
285
|
--w-rotate-y: 0;
|
|
@@ -2144,8 +2144,8 @@ Please compile your catalog first.
|
|
|
2144
2144
|
overflow-wrap: break-word
|
|
2145
2145
|
}
|
|
2146
2146
|
|
|
2147
|
-
.before\\:content-\\[\\"
|
|
2148
|
-
content: "
|
|
2147
|
+
.before\\:content-\\[\\"\xE2\u20AC\u201C\\"\\]:before {
|
|
2148
|
+
content: "\xE2\u20AC\u201C"
|
|
2149
2149
|
}
|
|
2150
2150
|
|
|
2151
2151
|
.before\\:content-\\[\\"\\"\\]:before {
|
|
@@ -2445,62 +2445,158 @@ Please compile your catalog first.
|
|
|
2445
2445
|
display: none
|
|
2446
2446
|
}
|
|
2447
2447
|
}
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
}
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2448
|
+
`);var De=JSON.parse('{"select.label.optional":["Valgfri"]}');var Ae=JSON.parse('{"select.label.optional":["Optional"]}');var Ne=JSON.parse('{"select.label.optional":["Valinnainen"]}');var je=JSON.parse('{"select.label.optional":["Valgfri"]}');var Ye=JSON.parse('{"select.label.optional":["Valfritt"]}');import{unsafeCSS as mr}from"lit";var Re=mr("*,:before,:after{--w-rotate:0;--w-rotate-x:0;--w-rotate-y:0;--w-rotate-z:0;--w-scale-x:1;--w-scale-y:1;--w-scale-z:1;--w-skew-x:0;--w-skew-y:0;--w-translate-x:0;--w-translate-y:0;--w-translate-z:0}.focus\\:\\[--w-outline-offset\\:-2px\\]:focus{--w-outline-offset:-2px}.bg-transparent{background-color:#0000}.appearance-none{-webkit-appearance:none;appearance:none}.border-0{border-width:0}.border-1{border-width:1px}.rounded-4{border-radius:4px}.caret-current{caret-color:currentColor}.opacity-25{opacity:.25}.block,.before\\:block:before{display:block}.flex{display:flex}.before\\:hidden:before{display:none}.focusable:focus{outline:2px solid var(--w-s-color-border-focus);outline-offset:var(--w-outline-offset,1px)}.focusable:focus-visible{outline:2px solid var(--w-s-color-border-focus);outline-offset:var(--w-outline-offset,1px)}.focusable:not(:focus-visible){outline:none}.outline-\\[--w-s-color-border-negative\\]\\!{outline-color:var(--w-s-color-border-negative)!important}.bottom-0{bottom:0}.right-0{right:0}.before\\:bottom-0:before{bottom:0}.before\\:right-0:before{right:0}.top-\\[30\\%\\]{top:30%}.absolute{position:absolute}.relative{position:relative}.static{position:static}.before\\:absolute:before{position:absolute}.s-bg{background-color:var(--w-s-color-background)}.s-bg-disabled-subtle{background-color:var(--w-s-color-background-disabled-subtle)}.s-text{color:var(--w-s-color-text)}.s-text-disabled{color:var(--w-s-color-text-disabled)}.s-text-negative{color:var(--w-s-color-text-negative)}.s-text-subtle{color:var(--w-s-color-text-subtle)}.s-icon{color:var(--w-s-color-icon)}.s-border-disabled{border-color:var(--w-s-color-border-disabled)}.s-border-negative{border-color:var(--w-s-color-border-negative)}.s-border-strong{border-color:var(--w-s-color-border-strong)}.hover\\:s-border-disabled:hover{border-color:var(--w-s-color-border-disabled)}.hover\\:s-border-negative-hover:hover{border-color:var(--w-s-color-border-negative-hover)}.hover\\:s-border-strong-hover:hover{border-color:var(--w-s-color-border-strong-hover)}.active\\:s-border-active:active{border-color:var(--w-s-color-border-active)}.active\\:s-border-disabled:active{border-color:var(--w-s-color-border-disabled)}.h-full{height:100%}.w-32{width:3.2rem}.w-full{width:100%}.before\\:h-full:before{height:100%}.before\\:w-32:before{width:3.2rem}.mb-0{margin-bottom:0}.mt-4{margin-top:.4rem}.py-12{padding-top:1.2rem;padding-bottom:1.2rem}.pb-4{padding-bottom:.4rem}.pl-0{padding-left:0}.pl-8{padding-left:.8rem}.pr-32{padding-right:3.2rem}.cursor-pointer{cursor:pointer}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:grayscale}.font-bold{font-weight:700}.font-normal{font-weight:400}.pointer-events-none,.before\\:pointer-events-none:before{pointer-events:none}.text-m{font-size:var(--w-font-size-m);line-height:var(--w-line-height-m)}.text-s{font-size:var(--w-font-size-s);line-height:var(--w-line-height-s)}.text-xs{font-size:var(--w-font-size-xs);line-height:var(--w-line-height-xs)}");import{css as Ie}from"lit";var He=Ie`
|
|
2449
|
+
/* Label component tokens with semantic fallbacks */
|
|
2450
|
+
label {
|
|
2451
|
+
/* Internal tokens - not part of public API */
|
|
2452
|
+
--_color: var(--w-c-input-label-color, var(--w-s-color-text));
|
|
2453
|
+
--_font-size: var(--w-c-input-label-font-size, var(--w-font-size-s));
|
|
2454
|
+
--_line-height: var(--w-c-input-label-line-height, var(--w-line-height-s));
|
|
2455
|
+
--_font-weight: var(--w-c-input-label-font-weight, 700);
|
|
2456
|
+
--_padding-bottom: var(--w-c-input-label-padding-bottom, 0.4rem);
|
|
2457
|
+
--_cursor: var(--w-c-input-label-cursor, pointer);
|
|
2458
|
+
--_display: var(--w-c-input-label-display, block);
|
|
2459
|
+
|
|
2460
|
+
/* Apply styles */
|
|
2461
|
+
display: var(--_display);
|
|
2462
|
+
position: relative;
|
|
2463
|
+
font-size: var(--_font-size);
|
|
2464
|
+
line-height: var(--_line-height);
|
|
2465
|
+
font-weight: var(--_font-weight);
|
|
2466
|
+
padding-bottom: var(--_padding-bottom);
|
|
2467
|
+
cursor: var(--_cursor);
|
|
2468
|
+
color: var(--_color);
|
|
2469
|
+
-webkit-font-smoothing: antialiased;
|
|
2470
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2471
|
+
}
|
|
2472
|
+
|
|
2473
|
+
/* Optional text styling */
|
|
2474
|
+
label span {
|
|
2475
|
+
--_padding-left: var(--w-c-input-optional-padding-left, 0.8rem);
|
|
2476
|
+
--_font-weight: var(--w-c-input-optional-font-weight, 400);
|
|
2477
|
+
--_font-size: var(--w-c-input-optional-font-size, var(--w-font-size-s));
|
|
2478
|
+
--_line-height: var(
|
|
2479
|
+
--w-c-input-optional-line-height,
|
|
2480
|
+
var(--w-line-height-s)
|
|
2481
|
+
);
|
|
2482
|
+
--_color: var(--w-c-input-optional-color, var(--w-s-color-text-subtle));
|
|
2483
|
+
|
|
2484
|
+
padding-left: var(--_padding-left);
|
|
2485
|
+
font-weight: var(--_font-weight);
|
|
2486
|
+
font-size: var(--_font-size);
|
|
2487
|
+
line-height: var(--_line-height);
|
|
2488
|
+
color: var(--_color);
|
|
2489
|
+
}
|
|
2490
|
+
`,Xe=Ie`
|
|
2491
|
+
/* Help text component tokens with semantic fallbacks */
|
|
2492
|
+
:host {
|
|
2493
|
+
--_help-text-color: var(
|
|
2494
|
+
--w-c-input-help-text-color,
|
|
2495
|
+
var(--w-s-color-text-subtle)
|
|
2496
|
+
);
|
|
2497
|
+
--_help-text-font-size: var(
|
|
2498
|
+
--w-c-input-help-text-font-size,
|
|
2499
|
+
var(--w-font-size-xs)
|
|
2500
|
+
);
|
|
2501
|
+
--_help-text-line-height: var(
|
|
2502
|
+
--w-c-input-help-text-line-height,
|
|
2503
|
+
var(--w-line-height-xs)
|
|
2504
|
+
);
|
|
2505
|
+
--_help-text-margin-top: var(--w-c-input-help-text-margin-top, 0.4rem);
|
|
2506
|
+
--_help-text-display: var(--w-c-input-help-text-display, block);
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
/* Invalid state overrides color */
|
|
2510
|
+
:host([invalid]) {
|
|
2511
|
+
--_help-text-color: var(
|
|
2512
|
+
--w-c-input-help-text-color-invalid,
|
|
2513
|
+
var(--w-s-color-text-negative)
|
|
2514
|
+
);
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
.help-text {
|
|
2518
|
+
font-size: var(--_help-text-font-size);
|
|
2519
|
+
line-height: var(--_help-text-line-height);
|
|
2520
|
+
margin-top: var(--_help-text-margin-top);
|
|
2521
|
+
display: var(--_help-text-display);
|
|
2522
|
+
color: var(--_help-text-color);
|
|
2523
|
+
}
|
|
2524
|
+
`;import{html as wr,LitElement as xr}from"lit";import{property as ge,state as yr}from"lit/decorators.js";import{classMap as kr}from"lit/directives/class-map.js";import{css as fr}from"lit";var Ue=fr`
|
|
2525
|
+
:host {
|
|
2526
|
+
display: inline-block;
|
|
2527
|
+
}
|
|
2528
|
+
.w-icon {
|
|
2529
|
+
--_w-icon-size: var(--w-icon-size, 24px);
|
|
2530
|
+
height: var(--_w-icon-size);
|
|
2531
|
+
width: var(--_w-icon-size);
|
|
2532
|
+
display: flex;
|
|
2533
|
+
}
|
|
2534
|
+
.w-icon svg {
|
|
2535
|
+
pointer-events: none;
|
|
2536
|
+
height: var(--_w-icon-size);
|
|
2537
|
+
width: var(--_w-icon-size);
|
|
2538
|
+
}
|
|
2539
|
+
.w-icon--s {
|
|
2540
|
+
--w-icon-size: 16px;
|
|
2541
|
+
}
|
|
2542
|
+
.w-icon--m {
|
|
2543
|
+
--w-icon-size: 24px;
|
|
2544
|
+
}
|
|
2545
|
+
.w-icon--l {
|
|
2546
|
+
--w-icon-size: 32px;
|
|
2547
|
+
}
|
|
2548
|
+
`;var ve=new Map,_r='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"></svg>';function zr(o,r={}){let e=r.responseParser??(t=>t.text());return ve.has(o)||ve.set(o,fetch(o).then(e)),ve.get(o)}var P=class extends xr{constructor(){super(...arguments);this.locale=document.documentElement.lang||"en";this.svg=null}async fetchIcon(e){let t=`https://assets.finn.no/pkg/eikons/~1/${this.locale}/${e}.svg`;try{let a=await zr(t);return new DOMParser().parseFromString(a,"text/html").body.querySelector("svg")}catch{return null}}firstUpdated(){this.loadIcon()}updated(e){(e.has("name")||e.has("locale"))&&this.loadIcon()}async loadIcon(){if(!this.name){this.svg=null;return}let e=await this.fetchIcon(this.name);e||(e=new DOMParser().parseFromString(_r,"text/html").body.firstElementChild),this.svg=e}render(){let e=this.size||"medium",t=this.name||"",a={"w-icon":!0,"w-icon--s":e==="small","w-icon--m":e==="medium","w-icon--l":e==="large"},s=typeof e=="string"&&e.endsWith("px")?`--w-icon-size: ${e};`:"";return wr`<div
|
|
2549
|
+
class="${kr(a)}"
|
|
2550
|
+
style="${s}"
|
|
2551
|
+
part="w-${t.toLowerCase()}"
|
|
2552
|
+
>
|
|
2553
|
+
${this.svg}
|
|
2554
|
+
</div>`}};P.styles=[Ue],p([ge({type:String,reflect:!0})],P.prototype,"name",2),p([ge({type:String,reflect:!0})],P.prototype,"size",2),p([ge({type:String,reflect:!0,useDefault:!0})],P.prototype,"locale",2),p([yr()],P.prototype,"svg",2);customElements.get("w-icon")||customElements.define("w-icon",P);var M={base:"block text-m mb-0 py-12 pr-32 rounded-4 w-full focusable focus:[--w-outline-offset:-2px] appearance-none cursor-pointer caret-current",default:"s-text s-bg pl-8 border-1 s-border-strong hover:s-border-strong-hover active:s-border-active",disabled:"s-text-disabled s-bg-disabled-subtle pl-8 border-1 s-border-disabled hover:s-border-disabled active:s-border-disabled pointer-events-none",invalid:"s-text s-bg pl-8 border-1 s-border-negative hover:s-border-negative-hover active:s-border-active outline-[--w-s-color-border-negative]!",readOnly:"s-text bg-transparent pl-0 border-0 pointer-events-none before:hidden",wrapper:"relative",selectWrapper:"relative before:block before:absolute before:right-0 before:bottom-0 before:w-32 before:h-full before:pointer-events-none ",chevron:"block absolute top-[30%] right-0 bottom-0 w-32 h-full s-icon pointer-events-none cursor-pointer",chevronDisabled:"opacity-25"},B,G,j,l,we,ee,Ze,N,re,xe,Be,Ge,qe,te,oe,v=class extends Le(Fr){constructor(){super();U(this,l);this.autoFocus=!1;this.autofocus=!1;this.invalid=!1;this.always=!1;this.optional=!1;this.disabled=!1;this.readOnly=!1;this.readonly=!1;this._options=[];U(this,B);U(this,G,()=>f(this,l,re).call(this));U(this,j);this._setValue=e=>{this.value=e,this.setValue(e)};Te(Ae,je,Ne,De,Ye)}resetFormControl(){this.value=x(this,B)}connectedCallback(){super.connectedCallback(),le(this,B,this.value),(this.autofocus||this.autoFocus)&&this.shadowRoot.querySelector("select").focus(),f(this,l,xe).call(this,{syncValueFromSelected:!0}),this.ownerDocument?.defaultView?.addEventListener("pageshow",x(this,G)),le(this,j,new MutationObserver(()=>{f(this,l,xe).call(this,{syncValueFromSelected:!0})})),x(this,j).observe(this,{childList:!0,subtree:!0,characterData:!0,attributes:!0,attributeFilter:["selected","disabled","value"]})}disconnectedCallback(){super.disconnectedCallback(),this.ownerDocument?.defaultView?.removeEventListener("pageshow",x(this,G)),x(this,j)?.disconnect()}firstUpdated(){this.value&&f(this,l,N).call(this,this.value),f(this,l,re).call(this,{allowDefaultFirstOption:!1})}formStateRestoreCallback(e,t){if(typeof e=="string"&&e){this._setValue(e),f(this,l,N).call(this,e);return}f(this,l,re).call(this,{allowDefaultFirstOption:!0})}willUpdate(e){e.has("value")&&this.setValue(this.value)}updated(e){if(e.has("value")){let t=f(this,l,ee).call(this);t&&t.value!==this.value&&(t.value=this.value??""),f(this,l,N).call(this,this.value??"")}}handleKeyDown(e){if((this.readonly||this.readOnly)&&(e.key===" "||e.key==="ArrowDown"||e.key==="ArrowUp")&&e.preventDefault(),e.key==="Enter"&&this.internals.form){this.internals.form.requestSubmit();return}}onChange(e){let a=e.currentTarget.value;this._setValue(a),f(this,l,N).call(this,a),this.dispatchEvent(new CustomEvent("change",{detail:a,bubbles:!0,composed:!0}))}render(){return Z`<div class="${M.wrapper}">
|
|
2555
|
+
${fe(this.label,()=>Z`<label for="${x(this,l,te)}">
|
|
2556
|
+
${this.label}
|
|
2557
|
+
${fe(this.optional,()=>Z`<span
|
|
2558
|
+
>${C._({id:"select.label.optional",message:"Optional",comment:"Shown behind label when marked as optional"})}</span
|
|
2559
|
+
>`)}</label
|
|
2560
|
+
>`)}
|
|
2561
|
+
<div class="${M.selectWrapper}">
|
|
2562
|
+
<select
|
|
2563
|
+
part="input"
|
|
2564
|
+
class="${x(this,l,Be)}"
|
|
2565
|
+
id="${x(this,l,te)}"
|
|
2566
|
+
?disabled=${this.disabled}
|
|
2567
|
+
aria-readonly="${this.readonly}"
|
|
2568
|
+
aria-describedby="${me(x(this,l,oe))}"
|
|
2569
|
+
aria-invalid="${me(this.invalid)}"
|
|
2570
|
+
aria-errormessage="${me(this.invalid&&x(this,l,oe))}"
|
|
2571
|
+
@keydown=${this.handleKeyDown}
|
|
2572
|
+
@change=${this.onChange}
|
|
2573
|
+
>
|
|
2574
|
+
${this._options}
|
|
2575
|
+
</select>
|
|
2576
|
+
<div class="${x(this,l,qe)}">
|
|
2577
|
+
<w-icon
|
|
2578
|
+
name="ChevronDown"
|
|
2579
|
+
size="small"
|
|
2580
|
+
locale="${W()}"
|
|
2581
|
+
class="flex"
|
|
2582
|
+
></w-icon>
|
|
2583
|
+
</div>
|
|
2584
|
+
</div>
|
|
2585
|
+
${fe(this.helpText||this.always||this.invalid,()=>Z`<div id="${x(this,l,oe)}" class="${x(this,l,Ge)}">
|
|
2586
|
+
${this.helpText||this.hint}
|
|
2587
|
+
</div>`)}
|
|
2588
|
+
</div>`}};B=new WeakMap,G=new WeakMap,j=new WeakMap,l=new WeakSet,we=function(){return[...this.children].filter(e=>e.tagName.toLowerCase()==="option"||e.tagName.toLowerCase()==="w-option")},ee=function(){return this.shadowRoot?.querySelector("select")},Ze=function(){return f(this,l,we).call(this).some(e=>e.hasAttribute("selected"))},N=function(e){let t=f(this,l,ee).call(this);if(!t)return;let a=!1;for(let s of[...t.options]){let i=!a&&s.value===e;s.selected=i,s.toggleAttribute("selected",i),i&&(a=!0)}},re=function({allowDefaultFirstOption:e=!1}={}){let t=f(this,l,ee).call(this);if(!t)return;let a=t.value;!a||a===this.value||!e&&!this.value&&!f(this,l,Ze).call(this)&&t.selectedIndex===0||(this._setValue(a),f(this,l,N).call(this,a))},xe=function({syncValueFromSelected:e=!1}={}){let t=f(this,l,we).call(this),a,s=t.map(i=>{let n=i.getAttribute("value")??"",b=i.textContent??"",w=i.hasAttribute("selected"),F=i.hasAttribute("disabled");return e&&a===void 0&&w&&(a=n),Z`<option
|
|
2589
|
+
value="${n}"
|
|
2590
|
+
?selected=${w}
|
|
2591
|
+
?disabled=${F}
|
|
2592
|
+
>
|
|
2593
|
+
${b}
|
|
2594
|
+
</option>`});this._options=s,e&&a!==void 0&&a!==this.value&&this._setValue(a)},Be=function(){return q([M.base,!this.invalid&&!this.disabled&&!(this.readonly||this.readOnly)&&M.default,this.invalid&&M.invalid,this.disabled&&M.disabled,(this.readonly||this.readOnly)&&M.readOnly])},Ge=function(){return"help-text"},qe=function(){return q([M.chevron,this.disabled&&M.chevronDisabled])},te=function(){return"select_id"},oe=function(){return this.helpText||this.hint?`${x(this,l,te)}__hint`:void 0},v.styles=[$e,Re,He,Xe,Cr`
|
|
2595
|
+
/* if there is an option with an empty value and it is selected */
|
|
2596
|
+
select:has(option[value=""][selected]),
|
|
2597
|
+
/* if there is an option with an empty value, and no other options are selected */
|
|
2598
|
+
select:has(option[value=""]):not(:has(option[selected])) {
|
|
2599
|
+
color: var(--w-s-color-text-placeholder);
|
|
2600
|
+
}
|
|
2601
|
+
`],p([y({attribute:"auto-focus",type:Boolean,reflect:!0})],v.prototype,"autoFocus",2),p([y({type:Boolean,reflect:!0})],v.prototype,"autofocus",2),p([y({attribute:"help-text",reflect:!0})],v.prototype,"helpText",2),p([y({type:Boolean,reflect:!0})],v.prototype,"invalid",2),p([y({type:Boolean,reflect:!0})],v.prototype,"always",2),p([y({reflect:!0})],v.prototype,"hint",2),p([y({reflect:!0})],v.prototype,"label",2),p([y({type:Boolean,reflect:!0})],v.prototype,"optional",2),p([y({type:Boolean,reflect:!0})],v.prototype,"disabled",2),p([y({attribute:"read-only",type:Boolean,reflect:!0})],v.prototype,"readOnly",2),p([y({type:Boolean,reflect:!0})],v.prototype,"readonly",2),p([y({attribute:!1,state:!0})],v.prototype,"_options",2),p([y({reflect:!0})],v.prototype,"name",2),p([y({reflect:!0})],v.prototype,"value",2);customElements.get("w-select")||customElements.define("w-select",v);export{v as WarpSelect};
|
|
2506
2602
|
//# sourceMappingURL=select.js.map
|