@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
|
@@ -1,276 +1,276 @@
|
|
|
1
1
|
var f=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var e=(c,a,d,n)=>{for(var t=n>1?void 0:n?x(a,d):a,l=c.length-1,s;l>=0;l--)(s=c[l])&&(t=(n?s(a,d,t):s(t))||t);return n&&t&&f(a,d,t),t};import{html as _,LitElement as h,nothing as Y}from"lit";import{property as o}from"lit/decorators.js";import{css as k}from"lit";import{unsafeCSS as y}from"lit";var g=k`
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
-
|
|
2
|
+
*,
|
|
3
|
+
:before,
|
|
4
|
+
:after {
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
border-style: solid;
|
|
7
|
+
border-width: 0;
|
|
8
|
+
border-color: var(--w-s-color-border);
|
|
9
|
+
}
|
|
10
|
+
html {
|
|
11
|
+
font-size: 62.5%;
|
|
12
|
+
}
|
|
13
|
+
body {
|
|
14
|
+
background-color: var(--w-s-color-background);
|
|
15
|
+
min-height: 100%;
|
|
16
|
+
margin: 0;
|
|
17
|
+
overflow-y: scroll;
|
|
18
|
+
}
|
|
19
|
+
body,
|
|
20
|
+
:host {
|
|
21
|
+
-webkit-text-size-adjust: 100%;
|
|
22
|
+
tab-size: 4;
|
|
23
|
+
-webkit-tap-highlight-color: transparent;
|
|
24
|
+
font-family: var(--w-font-family);
|
|
25
|
+
font-size: var(--w-font-size-m);
|
|
26
|
+
line-height: var(--w-line-height-m);
|
|
27
|
+
color: var(--w-s-color-text);
|
|
28
|
+
}
|
|
29
|
+
hr {
|
|
30
|
+
color: inherit;
|
|
31
|
+
border-top-width: 1px;
|
|
32
|
+
height: 0;
|
|
33
|
+
}
|
|
34
|
+
abbr:where([title]) {
|
|
35
|
+
-webkit-text-decoration: underline dotted;
|
|
36
|
+
text-decoration: underline dotted;
|
|
37
|
+
}
|
|
38
|
+
h1,
|
|
39
|
+
h2,
|
|
40
|
+
h3,
|
|
41
|
+
h4,
|
|
42
|
+
h5,
|
|
43
|
+
h6 {
|
|
44
|
+
font-size: inherit;
|
|
45
|
+
font-weight: 700;
|
|
46
|
+
}
|
|
47
|
+
a {
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
color: var(--w-s-color-text-link);
|
|
50
|
+
text-decoration: none;
|
|
51
|
+
}
|
|
52
|
+
a:hover,
|
|
53
|
+
a:focus,
|
|
54
|
+
a:active {
|
|
55
|
+
text-decoration: underline;
|
|
56
|
+
}
|
|
57
|
+
a:focus-visible {
|
|
58
|
+
outline: 2px solid var(--w-s-color-border-focus);
|
|
59
|
+
outline-offset: 1px;
|
|
60
|
+
}
|
|
61
|
+
b,
|
|
62
|
+
strong {
|
|
63
|
+
font-weight: 700;
|
|
64
|
+
}
|
|
65
|
+
code,
|
|
66
|
+
kbd,
|
|
67
|
+
samp,
|
|
68
|
+
pre {
|
|
69
|
+
font-family:
|
|
70
|
+
ui-monospace,
|
|
71
|
+
SFMono-Regular,
|
|
72
|
+
Menlo,
|
|
73
|
+
Monaco,
|
|
74
|
+
Consolas,
|
|
75
|
+
Liberation Mono,
|
|
76
|
+
Courier New,
|
|
77
|
+
monospace;
|
|
78
|
+
font-size: 1em;
|
|
79
|
+
}
|
|
80
|
+
sub,
|
|
81
|
+
sup {
|
|
82
|
+
vertical-align: baseline;
|
|
83
|
+
font-size: 75%;
|
|
84
|
+
line-height: 0;
|
|
85
|
+
position: relative;
|
|
86
|
+
}
|
|
87
|
+
sub {
|
|
88
|
+
bottom: -0.25em;
|
|
89
|
+
}
|
|
90
|
+
sup {
|
|
91
|
+
top: -0.5em;
|
|
92
|
+
}
|
|
93
|
+
table {
|
|
94
|
+
text-indent: 0;
|
|
95
|
+
border-color: inherit;
|
|
96
|
+
border-collapse: collapse;
|
|
97
|
+
}
|
|
98
|
+
button,
|
|
99
|
+
input,
|
|
100
|
+
optgroup,
|
|
101
|
+
select,
|
|
102
|
+
textarea {
|
|
103
|
+
font-family: inherit;
|
|
104
|
+
font-size: 100%;
|
|
105
|
+
font-weight: inherit;
|
|
106
|
+
line-height: inherit;
|
|
107
|
+
color: inherit;
|
|
108
|
+
margin: 0;
|
|
109
|
+
padding: 0;
|
|
110
|
+
}
|
|
111
|
+
button,
|
|
112
|
+
select {
|
|
113
|
+
text-transform: none;
|
|
114
|
+
}
|
|
115
|
+
button,
|
|
116
|
+
[type="button"],
|
|
117
|
+
[type="reset"],
|
|
118
|
+
[type="submit"] {
|
|
119
|
+
-webkit-appearance: button;
|
|
120
|
+
}
|
|
121
|
+
:-moz-focusring {
|
|
122
|
+
outline: auto;
|
|
123
|
+
}
|
|
124
|
+
:-moz-ui-invalid {
|
|
125
|
+
box-shadow: none;
|
|
126
|
+
}
|
|
127
|
+
progress {
|
|
128
|
+
vertical-align: baseline;
|
|
129
|
+
}
|
|
130
|
+
::-webkit-inner-spin-button {
|
|
131
|
+
height: auto;
|
|
132
|
+
}
|
|
133
|
+
::-webkit-outer-spin-button {
|
|
134
|
+
height: auto;
|
|
135
|
+
}
|
|
136
|
+
[type="search"] {
|
|
137
|
+
-webkit-appearance: textfield;
|
|
138
|
+
outline-offset: -2px;
|
|
139
|
+
}
|
|
140
|
+
::-webkit-search-decoration {
|
|
141
|
+
-webkit-appearance: none;
|
|
142
|
+
}
|
|
143
|
+
::-webkit-file-upload-button {
|
|
144
|
+
-webkit-appearance: button;
|
|
145
|
+
font: inherit;
|
|
146
|
+
}
|
|
147
|
+
summary {
|
|
148
|
+
display: list-item;
|
|
149
|
+
}
|
|
150
|
+
blockquote,
|
|
151
|
+
dl,
|
|
152
|
+
dd,
|
|
153
|
+
h1,
|
|
154
|
+
h2,
|
|
155
|
+
h3,
|
|
156
|
+
h4,
|
|
157
|
+
h5,
|
|
158
|
+
h6,
|
|
159
|
+
hr,
|
|
160
|
+
figure,
|
|
161
|
+
p,
|
|
162
|
+
pre {
|
|
163
|
+
margin: 0;
|
|
164
|
+
}
|
|
165
|
+
fieldset {
|
|
166
|
+
margin: 0;
|
|
167
|
+
padding: 0;
|
|
168
|
+
}
|
|
169
|
+
legend {
|
|
170
|
+
padding: 0;
|
|
171
|
+
}
|
|
172
|
+
ol,
|
|
173
|
+
ul,
|
|
174
|
+
menu {
|
|
175
|
+
margin: 0;
|
|
176
|
+
padding: 0;
|
|
177
|
+
list-style: none;
|
|
178
|
+
}
|
|
179
|
+
textarea {
|
|
180
|
+
resize: vertical;
|
|
181
|
+
}
|
|
182
|
+
input::placeholder,
|
|
183
|
+
textarea::placeholder {
|
|
184
|
+
opacity: 1;
|
|
185
|
+
color: var(--w-s-color-text-placeholder);
|
|
186
|
+
}
|
|
187
|
+
button,
|
|
188
|
+
[role="button"] {
|
|
189
|
+
cursor: pointer;
|
|
190
|
+
}
|
|
191
|
+
:disabled {
|
|
192
|
+
cursor: default;
|
|
193
|
+
}
|
|
194
|
+
img,
|
|
195
|
+
svg,
|
|
196
|
+
video,
|
|
197
|
+
canvas,
|
|
198
|
+
audio,
|
|
199
|
+
iframe,
|
|
200
|
+
embed,
|
|
201
|
+
object {
|
|
202
|
+
vertical-align: middle;
|
|
203
|
+
display: block;
|
|
204
|
+
}
|
|
205
|
+
img,
|
|
206
|
+
video {
|
|
207
|
+
max-width: 100%;
|
|
208
|
+
height: auto;
|
|
209
|
+
}
|
|
210
|
+
h1 {
|
|
211
|
+
font-size: var(--w-font-size-xxl);
|
|
212
|
+
line-height: var(--w-line-height-xxl);
|
|
213
|
+
}
|
|
214
|
+
h2 {
|
|
215
|
+
font-size: var(--w-font-size-xl);
|
|
216
|
+
line-height: var(--w-line-height-xl);
|
|
217
|
+
}
|
|
218
|
+
h3 {
|
|
219
|
+
font-size: var(--w-font-size-l);
|
|
220
|
+
line-height: var(--w-line-height-l);
|
|
221
|
+
}
|
|
222
|
+
h4 {
|
|
223
|
+
font-size: var(--w-font-size-m);
|
|
224
|
+
line-height: var(--w-line-height-m);
|
|
225
|
+
}
|
|
226
|
+
h5 {
|
|
227
|
+
font-size: var(--w-font-size-s);
|
|
228
|
+
line-height: var(--w-line-height-s);
|
|
229
|
+
}
|
|
230
|
+
dt,
|
|
231
|
+
dd {
|
|
232
|
+
margin: 0 16px;
|
|
233
|
+
}
|
|
234
|
+
h1,
|
|
235
|
+
h2,
|
|
236
|
+
h3,
|
|
237
|
+
h4,
|
|
238
|
+
h5,
|
|
239
|
+
ul,
|
|
240
|
+
ol,
|
|
241
|
+
dl,
|
|
242
|
+
p,
|
|
243
|
+
blockquote {
|
|
244
|
+
margin: 0 0 8px;
|
|
245
|
+
}
|
|
246
|
+
[hidden] {
|
|
247
|
+
display: none !important;
|
|
248
|
+
}
|
|
249
|
+
[tabindex="-1"]:focus:not(:focus-visible) {
|
|
250
|
+
outline: none;
|
|
251
|
+
}
|
|
252
|
+
legend {
|
|
253
|
+
float: left;
|
|
254
|
+
width: 100%;
|
|
255
|
+
margin: 0;
|
|
256
|
+
padding: 0;
|
|
257
|
+
display: table;
|
|
258
|
+
}
|
|
259
|
+
legend + * {
|
|
260
|
+
clear: both;
|
|
261
|
+
}
|
|
262
|
+
fieldset {
|
|
263
|
+
border: 0;
|
|
264
|
+
min-width: 0;
|
|
265
|
+
margin: 0;
|
|
266
|
+
padding: 0.01em 0 0;
|
|
267
|
+
}
|
|
268
|
+
body:not(:-moz-handler-blocked) fieldset {
|
|
269
|
+
display: table-cell;
|
|
270
|
+
}
|
|
271
|
+
svg {
|
|
272
|
+
pointer-events: none;
|
|
273
|
+
}
|
|
274
274
|
`,q=y(`*, :before, :after {
|
|
275
275
|
--w-rotate: 0;
|
|
276
276
|
--w-rotate-x: 0;
|
|
@@ -2438,308 +2438,334 @@ var f=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var e=(c,a,d,n
|
|
|
2438
2438
|
}
|
|
2439
2439
|
}
|
|
2440
2440
|
`);import{css as z}from"lit";import{css as i}from"lit";var b=i`
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2441
|
+
:host {
|
|
2442
|
+
display: inline-block;
|
|
2443
|
+
|
|
2444
|
+
/* Internal resolved vars (defaults) */
|
|
2445
|
+
--_bg: var(--w-c-button-bg, var(--w-s-color-background));
|
|
2446
|
+
--_bg-hover: var(--w-c-button-bg-hover, var(--w-s-color-background-hover));
|
|
2447
|
+
--_bg-active: var(
|
|
2448
|
+
--w-c-button-bg-active,
|
|
2449
|
+
var(--w-s-color-background-active)
|
|
2450
|
+
);
|
|
2451
|
+
|
|
2452
|
+
--_color: var(--w-c-button-color, var(--w-s-color-text-link));
|
|
2453
|
+
--_color-hover: var(--w-c-button-color-hover, var(--_color));
|
|
2454
|
+
--_color-active: var(--w-c-button-color-active, var(--_color));
|
|
2455
|
+
|
|
2456
|
+
--_border-width: var(--w-c-button-border-width, 2px);
|
|
2457
|
+
--_border-color: var(--w-c-button-border-color, var(--w-s-color-border));
|
|
2458
|
+
--_border-color-hover: var(
|
|
2459
|
+
--w-c-button-border-color-hover,
|
|
2460
|
+
var(--w-s-color-border-hover)
|
|
2461
|
+
);
|
|
2462
|
+
--_border-color-active: var(
|
|
2463
|
+
--w-c-button-border-color-active,
|
|
2464
|
+
var(--w-s-color-border-active)
|
|
2465
|
+
);
|
|
2466
|
+
|
|
2467
|
+
--_radius: var(--w-c-button-radius, var(--w-button-radius-default, 8px));
|
|
2468
|
+
|
|
2469
|
+
--_font-size: var(--w-c-button-font-size, var(--w-font-size-m));
|
|
2470
|
+
--_line-height: var(--w-c-button-line-height, var(--w-line-height-m));
|
|
2471
|
+
--_font-weight: var(--w-c-button-font-weight, 700);
|
|
2472
|
+
|
|
2473
|
+
--_pad-x: var(--w-c-button-padding-x, 16px);
|
|
2474
|
+
--_pad-y: var(--w-c-button-padding-y, 13px);
|
|
2475
|
+
|
|
2476
|
+
--_outline-width: var(--w-c-button-outline-width, 2px);
|
|
2477
|
+
--_outline-color: var(
|
|
2478
|
+
--w-c-button-outline-color,
|
|
2479
|
+
var(--w-s-color-border-focus)
|
|
2480
|
+
);
|
|
2481
|
+
--_outline-offset: var(
|
|
2482
|
+
--w-c-button-outline-offset,
|
|
2483
|
+
var(--w-outline-offset, 1px)
|
|
2484
|
+
);
|
|
2485
|
+
|
|
2486
|
+
--_transition: var(
|
|
2487
|
+
--w-c-button-transition,
|
|
2488
|
+
color 150ms cubic-bezier(0.4, 0, 0.2, 1),
|
|
2489
|
+
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
|
|
2490
|
+
border-color 150ms cubic-bezier(0.4, 0, 0.2, 1)
|
|
2491
|
+
);
|
|
2492
|
+
|
|
2493
|
+
/* Icon color for pill/icon-only variants (semantic; default dark grey icon) */
|
|
2494
|
+
--w-c-button-icon-color: var(--w-s-color-icon);
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
:host(:focus-visible) {
|
|
2498
|
+
outline: none;
|
|
2499
|
+
}
|
|
2485
2500
|
`,v=i`
|
|
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
|
-
|
|
2501
|
+
:host([variant="primary"]) {
|
|
2502
|
+
--w-c-button-bg: var(--w-s-color-background-primary);
|
|
2503
|
+
--w-c-button-bg-hover: var(--w-s-color-background-primary-hover);
|
|
2504
|
+
--w-c-button-bg-active: var(--w-s-color-background-primary-active);
|
|
2505
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
2506
|
+
--w-c-button-border-width: 0px;
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
:host([variant="negative"]) {
|
|
2510
|
+
--w-c-button-bg: var(--w-s-color-background-negative);
|
|
2511
|
+
--w-c-button-bg-hover: var(--w-s-color-background-negative-hover);
|
|
2512
|
+
--w-c-button-bg-active: var(--w-s-color-background-negative-active);
|
|
2513
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
2514
|
+
--w-c-button-border-width: 0px;
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
:host([variant="negativeQuiet"]) {
|
|
2518
|
+
--w-c-button-bg: transparent;
|
|
2519
|
+
--w-c-button-bg-hover: var(--w-s-color-background-negative-subtle-hover);
|
|
2520
|
+
--w-c-button-bg-active: var(--w-s-color-background-negative-subtle-active);
|
|
2521
|
+
--w-c-button-color: var(--w-s-color-text-negative);
|
|
2522
|
+
--w-c-button-border-width: 0px;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
:host([variant="utility"]) {
|
|
2526
|
+
--w-c-button-bg: var(--w-s-color-background);
|
|
2527
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
2528
|
+
--w-c-button-radius: var(--w-button-radius-utility, 4px);
|
|
2529
|
+
--w-c-button-border-width: 1px;
|
|
2530
|
+
}
|
|
2531
|
+
|
|
2532
|
+
:host([variant="utilityQuiet"]) {
|
|
2533
|
+
--w-c-button-bg: transparent;
|
|
2534
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
2535
|
+
--w-c-button-border-width: 0px;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
:host([variant="quiet"]) {
|
|
2539
|
+
--w-c-button-bg: transparent;
|
|
2540
|
+
--w-c-button-border-width: 0px;
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
:host([variant="overlay"]) {
|
|
2544
|
+
--w-c-button-bg: var(--w-s-color-background);
|
|
2545
|
+
--w-c-button-bg-hover: var(--w-s-color-background-hover);
|
|
2546
|
+
--w-c-button-bg-active: var(--w-s-color-background-active);
|
|
2547
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
2548
|
+
--w-c-button-radius: 9999px;
|
|
2549
|
+
--w-c-button-border-width: 0px;
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
:host([variant="overlayInverted"]) {
|
|
2553
|
+
--w-c-button-bg: var(--w-s-color-background-inverted);
|
|
2554
|
+
--w-c-button-bg-hover: var(--w-s-color-background-inverted-hover);
|
|
2555
|
+
--w-c-button-bg-active: var(--w-s-color-background-inverted-active);
|
|
2556
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
2557
|
+
--w-c-button-radius: 9999px;
|
|
2558
|
+
--w-c-button-border-width: 0px;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
:host([variant="overlayQuiet"]) {
|
|
2562
|
+
--w-c-button-bg: transparent;
|
|
2563
|
+
--w-c-button-bg-hover: var(--w-s-color-background-hover);
|
|
2564
|
+
--w-c-button-bg-active: var(--w-s-color-background-active);
|
|
2565
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
2566
|
+
--w-c-button-radius: 9999px;
|
|
2567
|
+
--w-c-button-border-width: 0px;
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
:host([variant="overlayInvertedQuiet"]) {
|
|
2571
|
+
--w-c-button-bg: transparent;
|
|
2572
|
+
--w-c-button-bg-hover: var(--w-s-color-background-inverted-hover);
|
|
2573
|
+
--w-c-button-bg-active: var(--w-s-color-background-inverted-active);
|
|
2574
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
2575
|
+
--w-c-button-radius: 9999px;
|
|
2576
|
+
--w-c-button-border-width: 0px;
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
:host([variant="link"]) {
|
|
2580
|
+
--w-c-button-bg: transparent;
|
|
2581
|
+
--w-c-button-border-width: 0px;
|
|
2582
|
+
--w-c-button-padding-x: 0px;
|
|
2583
|
+
--w-c-button-padding-y: 0px;
|
|
2584
|
+
--w-c-button-font-weight: 400;
|
|
2585
|
+
|
|
2586
|
+
--w-c-button-bg-hover: transparent;
|
|
2587
|
+
--w-c-button-bg-active: transparent;
|
|
2588
|
+
|
|
2589
|
+
--w-c-button-color: var(--w-s-color-text-link);
|
|
2590
|
+
--w-c-button-color-hover: var(
|
|
2591
|
+
--w-s-color-text-link-hover,
|
|
2592
|
+
var(--w-c-button-color)
|
|
2593
|
+
);
|
|
2594
|
+
--w-c-button-color-active: var(
|
|
2595
|
+
--w-s-color-text-link-active,
|
|
2596
|
+
var(--w-c-button-color)
|
|
2597
|
+
);
|
|
2598
|
+
}
|
|
2578
2599
|
`,p=i`
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2600
|
+
:host([small]) {
|
|
2601
|
+
--w-c-button-padding-x: 12px;
|
|
2602
|
+
--w-c-button-padding-y: 8px;
|
|
2603
|
+
--w-c-button-font-size: var(--w-font-size-xs);
|
|
2604
|
+
--w-c-button-line-height: var(--w-line-height-xs);
|
|
2605
|
+
}
|
|
2585
2606
|
`,u=i`
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2607
|
+
:host([disabled]) {
|
|
2608
|
+
pointer-events: none;
|
|
2609
|
+
cursor: default;
|
|
2589
2610
|
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2611
|
+
--w-c-button-bg: var(--w-s-color-background-disabled);
|
|
2612
|
+
--w-c-button-bg-hover: var(--w-s-color-background-disabled);
|
|
2613
|
+
--w-c-button-bg-active: var(--w-s-color-background-disabled);
|
|
2593
2614
|
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2615
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
2616
|
+
--w-c-button-border-width: 0px;
|
|
2617
|
+
}
|
|
2597
2618
|
`,I=i`
|
|
2598
|
-
|
|
2619
|
+
${b}
|
|
2599
2620
|
|
|
2600
|
-
|
|
2621
|
+
/* ============================================================
|
|
2601
2622
|
* Base element (NATIVE button mode ONLY)
|
|
2602
2623
|
* ============================================================ */
|
|
2603
2624
|
button[part='base'] {
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2625
|
+
display: inline-flex;
|
|
2626
|
+
justify-content: center;
|
|
2627
|
+
align-items: center;
|
|
2628
|
+
text-align: center;
|
|
2608
2629
|
|
|
2609
|
-
|
|
2630
|
+
cursor: pointer;
|
|
2610
2631
|
|
|
2611
|
-
|
|
2612
|
-
|
|
2632
|
+
background-color: var(--_bg);
|
|
2633
|
+
color: var(--_color);
|
|
2613
2634
|
|
|
2614
|
-
|
|
2615
|
-
|
|
2635
|
+
border: var(--_border-width) solid var(--_border-color);
|
|
2636
|
+
border-radius: var(--_radius);
|
|
2616
2637
|
|
|
2617
|
-
|
|
2618
|
-
|
|
2638
|
+
padding: calc(var(--_pad-y) - var(--_border-width))
|
|
2639
|
+
calc(var(--_pad-x) - var(--_border-width));
|
|
2619
2640
|
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2641
|
+
font-size: var(--_font-size);
|
|
2642
|
+
line-height: var(--_line-height);
|
|
2643
|
+
font-weight: var(--_font-weight);
|
|
2623
2644
|
|
|
2624
|
-
|
|
2625
|
-
|
|
2645
|
+
transition: var(--_transition);
|
|
2646
|
+
}
|
|
2626
2647
|
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2648
|
+
/* Optional: helps avoid "grew a bit" from slot typography differences */
|
|
2649
|
+
button[part="base"] ::slotted(*) {
|
|
2650
|
+
line-height: inherit;
|
|
2651
|
+
}
|
|
2631
2652
|
|
|
2632
|
-
|
|
2653
|
+
/* ============================================================
|
|
2633
2654
|
* Link mode wrapper (w-link host carries part="base" in button.ts)
|
|
2634
2655
|
* Keep it layout-only to avoid double chrome.
|
|
2635
2656
|
* ============================================================ */
|
|
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
|
-
|
|
2657
|
+
:host > w-link[part="base"] {
|
|
2658
|
+
display: inline-block;
|
|
2659
|
+
padding: 0;
|
|
2660
|
+
border: 0;
|
|
2661
|
+
background: transparent;
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
/* Hover / active (native button mode only) */
|
|
2665
|
+
:host(:not([disabled]):not([loading])) button[part="base"]:hover {
|
|
2666
|
+
background-color: var(--_bg-hover);
|
|
2667
|
+
border-color: var(--_border-color-hover);
|
|
2668
|
+
color: var(--_color-hover);
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
:host(:not([disabled]):not([loading])) button[part="base"]:active {
|
|
2672
|
+
background-color: var(--_bg-active);
|
|
2673
|
+
border-color: var(--_border-color-active);
|
|
2674
|
+
color: var(--_color-active);
|
|
2675
|
+
}
|
|
2676
|
+
|
|
2677
|
+
:host(:focus-visible) button[part="base"] {
|
|
2678
|
+
outline: var(--_outline-width) solid var(--_outline-color);
|
|
2679
|
+
outline-offset: var(--_outline-offset);
|
|
2680
|
+
}
|
|
2681
|
+
|
|
2682
|
+
/* ============================================================
|
|
2662
2683
|
* Variants (shared + button-specific quiet mappings)
|
|
2663
2684
|
* ============================================================ */
|
|
2664
|
-
|
|
2685
|
+
${v}
|
|
2665
2686
|
|
|
2666
|
-
|
|
2687
|
+
/* Button-specific: quiet attribute backwards compatibility */
|
|
2667
2688
|
:host([variant='negative'][quiet]) {
|
|
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
|
-
|
|
2689
|
+
--w-c-button-bg: transparent;
|
|
2690
|
+
--w-c-button-bg-hover: var(--w-s-color-background-negative-subtle-hover);
|
|
2691
|
+
--w-c-button-bg-active: var(--w-s-color-background-negative-subtle-active);
|
|
2692
|
+
--w-c-button-color: var(--w-s-color-text-negative);
|
|
2693
|
+
--w-c-button-border-width: 0px;
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
:host([variant="utility"][quiet]) {
|
|
2697
|
+
--w-c-button-bg: transparent;
|
|
2698
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
2699
|
+
--w-c-button-border-width: 0px;
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2702
|
+
/* Button-specific: pill variant */
|
|
2703
|
+
:host([variant="pill"]) {
|
|
2704
|
+
--w-c-button-bg: transparent;
|
|
2705
|
+
--w-c-button-radius: 50%;
|
|
2706
|
+
--w-c-button-border-width: 0px;
|
|
2707
|
+
--w-c-button-padding-x: 14px;
|
|
2708
|
+
--w-c-button-padding-y: 14px;
|
|
2709
|
+
|
|
2710
|
+
/* pill uses semantic icon color (dark grey by default) */
|
|
2711
|
+
--w-c-button-color: var(--w-c-button-icon-color, var(--w-s-color-icon));
|
|
2712
|
+
}
|
|
2713
|
+
|
|
2714
|
+
:host([variant="pill"]) button[part="base"] {
|
|
2715
|
+
min-height: 44px;
|
|
2716
|
+
min-width: 44px;
|
|
2717
|
+
}
|
|
2718
|
+
|
|
2719
|
+
:host([small][variant="pill"]) button[part="base"] {
|
|
2720
|
+
min-height: 32px;
|
|
2721
|
+
min-width: 32px;
|
|
2722
|
+
}
|
|
2723
|
+
|
|
2724
|
+
/* Button-specific: link variant element styles */
|
|
2725
|
+
:host([variant="link"]) button[part="base"] {
|
|
2726
|
+
display: inline;
|
|
2727
|
+
padding: 0;
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
:host([variant="link"]:not([disabled]):not([loading]))
|
|
2731
|
+
button[part="base"]:hover {
|
|
2732
|
+
text-decoration: underline;
|
|
2733
|
+
background-color: transparent;
|
|
2734
|
+
border-color: transparent;
|
|
2735
|
+
color: var(--w-c-button-color-hover);
|
|
2736
|
+
}
|
|
2737
|
+
|
|
2738
|
+
/* ===== Size ===== */
|
|
2739
|
+
${p}
|
|
2740
|
+
|
|
2741
|
+
:host([small][variant='pill']) {
|
|
2742
|
+
--w-c-button-padding-x: 8px;
|
|
2743
|
+
--w-c-button-padding-y: 8px;
|
|
2744
|
+
}
|
|
2745
|
+
|
|
2746
|
+
/* ===== Layout ===== */
|
|
2747
|
+
|
|
2748
|
+
:host([full-width]) {
|
|
2749
|
+
display: block;
|
|
2750
|
+
width: 100%;
|
|
2751
|
+
}
|
|
2752
|
+
|
|
2753
|
+
:host([full-width]) button[part="base"],
|
|
2754
|
+
:host([full-width]) > w-link[part="base"] {
|
|
2755
|
+
width: 100%;
|
|
2756
|
+
}
|
|
2757
|
+
|
|
2758
|
+
:host([icon-only]) button[part="base"] {
|
|
2759
|
+
aspect-ratio: 1 / 1;
|
|
2760
|
+
padding-left: calc(
|
|
2761
|
+
var(--w-c-button-padding-y) - var(--w-c-button-border-width, 0px)
|
|
2762
|
+
);
|
|
2763
|
+
padding-right: calc(
|
|
2764
|
+
var(--w-c-button-padding-y) - var(--w-c-button-border-width, 0px)
|
|
2765
|
+
);
|
|
2766
|
+
}
|
|
2767
|
+
|
|
2768
|
+
/* ============================================================
|
|
2743
2769
|
* STATE OVERRIDES (must be last so they win over variants)
|
|
2744
2770
|
* Disabled first, Loading last (loading is disabled-like + visuals)
|
|
2745
2771
|
*
|
|
@@ -2748,166 +2774,166 @@ var f=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var e=(c,a,d,n
|
|
|
2748
2774
|
* To ensure states always win, we match similar specificity via extra attribute selectors.
|
|
2749
2775
|
* ============================================================ */
|
|
2750
2776
|
|
|
2751
|
-
|
|
2752
|
-
|
|
2777
|
+
/* ===== Disabled ===== */
|
|
2778
|
+
${u}
|
|
2753
2779
|
|
|
2754
|
-
|
|
2780
|
+
/* Additional specificity for button to override quiet variants */
|
|
2755
2781
|
:host([disabled][variant]),
|
|
2756
2782
|
:host([disabled][quiet]) {
|
|
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
|
-
|
|
2783
|
+
--w-c-button-bg: var(--w-s-color-background-disabled);
|
|
2784
|
+
--w-c-button-bg-hover: var(--w-s-color-background-disabled);
|
|
2785
|
+
--w-c-button-bg-active: var(--w-s-color-background-disabled);
|
|
2786
|
+
|
|
2787
|
+
--w-c-button-color: var(--w-s-color-text-inverted);
|
|
2788
|
+
|
|
2789
|
+
--w-c-button-border-width: 0px;
|
|
2790
|
+
--w-c-button-border-color: transparent;
|
|
2791
|
+
--w-c-button-border-color-hover: transparent;
|
|
2792
|
+
--w-c-button-border-color-active: transparent;
|
|
2793
|
+
|
|
2794
|
+
--w-c-button-color-hover: var(--w-s-color-text-inverted);
|
|
2795
|
+
--w-c-button-color-active: var(--w-s-color-text-inverted);
|
|
2796
|
+
}
|
|
2797
|
+
|
|
2798
|
+
/* ===== Loading (wins over everything) ===== */
|
|
2799
|
+
:host([loading]),
|
|
2800
|
+
:host([loading][variant]),
|
|
2801
|
+
:host([loading][quiet]) {
|
|
2802
|
+
pointer-events: none;
|
|
2803
|
+
|
|
2804
|
+
/* Strong overrides so variants can't leak through */
|
|
2805
|
+
--w-c-button-bg: var(--w-s-color-background-subtle);
|
|
2806
|
+
--w-c-button-bg-hover: var(--w-s-color-background-subtle);
|
|
2807
|
+
--w-c-button-bg-active: var(--w-s-color-background-subtle);
|
|
2808
|
+
|
|
2809
|
+
--w-c-button-color: var(--w-s-color-text);
|
|
2810
|
+
--w-c-button-color-hover: var(--w-s-color-text);
|
|
2811
|
+
--w-c-button-color-active: var(--w-s-color-text);
|
|
2812
|
+
|
|
2813
|
+
--w-c-button-border-width: 0px;
|
|
2814
|
+
--w-c-button-border-color: transparent;
|
|
2815
|
+
--w-c-button-border-color-hover: transparent;
|
|
2816
|
+
--w-c-button-border-color-active: transparent;
|
|
2817
|
+
}
|
|
2818
|
+
|
|
2819
|
+
/* Loading stripes (native button mode only) */
|
|
2820
|
+
:host([loading]) button[part="base"] {
|
|
2821
|
+
background-image: linear-gradient(
|
|
2822
|
+
135deg,
|
|
2823
|
+
rgba(0, 0, 0, 0.05) 25%,
|
|
2824
|
+
transparent 25%,
|
|
2825
|
+
transparent 50%,
|
|
2826
|
+
rgba(0, 0, 0, 0.05) 50%,
|
|
2827
|
+
rgba(0, 0, 0, 0.05) 75%,
|
|
2828
|
+
transparent 75%,
|
|
2829
|
+
transparent
|
|
2830
|
+
);
|
|
2831
|
+
background-size: 30px 30px;
|
|
2832
|
+
animation: animate-inprogress 3s linear infinite;
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
@media (prefers-reduced-motion: reduce) {
|
|
2836
|
+
:host([loading]) button[part="base"] {
|
|
2837
|
+
animation: none;
|
|
2838
|
+
}
|
|
2839
|
+
}
|
|
2840
|
+
|
|
2841
|
+
@keyframes animate-inprogress {
|
|
2842
|
+
0% {
|
|
2843
|
+
background-position: 0 0;
|
|
2844
|
+
}
|
|
2845
|
+
100% {
|
|
2846
|
+
background-position: 60px 0;
|
|
2847
|
+
}
|
|
2848
|
+
}
|
|
2823
2849
|
`;var w=z`
|
|
2824
|
-
|
|
2850
|
+
${b}
|
|
2825
2851
|
|
|
2826
|
-
|
|
2852
|
+
/* ============================================================
|
|
2827
2853
|
* Link element (anchor with button styling)
|
|
2828
2854
|
* ============================================================ */
|
|
2829
2855
|
a[part='base'] {
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2856
|
+
display: inline-flex;
|
|
2857
|
+
justify-content: center;
|
|
2858
|
+
align-items: center;
|
|
2859
|
+
text-align: center;
|
|
2834
2860
|
|
|
2835
|
-
|
|
2836
|
-
|
|
2861
|
+
cursor: pointer;
|
|
2862
|
+
text-decoration: none;
|
|
2837
2863
|
|
|
2838
|
-
|
|
2839
|
-
|
|
2864
|
+
background-color: var(--_bg);
|
|
2865
|
+
color: var(--_color);
|
|
2840
2866
|
|
|
2841
|
-
|
|
2842
|
-
|
|
2867
|
+
border: var(--_border-width) solid var(--_border-color);
|
|
2868
|
+
border-radius: var(--_radius);
|
|
2843
2869
|
|
|
2844
|
-
|
|
2845
|
-
|
|
2870
|
+
padding: calc(var(--_pad-y) - var(--_border-width))
|
|
2871
|
+
calc(var(--_pad-x) - var(--_border-width));
|
|
2846
2872
|
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2873
|
+
font-size: var(--_font-size);
|
|
2874
|
+
line-height: var(--_line-height);
|
|
2875
|
+
font-weight: var(--_font-weight);
|
|
2850
2876
|
|
|
2851
|
-
|
|
2852
|
-
|
|
2877
|
+
transition: var(--_transition);
|
|
2878
|
+
}
|
|
2853
2879
|
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2880
|
+
:host(:not([disabled])) a[part="base"]:hover {
|
|
2881
|
+
background-color: var(--_bg-hover);
|
|
2882
|
+
border-color: var(--_border-color-hover);
|
|
2883
|
+
color: var(--_color-hover);
|
|
2884
|
+
}
|
|
2859
2885
|
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2886
|
+
:host(:not([disabled])) a[part="base"]:active {
|
|
2887
|
+
background-color: var(--_bg-active);
|
|
2888
|
+
border-color: var(--_border-color-active);
|
|
2889
|
+
color: var(--_color-active);
|
|
2890
|
+
}
|
|
2865
2891
|
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2892
|
+
:host(:focus-visible) a[part="base"] {
|
|
2893
|
+
outline: var(--_outline-width) solid var(--_outline-color);
|
|
2894
|
+
outline-offset: var(--_outline-offset);
|
|
2895
|
+
}
|
|
2870
2896
|
|
|
2871
|
-
|
|
2872
|
-
|
|
2897
|
+
/* ===== Variants (shared from button) ===== */
|
|
2898
|
+
${v}
|
|
2873
2899
|
|
|
2874
|
-
|
|
2900
|
+
/* Link-specific: link variant element styles */
|
|
2875
2901
|
:host([variant='link']) a[part='base'] {
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2902
|
+
display: inline;
|
|
2903
|
+
padding: 0;
|
|
2904
|
+
}
|
|
2879
2905
|
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2906
|
+
:host([variant="link"]:not([disabled])) a[part="base"]:hover {
|
|
2907
|
+
text-decoration: underline;
|
|
2908
|
+
background-color: transparent;
|
|
2909
|
+
border-color: transparent;
|
|
2910
|
+
}
|
|
2885
2911
|
|
|
2886
|
-
|
|
2887
|
-
|
|
2912
|
+
/* ===== Sizes (shared from button) ===== */
|
|
2913
|
+
${p}
|
|
2888
2914
|
|
|
2889
|
-
|
|
2915
|
+
/* ===== Layout ===== */
|
|
2890
2916
|
:host([full-width]) {
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2917
|
+
display: block;
|
|
2918
|
+
width: 100%;
|
|
2919
|
+
}
|
|
2894
2920
|
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2921
|
+
:host([full-width]) a[part="base"] {
|
|
2922
|
+
width: 100%;
|
|
2923
|
+
}
|
|
2898
2924
|
|
|
2899
|
-
|
|
2900
|
-
|
|
2925
|
+
/* ===== Disabled (shared from button) ===== */
|
|
2926
|
+
${u}
|
|
2901
2927
|
`;var m=["primary","secondary","negative","negativeQuiet","utility","utilityQuiet","quiet","link","overlay","overlayInverted","overlayQuiet","overlayInvertedQuiet"],r=class extends h{constructor(){super(...arguments);this.autofocus=!1;this.small=!1;this.disabled=!1;this.fullWidth=!1}connectedCallback(){if(super.connectedCallback(),this.variant&&!m.includes(this.variant))throw new Error(`Invalid "variant" attribute. Set its value to one of the following:
|
|
2902
2928
|
${m.join(", ")}.`)}firstUpdated(){this.autofocus&&setTimeout(()=>this.focus(),0)}render(){return _`
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2929
|
+
<a
|
|
2930
|
+
href="${this.href}"
|
|
2931
|
+
part="base"
|
|
2932
|
+
target="${this.target}"
|
|
2933
|
+
rel="${this.target==="_blank"?this.rel||"noopener":Y}"
|
|
2934
|
+
tabindex="0"
|
|
2935
|
+
>
|
|
2936
|
+
<slot></slot>
|
|
2937
|
+
</a>
|
|
2938
|
+
`}};r.shadowRootOptions={...h.shadowRootOptions,delegatesFocus:!0},r.styles=[g,w],e([o({type:Boolean,reflect:!0})],r.prototype,"autofocus",2),e([o({reflect:!0})],r.prototype,"variant",2),e([o({type:Boolean,reflect:!0})],r.prototype,"small",2),e([o({reflect:!0})],r.prototype,"href",2),e([o({type:Boolean,reflect:!0})],r.prototype,"disabled",2),e([o({reflect:!0})],r.prototype,"target",2),e([o({reflect:!0})],r.prototype,"rel",2),e([o({attribute:"full-width",type:Boolean,reflect:!0})],r.prototype,"fullWidth",2);customElements.get("w-link")||customElements.define("w-link",r);export{r as WarpLink};
|
|
2913
2939
|
//# sourceMappingURL=link.js.map
|