@warp-ds/elements 2.10.0-next.15 → 2.10.0-next.18
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 +174 -56
- package/dist/docs/affix/affix.md +2 -2
- package/dist/docs/affix/api.md +2 -2
- package/dist/docs/alert/alert.md +4 -4
- package/dist/docs/alert/api.md +4 -4
- package/dist/docs/attention/api.md +2 -2
- package/dist/docs/attention/attention.md +2 -2
- 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 +2 -2
- package/dist/docs/breadcrumb-item/api.md +27 -0
- package/dist/docs/breadcrumb-item/breadcrumb-item.md +34 -0
- package/dist/docs/breadcrumbs/accessibility.md +8 -18
- package/dist/docs/breadcrumbs/breadcrumbs.md +57 -34
- package/dist/docs/breadcrumbs/examples.md +8 -8
- package/dist/docs/breadcrumbs/styling.md +33 -0
- package/dist/docs/breadcrumbs/usage.md +8 -8
- package/dist/docs/checkbox/api.md +2 -2
- package/dist/docs/checkbox/checkbox.md +176 -2
- package/dist/docs/checkbox/styling.md +173 -0
- package/dist/docs/checkbox-group/checkbox-group.md +43 -30
- package/dist/docs/checkbox-group/styling.md +31 -29
- package/dist/docs/combobox/api.md +12 -12
- package/dist/docs/combobox/combobox.md +12 -12
- package/dist/docs/datepicker/api.md +6 -6
- package/dist/docs/datepicker/datepicker.md +6 -6
- package/dist/docs/icon/api.md +3 -3
- package/dist/docs/icon/icon.md +3 -3
- package/dist/docs/index.md +2 -1
- package/dist/docs/radio-group/api.md +4 -4
- package/dist/docs/radio-group/radio-group.md +183 -68
- package/dist/docs/radio-group/styling.md +179 -64
- package/dist/docs/snackbar/api.md +1 -1
- package/dist/docs/snackbar/snackbar.md +1 -1
- package/dist/docs/snackbar-item/api.md +2 -2
- package/dist/docs/snackbar-item/snackbar-item.md +2 -2
- package/dist/index.d.ts +109 -2
- package/dist/packages/affix/affix.d.ts +4 -4
- 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 +345 -315
- package/dist/packages/affix/affix.js.map +2 -2
- package/dist/packages/affix/affix.react.stories.d.ts +2 -2
- 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 +2 -2
- package/dist/packages/affix/react.js +6 -6
- package/dist/packages/affix/styles.js +1 -1
- package/dist/packages/alert/alert.d.ts +3 -3
- 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 +344 -319
- package/dist/packages/alert/alert.js.map +2 -2
- 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 +1 -1
- package/dist/packages/alert/react.js +4 -4
- package/dist/packages/alert/styles.js +1 -1
- package/dist/packages/attention/attention.d.ts +7 -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 +1725 -1683
- package/dist/packages/attention/attention.js.map +2 -2
- 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 +4 -4
- package/dist/packages/attention/react.js +13 -11
- package/dist/packages/attention/styles.js +1 -1
- package/dist/packages/badge/badge.d.ts +3 -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 +276 -276
- package/dist/packages/badge/badge.js.map +2 -2
- 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 +1 -1
- package/dist/packages/badge/react.js +4 -4
- package/dist/packages/badge/styles.js +1 -1
- package/dist/packages/box/box.d.ts +1 -1
- 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 +283 -283
- package/dist/packages/box/box.js.map +2 -2
- package/dist/packages/box/box.react.stories.d.ts +3 -3
- 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 +1 -1
- package/dist/packages/box/react.js +4 -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 +1 -1
- package/dist/packages/breadcrumb-item/breadcrumb-item.d.ts +29 -0
- package/dist/packages/breadcrumb-item/breadcrumb-item.js +2520 -0
- package/dist/packages/breadcrumb-item/breadcrumb-item.js.map +7 -0
- package/dist/packages/breadcrumb-item/react.d.ts +2 -0
- package/dist/packages/breadcrumb-item/react.js +11 -0
- package/dist/packages/breadcrumb-item/styles.d.ts +4 -0
- package/dist/packages/breadcrumb-item/styles.js +72 -0
- package/dist/packages/breadcrumbs/breadcrumbs.d.ts +3 -1
- 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 +285 -281
- package/dist/packages/breadcrumbs/breadcrumbs.js.map +3 -3
- package/dist/packages/breadcrumbs/breadcrumbs.react.stories.d.ts +3 -3
- 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 +1 -1
- package/dist/packages/breadcrumbs/react.js +4 -4
- package/dist/packages/breadcrumbs/styles.js +1 -1
- package/dist/packages/button/button.d.ts +5 -5
- 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 +741 -715
- package/dist/packages/button/button.js.map +2 -2
- package/dist/packages/button/button.react.stories.d.ts +3 -3
- 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 -34
- package/dist/packages/button/react.d.ts +2 -2
- package/dist/packages/button/react.js +7 -7
- package/dist/packages/button/styles.js +373 -347
- package/dist/packages/card/card.d.ts +1 -1
- 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 +305 -290
- package/dist/packages/card/card.js.map +2 -2
- package/dist/packages/card/card.react.stories.d.ts +3 -3
- 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 +1 -1
- package/dist/packages/card/react.js +4 -4
- package/dist/packages/card/styles.js +1 -1
- 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 +2 -2
- 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 +475 -424
- package/dist/packages/checkbox/checkbox.js.map +2 -2
- package/dist/packages/checkbox/checkbox.react.stories.d.ts +2 -2
- 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 +1 -1
- package/dist/packages/checkbox/react.js +6 -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 +16 -2
- 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 +60 -55
- package/dist/packages/checkbox-group/checkbox-group.js.map +2 -2
- 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 +96 -90
- package/dist/packages/checkbox-group/react.d.ts +2 -2
- package/dist/packages/checkbox-group/react.js +6 -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 +2 -2
- 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 +332 -332
- package/dist/packages/combobox/combobox.js.map +3 -3
- package/dist/packages/combobox/combobox.react.stories.d.ts +3 -3
- 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 +148 -133
- package/dist/packages/combobox/react.d.ts +2 -2
- package/dist/packages/combobox/react.js +14 -14
- package/dist/packages/combobox/styles.js +1 -1
- package/dist/packages/datepicker/DatePicker.test.d.ts +2 -2
- package/dist/packages/datepicker/DatePicker.test.js +46 -41
- package/dist/packages/datepicker/datepicker.d.ts +3 -3
- 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 +665 -625
- package/dist/packages/datepicker/datepicker.js.map +3 -3
- package/dist/packages/datepicker/datepicker.react.stories.d.ts +3 -3
- 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 +2 -2
- package/dist/packages/datepicker/react.js +16 -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 +1 -1
- package/dist/packages/datepicker/utils.js +25 -19
- package/dist/packages/datepicker/utils.test.js +20 -20
- package/dist/packages/expandable/expandable.d.ts +4 -4
- 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 +353 -326
- package/dist/packages/expandable/expandable.js.map +2 -2
- 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 +2 -2
- package/dist/packages/expandable/react.js +9 -9
- package/dist/packages/expandable/styles.js +1 -1
- package/dist/packages/global.js +2 -2
- package/dist/packages/i18n.d.ts +1 -1
- package/dist/packages/i18n.js +37 -29
- package/dist/packages/icon/icon.d.ts +3 -3
- 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 +30 -25
- package/dist/packages/icon/icon.js.map +2 -2
- package/dist/packages/icon/icon.react.stories.d.ts +1 -1
- package/dist/packages/icon/icon.react.stories.js +283 -284
- package/dist/packages/icon/icon.stories.d.ts +3 -3
- package/dist/packages/icon/icon.stories.js +299 -298
- 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 +1 -1
- package/dist/packages/icon/react.js +4 -4
- package/dist/packages/icon/style.js +24 -25
- package/dist/packages/interaction-type-detection.js +9 -9
- package/dist/packages/link/link.d.ts +2 -2
- 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 +709 -683
- package/dist/packages/link/link.js.map +2 -2
- package/dist/packages/link/link.react.stories.d.ts +3 -3
- 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 +2 -2
- package/dist/packages/link/react.js +6 -6
- package/dist/packages/link/styles.js +57 -57
- package/dist/packages/modal/index.d.ts +7 -7
- package/dist/packages/modal/index.js +7 -7
- package/dist/packages/modal/modal.d.ts +1 -1
- 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 +404 -404
- package/dist/packages/modal/modal.js.map +2 -2
- package/dist/packages/modal/modal.react.stories.d.ts +3 -3
- package/dist/packages/modal/modal.react.stories.js +7 -6
- package/dist/packages/modal/modal.react.test.js +5 -5
- package/dist/packages/modal/modal.stories.d.ts +6 -6
- package/dist/packages/modal/modal.stories.js +253 -238
- package/dist/packages/modal/react.d.ts +4 -4
- package/dist/packages/modal/react.js +13 -13
- package/dist/packages/modal/util.js +2 -2
- package/dist/packages/modal-footer/modal-footer.d.ts +1 -1
- package/dist/packages/modal-footer/modal-footer.js +291 -291
- package/dist/packages/modal-footer/modal-footer.js.map +2 -2
- package/dist/packages/modal-footer/react.d.ts +1 -1
- package/dist/packages/modal-footer/react.js +4 -4
- package/dist/packages/modal-header/modal-header.d.ts +2 -2
- package/dist/packages/modal-header/modal-header.js +437 -416
- package/dist/packages/modal-header/modal-header.js.map +2 -2
- package/dist/packages/modal-header/modal-header.react.test.js +5 -3
- package/dist/packages/modal-header/react.d.ts +2 -2
- package/dist/packages/modal-header/react.js +8 -8
- package/dist/packages/page-indicator/page-indicator.d.ts +1 -1
- 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 +26 -26
- package/dist/packages/page-indicator/page-indicator.js.map +2 -2
- 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 +3 -3
- package/dist/packages/page-indicator/page-indicator.stories.js +56 -27
- 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 +2 -2
- package/dist/packages/page-indicator/react.js +7 -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 +3 -3
- 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 +380 -349
- package/dist/packages/pagination/pagination.js.map +2 -2
- package/dist/packages/pagination/pagination.react.stories.d.ts +7 -7
- 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 -69
- package/dist/packages/pagination/react.d.ts +4 -4
- package/dist/packages/pagination/react.js +12 -10
- package/dist/packages/pagination/styles.js +1 -1
- package/dist/packages/pill/pill.d.ts +2 -2
- 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 +331 -308
- package/dist/packages/pill/pill.js.map +2 -2
- package/dist/packages/pill/pill.react.stories.d.ts +3 -3
- package/dist/packages/pill/pill.react.stories.js +3 -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 +2 -2
- package/dist/packages/pill/react.js +18 -14
- package/dist/packages/pill/styles.js +1 -1
- 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 +8 -8
- 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 +3 -3
- 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 +485 -446
- 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 +1 -1
- package/dist/packages/radio/react.js +4 -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 +14 -5
- 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 +648 -560
- package/dist/packages/radio-group/radio-group.js.map +3 -3
- 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 +234 -229
- package/dist/packages/radio-group/react.d.ts +2 -2
- package/dist/packages/radio-group/react.js +10 -10
- package/dist/packages/select/react.d.ts +2 -2
- package/dist/packages/select/react.js +11 -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 +4 -4
- 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 +348 -329
- package/dist/packages/select/select.js.map +2 -2
- package/dist/packages/select/select.react.stories.d.ts +3 -3
- package/dist/packages/select/select.react.stories.js +7 -7
- 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 +175 -178
- package/dist/packages/select/styles.js +1 -1
- package/dist/packages/slider/Slider.d.ts +1 -1
- package/dist/packages/slider/Slider.js +4 -4
- package/dist/packages/slider/index.d.ts +2 -2
- package/dist/packages/slider/index.js +2 -2
- package/dist/packages/slider/react.d.ts +3 -3
- package/dist/packages/slider/react.js +9 -9
- package/dist/packages/slider/slider.d.ts +3 -3
- 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 +480 -462
- package/dist/packages/slider/slider.js.map +2 -2
- package/dist/packages/slider/slider.react.stories.d.ts +3 -3
- 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 +7 -7
- package/dist/packages/slider/slider.stories.js +332 -340
- package/dist/packages/slider/slider.test.d.ts +5 -5
- package/dist/packages/slider/slider.test.js +367 -334
- package/dist/packages/slider/styles/w-slider.styles.js +166 -148
- package/dist/packages/slider/styles.js +1 -1
- package/dist/packages/slider-thumb/SliderThumb.d.ts +1 -1
- package/dist/packages/slider-thumb/SliderThumb.js +4 -4
- 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 +3 -3
- package/dist/packages/slider-thumb/react.js +11 -9
- package/dist/packages/slider-thumb/slider-thumb.d.ts +3 -3
- 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 +545 -548
- package/dist/packages/slider-thumb/slider-thumb.js.map +3 -3
- 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.js +1 -1
- package/dist/packages/snackbar/react.d.ts +1 -1
- package/dist/packages/snackbar/react.js +4 -4
- package/dist/packages/snackbar/snackbar.d.ts +3 -3
- package/dist/packages/snackbar/snackbar.hydration.test.d.ts +1 -1
- package/dist/packages/snackbar/snackbar.hydration.test.js +6 -6
- package/dist/packages/snackbar/snackbar.js +487 -468
- package/dist/packages/snackbar/snackbar.js.map +2 -2
- package/dist/packages/snackbar/snackbar.react.stories.js +3 -3
- package/dist/packages/snackbar/snackbar.stories.d.ts +11 -11
- package/dist/packages/snackbar/snackbar.stories.js +253 -181
- package/dist/packages/snackbar/snackbar.test.d.ts +4 -4
- package/dist/packages/snackbar/snackbar.test.js +11 -11
- package/dist/packages/snackbar/styles.js +29 -29
- package/dist/packages/snackbar-item/react.d.ts +2 -2
- package/dist/packages/snackbar-item/react.js +6 -5
- package/dist/packages/snackbar-item/snackbar-item.d.ts +4 -4
- package/dist/packages/snackbar-item/snackbar-item.js +454 -435
- package/dist/packages/snackbar-item/snackbar-item.js.map +2 -2
- package/dist/packages/snackbar-item/snackbar-item.react.test.js +4 -4
- package/dist/packages/snackbar-item/styles.js +130 -108
- package/dist/packages/step/react.d.ts +1 -1
- package/dist/packages/step/react.js +4 -4
- package/dist/packages/step/step.d.ts +2 -2
- 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 +330 -308
- package/dist/packages/step/step.js.map +2 -2
- 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 +2 -2
- package/dist/packages/step-indicator/react.js +5 -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 +1 -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 +280 -276
- package/dist/packages/step-indicator/step-indicator.js.map +2 -2
- 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 +1 -1
- package/dist/packages/styles.js +274 -274
- package/dist/packages/switch/react.d.ts +1 -1
- package/dist/packages/switch/react.js +6 -6
- package/dist/packages/switch/styles.js +1 -1
- 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 +1 -1
- 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 +299 -299
- package/dist/packages/switch/switch.js.map +2 -2
- package/dist/packages/switch/switch.react.stories.d.ts +2 -2
- 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 +6 -4
- package/dist/packages/tab/react.js +11 -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 +5 -5
- 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 +305 -304
- package/dist/packages/tab/tab.js.map +3 -3
- package/dist/packages/tab/tab.react.test.js +5 -3
- package/dist/packages/tab-panel/react.d.ts +3 -2
- package/dist/packages/tab-panel/react.js +11 -5
- package/dist/packages/tab-panel/tab-panel.d.ts +3 -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 +289 -287
- package/dist/packages/tab-panel/tab-panel.js.map +2 -2
- package/dist/packages/tabs/index.d.ts +4 -4
- package/dist/packages/tabs/index.js +3 -3
- package/dist/packages/tabs/react.d.ts +27 -8
- package/dist/packages/tabs/react.js +30 -9
- package/dist/packages/tabs/styles.js +1 -1
- 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 +3 -3
- 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 +289 -282
- package/dist/packages/tabs/tabs.js.map +2 -2
- 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/react.d.ts +2 -2
- package/dist/packages/textarea/react.js +17 -17
- package/dist/packages/textarea/styles.js +1 -1
- package/dist/packages/textarea/textarea.a11y.test.d.ts +1 -1
- package/dist/packages/textarea/textarea.a11y.test.js +89 -57
- package/dist/packages/textarea/textarea.d.ts +1 -1
- 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 +300 -298
- package/dist/packages/textarea/textarea.js.map +2 -2
- package/dist/packages/textarea/textarea.react.stories.d.ts +3 -3
- package/dist/packages/textarea/textarea.react.stories.js +13 -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 +124 -88
- package/dist/packages/textfield/react.d.ts +2 -2
- package/dist/packages/textfield/react.js +17 -17
- package/dist/packages/textfield/styles/w-textfield.styles.js +60 -58
- package/dist/packages/textfield/styles.js +1 -1
- package/dist/packages/textfield/textfield.d.ts +3 -3
- 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 +376 -368
- package/dist/packages/textfield/textfield.js.map +3 -3
- package/dist/packages/textfield/textfield.react.stories.d.ts +3 -3
- package/dist/packages/textfield/textfield.react.stories.js +31 -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 +103 -71
- package/dist/packages/toast/api.d.ts +1 -1
- 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 +1 -1
- package/dist/packages/toast/toast.d.ts +4 -4
- package/dist/packages/toast/toast.js +346 -317
- package/dist/packages/toast/toast.js.map +2 -2
- 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.js +1 -1
- package/dist/packages/toast-container/toast-container.d.ts +2 -2
- package/dist/packages/toast-container/toast-container.js +292 -291
- package/dist/packages/toast-container/toast-container.js.map +3 -3
- package/dist/packages/utils/element-collapse.js +38 -28
- 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 +61 -22
- package/eik/index.js +12 -12
- package/package.json +18 -16
|
@@ -7,278 +7,278 @@ ICU features such as interpolation and plurals will not work properly for that m
|
|
|
7
7
|
|
|
8
8
|
Please compile your catalog first.
|
|
9
9
|
`)),oe(l)&&Lt.test(l)?At(l):oe(l)?l:Gr(l,this._locale,this._locales)(r,o?.formats)}date(t,r){return at(this._locales||this._locale,t,r)}number(t,r){return rt(this._locales||this._locale,t,r)}};function ro(e={}){return new nt(e)}var L=ro();var Pt=["top","right","bottom","left"];var ee=Math.min,B=Math.max,we=Math.round;var G=e=>({x:e,y:e}),oo={left:"right",right:"left",bottom:"top",top:"bottom"};function Ae(e,t,r){return B(e,ee(t,r))}function ne(e,t){return typeof e=="function"?e(t):e}function te(e){return e.split("-")[0]}function le(e){return e.split("-")[1]}function st(e){return e==="x"?"y":"x"}function Oe(e){return e==="y"?"height":"width"}function J(e){let t=e[0];return t==="t"||t==="b"?"y":"x"}function Re(e){return st(J(e))}function $t(e,t,r){r===void 0&&(r=!1);let o=le(e),n=Re(e),a=Oe(n),i=n==="x"?o===(r?"end":"start")?"right":"left":o==="start"?"bottom":"top";return t.reference[a]>t.floating[a]&&(i=ve(i)),[i,ve(i)]}function Ft(e){let t=ve(e);return[Le(e),t,Le(t)]}function Le(e){return e.includes("start")?e.replace("start","end"):e.replace("end","start")}var Rt=["left","right"],Mt=["right","left"],no=["top","bottom"],io=["bottom","top"];function ao(e,t,r){switch(e){case"top":case"bottom":return r?t?Mt:Rt:t?Rt:Mt;case"left":case"right":return t?no:io;default:return[]}}function jt(e,t,r,o){let n=le(e),a=ao(te(e),r==="start",o);return n&&(a=a.map(i=>i+"-"+n),t&&(a=a.concat(a.map(Le)))),a}function ve(e){let t=te(e);return oo[t]+e.slice(t.length)}function so(e){return{top:0,right:0,bottom:0,left:0,...e}}function lt(e){return typeof e!="number"?so(e):{top:e,right:e,bottom:e,left:e}}function ce(e){let{x:t,y:r,width:o,height:n}=e;return{width:o,height:n,top:r,left:t,right:t+o,bottom:r+n,x:t,y:r}}function Vt(e,t,r){let{reference:o,floating:n}=e,a=J(t),i=Re(t),s=Oe(i),l=te(t),u=a==="y",c=o.x+o.width/2-n.width/2,g=o.y+o.height/2-n.height/2,m=o[s]/2-n[s]/2,d;switch(l){case"top":d={x:c,y:o.y-n.height};break;case"bottom":d={x:c,y:o.y+o.height};break;case"right":d={x:o.x+o.width,y:g};break;case"left":d={x:o.x-n.width,y:g};break;default:d={x:o.x,y:o.y}}switch(le(t)){case"start":d[i]-=m*(r&&u?-1:1);break;case"end":d[i]+=m*(r&&u?-1:1);break}return d}async function It(e,t){var r;t===void 0&&(t={});let{x:o,y:n,platform:a,rects:i,elements:s,strategy:l}=e,{boundary:u="clippingAncestors",rootBoundary:c="viewport",elementContext:g="floating",altBoundary:m=!1,padding:d=0}=ne(t,e),p=lt(d),f=s[m?g==="floating"?"reference":"floating":g],x=ce(await a.getClippingRect({element:(r=await(a.isElement==null?void 0:a.isElement(f)))==null||r?f:f.contextElement||await(a.getDocumentElement==null?void 0:a.getDocumentElement(s.floating)),boundary:u,rootBoundary:c,strategy:l})),_=g==="floating"?{x:o,y:n,width:i.floating.width,height:i.floating.height}:i.reference,C=await(a.getOffsetParent==null?void 0:a.getOffsetParent(s.floating)),D=await(a.isElement==null?void 0:a.isElement(C))?await(a.getScale==null?void 0:a.getScale(C))||{x:1,y:1}:{x:1,y:1},O=ce(a.convertOffsetParentRelativeRectToViewportRelativeRect?await a.convertOffsetParentRelativeRectToViewportRelativeRect({elements:s,rect:_,offsetParent:C,strategy:l}):_);return{top:(x.top-O.top+p.top)/D.y,bottom:(O.bottom-x.bottom+p.bottom)/D.y,left:(x.left-O.left+p.left)/D.x,right:(O.right-x.right+p.right)/D.x}}var lo=50,Ht=async(e,t,r)=>{let{placement:o="bottom",strategy:n="absolute",middleware:a=[],platform:i}=r,s=i.detectOverflow?i:{...i,detectOverflow:It},l=await(i.isRTL==null?void 0:i.isRTL(t)),u=await i.getElementRects({reference:e,floating:t,strategy:n}),{x:c,y:g}=Vt(u,o,l),m=o,d=0,p={};for(let h=0;h<a.length;h++){let f=a[h];if(!f)continue;let{name:x,fn:_}=f,{x:C,y:D,data:O,reset:b}=await _({x:c,y:g,initialPlacement:o,placement:m,strategy:n,middlewareData:p,rects:u,platform:s,elements:{reference:e,floating:t}});c=C??c,g=D??g,p[x]={...p[x],...O},b&&d<lo&&(d++,typeof b=="object"&&(b.placement&&(m=b.placement),b.rects&&(u=b.rects===!0?await i.getElementRects({reference:e,floating:t,strategy:n}):b.rects),{x:c,y:g}=Vt(u,m,l)),h=-1)}return{x:c,y:g,placement:m,strategy:n,middlewareData:p}},Yt=e=>({name:"arrow",options:e,async fn(t){let{x:r,y:o,placement:n,rects:a,platform:i,elements:s,middlewareData:l}=t,{element:u,padding:c=0}=ne(e,t)||{};if(u==null)return{};let g=lt(c),m={x:r,y:o},d=Re(n),p=Oe(d),h=await i.getDimensions(u),f=d==="y",x=f?"top":"left",_=f?"bottom":"right",C=f?"clientHeight":"clientWidth",D=a.reference[p]+a.reference[d]-m[d]-a.floating[p],O=m[d]-a.reference[d],b=await(i.getOffsetParent==null?void 0:i.getOffsetParent(u)),w=b?b[C]:0;(!w||!await(i.isElement==null?void 0:i.isElement(b)))&&(w=s.floating[C]||a.floating[p]);let y=D/2-O/2,E=w/2-h[p]/2-1,T=ee(g[x],E),V=ee(g[_],E),j=T,N=w-h[p]-V,M=w/2-h[p]/2+y,A=Ae(j,M,N),H=!l.arrow&&le(n)!=null&&M!==A&&a.reference[p]/2-(M<j?T:V)-h[p]/2<0,P=H?M<j?M-j:M-N:0;return{[d]:m[d]+P,data:{[d]:A,centerOffset:M-A-P,...H&&{alignmentOffset:P}},reset:H}}});var Xt=function(e){return e===void 0&&(e={}),{name:"flip",options:e,async fn(t){var r,o;let{placement:n,middlewareData:a,rects:i,initialPlacement:s,platform:l,elements:u}=t,{mainAxis:c=!0,crossAxis:g=!0,fallbackPlacements:m,fallbackStrategy:d="bestFit",fallbackAxisSideDirection:p="none",flipAlignment:h=!0,...f}=ne(e,t);if((r=a.arrow)!=null&&r.alignmentOffset)return{};let x=te(n),_=J(s),C=te(s)===s,D=await(l.isRTL==null?void 0:l.isRTL(u.floating)),O=m||(C||!h?[ve(s)]:Ft(s)),b=p!=="none";!m&&b&&O.push(...jt(s,h,p,D));let w=[s,...O],y=await l.detectOverflow(t,f),E=[],T=((o=a.flip)==null?void 0:o.overflows)||[];if(c&&E.push(y[x]),g){let M=$t(n,i,D);E.push(y[M[0]],y[M[1]])}if(T=[...T,{placement:n,overflows:E}],!E.every(M=>M<=0)){var V,j;let M=(((V=a.flip)==null?void 0:V.index)||0)+1,A=w[M];if(A&&(!(g==="alignment"?_!==J(A):!1)||T.every(q=>J(q.placement)===_?q.overflows[0]>0:!0)))return{data:{index:M,overflows:T},reset:{placement:A}};let H=(j=T.filter(P=>P.overflows[0]<=0).sort((P,q)=>P.overflows[1]-q.overflows[1])[0])==null?void 0:j.placement;if(!H)switch(d){case"bestFit":{var N;let P=(N=T.filter(q=>{if(b){let U=J(q.placement);return U===_||U==="y"}return!0}).map(q=>[q.placement,q.overflows.filter(U=>U>0).reduce((U,Hr)=>U+Hr,0)]).sort((q,U)=>q[1]-U[1])[0])==null?void 0:N[0];P&&(H=P);break}case"initialPlacement":H=s;break}if(n!==H)return{reset:{placement:H}}}return{}}}};function Nt(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function Bt(e){return Pt.some(t=>e[t]>=0)}var qt=function(e){return e===void 0&&(e={}),{name:"hide",options:e,async fn(t){let{rects:r,platform:o}=t,{strategy:n="referenceHidden",...a}=ne(e,t);switch(n){case"referenceHidden":{let i=await o.detectOverflow(t,{...a,elementContext:"reference"}),s=Nt(i,r.reference);return{data:{referenceHiddenOffsets:s,referenceHidden:Bt(s)}}}case"escaped":{let i=await o.detectOverflow(t,{...a,altBoundary:!0}),s=Nt(i,r.floating);return{data:{escapedOffsets:s,escaped:Bt(s)}}}default:return{}}}}};var co=new Set(["left","top"]);async function uo(e,t){let{placement:r,platform:o,elements:n}=e,a=await(o.isRTL==null?void 0:o.isRTL(n.floating)),i=te(r),s=le(r),l=J(r)==="y",u=co.has(i)?-1:1,c=a&&l?-1:1,g=ne(t,e),{mainAxis:m,crossAxis:d,alignmentAxis:p}=typeof g=="number"?{mainAxis:g,crossAxis:0,alignmentAxis:null}:{mainAxis:g.mainAxis||0,crossAxis:g.crossAxis||0,alignmentAxis:g.alignmentAxis};return s&&typeof p=="number"&&(d=s==="end"?p*-1:p),l?{x:d*c,y:m*u}:{x:m*u,y:d*c}}var Ut=function(e){return e===void 0&&(e=0),{name:"offset",options:e,async fn(t){var r,o;let{x:n,y:a,placement:i,middlewareData:s}=t,l=await uo(t,e);return i===((r=s.offset)==null?void 0:r.placement)&&(o=s.arrow)!=null&&o.alignmentOffset?{}:{x:n+l.x,y:a+l.y,data:{...l,placement:i}}}}},Qt=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(t){let{x:r,y:o,placement:n,platform:a}=t,{mainAxis:i=!0,crossAxis:s=!1,limiter:l={fn:x=>{let{x:_,y:C}=x;return{x:_,y:C}}},...u}=ne(e,t),c={x:r,y:o},g=await a.detectOverflow(t,u),m=J(te(n)),d=st(m),p=c[d],h=c[m];if(i){let x=d==="y"?"top":"left",_=d==="y"?"bottom":"right",C=p+g[x],D=p-g[_];p=Ae(C,p,D)}if(s){let x=m==="y"?"top":"left",_=m==="y"?"bottom":"right",C=h+g[x],D=h-g[_];h=Ae(C,h,D)}let f=l.fn({...t,[d]:p,[m]:h});return{...f,data:{x:f.x-r,y:f.y-o,enabled:{[d]:i,[m]:s}}}}}};var Zt=function(e){return e===void 0&&(e={}),{name:"size",options:e,async fn(t){var r,o;let{placement:n,rects:a,platform:i,elements:s}=t,{apply:l=()=>{},...u}=ne(e,t),c=await i.detectOverflow(t,u),g=te(n),m=le(n),d=J(n)==="y",{width:p,height:h}=a.floating,f,x;g==="top"||g==="bottom"?(f=g,x=m===(await(i.isRTL==null?void 0:i.isRTL(s.floating))?"start":"end")?"left":"right"):(x=g,f=m==="end"?"top":"bottom");let _=h-c.top-c.bottom,C=p-c.left-c.right,D=ee(h-c[f],_),O=ee(p-c[x],C),b=!t.middlewareData.shift,w=D,y=O;if((r=t.middlewareData.shift)!=null&&r.enabled.x&&(y=C),(o=t.middlewareData.shift)!=null&&o.enabled.y&&(w=_),b&&!m){let T=B(c.left,0),V=B(c.right,0),j=B(c.top,0),N=B(c.bottom,0);d?y=p-2*(T!==0||V!==0?T+V:B(c.left,c.right)):w=h-2*(j!==0||N!==0?j+N:B(c.top,c.bottom))}await l({...t,availableWidth:y,availableHeight:w});let E=await i.getDimensions(s.floating);return p!==E.width||h!==E.height?{reset:{rects:!0}}:{}}}};function Pe(){return typeof window<"u"}function ue(e){return Jt(e)?(e.nodeName||"").toLowerCase():"#document"}function I(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function K(e){var t;return(t=(Jt(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function Jt(e){return Pe()?e instanceof Node||e instanceof I(e).Node:!1}function Q(e){return Pe()?e instanceof Element||e instanceof I(e).Element:!1}function W(e){return Pe()?e instanceof HTMLElement||e instanceof I(e).HTMLElement:!1}function Gt(e){return!Pe()||typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof I(e).ShadowRoot}function me(e){let{overflow:t,overflowX:r,overflowY:o,display:n}=Z(e);return/auto|scroll|overlay|hidden|clip/.test(t+o+r)&&n!=="inline"&&n!=="contents"}function Kt(e){return/^(table|td|th)$/.test(ue(e))}function xe(e){try{if(e.matches(":popover-open"))return!0}catch{}try{return e.matches(":modal")}catch{return!1}}var go=/transform|translate|scale|rotate|perspective|filter/,po=/paint|layout|strict|content/,de=e=>!!e&&e!=="none",ct;function $e(e){let t=Q(e)?Z(e):e;return de(t.transform)||de(t.translate)||de(t.scale)||de(t.rotate)||de(t.perspective)||!Fe()&&(de(t.backdropFilter)||de(t.filter))||go.test(t.willChange||"")||po.test(t.contain||"")}function Wt(e){let t=re(e);for(;W(t)&&!ge(t);){if($e(t))return t;if(xe(t))return null;t=re(t)}return null}function Fe(){return ct==null&&(ct=typeof CSS<"u"&&CSS.supports&&CSS.supports("-webkit-backdrop-filter","none")),ct}function ge(e){return/^(html|body|#document)$/.test(ue(e))}function Z(e){return I(e).getComputedStyle(e)}function ye(e){return Q(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function re(e){if(ue(e)==="html")return e;let t=e.assignedSlot||e.parentNode||Gt(e)&&e.host||K(e);return Gt(t)?t.host:t}function er(e){let t=re(e);return ge(t)?e.ownerDocument?e.ownerDocument.body:e.body:W(t)&&me(t)?t:er(t)}function Me(e,t,r){var o;t===void 0&&(t=[]),r===void 0&&(r=!0);let n=er(e),a=n===((o=e.ownerDocument)==null?void 0:o.body),i=I(n);if(a){let s=je(i);return t.concat(i,i.visualViewport||[],me(n)?n:[],s&&r?Me(s):[])}else return t.concat(n,Me(n,[],r))}function je(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function nr(e){let t=Z(e),r=parseFloat(t.width)||0,o=parseFloat(t.height)||0,n=W(e),a=n?e.offsetWidth:r,i=n?e.offsetHeight:o,s=we(r)!==a||we(o)!==i;return s&&(r=a,o=i),{width:r,height:o,$:s}}function ir(e){return Q(e)?e:e.contextElement}function be(e){let t=ir(e);if(!W(t))return G(1);let r=t.getBoundingClientRect(),{width:o,height:n,$:a}=nr(t),i=(a?we(r.width):r.width)/o,s=(a?we(r.height):r.height)/n;return(!i||!Number.isFinite(i))&&(i=1),(!s||!Number.isFinite(s))&&(s=1),{x:i,y:s}}var mo=G(0);function ar(e){let t=I(e);return!Fe()||!t.visualViewport?mo:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function bo(e,t,r){return t===void 0&&(t=!1),!r||t&&r!==I(e)?!1:t}function ke(e,t,r,o){t===void 0&&(t=!1),r===void 0&&(r=!1);let n=e.getBoundingClientRect(),a=ir(e),i=G(1);t&&(o?Q(o)&&(i=be(o)):i=be(e));let s=bo(a,r,o)?ar(a):G(0),l=(n.left+s.x)/i.x,u=(n.top+s.y)/i.y,c=n.width/i.x,g=n.height/i.y;if(a){let m=I(a),d=o&&Q(o)?I(o):o,p=m,h=je(p);for(;h&&o&&d!==p;){let f=be(h),x=h.getBoundingClientRect(),_=Z(h),C=x.left+(h.clientLeft+parseFloat(_.paddingLeft))*f.x,D=x.top+(h.clientTop+parseFloat(_.paddingTop))*f.y;l*=f.x,u*=f.y,c*=f.x,g*=f.y,l+=C,u+=D,p=I(h),h=je(p)}}return ce({width:c,height:g,x:l,y:u})}function Ve(e,t){let r=ye(e).scrollLeft;return t?t.left+r:ke(K(e)).left+r}function sr(e,t){let r=e.getBoundingClientRect(),o=r.left+t.scrollLeft-Ve(e,r),n=r.top+t.scrollTop;return{x:o,y:n}}function ho(e){let{elements:t,rect:r,offsetParent:o,strategy:n}=e,a=n==="fixed",i=K(o),s=t?xe(t.floating):!1;if(o===i||s&&a)return r;let l={scrollLeft:0,scrollTop:0},u=G(1),c=G(0),g=W(o);if((g||!g&&!a)&&((ue(o)!=="body"||me(i))&&(l=ye(o)),g)){let d=ke(o);u=be(o),c.x=d.x+o.clientLeft,c.y=d.y+o.clientTop}let m=i&&!g&&!a?sr(i,l):G(0);return{width:r.width*u.x,height:r.height*u.y,x:r.x*u.x-l.scrollLeft*u.x+c.x+m.x,y:r.y*u.y-l.scrollTop*u.y+c.y+m.y}}function fo(e){return Array.from(e.getClientRects())}function vo(e){let t=K(e),r=ye(e),o=e.ownerDocument.body,n=B(t.scrollWidth,t.clientWidth,o.scrollWidth,o.clientWidth),a=B(t.scrollHeight,t.clientHeight,o.scrollHeight,o.clientHeight),i=-r.scrollLeft+Ve(e),s=-r.scrollTop;return Z(o).direction==="rtl"&&(i+=B(t.clientWidth,o.clientWidth)-n),{width:n,height:a,x:i,y:s}}var tr=25;function wo(e,t){let r=I(e),o=K(e),n=r.visualViewport,a=o.clientWidth,i=o.clientHeight,s=0,l=0;if(n){a=n.width,i=n.height;let c=Fe();(!c||c&&t==="fixed")&&(s=n.offsetLeft,l=n.offsetTop)}let u=Ve(o);if(u<=0){let c=o.ownerDocument,g=c.body,m=getComputedStyle(g),d=c.compatMode==="CSS1Compat"&&parseFloat(m.marginLeft)+parseFloat(m.marginRight)||0,p=Math.abs(o.clientWidth-g.clientWidth-d);p<=tr&&(a-=p)}else u<=tr&&(a+=u);return{width:a,height:i,x:s,y:l}}function xo(e,t){let r=ke(e,!0,t==="fixed"),o=r.top+e.clientTop,n=r.left+e.clientLeft,a=W(e)?be(e):G(1),i=e.clientWidth*a.x,s=e.clientHeight*a.y,l=n*a.x,u=o*a.y;return{width:i,height:s,x:l,y:u}}function rr(e,t,r){let o;if(t==="viewport")o=wo(e,r);else if(t==="document")o=vo(K(e));else if(Q(t))o=xo(t,r);else{let n=ar(e);o={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return ce(o)}function lr(e,t){let r=re(e);return r===t||!Q(r)||ge(r)?!1:Z(r).position==="fixed"||lr(r,t)}function yo(e,t){let r=t.get(e);if(r)return r;let o=Me(e,[],!1).filter(s=>Q(s)&&ue(s)!=="body"),n=null,a=Z(e).position==="fixed",i=a?re(e):e;for(;Q(i)&&!ge(i);){let s=Z(i),l=$e(i);!l&&s.position==="fixed"&&(n=null),(a?!l&&!n:!l&&s.position==="static"&&!!n&&(n.position==="absolute"||n.position==="fixed")||me(i)&&!l&&lr(e,i))?o=o.filter(c=>c!==i):n=s,i=re(i)}return t.set(e,o),o}function ko(e){let{element:t,boundary:r,rootBoundary:o,strategy:n}=e,i=[...r==="clippingAncestors"?xe(t)?[]:yo(t,this._c):[].concat(r),o],s=rr(t,i[0],n),l=s.top,u=s.right,c=s.bottom,g=s.left;for(let m=1;m<i.length;m++){let d=rr(t,i[m],n);l=B(d.top,l),u=ee(d.right,u),c=ee(d.bottom,c),g=B(d.left,g)}return{width:u-g,height:c-l,x:g,y:l}}function _o(e){let{width:t,height:r}=nr(e);return{width:t,height:r}}function Eo(e,t,r){let o=W(t),n=K(t),a=r==="fixed",i=ke(e,!0,a,t),s={scrollLeft:0,scrollTop:0},l=G(0);function u(){l.x=Ve(n)}if(o||!o&&!a)if((ue(t)!=="body"||me(n))&&(s=ye(t)),o){let d=ke(t,!0,a,t);l.x=d.x+t.clientLeft,l.y=d.y+t.clientTop}else n&&u();a&&!o&&n&&u();let c=n&&!o&&!a?sr(n,s):G(0),g=i.left+s.scrollLeft-l.x-c.x,m=i.top+s.scrollTop-l.y-c.y;return{x:g,y:m,width:i.width,height:i.height}}function dt(e){return Z(e).position==="static"}function or(e,t){if(!W(e)||Z(e).position==="fixed")return null;if(t)return t(e);let r=e.offsetParent;return K(e)===r&&(r=r.ownerDocument.body),r}function cr(e,t){let r=I(e);if(xe(e))return r;if(!W(e)){let n=re(e);for(;n&&!ge(n);){if(Q(n)&&!dt(n))return n;n=re(n)}return r}let o=or(e,t);for(;o&&Kt(o)&&dt(o);)o=or(o,t);return o&&ge(o)&&dt(o)&&!$e(o)?r:o||Wt(e)||r}var Co=async function(e){let t=this.getOffsetParent||cr,r=this.getDimensions,o=await r(e.floating);return{reference:Eo(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:o.width,height:o.height}}};function So(e){return Z(e).direction==="rtl"}var Do={convertOffsetParentRelativeRectToViewportRelativeRect:ho,getDocumentElement:K,getClippingRect:ko,getOffsetParent:cr,getElementRects:Co,getClientRects:fo,getDimensions:_o,getScale:be,isElement:Q,isRTL:So};var dr=Ut;var ur=Qt,gr=Xt,pr=Zt,mr=qt,br=Yt;var hr=(e,t,r)=>{let o=new Map,n={platform:Do,...r},a={...n.platform,_c:o};return Ht(e,t,{...n,platform:a})};var Be="top-start",Ie="top",He="top-end",Ye="right-start",Xe="right",qe="right-end",Ue="bottom-start",_e="bottom",Qe="bottom-end",Ze="left-start",Ge="left",Je="left-end",ut=[Be,Ie,He,Ye,Xe,qe,Ue,_e,Qe,Ze,Ge,Je],pe={[Be]:Ue,[Ie]:_e,[He]:Qe,[Ue]:Be,[_e]:Ie,[Qe]:He,[Ze]:Ye,[Ge]:Xe,[Je]:qe,[Ye]:Ze,[Xe]:Ge,[qe]:Je},To={[Ze]:-45,[Ge]:-45,[Je]:-45,[Be]:45,[Ie]:45,[He]:45,[Ye]:135,[Xe]:135,[qe]:135,[Ue]:-135,[_e]:-135,[Qe]:-135},zo=e=>{let t;return/-/.test(e)?t=e.split("-").map(r=>r.charAt(0).toUpperCase()+r.slice(1)).join(""):t=e.charAt(0).toUpperCase()+e.slice(1),t},Lo=e=>e.split("-")[0],Ao=e=>pe[Lo(e)],vr=e=>pe[e],Oo=e=>To[vr(e)],Ro=(e,t,r)=>{Object.assign(e?.style,{borderTopLeftRadius:"4px",zIndex:1,[`margin${zo(Ao(r))}`]:"-0.5px",transform:`rotate(${t}deg)`})},fr=8,Ne=24;async function gt(e){if(!e?.isShowing||(e?.waitForDOM&&await e?.waitForDOM(),!e?.targetEl||!e?.attentionEl))return;let t=e?.targetEl,r=e.attentionEl;return hr(t,r,{placement:e?.directionName??_e,middleware:[dr({mainAxis:e?.distance??8,crossAxis:e?.skidding??0}),e?.flip&&gr({crossAxis:e?.crossAxis,fallbackPlacements:e?.fallbackPlacements}),e?.flip&&ur({crossAxis:!0}),!e?.noArrow&&e?.arrowEl&&br({element:e?.arrowEl}),mr(),pr({apply(){Object.assign(r.style,{paddingRight:`${fr}px`,paddingLeft:`${fr}px`})}})]}).then(({x:o,y:n,middlewareData:a,placement:i})=>{if(e.actualDirection=i,e?.isCallout||Object.assign(r.style,{left:`${o}px`,top:`${n}px`}),a?.hide&&!e?.isCallout){let{referenceHidden:s}=a.hide;Object.assign(r.style,{visibility:s?"hidden":""})}if(a?.arrow&&e?.arrowEl){let s=e?.arrowEl,{x:l,y:u}=a.arrow,c=window.getComputedStyle(r).direction==="rtl",g=vr(i).split("-")[1],m="",d="",p="",h="";if(g==="start"){let f=typeof l=="number"?`calc(${Ne}px - ${s.offsetWidth/2}px)`:"";m=typeof u=="number"?`calc(${Ne}px - ${s.offsetWidth/2}px)`:"",d=c?f:"",h=c?"":f}else if(g==="end"){let f=typeof l=="number"?`calc(${Ne}px - ${s.offsetWidth/2}px)`:"";d=c?"":f,h=c?f:"",p=typeof u=="number"?`calc(${Ne}px - ${s.offsetWidth/2}px)`:""}else h=typeof l=="number"?`${l}px`:"",m=typeof u=="number"?`${u}px`:"";Object.assign(s.style,{top:m,right:d,bottom:p,left:h}),Ro(s,Oo(i),i)}}),e}import{css as tn,html as fe,LitElement as rn,nothing as yt}from"lit";import{property as X}from"lit/decorators.js";import{ifDefined as on}from"lit/directives/if-defined.js";var Mo=["en","nb","fi","da","sv"],pt="en",Ke=e=>Mo.find(t=>e===t||e.toLowerCase().includes(t))||pt;function We(){if(typeof window>"u"){let e=process.env.NMP_LANGUAGE||Intl.DateTimeFormat().resolvedOptions().locale;return Ke(e)}try{let e=xr(document);if(e)return Ke(e);let t=jo();if(t)return Ke(t);let r=xr(kr());return r?Ke(r):pt}catch(e){return console.warn("could not detect locale, falling back to source locale",e),pt}}var et=(e,t,r,o,n)=>{L.load("en",e),L.load("nb",t),L.load("fi",r),L.load("da",o),L.load("sv",n);let a=We();L.activate(a),yr(),$o()},Po="warp-i18n-change";function yr(){typeof window>"u"||window.dispatchEvent(new Event(Po))}var wr=!1;function $o(){if(wr||typeof window>"u"||!document?.documentElement)return;wr=!0;let e=()=>{let n=We();L.locale!==n&&(L.activate(n),yr())},t=new MutationObserver(n=>{for(let a of n)if(a.type==="attributes"&&a.attributeName==="lang"){e();break}});t.observe(document.documentElement,{attributes:!0,attributeFilter:["lang"]});let r=kr();r&&r.documentElement&&r!==document&&t.observe(r.documentElement,{attributes:!0,attributeFilter:["lang"]});let o=Fo();o&&t.observe(o,{attributes:!0,attributeFilter:["lang"]})}function kr(){try{return window.parent?.document??null}catch{return null}}function xr(e){try{return e?.documentElement?.lang??""}catch{return""}}function Fo(){try{return window.frameElement??null}catch{return null}}function jo(){try{return window.frameElement?.getAttribute?.("lang")??""}catch{return""}}import{css as Vo}from"lit";import{unsafeCSS as No}from"lit";var he=Vo`
|
|
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
|
-
|
|
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
282
|
`,Mn=No(`*, :before, :after {
|
|
283
283
|
--w-rotate: 0;
|
|
284
284
|
--w-rotate-x: 0;
|
|
@@ -2446,1233 +2446,1264 @@ Please compile your catalog first.
|
|
|
2446
2446
|
}
|
|
2447
2447
|
}
|
|
2448
2448
|
`);import{css as Bo}from"lit";var _r=Bo`
|
|
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
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
|
|
2888
|
-
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
|
|
2967
|
-
|
|
2968
|
-
|
|
2969
|
-
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
|
|
3183
|
-
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
2449
|
+
.place-self-auto {
|
|
2450
|
+
place-self: auto;
|
|
2451
|
+
}
|
|
2452
|
+
.place-self-start {
|
|
2453
|
+
place-self: start;
|
|
2454
|
+
}
|
|
2455
|
+
.place-self-end {
|
|
2456
|
+
place-self: end;
|
|
2457
|
+
}
|
|
2458
|
+
.place-self-center {
|
|
2459
|
+
place-self: center;
|
|
2460
|
+
}
|
|
2461
|
+
.place-self-stretch {
|
|
2462
|
+
place-self: stretch;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
.place-items-start {
|
|
2466
|
+
place-items: start;
|
|
2467
|
+
}
|
|
2468
|
+
.place-items-end {
|
|
2469
|
+
place-items: end;
|
|
2470
|
+
}
|
|
2471
|
+
.place-items-center {
|
|
2472
|
+
place-items: center;
|
|
2473
|
+
}
|
|
2474
|
+
.place-items-stretch {
|
|
2475
|
+
place-items: stretch;
|
|
2476
|
+
}
|
|
2477
|
+
|
|
2478
|
+
.place-content-center {
|
|
2479
|
+
place-content: center;
|
|
2480
|
+
}
|
|
2481
|
+
.place-content-start {
|
|
2482
|
+
place-content: start;
|
|
2483
|
+
}
|
|
2484
|
+
.place-content-end {
|
|
2485
|
+
place-content: end;
|
|
2486
|
+
}
|
|
2487
|
+
.place-content-between {
|
|
2488
|
+
place-content: space-between;
|
|
2489
|
+
}
|
|
2490
|
+
.place-content-around {
|
|
2491
|
+
place-content: space-around;
|
|
2492
|
+
}
|
|
2493
|
+
.place-content-evenly {
|
|
2494
|
+
place-content: space-evenly;
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
.self-auto {
|
|
2498
|
+
align-self: auto;
|
|
2499
|
+
}
|
|
2500
|
+
.self-start {
|
|
2501
|
+
align-self: flex-start;
|
|
2502
|
+
}
|
|
2503
|
+
.self-center {
|
|
2504
|
+
align-self: center;
|
|
2505
|
+
}
|
|
2506
|
+
.self-end {
|
|
2507
|
+
align-self: flex-end;
|
|
2508
|
+
}
|
|
2509
|
+
.self-stretch {
|
|
2510
|
+
align-self: stretch;
|
|
2511
|
+
}
|
|
2512
|
+
|
|
2513
|
+
.items-baseline {
|
|
2514
|
+
align-items: baseline;
|
|
2515
|
+
}
|
|
2516
|
+
.items-stretch {
|
|
2517
|
+
align-items: stretch;
|
|
2518
|
+
}
|
|
2519
|
+
.items-start {
|
|
2520
|
+
align-items: flex-start;
|
|
2521
|
+
}
|
|
2522
|
+
.items-center {
|
|
2523
|
+
align-items: center;
|
|
2524
|
+
}
|
|
2525
|
+
.items-end {
|
|
2526
|
+
align-items: flex-end;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
.content-start {
|
|
2530
|
+
align-content: flex-start;
|
|
2531
|
+
}
|
|
2532
|
+
.content-center {
|
|
2533
|
+
align-content: center;
|
|
2534
|
+
}
|
|
2535
|
+
.content-end {
|
|
2536
|
+
align-content: flex-end;
|
|
2537
|
+
}
|
|
2538
|
+
.content-between {
|
|
2539
|
+
align-content: space-between;
|
|
2540
|
+
}
|
|
2541
|
+
.content-around {
|
|
2542
|
+
align-content: space-around;
|
|
2543
|
+
}
|
|
2544
|
+
.content-evenly {
|
|
2545
|
+
align-content: space-evenly;
|
|
2546
|
+
}
|
|
2547
|
+
|
|
2548
|
+
.justify-self-auto {
|
|
2549
|
+
justify-self: auto;
|
|
2550
|
+
}
|
|
2551
|
+
.justify-self-start {
|
|
2552
|
+
justify-self: start;
|
|
2553
|
+
}
|
|
2554
|
+
.justify-self-center {
|
|
2555
|
+
justify-self: center;
|
|
2556
|
+
}
|
|
2557
|
+
.justify-self-end {
|
|
2558
|
+
justify-self: end;
|
|
2559
|
+
}
|
|
2560
|
+
.justify-self-stretch {
|
|
2561
|
+
justify-self: stretch;
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
.justify-items-start {
|
|
2565
|
+
justify-items: start;
|
|
2566
|
+
}
|
|
2567
|
+
.justify-items-center {
|
|
2568
|
+
justify-items: center;
|
|
2569
|
+
}
|
|
2570
|
+
.justify-items-end {
|
|
2571
|
+
justify-items: end;
|
|
2572
|
+
}
|
|
2573
|
+
.justify-items-stretch {
|
|
2574
|
+
justify-items: stretch;
|
|
2575
|
+
}
|
|
2576
|
+
|
|
2577
|
+
.justify-start {
|
|
2578
|
+
justify-content: flex-start;
|
|
2579
|
+
}
|
|
2580
|
+
.justify-center {
|
|
2581
|
+
justify-content: center;
|
|
2582
|
+
}
|
|
2583
|
+
.justify-end {
|
|
2584
|
+
justify-content: flex-end;
|
|
2585
|
+
}
|
|
2586
|
+
.justify-between {
|
|
2587
|
+
justify-content: space-between;
|
|
2588
|
+
}
|
|
2589
|
+
.justify-around {
|
|
2590
|
+
justify-content: space-around;
|
|
2591
|
+
}
|
|
2592
|
+
.justify-evenly {
|
|
2593
|
+
justify-content: space-evenly;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
.gap-0 {
|
|
2597
|
+
gap: 0;
|
|
2598
|
+
}
|
|
2599
|
+
.gap-1 {
|
|
2600
|
+
gap: 0.25rem;
|
|
2601
|
+
}
|
|
2602
|
+
.gap-2 {
|
|
2603
|
+
gap: 0.5rem;
|
|
2604
|
+
}
|
|
2605
|
+
.gap-4 {
|
|
2606
|
+
gap: 1rem;
|
|
2607
|
+
}
|
|
2608
|
+
.gap-6 {
|
|
2609
|
+
gap: 1.5rem;
|
|
2610
|
+
}
|
|
2611
|
+
.gap-8 {
|
|
2612
|
+
gap: 2rem;
|
|
2613
|
+
}
|
|
2614
|
+
.gap-10 {
|
|
2615
|
+
gap: 2.5rem;
|
|
2616
|
+
}
|
|
2617
|
+
.gap-12 {
|
|
2618
|
+
gap: 3rem;
|
|
2619
|
+
}
|
|
2620
|
+
.gap-14 {
|
|
2621
|
+
gap: 3.5rem;
|
|
2622
|
+
}
|
|
2623
|
+
.gap-16 {
|
|
2624
|
+
gap: 4rem;
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
.gap-x-0 {
|
|
2628
|
+
column-gap: 0;
|
|
2629
|
+
}
|
|
2630
|
+
.gap-x-1 {
|
|
2631
|
+
column-gap: 0.25rem;
|
|
2632
|
+
}
|
|
2633
|
+
.gap-x-2 {
|
|
2634
|
+
column-gap: 0.5rem;
|
|
2635
|
+
}
|
|
2636
|
+
.gap-x-4 {
|
|
2637
|
+
column-gap: 1rem;
|
|
2638
|
+
}
|
|
2639
|
+
.gap-x-6 {
|
|
2640
|
+
column-gap: 1.5rem;
|
|
2641
|
+
}
|
|
2642
|
+
.gap-x-8 {
|
|
2643
|
+
column-gap: 2rem;
|
|
2644
|
+
}
|
|
2645
|
+
.gap-x-10 {
|
|
2646
|
+
column-gap: 2.5rem;
|
|
2647
|
+
}
|
|
2648
|
+
.gap-x-12 {
|
|
2649
|
+
column-gap: 3rem;
|
|
2650
|
+
}
|
|
2651
|
+
.gap-x-14 {
|
|
2652
|
+
column-gap: 3.5rem;
|
|
2653
|
+
}
|
|
2654
|
+
.gap-x-16 {
|
|
2655
|
+
column-gap: 4rem;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
.gap-y-0 {
|
|
2659
|
+
row-gap: 0;
|
|
2660
|
+
}
|
|
2661
|
+
.gap-y-1 {
|
|
2662
|
+
row-gap: 0.25rem;
|
|
2663
|
+
}
|
|
2664
|
+
.gap-y-2 {
|
|
2665
|
+
row-gap: 0.5rem;
|
|
2666
|
+
}
|
|
2667
|
+
.gap-y-4 {
|
|
2668
|
+
row-gap: 1rem;
|
|
2669
|
+
}
|
|
2670
|
+
.gap-y-6 {
|
|
2671
|
+
row-gap: 1.5rem;
|
|
2672
|
+
}
|
|
2673
|
+
.gap-y-8 {
|
|
2674
|
+
row-gap: 2rem;
|
|
2675
|
+
}
|
|
2676
|
+
.gap-y-10 {
|
|
2677
|
+
row-gap: 2.5rem;
|
|
2678
|
+
}
|
|
2679
|
+
.gap-y-12 {
|
|
2680
|
+
row-gap: 3rem;
|
|
2681
|
+
}
|
|
2682
|
+
.gap-y-14 {
|
|
2683
|
+
row-gap: 3.5rem;
|
|
2684
|
+
}
|
|
2685
|
+
.gap-y-16 {
|
|
2686
|
+
row-gap: 4rem;
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
.order-1 {
|
|
2690
|
+
order: 1;
|
|
2691
|
+
}
|
|
2692
|
+
.order-2 {
|
|
2693
|
+
order: 2;
|
|
2694
|
+
}
|
|
2695
|
+
.order-3 {
|
|
2696
|
+
order: 3;
|
|
2697
|
+
}
|
|
2698
|
+
.order-4 {
|
|
2699
|
+
order: 4;
|
|
2700
|
+
}
|
|
2701
|
+
.order-5 {
|
|
2702
|
+
order: 5;
|
|
2703
|
+
}
|
|
2704
|
+
.order-6 {
|
|
2705
|
+
order: 6;
|
|
2706
|
+
}
|
|
2707
|
+
.order-7 {
|
|
2708
|
+
order: 7;
|
|
2709
|
+
}
|
|
2710
|
+
.order-8 {
|
|
2711
|
+
order: 8;
|
|
2712
|
+
}
|
|
2713
|
+
.order-9 {
|
|
2714
|
+
order: 9;
|
|
2715
|
+
}
|
|
2716
|
+
.order-10 {
|
|
2717
|
+
order: 10;
|
|
2718
|
+
}
|
|
2719
|
+
.order-11 {
|
|
2720
|
+
order: 11;
|
|
2721
|
+
}
|
|
2722
|
+
.order-12 {
|
|
2723
|
+
order: 12;
|
|
2724
|
+
}
|
|
2725
|
+
.order-none {
|
|
2726
|
+
order: 0;
|
|
2727
|
+
}
|
|
2728
|
+
.order-first {
|
|
2729
|
+
order: -9999;
|
|
2730
|
+
}
|
|
2731
|
+
.order-last {
|
|
2732
|
+
order: 9999;
|
|
2733
|
+
}
|
|
2734
|
+
|
|
2735
|
+
.flex-nowrap {
|
|
2736
|
+
flex-wrap: nowrap;
|
|
2737
|
+
}
|
|
2738
|
+
.flex-wrap {
|
|
2739
|
+
flex-wrap: wrap;
|
|
2740
|
+
}
|
|
2741
|
+
.flex-wrap-reverse {
|
|
2742
|
+
flex-wrap: wrap-reverse;
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
.shrink {
|
|
2746
|
+
flex-shrink: 1;
|
|
2747
|
+
}
|
|
2748
|
+
.shrink-0 {
|
|
2749
|
+
flex-shrink: 0;
|
|
2750
|
+
}
|
|
2751
|
+
|
|
2752
|
+
.grow {
|
|
2753
|
+
flex-grow: 1;
|
|
2754
|
+
}
|
|
2755
|
+
.grow-0 {
|
|
2756
|
+
flex-grow: 0;
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
.flex-row {
|
|
2760
|
+
flex-direction: row;
|
|
2761
|
+
}
|
|
2762
|
+
.flex-row-reverse {
|
|
2763
|
+
flex-direction: row-reverse;
|
|
2764
|
+
}
|
|
2765
|
+
.flex-col {
|
|
2766
|
+
flex-direction: column;
|
|
2767
|
+
}
|
|
2768
|
+
.flex-col-reverse {
|
|
2769
|
+
flex-direction: column-reverse;
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2772
|
+
.basis-1 {
|
|
2773
|
+
flex-basis: 0.25rem;
|
|
2774
|
+
}
|
|
2775
|
+
.basis-2 {
|
|
2776
|
+
flex-basis: 0.5rem;
|
|
2777
|
+
}
|
|
2778
|
+
.basis-4 {
|
|
2779
|
+
flex-basis: 1rem;
|
|
2780
|
+
}
|
|
2781
|
+
.basis-8 {
|
|
2782
|
+
flex-basis: 2rem;
|
|
2783
|
+
}
|
|
2784
|
+
.basis-16 {
|
|
2785
|
+
flex-basis: 4rem;
|
|
2786
|
+
}
|
|
2787
|
+
.basis-1\/5 {
|
|
2788
|
+
flex-basis: 20%;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2791
|
+
.flex-initial {
|
|
2792
|
+
flex: 0 1 auto;
|
|
2793
|
+
}
|
|
2794
|
+
.flex-1 {
|
|
2795
|
+
flex: 1 1 0%;
|
|
2796
|
+
}
|
|
2797
|
+
.flex-auto {
|
|
2798
|
+
flex: 1 1 auto;
|
|
2799
|
+
}
|
|
2800
|
+
.flex-none {
|
|
2801
|
+
flex: none;
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
.space-x-0 > * + * {
|
|
2805
|
+
margin-left: 0;
|
|
2806
|
+
}
|
|
2807
|
+
.space-x-1 > * + * {
|
|
2808
|
+
margin-left: 0.25rem;
|
|
2809
|
+
}
|
|
2810
|
+
.space-x-2 > * + * {
|
|
2811
|
+
margin-left: 0.5rem;
|
|
2812
|
+
}
|
|
2813
|
+
.space-x-4 > * + * {
|
|
2814
|
+
margin-left: 1rem;
|
|
2815
|
+
}
|
|
2816
|
+
.space-x-6 > * + * {
|
|
2817
|
+
margin-left: 1.5rem;
|
|
2818
|
+
}
|
|
2819
|
+
.space-x-8 > * + * {
|
|
2820
|
+
margin-left: 2rem;
|
|
2821
|
+
}
|
|
2822
|
+
.space-x-10 > * + * {
|
|
2823
|
+
margin-left: 2.5rem;
|
|
2824
|
+
}
|
|
2825
|
+
.space-x-12 > * + * {
|
|
2826
|
+
margin-left: 3rem;
|
|
2827
|
+
}
|
|
2828
|
+
.space-x-14 > * + * {
|
|
2829
|
+
margin-left: 3.5rem;
|
|
2830
|
+
}
|
|
2831
|
+
.space-x-16 > * + * {
|
|
2832
|
+
margin-left: 4rem;
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
.space-y-0 > * + * {
|
|
2836
|
+
margin-top: 0;
|
|
2837
|
+
}
|
|
2838
|
+
.space-y-1 > * + * {
|
|
2839
|
+
margin-top: 0.25rem;
|
|
2840
|
+
}
|
|
2841
|
+
.space-y-2 > * + * {
|
|
2842
|
+
margin-top: 0.5rem;
|
|
2843
|
+
}
|
|
2844
|
+
.space-y-4 > * + * {
|
|
2845
|
+
margin-top: 1rem;
|
|
2846
|
+
}
|
|
2847
|
+
.space-y-6 > * + * {
|
|
2848
|
+
margin-top: 1.5rem;
|
|
2849
|
+
}
|
|
2850
|
+
.space-y-8 > * + * {
|
|
2851
|
+
margin-top: 2rem;
|
|
2852
|
+
}
|
|
2853
|
+
.space-y-10 > * + * {
|
|
2854
|
+
margin-top: 2.5rem;
|
|
2855
|
+
}
|
|
2856
|
+
.space-y-12 > * + * {
|
|
2857
|
+
margin-top: 3rem;
|
|
2858
|
+
}
|
|
2859
|
+
.space-y-14 > * + * {
|
|
2860
|
+
margin-top: 3.5rem;
|
|
2861
|
+
}
|
|
2862
|
+
.space-y-16 > * + * {
|
|
2863
|
+
margin-top: 4rem;
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
.space-x-reverse > * + * {
|
|
2867
|
+
margin-right: 0;
|
|
2868
|
+
margin-left: 0;
|
|
2869
|
+
}
|
|
2870
|
+
.space-y-reverse > * + * {
|
|
2871
|
+
margin-bottom: 0;
|
|
2872
|
+
margin-top: 0;
|
|
2873
|
+
}
|
|
2874
|
+
|
|
2875
|
+
.m-0 {
|
|
2876
|
+
margin: 0;
|
|
2877
|
+
}
|
|
2878
|
+
.m-1 {
|
|
2879
|
+
margin: 0.25rem;
|
|
2880
|
+
}
|
|
2881
|
+
.m-2 {
|
|
2882
|
+
margin: 0.5rem;
|
|
2883
|
+
}
|
|
2884
|
+
.m-4 {
|
|
2885
|
+
margin: 1rem;
|
|
2886
|
+
}
|
|
2887
|
+
.m-6 {
|
|
2888
|
+
margin: 1.5rem;
|
|
2889
|
+
}
|
|
2890
|
+
.m-8 {
|
|
2891
|
+
margin: 2rem;
|
|
2892
|
+
}
|
|
2893
|
+
.m-10 {
|
|
2894
|
+
margin: 2.5rem;
|
|
2895
|
+
}
|
|
2896
|
+
.m-12 {
|
|
2897
|
+
margin: 3rem;
|
|
2898
|
+
}
|
|
2899
|
+
.m-14 {
|
|
2900
|
+
margin: 3.5rem;
|
|
2901
|
+
}
|
|
2902
|
+
.m-16 {
|
|
2903
|
+
margin: 4rem;
|
|
2904
|
+
}
|
|
2905
|
+
|
|
2906
|
+
.mt-0 {
|
|
2907
|
+
margin-top: 0;
|
|
2908
|
+
}
|
|
2909
|
+
.mt-1 {
|
|
2910
|
+
margin-top: 0.25rem;
|
|
2911
|
+
}
|
|
2912
|
+
.mt-2 {
|
|
2913
|
+
margin-top: 0.5rem;
|
|
2914
|
+
}
|
|
2915
|
+
.mt-4 {
|
|
2916
|
+
margin-top: 1rem;
|
|
2917
|
+
}
|
|
2918
|
+
.mt-6 {
|
|
2919
|
+
margin-top: 1.5rem;
|
|
2920
|
+
}
|
|
2921
|
+
.mt-8 {
|
|
2922
|
+
margin-top: 2rem;
|
|
2923
|
+
}
|
|
2924
|
+
.mt-10 {
|
|
2925
|
+
margin-top: 2.5rem;
|
|
2926
|
+
}
|
|
2927
|
+
.mt-12 {
|
|
2928
|
+
margin-top: 3rem;
|
|
2929
|
+
}
|
|
2930
|
+
.mt-14 {
|
|
2931
|
+
margin-top: 3.5rem;
|
|
2932
|
+
}
|
|
2933
|
+
.mt-16 {
|
|
2934
|
+
margin-top: 4rem;
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2937
|
+
.mr-0 {
|
|
2938
|
+
margin-right: 0;
|
|
2939
|
+
}
|
|
2940
|
+
.mr-1 {
|
|
2941
|
+
margin-right: 0.25rem;
|
|
2942
|
+
}
|
|
2943
|
+
.mr-2 {
|
|
2944
|
+
margin-right: 0.5rem;
|
|
2945
|
+
}
|
|
2946
|
+
.mr-4 {
|
|
2947
|
+
margin-right: 1rem;
|
|
2948
|
+
}
|
|
2949
|
+
.mr-6 {
|
|
2950
|
+
margin-right: 1.5rem;
|
|
2951
|
+
}
|
|
2952
|
+
.mr-8 {
|
|
2953
|
+
margin-right: 2rem;
|
|
2954
|
+
}
|
|
2955
|
+
.mr-10 {
|
|
2956
|
+
margin-right: 2.5rem;
|
|
2957
|
+
}
|
|
2958
|
+
.mr-12 {
|
|
2959
|
+
margin-right: 3rem;
|
|
2960
|
+
}
|
|
2961
|
+
.mr-14 {
|
|
2962
|
+
margin-right: 3.5rem;
|
|
2963
|
+
}
|
|
2964
|
+
.mr-16 {
|
|
2965
|
+
margin-right: 4rem;
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2968
|
+
.mb-0 {
|
|
2969
|
+
margin-bottom: 0;
|
|
2970
|
+
}
|
|
2971
|
+
.mb-1 {
|
|
2972
|
+
margin-bottom: 0.25rem;
|
|
2973
|
+
}
|
|
2974
|
+
.mb-2 {
|
|
2975
|
+
margin-bottom: 0.5rem;
|
|
2976
|
+
}
|
|
2977
|
+
.mb-4 {
|
|
2978
|
+
margin-bottom: 1rem;
|
|
2979
|
+
}
|
|
2980
|
+
.mb-6 {
|
|
2981
|
+
margin-bottom: 1.5rem;
|
|
2982
|
+
}
|
|
2983
|
+
.mb-8 {
|
|
2984
|
+
margin-bottom: 2rem;
|
|
2985
|
+
}
|
|
2986
|
+
.mb-10 {
|
|
2987
|
+
margin-bottom: 2.5rem;
|
|
2988
|
+
}
|
|
2989
|
+
.mb-12 {
|
|
2990
|
+
margin-bottom: 3rem;
|
|
2991
|
+
}
|
|
2992
|
+
.mb-14 {
|
|
2993
|
+
margin-bottom: 3.5rem;
|
|
2994
|
+
}
|
|
2995
|
+
.mb-16 {
|
|
2996
|
+
margin-bottom: 4rem;
|
|
2997
|
+
}
|
|
2998
|
+
|
|
2999
|
+
.ml-0 {
|
|
3000
|
+
margin-left: 0;
|
|
3001
|
+
}
|
|
3002
|
+
.ml-1 {
|
|
3003
|
+
margin-left: 0.25rem;
|
|
3004
|
+
}
|
|
3005
|
+
.ml-2 {
|
|
3006
|
+
margin-left: 0.5rem;
|
|
3007
|
+
}
|
|
3008
|
+
.ml-4 {
|
|
3009
|
+
margin-left: 1rem;
|
|
3010
|
+
}
|
|
3011
|
+
.ml-6 {
|
|
3012
|
+
margin-left: 1.5rem;
|
|
3013
|
+
}
|
|
3014
|
+
.ml-8 {
|
|
3015
|
+
margin-left: 2rem;
|
|
3016
|
+
}
|
|
3017
|
+
.ml-10 {
|
|
3018
|
+
margin-left: 2.5rem;
|
|
3019
|
+
}
|
|
3020
|
+
.ml-12 {
|
|
3021
|
+
margin-left: 3rem;
|
|
3022
|
+
}
|
|
3023
|
+
.ml-14 {
|
|
3024
|
+
margin-left: 3.5rem;
|
|
3025
|
+
}
|
|
3026
|
+
.ml-16 {
|
|
3027
|
+
margin-left: 4rem;
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3030
|
+
.mx-0 {
|
|
3031
|
+
margin-left: 0;
|
|
3032
|
+
margin-right: 0;
|
|
3033
|
+
}
|
|
3034
|
+
.mx-1 {
|
|
3035
|
+
margin-left: 0.25rem;
|
|
3036
|
+
margin-right: 0.25rem;
|
|
3037
|
+
}
|
|
3038
|
+
.mx-2 {
|
|
3039
|
+
margin-left: 0.5rem;
|
|
3040
|
+
margin-right: 0.5rem;
|
|
3041
|
+
}
|
|
3042
|
+
.mx-4 {
|
|
3043
|
+
margin-left: 1rem;
|
|
3044
|
+
margin-right: 1rem;
|
|
3045
|
+
}
|
|
3046
|
+
.mx-6 {
|
|
3047
|
+
margin-left: 1.5rem;
|
|
3048
|
+
margin-right: 1.5rem;
|
|
3049
|
+
}
|
|
3050
|
+
.mx-8 {
|
|
3051
|
+
margin-left: 2rem;
|
|
3052
|
+
margin-right: 2rem;
|
|
3053
|
+
}
|
|
3054
|
+
.mx-10 {
|
|
3055
|
+
margin-left: 2.5rem;
|
|
3056
|
+
margin-right: 2.5rem;
|
|
3057
|
+
}
|
|
3058
|
+
.mx-12 {
|
|
3059
|
+
margin-left: 3rem;
|
|
3060
|
+
margin-right: 3rem;
|
|
3061
|
+
}
|
|
3062
|
+
.mx-14 {
|
|
3063
|
+
margin-left: 3.5rem;
|
|
3064
|
+
margin-right: 3.5rem;
|
|
3065
|
+
}
|
|
3066
|
+
.mx-16 {
|
|
3067
|
+
margin-left: 4rem;
|
|
3068
|
+
margin-right: 4rem;
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3071
|
+
.my-0 {
|
|
3072
|
+
margin-top: 0;
|
|
3073
|
+
margin-bottom: 0;
|
|
3074
|
+
}
|
|
3075
|
+
.my-1 {
|
|
3076
|
+
margin-top: 0.25rem;
|
|
3077
|
+
margin-bottom: 0.25rem;
|
|
3078
|
+
}
|
|
3079
|
+
.my-2 {
|
|
3080
|
+
margin-top: 0.5rem;
|
|
3081
|
+
margin-bottom: 0.5rem;
|
|
3082
|
+
}
|
|
3083
|
+
.my-4 {
|
|
3084
|
+
margin-top: 1rem;
|
|
3085
|
+
margin-bottom: 1rem;
|
|
3086
|
+
}
|
|
3087
|
+
.my-6 {
|
|
3088
|
+
margin-top: 1.5rem;
|
|
3089
|
+
margin-bottom: 1.5rem;
|
|
3090
|
+
}
|
|
3091
|
+
.my-8 {
|
|
3092
|
+
margin-top: 2rem;
|
|
3093
|
+
margin-bottom: 2rem;
|
|
3094
|
+
}
|
|
3095
|
+
.my-10 {
|
|
3096
|
+
margin-top: 2.5rem;
|
|
3097
|
+
margin-bottom: 2.5rem;
|
|
3098
|
+
}
|
|
3099
|
+
.my-12 {
|
|
3100
|
+
margin-top: 3rem;
|
|
3101
|
+
margin-bottom: 3rem;
|
|
3102
|
+
}
|
|
3103
|
+
.my-14 {
|
|
3104
|
+
margin-top: 3.5rem;
|
|
3105
|
+
margin-bottom: 3.5rem;
|
|
3106
|
+
}
|
|
3107
|
+
.my-16 {
|
|
3108
|
+
margin-top: 4rem;
|
|
3109
|
+
margin-bottom: 4rem;
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
.p-0 {
|
|
3113
|
+
padding: 0;
|
|
3114
|
+
}
|
|
3115
|
+
.p-1 {
|
|
3116
|
+
padding: 0.25rem;
|
|
3117
|
+
}
|
|
3118
|
+
.p-2 {
|
|
3119
|
+
padding: 0.5rem;
|
|
3120
|
+
}
|
|
3121
|
+
.p-4 {
|
|
3122
|
+
padding: 1rem;
|
|
3123
|
+
}
|
|
3124
|
+
.p-6 {
|
|
3125
|
+
padding: 1.5rem;
|
|
3126
|
+
}
|
|
3127
|
+
.p-8 {
|
|
3128
|
+
padding: 2rem;
|
|
3129
|
+
}
|
|
3130
|
+
.p-10 {
|
|
3131
|
+
padding: 2.5rem;
|
|
3132
|
+
}
|
|
3133
|
+
.p-12 {
|
|
3134
|
+
padding: 3rem;
|
|
3135
|
+
}
|
|
3136
|
+
.p-14 {
|
|
3137
|
+
padding: 3.5rem;
|
|
3138
|
+
}
|
|
3139
|
+
.p-16 {
|
|
3140
|
+
padding: 4rem;
|
|
3141
|
+
}
|
|
3142
|
+
|
|
3143
|
+
.pt-0 {
|
|
3144
|
+
padding-top: 0;
|
|
3145
|
+
}
|
|
3146
|
+
.pt-1 {
|
|
3147
|
+
padding-top: 0.25rem;
|
|
3148
|
+
}
|
|
3149
|
+
.pt-2 {
|
|
3150
|
+
padding-top: 0.5rem;
|
|
3151
|
+
}
|
|
3152
|
+
.pt-4 {
|
|
3153
|
+
padding-top: 1rem;
|
|
3154
|
+
}
|
|
3155
|
+
.pt-6 {
|
|
3156
|
+
padding-top: 1.5rem;
|
|
3157
|
+
}
|
|
3158
|
+
.pt-8 {
|
|
3159
|
+
padding-top: 2rem;
|
|
3160
|
+
}
|
|
3161
|
+
.pt-10 {
|
|
3162
|
+
padding-top: 2.5rem;
|
|
3163
|
+
}
|
|
3164
|
+
.pt-12 {
|
|
3165
|
+
padding-top: 3rem;
|
|
3166
|
+
}
|
|
3167
|
+
.pt-14 {
|
|
3168
|
+
padding-top: 3.5rem;
|
|
3169
|
+
}
|
|
3170
|
+
.pt-16 {
|
|
3171
|
+
padding-top: 4rem;
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3174
|
+
.pr-0 {
|
|
3175
|
+
padding-right: 0;
|
|
3176
|
+
}
|
|
3177
|
+
.pr-1 {
|
|
3178
|
+
padding-right: 0.25rem;
|
|
3179
|
+
}
|
|
3180
|
+
.pr-2 {
|
|
3181
|
+
padding-right: 0.5rem;
|
|
3182
|
+
}
|
|
3183
|
+
.pr-4 {
|
|
3184
|
+
padding-right: 1rem;
|
|
3185
|
+
}
|
|
3186
|
+
.pr-6 {
|
|
3187
|
+
padding-right: 1.5rem;
|
|
3188
|
+
}
|
|
3189
|
+
.pr-8 {
|
|
3190
|
+
padding-right: 2rem;
|
|
3191
|
+
}
|
|
3192
|
+
.pr-10 {
|
|
3193
|
+
padding-right: 2.5rem;
|
|
3194
|
+
}
|
|
3195
|
+
.pr-12 {
|
|
3196
|
+
padding-right: 3rem;
|
|
3197
|
+
}
|
|
3198
|
+
.pr-14 {
|
|
3199
|
+
padding-right: 3.5rem;
|
|
3200
|
+
}
|
|
3201
|
+
.pr-16 {
|
|
3202
|
+
padding-right: 4rem;
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
.pb-0 {
|
|
3206
|
+
padding-bottom: 0;
|
|
3207
|
+
}
|
|
3208
|
+
.pb-1 {
|
|
3209
|
+
padding-bottom: 0.25rem;
|
|
3210
|
+
}
|
|
3211
|
+
.pb-2 {
|
|
3212
|
+
padding-bottom: 0.5rem;
|
|
3213
|
+
}
|
|
3214
|
+
.pb-4 {
|
|
3215
|
+
padding-bottom: 1rem;
|
|
3216
|
+
}
|
|
3217
|
+
.pb-6 {
|
|
3218
|
+
padding-bottom: 1.5rem;
|
|
3219
|
+
}
|
|
3220
|
+
.pb-8 {
|
|
3221
|
+
padding-bottom: 2rem;
|
|
3222
|
+
}
|
|
3223
|
+
.pb-10 {
|
|
3224
|
+
padding-bottom: 2.5rem;
|
|
3225
|
+
}
|
|
3226
|
+
.pb-12 {
|
|
3227
|
+
padding-bottom: 3rem;
|
|
3228
|
+
}
|
|
3229
|
+
.pb-14 {
|
|
3230
|
+
padding-bottom: 3.5rem;
|
|
3231
|
+
}
|
|
3232
|
+
.pb-16 {
|
|
3233
|
+
padding-bottom: 4rem;
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
.pl-0 {
|
|
3237
|
+
padding-left: 0;
|
|
3238
|
+
}
|
|
3239
|
+
.pl-1 {
|
|
3240
|
+
padding-left: 0.25rem;
|
|
3241
|
+
}
|
|
3242
|
+
.pl-2 {
|
|
3243
|
+
padding-left: 0.5rem;
|
|
3244
|
+
}
|
|
3245
|
+
.pl-4 {
|
|
3246
|
+
padding-left: 1rem;
|
|
3247
|
+
}
|
|
3248
|
+
.pl-6 {
|
|
3249
|
+
padding-left: 1.5rem;
|
|
3250
|
+
}
|
|
3251
|
+
.pl-8 {
|
|
3252
|
+
padding-left: 2rem;
|
|
3253
|
+
}
|
|
3254
|
+
.pl-10 {
|
|
3255
|
+
padding-left: 2.5rem;
|
|
3256
|
+
}
|
|
3257
|
+
.pl-12 {
|
|
3258
|
+
padding-left: 3rem;
|
|
3259
|
+
}
|
|
3260
|
+
.pl-14 {
|
|
3261
|
+
padding-left: 3.5rem;
|
|
3262
|
+
}
|
|
3263
|
+
.pl-16 {
|
|
3264
|
+
padding-left: 4rem;
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
.px-0 {
|
|
3268
|
+
padding-left: 0;
|
|
3269
|
+
padding-right: 0;
|
|
3270
|
+
}
|
|
3271
|
+
.px-1 {
|
|
3272
|
+
padding-left: 0.25rem;
|
|
3273
|
+
padding-right: 0.25rem;
|
|
3274
|
+
}
|
|
3275
|
+
.px-2 {
|
|
3276
|
+
padding-left: 0.5rem;
|
|
3277
|
+
padding-right: 0.5rem;
|
|
3278
|
+
}
|
|
3279
|
+
.px-4 {
|
|
3280
|
+
padding-left: 1rem;
|
|
3281
|
+
padding-right: 1rem;
|
|
3282
|
+
}
|
|
3283
|
+
.px-6 {
|
|
3284
|
+
padding-left: 1.5rem;
|
|
3285
|
+
padding-right: 1.5rem;
|
|
3286
|
+
}
|
|
3287
|
+
.px-8 {
|
|
3288
|
+
padding-left: 2rem;
|
|
3289
|
+
padding-right: 2rem;
|
|
3290
|
+
}
|
|
3291
|
+
.px-10 {
|
|
3292
|
+
padding-left: 2.5rem;
|
|
3293
|
+
padding-right: 2.5rem;
|
|
3294
|
+
}
|
|
3295
|
+
.px-12 {
|
|
3296
|
+
padding-left: 3rem;
|
|
3297
|
+
padding-right: 3rem;
|
|
3298
|
+
}
|
|
3299
|
+
.px-14 {
|
|
3300
|
+
padding-left: 3.5rem;
|
|
3301
|
+
padding-right: 3.5rem;
|
|
3302
|
+
}
|
|
3303
|
+
.px-16 {
|
|
3304
|
+
padding-left: 4rem;
|
|
3305
|
+
padding-right: 4rem;
|
|
3306
|
+
}
|
|
3307
|
+
|
|
3308
|
+
.py-0 {
|
|
3309
|
+
padding-top: 0;
|
|
3310
|
+
padding-bottom: 0;
|
|
3311
|
+
}
|
|
3312
|
+
.py-1 {
|
|
3313
|
+
padding-top: 0.25rem;
|
|
3314
|
+
padding-bottom: 0.25rem;
|
|
3315
|
+
}
|
|
3316
|
+
.py-2 {
|
|
3317
|
+
padding-top: 0.5rem;
|
|
3318
|
+
padding-bottom: 0.5rem;
|
|
3319
|
+
}
|
|
3320
|
+
.py-4 {
|
|
3321
|
+
padding-top: 1rem;
|
|
3322
|
+
padding-bottom: 1rem;
|
|
3323
|
+
}
|
|
3324
|
+
.py-6 {
|
|
3325
|
+
padding-top: 1.5rem;
|
|
3326
|
+
padding-bottom: 1.5rem;
|
|
3327
|
+
}
|
|
3328
|
+
.py-8 {
|
|
3329
|
+
padding-top: 2rem;
|
|
3330
|
+
padding-bottom: 2rem;
|
|
3331
|
+
}
|
|
3332
|
+
.py-10 {
|
|
3333
|
+
padding-top: 2.5rem;
|
|
3334
|
+
padding-bottom: 2.5rem;
|
|
3335
|
+
}
|
|
3336
|
+
.py-12 {
|
|
3337
|
+
padding-top: 3rem;
|
|
3338
|
+
padding-bottom: 3rem;
|
|
3339
|
+
}
|
|
3340
|
+
.py-14 {
|
|
3341
|
+
padding-top: 3.5rem;
|
|
3342
|
+
padding-bottom: 3.5rem;
|
|
3343
|
+
}
|
|
3344
|
+
.py-16 {
|
|
3345
|
+
padding-top: 4rem;
|
|
3346
|
+
padding-bottom: 4rem;
|
|
3347
|
+
}
|
|
3348
3348
|
`;var Er=JSON.parse('{"attention.aria.callout":["En gr\xF8n taleboble der introducerer noget nyt"],"attention.aria.close":["Luk"],"attention.aria.highlight":["En opm\xE6rksomhedsskabende taleboble med vigtig information"],"attention.aria.pointingDown":["peger nedad"],"attention.aria.pointingLeft":["peger til venstre"],"attention.aria.pointingRight":["peger til h\xF8jre"],"attention.aria.pointingUp":["peger opad"],"attention.aria.popover":["En hvid taleboble med mere information"],"attention.aria.tooltip":["En sort taleboble med flere oplysninger"]}');var Cr=JSON.parse('{"attention.aria.callout":["A green speech bubble introducing something new"],"attention.aria.close":["Close"],"attention.aria.highlight":["An attention speech bubble with important information"],"attention.aria.pointingDown":["pointing down"],"attention.aria.pointingLeft":["pointing left"],"attention.aria.pointingRight":["pointing right"],"attention.aria.pointingUp":["pointing up"],"attention.aria.popover":["A white speech bubble providing additional information"],"attention.aria.tooltip":["A black speech bubble providing complementary information"]}');var Sr=JSON.parse('{"attention.aria.callout":["Vihre\xE4 puhekupla, joka esittelee jotain uutta"],"attention.aria.close":["Sulje"],"attention.aria.highlight":["Puhekupla, joka sis\xE4lt\xE4\xE4 t\xE4rke\xE4\xE4 tietoa"],"attention.aria.pointingDown":["osoittaa alas"],"attention.aria.pointingLeft":["osoittaa vasemmalle"],"attention.aria.pointingRight":["osoittaa oikealle"],"attention.aria.pointingUp":["osoittaa yl\xF6s"],"attention.aria.popover":["Valkoinen puhekupla, joka tarjoaa lis\xE4tietoa"],"attention.aria.tooltip":["Musta puhekupla, joka tarjoaa t\xE4ydent\xE4v\xE4\xE4 tietoa"]}');var Dr=JSON.parse('{"attention.aria.callout":["Gr\xF8nn taleboble som introduserer noe nytt"],"attention.aria.close":["Lukk"],"attention.aria.highlight":["En uthevet taleboble med viktig informasjon"],"attention.aria.pointingDown":["peker ned"],"attention.aria.pointingLeft":["peker til venstre"],"attention.aria.pointingRight":["peker til h\xF8yre"],"attention.aria.pointingUp":["peker opp"],"attention.aria.popover":["En hvit taleboble som gir tilleggsinformasjon"],"attention.aria.tooltip":["En svart taleboble som forklarer konteksten"]}');var Tr=JSON.parse('{"attention.aria.callout":["En gr\xF6n pratbubbla som introducerar n\xE5got nytt"],"attention.aria.close":["St\xE4ng"],"attention.aria.highlight":["En pratbubbla med viktig information"],"attention.aria.pointingDown":["pekar ned"],"attention.aria.pointingLeft":["pekar v\xE4nster"],"attention.aria.pointingRight":["pekar h\xF6ger"],"attention.aria.pointingUp":["pekar upp"],"attention.aria.popover":["En vit pratbubbla som ger ytterligare information"],"attention.aria.tooltip":["En svart pratbubbla som ger kompletterande information"]}');import{unsafeCSS as Io}from"lit";var zr=Io("*,: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}.hover\\:bg-clip-padding:hover{-webkit-background-clip:padding-box;background-clip:padding-box}.bg-transparent{background-color:#0000}.bg-\\[--w-color-button-primary-background\\]{background-color:var(--w-color-button-primary-background)}.bg-\\[--w-color-callout-background\\]{background-color:var(--w-color-callout-background)}.bg-\\[--w-s-color-surface-elevated-300\\]{background-color:var(--w-s-color-surface-elevated-300)}.hover\\:bg-\\[--w-color-button-pill-background-hover\\]:hover{background-color:var(--w-color-button-pill-background-hover)}.hover\\:bg-\\[--w-color-button-primary-background-hover\\]:hover{background-color:var(--w-color-button-primary-background-hover)}.active\\:bg-\\[--w-color-button-pill-background-active\\]:active{background-color:var(--w-color-button-pill-background-active)}.active\\:bg-\\[--w-color-button-primary-background-active\\]:active{background-color:var(--w-color-button-primary-background-active)}.border{border-width:1px}.border-0{border-width:0}.border-2{border-width:2px}.border-b-0{border-bottom-width:0}.border-r-0{border-right-width:0}.border-\\[--w-color-callout-border\\]{border-color:var(--w-color-callout-border)}.border-\\[--w-s-color-background-inverted\\]{border-color:var(--w-s-color-background-inverted)}.border-\\[--w-s-color-surface-elevated-300\\]{border-color:var(--w-s-color-surface-elevated-300)}.rounded-4{border-radius:4px}.rounded-8{border-radius:8px}.rounded-full{border-radius:9999px}.rounded-tl-4{border-top-left-radius:4px}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.contents{display:contents}.hidden{display:none}.hover\\:underline:hover,.focus\\:underline:focus,.active\\:underline:active{text-decoration-line:underline}.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}.items-center{align-items:center}.-bottom-\\[8px\\]{bottom:-8px}.-left-\\[8px\\]{left:-8px}.-right-\\[8px\\]{right:-8px}.-top-\\[8px\\]{top:-8px}.justify-center{justify-content:center}.absolute{position:absolute}.relative{position:relative}.static{position:static}.z-50{z-index:50}.s-bg{background-color:var(--w-s-color-background)}.s-bg-disabled{background-color:var(--w-s-color-background-disabled)}.s-bg-inverted{background-color:var(--w-s-color-background-inverted)}.s-bg-negative{background-color:var(--w-s-color-background-negative)}.s-bg-subtle{background-color:var(--w-s-color-background-subtle)}.hover\\:s-bg-hover:hover{background-color:var(--w-s-color-background-hover)}.hover\\:s-bg-negative-hover:hover{background-color:var(--w-s-color-background-negative-hover)}.hover\\:s-bg-negative-subtle-hover:hover{background-color:var(--w-s-color-background-negative-subtle-hover)}.active\\:s-bg-active:active{background-color:var(--w-s-color-background-active)}.active\\:s-bg-negative-active:active{background-color:var(--w-s-color-background-negative-active)}.active\\:s-bg-negative-subtle-active:active{background-color:var(--w-s-color-background-negative-subtle-active)}.s-text{color:var(--w-s-color-text)}.s-text-inverted{color:var(--w-s-color-text-inverted)}.s-text-link{color:var(--w-s-color-text-link)}.s-text-negative{color:var(--w-s-color-text-negative)}.s-icon{color:var(--w-s-color-icon)}.hover\\:s-icon-hover:hover{color:var(--w-s-color-icon-hover)}.active\\:s-icon-active:active{color:var(--w-s-color-icon-active)}.s-border{border-color:var(--w-s-color-border)}.hover\\:s-border-hover:hover{border-color:var(--w-s-color-border-hover)}.active\\:s-border-active:active{border-color:var(--w-s-color-border-active)}.drop-shadow-m{filter:drop-shadow(0 3px 8px #4040403d)drop-shadow(0 3px 6px #40404029)}.shadow-m{box-shadow:var(--w-shadow-m)}.h-\\[14px\\]{height:14px}.w-\\[14px\\]{width:14px}.last-child\\:mb-0>:last-child{margin-bottom:0}.ml-8{margin-left:.8rem}.p-16{padding:1.6rem}.p-4{padding:.4rem}.px-16{padding-left:1.6rem;padding-right:1.6rem}.px-8{padding-left:.8rem;padding-right:.8rem}.py-6{padding-top:.6rem;padding-bottom:.6rem}.py-8{padding-top:.8rem;padding-bottom:.8rem}.font-bold{font-weight:700}.resize{resize:both}.translate-z-0{--w-translate-z:0rem;transform:translateX(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotateZ(var(--w-rotate-z)) skewX(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))}.transform{transform:translateX(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotateZ(var(--w-rotate-z)) skewX(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.text-m{font-size:var(--w-font-size-m);line-height:var(--w-line-height-m)}.text-xs{font-size:var(--w-font-size-xs);line-height:var(--w-line-height-xs)}.leading-\\[24\\]{line-height:2.4rem}");import{html as Yo,LitElement as Xo}from"lit";import{property as mt,state as qo}from"lit/decorators.js";import{classMap as Uo}from"lit/directives/class-map.js";import{css as Ho}from"lit";var Lr=Ho`
|
|
3349
|
-
:host {
|
|
3350
|
-
|
|
3351
|
-
}
|
|
3352
|
-
.w-icon {
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
}
|
|
3358
|
-
.w-icon svg {
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
}
|
|
3363
|
-
.w-icon--s {
|
|
3364
|
-
|
|
3365
|
-
}
|
|
3366
|
-
.w-icon--m {
|
|
3367
|
-
|
|
3368
|
-
}
|
|
3369
|
-
.w-icon--l {
|
|
3370
|
-
|
|
3371
|
-
}
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
|
|
3376
|
-
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3392
|
-
|
|
3393
|
-
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
|
|
3399
|
-
|
|
3400
|
-
|
|
3401
|
-
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3349
|
+
:host {
|
|
3350
|
+
display: inline-block;
|
|
3351
|
+
}
|
|
3352
|
+
.w-icon {
|
|
3353
|
+
--_w-icon-size: var(--w-icon-size, 24px);
|
|
3354
|
+
height: var(--_w-icon-size);
|
|
3355
|
+
width: var(--_w-icon-size);
|
|
3356
|
+
display: flex;
|
|
3357
|
+
}
|
|
3358
|
+
.w-icon svg {
|
|
3359
|
+
pointer-events: none;
|
|
3360
|
+
height: var(--_w-icon-size);
|
|
3361
|
+
width: var(--_w-icon-size);
|
|
3362
|
+
}
|
|
3363
|
+
.w-icon--s {
|
|
3364
|
+
--w-icon-size: 16px;
|
|
3365
|
+
}
|
|
3366
|
+
.w-icon--m {
|
|
3367
|
+
--w-icon-size: 24px;
|
|
3368
|
+
}
|
|
3369
|
+
.w-icon--l {
|
|
3370
|
+
--w-icon-size: 32px;
|
|
3371
|
+
}
|
|
3372
|
+
`;var bt=new Map,Qo='<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"></svg>';function Zo(e,t={}){let r=t.responseParser??(o=>o.text());return bt.has(e)||bt.set(e,fetch(e).then(r)),bt.get(e)}var ie=class extends Xo{constructor(){super(...arguments);this.locale=document.documentElement.lang||"en";this.svg=null}async fetchIcon(r){let o=`https://assets.finn.no/pkg/eikons/~1/${this.locale}/${r}.svg`;try{let n=await Zo(o);return new DOMParser().parseFromString(n,"text/html").body.querySelector("svg")}catch{return null}}firstUpdated(){this.loadIcon()}updated(r){(r.has("name")||r.has("locale"))&&this.loadIcon()}async loadIcon(){if(!this.name){this.svg=null;return}let r=await this.fetchIcon(this.name);r||(r=new DOMParser().parseFromString(Qo,"text/html").body.firstElementChild),this.svg=r}render(){let r=this.size||"medium",o=this.name||"",n={"w-icon":!0,"w-icon--s":r==="small","w-icon--m":r==="medium","w-icon--l":r==="large"},a=typeof r=="string"&&r.endsWith("px")?`--w-icon-size: ${r};`:"";return Yo`<div
|
|
3373
|
+
class="${Uo(n)}"
|
|
3374
|
+
style="${a}"
|
|
3375
|
+
part="w-${o.toLowerCase()}"
|
|
3376
|
+
>
|
|
3377
|
+
${this.svg}
|
|
3378
|
+
</div>`}};ie.styles=[Lr],v([mt({type:String,reflect:!0})],ie.prototype,"name",2),v([mt({type:String,reflect:!0})],ie.prototype,"size",2),v([mt({type:String,reflect:!0,useDefault:!0})],ie.prototype,"locale",2),v([qo()],ie.prototype,"svg",2);customElements.get("w-icon")||customElements.define("w-icon",ie);var k=function(e,t,r,o){if(r==="a"&&!o)throw new TypeError("Private accessor was defined without a getter");if(typeof t=="function"?e!==t||!o:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return r==="m"?o:r==="a"?o.call(e):o?o.value:t.get(e)},R=function(e,t,r,o,n){if(o==="m")throw new TypeError("Private method is not writable");if(o==="a"&&!n)throw new TypeError("Private accessor was defined without a setter");if(typeof t=="function"?e!==t||!n:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return o==="a"?n.call(e,r):n?n.value=r:t.set(e,r),r};function Ar(e){var t,r,o,n,a,i,s,l,u,c,g,m,d,p,h,f,x,_,C;class D extends e{constructor(...b){var w,y,E;super(...b),t.add(this),this.internals=this.attachInternals(),r.set(this,!1),o.set(this,!1),n.set(this,!1),a.set(this,void 0),i.set(this,void 0),s.set(this,!0),u.set(this,""),c.set(this,()=>{R(this,n,!0,"f"),R(this,r,!0,"f"),k(this,t,"m",f).call(this)}),g.set(this,()=>{R(this,r,!1,"f"),k(this,t,"m",x).call(this,this.shouldFormValueUpdate()?k(this,u,"f"):""),!this.validity.valid&&k(this,n,"f")&&R(this,o,!0,"f");let T=k(this,t,"m",f).call(this);this.validationMessageCallback&&this.validationMessageCallback(T?this.internals.validationMessage:"")}),m.set(this,()=>{var T;k(this,s,"f")&&this.validationTarget&&(this.internals.setValidity(this.validity,this.validationMessage,this.validationTarget),R(this,s,!1,"f")),R(this,n,!0,"f"),R(this,o,!0,"f"),k(this,t,"m",f).call(this),(T=this===null||this===void 0?void 0:this.validationMessageCallback)===null||T===void 0||T.call(this,this.showError?this.internals.validationMessage:"")}),d.set(this,void 0),p.set(this,!1),h.set(this,Promise.resolve()),(w=this.addEventListener)===null||w===void 0||w.call(this,"focus",k(this,c,"f")),(y=this.addEventListener)===null||y===void 0||y.call(this,"blur",k(this,g,"f")),(E=this.addEventListener)===null||E===void 0||E.call(this,"invalid",k(this,m,"f")),this.setValue(null)}static get formAssociated(){return!0}static get validators(){return this.formControlValidators||[]}static get observedAttributes(){let b=this.validators.map(E=>E.attribute).flat(),w=super.observedAttributes||[];return[...new Set([...w,...b])]}static getValidator(b){return this.validators.find(w=>w.attribute===b)||null}static getValidators(b){return this.validators.filter(w=>{var y;if(w.attribute===b||!((y=w.attribute)===null||y===void 0)&&y.includes(b))return!0})}get form(){return this.internals.form}get showError(){return k(this,t,"m",f).call(this)}checkValidity(){return this.internals.checkValidity()}get validity(){return this.internals.validity}get validationMessage(){return this.internals.validationMessage}attributeChangedCallback(b,w,y){var E;(E=super.attributeChangedCallback)===null||E===void 0||E.call(this,b,w,y);let V=this.constructor.getValidators(b);V?.length&&this.validationTarget&&this.setValue(k(this,u,"f"))}setValue(b){var w;R(this,o,!1,"f"),(w=this.validationMessageCallback)===null||w===void 0||w.call(this,""),R(this,u,b,"f");let E=this.shouldFormValueUpdate()?b:null;this.internals.setFormValue(E),k(this,t,"m",x).call(this,E),this.valueChangedCallback&&this.valueChangedCallback(E),k(this,t,"m",f).call(this)}shouldFormValueUpdate(){return!0}get validationComplete(){return new Promise(b=>b(k(this,h,"f")))}formResetCallback(){var b,w;R(this,n,!1,"f"),R(this,o,!1,"f"),k(this,t,"m",f).call(this),(b=this.resetFormControl)===null||b===void 0||b.call(this),(w=this.validationMessageCallback)===null||w===void 0||w.call(this,k(this,t,"m",f).call(this)?this.validationMessage:"")}}return r=new WeakMap,o=new WeakMap,n=new WeakMap,a=new WeakMap,i=new WeakMap,s=new WeakMap,u=new WeakMap,c=new WeakMap,g=new WeakMap,m=new WeakMap,d=new WeakMap,p=new WeakMap,h=new WeakMap,t=new WeakSet,l=function(){let b=this.getRootNode(),w=`${this.localName}[name="${this.getAttribute("name")}"]`;return b.querySelectorAll(w)},f=function(){if(this.hasAttribute("disabled"))return!1;let b=k(this,o,"f")||k(this,n,"f")&&!this.validity.valid&&!k(this,r,"f");return b&&this.internals.states?this.internals.states.add("--show-error"):this.internals.states&&this.internals.states.delete("--show-error"),b},x=function(b){let w=this.constructor,y={},E=w.validators,T=[],V=E.some(A=>A.isValid instanceof Promise);k(this,p,"f")||(R(this,h,new Promise(A=>{R(this,d,A,"f")}),"f"),R(this,p,!0,"f")),k(this,a,"f")&&(k(this,a,"f").abort(),R(this,i,k(this,a,"f"),"f"));let j=new AbortController;R(this,a,j,"f");let N,M=!1;E.length&&(E.forEach(A=>{let H=A.key||"customError",P=A.isValid(this,b,j.signal);P instanceof Promise?(T.push(P),P.then(U=>{U!=null&&(y[H]=!U,N=k(this,t,"m",C).call(this,A,b),k(this,t,"m",_).call(this,y,N))})):(y[H]=!P,this.validity[H]!==!P&&(M=!0),!P&&!N&&(N=k(this,t,"m",C).call(this,A,b)))}),Promise.allSettled(T).then(()=>{var A;j?.signal.aborted||(R(this,p,!1,"f"),(A=k(this,d,"f"))===null||A===void 0||A.call(this))}),(M||!V)&&k(this,t,"m",_).call(this,y,N))},_=function(b,w){if(this.validationTarget)this.internals.setValidity(b,w,this.validationTarget),R(this,s,!1,"f");else{if(this.internals.setValidity(b,w),this.internals.validity.valid)return;R(this,s,!0,"f")}},C=function(b,w){if(this.validityCallback){let y=this.validityCallback(b.key||"customError");if(y)return y}return b.message instanceof Function?b.message(this,w):b.message},D}import{html as tt,LitElement as Br,nothing as Wo}from"lit";import{property as $,query as en}from"lit/decorators.js";import{html as Jo,LitElement as Mr,nothing as Ko}from"lit";import{property as ae}from"lit/decorators.js";import{css as Go}from"lit";import{css as Ee}from"lit";var ht=Ee`
|
|
3379
|
+
:host {
|
|
3380
|
+
display: inline-block;
|
|
3381
|
+
|
|
3382
|
+
/* Internal resolved vars (defaults) */
|
|
3383
|
+
--_bg: var(--w-c-button-bg, var(--w-s-color-background));
|
|
3384
|
+
--_bg-hover: var(--w-c-button-bg-hover, var(--w-s-color-background-hover));
|
|
3385
|
+
--_bg-active: var(
|
|
3386
|
+
--w-c-button-bg-active,
|
|
3387
|
+
var(--w-s-color-background-active)
|
|
3388
|
+
);
|
|
3389
|
+
|
|
3390
|
+
--_color: var(--w-c-button-color, var(--w-s-color-text-link));
|
|
3391
|
+
--_color-hover: var(--w-c-button-color-hover, var(--_color));
|
|
3392
|
+
--_color-active: var(--w-c-button-color-active, var(--_color));
|
|
3393
|
+
|
|
3394
|
+
--_border-width: var(--w-c-button-border-width, 2px);
|
|
3395
|
+
--_border-color: var(--w-c-button-border-color, var(--w-s-color-border));
|
|
3396
|
+
--_border-color-hover: var(
|
|
3397
|
+
--w-c-button-border-color-hover,
|
|
3398
|
+
var(--w-s-color-border-hover)
|
|
3399
|
+
);
|
|
3400
|
+
--_border-color-active: var(
|
|
3401
|
+
--w-c-button-border-color-active,
|
|
3402
|
+
var(--w-s-color-border-active)
|
|
3403
|
+
);
|
|
3404
|
+
|
|
3405
|
+
--_radius: var(--w-c-button-radius, var(--w-button-radius-default, 8px));
|
|
3406
|
+
|
|
3407
|
+
--_font-size: var(--w-c-button-font-size, var(--w-font-size-m));
|
|
3408
|
+
--_line-height: var(--w-c-button-line-height, var(--w-line-height-m));
|
|
3409
|
+
--_font-weight: var(--w-c-button-font-weight, 700);
|
|
3410
|
+
|
|
3411
|
+
--_pad-x: var(--w-c-button-padding-x, 16px);
|
|
3412
|
+
--_pad-y: var(--w-c-button-padding-y, 13px);
|
|
3413
|
+
|
|
3414
|
+
--_outline-width: var(--w-c-button-outline-width, 2px);
|
|
3415
|
+
--_outline-color: var(
|
|
3416
|
+
--w-c-button-outline-color,
|
|
3417
|
+
var(--w-s-color-border-focus)
|
|
3418
|
+
);
|
|
3419
|
+
--_outline-offset: var(
|
|
3420
|
+
--w-c-button-outline-offset,
|
|
3421
|
+
var(--w-outline-offset, 1px)
|
|
3422
|
+
);
|
|
3423
|
+
|
|
3424
|
+
--_transition: var(
|
|
3425
|
+
--w-c-button-transition,
|
|
3426
|
+
color 150ms cubic-bezier(0.4, 0, 0.2, 1),
|
|
3427
|
+
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
|
|
3428
|
+
border-color 150ms cubic-bezier(0.4, 0, 0.2, 1)
|
|
3429
|
+
);
|
|
3430
|
+
|
|
3431
|
+
/* Icon color for pill/icon-only variants (semantic; default dark grey icon) */
|
|
3432
|
+
--w-c-button-icon-color: var(--w-s-color-icon);
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
:host(:focus-visible) {
|
|
3436
|
+
outline: none;
|
|
3437
|
+
}
|
|
3418
3438
|
`,ft=Ee`
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
|
|
3455
|
-
|
|
3456
|
-
|
|
3457
|
-
|
|
3458
|
-
|
|
3459
|
-
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
|
-
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3439
|
+
:host([variant="primary"]) {
|
|
3440
|
+
--w-c-button-bg: var(--w-s-color-background-primary);
|
|
3441
|
+
--w-c-button-bg-hover: var(--w-s-color-background-primary-hover);
|
|
3442
|
+
--w-c-button-bg-active: var(--w-s-color-background-primary-active);
|
|
3443
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
3444
|
+
--w-c-button-border-width: 0px;
|
|
3445
|
+
}
|
|
3446
|
+
|
|
3447
|
+
:host([variant="negative"]) {
|
|
3448
|
+
--w-c-button-bg: var(--w-s-color-background-negative);
|
|
3449
|
+
--w-c-button-bg-hover: var(--w-s-color-background-negative-hover);
|
|
3450
|
+
--w-c-button-bg-active: var(--w-s-color-background-negative-active);
|
|
3451
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
3452
|
+
--w-c-button-border-width: 0px;
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
:host([variant="negativeQuiet"]) {
|
|
3456
|
+
--w-c-button-bg: transparent;
|
|
3457
|
+
--w-c-button-bg-hover: var(--w-s-color-background-negative-subtle-hover);
|
|
3458
|
+
--w-c-button-bg-active: var(--w-s-color-background-negative-subtle-active);
|
|
3459
|
+
--w-c-button-color: var(--w-s-color-text-negative);
|
|
3460
|
+
--w-c-button-border-width: 0px;
|
|
3461
|
+
}
|
|
3462
|
+
|
|
3463
|
+
:host([variant="utility"]) {
|
|
3464
|
+
--w-c-button-bg: var(--w-s-color-background);
|
|
3465
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
3466
|
+
--w-c-button-radius: var(--w-button-radius-utility, 4px);
|
|
3467
|
+
--w-c-button-border-width: 1px;
|
|
3468
|
+
}
|
|
3469
|
+
|
|
3470
|
+
:host([variant="utilityQuiet"]) {
|
|
3471
|
+
--w-c-button-bg: transparent;
|
|
3472
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
3473
|
+
--w-c-button-border-width: 0px;
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
:host([variant="quiet"]) {
|
|
3477
|
+
--w-c-button-bg: transparent;
|
|
3478
|
+
--w-c-button-border-width: 0px;
|
|
3479
|
+
}
|
|
3480
|
+
|
|
3481
|
+
:host([variant="overlay"]) {
|
|
3482
|
+
--w-c-button-bg: var(--w-s-color-background);
|
|
3483
|
+
--w-c-button-bg-hover: var(--w-s-color-background-hover);
|
|
3484
|
+
--w-c-button-bg-active: var(--w-s-color-background-active);
|
|
3485
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
3486
|
+
--w-c-button-radius: 9999px;
|
|
3487
|
+
--w-c-button-border-width: 0px;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
:host([variant="overlayInverted"]) {
|
|
3491
|
+
--w-c-button-bg: var(--w-s-color-background-inverted);
|
|
3492
|
+
--w-c-button-bg-hover: var(--w-s-color-background-inverted-hover);
|
|
3493
|
+
--w-c-button-bg-active: var(--w-s-color-background-inverted-active);
|
|
3494
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
3495
|
+
--w-c-button-radius: 9999px;
|
|
3496
|
+
--w-c-button-border-width: 0px;
|
|
3497
|
+
}
|
|
3498
|
+
|
|
3499
|
+
:host([variant="overlayQuiet"]) {
|
|
3500
|
+
--w-c-button-bg: transparent;
|
|
3501
|
+
--w-c-button-bg-hover: var(--w-s-color-background-hover);
|
|
3502
|
+
--w-c-button-bg-active: var(--w-s-color-background-active);
|
|
3503
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
3504
|
+
--w-c-button-radius: 9999px;
|
|
3505
|
+
--w-c-button-border-width: 0px;
|
|
3506
|
+
}
|
|
3507
|
+
|
|
3508
|
+
:host([variant="overlayInvertedQuiet"]) {
|
|
3509
|
+
--w-c-button-bg: transparent;
|
|
3510
|
+
--w-c-button-bg-hover: var(--w-s-color-background-inverted-hover);
|
|
3511
|
+
--w-c-button-bg-active: var(--w-s-color-background-inverted-active);
|
|
3512
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
3513
|
+
--w-c-button-radius: 9999px;
|
|
3514
|
+
--w-c-button-border-width: 0px;
|
|
3515
|
+
}
|
|
3516
|
+
|
|
3517
|
+
:host([variant="link"]) {
|
|
3518
|
+
--w-c-button-bg: transparent;
|
|
3519
|
+
--w-c-button-border-width: 0px;
|
|
3520
|
+
--w-c-button-padding-x: 0px;
|
|
3521
|
+
--w-c-button-padding-y: 0px;
|
|
3522
|
+
--w-c-button-font-weight: 400;
|
|
3523
|
+
|
|
3524
|
+
--w-c-button-bg-hover: transparent;
|
|
3525
|
+
--w-c-button-bg-active: transparent;
|
|
3526
|
+
|
|
3527
|
+
--w-c-button-color: var(--w-s-color-text-link);
|
|
3528
|
+
--w-c-button-color-hover: var(
|
|
3529
|
+
--w-s-color-text-link-hover,
|
|
3530
|
+
var(--w-c-button-color)
|
|
3531
|
+
);
|
|
3532
|
+
--w-c-button-color-active: var(
|
|
3533
|
+
--w-s-color-text-link-active,
|
|
3534
|
+
var(--w-c-button-color)
|
|
3535
|
+
);
|
|
3536
|
+
}
|
|
3511
3537
|
`,vt=Ee`
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3538
|
+
:host([small]) {
|
|
3539
|
+
--w-c-button-padding-x: 12px;
|
|
3540
|
+
--w-c-button-padding-y: 8px;
|
|
3541
|
+
--w-c-button-font-size: var(--w-font-size-xs);
|
|
3542
|
+
--w-c-button-line-height: var(--w-line-height-xs);
|
|
3543
|
+
}
|
|
3518
3544
|
`,wt=Ee`
|
|
3519
|
-
|
|
3520
|
-
|
|
3521
|
-
|
|
3545
|
+
:host([disabled]) {
|
|
3546
|
+
pointer-events: none;
|
|
3547
|
+
cursor: default;
|
|
3522
3548
|
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3549
|
+
--w-c-button-bg: var(--w-s-color-background-disabled);
|
|
3550
|
+
--w-c-button-bg-hover: var(--w-s-color-background-disabled);
|
|
3551
|
+
--w-c-button-bg-active: var(--w-s-color-background-disabled);
|
|
3526
3552
|
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3553
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
3554
|
+
--w-c-button-border-width: 0px;
|
|
3555
|
+
}
|
|
3530
3556
|
`,Or=Ee`
|
|
3531
|
-
|
|
3557
|
+
${ht}
|
|
3532
3558
|
|
|
3533
|
-
|
|
3559
|
+
/* ============================================================
|
|
3534
3560
|
* Base element (NATIVE button mode ONLY)
|
|
3535
3561
|
* ============================================================ */
|
|
3536
3562
|
button[part='base'] {
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3563
|
+
display: inline-flex;
|
|
3564
|
+
justify-content: center;
|
|
3565
|
+
align-items: center;
|
|
3566
|
+
text-align: center;
|
|
3541
3567
|
|
|
3542
|
-
|
|
3568
|
+
cursor: pointer;
|
|
3543
3569
|
|
|
3544
|
-
|
|
3545
|
-
|
|
3570
|
+
background-color: var(--_bg);
|
|
3571
|
+
color: var(--_color);
|
|
3546
3572
|
|
|
3547
|
-
|
|
3548
|
-
|
|
3573
|
+
border: var(--_border-width) solid var(--_border-color);
|
|
3574
|
+
border-radius: var(--_radius);
|
|
3549
3575
|
|
|
3550
|
-
|
|
3551
|
-
|
|
3576
|
+
padding: calc(var(--_pad-y) - var(--_border-width))
|
|
3577
|
+
calc(var(--_pad-x) - var(--_border-width));
|
|
3552
3578
|
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3579
|
+
font-size: var(--_font-size);
|
|
3580
|
+
line-height: var(--_line-height);
|
|
3581
|
+
font-weight: var(--_font-weight);
|
|
3556
3582
|
|
|
3557
|
-
|
|
3558
|
-
|
|
3583
|
+
transition: var(--_transition);
|
|
3584
|
+
}
|
|
3559
3585
|
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3586
|
+
/* Optional: helps avoid "grew a bit" from slot typography differences */
|
|
3587
|
+
button[part="base"] ::slotted(*) {
|
|
3588
|
+
line-height: inherit;
|
|
3589
|
+
}
|
|
3564
3590
|
|
|
3565
|
-
|
|
3591
|
+
/* ============================================================
|
|
3566
3592
|
* Link mode wrapper (w-link host carries part="base" in button.ts)
|
|
3567
3593
|
* Keep it layout-only to avoid double chrome.
|
|
3568
3594
|
* ============================================================ */
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
+
:host > w-link[part="base"] {
|
|
3596
|
+
display: inline-block;
|
|
3597
|
+
padding: 0;
|
|
3598
|
+
border: 0;
|
|
3599
|
+
background: transparent;
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
/* Hover / active (native button mode only) */
|
|
3603
|
+
:host(:not([disabled]):not([loading])) button[part="base"]:hover {
|
|
3604
|
+
background-color: var(--_bg-hover);
|
|
3605
|
+
border-color: var(--_border-color-hover);
|
|
3606
|
+
color: var(--_color-hover);
|
|
3607
|
+
}
|
|
3608
|
+
|
|
3609
|
+
:host(:not([disabled]):not([loading])) button[part="base"]:active {
|
|
3610
|
+
background-color: var(--_bg-active);
|
|
3611
|
+
border-color: var(--_border-color-active);
|
|
3612
|
+
color: var(--_color-active);
|
|
3613
|
+
}
|
|
3614
|
+
|
|
3615
|
+
:host(:focus-visible) button[part="base"] {
|
|
3616
|
+
outline: var(--_outline-width) solid var(--_outline-color);
|
|
3617
|
+
outline-offset: var(--_outline-offset);
|
|
3618
|
+
}
|
|
3619
|
+
|
|
3620
|
+
/* ============================================================
|
|
3595
3621
|
* Variants (shared + button-specific quiet mappings)
|
|
3596
3622
|
* ============================================================ */
|
|
3597
|
-
|
|
3623
|
+
${ft}
|
|
3598
3624
|
|
|
3599
|
-
|
|
3625
|
+
/* Button-specific: quiet attribute backwards compatibility */
|
|
3600
3626
|
:host([variant='negative'][quiet]) {
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
|
|
3659
|
-
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
3675
|
-
|
|
3627
|
+
--w-c-button-bg: transparent;
|
|
3628
|
+
--w-c-button-bg-hover: var(--w-s-color-background-negative-subtle-hover);
|
|
3629
|
+
--w-c-button-bg-active: var(--w-s-color-background-negative-subtle-active);
|
|
3630
|
+
--w-c-button-color: var(--w-s-color-text-negative);
|
|
3631
|
+
--w-c-button-border-width: 0px;
|
|
3632
|
+
}
|
|
3633
|
+
|
|
3634
|
+
:host([variant="utility"][quiet]) {
|
|
3635
|
+
--w-c-button-bg: transparent;
|
|
3636
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
3637
|
+
--w-c-button-border-width: 0px;
|
|
3638
|
+
}
|
|
3639
|
+
|
|
3640
|
+
/* Button-specific: pill variant */
|
|
3641
|
+
:host([variant="pill"]) {
|
|
3642
|
+
--w-c-button-bg: transparent;
|
|
3643
|
+
--w-c-button-radius: 50%;
|
|
3644
|
+
--w-c-button-border-width: 0px;
|
|
3645
|
+
--w-c-button-padding-x: 14px;
|
|
3646
|
+
--w-c-button-padding-y: 14px;
|
|
3647
|
+
|
|
3648
|
+
/* pill uses semantic icon color (dark grey by default) */
|
|
3649
|
+
--w-c-button-color: var(--w-c-button-icon-color, var(--w-s-color-icon));
|
|
3650
|
+
}
|
|
3651
|
+
|
|
3652
|
+
:host([variant="pill"]) button[part="base"] {
|
|
3653
|
+
min-height: 44px;
|
|
3654
|
+
min-width: 44px;
|
|
3655
|
+
}
|
|
3656
|
+
|
|
3657
|
+
:host([small][variant="pill"]) button[part="base"] {
|
|
3658
|
+
min-height: 32px;
|
|
3659
|
+
min-width: 32px;
|
|
3660
|
+
}
|
|
3661
|
+
|
|
3662
|
+
/* Button-specific: link variant element styles */
|
|
3663
|
+
:host([variant="link"]) button[part="base"] {
|
|
3664
|
+
display: inline;
|
|
3665
|
+
padding: 0;
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3668
|
+
:host([variant="link"]:not([disabled]):not([loading]))
|
|
3669
|
+
button[part="base"]:hover {
|
|
3670
|
+
text-decoration: underline;
|
|
3671
|
+
background-color: transparent;
|
|
3672
|
+
border-color: transparent;
|
|
3673
|
+
color: var(--w-c-button-color-hover);
|
|
3674
|
+
}
|
|
3675
|
+
|
|
3676
|
+
/* ===== Size ===== */
|
|
3677
|
+
${vt}
|
|
3678
|
+
|
|
3679
|
+
:host([small][variant='pill']) {
|
|
3680
|
+
--w-c-button-padding-x: 8px;
|
|
3681
|
+
--w-c-button-padding-y: 8px;
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
/* ===== Layout ===== */
|
|
3685
|
+
|
|
3686
|
+
:host([full-width]) {
|
|
3687
|
+
display: block;
|
|
3688
|
+
width: 100%;
|
|
3689
|
+
}
|
|
3690
|
+
|
|
3691
|
+
:host([full-width]) button[part="base"],
|
|
3692
|
+
:host([full-width]) > w-link[part="base"] {
|
|
3693
|
+
width: 100%;
|
|
3694
|
+
}
|
|
3695
|
+
|
|
3696
|
+
:host([icon-only]) button[part="base"] {
|
|
3697
|
+
aspect-ratio: 1 / 1;
|
|
3698
|
+
padding-left: calc(
|
|
3699
|
+
var(--w-c-button-padding-y) - var(--w-c-button-border-width, 0px)
|
|
3700
|
+
);
|
|
3701
|
+
padding-right: calc(
|
|
3702
|
+
var(--w-c-button-padding-y) - var(--w-c-button-border-width, 0px)
|
|
3703
|
+
);
|
|
3704
|
+
}
|
|
3705
|
+
|
|
3706
|
+
/* ============================================================
|
|
3676
3707
|
* STATE OVERRIDES (must be last so they win over variants)
|
|
3677
3708
|
* Disabled first, Loading last (loading is disabled-like + visuals)
|
|
3678
3709
|
*
|
|
@@ -3681,244 +3712,255 @@ Please compile your catalog first.
|
|
|
3681
3712
|
* To ensure states always win, we match similar specificity via extra attribute selectors.
|
|
3682
3713
|
* ============================================================ */
|
|
3683
3714
|
|
|
3684
|
-
|
|
3685
|
-
|
|
3715
|
+
/* ===== Disabled ===== */
|
|
3716
|
+
${wt}
|
|
3686
3717
|
|
|
3687
|
-
|
|
3718
|
+
/* Additional specificity for button to override quiet variants */
|
|
3688
3719
|
:host([disabled][variant]),
|
|
3689
3720
|
:host([disabled][quiet]) {
|
|
3690
|
-
|
|
3691
|
-
|
|
3692
|
-
|
|
3693
|
-
|
|
3694
|
-
|
|
3695
|
-
|
|
3696
|
-
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3708
|
-
|
|
3709
|
-
|
|
3710
|
-
|
|
3711
|
-
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
|
|
3723
|
-
|
|
3724
|
-
|
|
3725
|
-
|
|
3726
|
-
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
|
|
3730
|
-
|
|
3731
|
-
|
|
3732
|
-
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3721
|
+
--w-c-button-bg: var(--w-s-color-background-disabled);
|
|
3722
|
+
--w-c-button-bg-hover: var(--w-s-color-background-disabled);
|
|
3723
|
+
--w-c-button-bg-active: var(--w-s-color-background-disabled);
|
|
3724
|
+
|
|
3725
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
3726
|
+
|
|
3727
|
+
--w-c-button-border-width: 0px;
|
|
3728
|
+
--w-c-button-border-color: transparent;
|
|
3729
|
+
--w-c-button-border-color-hover: transparent;
|
|
3730
|
+
--w-c-button-border-color-active: transparent;
|
|
3731
|
+
|
|
3732
|
+
--w-c-button-color-hover: var(--w-s-color-text-inverted);
|
|
3733
|
+
--w-c-button-color-active: var(--w-s-color-text-inverted);
|
|
3734
|
+
}
|
|
3735
|
+
|
|
3736
|
+
/* ===== Loading (wins over everything) ===== */
|
|
3737
|
+
:host([loading]),
|
|
3738
|
+
:host([loading][variant]),
|
|
3739
|
+
:host([loading][quiet]) {
|
|
3740
|
+
pointer-events: none;
|
|
3741
|
+
|
|
3742
|
+
/* Strong overrides so variants can't leak through */
|
|
3743
|
+
--w-c-button-bg: var(--w-s-color-background-subtle);
|
|
3744
|
+
--w-c-button-bg-hover: var(--w-s-color-background-subtle);
|
|
3745
|
+
--w-c-button-bg-active: var(--w-s-color-background-subtle);
|
|
3746
|
+
|
|
3747
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
3748
|
+
--w-c-button-color-hover: var(--w-s-color-text);
|
|
3749
|
+
--w-c-button-color-active: var(--w-s-color-text);
|
|
3750
|
+
|
|
3751
|
+
--w-c-button-border-width: 0px;
|
|
3752
|
+
--w-c-button-border-color: transparent;
|
|
3753
|
+
--w-c-button-border-color-hover: transparent;
|
|
3754
|
+
--w-c-button-border-color-active: transparent;
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
/* Loading stripes (native button mode only) */
|
|
3758
|
+
:host([loading]) button[part="base"] {
|
|
3759
|
+
background-image: linear-gradient(
|
|
3760
|
+
135deg,
|
|
3761
|
+
rgba(0, 0, 0, 0.05) 25%,
|
|
3762
|
+
transparent 25%,
|
|
3763
|
+
transparent 50%,
|
|
3764
|
+
rgba(0, 0, 0, 0.05) 50%,
|
|
3765
|
+
rgba(0, 0, 0, 0.05) 75%,
|
|
3766
|
+
transparent 75%,
|
|
3767
|
+
transparent
|
|
3768
|
+
);
|
|
3769
|
+
background-size: 30px 30px;
|
|
3770
|
+
animation: animate-inprogress 3s linear infinite;
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3773
|
+
@media (prefers-reduced-motion: reduce) {
|
|
3774
|
+
:host([loading]) button[part="base"] {
|
|
3775
|
+
animation: none;
|
|
3776
|
+
}
|
|
3777
|
+
}
|
|
3778
|
+
|
|
3779
|
+
@keyframes animate-inprogress {
|
|
3780
|
+
0% {
|
|
3781
|
+
background-position: 0 0;
|
|
3782
|
+
}
|
|
3783
|
+
100% {
|
|
3784
|
+
background-position: 60px 0;
|
|
3785
|
+
}
|
|
3786
|
+
}
|
|
3756
3787
|
`;var Rr=Go`
|
|
3757
|
-
|
|
3788
|
+
${ht}
|
|
3758
3789
|
|
|
3759
|
-
|
|
3790
|
+
/* ============================================================
|
|
3760
3791
|
* Link element (anchor with button styling)
|
|
3761
3792
|
* ============================================================ */
|
|
3762
3793
|
a[part='base'] {
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3794
|
+
display: inline-flex;
|
|
3795
|
+
justify-content: center;
|
|
3796
|
+
align-items: center;
|
|
3797
|
+
text-align: center;
|
|
3767
3798
|
|
|
3768
|
-
|
|
3769
|
-
|
|
3799
|
+
cursor: pointer;
|
|
3800
|
+
text-decoration: none;
|
|
3770
3801
|
|
|
3771
|
-
|
|
3772
|
-
|
|
3802
|
+
background-color: var(--_bg);
|
|
3803
|
+
color: var(--_color);
|
|
3773
3804
|
|
|
3774
|
-
|
|
3775
|
-
|
|
3805
|
+
border: var(--_border-width) solid var(--_border-color);
|
|
3806
|
+
border-radius: var(--_radius);
|
|
3776
3807
|
|
|
3777
|
-
|
|
3778
|
-
|
|
3808
|
+
padding: calc(var(--_pad-y) - var(--_border-width))
|
|
3809
|
+
calc(var(--_pad-x) - var(--_border-width));
|
|
3779
3810
|
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3811
|
+
font-size: var(--_font-size);
|
|
3812
|
+
line-height: var(--_line-height);
|
|
3813
|
+
font-weight: var(--_font-weight);
|
|
3783
3814
|
|
|
3784
|
-
|
|
3785
|
-
|
|
3815
|
+
transition: var(--_transition);
|
|
3816
|
+
}
|
|
3786
3817
|
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3790
|
-
|
|
3791
|
-
|
|
3818
|
+
:host(:not([disabled])) a[part="base"]:hover {
|
|
3819
|
+
background-color: var(--_bg-hover);
|
|
3820
|
+
border-color: var(--_border-color-hover);
|
|
3821
|
+
color: var(--_color-hover);
|
|
3822
|
+
}
|
|
3792
3823
|
|
|
3793
|
-
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3824
|
+
:host(:not([disabled])) a[part="base"]:active {
|
|
3825
|
+
background-color: var(--_bg-active);
|
|
3826
|
+
border-color: var(--_border-color-active);
|
|
3827
|
+
color: var(--_color-active);
|
|
3828
|
+
}
|
|
3798
3829
|
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
|
|
3802
|
-
|
|
3830
|
+
:host(:focus-visible) a[part="base"] {
|
|
3831
|
+
outline: var(--_outline-width) solid var(--_outline-color);
|
|
3832
|
+
outline-offset: var(--_outline-offset);
|
|
3833
|
+
}
|
|
3803
3834
|
|
|
3804
|
-
|
|
3805
|
-
|
|
3835
|
+
/* ===== Variants (shared from button) ===== */
|
|
3836
|
+
${ft}
|
|
3806
3837
|
|
|
3807
|
-
|
|
3838
|
+
/* Link-specific: link variant element styles */
|
|
3808
3839
|
:host([variant='link']) a[part='base'] {
|
|
3809
|
-
|
|
3810
|
-
|
|
3811
|
-
|
|
3840
|
+
display: inline;
|
|
3841
|
+
padding: 0;
|
|
3842
|
+
}
|
|
3812
3843
|
|
|
3813
|
-
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
|
|
3844
|
+
:host([variant="link"]:not([disabled])) a[part="base"]:hover {
|
|
3845
|
+
text-decoration: underline;
|
|
3846
|
+
background-color: transparent;
|
|
3847
|
+
border-color: transparent;
|
|
3848
|
+
}
|
|
3818
3849
|
|
|
3819
|
-
|
|
3820
|
-
|
|
3850
|
+
/* ===== Sizes (shared from button) ===== */
|
|
3851
|
+
${vt}
|
|
3821
3852
|
|
|
3822
|
-
|
|
3853
|
+
/* ===== Layout ===== */
|
|
3823
3854
|
:host([full-width]) {
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3855
|
+
display: block;
|
|
3856
|
+
width: 100%;
|
|
3857
|
+
}
|
|
3827
3858
|
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3859
|
+
:host([full-width]) a[part="base"] {
|
|
3860
|
+
width: 100%;
|
|
3861
|
+
}
|
|
3831
3862
|
|
|
3832
|
-
|
|
3833
|
-
|
|
3863
|
+
/* ===== Disabled (shared from button) ===== */
|
|
3864
|
+
${wt}
|
|
3834
3865
|
`;var Pr=["primary","secondary","negative","negativeQuiet","utility","utilityQuiet","quiet","link","overlay","overlayInverted","overlayQuiet","overlayInvertedQuiet"],Y=class extends Mr{constructor(){super(...arguments);this.autofocus=!1;this.small=!1;this.disabled=!1;this.fullWidth=!1}connectedCallback(){if(super.connectedCallback(),this.variant&&!Pr.includes(this.variant))throw new Error(`Invalid "variant" attribute. Set its value to one of the following:
|
|
3835
3866
|
${Pr.join(", ")}.`)}firstUpdated(){this.autofocus&&setTimeout(()=>this.focus(),0)}render(){return Jo`
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3840
|
-
|
|
3841
|
-
|
|
3842
|
-
|
|
3843
|
-
|
|
3844
|
-
|
|
3845
|
-
|
|
3846
|
-
${Ir.join(", ")}.`);St(this,Ce,this.value)}closestWithId(r){let o=this.shadowRoot,n
|
|
3847
|
-
|
|
3848
|
-
|
|
3849
|
-
|
|
3850
|
-
|
|
3851
|
-
|
|
3852
|
-
|
|
3853
|
-
|
|
3854
|
-
|
|
3855
|
-
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
|
|
3865
|
-
|
|
3866
|
-
|
|
3867
|
-
|
|
3868
|
-
|
|
3869
|
-
|
|
3870
|
-
|
|
3871
|
-
|
|
3872
|
-
|
|
3873
|
-
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3867
|
+
<a
|
|
3868
|
+
href="${this.href}"
|
|
3869
|
+
part="base"
|
|
3870
|
+
target="${this.target}"
|
|
3871
|
+
rel="${this.target==="_blank"?this.rel||"noopener":Ko}"
|
|
3872
|
+
tabindex="0"
|
|
3873
|
+
>
|
|
3874
|
+
<slot></slot>
|
|
3875
|
+
</a>
|
|
3876
|
+
`}};Y.shadowRootOptions={...Mr.shadowRootOptions,delegatesFocus:!0},Y.styles=[he,Rr],v([ae({type:Boolean,reflect:!0})],Y.prototype,"autofocus",2),v([ae({reflect:!0})],Y.prototype,"variant",2),v([ae({type:Boolean,reflect:!0})],Y.prototype,"small",2),v([ae({reflect:!0})],Y.prototype,"href",2),v([ae({type:Boolean,reflect:!0})],Y.prototype,"disabled",2),v([ae({reflect:!0})],Y.prototype,"target",2),v([ae({reflect:!0})],Y.prototype,"rel",2),v([ae({attribute:"full-width",type:Boolean,reflect:!0})],Y.prototype,"fullWidth",2);customElements.get("w-link")||customElements.define("w-link",Y);import{ifDefined as xt}from"lit/directives/if-defined.js";var $r=JSON.parse('{"button.aria.loading":["Indl\xE6ser..."]}');var Fr=JSON.parse('{"button.aria.loading":["Loading..."]}');var jr=JSON.parse('{"button.aria.loading":["Ladataan..."]}');var Vr=JSON.parse('{"button.aria.loading":["Laster..."]}');var Nr=JSON.parse('{"button.aria.loading":["Laddar ..."]}');var Ir=["primary","secondary","negative","negativeQuiet","utility","pill","link","quiet","utilityQuiet","overlay","overlayInverted","overlayQuiet","overlayInvertedQuiet"],Ce,S=class extends Ar(Br){constructor(){super();this.autofocus=!1;this.quiet=!1;this.iconOnly=!1;this.small=!1;this.loading=!1;this.disabled=!1;this.fullWidth=!1;Ct(this,Ce);et(Fr,Vr,jr,$r,Nr),this.ariaValueTextLoading=L.t({id:"button.aria.loading",message:"Loading...",comment:"Screen reader message for buttons that are loading"})}updated(r){r.has("value")&&this.setValue(this.value)}connectedCallback(){super.connectedCallback();let r=this.variant||"secondary";if(!Ir.includes(r))throw new Error(`Invalid "variant" attribute. Set its value to one of the following:
|
|
3877
|
+
${Ir.join(", ")}.`);St(this,Ce,this.value)}closestWithId(r){let o=this.shadowRoot,n;try{for(;o;){if(n=o.getElementById(r),n)return n;o=o.getRootNode().host?.getRootNode()}}catch{}return document.getElementById(r)}firstUpdated(){this.autofocus&&!this.href&&setTimeout(()=>this.focus(),0),this.buttonEl&&this.commandfor&&(this.buttonEl.commandForElement=this.closestWithId(this.commandfor))}_handleButtonClick(){this.type==="submit"?this.internals.form.requestSubmit():this.type==="reset"&&this.internals.form.reset()}resetFormControl(){this.value=Et(this,Ce)}render(){let r=this.variant||"secondary";return tt` ${this.href?tt`
|
|
3878
|
+
<w-link
|
|
3879
|
+
href=${this.href}
|
|
3880
|
+
target=${this.target}
|
|
3881
|
+
variant=${this.quiet?"quiet":r}
|
|
3882
|
+
?small=${this.small}
|
|
3883
|
+
?loading=${this.loading}
|
|
3884
|
+
?autofocus=${this.autofocus}
|
|
3885
|
+
?full-width=${this.fullWidth}
|
|
3886
|
+
class=${this.buttonClass}
|
|
3887
|
+
rel=${this.target==="_blank"?this.rel||"noopener":void 0}
|
|
3888
|
+
>
|
|
3889
|
+
<slot></slot>
|
|
3890
|
+
</w-link>
|
|
3891
|
+
`:tt`
|
|
3892
|
+
<button
|
|
3893
|
+
type=${this.type||"button"}
|
|
3894
|
+
part="base"
|
|
3895
|
+
class=${xt(this.buttonClass)}
|
|
3896
|
+
@click="${this._handleButtonClick}"
|
|
3897
|
+
commandfor=${xt(this.commandfor)}
|
|
3898
|
+
command=${xt(this.command)}
|
|
3899
|
+
>
|
|
3900
|
+
<slot></slot>
|
|
3901
|
+
</button>
|
|
3902
|
+
`}
|
|
3903
|
+
${this.loading?tt`<span
|
|
3904
|
+
class="sr-only"
|
|
3905
|
+
role="progressbar"
|
|
3906
|
+
aria-valuenow="{0}"
|
|
3907
|
+
aria-valuetext=${this.ariaValueTextLoading}
|
|
3908
|
+
></span>`:Wo}`}};Ce=new WeakMap,S.styles=[he,Or],S.shadowRootOptions={...Br.shadowRootOptions,delegatesFocus:!0},v([$({reflect:!0})],S.prototype,"type",2),v([$({type:Boolean,reflect:!0})],S.prototype,"autofocus",2),v([$({reflect:!0})],S.prototype,"variant",2),v([$({type:Boolean,reflect:!0})],S.prototype,"quiet",2),v([$({type:Boolean,reflect:!0,attribute:"icon-only"})],S.prototype,"iconOnly",2),v([$({type:Boolean,reflect:!0})],S.prototype,"small",2),v([$({type:Boolean,reflect:!0})],S.prototype,"loading",2),v([$({reflect:!0})],S.prototype,"href",2),v([$({reflect:!0})],S.prototype,"target",2),v([$({type:Boolean,reflect:!0})],S.prototype,"disabled",2),v([$({reflect:!0})],S.prototype,"rel",2),v([$({attribute:"full-width",type:Boolean,reflect:!0})],S.prototype,"fullWidth",2),v([$({attribute:"button-class",reflect:!0})],S.prototype,"buttonClass",2),v([$({reflect:!0})],S.prototype,"name",2),v([$({reflect:!0})],S.prototype,"value",2),v([$()],S.prototype,"commandfor",2),v([$()],S.prototype,"command",2),v([en("button")],S.prototype,"buttonEl",2);customElements.get("w-button")||customElements.define("w-button",S);var nn={primary:"s-text-inverted bg-[--w-color-button-primary-background] hover:bg-[--w-color-button-primary-background-hover] active:bg-[--w-color-button-primary-background-active]",secondary:"s-text-link s-border s-bg hover:s-bg-hover hover:s-border-hover active:s-bg-active",utility:"s-text s-bg hover:s-bg-hover active:s-bg-active s-border hover:s-border-hover active:s-border-active",destructive:"s-bg-negative s-text-inverted hover:s-bg-negative-hover active:s-bg-negative-active",pill:"s-icon hover:s-icon-hover active:s-icon-active bg-transparent hover:bg-[--w-color-button-pill-background-hover] active:bg-[--w-color-button-pill-background-active]",disabled:"s-text-inverted s-bg-disabled",quiet:"bg-transparent s-text-link hover:s-bg-hover active:s-bg-active",utilityQuiet:"s-text bg-transparent hover:s-bg-hover active:s-bg-active",negativeQuiet:"bg-transparent s-text-negative hover:s-bg-negative-subtle-hover active:s-bg-negative-subtle-active",loading:"s-text s-bg-subtle",link:"s-text-link"},Se="font-bold focusable justify-center transition-colors ease-in-out",Ki={primary:`border-0 rounded-8 ${Se}`,secondary:`border-2 rounded-8 ${Se}`,utility:`border rounded-4 ${Se}`,negative:`border-0 rounded-8 ${Se}`,pill:`p-4 rounded-full border-0 inline-flex items-center justify-center hover:bg-clip-padding ${Se}`,link:`bg-transparent focusable ease-in-out inline active:underline hover:underline focus:underline ${nn.link}`},z={base:"border-2 relative flex items-center",tooltip:"s-bg-inverted border-[--w-s-color-background-inverted] shadow-m s-text-inverted rounded-4 py-6 px-8",callout:"bg-[--w-color-callout-background] border-[--w-color-callout-border] s-text py-8 px-16 rounded-8",highlight:"bg-[--w-color-callout-background] border-[--w-color-callout-border] s-text py-8 px-16 rounded-8 drop-shadow-m translate-z-0",popover:"bg-[--w-s-color-surface-elevated-300] border-[--w-s-color-surface-elevated-300] s-text rounded-8 p-16 drop-shadow-m translate-z-0",arrowBase:"absolute h-[14px] w-[14px] border-2 border-b-0 border-r-0 rounded-tl-4 transform",arrowDirectionLeftStart:"-left-[8px]",arrowDirectionLeft:"-left-[8px]",arrowDirectionLeftEnd:"-left-[8px]",arrowDirectionRightStart:"-right-[8px]",arrowDirectionRight:"-right-[8px]",arrowDirectionRightEnd:"-right-[8px]",arrowDirectionBottomStart:"-bottom-[8px]",arrowDirectionBottom:"-bottom-[8px]",arrowDirectionBottomEnd:"-bottom-[8px]",arrowDirectionTopStart:"-top-[8px]",arrowDirectionTop:"-top-[8px]",arrowDirectionTopEnd:"-top-[8px]",arrowTooltip:"s-bg-inverted border-[--w-s-color-background-inverted]",arrowCallout:"bg-[--w-color-callout-background] border-[--w-color-callout-border]",arrowPopover:"bg-[--w-s-color-surface-elevated-300] border-[--w-s-color-surface-elevated-300]",arrowHighlight:"bg-[--w-color-callout-background] border-[--w-color-callout-border]",content:"last-child:mb-0",notCallout:"absolute z-50"},an={"top-start":z.arrowDirectionTopStart,top:z.arrowDirectionTop,"top-end":z.arrowDirectionTopEnd,"right-start":z.arrowDirectionRightStart,right:z.arrowDirectionRight,"right-end":z.arrowDirectionRightEnd,"bottom-start":z.arrowDirectionBottomStart,bottom:z.arrowDirectionBottom,"bottom-end":z.arrowDirectionBottomEnd,"left-start":z.arrowDirectionLeftStart,left:z.arrowDirectionLeft,"left-end":z.arrowDirectionLeftEnd},F=class extends rn{constructor(){super();this.show=!1;this.tooltip=!1;this.callout=!1;this.highlight=!1;this.canClose=!1;this.noArrow=!1;this.flip=!1;this.crossAxis=!1;this.fallbackPlacements=[];this.attentionState=null;et(Cr,Dr,Sr,Er,Tr),this.handleDone=this.handleDone.bind(this),this.show=!1,this.placement="bottom",this.tooltip=!1,this.callout=!1,this.popover=!1,this.highlight=!1,this.canClose=!1,this.noArrow=!1,this.distance=8,this.skidding=0,this.flip=!1,this.crossAxis=!1,this._initialPlacement=this.placement,this._actualDirection=this.placement}connectedCallback(){if(super.connectedCallback(),this.placement&&!Object.keys(pe).includes(this.placement))throw new Error(`Invalid "placement" attribute. Set its value to one of the following:
|
|
3878
3909
|
${JSON.stringify(Object.keys(pe))}`);if(this.fallbackPlacements&&!this.fallbackPlacements.every(r=>ut.includes(r)))throw new Error(`Invalid "fallbackPlacements" attribute. Set its value to an array with one or more of the following:
|
|
3879
3910
|
${JSON.stringify(ut)}`);setTimeout(()=>{this.requestUpdate(),this.handleDone()},0),this.callout||(window.addEventListener("click",this.handleDone),window.addEventListener("scroll",this.handleDone),window.addEventListener("resize",this.handleDone),window.addEventListener("touch",this.handleDone)),this.tooltip&&(window.addEventListener("mouseover",this.handleDone),window.addEventListener("mouseout",this.handleDone))}disconnectedCallback(){window.removeEventListener("click",this.handleDone),window.removeEventListener("scroll",this.handleDone),window.removeEventListener("resize",this.handleDone),window.removeEventListener("touch",this.handleDone),window.removeEventListener("mouseover",this.handleDone),window.removeEventListener("mouseout",this.handleDone),super.disconnectedCallback()}handleDone(){window.requestAnimationFrame(()=>{this.show&&this._targetEl&&this._attentionEl&&this.attentionState?gt(this.attentionState).then(r=>{this._actualDirection=r?.actualDirection}):this._actualDirection=this._initialPlacement})}get _actualDirection(){return this.placement}set _actualDirection(r){this.placement=r}get _arrowEl(){return this.renderRoot.querySelector("#arrow")}get _arrowDirection(){return pe[this._actualDirection]}get _arrowClasses(){let r=an[this._arrowDirection];return De([z.arrowBase,this._activeVariantClasses.arrow,r])}get _arrowHtml(){return this.noArrow?yt:fe`<div id="arrow" class="${this._arrowClasses}"></div>`}get _activeVariantClasses(){return this.callout?{wrapper:z.callout,arrow:z.arrowCallout}:this.popover?{wrapper:z.popover,arrow:z.arrowPopover}:this.tooltip?{wrapper:z.tooltip,arrow:z.arrowTooltip}:this.highlight?{wrapper:z.highlight,arrow:z.arrowHighlight}:{wrapper:"",arrow:""}}get _attentionEl(){return this.renderRoot.querySelector("#attention")}get _targetEl(){let o=this.renderRoot?.querySelector("slot[name='target']")?.assignedElements()[0];return o instanceof HTMLElement?o:null}get _messageEl(){let o=this.renderRoot.querySelector("slot[name='message']")?.assignedElements()[0];return o instanceof HTMLElement?o:null}get _wrapperClasses(){return De([z.base,this._activeVariantClasses.wrapper])}get _ariaClose(){return L._({id:"attention.aria.close",message:"Close",comment:"Aria label for the close button in attention"})}get _closeBtnHtml(){return fe`
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
3895
|
-
|
|
3896
|
-
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
|
|
3900
|
-
|
|
3901
|
-
|
|
3902
|
-
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3906
|
-
|
|
3907
|
-
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
|
|
3912
|
-
|
|
3913
|
-
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
|
-
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
|
|
3911
|
+
<w-button
|
|
3912
|
+
aria-label="${this._ariaClose}"
|
|
3913
|
+
@click=${this.close}
|
|
3914
|
+
@keydown=${this.keypressed}
|
|
3915
|
+
variant="pill"
|
|
3916
|
+
small=""
|
|
3917
|
+
class="ml-8"
|
|
3918
|
+
>
|
|
3919
|
+
<w-icon
|
|
3920
|
+
name="Close"
|
|
3921
|
+
size="small"
|
|
3922
|
+
locale="${We()}"
|
|
3923
|
+
class="flex"
|
|
3924
|
+
></w-icon>
|
|
3925
|
+
</w-button>
|
|
3926
|
+
`}updated(){this._attentionEl&&(this.callout||this._attentionEl.style.setProperty("--attention-visibility",this.show?"":"hidden"),this.tooltip||this._attentionEl.style.setProperty("--attention-display",this.show?"flex":"none"),this.attentionState={isShowing:this.show,isCallout:this.callout,actualDirection:this._actualDirection,directionName:this.placement,arrowEl:this._arrowEl,attentionEl:this._attentionEl,targetEl:this._targetEl,noArrow:this.noArrow,distance:this.distance,skidding:this.skidding,flip:this.flip,crossAxis:this.crossAxis,fallbackPlacements:this.fallbackPlacements},gt(this.attentionState))}pointingAtDirection(){switch(pe[this._actualDirection]){case"top-start":case"top":case"top-end":return L._({id:"attention.aria.pointingUp",message:"pointing up",comment:"Default screenreader message for top direction in the attention component"});case"right-start":case"right":case"right-end":return L._({id:"attention.aria.pointingRight",message:"pointing right",comment:"Default screenreader message for right direction in the attention component"});case"bottom-start":case"bottom":case"bottom-end":return L._({id:"attention.aria.pointingDown",message:"pointing down",comment:"Default screenreader message for bottom direction in the attention component"});case"left-start":case"left":case"left-end":return L._({id:"attention.aria.pointingLeft",message:"pointing left",comment:"Default screenreader message for left direction in the attention component"});default:return""}}activeAttentionType(){switch(!0){case this.tooltip:return L._({id:"attention.aria.tooltip",message:"tooltip",comment:"Default screenreader message for tooltip in the attention component"});case this.callout:return L._({id:"attention.aria.callout",message:"callout speech bubble",comment:"Default screenreader message for callout speech bubble in the attention component"});case this.popover:return L._({id:"attention.aria.popover",message:"popover speech bubble",comment:"Default screenreader message for popover speech bubble in the attention component"});case this.highlight:return L._({id:"attention.aria.highlight",message:"highlighted speech bubble",comment:"Default screenreader message for highlighted speech bubble in the attention component"});default:return""}}defaultAriaLabel(){return`${this.activeAttentionType()} ${this.noArrow?"":this.pointingAtDirection()}`}firstUpdated(){this._initialPlacement=this.placement,this.callout&&this._attentionEl&&(this._attentionEl.style.position="relative")}close(){let r=new CustomEvent("close",{bubbles:!0,composed:!0});this.updateComplete.then(()=>this.dispatchEvent(r))}keypressed(r){this.canClose&&r.key==="Escape"&&(r.preventDefault(),this.close())}render(){return!this.callout&&this._targetEl===void 0?fe``:fe`
|
|
3927
|
+
<section class=${on(this.className?this.className:void 0)}>
|
|
3928
|
+
${this.placement==="right-start"||this.placement==="right"||this.placement==="right-end"||this.placement==="bottom-start"||this.placement==="bottom"||this.placement==="bottom-end"?fe`
|
|
3929
|
+
<slot name="target"></slot>
|
|
3930
|
+
|
|
3931
|
+
<div id="attention" class="${this._wrapperClasses}">
|
|
3932
|
+
<div
|
|
3933
|
+
role="${this.tooltip?"tooltip":"img"}"
|
|
3934
|
+
aria-label="${this.defaultAriaLabel()}"
|
|
3935
|
+
>
|
|
3936
|
+
${this._arrowHtml}
|
|
3937
|
+
</div>
|
|
3938
|
+
<slot name="message"></slot>
|
|
3939
|
+
${this.canClose?this._closeBtnHtml:yt}
|
|
3940
|
+
</div>
|
|
3941
|
+
`:fe`
|
|
3942
|
+
<div id="attention" class="${this._wrapperClasses}">
|
|
3943
|
+
<slot name="message"></slot>
|
|
3944
|
+
<div
|
|
3945
|
+
role="${this.tooltip?"tooltip":"img"}"
|
|
3946
|
+
aria-label="${this.defaultAriaLabel()}"
|
|
3947
|
+
>
|
|
3948
|
+
${this._arrowHtml}
|
|
3949
|
+
</div>
|
|
3950
|
+
${this.canClose?this._closeBtnHtml:yt}
|
|
3951
|
+
</div>
|
|
3952
|
+
<slot name="target"></slot>
|
|
3953
|
+
`}
|
|
3954
|
+
</section>
|
|
3955
|
+
`}};F.styles=[he,_r,zr,tn`
|
|
3956
|
+
#attention {
|
|
3957
|
+
position: absolute;
|
|
3958
|
+
z-index: 50;
|
|
3959
|
+
visibility: var(--attention-visibility);
|
|
3960
|
+
display: var(--attention-display);
|
|
3961
|
+
}
|
|
3962
|
+
:host([popover]:not(:popover-open):not(dialog[open])) {
|
|
3963
|
+
display: contents;
|
|
3964
|
+
}
|
|
3965
|
+
`],v([X({type:Boolean,reflect:!0})],F.prototype,"show",2),v([X({type:String,reflect:!1})],F.prototype,"placement",2),v([X({type:Boolean,reflect:!0})],F.prototype,"tooltip",2),v([X({type:Boolean,reflect:!0})],F.prototype,"callout",2),v([X({type:Boolean,reflect:!0})],F.prototype,"popover",2),v([X({type:Boolean,reflect:!0})],F.prototype,"highlight",2),v([X({attribute:"can-close",type:Boolean,reflect:!0})],F.prototype,"canClose",2),v([X({attribute:"no-arrow",type:Boolean,reflect:!0})],F.prototype,"noArrow",2),v([X({type:Number})],F.prototype,"distance",2),v([X({type:Number})],F.prototype,"skidding",2),v([X({type:Boolean,reflect:!0})],F.prototype,"flip",2),v([X({attribute:"cross-axis",type:Boolean,reflect:!0})],F.prototype,"crossAxis",2),v([X({attribute:"fallback-placements",type:Array,reflect:!0,useDefault:!0})],F.prototype,"fallbackPlacements",2);customElements.get("w-attention")||customElements.define("w-attention",F);export{F as WarpAttention};
|
|
3924
3966
|
//# sourceMappingURL=attention.js.map
|