@sebgroup/green-core 1.69.4 → 1.70.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/chunks/chunk.QTSIPXV3.js +41 -0
- package/components/badge/badge.component.d.ts +49 -0
- package/components/badge/badge.component.js +118 -0
- package/components/badge/badge.d.ts +2 -51
- package/components/badge/badge.figma.js +0 -1
- package/components/badge/badge.js +3 -17
- package/components/badge/badge.style.js +23 -0
- package/components/badge/index.js +1 -21
- package/components/button/button.component.d.ts +70 -0
- package/components/button/button.component.js +192 -0
- package/components/button/button.d.ts +2 -72
- package/components/button/button.js +3 -19
- package/components/button/button.style.css.js +4 -0
- package/components/button/button.trans.styles.js +7 -9
- package/components/button/button.trans.styles.scss.js +4 -0
- package/components/button/index.js +1 -23
- package/components/calendar/calendar.component.d.ts +105 -0
- package/components/calendar/calendar.component.js +317 -0
- package/components/calendar/calendar.d.ts +2 -105
- package/components/calendar/calendar.js +3 -13
- package/components/calendar/calendar.styles.js +89 -0
- package/components/calendar/calendar.trans.styles.js +7 -9
- package/components/calendar/calendar.trans.styles.scss.js +4 -0
- package/components/calendar/functions.js +27 -3
- package/components/calendar/index.js +1 -17
- package/components/card/card.component.d.ts +35 -0
- package/components/card/card.component.js +62 -0
- package/components/card/card.d.ts +2 -35
- package/components/card/card.js +3 -14
- package/components/card/index.js +1 -18
- package/components/coachmark/coachmark.component.d.ts +52 -0
- package/components/coachmark/coachmark.component.js +287 -0
- package/components/coachmark/coachmark.d.ts +2 -52
- package/components/coachmark/coachmark.js +3 -8
- package/components/coachmark/coachmark.styles.js +55 -0
- package/components/coachmark/index.js +1 -11
- package/components/container/container.component.d.ts +8 -0
- package/components/container/container.component.js +13 -0
- package/components/container/container.d.ts +2 -8
- package/components/container/container.js +3 -15
- package/components/container/index.js +1 -19
- package/components/context-menu/context-menu.component.d.ts +47 -0
- package/components/context-menu/context-menu.component.js +137 -0
- package/components/context-menu/context-menu.d.ts +2 -48
- package/components/context-menu/context-menu.js +3 -26
- package/components/context-menu/context-menu.styles.js +29 -0
- package/components/context-menu/context-menu.trans.styles.js +11 -9
- package/components/context-menu/context-menu.trans.styles.scss.js +4 -0
- package/components/context-menu/index.js +3 -36
- package/components/datepicker/date-part-spinner.d.ts +2 -2
- package/components/datepicker/date-part-spinner.js +181 -6
- package/components/datepicker/datepicker.component.d.ts +109 -0
- package/components/datepicker/datepicker.component.js +749 -0
- package/components/datepicker/datepicker.d.ts +2 -118
- package/components/datepicker/datepicker.js +3 -61
- package/components/datepicker/datepicker.styles.js +55 -0
- package/components/datepicker/datepicker.trans.styles.js +18 -9
- package/components/datepicker/datepicker.trans.styles.scss.js +4 -0
- package/components/datepicker/index.js +1 -64
- package/components/dialog/dialog.component.d.ts +44 -0
- package/components/dialog/dialog.component.js +213 -0
- package/components/dialog/dialog.d.ts +2 -48
- package/components/dialog/dialog.js +3 -30
- package/components/dialog/dialog.styles.js +73 -0
- package/components/dialog/index.js +1 -33
- package/components/dialog/scroll-lock.js +59 -8
- package/components/div/div.component.d.ts +178 -0
- package/components/div/div.component.js +162 -0
- package/components/div/div.d.ts +2 -178
- package/components/div/div.js +3 -12
- package/components/div/div.style.js +21 -0
- package/components/div/index.js +1 -16
- package/components/divider/divider.component.d.ts +68 -0
- package/components/divider/divider.component.js +49 -0
- package/components/divider/divider.d.ts +2 -68
- package/components/divider/divider.js +3 -11
- package/components/divider/divider.style.js +22 -0
- package/components/divider/index.js +1 -14
- package/components/dropdown/dropdown.component.d.ts +145 -0
- package/components/dropdown/dropdown.component.js +554 -0
- package/components/dropdown/dropdown.d.ts +2 -152
- package/components/dropdown/dropdown.js +3 -49
- package/components/dropdown/dropdown.styles.js +94 -0
- package/components/dropdown/dropdown.trans.styles.js +12 -9
- package/components/dropdown/index.js +3 -60
- package/components/fab/fab.component.d.ts +18 -0
- package/components/fab/fab.component.js +19 -0
- package/components/fab/fab.d.ts +2 -18
- package/components/fab/fab.js +3 -21
- package/components/fab/fab.styles.js +19 -0
- package/components/fab/index.js +1 -24
- package/components/filter-chips/filter-chip/filter-chip.component.d.ts +20 -0
- package/components/filter-chips/filter-chip/filter-chip.component.js +62 -0
- package/components/filter-chips/filter-chip/filter-chip.d.ts +2 -22
- package/components/filter-chips/filter-chip/filter-chip.js +3 -23
- package/components/filter-chips/filter-chip/filter-chip.styles.js +16 -0
- package/components/filter-chips/filter-chip/filter-chip.trans.styles.js +9 -9
- package/components/filter-chips/filter-chip/filter-chip.trans.styles.scss.js +4 -0
- package/components/filter-chips/filter-chip/index.js +1 -27
- package/components/filter-chips/filter-chips.component.d.ts +47 -0
- package/components/filter-chips/filter-chips.component.js +166 -0
- package/components/filter-chips/filter-chips.d.ts +2 -47
- package/components/filter-chips/filter-chips.js +3 -27
- package/components/filter-chips/filter-chips.styles.js +35 -0
- package/components/filter-chips/filter-chips.trans.styles.js +9 -9
- package/components/filter-chips/filter-chips.trans.styles.scss.js +4 -0
- package/components/filter-chips/index.js +2 -34
- package/components/flex/flex.component.d.ts +11 -0
- package/components/flex/flex.component.js +22 -0
- package/components/flex/flex.d.ts +2 -11
- package/components/flex/flex.js +3 -14
- package/components/flex/flex.styles.js +15 -0
- package/components/flex/index.js +1 -18
- package/components/form/form-control.js +175 -7
- package/components/form/index.js +1 -29
- package/components/form/summary/index.js +1 -28
- package/components/form/summary/summary.component.d.ts +9 -0
- package/components/form/summary/summary.component.js +88 -0
- package/components/form/summary/summary.d.ts +2 -13
- package/components/form/summary/summary.js +3 -24
- package/components/grid/grid.component.d.ts +39 -0
- package/components/grid/grid.component.js +45 -0
- package/components/grid/grid.d.ts +2 -39
- package/components/grid/grid.js +3 -14
- package/components/grid/grid.style.js +30 -0
- package/components/grid/index.js +1 -17
- package/components/grouped-list/grouped-list.component.d.ts +17 -0
- package/components/grouped-list/grouped-list.component.js +43 -0
- package/components/grouped-list/grouped-list.d.ts +2 -16
- package/components/grouped-list/grouped-list.js +3 -12
- package/components/grouped-list/grouped-list.trans.styles.js +7 -9
- package/components/grouped-list/grouped-list.trans.styles.scss.js +4 -0
- package/components/grouped-list/index.js +2 -18
- package/components/grouped-list/list-item.component.d.ts +11 -0
- package/components/grouped-list/list-item.component.js +20 -0
- package/components/grouped-list/list-item.d.ts +2 -11
- package/components/grouped-list/list-item.js +3 -8
- package/components/icon/icon.component.d.ts +38 -0
- package/components/icon/icon.component.js +62 -0
- package/components/icon/icon.d.ts +2 -38
- package/components/icon/icon.js +3 -6
- package/components/icon/icon.style.js +19 -0
- package/components/icon/icons/airplane-up.component.d.ts +12 -0
- package/components/icon/icons/airplane-up.component.js +19 -0
- package/components/icon/icons/airplane-up.d.ts +2 -12
- package/components/icon/icons/airplane-up.js +3 -8
- package/components/icon/icons/archive.component.d.ts +12 -0
- package/components/icon/icons/archive.component.js +19 -0
- package/components/icon/icons/archive.d.ts +2 -12
- package/components/icon/icons/archive.js +3 -8
- package/components/icon/icons/arrow-box-left.component.d.ts +12 -0
- package/components/icon/icons/arrow-box-left.component.js +19 -0
- package/components/icon/icons/arrow-box-left.d.ts +2 -12
- package/components/icon/icons/arrow-box-left.js +3 -8
- package/components/icon/icons/arrow-box-right.component.d.ts +12 -0
- package/components/icon/icons/arrow-box-right.component.js +19 -0
- package/components/icon/icons/arrow-box-right.d.ts +2 -12
- package/components/icon/icons/arrow-box-right.js +3 -8
- package/components/icon/icons/arrow-down.component.d.ts +12 -0
- package/components/icon/icons/arrow-down.component.js +19 -0
- package/components/icon/icons/arrow-down.d.ts +2 -12
- package/components/icon/icons/arrow-down.js +3 -8
- package/components/icon/icons/arrow-inbox.component.d.ts +12 -0
- package/components/icon/icons/arrow-inbox.component.js +19 -0
- package/components/icon/icons/arrow-inbox.d.ts +2 -12
- package/components/icon/icons/arrow-inbox.js +3 -8
- package/components/icon/icons/arrow-left-right.component.d.ts +12 -0
- package/components/icon/icons/arrow-left-right.component.js +19 -0
- package/components/icon/icons/arrow-left-right.d.ts +2 -12
- package/components/icon/icons/arrow-left-right.js +3 -8
- package/components/icon/icons/arrow-left.component.d.ts +12 -0
- package/components/icon/icons/arrow-left.component.js +19 -0
- package/components/icon/icons/arrow-left.d.ts +2 -12
- package/components/icon/icons/arrow-left.js +3 -8
- package/components/icon/icons/arrow-out-of-box.component.d.ts +12 -0
- package/components/icon/icons/arrow-out-of-box.component.js +19 -0
- package/components/icon/icons/arrow-out-of-box.d.ts +2 -12
- package/components/icon/icons/arrow-out-of-box.js +3 -8
- package/components/icon/icons/arrow-right-circle.component.d.ts +12 -0
- package/components/icon/icons/arrow-right-circle.component.js +19 -0
- package/components/icon/icons/arrow-right-circle.d.ts +2 -12
- package/components/icon/icons/arrow-right-circle.js +3 -8
- package/components/icon/icons/arrow-right-down-circle.component.d.ts +12 -0
- package/components/icon/icons/arrow-right-down-circle.component.js +19 -0
- package/components/icon/icons/arrow-right-down-circle.d.ts +2 -12
- package/components/icon/icons/arrow-right-down-circle.js +3 -8
- package/components/icon/icons/arrow-right-up-circle.component.d.ts +12 -0
- package/components/icon/icons/arrow-right-up-circle.component.js +19 -0
- package/components/icon/icons/arrow-right-up-circle.d.ts +2 -12
- package/components/icon/icons/arrow-right-up-circle.js +3 -8
- package/components/icon/icons/arrow-right.component.d.ts +12 -0
- package/components/icon/icons/arrow-right.component.js +19 -0
- package/components/icon/icons/arrow-right.d.ts +2 -12
- package/components/icon/icons/arrow-right.js +3 -8
- package/components/icon/icons/arrow-rotate-clockwise.component.d.ts +12 -0
- package/components/icon/icons/arrow-rotate-clockwise.component.js +19 -0
- package/components/icon/icons/arrow-rotate-clockwise.d.ts +2 -12
- package/components/icon/icons/arrow-rotate-clockwise.js +3 -8
- package/components/icon/icons/arrow-rotate-counter-clockwise.component.d.ts +12 -0
- package/components/icon/icons/arrow-rotate-counter-clockwise.component.js +19 -0
- package/components/icon/icons/arrow-rotate-counter-clockwise.d.ts +2 -12
- package/components/icon/icons/arrow-rotate-counter-clockwise.js +3 -8
- package/components/icon/icons/arrow-rotate-left-right.component.d.ts +12 -0
- package/components/icon/icons/arrow-rotate-left-right.component.js +19 -0
- package/components/icon/icons/arrow-rotate-left-right.d.ts +2 -12
- package/components/icon/icons/arrow-rotate-left-right.js +3 -8
- package/components/icon/icons/arrow-rotate-right-left.component.d.ts +12 -0
- package/components/icon/icons/arrow-rotate-right-left.component.js +19 -0
- package/components/icon/icons/arrow-rotate-right-left.d.ts +2 -12
- package/components/icon/icons/arrow-rotate-right-left.js +3 -8
- package/components/icon/icons/arrow-share-left.component.d.ts +12 -0
- package/components/icon/icons/arrow-share-left.component.js +19 -0
- package/components/icon/icons/arrow-share-left.d.ts +2 -12
- package/components/icon/icons/arrow-share-left.js +3 -8
- package/components/icon/icons/arrow-share-right.component.d.ts +12 -0
- package/components/icon/icons/arrow-share-right.component.js +19 -0
- package/components/icon/icons/arrow-share-right.d.ts +2 -12
- package/components/icon/icons/arrow-share-right.js +3 -8
- package/components/icon/icons/arrow-up.component.d.ts +12 -0
- package/components/icon/icons/arrow-up.component.js +19 -0
- package/components/icon/icons/arrow-up.d.ts +2 -12
- package/components/icon/icons/arrow-up.js +3 -8
- package/components/icon/icons/arrow-wall-down.component.d.ts +12 -0
- package/components/icon/icons/arrow-wall-down.component.js +19 -0
- package/components/icon/icons/arrow-wall-down.d.ts +2 -12
- package/components/icon/icons/arrow-wall-down.js +3 -8
- package/components/icon/icons/arrow-wall-left.component.d.ts +12 -0
- package/components/icon/icons/arrow-wall-left.component.js +19 -0
- package/components/icon/icons/arrow-wall-left.d.ts +2 -12
- package/components/icon/icons/arrow-wall-left.js +3 -8
- package/components/icon/icons/arrow-wall-right.component.d.ts +12 -0
- package/components/icon/icons/arrow-wall-right.component.js +19 -0
- package/components/icon/icons/arrow-wall-right.d.ts +2 -12
- package/components/icon/icons/arrow-wall-right.js +3 -8
- package/components/icon/icons/arrow-wall-up.component.d.ts +12 -0
- package/components/icon/icons/arrow-wall-up.component.js +19 -0
- package/components/icon/icons/arrow-wall-up.d.ts +2 -12
- package/components/icon/icons/arrow-wall-up.js +3 -8
- package/components/icon/icons/arrow.component.d.ts +12 -0
- package/components/icon/icons/arrow.component.js +19 -0
- package/components/icon/icons/arrow.d.ts +2 -12
- package/components/icon/icons/arrow.js +3 -8
- package/components/icon/icons/arrows-repeat.component.d.ts +12 -0
- package/components/icon/icons/arrows-repeat.component.js +19 -0
- package/components/icon/icons/arrows-repeat.d.ts +2 -12
- package/components/icon/icons/arrows-repeat.js +3 -8
- package/components/icon/icons/at.component.d.ts +12 -0
- package/components/icon/icons/at.component.js +19 -0
- package/components/icon/icons/at.d.ts +2 -12
- package/components/icon/icons/at.js +3 -8
- package/components/icon/icons/back.component.d.ts +12 -0
- package/components/icon/icons/back.component.js +19 -0
- package/components/icon/icons/back.d.ts +2 -12
- package/components/icon/icons/back.js +3 -8
- package/components/icon/icons/bag.component.d.ts +12 -0
- package/components/icon/icons/bag.component.js +19 -0
- package/components/icon/icons/bag.d.ts +2 -12
- package/components/icon/icons/bag.js +3 -8
- package/components/icon/icons/bank.component.d.ts +12 -0
- package/components/icon/icons/bank.component.js +19 -0
- package/components/icon/icons/bank.d.ts +2 -12
- package/components/icon/icons/bank.js +3 -8
- package/components/icon/icons/banknote.component.d.ts +12 -0
- package/components/icon/icons/banknote.component.js +19 -0
- package/components/icon/icons/banknote.d.ts +2 -12
- package/components/icon/icons/banknote.js +3 -8
- package/components/icon/icons/barcode.component.d.ts +12 -0
- package/components/icon/icons/barcode.component.js +19 -0
- package/components/icon/icons/barcode.d.ts +2 -12
- package/components/icon/icons/barcode.js +3 -8
- package/components/icon/icons/bars-three.component.d.ts +12 -0
- package/components/icon/icons/bars-three.component.js +19 -0
- package/components/icon/icons/bars-three.d.ts +2 -12
- package/components/icon/icons/bars-three.js +3 -8
- package/components/icon/icons/bars-two.component.d.ts +12 -0
- package/components/icon/icons/bars-two.component.js +19 -0
- package/components/icon/icons/bars-two.d.ts +2 -12
- package/components/icon/icons/bars-two.js +3 -8
- package/components/icon/icons/battery-loading.component.d.ts +12 -0
- package/components/icon/icons/battery-loading.component.js +19 -0
- package/components/icon/icons/battery-loading.d.ts +2 -12
- package/components/icon/icons/battery-loading.js +3 -8
- package/components/icon/icons/bell.component.d.ts +12 -0
- package/components/icon/icons/bell.component.js +19 -0
- package/components/icon/icons/bell.d.ts +2 -12
- package/components/icon/icons/bell.js +3 -8
- package/components/icon/icons/block.component.d.ts +12 -0
- package/components/icon/icons/block.component.js +19 -0
- package/components/icon/icons/block.d.ts +2 -12
- package/components/icon/icons/block.js +3 -8
- package/components/icon/icons/book.component.d.ts +12 -0
- package/components/icon/icons/book.component.js +19 -0
- package/components/icon/icons/book.d.ts +2 -12
- package/components/icon/icons/book.js +3 -8
- package/components/icon/icons/bookmark-check.component.d.ts +12 -0
- package/components/icon/icons/bookmark-check.component.js +19 -0
- package/components/icon/icons/bookmark-check.d.ts +2 -12
- package/components/icon/icons/bookmark-check.js +3 -8
- package/components/icon/icons/bookmark-delete.component.d.ts +12 -0
- package/components/icon/icons/bookmark-delete.component.js +19 -0
- package/components/icon/icons/bookmark-delete.d.ts +2 -12
- package/components/icon/icons/bookmark-delete.js +3 -8
- package/components/icon/icons/bookmark-plus.component.d.ts +12 -0
- package/components/icon/icons/bookmark-plus.component.js +19 -0
- package/components/icon/icons/bookmark-plus.d.ts +2 -12
- package/components/icon/icons/bookmark-plus.js +3 -8
- package/components/icon/icons/bookmark-remove.component.d.ts +12 -0
- package/components/icon/icons/bookmark-remove.component.js +19 -0
- package/components/icon/icons/bookmark-remove.d.ts +2 -12
- package/components/icon/icons/bookmark-remove.js +3 -8
- package/components/icon/icons/bookmark.component.d.ts +12 -0
- package/components/icon/icons/bookmark.component.js +19 -0
- package/components/icon/icons/bookmark.d.ts +2 -12
- package/components/icon/icons/bookmark.js +3 -8
- package/components/icon/icons/books.component.d.ts +12 -0
- package/components/icon/icons/books.component.js +19 -0
- package/components/icon/icons/books.d.ts +2 -12
- package/components/icon/icons/books.js +3 -8
- package/components/icon/icons/brand-app-store.component.d.ts +12 -0
- package/components/icon/icons/brand-app-store.component.js +19 -0
- package/components/icon/icons/brand-app-store.d.ts +2 -12
- package/components/icon/icons/brand-app-store.js +3 -8
- package/components/icon/icons/brand-apple-music.component.d.ts +12 -0
- package/components/icon/icons/brand-apple-music.component.js +19 -0
- package/components/icon/icons/brand-apple-music.d.ts +2 -12
- package/components/icon/icons/brand-apple-music.js +3 -8
- package/components/icon/icons/brand-bankid.component.d.ts +12 -0
- package/components/icon/icons/brand-bankid.component.js +19 -0
- package/components/icon/icons/brand-bankid.d.ts +2 -12
- package/components/icon/icons/brand-bankid.js +3 -8
- package/components/icon/icons/brand-chrome.component.d.ts +12 -0
- package/components/icon/icons/brand-chrome.component.js +19 -0
- package/components/icon/icons/brand-chrome.d.ts +2 -12
- package/components/icon/icons/brand-chrome.js +3 -8
- package/components/icon/icons/brand-facebook.component.d.ts +12 -0
- package/components/icon/icons/brand-facebook.component.js +19 -0
- package/components/icon/icons/brand-facebook.d.ts +2 -12
- package/components/icon/icons/brand-facebook.js +3 -8
- package/components/icon/icons/brand-figma.component.d.ts +12 -0
- package/components/icon/icons/brand-figma.component.js +19 -0
- package/components/icon/icons/brand-figma.d.ts +2 -12
- package/components/icon/icons/brand-figma.js +3 -8
- package/components/icon/icons/brand-github.component.d.ts +12 -0
- package/components/icon/icons/brand-github.component.js +19 -0
- package/components/icon/icons/brand-github.d.ts +2 -12
- package/components/icon/icons/brand-github.js +3 -8
- package/components/icon/icons/brand-green.component.d.ts +12 -0
- package/components/icon/icons/brand-green.component.js +19 -0
- package/components/icon/icons/brand-green.d.ts +2 -12
- package/components/icon/icons/brand-green.js +3 -8
- package/components/icon/icons/brand-instagram.component.d.ts +12 -0
- package/components/icon/icons/brand-instagram.component.js +19 -0
- package/components/icon/icons/brand-instagram.d.ts +2 -12
- package/components/icon/icons/brand-instagram.js +3 -8
- package/components/icon/icons/brand-linkedin.component.d.ts +12 -0
- package/components/icon/icons/brand-linkedin.component.js +19 -0
- package/components/icon/icons/brand-linkedin.d.ts +2 -12
- package/components/icon/icons/brand-linkedin.js +3 -8
- package/components/icon/icons/brand-play-store.component.d.ts +12 -0
- package/components/icon/icons/brand-play-store.component.js +19 -0
- package/components/icon/icons/brand-play-store.d.ts +2 -12
- package/components/icon/icons/brand-play-store.js +3 -8
- package/components/icon/icons/brand-rss-feed.component.d.ts +12 -0
- package/components/icon/icons/brand-rss-feed.component.js +19 -0
- package/components/icon/icons/brand-rss-feed.d.ts +2 -12
- package/components/icon/icons/brand-rss-feed.js +3 -8
- package/components/icon/icons/brand-seb.component.d.ts +12 -0
- package/components/icon/icons/brand-seb.component.js +19 -0
- package/components/icon/icons/brand-seb.d.ts +2 -12
- package/components/icon/icons/brand-seb.js +3 -8
- package/components/icon/icons/brand-spotify.component.d.ts +12 -0
- package/components/icon/icons/brand-spotify.component.js +19 -0
- package/components/icon/icons/brand-spotify.d.ts +2 -12
- package/components/icon/icons/brand-spotify.js +3 -8
- package/components/icon/icons/brand-x.component.d.ts +12 -0
- package/components/icon/icons/brand-x.component.js +19 -0
- package/components/icon/icons/brand-x.d.ts +2 -12
- package/components/icon/icons/brand-x.js +3 -8
- package/components/icon/icons/brush.component.d.ts +12 -0
- package/components/icon/icons/brush.component.js +19 -0
- package/components/icon/icons/brush.d.ts +2 -12
- package/components/icon/icons/brush.js +3 -8
- package/components/icon/icons/bubble-annotation.component.d.ts +12 -0
- package/components/icon/icons/bubble-annotation.component.js +19 -0
- package/components/icon/icons/bubble-annotation.d.ts +2 -12
- package/components/icon/icons/bubble-annotation.js +3 -8
- package/components/icon/icons/bubble-dots.component.d.ts +12 -0
- package/components/icon/icons/bubble-dots.component.js +19 -0
- package/components/icon/icons/bubble-dots.d.ts +2 -12
- package/components/icon/icons/bubble-dots.js +3 -8
- package/components/icon/icons/bubble-question.component.d.ts +12 -0
- package/components/icon/icons/bubble-question.component.js +19 -0
- package/components/icon/icons/bubble-question.d.ts +2 -12
- package/components/icon/icons/bubble-question.js +3 -8
- package/components/icon/icons/bubble-quotes.component.d.ts +12 -0
- package/components/icon/icons/bubble-quotes.component.js +19 -0
- package/components/icon/icons/bubble-quotes.d.ts +2 -12
- package/components/icon/icons/bubble-quotes.js +3 -8
- package/components/icon/icons/bubble-text.component.d.ts +12 -0
- package/components/icon/icons/bubble-text.component.js +19 -0
- package/components/icon/icons/bubble-text.d.ts +2 -12
- package/components/icon/icons/bubble-text.js +3 -8
- package/components/icon/icons/bubble-wide-annotation.component.d.ts +12 -0
- package/components/icon/icons/bubble-wide-annotation.component.js +19 -0
- package/components/icon/icons/bubble-wide-annotation.d.ts +2 -12
- package/components/icon/icons/bubble-wide-annotation.js +3 -8
- package/components/icon/icons/bubble.component.d.ts +12 -0
- package/components/icon/icons/bubble.component.js +19 -0
- package/components/icon/icons/bubble.d.ts +2 -12
- package/components/icon/icons/bubble.js +3 -8
- package/components/icon/icons/bubbles.component.d.ts +12 -0
- package/components/icon/icons/bubbles.component.js +19 -0
- package/components/icon/icons/bubbles.d.ts +2 -12
- package/components/icon/icons/bubbles.js +3 -8
- package/components/icon/icons/buildings.component.d.ts +12 -0
- package/components/icon/icons/buildings.component.js +19 -0
- package/components/icon/icons/buildings.d.ts +2 -12
- package/components/icon/icons/buildings.js +3 -8
- package/components/icon/icons/cain-link.component.d.ts +12 -0
- package/components/icon/icons/cain-link.component.js +19 -0
- package/components/icon/icons/cain-link.d.ts +2 -12
- package/components/icon/icons/cain-link.js +3 -8
- package/components/icon/icons/calculator.component.d.ts +12 -0
- package/components/icon/icons/calculator.component.js +19 -0
- package/components/icon/icons/calculator.d.ts +2 -12
- package/components/icon/icons/calculator.js +3 -8
- package/components/icon/icons/calendar-check.component.d.ts +12 -0
- package/components/icon/icons/calendar-check.component.js +19 -0
- package/components/icon/icons/calendar-check.d.ts +2 -12
- package/components/icon/icons/calendar-check.js +3 -8
- package/components/icon/icons/calendar.component.d.ts +12 -0
- package/components/icon/icons/calendar.component.js +19 -0
- package/components/icon/icons/calendar.d.ts +2 -12
- package/components/icon/icons/calendar.js +3 -8
- package/components/icon/icons/calender-add.component.d.ts +12 -0
- package/components/icon/icons/calender-add.component.js +19 -0
- package/components/icon/icons/calender-add.d.ts +2 -12
- package/components/icon/icons/calender-add.js +3 -8
- package/components/icon/icons/call.component.d.ts +12 -0
- package/components/icon/icons/call.component.js +19 -0
- package/components/icon/icons/call.d.ts +2 -12
- package/components/icon/icons/call.js +3 -8
- package/components/icon/icons/car.component.d.ts +12 -0
- package/components/icon/icons/car.component.js +19 -0
- package/components/icon/icons/car.d.ts +2 -12
- package/components/icon/icons/car.js +3 -8
- package/components/icon/icons/charging-station.component.d.ts +12 -0
- package/components/icon/icons/charging-station.component.js +19 -0
- package/components/icon/icons/charging-station.d.ts +2 -12
- package/components/icon/icons/charging-station.js +3 -8
- package/components/icon/icons/chart-one.component.d.ts +12 -0
- package/components/icon/icons/chart-one.component.js +19 -0
- package/components/icon/icons/chart-one.d.ts +2 -12
- package/components/icon/icons/chart-one.js +3 -8
- package/components/icon/icons/chart-presentation.component.d.ts +12 -0
- package/components/icon/icons/chart-presentation.component.js +19 -0
- package/components/icon/icons/chart-presentation.d.ts +2 -12
- package/components/icon/icons/chart-presentation.js +3 -8
- package/components/icon/icons/chart-two.component.d.ts +12 -0
- package/components/icon/icons/chart-two.component.js +19 -0
- package/components/icon/icons/chart-two.d.ts +2 -12
- package/components/icon/icons/chart-two.js +3 -8
- package/components/icon/icons/checklist.component.d.ts +12 -0
- package/components/icon/icons/checklist.component.js +19 -0
- package/components/icon/icons/checklist.d.ts +2 -12
- package/components/icon/icons/checklist.js +3 -8
- package/components/icon/icons/checkmark.component.d.ts +12 -0
- package/components/icon/icons/checkmark.component.js +19 -0
- package/components/icon/icons/checkmark.d.ts +2 -12
- package/components/icon/icons/checkmark.js +3 -8
- package/components/icon/icons/chevron-bottom.component.d.ts +12 -0
- package/components/icon/icons/chevron-bottom.component.js +19 -0
- package/components/icon/icons/chevron-bottom.d.ts +2 -12
- package/components/icon/icons/chevron-bottom.js +3 -8
- package/components/icon/icons/chevron-double-down.component.d.ts +12 -0
- package/components/icon/icons/chevron-double-down.component.js +19 -0
- package/components/icon/icons/chevron-double-down.d.ts +2 -12
- package/components/icon/icons/chevron-double-down.js +3 -8
- package/components/icon/icons/chevron-double-left.component.d.ts +12 -0
- package/components/icon/icons/chevron-double-left.component.js +19 -0
- package/components/icon/icons/chevron-double-left.d.ts +2 -12
- package/components/icon/icons/chevron-double-left.js +3 -8
- package/components/icon/icons/chevron-double-right.component.d.ts +12 -0
- package/components/icon/icons/chevron-double-right.component.js +19 -0
- package/components/icon/icons/chevron-double-right.d.ts +2 -12
- package/components/icon/icons/chevron-double-right.js +3 -8
- package/components/icon/icons/chevron-double-up.component.d.ts +12 -0
- package/components/icon/icons/chevron-double-up.component.js +19 -0
- package/components/icon/icons/chevron-double-up.d.ts +2 -12
- package/components/icon/icons/chevron-double-up.js +3 -8
- package/components/icon/icons/chevron-grabber-vertical.component.d.ts +12 -0
- package/components/icon/icons/chevron-grabber-vertical.component.js +19 -0
- package/components/icon/icons/chevron-grabber-vertical.d.ts +2 -12
- package/components/icon/icons/chevron-grabber-vertical.js +3 -8
- package/components/icon/icons/chevron-left.component.d.ts +12 -0
- package/components/icon/icons/chevron-left.component.js +19 -0
- package/components/icon/icons/chevron-left.d.ts +2 -12
- package/components/icon/icons/chevron-left.js +3 -8
- package/components/icon/icons/chevron-right.component.d.ts +12 -0
- package/components/icon/icons/chevron-right.component.js +19 -0
- package/components/icon/icons/chevron-right.d.ts +2 -12
- package/components/icon/icons/chevron-right.js +3 -8
- package/components/icon/icons/chevron-top.component.d.ts +12 -0
- package/components/icon/icons/chevron-top.component.js +19 -0
- package/components/icon/icons/chevron-top.d.ts +2 -12
- package/components/icon/icons/chevron-top.js +3 -8
- package/components/icon/icons/circle-check.component.d.ts +12 -0
- package/components/icon/icons/circle-check.component.js +19 -0
- package/components/icon/icons/circle-check.d.ts +2 -12
- package/components/icon/icons/circle-check.js +3 -8
- package/components/icon/icons/circle-info.component.d.ts +12 -0
- package/components/icon/icons/circle-info.component.js +19 -0
- package/components/icon/icons/circle-info.d.ts +2 -12
- package/components/icon/icons/circle-info.js +3 -8
- package/components/icon/icons/circle-minus.component.d.ts +12 -0
- package/components/icon/icons/circle-minus.component.js +19 -0
- package/components/icon/icons/circle-minus.d.ts +2 -12
- package/components/icon/icons/circle-minus.js +3 -8
- package/components/icon/icons/circle-placeholder-on.component.d.ts +12 -0
- package/components/icon/icons/circle-placeholder-on.component.js +19 -0
- package/components/icon/icons/circle-placeholder-on.d.ts +2 -12
- package/components/icon/icons/circle-placeholder-on.js +3 -8
- package/components/icon/icons/circle-plus.component.d.ts +12 -0
- package/components/icon/icons/circle-plus.component.js +19 -0
- package/components/icon/icons/circle-plus.d.ts +2 -12
- package/components/icon/icons/circle-plus.js +3 -8
- package/components/icon/icons/circle-questionmark.component.d.ts +12 -0
- package/components/icon/icons/circle-questionmark.component.js +19 -0
- package/components/icon/icons/circle-questionmark.d.ts +2 -12
- package/components/icon/icons/circle-questionmark.js +3 -8
- package/components/icon/icons/circle-x.component.d.ts +12 -0
- package/components/icon/icons/circle-x.component.js +19 -0
- package/components/icon/icons/circle-x.d.ts +2 -12
- package/components/icon/icons/circle-x.js +3 -8
- package/components/icon/icons/circles-three.component.d.ts +12 -0
- package/components/icon/icons/circles-three.component.js +19 -0
- package/components/icon/icons/circles-three.d.ts +2 -12
- package/components/icon/icons/circles-three.js +3 -8
- package/components/icon/icons/clock.component.d.ts +12 -0
- package/components/icon/icons/clock.component.js +19 -0
- package/components/icon/icons/clock.d.ts +2 -12
- package/components/icon/icons/clock.js +3 -8
- package/components/icon/icons/cloud-upload.component.d.ts +12 -0
- package/components/icon/icons/cloud-upload.component.js +19 -0
- package/components/icon/icons/cloud-upload.d.ts +2 -12
- package/components/icon/icons/cloud-upload.js +3 -8
- package/components/icon/icons/cloudy-sun.component.d.ts +12 -0
- package/components/icon/icons/cloudy-sun.component.js +19 -0
- package/components/icon/icons/cloudy-sun.d.ts +2 -12
- package/components/icon/icons/cloudy-sun.js +3 -8
- package/components/icon/icons/compass-round.component.d.ts +12 -0
- package/components/icon/icons/compass-round.component.js +19 -0
- package/components/icon/icons/compass-round.d.ts +2 -12
- package/components/icon/icons/compass-round.js +3 -8
- package/components/icon/icons/credit-card.component.d.ts +12 -0
- package/components/icon/icons/credit-card.component.js +19 -0
- package/components/icon/icons/credit-card.d.ts +2 -12
- package/components/icon/icons/credit-card.js +3 -8
- package/components/icon/icons/cross-large.component.d.ts +12 -0
- package/components/icon/icons/cross-large.component.js +19 -0
- package/components/icon/icons/cross-large.d.ts +2 -12
- package/components/icon/icons/cross-large.js +3 -8
- package/components/icon/icons/cross-small.component.d.ts +12 -0
- package/components/icon/icons/cross-small.component.js +19 -0
- package/components/icon/icons/cross-small.d.ts +2 -12
- package/components/icon/icons/cross-small.js +3 -8
- package/components/icon/icons/cup-hot.component.d.ts +12 -0
- package/components/icon/icons/cup-hot.component.js +19 -0
- package/components/icon/icons/cup-hot.d.ts +2 -12
- package/components/icon/icons/cup-hot.js +3 -8
- package/components/icon/icons/devices.component.d.ts +12 -0
- package/components/icon/icons/devices.component.js +19 -0
- package/components/icon/icons/devices.d.ts +2 -12
- package/components/icon/icons/devices.js +3 -8
- package/components/icon/icons/direction.component.d.ts +12 -0
- package/components/icon/icons/direction.component.js +19 -0
- package/components/icon/icons/direction.d.ts +2 -12
- package/components/icon/icons/direction.js +3 -8
- package/components/icon/icons/dollar.component.d.ts +12 -0
- package/components/icon/icons/dollar.component.js +19 -0
- package/components/icon/icons/dollar.d.ts +2 -12
- package/components/icon/icons/dollar.js +3 -8
- package/components/icon/icons/dot-grid-one-horizontal.component.d.ts +12 -0
- package/components/icon/icons/dot-grid-one-horizontal.component.js +19 -0
- package/components/icon/icons/dot-grid-one-horizontal.d.ts +2 -12
- package/components/icon/icons/dot-grid-one-horizontal.js +3 -8
- package/components/icon/icons/dot-grid-one-vertical.component.d.ts +12 -0
- package/components/icon/icons/dot-grid-one-vertical.component.js +19 -0
- package/components/icon/icons/dot-grid-one-vertical.d.ts +2 -12
- package/components/icon/icons/dot-grid-one-vertical.js +3 -8
- package/components/icon/icons/dot-grid-three.component.d.ts +12 -0
- package/components/icon/icons/dot-grid-three.component.js +19 -0
- package/components/icon/icons/dot-grid-three.d.ts +2 -12
- package/components/icon/icons/dot-grid-three.js +3 -8
- package/components/icon/icons/dot-grid-two.component.d.ts +12 -0
- package/components/icon/icons/dot-grid-two.component.js +19 -0
- package/components/icon/icons/dot-grid-two.d.ts +2 -12
- package/components/icon/icons/dot-grid-two.js +3 -8
- package/components/icon/icons/email.component.d.ts +12 -0
- package/components/icon/icons/email.component.js +19 -0
- package/components/icon/icons/email.d.ts +2 -12
- package/components/icon/icons/email.js +3 -8
- package/components/icon/icons/euro.component.d.ts +12 -0
- package/components/icon/icons/euro.component.js +19 -0
- package/components/icon/icons/euro.d.ts +2 -12
- package/components/icon/icons/euro.js +3 -8
- package/components/icon/icons/eye-open.component.d.ts +12 -0
- package/components/icon/icons/eye-open.component.js +19 -0
- package/components/icon/icons/eye-open.d.ts +2 -12
- package/components/icon/icons/eye-open.js +3 -8
- package/components/icon/icons/eye-slash.component.d.ts +12 -0
- package/components/icon/icons/eye-slash.component.js +19 -0
- package/components/icon/icons/eye-slash.d.ts +2 -12
- package/components/icon/icons/eye-slash.js +3 -8
- package/components/icon/icons/fashion.component.d.ts +12 -0
- package/components/icon/icons/fashion.component.js +19 -0
- package/components/icon/icons/fashion.d.ts +2 -12
- package/components/icon/icons/fashion.js +3 -8
- package/components/icon/icons/fast-forward.component.d.ts +12 -0
- package/components/icon/icons/fast-forward.component.js +19 -0
- package/components/icon/icons/fast-forward.d.ts +2 -12
- package/components/icon/icons/fast-forward.js +3 -8
- package/components/icon/icons/file-bend.component.d.ts +12 -0
- package/components/icon/icons/file-bend.component.js +19 -0
- package/components/icon/icons/file-bend.d.ts +2 -12
- package/components/icon/icons/file-bend.js +3 -8
- package/components/icon/icons/file-chart.component.d.ts +12 -0
- package/components/icon/icons/file-chart.component.js +19 -0
- package/components/icon/icons/file-chart.d.ts +2 -12
- package/components/icon/icons/file-chart.js +3 -8
- package/components/icon/icons/file-text.component.d.ts +12 -0
- package/components/icon/icons/file-text.component.js +19 -0
- package/components/icon/icons/file-text.d.ts +2 -12
- package/components/icon/icons/file-text.js +3 -8
- package/components/icon/icons/files.component.d.ts +12 -0
- package/components/icon/icons/files.component.js +19 -0
- package/components/icon/icons/files.d.ts +2 -12
- package/components/icon/icons/files.js +3 -8
- package/components/icon/icons/filter.component.d.ts +12 -0
- package/components/icon/icons/filter.component.js +19 -0
- package/components/icon/icons/filter.d.ts +2 -12
- package/components/icon/icons/filter.js +3 -8
- package/components/icon/icons/flag.component.d.ts +12 -0
- package/components/icon/icons/flag.component.js +19 -0
- package/components/icon/icons/flag.d.ts +2 -12
- package/components/icon/icons/flag.js +3 -8
- package/components/icon/icons/floppy-disk.component.d.ts +12 -0
- package/components/icon/icons/floppy-disk.component.js +19 -0
- package/components/icon/icons/floppy-disk.d.ts +2 -12
- package/components/icon/icons/floppy-disk.js +3 -8
- package/components/icon/icons/focus-square.component.d.ts +12 -0
- package/components/icon/icons/focus-square.component.js +19 -0
- package/components/icon/icons/focus-square.d.ts +2 -12
- package/components/icon/icons/focus-square.js +3 -8
- package/components/icon/icons/focus.component.d.ts +12 -0
- package/components/icon/icons/focus.component.js +19 -0
- package/components/icon/icons/focus.d.ts +2 -12
- package/components/icon/icons/focus.js +3 -8
- package/components/icon/icons/folder-add-right.component.d.ts +12 -0
- package/components/icon/icons/folder-add-right.component.js +19 -0
- package/components/icon/icons/folder-add-right.d.ts +2 -12
- package/components/icon/icons/folder-add-right.js +3 -8
- package/components/icon/icons/folder-paper.component.d.ts +12 -0
- package/components/icon/icons/folder-paper.component.js +19 -0
- package/components/icon/icons/folder-paper.d.ts +2 -12
- package/components/icon/icons/folder-paper.js +3 -8
- package/components/icon/icons/folder-upload.component.d.ts +12 -0
- package/components/icon/icons/folder-upload.component.js +19 -0
- package/components/icon/icons/folder-upload.d.ts +2 -12
- package/components/icon/icons/folder-upload.js +3 -8
- package/components/icon/icons/folder.component.d.ts +12 -0
- package/components/icon/icons/folder.component.js +19 -0
- package/components/icon/icons/folder.d.ts +2 -12
- package/components/icon/icons/folder.js +3 -8
- package/components/icon/icons/globus.component.d.ts +12 -0
- package/components/icon/icons/globus.component.js +19 -0
- package/components/icon/icons/globus.d.ts +2 -12
- package/components/icon/icons/globus.js +3 -8
- package/components/icon/icons/graduate-cap.component.d.ts +12 -0
- package/components/icon/icons/graduate-cap.component.js +19 -0
- package/components/icon/icons/graduate-cap.d.ts +2 -12
- package/components/icon/icons/graduate-cap.js +3 -8
- package/components/icon/icons/group.component.d.ts +12 -0
- package/components/icon/icons/group.component.js +19 -0
- package/components/icon/icons/group.d.ts +2 -12
- package/components/icon/icons/group.js +3 -8
- package/components/icon/icons/growth.component.d.ts +12 -0
- package/components/icon/icons/growth.component.js +19 -0
- package/components/icon/icons/growth.d.ts +2 -12
- package/components/icon/icons/growth.js +3 -8
- package/components/icon/icons/headphones.component.d.ts +12 -0
- package/components/icon/icons/headphones.component.js +19 -0
- package/components/icon/icons/headphones.d.ts +2 -12
- package/components/icon/icons/headphones.js +3 -8
- package/components/icon/icons/heart-beat.component.d.ts +12 -0
- package/components/icon/icons/heart-beat.component.js +19 -0
- package/components/icon/icons/heart-beat.d.ts +2 -12
- package/components/icon/icons/heart-beat.js +3 -8
- package/components/icon/icons/heart.component.d.ts +12 -0
- package/components/icon/icons/heart.component.js +19 -0
- package/components/icon/icons/heart.d.ts +2 -12
- package/components/icon/icons/heart.js +3 -8
- package/components/icon/icons/history.component.d.ts +12 -0
- package/components/icon/icons/history.component.js +19 -0
- package/components/icon/icons/history.d.ts +2 -12
- package/components/icon/icons/history.js +3 -8
- package/components/icon/icons/home-energy-one.component.d.ts +12 -0
- package/components/icon/icons/home-energy-one.component.js +19 -0
- package/components/icon/icons/home-energy-one.d.ts +2 -12
- package/components/icon/icons/home-energy-one.js +3 -8
- package/components/icon/icons/home-energy-two.component.d.ts +12 -0
- package/components/icon/icons/home-energy-two.component.js +19 -0
- package/components/icon/icons/home-energy-two.d.ts +2 -12
- package/components/icon/icons/home-energy-two.js +3 -8
- package/components/icon/icons/home-open.component.d.ts +12 -0
- package/components/icon/icons/home-open.component.js +19 -0
- package/components/icon/icons/home-open.d.ts +2 -12
- package/components/icon/icons/home-open.js +3 -8
- package/components/icon/icons/home-roof.component.d.ts +12 -0
- package/components/icon/icons/home-roof.component.js +19 -0
- package/components/icon/icons/home-roof.d.ts +2 -12
- package/components/icon/icons/home-roof.js +3 -8
- package/components/icon/icons/horizontal-alignment-bottom.component.d.ts +12 -0
- package/components/icon/icons/horizontal-alignment-bottom.component.js +19 -0
- package/components/icon/icons/horizontal-alignment-bottom.d.ts +2 -12
- package/components/icon/icons/horizontal-alignment-bottom.js +3 -8
- package/components/icon/icons/images.component.d.ts +12 -0
- package/components/icon/icons/images.component.js +19 -0
- package/components/icon/icons/images.d.ts +2 -12
- package/components/icon/icons/images.js +3 -8
- package/components/icon/icons/index.d.ts +1 -0
- package/components/icon/icons/index.js +259 -1039
- package/components/icon/icons/invite.component.d.ts +12 -0
- package/components/icon/icons/invite.component.js +19 -0
- package/components/icon/icons/invite.d.ts +2 -12
- package/components/icon/icons/invite.js +3 -8
- package/components/icon/icons/knife-spoon.component.d.ts +12 -0
- package/components/icon/icons/knife-spoon.component.js +19 -0
- package/components/icon/icons/knife-spoon.d.ts +2 -12
- package/components/icon/icons/knife-spoon.js +3 -8
- package/components/icon/icons/law.component.d.ts +12 -0
- package/components/icon/icons/law.component.js +19 -0
- package/components/icon/icons/law.d.ts +2 -12
- package/components/icon/icons/law.js +3 -8
- package/components/icon/icons/light-bulb-simple.component.d.ts +12 -0
- package/components/icon/icons/light-bulb-simple.component.js +19 -0
- package/components/icon/icons/light-bulb-simple.d.ts +2 -12
- package/components/icon/icons/light-bulb-simple.js +3 -8
- package/components/icon/icons/light-bulb.component.d.ts +12 -0
- package/components/icon/icons/light-bulb.component.js +19 -0
- package/components/icon/icons/light-bulb.d.ts +2 -12
- package/components/icon/icons/light-bulb.js +3 -8
- package/components/icon/icons/lightning.component.d.ts +12 -0
- package/components/icon/icons/lightning.component.js +19 -0
- package/components/icon/icons/lightning.d.ts +2 -12
- package/components/icon/icons/lightning.js +3 -8
- package/components/icon/icons/line-chart-four.component.d.ts +12 -0
- package/components/icon/icons/line-chart-four.component.js +19 -0
- package/components/icon/icons/line-chart-four.d.ts +2 -12
- package/components/icon/icons/line-chart-four.js +3 -8
- package/components/icon/icons/line-chart-one.component.d.ts +12 -0
- package/components/icon/icons/line-chart-one.component.js +19 -0
- package/components/icon/icons/line-chart-one.d.ts +2 -12
- package/components/icon/icons/line-chart-one.js +3 -8
- package/components/icon/icons/line-chart-three.component.d.ts +12 -0
- package/components/icon/icons/line-chart-three.component.js +19 -0
- package/components/icon/icons/line-chart-three.d.ts +2 -12
- package/components/icon/icons/line-chart-three.js +3 -8
- package/components/icon/icons/line-chart-two.component.d.ts +12 -0
- package/components/icon/icons/line-chart-two.component.js +19 -0
- package/components/icon/icons/line-chart-two.d.ts +2 -12
- package/components/icon/icons/line-chart-two.js +3 -8
- package/components/icon/icons/lock.component.d.ts +12 -0
- package/components/icon/icons/lock.component.js +19 -0
- package/components/icon/icons/lock.d.ts +2 -12
- package/components/icon/icons/lock.js +3 -8
- package/components/icon/icons/macbook-air.component.d.ts +12 -0
- package/components/icon/icons/macbook-air.component.js +19 -0
- package/components/icon/icons/macbook-air.d.ts +2 -12
- package/components/icon/icons/macbook-air.js +3 -8
- package/components/icon/icons/magnifying-glass.component.d.ts +12 -0
- package/components/icon/icons/magnifying-glass.component.js +19 -0
- package/components/icon/icons/magnifying-glass.d.ts +2 -12
- package/components/icon/icons/magnifying-glass.js +3 -8
- package/components/icon/icons/maintenance.component.d.ts +12 -0
- package/components/icon/icons/maintenance.component.js +19 -0
- package/components/icon/icons/maintenance.d.ts +2 -12
- package/components/icon/icons/maintenance.js +3 -8
- package/components/icon/icons/map-pin.component.d.ts +12 -0
- package/components/icon/icons/map-pin.component.js +19 -0
- package/components/icon/icons/map-pin.d.ts +2 -12
- package/components/icon/icons/map-pin.js +3 -8
- package/components/icon/icons/megaphone.component.d.ts +12 -0
- package/components/icon/icons/megaphone.component.js +19 -0
- package/components/icon/icons/megaphone.d.ts +2 -12
- package/components/icon/icons/megaphone.js +3 -8
- package/components/icon/icons/minus-large.component.d.ts +12 -0
- package/components/icon/icons/minus-large.component.js +19 -0
- package/components/icon/icons/minus-large.d.ts +2 -12
- package/components/icon/icons/minus-large.js +3 -8
- package/components/icon/icons/minus-small.component.d.ts +12 -0
- package/components/icon/icons/minus-small.component.js +19 -0
- package/components/icon/icons/minus-small.d.ts +2 -12
- package/components/icon/icons/minus-small.js +3 -8
- package/components/icon/icons/money-hand.component.d.ts +12 -0
- package/components/icon/icons/money-hand.component.js +19 -0
- package/components/icon/icons/money-hand.d.ts +2 -12
- package/components/icon/icons/money-hand.js +3 -8
- package/components/icon/icons/moneybag.component.d.ts +12 -0
- package/components/icon/icons/moneybag.component.js +19 -0
- package/components/icon/icons/moneybag.d.ts +2 -12
- package/components/icon/icons/moneybag.js +3 -8
- package/components/icon/icons/moon.component.d.ts +12 -0
- package/components/icon/icons/moon.component.js +19 -0
- package/components/icon/icons/moon.d.ts +2 -12
- package/components/icon/icons/moon.js +3 -8
- package/components/icon/icons/mute.component.d.ts +12 -0
- package/components/icon/icons/mute.component.js +19 -0
- package/components/icon/icons/mute.d.ts +2 -12
- package/components/icon/icons/mute.js +3 -8
- package/components/icon/icons/page-text.component.d.ts +12 -0
- package/components/icon/icons/page-text.component.js +19 -0
- package/components/icon/icons/page-text.d.ts +2 -12
- package/components/icon/icons/page-text.js +3 -8
- package/components/icon/icons/paperclip.component.d.ts +12 -0
- package/components/icon/icons/paperclip.component.js +19 -0
- package/components/icon/icons/paperclip.d.ts +2 -12
- package/components/icon/icons/paperclip.js +3 -8
- package/components/icon/icons/pause.component.d.ts +12 -0
- package/components/icon/icons/pause.component.js +19 -0
- package/components/icon/icons/pause.d.ts +2 -12
- package/components/icon/icons/pause.js +3 -8
- package/components/icon/icons/pencel-line.component.d.ts +12 -0
- package/components/icon/icons/pencel-line.component.js +19 -0
- package/components/icon/icons/pencel-line.d.ts +2 -12
- package/components/icon/icons/pencel-line.js +3 -8
- package/components/icon/icons/pencil-sparkle.component.d.ts +12 -0
- package/components/icon/icons/pencil-sparkle.component.js +19 -0
- package/components/icon/icons/pencil-sparkle.d.ts +2 -12
- package/components/icon/icons/pencil-sparkle.js +3 -8
- package/components/icon/icons/pencil-wave.component.d.ts +12 -0
- package/components/icon/icons/pencil-wave.component.js +19 -0
- package/components/icon/icons/pencil-wave.d.ts +2 -12
- package/components/icon/icons/pencil-wave.js +3 -8
- package/components/icon/icons/people-add.component.d.ts +12 -0
- package/components/icon/icons/people-add.component.js +19 -0
- package/components/icon/icons/people-add.d.ts +2 -12
- package/components/icon/icons/people-add.js +3 -8
- package/components/icon/icons/people-added.component.d.ts +12 -0
- package/components/icon/icons/people-added.component.js +19 -0
- package/components/icon/icons/people-added.d.ts +2 -12
- package/components/icon/icons/people-added.js +3 -8
- package/components/icon/icons/people-circle.component.d.ts +12 -0
- package/components/icon/icons/people-circle.component.js +19 -0
- package/components/icon/icons/people-circle.d.ts +2 -12
- package/components/icon/icons/people-circle.js +3 -8
- package/components/icon/icons/people-copy.component.d.ts +12 -0
- package/components/icon/icons/people-copy.component.js +19 -0
- package/components/icon/icons/people-copy.d.ts +2 -12
- package/components/icon/icons/people-copy.js +3 -8
- package/components/icon/icons/people-profile.component.d.ts +12 -0
- package/components/icon/icons/people-profile.component.js +19 -0
- package/components/icon/icons/people-profile.d.ts +2 -12
- package/components/icon/icons/people-profile.js +3 -8
- package/components/icon/icons/people-remove.component.d.ts +12 -0
- package/components/icon/icons/people-remove.component.js +19 -0
- package/components/icon/icons/people-remove.d.ts +2 -12
- package/components/icon/icons/people-remove.js +3 -8
- package/components/icon/icons/people.component.d.ts +12 -0
- package/components/icon/icons/people.component.js +19 -0
- package/components/icon/icons/people.d.ts +2 -12
- package/components/icon/icons/people.js +3 -8
- package/components/icon/icons/percent.component.d.ts +12 -0
- package/components/icon/icons/percent.component.js +19 -0
- package/components/icon/icons/percent.d.ts +2 -12
- package/components/icon/icons/percent.js +3 -8
- package/components/icon/icons/phone-dynamic-island.component.d.ts +12 -0
- package/components/icon/icons/phone-dynamic-island.component.js +19 -0
- package/components/icon/icons/phone-dynamic-island.d.ts +2 -12
- package/components/icon/icons/phone-dynamic-island.js +3 -8
- package/components/icon/icons/phone.component.d.ts +12 -0
- package/components/icon/icons/phone.component.js +19 -0
- package/components/icon/icons/phone.d.ts +2 -12
- package/components/icon/icons/phone.js +3 -8
- package/components/icon/icons/pie-chart.component.d.ts +12 -0
- package/components/icon/icons/pie-chart.component.js +19 -0
- package/components/icon/icons/pie-chart.d.ts +2 -12
- package/components/icon/icons/pie-chart.js +3 -8
- package/components/icon/icons/piggy-bank.component.d.ts +12 -0
- package/components/icon/icons/piggy-bank.component.js +19 -0
- package/components/icon/icons/piggy-bank.d.ts +2 -12
- package/components/icon/icons/piggy-bank.js +3 -8
- package/components/icon/icons/pin.component.d.ts +12 -0
- package/components/icon/icons/pin.component.js +19 -0
- package/components/icon/icons/pin.d.ts +2 -12
- package/components/icon/icons/pin.js +3 -8
- package/components/icon/icons/pinch.component.d.ts +12 -0
- package/components/icon/icons/pinch.component.js +19 -0
- package/components/icon/icons/pinch.d.ts +2 -12
- package/components/icon/icons/pinch.js +3 -8
- package/components/icon/icons/play-circle.component.d.ts +12 -0
- package/components/icon/icons/play-circle.component.js +19 -0
- package/components/icon/icons/play-circle.d.ts +2 -12
- package/components/icon/icons/play-circle.js +3 -8
- package/components/icon/icons/play.component.d.ts +12 -0
- package/components/icon/icons/play.component.js +19 -0
- package/components/icon/icons/play.d.ts +2 -12
- package/components/icon/icons/play.js +3 -8
- package/components/icon/icons/plus-large.component.d.ts +12 -0
- package/components/icon/icons/plus-large.component.js +19 -0
- package/components/icon/icons/plus-large.d.ts +2 -12
- package/components/icon/icons/plus-large.js +3 -8
- package/components/icon/icons/plus-small.component.d.ts +12 -0
- package/components/icon/icons/plus-small.component.js +19 -0
- package/components/icon/icons/plus-small.d.ts +2 -12
- package/components/icon/icons/plus-small.js +3 -8
- package/components/icon/icons/poop.component.d.ts +12 -0
- package/components/icon/icons/poop.component.js +19 -0
- package/components/icon/icons/poop.d.ts +2 -12
- package/components/icon/icons/poop.js +3 -8
- package/components/icon/icons/power-plant.component.d.ts +12 -0
- package/components/icon/icons/power-plant.component.js +19 -0
- package/components/icon/icons/power-plant.d.ts +2 -12
- package/components/icon/icons/power-plant.js +3 -8
- package/components/icon/icons/printer.component.d.ts +12 -0
- package/components/icon/icons/printer.component.js +19 -0
- package/components/icon/icons/printer.d.ts +2 -12
- package/components/icon/icons/printer.js +3 -8
- package/components/icon/icons/pure.d.ts +259 -0
- package/components/icon/icons/pure.js +259 -0
- package/components/icon/icons/push.component.d.ts +12 -0
- package/components/icon/icons/push.component.js +19 -0
- package/components/icon/icons/push.d.ts +2 -12
- package/components/icon/icons/push.js +3 -8
- package/components/icon/icons/qr-code.component.d.ts +12 -0
- package/components/icon/icons/qr-code.component.js +19 -0
- package/components/icon/icons/qr-code.d.ts +2 -12
- package/components/icon/icons/qr-code.js +3 -8
- package/components/icon/icons/rainy.component.d.ts +12 -0
- package/components/icon/icons/rainy.component.js +19 -0
- package/components/icon/icons/rainy.d.ts +2 -12
- package/components/icon/icons/rainy.js +3 -8
- package/components/icon/icons/raising-hand.component.d.ts +12 -0
- package/components/icon/icons/raising-hand.component.js +19 -0
- package/components/icon/icons/raising-hand.d.ts +2 -12
- package/components/icon/icons/raising-hand.js +3 -8
- package/components/icon/icons/reading-list.component.d.ts +12 -0
- package/components/icon/icons/reading-list.component.js +19 -0
- package/components/icon/icons/reading-list.d.ts +2 -12
- package/components/icon/icons/reading-list.js +3 -8
- package/components/icon/icons/receipt-bill.component.d.ts +12 -0
- package/components/icon/icons/receipt-bill.component.js +19 -0
- package/components/icon/icons/receipt-bill.d.ts +2 -12
- package/components/icon/icons/receipt-bill.js +3 -8
- package/components/icon/icons/receiption-bell.component.d.ts +12 -0
- package/components/icon/icons/receiption-bell.component.js +19 -0
- package/components/icon/icons/receiption-bell.d.ts +2 -12
- package/components/icon/icons/receiption-bell.js +3 -8
- package/components/icon/icons/robot.component.d.ts +12 -0
- package/components/icon/icons/robot.component.js +19 -0
- package/components/icon/icons/robot.d.ts +2 -12
- package/components/icon/icons/robot.js +3 -8
- package/components/icon/icons/rocket.component.d.ts +12 -0
- package/components/icon/icons/rocket.component.js +19 -0
- package/components/icon/icons/rocket.d.ts +2 -12
- package/components/icon/icons/rocket.js +3 -8
- package/components/icon/icons/school.component.d.ts +12 -0
- package/components/icon/icons/school.component.js +19 -0
- package/components/icon/icons/school.d.ts +2 -12
- package/components/icon/icons/school.js +3 -8
- package/components/icon/icons/scissors.component.d.ts +12 -0
- package/components/icon/icons/scissors.component.js +19 -0
- package/components/icon/icons/scissors.d.ts +2 -12
- package/components/icon/icons/scissors.js +3 -8
- package/components/icon/icons/search-menu.component.d.ts +12 -0
- package/components/icon/icons/search-menu.component.js +19 -0
- package/components/icon/icons/search-menu.d.ts +2 -12
- package/components/icon/icons/search-menu.js +3 -8
- package/components/icon/icons/seb.component.d.ts +12 -0
- package/components/icon/icons/seb.component.js +19 -0
- package/components/icon/icons/seb.d.ts +2 -13
- package/components/icon/icons/seb.js +3 -24
- package/components/icon/icons/settings-gear.component.d.ts +12 -0
- package/components/icon/icons/settings-gear.component.js +19 -0
- package/components/icon/icons/settings-gear.d.ts +2 -12
- package/components/icon/icons/settings-gear.js +3 -8
- package/components/icon/icons/settings-slider-hor.component.d.ts +12 -0
- package/components/icon/icons/settings-slider-hor.component.js +19 -0
- package/components/icon/icons/settings-slider-hor.d.ts +2 -12
- package/components/icon/icons/settings-slider-hor.js +3 -8
- package/components/icon/icons/settings-slider-three.component.d.ts +12 -0
- package/components/icon/icons/settings-slider-three.component.js +19 -0
- package/components/icon/icons/settings-slider-three.d.ts +2 -12
- package/components/icon/icons/settings-slider-three.js +3 -8
- package/components/icon/icons/settings-slider-ver.component.d.ts +12 -0
- package/components/icon/icons/settings-slider-ver.component.js +19 -0
- package/components/icon/icons/settings-slider-ver.d.ts +2 -12
- package/components/icon/icons/settings-slider-ver.js +3 -8
- package/components/icon/icons/share.component.d.ts +12 -0
- package/components/icon/icons/share.component.js +19 -0
- package/components/icon/icons/share.d.ts +2 -12
- package/components/icon/icons/share.js +3 -8
- package/components/icon/icons/shopping-bag.component.d.ts +12 -0
- package/components/icon/icons/shopping-bag.component.js +19 -0
- package/components/icon/icons/shopping-bag.d.ts +2 -12
- package/components/icon/icons/shopping-bag.js +3 -8
- package/components/icon/icons/smartwatch.component.d.ts +12 -0
- package/components/icon/icons/smartwatch.component.js +19 -0
- package/components/icon/icons/smartwatch.d.ts +2 -12
- package/components/icon/icons/smartwatch.js +3 -8
- package/components/icon/icons/solar-panel.component.d.ts +12 -0
- package/components/icon/icons/solar-panel.component.js +19 -0
- package/components/icon/icons/solar-panel.d.ts +2 -12
- package/components/icon/icons/solar-panel.js +3 -8
- package/components/icon/icons/solar.component.d.ts +12 -0
- package/components/icon/icons/solar.component.js +19 -0
- package/components/icon/icons/solar.d.ts +2 -12
- package/components/icon/icons/solar.js +3 -8
- package/components/icon/icons/square-arrow-top-right.component.d.ts +12 -0
- package/components/icon/icons/square-arrow-top-right.component.js +19 -0
- package/components/icon/icons/square-arrow-top-right.d.ts +2 -12
- package/components/icon/icons/square-arrow-top-right.js +3 -8
- package/components/icon/icons/square-behind-square.component.d.ts +12 -0
- package/components/icon/icons/square-behind-square.component.js +19 -0
- package/components/icon/icons/square-behind-square.d.ts +2 -12
- package/components/icon/icons/square-behind-square.js +3 -8
- package/components/icon/icons/square-check.component.d.ts +12 -0
- package/components/icon/icons/square-check.component.js +19 -0
- package/components/icon/icons/square-check.d.ts +2 -12
- package/components/icon/icons/square-check.js +3 -8
- package/components/icon/icons/square-grid-circle.component.d.ts +12 -0
- package/components/icon/icons/square-grid-circle.component.js +19 -0
- package/components/icon/icons/square-grid-circle.d.ts +2 -12
- package/components/icon/icons/square-grid-circle.js +3 -8
- package/components/icon/icons/square-info.component.d.ts +12 -0
- package/components/icon/icons/square-info.component.js +19 -0
- package/components/icon/icons/square-info.d.ts +2 -12
- package/components/icon/icons/square-info.js +3 -8
- package/components/icon/icons/square-minus.component.d.ts +12 -0
- package/components/icon/icons/square-minus.component.js +19 -0
- package/components/icon/icons/square-minus.d.ts +2 -12
- package/components/icon/icons/square-minus.js +3 -8
- package/components/icon/icons/square-placeholder.component.d.ts +12 -0
- package/components/icon/icons/square-placeholder.component.js +19 -0
- package/components/icon/icons/square-placeholder.d.ts +2 -12
- package/components/icon/icons/square-placeholder.js +3 -8
- package/components/icon/icons/square-plus.component.d.ts +12 -0
- package/components/icon/icons/square-plus.component.js +19 -0
- package/components/icon/icons/square-plus.d.ts +2 -12
- package/components/icon/icons/square-plus.js +3 -8
- package/components/icon/icons/square-x.component.d.ts +12 -0
- package/components/icon/icons/square-x.component.js +19 -0
- package/components/icon/icons/square-x.d.ts +2 -12
- package/components/icon/icons/square-x.js +3 -8
- package/components/icon/icons/star.component.d.ts +12 -0
- package/components/icon/icons/star.component.js +19 -0
- package/components/icon/icons/star.d.ts +2 -12
- package/components/icon/icons/star.js +3 -8
- package/components/icon/icons/store.component.d.ts +12 -0
- package/components/icon/icons/store.component.js +19 -0
- package/components/icon/icons/store.d.ts +2 -12
- package/components/icon/icons/store.js +3 -8
- package/components/icon/icons/suitcase-work.component.d.ts +12 -0
- package/components/icon/icons/suitcase-work.component.js +19 -0
- package/components/icon/icons/suitcase-work.d.ts +2 -12
- package/components/icon/icons/suitcase-work.js +3 -8
- package/components/icon/icons/sun.component.d.ts +12 -0
- package/components/icon/icons/sun.component.js +19 -0
- package/components/icon/icons/sun.d.ts +2 -12
- package/components/icon/icons/sun.js +3 -8
- package/components/icon/icons/tag.component.d.ts +12 -0
- package/components/icon/icons/tag.component.js +19 -0
- package/components/icon/icons/tag.d.ts +2 -12
- package/components/icon/icons/tag.js +3 -8
- package/components/icon/icons/television.component.d.ts +12 -0
- package/components/icon/icons/television.component.js +19 -0
- package/components/icon/icons/television.d.ts +2 -12
- package/components/icon/icons/television.js +3 -8
- package/components/icon/icons/tennis.component.d.ts +12 -0
- package/components/icon/icons/tennis.component.js +19 -0
- package/components/icon/icons/tennis.d.ts +2 -12
- package/components/icon/icons/tennis.js +3 -8
- package/components/icon/icons/text-edit.component.d.ts +12 -0
- package/components/icon/icons/text-edit.component.js +19 -0
- package/components/icon/icons/text-edit.d.ts +2 -12
- package/components/icon/icons/text-edit.js +3 -8
- package/components/icon/icons/thermostat.component.d.ts +12 -0
- package/components/icon/icons/thermostat.component.js +19 -0
- package/components/icon/icons/thermostat.d.ts +2 -12
- package/components/icon/icons/thermostat.js +3 -8
- package/components/icon/icons/thumbs-down.component.d.ts +12 -0
- package/components/icon/icons/thumbs-down.component.js +19 -0
- package/components/icon/icons/thumbs-down.d.ts +2 -12
- package/components/icon/icons/thumbs-down.js +3 -8
- package/components/icon/icons/thumbs-up.component.d.ts +12 -0
- package/components/icon/icons/thumbs-up.component.js +19 -0
- package/components/icon/icons/thumbs-up.d.ts +2 -12
- package/components/icon/icons/thumbs-up.js +3 -8
- package/components/icon/icons/todos.component.d.ts +12 -0
- package/components/icon/icons/todos.component.js +19 -0
- package/components/icon/icons/todos.d.ts +2 -12
- package/components/icon/icons/todos.js +3 -8
- package/components/icon/icons/trading-view-candles.component.d.ts +12 -0
- package/components/icon/icons/trading-view-candles.component.js +19 -0
- package/components/icon/icons/trading-view-candles.d.ts +2 -12
- package/components/icon/icons/trading-view-candles.js +3 -8
- package/components/icon/icons/trash-can.component.d.ts +12 -0
- package/components/icon/icons/trash-can.component.js +19 -0
- package/components/icon/icons/trash-can.d.ts +2 -12
- package/components/icon/icons/trash-can.js +3 -8
- package/components/icon/icons/tree.component.d.ts +12 -0
- package/components/icon/icons/tree.component.js +19 -0
- package/components/icon/icons/tree.d.ts +2 -12
- package/components/icon/icons/tree.js +3 -8
- package/components/icon/icons/trending-four.component.d.ts +12 -0
- package/components/icon/icons/trending-four.component.js +19 -0
- package/components/icon/icons/trending-four.d.ts +2 -12
- package/components/icon/icons/trending-four.js +3 -8
- package/components/icon/icons/trending-one.component.d.ts +12 -0
- package/components/icon/icons/trending-one.component.js +19 -0
- package/components/icon/icons/trending-one.d.ts +2 -12
- package/components/icon/icons/trending-one.js +3 -8
- package/components/icon/icons/trending-three.component.d.ts +12 -0
- package/components/icon/icons/trending-three.component.js +19 -0
- package/components/icon/icons/trending-three.d.ts +2 -12
- package/components/icon/icons/trending-three.js +3 -8
- package/components/icon/icons/trending-two.component.d.ts +12 -0
- package/components/icon/icons/trending-two.component.js +19 -0
- package/components/icon/icons/trending-two.d.ts +2 -12
- package/components/icon/icons/trending-two.js +3 -8
- package/components/icon/icons/triangle-exclamation.component.d.ts +12 -0
- package/components/icon/icons/triangle-exclamation.component.js +19 -0
- package/components/icon/icons/triangle-exclamation.d.ts +2 -12
- package/components/icon/icons/triangle-exclamation.js +3 -8
- package/components/icon/icons/truck.component.d.ts +12 -0
- package/components/icon/icons/truck.component.js +19 -0
- package/components/icon/icons/truck.d.ts +2 -12
- package/components/icon/icons/truck.js +3 -8
- package/components/icon/icons/umbrella-security.component.d.ts +12 -0
- package/components/icon/icons/umbrella-security.component.js +19 -0
- package/components/icon/icons/umbrella-security.d.ts +2 -12
- package/components/icon/icons/umbrella-security.js +3 -8
- package/components/icon/icons/unlocked.component.d.ts +12 -0
- package/components/icon/icons/unlocked.component.js +19 -0
- package/components/icon/icons/unlocked.d.ts +2 -12
- package/components/icon/icons/unlocked.js +3 -8
- package/components/icon/icons/vertical-alignment-right.component.d.ts +12 -0
- package/components/icon/icons/vertical-alignment-right.component.js +19 -0
- package/components/icon/icons/vertical-alignment-right.d.ts +2 -12
- package/components/icon/icons/vertical-alignment-right.js +3 -8
- package/components/icon/icons/volume-full.component.d.ts +12 -0
- package/components/icon/icons/volume-full.component.js +19 -0
- package/components/icon/icons/volume-full.d.ts +2 -12
- package/components/icon/icons/volume-full.js +3 -8
- package/components/icon/icons/volume-half.component.d.ts +12 -0
- package/components/icon/icons/volume-half.component.js +19 -0
- package/components/icon/icons/volume-half.d.ts +2 -12
- package/components/icon/icons/volume-half.js +3 -8
- package/components/icon/icons/volume-off.component.d.ts +12 -0
- package/components/icon/icons/volume-off.component.js +19 -0
- package/components/icon/icons/volume-off.d.ts +2 -12
- package/components/icon/icons/volume-off.js +3 -8
- package/components/icon/icons/wallet.component.d.ts +12 -0
- package/components/icon/icons/wallet.component.js +19 -0
- package/components/icon/icons/wallet.d.ts +2 -12
- package/components/icon/icons/wallet.js +3 -8
- package/components/icon/icons/warning-sign.component.d.ts +12 -0
- package/components/icon/icons/warning-sign.component.js +19 -0
- package/components/icon/icons/warning-sign.d.ts +2 -12
- package/components/icon/icons/warning-sign.js +3 -8
- package/components/icon/icons/zap.component.d.ts +12 -0
- package/components/icon/icons/zap.component.js +19 -0
- package/components/icon/icons/zap.d.ts +2 -12
- package/components/icon/icons/zap.js +3 -8
- package/components/icon/icons/zoom-in.component.d.ts +12 -0
- package/components/icon/icons/zoom-in.component.js +19 -0
- package/components/icon/icons/zoom-in.d.ts +2 -12
- package/components/icon/icons/zoom-in.js +3 -8
- package/components/icon/icons/zoom-out.component.d.ts +12 -0
- package/components/icon/icons/zoom-out.component.js +19 -0
- package/components/icon/icons/zoom-out.d.ts +2 -12
- package/components/icon/icons/zoom-out.js +3 -8
- package/components/icon/index.js +1 -9
- package/components/img/img.component.d.ts +77 -0
- package/components/img/img.component.js +56 -0
- package/components/img/img.d.ts +2 -77
- package/components/img/img.js +3 -12
- package/components/img/img.style.js +24 -0
- package/components/img/index.js +1 -15
- package/components/index.d.ts +26 -23
- package/components/index.js +36 -211
- package/components/input/index.js +1 -42
- package/components/input/input.component.d.ts +71 -0
- package/components/input/input.component.js +251 -0
- package/components/input/input.d.ts +2 -77
- package/components/input/input.js +3 -39
- package/components/input/input.styles.js +66 -0
- package/components/input/input.trans.styles.js +8 -9
- package/components/link/index.js +1 -16
- package/components/link/link.component.d.ts +48 -0
- package/components/link/link.component.js +76 -0
- package/components/link/link.d.ts +2 -48
- package/components/link/link.js +3 -13
- package/components/link/link.styles.js +39 -0
- package/components/mask/index.js +1 -19
- package/components/mask/mask.component.d.ts +34 -0
- package/components/mask/mask.component.js +73 -0
- package/components/mask/mask.d.ts +2 -34
- package/components/mask/mask.js +3 -16
- package/components/mask/mask.style.js +24 -0
- package/components/menu-button/index.js +1 -16
- package/components/menu-button/menu-button.component.d.ts +54 -0
- package/components/menu-button/menu-button.component.js +99 -0
- package/components/menu-button/menu-button.d.ts +2 -54
- package/components/menu-button/menu-button.js +3 -13
- package/components/menu-button/menu-button.styles.js +138 -0
- package/components/popover/backdrop.component.d.ts +10 -0
- package/components/popover/backdrop.component.js +39 -0
- package/components/popover/backdrop.d.ts +2 -10
- package/components/popover/backdrop.js +3 -8
- package/components/popover/index.js +2 -23
- package/components/popover/popover.component.d.ts +127 -0
- package/components/popover/popover.component.js +427 -0
- package/components/popover/popover.d.ts +2 -128
- package/components/popover/popover.js +3 -15
- package/components/popover/popover.styles.js +94 -0
- package/components/popover/popover.trans.styles.js +7 -9
- package/components/popover/popover.trans.styles.scss.js +4 -0
- package/components/pure.d.ts +37 -0
- package/components/pure.js +37 -0
- package/components/radio/index.js +2 -46
- package/components/radio/radio-group/radio-group.component.d.ts +53 -0
- package/components/radio/radio-group/radio-group.component.js +282 -0
- package/components/radio/radio-group/radio-group.d.ts +2 -55
- package/components/radio/radio-group/radio-group.js +3 -36
- package/components/radio/radio-group/radio-group.styles.js +92 -0
- package/components/radio/radio.component.d.ts +43 -0
- package/components/radio/radio.component.js +116 -0
- package/components/radio/radio.d.ts +2 -44
- package/components/radio/radio.js +3 -14
- package/components/radio/radio.styles.js +113 -0
- package/components/rich-text/index.js +1 -19
- package/components/rich-text/rich-text.component.d.ts +44 -0
- package/components/rich-text/rich-text.component.js +83 -0
- package/components/rich-text/rich-text.d.ts +2 -44
- package/components/rich-text/rich-text.js +3 -16
- package/components/rich-text/rich-text.styles.js +287 -0
- package/components/segmented-control/index.js +1 -24
- package/components/segmented-control/segment/index.js +1 -18
- package/components/segmented-control/segment/segment.component.d.ts +30 -0
- package/components/segmented-control/segment/segment.component.js +56 -0
- package/components/segmented-control/segment/segment.d.ts +2 -30
- package/components/segmented-control/segment/segment.js +3 -14
- package/components/segmented-control/segment/segment.style.css.js +4 -0
- package/components/segmented-control/segment/segment.trans.styles.js +7 -9
- package/components/segmented-control/segment/segment.trans.styles.scss.js +4 -0
- package/components/segmented-control/segmented-control.component.d.ts +44 -0
- package/components/segmented-control/segmented-control.component.js +235 -0
- package/components/segmented-control/segmented-control.d.ts +2 -47
- package/components/segmented-control/segmented-control.js +3 -21
- package/components/segmented-control/segmented-control.style.css.js +4 -0
- package/components/segmented-control/segmented-control.trans.styles.css.js +4 -0
- package/components/segmented-control/segmented-control.trans.styles.js +12 -9
- package/components/select/index.js +1 -41
- package/components/select/select.component.d.ts +76 -0
- package/components/select/select.component.js +287 -0
- package/components/select/select.d.ts +2 -81
- package/components/select/select.js +3 -38
- package/components/select/select.styles.js +52 -0
- package/components/select/select.trans.styles.js +12 -27
- package/components/select/select.trans.styles.scss.js +4 -0
- package/components/signal/index.js +1 -13
- package/components/signal/signal.component.d.ts +13 -0
- package/components/signal/signal.component.js +27 -0
- package/components/signal/signal.d.ts +2 -13
- package/components/signal/signal.js +3 -10
- package/components/signal/signal.style.js +48 -0
- package/components/spacer/index.js +1 -13
- package/components/spacer/spacer.component.d.ts +29 -0
- package/components/spacer/spacer.component.js +28 -0
- package/components/spacer/spacer.d.ts +2 -29
- package/components/spacer/spacer.js +3 -10
- package/components/spinner/index.d.ts +1 -1
- package/components/spinner/index.js +1 -18
- package/components/spinner/spinner.component.js +146 -0
- package/components/spinner/spinner.d.ts +2 -0
- package/components/spinner/spinner.js +6 -0
- package/components/spinner/spinner.styles.js +138 -0
- package/components/text/default-typography.styles.js +64 -0
- package/components/text/index.js +1 -19
- package/components/text/text.component.d.ts +42 -0
- package/components/text/text.component.js +68 -0
- package/components/text/text.d.ts +2 -42
- package/components/text/text.js +3 -15
- package/components/text/text.style.js +17 -0
- package/components/textarea/index.js +1 -43
- package/components/textarea/textarea.component.d.ts +86 -0
- package/components/textarea/textarea.component.js +371 -0
- package/components/textarea/textarea.d.ts +2 -91
- package/components/textarea/textarea.js +3 -40
- package/components/textarea/textarea.styles.js +71 -0
- package/components/theme/chlorophyll-tokens.scss.js +4 -0
- package/components/theme/index.js +1 -16
- package/components/theme/theme.component.d.ts +30 -0
- package/components/theme/theme.component.js +79 -0
- package/components/theme/theme.d.ts +2 -30
- package/components/theme/theme.js +3 -13
- package/components/theme/theme.trans.styles.js +10 -9
- package/components/video/index.js +1 -15
- package/components/video/video.component.d.ts +109 -0
- package/components/video/video.component.js +96 -0
- package/components/video/video.d.ts +2 -109
- package/components/video/video.js +3 -12
- package/components/video/video.style.js +24 -0
- package/gds-element.d.ts +9 -0
- package/gds-element.js +44 -0
- package/generated/locale-codes.js +28 -0
- package/generated/locales/da.d.ts +1 -0
- package/generated/locales/da.js +49 -0
- package/generated/locales/de.d.ts +1 -0
- package/generated/locales/de.js +49 -0
- package/generated/locales/fi.d.ts +1 -0
- package/generated/locales/fi.js +49 -0
- package/generated/locales/fr.d.ts +1 -0
- package/generated/locales/fr.js +49 -0
- package/generated/locales/it.d.ts +1 -0
- package/generated/locales/it.js +49 -0
- package/generated/locales/nl.d.ts +1 -0
- package/generated/locales/nl.js +49 -0
- package/generated/locales/no.d.ts +1 -0
- package/generated/locales/no.js +49 -0
- package/generated/locales/sv.d.ts +1 -0
- package/generated/locales/sv.js +49 -0
- package/generated/react/backdrop/index.d.ts +366 -0
- package/generated/react/backdrop/index.js +12 -0
- package/generated/react/badge/index.d.ts +387 -0
- package/generated/react/badge/index.js +12 -0
- package/generated/react/button/index.d.ts +405 -0
- package/generated/react/button/index.js +12 -0
- package/generated/react/calendar/index.d.ts +380 -0
- package/generated/react/calendar/index.js +12 -0
- package/generated/react/card/index.d.ts +423 -0
- package/generated/react/card/index.js +12 -0
- package/generated/react/coachmark/index.d.ts +375 -0
- package/generated/react/coachmark/index.js +12 -0
- package/generated/react/container/index.d.ts +421 -0
- package/generated/react/container/index.js +12 -0
- package/generated/react/context-menu/index.d.ts +380 -0
- package/generated/react/context-menu/index.js +12 -0
- package/generated/react/datepicker/index.d.ts +412 -0
- package/generated/react/datepicker/index.js +12 -0
- package/generated/react/dialog/index.d.ts +370 -0
- package/generated/react/dialog/index.js +12 -0
- package/generated/react/div/index.d.ts +421 -0
- package/generated/react/div/index.js +12 -0
- package/generated/react/divider/index.d.ts +369 -0
- package/generated/react/divider/index.js +12 -0
- package/generated/react/dropdown/index.d.ts +398 -0
- package/generated/react/dropdown/index.js +12 -0
- package/generated/react/fab/index.d.ts +408 -0
- package/generated/react/fab/index.js +12 -0
- package/generated/react/filter-chip/index.d.ts +367 -0
- package/generated/react/filter-chip/index.js +12 -0
- package/generated/react/filter-chips/index.d.ts +384 -0
- package/generated/react/filter-chips/index.js +12 -0
- package/generated/react/flex/index.d.ts +421 -0
- package/generated/react/flex/index.js +12 -0
- package/generated/react/form-control-footer/index.d.ts +367 -0
- package/generated/react/form-control-footer/index.js +14 -0
- package/generated/react/form-control-header/index.d.ts +366 -0
- package/generated/react/form-control-header/index.js +14 -0
- package/generated/react/grid/index.d.ts +423 -0
- package/generated/react/grid/index.js +12 -0
- package/generated/react/grouped-list/index.d.ts +366 -0
- package/generated/react/grouped-list/index.js +12 -0
- package/generated/react/icons/icon/index.d.ts +371 -0
- package/generated/react/icons/icon/index.js +12 -0
- package/generated/react/icons/icon-airplane-up/index.d.ts +371 -0
- package/generated/react/icons/icon-airplane-up/index.js +14 -0
- package/generated/react/icons/icon-archive/index.d.ts +371 -0
- package/generated/react/icons/icon-archive/index.js +12 -0
- package/generated/react/icons/icon-arrow/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow/index.js +12 -0
- package/generated/react/icons/icon-arrow-box-left/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-box-left/index.js +14 -0
- package/generated/react/icons/icon-arrow-box-right/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-box-right/index.js +14 -0
- package/generated/react/icons/icon-arrow-down/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-down/index.js +14 -0
- package/generated/react/icons/icon-arrow-inbox/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-inbox/index.js +14 -0
- package/generated/react/icons/icon-arrow-left/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-left/index.js +14 -0
- package/generated/react/icons/icon-arrow-left-right/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-left-right/index.js +14 -0
- package/generated/react/icons/icon-arrow-out-of-box/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-out-of-box/index.js +14 -0
- package/generated/react/icons/icon-arrow-right/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-right/index.js +14 -0
- package/generated/react/icons/icon-arrow-right-circle/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-right-circle/index.js +14 -0
- package/generated/react/icons/icon-arrow-right-down-circle/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-right-down-circle/index.js +14 -0
- package/generated/react/icons/icon-arrow-right-up-circle/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-right-up-circle/index.js +14 -0
- package/generated/react/icons/icon-arrow-rotate-clockwise/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-rotate-clockwise/index.js +14 -0
- package/generated/react/icons/icon-arrow-rotate-counter-clockwise/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-rotate-counter-clockwise/index.js +14 -0
- package/generated/react/icons/icon-arrow-rotate-left-right/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-rotate-left-right/index.js +14 -0
- package/generated/react/icons/icon-arrow-rotate-right-left/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-rotate-right-left/index.js +14 -0
- package/generated/react/icons/icon-arrow-share-left/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-share-left/index.js +14 -0
- package/generated/react/icons/icon-arrow-share-right/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-share-right/index.js +14 -0
- package/generated/react/icons/icon-arrow-up/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-up/index.js +12 -0
- package/generated/react/icons/icon-arrow-wall-down/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-wall-down/index.js +14 -0
- package/generated/react/icons/icon-arrow-wall-left/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-wall-left/index.js +14 -0
- package/generated/react/icons/icon-arrow-wall-right/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-wall-right/index.js +14 -0
- package/generated/react/icons/icon-arrow-wall-up/index.d.ts +371 -0
- package/generated/react/icons/icon-arrow-wall-up/index.js +14 -0
- package/generated/react/icons/icon-arrows-repeat/index.d.ts +371 -0
- package/generated/react/icons/icon-arrows-repeat/index.js +14 -0
- package/generated/react/icons/icon-at/index.d.ts +371 -0
- package/generated/react/icons/icon-at/index.js +12 -0
- package/generated/react/icons/icon-back/index.d.ts +371 -0
- package/generated/react/icons/icon-back/index.js +12 -0
- package/generated/react/icons/icon-bag/index.d.ts +371 -0
- package/generated/react/icons/icon-bag/index.js +12 -0
- package/generated/react/icons/icon-bank/index.d.ts +371 -0
- package/generated/react/icons/icon-bank/index.js +12 -0
- package/generated/react/icons/icon-banknote/index.d.ts +371 -0
- package/generated/react/icons/icon-banknote/index.js +12 -0
- package/generated/react/icons/icon-barcode/index.d.ts +371 -0
- package/generated/react/icons/icon-barcode/index.js +12 -0
- package/generated/react/icons/icon-bars-three/index.d.ts +371 -0
- package/generated/react/icons/icon-bars-three/index.js +14 -0
- package/generated/react/icons/icon-bars-two/index.d.ts +371 -0
- package/generated/react/icons/icon-bars-two/index.js +12 -0
- package/generated/react/icons/icon-battery-loading/index.d.ts +371 -0
- package/generated/react/icons/icon-battery-loading/index.js +14 -0
- package/generated/react/icons/icon-bell/index.d.ts +371 -0
- package/generated/react/icons/icon-bell/index.js +12 -0
- package/generated/react/icons/icon-block/index.d.ts +371 -0
- package/generated/react/icons/icon-block/index.js +12 -0
- package/generated/react/icons/icon-book/index.d.ts +371 -0
- package/generated/react/icons/icon-book/index.js +12 -0
- package/generated/react/icons/icon-bookmark/index.d.ts +371 -0
- package/generated/react/icons/icon-bookmark/index.js +12 -0
- package/generated/react/icons/icon-bookmark-check/index.d.ts +371 -0
- package/generated/react/icons/icon-bookmark-check/index.js +14 -0
- package/generated/react/icons/icon-bookmark-delete/index.d.ts +371 -0
- package/generated/react/icons/icon-bookmark-delete/index.js +14 -0
- package/generated/react/icons/icon-bookmark-plus/index.d.ts +371 -0
- package/generated/react/icons/icon-bookmark-plus/index.js +14 -0
- package/generated/react/icons/icon-bookmark-remove/index.d.ts +371 -0
- package/generated/react/icons/icon-bookmark-remove/index.js +14 -0
- package/generated/react/icons/icon-books/index.d.ts +371 -0
- package/generated/react/icons/icon-books/index.js +12 -0
- package/generated/react/icons/icon-brand-app-store/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-app-store/index.js +14 -0
- package/generated/react/icons/icon-brand-apple-music/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-apple-music/index.js +14 -0
- package/generated/react/icons/icon-brand-bankid/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-bankid/index.js +14 -0
- package/generated/react/icons/icon-brand-chrome/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-chrome/index.js +14 -0
- package/generated/react/icons/icon-brand-facebook/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-facebook/index.js +14 -0
- package/generated/react/icons/icon-brand-figma/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-figma/index.js +14 -0
- package/generated/react/icons/icon-brand-github/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-github/index.js +14 -0
- package/generated/react/icons/icon-brand-green/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-green/index.js +14 -0
- package/generated/react/icons/icon-brand-instagram/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-instagram/index.js +14 -0
- package/generated/react/icons/icon-brand-linkedin/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-linkedin/index.js +14 -0
- package/generated/react/icons/icon-brand-play-store/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-play-store/index.js +14 -0
- package/generated/react/icons/icon-brand-rss-feed/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-rss-feed/index.js +14 -0
- package/generated/react/icons/icon-brand-seb/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-seb/index.js +12 -0
- package/generated/react/icons/icon-brand-spotify/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-spotify/index.js +14 -0
- package/generated/react/icons/icon-brand-x/index.d.ts +371 -0
- package/generated/react/icons/icon-brand-x/index.js +12 -0
- package/generated/react/icons/icon-brush/index.d.ts +371 -0
- package/generated/react/icons/icon-brush/index.js +12 -0
- package/generated/react/icons/icon-bubble/index.d.ts +371 -0
- package/generated/react/icons/icon-bubble/index.js +12 -0
- package/generated/react/icons/icon-bubble-annotation/index.d.ts +371 -0
- package/generated/react/icons/icon-bubble-annotation/index.js +14 -0
- package/generated/react/icons/icon-bubble-dots/index.d.ts +371 -0
- package/generated/react/icons/icon-bubble-dots/index.js +14 -0
- package/generated/react/icons/icon-bubble-question/index.d.ts +371 -0
- package/generated/react/icons/icon-bubble-question/index.js +14 -0
- package/generated/react/icons/icon-bubble-quotes/index.d.ts +371 -0
- package/generated/react/icons/icon-bubble-quotes/index.js +14 -0
- package/generated/react/icons/icon-bubble-text/index.d.ts +371 -0
- package/generated/react/icons/icon-bubble-text/index.js +14 -0
- package/generated/react/icons/icon-bubble-wide-annotation/index.d.ts +371 -0
- package/generated/react/icons/icon-bubble-wide-annotation/index.js +14 -0
- package/generated/react/icons/icon-bubbles/index.d.ts +371 -0
- package/generated/react/icons/icon-bubbles/index.js +12 -0
- package/generated/react/icons/icon-buildings/index.d.ts +371 -0
- package/generated/react/icons/icon-buildings/index.js +12 -0
- package/generated/react/icons/icon-cain-link/index.d.ts +371 -0
- package/generated/react/icons/icon-cain-link/index.js +12 -0
- package/generated/react/icons/icon-calculator/index.d.ts +371 -0
- package/generated/react/icons/icon-calculator/index.js +14 -0
- package/generated/react/icons/icon-calendar/index.d.ts +371 -0
- package/generated/react/icons/icon-calendar/index.js +12 -0
- package/generated/react/icons/icon-calendar-check/index.d.ts +371 -0
- package/generated/react/icons/icon-calendar-check/index.js +14 -0
- package/generated/react/icons/icon-calender-add/index.d.ts +371 -0
- package/generated/react/icons/icon-calender-add/index.js +14 -0
- package/generated/react/icons/icon-call/index.d.ts +371 -0
- package/generated/react/icons/icon-call/index.js +12 -0
- package/generated/react/icons/icon-car/index.d.ts +371 -0
- package/generated/react/icons/icon-car/index.js +12 -0
- package/generated/react/icons/icon-charging-station/index.d.ts +371 -0
- package/generated/react/icons/icon-charging-station/index.js +14 -0
- package/generated/react/icons/icon-chart-one/index.d.ts +371 -0
- package/generated/react/icons/icon-chart-one/index.js +12 -0
- package/generated/react/icons/icon-chart-presentation/index.d.ts +371 -0
- package/generated/react/icons/icon-chart-presentation/index.js +14 -0
- package/generated/react/icons/icon-chart-two/index.d.ts +371 -0
- package/generated/react/icons/icon-chart-two/index.js +12 -0
- package/generated/react/icons/icon-checklist/index.d.ts +371 -0
- package/generated/react/icons/icon-checklist/index.js +12 -0
- package/generated/react/icons/icon-checkmark/index.d.ts +371 -0
- package/generated/react/icons/icon-checkmark/index.js +12 -0
- package/generated/react/icons/icon-chevron-bottom/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-bottom/index.js +14 -0
- package/generated/react/icons/icon-chevron-double-down/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-double-down/index.js +14 -0
- package/generated/react/icons/icon-chevron-double-left/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-double-left/index.js +14 -0
- package/generated/react/icons/icon-chevron-double-right/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-double-right/index.js +14 -0
- package/generated/react/icons/icon-chevron-double-up/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-double-up/index.js +14 -0
- package/generated/react/icons/icon-chevron-grabber-vertical/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-grabber-vertical/index.js +14 -0
- package/generated/react/icons/icon-chevron-left/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-left/index.js +14 -0
- package/generated/react/icons/icon-chevron-right/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-right/index.js +14 -0
- package/generated/react/icons/icon-chevron-top/index.d.ts +371 -0
- package/generated/react/icons/icon-chevron-top/index.js +14 -0
- package/generated/react/icons/icon-circle-check/index.d.ts +371 -0
- package/generated/react/icons/icon-circle-check/index.js +14 -0
- package/generated/react/icons/icon-circle-info/index.d.ts +371 -0
- package/generated/react/icons/icon-circle-info/index.js +14 -0
- package/generated/react/icons/icon-circle-minus/index.d.ts +371 -0
- package/generated/react/icons/icon-circle-minus/index.js +14 -0
- package/generated/react/icons/icon-circle-placeholder-on/index.d.ts +371 -0
- package/generated/react/icons/icon-circle-placeholder-on/index.js +14 -0
- package/generated/react/icons/icon-circle-plus/index.d.ts +371 -0
- package/generated/react/icons/icon-circle-plus/index.js +14 -0
- package/generated/react/icons/icon-circle-questionmark/index.d.ts +371 -0
- package/generated/react/icons/icon-circle-questionmark/index.js +14 -0
- package/generated/react/icons/icon-circle-x/index.d.ts +371 -0
- package/generated/react/icons/icon-circle-x/index.js +12 -0
- package/generated/react/icons/icon-circles-three/index.d.ts +371 -0
- package/generated/react/icons/icon-circles-three/index.js +14 -0
- package/generated/react/icons/icon-clock/index.d.ts +371 -0
- package/generated/react/icons/icon-clock/index.js +12 -0
- package/generated/react/icons/icon-cloud-upload/index.d.ts +371 -0
- package/generated/react/icons/icon-cloud-upload/index.js +14 -0
- package/generated/react/icons/icon-cloudy-sun/index.d.ts +371 -0
- package/generated/react/icons/icon-cloudy-sun/index.js +14 -0
- package/generated/react/icons/icon-compass-round/index.d.ts +371 -0
- package/generated/react/icons/icon-compass-round/index.js +14 -0
- package/generated/react/icons/icon-credit-card/index.d.ts +371 -0
- package/generated/react/icons/icon-credit-card/index.js +14 -0
- package/generated/react/icons/icon-cross-large/index.d.ts +371 -0
- package/generated/react/icons/icon-cross-large/index.js +14 -0
- package/generated/react/icons/icon-cross-small/index.d.ts +371 -0
- package/generated/react/icons/icon-cross-small/index.js +14 -0
- package/generated/react/icons/icon-cup-hot/index.d.ts +371 -0
- package/generated/react/icons/icon-cup-hot/index.js +12 -0
- package/generated/react/icons/icon-devices/index.d.ts +371 -0
- package/generated/react/icons/icon-devices/index.js +12 -0
- package/generated/react/icons/icon-direction/index.d.ts +371 -0
- package/generated/react/icons/icon-direction/index.js +12 -0
- package/generated/react/icons/icon-dollar/index.d.ts +371 -0
- package/generated/react/icons/icon-dollar/index.js +12 -0
- package/generated/react/icons/icon-dot-grid-one-horizontal/index.d.ts +371 -0
- package/generated/react/icons/icon-dot-grid-one-horizontal/index.js +14 -0
- package/generated/react/icons/icon-dot-grid-one-vertical/index.d.ts +371 -0
- package/generated/react/icons/icon-dot-grid-one-vertical/index.js +14 -0
- package/generated/react/icons/icon-dot-grid-three/index.d.ts +371 -0
- package/generated/react/icons/icon-dot-grid-three/index.js +14 -0
- package/generated/react/icons/icon-dot-grid-two/index.d.ts +371 -0
- package/generated/react/icons/icon-dot-grid-two/index.js +14 -0
- package/generated/react/icons/icon-email/index.d.ts +371 -0
- package/generated/react/icons/icon-email/index.js +12 -0
- package/generated/react/icons/icon-euro/index.d.ts +371 -0
- package/generated/react/icons/icon-euro/index.js +12 -0
- package/generated/react/icons/icon-eye-open/index.d.ts +371 -0
- package/generated/react/icons/icon-eye-open/index.js +12 -0
- package/generated/react/icons/icon-eye-slash/index.d.ts +371 -0
- package/generated/react/icons/icon-eye-slash/index.js +12 -0
- package/generated/react/icons/icon-fashion/index.d.ts +371 -0
- package/generated/react/icons/icon-fashion/index.js +12 -0
- package/generated/react/icons/icon-fast-forward/index.d.ts +371 -0
- package/generated/react/icons/icon-fast-forward/index.js +14 -0
- package/generated/react/icons/icon-file-bend/index.d.ts +371 -0
- package/generated/react/icons/icon-file-bend/index.js +12 -0
- package/generated/react/icons/icon-file-chart/index.d.ts +371 -0
- package/generated/react/icons/icon-file-chart/index.js +14 -0
- package/generated/react/icons/icon-file-text/index.d.ts +371 -0
- package/generated/react/icons/icon-file-text/index.js +12 -0
- package/generated/react/icons/icon-files/index.d.ts +371 -0
- package/generated/react/icons/icon-files/index.js +12 -0
- package/generated/react/icons/icon-filter/index.d.ts +371 -0
- package/generated/react/icons/icon-filter/index.js +12 -0
- package/generated/react/icons/icon-flag/index.d.ts +371 -0
- package/generated/react/icons/icon-flag/index.js +12 -0
- package/generated/react/icons/icon-floppy-disk/index.d.ts +371 -0
- package/generated/react/icons/icon-floppy-disk/index.js +14 -0
- package/generated/react/icons/icon-focus/index.d.ts +371 -0
- package/generated/react/icons/icon-focus/index.js +12 -0
- package/generated/react/icons/icon-focus-square/index.d.ts +371 -0
- package/generated/react/icons/icon-focus-square/index.js +14 -0
- package/generated/react/icons/icon-folder/index.d.ts +371 -0
- package/generated/react/icons/icon-folder/index.js +12 -0
- package/generated/react/icons/icon-folder-add-right/index.d.ts +371 -0
- package/generated/react/icons/icon-folder-add-right/index.js +14 -0
- package/generated/react/icons/icon-folder-paper/index.d.ts +371 -0
- package/generated/react/icons/icon-folder-paper/index.js +14 -0
- package/generated/react/icons/icon-folder-upload/index.d.ts +371 -0
- package/generated/react/icons/icon-folder-upload/index.js +14 -0
- package/generated/react/icons/icon-globus/index.d.ts +371 -0
- package/generated/react/icons/icon-globus/index.js +12 -0
- package/generated/react/icons/icon-graduate-cap/index.d.ts +371 -0
- package/generated/react/icons/icon-graduate-cap/index.js +14 -0
- package/generated/react/icons/icon-group/index.d.ts +371 -0
- package/generated/react/icons/icon-group/index.js +12 -0
- package/generated/react/icons/icon-growth/index.d.ts +371 -0
- package/generated/react/icons/icon-growth/index.js +12 -0
- package/generated/react/icons/icon-headphones/index.d.ts +371 -0
- package/generated/react/icons/icon-headphones/index.js +14 -0
- package/generated/react/icons/icon-heart/index.d.ts +371 -0
- package/generated/react/icons/icon-heart/index.js +12 -0
- package/generated/react/icons/icon-heart-beat/index.d.ts +371 -0
- package/generated/react/icons/icon-heart-beat/index.js +14 -0
- package/generated/react/icons/icon-history/index.d.ts +371 -0
- package/generated/react/icons/icon-history/index.js +12 -0
- package/generated/react/icons/icon-home-energy-one/index.d.ts +371 -0
- package/generated/react/icons/icon-home-energy-one/index.js +14 -0
- package/generated/react/icons/icon-home-energy-two/index.d.ts +371 -0
- package/generated/react/icons/icon-home-energy-two/index.js +14 -0
- package/generated/react/icons/icon-home-open/index.d.ts +371 -0
- package/generated/react/icons/icon-home-open/index.js +12 -0
- package/generated/react/icons/icon-home-roof/index.d.ts +371 -0
- package/generated/react/icons/icon-home-roof/index.js +12 -0
- package/generated/react/icons/icon-horizontal-alignment-bottom/index.d.ts +371 -0
- package/generated/react/icons/icon-horizontal-alignment-bottom/index.js +14 -0
- package/generated/react/icons/icon-images/index.d.ts +371 -0
- package/generated/react/icons/icon-images/index.js +12 -0
- package/generated/react/icons/icon-invite/index.d.ts +371 -0
- package/generated/react/icons/icon-invite/index.js +12 -0
- package/generated/react/icons/icon-knife-spoon/index.d.ts +371 -0
- package/generated/react/icons/icon-knife-spoon/index.js +14 -0
- package/generated/react/icons/icon-law/index.d.ts +371 -0
- package/generated/react/icons/icon-law/index.js +12 -0
- package/generated/react/icons/icon-light-bulb/index.d.ts +371 -0
- package/generated/react/icons/icon-light-bulb/index.js +14 -0
- package/generated/react/icons/icon-light-bulb-simple/index.d.ts +371 -0
- package/generated/react/icons/icon-light-bulb-simple/index.js +14 -0
- package/generated/react/icons/icon-lightning/index.d.ts +371 -0
- package/generated/react/icons/icon-lightning/index.js +12 -0
- package/generated/react/icons/icon-line-chart-four/index.d.ts +371 -0
- package/generated/react/icons/icon-line-chart-four/index.js +14 -0
- package/generated/react/icons/icon-line-chart-one/index.d.ts +371 -0
- package/generated/react/icons/icon-line-chart-one/index.js +14 -0
- package/generated/react/icons/icon-line-chart-three/index.d.ts +371 -0
- package/generated/react/icons/icon-line-chart-three/index.js +14 -0
- package/generated/react/icons/icon-line-chart-two/index.d.ts +371 -0
- package/generated/react/icons/icon-line-chart-two/index.js +14 -0
- package/generated/react/icons/icon-lock/index.d.ts +371 -0
- package/generated/react/icons/icon-lock/index.js +12 -0
- package/generated/react/icons/icon-macbook-air/index.d.ts +371 -0
- package/generated/react/icons/icon-macbook-air/index.js +14 -0
- package/generated/react/icons/icon-magnifying-glass/index.d.ts +371 -0
- package/generated/react/icons/icon-magnifying-glass/index.js +14 -0
- package/generated/react/icons/icon-maintenance/index.d.ts +371 -0
- package/generated/react/icons/icon-maintenance/index.js +14 -0
- package/generated/react/icons/icon-map-pin/index.d.ts +371 -0
- package/generated/react/icons/icon-map-pin/index.js +12 -0
- package/generated/react/icons/icon-megaphone/index.d.ts +371 -0
- package/generated/react/icons/icon-megaphone/index.js +12 -0
- package/generated/react/icons/icon-minus-large/index.d.ts +371 -0
- package/generated/react/icons/icon-minus-large/index.js +14 -0
- package/generated/react/icons/icon-minus-small/index.d.ts +371 -0
- package/generated/react/icons/icon-minus-small/index.js +14 -0
- package/generated/react/icons/icon-money-hand/index.d.ts +371 -0
- package/generated/react/icons/icon-money-hand/index.js +14 -0
- package/generated/react/icons/icon-moneybag/index.d.ts +371 -0
- package/generated/react/icons/icon-moneybag/index.js +12 -0
- package/generated/react/icons/icon-moon/index.d.ts +371 -0
- package/generated/react/icons/icon-moon/index.js +12 -0
- package/generated/react/icons/icon-mute/index.d.ts +371 -0
- package/generated/react/icons/icon-mute/index.js +12 -0
- package/generated/react/icons/icon-page-text/index.d.ts +371 -0
- package/generated/react/icons/icon-page-text/index.js +12 -0
- package/generated/react/icons/icon-paperclip/index.d.ts +371 -0
- package/generated/react/icons/icon-paperclip/index.js +12 -0
- package/generated/react/icons/icon-pause/index.d.ts +371 -0
- package/generated/react/icons/icon-pause/index.js +12 -0
- package/generated/react/icons/icon-pencel-line/index.d.ts +371 -0
- package/generated/react/icons/icon-pencel-line/index.js +14 -0
- package/generated/react/icons/icon-pencil-sparkle/index.d.ts +371 -0
- package/generated/react/icons/icon-pencil-sparkle/index.js +14 -0
- package/generated/react/icons/icon-pencil-wave/index.d.ts +371 -0
- package/generated/react/icons/icon-pencil-wave/index.js +14 -0
- package/generated/react/icons/icon-people/index.d.ts +371 -0
- package/generated/react/icons/icon-people/index.js +12 -0
- package/generated/react/icons/icon-people-add/index.d.ts +371 -0
- package/generated/react/icons/icon-people-add/index.js +14 -0
- package/generated/react/icons/icon-people-added/index.d.ts +371 -0
- package/generated/react/icons/icon-people-added/index.js +14 -0
- package/generated/react/icons/icon-people-circle/index.d.ts +371 -0
- package/generated/react/icons/icon-people-circle/index.js +14 -0
- package/generated/react/icons/icon-people-copy/index.d.ts +371 -0
- package/generated/react/icons/icon-people-copy/index.js +14 -0
- package/generated/react/icons/icon-people-profile/index.d.ts +371 -0
- package/generated/react/icons/icon-people-profile/index.js +14 -0
- package/generated/react/icons/icon-people-remove/index.d.ts +371 -0
- package/generated/react/icons/icon-people-remove/index.js +14 -0
- package/generated/react/icons/icon-percent/index.d.ts +371 -0
- package/generated/react/icons/icon-percent/index.js +12 -0
- package/generated/react/icons/icon-phone/index.d.ts +371 -0
- package/generated/react/icons/icon-phone/index.js +12 -0
- package/generated/react/icons/icon-phone-dynamic-island/index.d.ts +371 -0
- package/generated/react/icons/icon-phone-dynamic-island/index.js +14 -0
- package/generated/react/icons/icon-pie-chart/index.d.ts +371 -0
- package/generated/react/icons/icon-pie-chart/index.js +12 -0
- package/generated/react/icons/icon-piggy-bank/index.d.ts +371 -0
- package/generated/react/icons/icon-piggy-bank/index.js +14 -0
- package/generated/react/icons/icon-pin/index.d.ts +371 -0
- package/generated/react/icons/icon-pin/index.js +12 -0
- package/generated/react/icons/icon-pinch/index.d.ts +371 -0
- package/generated/react/icons/icon-pinch/index.js +12 -0
- package/generated/react/icons/icon-play/index.d.ts +371 -0
- package/generated/react/icons/icon-play/index.js +12 -0
- package/generated/react/icons/icon-play-circle/index.d.ts +371 -0
- package/generated/react/icons/icon-play-circle/index.js +14 -0
- package/generated/react/icons/icon-plus-large/index.d.ts +371 -0
- package/generated/react/icons/icon-plus-large/index.js +14 -0
- package/generated/react/icons/icon-plus-small/index.d.ts +371 -0
- package/generated/react/icons/icon-plus-small/index.js +14 -0
- package/generated/react/icons/icon-poop/index.d.ts +371 -0
- package/generated/react/icons/icon-poop/index.js +12 -0
- package/generated/react/icons/icon-power-plant/index.d.ts +371 -0
- package/generated/react/icons/icon-power-plant/index.js +14 -0
- package/generated/react/icons/icon-printer/index.d.ts +371 -0
- package/generated/react/icons/icon-printer/index.js +12 -0
- package/generated/react/icons/icon-push/index.d.ts +371 -0
- package/generated/react/icons/icon-push/index.js +12 -0
- package/generated/react/icons/icon-qr-code/index.d.ts +371 -0
- package/generated/react/icons/icon-qr-code/index.js +12 -0
- package/generated/react/icons/icon-rainy/index.d.ts +371 -0
- package/generated/react/icons/icon-rainy/index.js +12 -0
- package/generated/react/icons/icon-raising-hand/index.d.ts +371 -0
- package/generated/react/icons/icon-raising-hand/index.js +14 -0
- package/generated/react/icons/icon-reading-list/index.d.ts +371 -0
- package/generated/react/icons/icon-reading-list/index.js +14 -0
- package/generated/react/icons/icon-receipt-bill/index.d.ts +371 -0
- package/generated/react/icons/icon-receipt-bill/index.js +14 -0
- package/generated/react/icons/icon-receiption-bell/index.d.ts +371 -0
- package/generated/react/icons/icon-receiption-bell/index.js +14 -0
- package/generated/react/icons/icon-robot/index.d.ts +371 -0
- package/generated/react/icons/icon-robot/index.js +12 -0
- package/generated/react/icons/icon-rocket/index.d.ts +371 -0
- package/generated/react/icons/icon-rocket/index.js +12 -0
- package/generated/react/icons/icon-school/index.d.ts +371 -0
- package/generated/react/icons/icon-school/index.js +12 -0
- package/generated/react/icons/icon-scissors/index.d.ts +371 -0
- package/generated/react/icons/icon-scissors/index.js +12 -0
- package/generated/react/icons/icon-search-menu/index.d.ts +371 -0
- package/generated/react/icons/icon-search-menu/index.js +14 -0
- package/generated/react/icons/icon-seb/index.d.ts +371 -0
- package/generated/react/icons/icon-seb/index.js +12 -0
- package/generated/react/icons/icon-settings-gear/index.d.ts +371 -0
- package/generated/react/icons/icon-settings-gear/index.js +14 -0
- package/generated/react/icons/icon-settings-slider-hor/index.d.ts +371 -0
- package/generated/react/icons/icon-settings-slider-hor/index.js +14 -0
- package/generated/react/icons/icon-settings-slider-three/index.d.ts +371 -0
- package/generated/react/icons/icon-settings-slider-three/index.js +14 -0
- package/generated/react/icons/icon-settings-slider-ver/index.d.ts +371 -0
- package/generated/react/icons/icon-settings-slider-ver/index.js +14 -0
- package/generated/react/icons/icon-share/index.d.ts +371 -0
- package/generated/react/icons/icon-share/index.js +12 -0
- package/generated/react/icons/icon-shopping-bag/index.d.ts +371 -0
- package/generated/react/icons/icon-shopping-bag/index.js +14 -0
- package/generated/react/icons/icon-smartwatch/index.d.ts +371 -0
- package/generated/react/icons/icon-smartwatch/index.js +14 -0
- package/generated/react/icons/icon-solar/index.d.ts +371 -0
- package/generated/react/icons/icon-solar/index.js +12 -0
- package/generated/react/icons/icon-solar-panel/index.d.ts +371 -0
- package/generated/react/icons/icon-solar-panel/index.js +14 -0
- package/generated/react/icons/icon-square-arrow-top-right/index.d.ts +371 -0
- package/generated/react/icons/icon-square-arrow-top-right/index.js +14 -0
- package/generated/react/icons/icon-square-behind-square/index.d.ts +371 -0
- package/generated/react/icons/icon-square-behind-square/index.js +14 -0
- package/generated/react/icons/icon-square-check/index.d.ts +371 -0
- package/generated/react/icons/icon-square-check/index.js +14 -0
- package/generated/react/icons/icon-square-grid-circle/index.d.ts +371 -0
- package/generated/react/icons/icon-square-grid-circle/index.js +14 -0
- package/generated/react/icons/icon-square-info/index.d.ts +371 -0
- package/generated/react/icons/icon-square-info/index.js +14 -0
- package/generated/react/icons/icon-square-minus/index.d.ts +371 -0
- package/generated/react/icons/icon-square-minus/index.js +14 -0
- package/generated/react/icons/icon-square-placeholder/index.d.ts +371 -0
- package/generated/react/icons/icon-square-placeholder/index.js +14 -0
- package/generated/react/icons/icon-square-plus/index.d.ts +371 -0
- package/generated/react/icons/icon-square-plus/index.js +14 -0
- package/generated/react/icons/icon-square-x/index.d.ts +371 -0
- package/generated/react/icons/icon-square-x/index.js +12 -0
- package/generated/react/icons/icon-star/index.d.ts +371 -0
- package/generated/react/icons/icon-star/index.js +12 -0
- package/generated/react/icons/icon-store/index.d.ts +371 -0
- package/generated/react/icons/icon-store/index.js +12 -0
- package/generated/react/icons/icon-suitcase-work/index.d.ts +371 -0
- package/generated/react/icons/icon-suitcase-work/index.js +14 -0
- package/generated/react/icons/icon-sun/index.d.ts +371 -0
- package/generated/react/icons/icon-sun/index.js +12 -0
- package/generated/react/icons/icon-tag/index.d.ts +371 -0
- package/generated/react/icons/icon-tag/index.js +12 -0
- package/generated/react/icons/icon-television/index.d.ts +371 -0
- package/generated/react/icons/icon-television/index.js +14 -0
- package/generated/react/icons/icon-tennis/index.d.ts +371 -0
- package/generated/react/icons/icon-tennis/index.js +12 -0
- package/generated/react/icons/icon-text-edit/index.d.ts +371 -0
- package/generated/react/icons/icon-text-edit/index.js +12 -0
- package/generated/react/icons/icon-thermostat/index.d.ts +371 -0
- package/generated/react/icons/icon-thermostat/index.js +14 -0
- package/generated/react/icons/icon-thumbs-down/index.d.ts +371 -0
- package/generated/react/icons/icon-thumbs-down/index.js +14 -0
- package/generated/react/icons/icon-thumbs-up/index.d.ts +371 -0
- package/generated/react/icons/icon-thumbs-up/index.js +12 -0
- package/generated/react/icons/icon-todos/index.d.ts +371 -0
- package/generated/react/icons/icon-todos/index.js +12 -0
- package/generated/react/icons/icon-trading-view-candles/index.d.ts +371 -0
- package/generated/react/icons/icon-trading-view-candles/index.js +14 -0
- package/generated/react/icons/icon-trash-can/index.d.ts +371 -0
- package/generated/react/icons/icon-trash-can/index.js +12 -0
- package/generated/react/icons/icon-tree/index.d.ts +371 -0
- package/generated/react/icons/icon-tree/index.js +12 -0
- package/generated/react/icons/icon-trending-four/index.d.ts +371 -0
- package/generated/react/icons/icon-trending-four/index.js +14 -0
- package/generated/react/icons/icon-trending-one/index.d.ts +371 -0
- package/generated/react/icons/icon-trending-one/index.js +14 -0
- package/generated/react/icons/icon-trending-three/index.d.ts +371 -0
- package/generated/react/icons/icon-trending-three/index.js +14 -0
- package/generated/react/icons/icon-trending-two/index.d.ts +371 -0
- package/generated/react/icons/icon-trending-two/index.js +14 -0
- package/generated/react/icons/icon-triangle-exclamation/index.d.ts +371 -0
- package/generated/react/icons/icon-triangle-exclamation/index.js +14 -0
- package/generated/react/icons/icon-truck/index.d.ts +371 -0
- package/generated/react/icons/icon-truck/index.js +12 -0
- package/generated/react/icons/icon-umbrella-security/index.d.ts +371 -0
- package/generated/react/icons/icon-umbrella-security/index.js +14 -0
- package/generated/react/icons/icon-unlocked/index.d.ts +371 -0
- package/generated/react/icons/icon-unlocked/index.js +12 -0
- package/generated/react/icons/icon-vertical-alignment-right/index.d.ts +371 -0
- package/generated/react/icons/icon-vertical-alignment-right/index.js +14 -0
- package/generated/react/icons/icon-volume-full/index.d.ts +371 -0
- package/generated/react/icons/icon-volume-full/index.js +14 -0
- package/generated/react/icons/icon-volume-half/index.d.ts +371 -0
- package/generated/react/icons/icon-volume-half/index.js +14 -0
- package/generated/react/icons/icon-volume-off/index.d.ts +371 -0
- package/generated/react/icons/icon-volume-off/index.js +14 -0
- package/generated/react/icons/icon-wallet/index.d.ts +371 -0
- package/generated/react/icons/icon-wallet/index.js +12 -0
- package/generated/react/icons/icon-warning-sign/index.d.ts +371 -0
- package/generated/react/icons/icon-warning-sign/index.js +14 -0
- package/generated/react/icons/icon-zap/index.d.ts +371 -0
- package/generated/react/icons/icon-zap/index.js +12 -0
- package/generated/react/icons/icon-zoom-in/index.d.ts +371 -0
- package/generated/react/icons/icon-zoom-in/index.js +12 -0
- package/generated/react/icons/icon-zoom-out/index.d.ts +371 -0
- package/generated/react/icons/icon-zoom-out/index.js +12 -0
- package/generated/react/img/index.d.ts +386 -0
- package/generated/react/img/index.js +12 -0
- package/generated/react/index.d.ts +303 -0
- package/generated/react/index.js +303 -0
- package/generated/react/input/index.d.ts +406 -0
- package/generated/react/input/index.js +12 -0
- package/generated/react/link/index.d.ts +386 -0
- package/generated/react/link/index.js +12 -0
- package/generated/react/list-item/index.d.ts +365 -0
- package/generated/react/list-item/index.js +12 -0
- package/generated/react/mask/index.d.ts +427 -0
- package/generated/react/mask/index.js +12 -0
- package/generated/react/menu-button/index.d.ts +386 -0
- package/generated/react/menu-button/index.js +12 -0
- package/generated/react/menu-item/index.d.ts +365 -0
- package/generated/react/menu-item/index.js +12 -0
- package/generated/react/option/index.d.ts +368 -0
- package/generated/react/option/index.js +12 -0
- package/generated/react/popover/index.d.ts +393 -0
- package/generated/react/popover/index.js +12 -0
- package/generated/react/radio/index.d.ts +372 -0
- package/generated/react/radio/index.js +12 -0
- package/generated/react/radio-group/index.d.ts +402 -0
- package/generated/react/radio-group/index.js +12 -0
- package/generated/react/rich-text/index.d.ts +363 -0
- package/generated/react/rich-text/index.js +12 -0
- package/generated/react/segment/index.d.ts +376 -0
- package/generated/react/segment/index.js +12 -0
- package/generated/react/segmented-control/index.d.ts +385 -0
- package/generated/react/segmented-control/index.js +14 -0
- package/generated/react/select/index.d.ts +403 -0
- package/generated/react/select/index.js +12 -0
- package/generated/react/signal/index.d.ts +366 -0
- package/generated/react/signal/index.js +12 -0
- package/generated/react/spacer/index.d.ts +366 -0
- package/generated/react/spacer/index.js +12 -0
- package/generated/react/spinner/index.d.ts +382 -0
- package/generated/react/spinner/index.js +12 -0
- package/generated/react/text/index.d.ts +425 -0
- package/generated/react/text/index.js +12 -0
- package/generated/react/textarea/index.d.ts +406 -0
- package/generated/react/textarea/index.js +12 -0
- package/generated/react/theme/index.d.ts +367 -0
- package/generated/react/theme/index.js +12 -0
- package/generated/react/video/index.d.ts +405 -0
- package/generated/react/video/index.js +12 -0
- package/index.js +2 -226
- package/localization.js +1 -458
- package/package.json +375 -4
- package/primitives/field-base/field-base.component.d.ts +41 -0
- package/primitives/field-base/field-base.component.js +168 -0
- package/primitives/field-base/field-base.d.ts +2 -41
- package/primitives/field-base/field-base.js +3 -12
- package/primitives/field-base/field-base.styles.js +143 -0
- package/primitives/field-base/field-base.trans.styles.js +11 -0
- package/primitives/field-base/field-base.trans.styles.scss.js +4 -0
- package/primitives/field-base/index.js +1 -16
- package/primitives/form-control-footer/form-control-footer.component.d.ts +11 -0
- package/primitives/form-control-footer/form-control-footer.component.js +72 -0
- package/primitives/form-control-footer/form-control-footer.d.ts +2 -13
- package/primitives/form-control-footer/form-control-footer.js +3 -21
- package/primitives/form-control-footer/form-control-footer.styles.js +45 -0
- package/primitives/form-control-footer/index.js +1 -25
- package/primitives/form-control-header/form-control-header.component.d.ts +19 -0
- package/primitives/form-control-header/form-control-header.component.js +111 -0
- package/primitives/form-control-header/form-control-header.d.ts +2 -22
- package/primitives/form-control-header/form-control-header.js +3 -27
- package/primitives/form-control-header/form-control-header.styles.js +60 -0
- package/primitives/form-control-header/index.js +1 -31
- package/primitives/listbox/index.js +1 -22
- package/primitives/listbox/listbox.component.d.ts +59 -0
- package/primitives/listbox/listbox.component.js +131 -0
- package/primitives/listbox/listbox.d.ts +2 -59
- package/primitives/listbox/listbox.js +3 -18
- package/primitives/listbox/listbox.styles.js +16 -0
- package/primitives/listbox/listbox.trans.styles.js +18 -0
- package/primitives/listbox/listbox.trans.styles.scss.js +4 -0
- package/primitives/listbox/option.component.d.ts +51 -0
- package/primitives/listbox/option.component.js +124 -0
- package/primitives/listbox/option.d.ts +2 -52
- package/primitives/listbox/option.js +3 -16
- package/primitives/listbox/option.styles.js +91 -0
- package/primitives/listbox/option.trans.styles.scss.js +4 -0
- package/primitives/menu/index.js +1 -18
- package/primitives/menu/menu-heading.component.d.ts +6 -0
- package/primitives/menu/menu-heading.component.js +27 -0
- package/primitives/menu/menu-heading.d.ts +2 -6
- package/primitives/menu/menu-heading.js +3 -11
- package/primitives/menu/menu-heading.styles.js +20 -0
- package/primitives/menu/menu-heading.trans.styles.scss.js +4 -0
- package/primitives/menu/menu-item.component.d.ts +12 -0
- package/primitives/menu/menu-item.component.js +47 -0
- package/primitives/menu/menu-item.d.ts +2 -12
- package/primitives/menu/menu-item.js +3 -12
- package/primitives/menu/menu.component.d.ts +23 -0
- package/primitives/menu/menu.component.js +50 -0
- package/primitives/menu/menu.d.ts +2 -24
- package/primitives/menu/menu.js +3 -14
- package/primitives/ripple/index.js +1 -13
- package/primitives/ripple/ripple.component.d.ts +7 -0
- package/primitives/ripple/ripple.component.js +40 -0
- package/primitives/ripple/ripple.d.ts +2 -7
- package/primitives/ripple/ripple.js +4 -10
- package/primitives/ripple/ripple.styles.scss.js +4 -0
- package/primitives/selection-controls/index.js +1 -15
- package/primitives/selection-controls/selection-field-label.component.d.ts +36 -0
- package/primitives/selection-controls/selection-field-label.component.js +55 -0
- package/primitives/selection-controls/selection-field-label.d.ts +2 -36
- package/primitives/selection-controls/selection-field-label.js +3 -11
- package/primitives/selection-controls/selection-field-label.styles.js +47 -0
- package/scoping.js +1 -20
- package/storybook-docs/story.js +20 -0
- package/storybook-docs/version.js +24 -0
- package/tokens/dark.css.js +4 -0
- package/tokens/light.css.js +4 -0
- package/tokens/motion.css.js +4 -0
- package/tokens/shadow.css.js +4 -0
- package/tokens/size.css.js +4 -0
- package/tokens/text.css.js +4 -0
- package/tokens.style.js +32 -0
- package/transitional-styles.js +1 -13
- package/utils/controllers/dynamic-styles-controller.js +198 -0
- package/utils/controllers/listbox-kb-nav-controller.js +63 -0
- package/utils/decorators/index.js +3 -0
- package/utils/decorators/observe-light-dom.js +28 -0
- package/utils/decorators/resize-observer.js +26 -0
- package/utils/decorators/style-expression-property.js +56 -0
- package/utils/decorators/watch-media-query.js +33 -0
- package/utils/decorators/watch.js +29 -0
- package/utils/directives/forward-attributes.js +33 -0
- package/utils/directives/index.js +1 -0
- package/utils/global-styles.js +76 -0
- package/utils/helpers/attribute-converters.js +30 -0
- package/utils/helpers/custom-element-scoping.d.ts +9 -3
- package/utils/helpers/custom-element-scoping.js +83 -0
- package/utils/helpers/id.js +5 -0
- package/utils/helpers/index.js +2 -0
- package/utils/helpers/is-server.d.ts +4 -0
- package/utils/helpers/is-server.js +5 -0
- package/utils/helpers/strip-white-space.js +16 -0
- package/utils/helpers/style-expression-helpers.js +47 -0
- package/utils/helpers/style-expression-parser-tester.js +10 -0
- package/utils/helpers/style-expression-parser.js +119 -0
- package/utils/helpers/unwrap-slots.js +11 -0
- package/utils/localization/localization.js +48 -0
- package/utils/mixins/declarative-layout-mixins.js +134 -0
- package/utils/mixins/focusable.js +35 -0
- package/utils/mixins/mixin-builder.js +22 -0
- package/utils/react.d.ts +23 -0
- package/utils/react.js +8 -0
- package/utils/testing/index.js +86 -0
- package/utils/transitional-styles/transitional-styles.js +117 -0
- package/chunks/chunk.27ESPAQW.js +0 -26
- package/chunks/chunk.27GFEP5I.js +0 -26
- package/chunks/chunk.2BJVQ5WE.js +0 -171
- package/chunks/chunk.2HSDRQOL.js +0 -26
- package/chunks/chunk.2JGBCOIQ.js +0 -65
- package/chunks/chunk.2LEAAHOV.js +0 -26
- package/chunks/chunk.2MA2Q2EL.js +0 -128
- package/chunks/chunk.2R3NOZAU.js +0 -26
- package/chunks/chunk.2U23GGF6.js +0 -84
- package/chunks/chunk.2V42DJ3Q.js +0 -26
- package/chunks/chunk.2WDDCIOI.js +0 -26
- package/chunks/chunk.2WGI2MCL.js +0 -26
- package/chunks/chunk.2Y5ZQGHA.js +0 -80
- package/chunks/chunk.34B5UVKS.js +0 -26
- package/chunks/chunk.3CSHMXLC.js +0 -26
- package/chunks/chunk.3D2F3OWD.js +0 -26
- package/chunks/chunk.3G3VQPT4.js +0 -26
- package/chunks/chunk.3MPENKRW.js +0 -26
- package/chunks/chunk.3O3SHBGC.js +0 -26
- package/chunks/chunk.3RUBQNJO.js +0 -26
- package/chunks/chunk.3XP6XGLU.js +0 -26
- package/chunks/chunk.4BTA6LDM.js +0 -26
- package/chunks/chunk.4KCHBEFS.js +0 -237
- package/chunks/chunk.4MUS7E4X.js +0 -26
- package/chunks/chunk.4UV6LDJF.js +0 -26
- package/chunks/chunk.54WM2ZYE.js +0 -47
- package/chunks/chunk.5CGVW5UR.js +0 -26
- package/chunks/chunk.5DBBLJJA.js +0 -26
- package/chunks/chunk.5DCT6GKI.js +0 -26
- package/chunks/chunk.5HUS6CAH.js +0 -0
- package/chunks/chunk.5IJXAIVD.js +0 -26
- package/chunks/chunk.5ISAPEKA.js +0 -26
- package/chunks/chunk.5PVE5TVF.js +0 -245
- package/chunks/chunk.5WRGUYO6.js +0 -26
- package/chunks/chunk.5YT55C7U.js +0 -26
- package/chunks/chunk.66YCTB4B.js +0 -26
- package/chunks/chunk.67NE7XG7.js +0 -26
- package/chunks/chunk.6GQSVJEL.js +0 -26
- package/chunks/chunk.6INVF6SE.js +0 -26
- package/chunks/chunk.6KHRFVAN.js +0 -26
- package/chunks/chunk.6LWG2GLW.js +0 -26
- package/chunks/chunk.6NLFT7A7.js +0 -26
- package/chunks/chunk.6QMJ7GQK.js +0 -71
- package/chunks/chunk.76QWARGM.js +0 -48
- package/chunks/chunk.7CBXLVHM.js +0 -26
- package/chunks/chunk.7GC6JLT5.js +0 -0
- package/chunks/chunk.7N6MGDGQ.js +0 -26
- package/chunks/chunk.7ODSW7VG.js +0 -168
- package/chunks/chunk.7SORDQST.js +0 -26
- package/chunks/chunk.7SP3ZJXS.js +0 -26
- package/chunks/chunk.7VCM4QKM.js +0 -26
- package/chunks/chunk.A2YYFBGS.js +0 -26
- package/chunks/chunk.A32EZFLP.js +0 -26
- package/chunks/chunk.A33RU5YS.js +0 -26
- package/chunks/chunk.A4LJTY3G.js +0 -26
- package/chunks/chunk.A55IIHZ6.js +0 -26
- package/chunks/chunk.AC7B52BQ.js +0 -26
- package/chunks/chunk.AFAZ62PP.js +0 -26
- package/chunks/chunk.AGXOOUSB.js +0 -26
- package/chunks/chunk.AICHPB77.js +0 -26
- package/chunks/chunk.ALFDKEVN.js +0 -0
- package/chunks/chunk.APYP46EI.js +0 -26
- package/chunks/chunk.AQD2UADL.js +0 -26
- package/chunks/chunk.AQIE3FP5.js +0 -367
- package/chunks/chunk.B33ZSHOK.js +0 -26
- package/chunks/chunk.B7ZOSVCQ.js +0 -203
- package/chunks/chunk.BFWUWSHV.js +0 -26
- package/chunks/chunk.BG4J2FYH.js +0 -26
- package/chunks/chunk.BJ7GUYCH.js +0 -26
- package/chunks/chunk.BK2SJQPM.js +0 -26
- package/chunks/chunk.BRRAWXEY.js +0 -26
- package/chunks/chunk.BVABLOOH.js +0 -26
- package/chunks/chunk.BXPEJ6BA.js +0 -26
- package/chunks/chunk.BYBIPKUV.js +0 -37
- package/chunks/chunk.BZZKWFXY.js +0 -26
- package/chunks/chunk.C3ECHGX7.js +0 -31
- package/chunks/chunk.CFOVU3LB.js +0 -26
- package/chunks/chunk.CHTTE27N.js +0 -26
- package/chunks/chunk.CK2UGCPG.js +0 -0
- package/chunks/chunk.CMG7JLAQ.js +0 -125
- package/chunks/chunk.CVUAVVCA.js +0 -26
- package/chunks/chunk.D25ZVPKJ.js +0 -26
- package/chunks/chunk.D4XS3SCZ.js +0 -26
- package/chunks/chunk.DDFFFMD6.js +0 -26
- package/chunks/chunk.DHMPBJVZ.js +0 -423
- package/chunks/chunk.DI23R63U.js +0 -32
- package/chunks/chunk.DJ2OXJZN.js +0 -0
- package/chunks/chunk.DKCNWSXG.js +0 -26
- package/chunks/chunk.E5NV42NQ.js +0 -26
- package/chunks/chunk.E62NOHQC.js +0 -78
- package/chunks/chunk.EEMMFQ4J.js +0 -26
- package/chunks/chunk.EGDKMWM2.js +0 -71
- package/chunks/chunk.EIUCAZIT.js +0 -26
- package/chunks/chunk.EJS2SP3J.js +0 -26
- package/chunks/chunk.ENISNS3N.js +0 -26
- package/chunks/chunk.ENP5RWID.js +0 -26
- package/chunks/chunk.EPOZTX25.js +0 -44
- package/chunks/chunk.ER5Z735I.js +0 -803
- package/chunks/chunk.ERCQ26W2.js +0 -26
- package/chunks/chunk.ETCLZDYW.js +0 -26
- package/chunks/chunk.ETVHE6PT.js +0 -26
- package/chunks/chunk.EU4I2UZQ.js +0 -26
- package/chunks/chunk.EYTRUOUS.js +0 -138
- package/chunks/chunk.EZIWNZ7P.js +0 -26
- package/chunks/chunk.F3ULCIZ6.js +0 -26
- package/chunks/chunk.FIJ6MDCL.js +0 -26
- package/chunks/chunk.FJ7RRP3P.js +0 -26
- package/chunks/chunk.FN5IV5SY.js +0 -26
- package/chunks/chunk.FNMDSVCX.js +0 -26
- package/chunks/chunk.FOADYT4P.js +0 -26
- package/chunks/chunk.FRDCW3PJ.js +0 -26
- package/chunks/chunk.FZ6EMVQ7.js +0 -26
- package/chunks/chunk.G4NK6EGE.js +0 -26
- package/chunks/chunk.GHPJXTRJ.js +0 -26
- package/chunks/chunk.GMYZGVKN.js +0 -26
- package/chunks/chunk.GPXQ3FRZ.js +0 -26
- package/chunks/chunk.GQLOP6PN.js +0 -26
- package/chunks/chunk.GSJZGOIL.js +0 -26
- package/chunks/chunk.GUAH7AIO.js +0 -85
- package/chunks/chunk.GYNT4GSJ.js +0 -26
- package/chunks/chunk.GZXA4OXN.js +0 -26
- package/chunks/chunk.H2TI4CFQ.js +0 -26
- package/chunks/chunk.H3GHNY6F.js +0 -26
- package/chunks/chunk.H4QXCNY2.js +0 -26
- package/chunks/chunk.H73VYS7S.js +0 -26
- package/chunks/chunk.HBUJSVUI.js +0 -211
- package/chunks/chunk.HBYFQVEA.js +0 -26
- package/chunks/chunk.HE7TU5KA.js +0 -26
- package/chunks/chunk.HEZEUVHT.js +0 -382
- package/chunks/chunk.HGRHP2WQ.js +0 -26
- package/chunks/chunk.HJVDDOHF.js +0 -339
- package/chunks/chunk.HO2KZJXR.js +0 -117
- package/chunks/chunk.HQKRSZQY.js +0 -26
- package/chunks/chunk.HQTDO7RS.js +0 -26
- package/chunks/chunk.HY34QP33.js +0 -26
- package/chunks/chunk.I2TQQETN.js +0 -26
- package/chunks/chunk.I4HTCYSY.js +0 -26
- package/chunks/chunk.IDC3LBYV.js +0 -26
- package/chunks/chunk.IF6HJQNG.js +0 -26
- package/chunks/chunk.IHOWZ4OX.js +0 -26
- package/chunks/chunk.IIL4R2LS.js +0 -26
- package/chunks/chunk.IK5XFPLS.js +0 -55
- package/chunks/chunk.IO6Z47AF.js +0 -81
- package/chunks/chunk.IQEJDNG2.js +0 -26
- package/chunks/chunk.ISQPG7AI.js +0 -26
- package/chunks/chunk.IUEGBQHG.js +0 -26
- package/chunks/chunk.IVRW42EY.js +0 -26
- package/chunks/chunk.IVXPCPKC.js +0 -26
- package/chunks/chunk.J2TMCRRG.js +0 -26
- package/chunks/chunk.J2URJTQZ.js +0 -26
- package/chunks/chunk.J3IASPFC.js +0 -26
- package/chunks/chunk.JGTSJ4J6.js +0 -0
- package/chunks/chunk.JLHTIH74.js +0 -26
- package/chunks/chunk.JLZ7WMEK.js +0 -26
- package/chunks/chunk.JNL4MXD5.js +0 -26
- package/chunks/chunk.JP6AGCCW.js +0 -26
- package/chunks/chunk.JQR5RVIL.js +0 -26
- package/chunks/chunk.JS4U3D6W.js +0 -95
- package/chunks/chunk.JTYLQ6FY.js +0 -26
- package/chunks/chunk.K46YZZJE.js +0 -26
- package/chunks/chunk.KAP7LDUQ.js +0 -68
- package/chunks/chunk.KEBA2WED.js +0 -26
- package/chunks/chunk.KNXPROSG.js +0 -26
- package/chunks/chunk.KPUDXCVO.js +0 -158
- package/chunks/chunk.KQNIOV63.js +0 -26
- package/chunks/chunk.KVQO5XUW.js +0 -26
- package/chunks/chunk.KW56TBRA.js +0 -26
- package/chunks/chunk.KXKN3L3Z.js +0 -26
- package/chunks/chunk.L54EGYHG.js +0 -26
- package/chunks/chunk.L5HU6JGZ.js +0 -26
- package/chunks/chunk.L7764XXU.js +0 -26
- package/chunks/chunk.LGA5QZSV.js +0 -26
- package/chunks/chunk.LHZT2X2D.js +0 -26
- package/chunks/chunk.LJELLAZX.js +0 -26
- package/chunks/chunk.LJXG6FVM.js +0 -26
- package/chunks/chunk.LTVUUK5B.js +0 -0
- package/chunks/chunk.LXGQCQRO.js +0 -26
- package/chunks/chunk.M55JAFA4.js +0 -26
- package/chunks/chunk.M5C2HLKD.js +0 -0
- package/chunks/chunk.M5X45UVA.js +0 -26
- package/chunks/chunk.MAOAOEMF.js +0 -26
- package/chunks/chunk.MBHIVFJO.js +0 -26
- package/chunks/chunk.MEG2O4FS.js +0 -453
- package/chunks/chunk.MF4JIJ62.js +0 -79
- package/chunks/chunk.MFR64ZQX.js +0 -26
- package/chunks/chunk.MHE47HSD.js +0 -288
- package/chunks/chunk.MHN3Q6XA.js +0 -59
- package/chunks/chunk.MHXC6BHX.js +0 -26
- package/chunks/chunk.MI4A2C2A.js +0 -0
- package/chunks/chunk.MLIV3ZWX.js +0 -26
- package/chunks/chunk.MURVRI5G.js +0 -0
- package/chunks/chunk.MV63T2OT.js +0 -26
- package/chunks/chunk.MWRIDGPK.js +0 -317
- package/chunks/chunk.MY62Q2A2.js +0 -26
- package/chunks/chunk.N3OMIJ4Y.js +0 -26
- package/chunks/chunk.N7EUATGN.js +0 -26
- package/chunks/chunk.N7LCYTKK.js +0 -26
- package/chunks/chunk.NAHTJXTI.js +0 -26
- package/chunks/chunk.NCKLLVGH.js +0 -26
- package/chunks/chunk.NDLK7FQO.js +0 -26
- package/chunks/chunk.NEAFZHS5.js +0 -26
- package/chunks/chunk.NEI6JARN.js +0 -26
- package/chunks/chunk.NIH6DQFB.js +0 -26
- package/chunks/chunk.NQETL7F5.js +0 -26
- package/chunks/chunk.NUUST5OZ.js +0 -179
- package/chunks/chunk.O3K2N2BE.js +0 -26
- package/chunks/chunk.O4X4SDEX.js +0 -26
- package/chunks/chunk.O6KYGQHE.js +0 -381
- package/chunks/chunk.OD35UNOY.js +0 -26
- package/chunks/chunk.OHFNAYJK.js +0 -26
- package/chunks/chunk.OK2YCLAV.js +0 -26
- package/chunks/chunk.OMDSEHWA.js +0 -26
- package/chunks/chunk.OMGL3EUF.js +0 -26
- package/chunks/chunk.OOKHW7W4.js +0 -48
- package/chunks/chunk.ORAZWOSR.js +0 -26
- package/chunks/chunk.OSQ7ZMHG.js +0 -26
- package/chunks/chunk.OYLQWCTK.js +0 -26
- package/chunks/chunk.P5UPLQJQ.js +0 -26
- package/chunks/chunk.PAODRIPG.js +0 -26
- package/chunks/chunk.PBKM6LEO.js +0 -0
- package/chunks/chunk.PHH6UXFC.js +0 -26
- package/chunks/chunk.PJOG4OFM.js +0 -26
- package/chunks/chunk.PKXNP4H4.js +0 -20
- package/chunks/chunk.PLNYP4BE.js +0 -26
- package/chunks/chunk.PVW6UNML.js +0 -97
- package/chunks/chunk.PZGGHE6P.js +0 -26
- package/chunks/chunk.Q2T57HE7.js +0 -0
- package/chunks/chunk.Q6FZY6XV.js +0 -26
- package/chunks/chunk.Q6OCQETL.js +0 -26
- package/chunks/chunk.Q6ON6R24.js +0 -26
- package/chunks/chunk.QCTJCNX4.js +0 -97
- package/chunks/chunk.QJPNYXWI.js +0 -26
- package/chunks/chunk.QK3R23GV.js +0 -91
- package/chunks/chunk.QLMAHJAZ.js +0 -26
- package/chunks/chunk.RFLPCSFF.js +0 -26
- package/chunks/chunk.RMYIVGFE.js +0 -26
- package/chunks/chunk.RP3BQTQJ.js +0 -26
- package/chunks/chunk.RQKS75HZ.js +0 -26
- package/chunks/chunk.RUAOOPYY.js +0 -571
- package/chunks/chunk.RUBG5I4M.js +0 -26
- package/chunks/chunk.RVKGEYHP.js +0 -26
- package/chunks/chunk.RVYUBDYX.js +0 -26
- package/chunks/chunk.RZSPZXEW.js +0 -545
- package/chunks/chunk.RZTNJBXO.js +0 -26
- package/chunks/chunk.S3FBHJYG.js +0 -26
- package/chunks/chunk.S53I37ZT.js +0 -26
- package/chunks/chunk.S6CDPVXW.js +0 -26
- package/chunks/chunk.SDABICU7.js +0 -26
- package/chunks/chunk.SDASWG4C.js +0 -383
- package/chunks/chunk.SDICOHG6.js +0 -26
- package/chunks/chunk.SEHSDSX2.js +0 -66
- package/chunks/chunk.SHABGVME.js +0 -26
- package/chunks/chunk.SJ5N4LEL.js +0 -26
- package/chunks/chunk.SNIQZHLG.js +0 -26
- package/chunks/chunk.SOOIWFCL.js +0 -107
- package/chunks/chunk.SOYLET25.js +0 -26
- package/chunks/chunk.SQQ77VNY.js +0 -326
- package/chunks/chunk.SXJPMMIM.js +0 -26
- package/chunks/chunk.SZJG33WG.js +0 -26
- package/chunks/chunk.T4D3GD4D.js +0 -2376
- package/chunks/chunk.TC3XM5YV.js +0 -26
- package/chunks/chunk.TDXD7GV2.js +0 -26
- package/chunks/chunk.TE45EU72.js +0 -26
- package/chunks/chunk.TEM5RB7B.js +0 -26
- package/chunks/chunk.TFRGDCHH.js +0 -26
- package/chunks/chunk.TJANKQFH.js +0 -28
- package/chunks/chunk.TMEWQZER.js +0 -39
- package/chunks/chunk.TRS7OPBQ.js +0 -26
- package/chunks/chunk.TSDZQZBY.js +0 -0
- package/chunks/chunk.TWH3AKKW.js +0 -26
- package/chunks/chunk.TWXTKG4B.js +0 -139
- package/chunks/chunk.TX64TTBN.js +0 -0
- package/chunks/chunk.TYGMNHNO.js +0 -34
- package/chunks/chunk.U37MOFRS.js +0 -26
- package/chunks/chunk.U3MKT2PH.js +0 -26
- package/chunks/chunk.U5JVFGLN.js +0 -26
- package/chunks/chunk.U754JFNN.js +0 -26
- package/chunks/chunk.UAQCY4Q7.js +0 -26
- package/chunks/chunk.UDVUT4HS.js +0 -26
- package/chunks/chunk.UF6IEONX.js +0 -0
- package/chunks/chunk.UGKCFQ6B.js +0 -151
- package/chunks/chunk.UJNQA7ZY.js +0 -26
- package/chunks/chunk.ULQV7OAS.js +0 -26
- package/chunks/chunk.UQIYYUT6.js +0 -26
- package/chunks/chunk.US5K5OGQ.js +0 -0
- package/chunks/chunk.USJJKVO4.js +0 -26
- package/chunks/chunk.UZG4FMTV.js +0 -26
- package/chunks/chunk.UZJIO4LE.js +0 -192
- package/chunks/chunk.UZL33WWW.js +0 -26
- package/chunks/chunk.UZX7V4CU.js +0 -26
- package/chunks/chunk.V4CO7CYD.js +0 -26
- package/chunks/chunk.V562EM5L.js +0 -26
- package/chunks/chunk.V5LOMZG3.js +0 -26
- package/chunks/chunk.V7UCDACB.js +0 -26
- package/chunks/chunk.V7ZQ5N3U.js +0 -0
- package/chunks/chunk.VA6TUMR2.js +0 -187
- package/chunks/chunk.VEWUYZQ5.js +0 -26
- package/chunks/chunk.VHLWBCJK.js +0 -0
- package/chunks/chunk.VHN4JEZC.js +0 -28
- package/chunks/chunk.VI5BIVNL.js +0 -26
- package/chunks/chunk.VI7WXPEU.js +0 -26
- package/chunks/chunk.VK6SX6HH.js +0 -657
- package/chunks/chunk.VL4E2DD4.js +0 -26
- package/chunks/chunk.VNKMTZ2Z.js +0 -85
- package/chunks/chunk.VPPLRXTL.js +0 -26
- package/chunks/chunk.VSSZOA3U.js +0 -26
- package/chunks/chunk.VVH2TQNP.js +0 -26
- package/chunks/chunk.VWXD4LFX.js +0 -60
- package/chunks/chunk.VXCSYH32.js +0 -26
- package/chunks/chunk.VXHX45CK.js +0 -26
- package/chunks/chunk.VYJ3WHTF.js +0 -26
- package/chunks/chunk.VZTV63IQ.js +0 -0
- package/chunks/chunk.WD4FGBUT.js +0 -26
- package/chunks/chunk.WEVD57E3.js +0 -26
- package/chunks/chunk.WFDLDZIN.js +0 -26
- package/chunks/chunk.WFKUYHQY.js +0 -0
- package/chunks/chunk.WI3JANQF.js +0 -26
- package/chunks/chunk.WM7HBMMV.js +0 -54
- package/chunks/chunk.WOP4KKHZ.js +0 -26
- package/chunks/chunk.WREX3EHE.js +0 -26
- package/chunks/chunk.WS5SI3GF.js +0 -26
- package/chunks/chunk.WVQ5Q5QU.js +0 -26
- package/chunks/chunk.WZEONAVU.js +0 -26
- package/chunks/chunk.X2KQTAEZ.js +0 -88
- package/chunks/chunk.X5HNNOFV.js +0 -26
- package/chunks/chunk.XB3QPWX2.js +0 -26
- package/chunks/chunk.XDMH7NA3.js +0 -26
- package/chunks/chunk.XFOYKTR2.js +0 -295
- package/chunks/chunk.XH5DQ6RJ.js +0 -26
- package/chunks/chunk.XHS6M6S3.js +0 -26
- package/chunks/chunk.XM73BSOV.js +0 -26
- package/chunks/chunk.XOBVOYZF.js +0 -26
- package/chunks/chunk.XOR75GI6.js +0 -349
- package/chunks/chunk.XOU762RY.js +0 -26
- package/chunks/chunk.XTGS4PGM.js +0 -140
- package/chunks/chunk.XU3GSMWI.js +0 -113
- package/chunks/chunk.YFWSFTPY.js +0 -26
- package/chunks/chunk.YHH6CXC3.js +0 -26
- package/chunks/chunk.YKPJOWDI.js +0 -26
- package/chunks/chunk.YL55SGZC.js +0 -0
- package/chunks/chunk.YMLEZTY4.js +0 -26
- package/chunks/chunk.YO24ZYAD.js +0 -0
- package/chunks/chunk.YRSKH74F.js +0 -0
- package/chunks/chunk.YSAE26FD.js +0 -126
- package/chunks/chunk.YTYV5LZL.js +0 -26
- package/chunks/chunk.Z3RP2HVZ.js +0 -26
- package/chunks/chunk.Z4RU4AD5.js +0 -26
- package/chunks/chunk.Z7CJFHPM.js +0 -26
- package/chunks/chunk.ZEWY5DIM.js +0 -26
- package/chunks/chunk.ZJVOZRT5.js +0 -0
- package/chunks/chunk.ZLAYDGM6.js +0 -26
- package/chunks/chunk.ZNEFE4XP.js +0 -26
- package/chunks/chunk.ZOZCULXV.js +0 -193
- package/chunks/chunk.ZVOL7MQM.js +0 -41
- package/components/spinner/gds-spinner.js +0 -17
- /package/components/spinner/{gds-spinner.d.ts → spinner.component.d.ts} +0 -0
- /package/components/spinner/{gds-spinner.styles.d.ts → spinner.styles.d.ts} +0 -0
- /package/{chunks/chunk.3M4XRCEF.js → components/theme/theme.style.js} +0 -0
- /package/{chunks/chunk.4S2VQKXS.js → declarations.d.js} +0 -0
package/chunks/chunk.T4D3GD4D.js
DELETED
|
@@ -1,2376 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
tokens
|
|
3
|
-
} from "./chunk.HEZEUVHT.js";
|
|
4
|
-
import {
|
|
5
|
-
VER_SUFFIX
|
|
6
|
-
} from "./chunk.QK3R23GV.js";
|
|
7
|
-
import {
|
|
8
|
-
supportsConstructedStylesheets
|
|
9
|
-
} from "./chunk.B7ZOSVCQ.js";
|
|
10
|
-
import {
|
|
11
|
-
__privateAdd,
|
|
12
|
-
__privateGet,
|
|
13
|
-
__spreadProps,
|
|
14
|
-
__spreadValues
|
|
15
|
-
} from "./chunk.SEHSDSX2.js";
|
|
16
|
-
|
|
17
|
-
// libs/core/src/utils/transitional-styles/transitional-styles.ts
|
|
18
|
-
import { unsafeCSS } from "lit";
|
|
19
|
-
|
|
20
|
-
// libs/core/src/primitives/menu/menu-heading.trans.styles.scss?inline
|
|
21
|
-
var menu_heading_trans_styles_default = `@layer base, reset, transitional-styles;
|
|
22
|
-
@layer transitional-styles {
|
|
23
|
-
:host {
|
|
24
|
-
background-color: var(--gds-ref-pallet-base300);
|
|
25
|
-
color: var(--gds-ref-pallet-base800);
|
|
26
|
-
display: flex;
|
|
27
|
-
font-size: 0.875rem;
|
|
28
|
-
font-weight: 500;
|
|
29
|
-
padding: 0.75rem 1rem;
|
|
30
|
-
-webkit-user-select: none;
|
|
31
|
-
-moz-user-select: none;
|
|
32
|
-
user-select: none;
|
|
33
|
-
}
|
|
34
|
-
:host([aria-hidden=true]) {
|
|
35
|
-
display: none;
|
|
36
|
-
}
|
|
37
|
-
}`;
|
|
38
|
-
|
|
39
|
-
// libs/core/src/primitives/listbox/listbox.trans.styles.scss?inline
|
|
40
|
-
var listbox_trans_styles_default = `/**
|
|
41
|
-
* Calculate the luminance for a color.
|
|
42
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
43
|
-
*/
|
|
44
|
-
/**
|
|
45
|
-
* Calculate the contrast ratio between two colors.
|
|
46
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
47
|
-
*/
|
|
48
|
-
/* stylelint-disable max-nesting-depth */
|
|
49
|
-
/* stylelint-enable max-nesting-depth */
|
|
50
|
-
/* stylelint-disable */
|
|
51
|
-
/* stylelint-enable */
|
|
52
|
-
/* stylelint-disable */
|
|
53
|
-
/**
|
|
54
|
-
* @deprecated
|
|
55
|
-
* Use \`add-focus\` instead
|
|
56
|
-
*/
|
|
57
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
58
|
-
/**
|
|
59
|
-
* @deprecated in favor of Grouped list component
|
|
60
|
-
*/
|
|
61
|
-
/**
|
|
62
|
-
* @deprecated in favor of Grouped list component
|
|
63
|
-
*/
|
|
64
|
-
@layer base, reset, transitional-styles;
|
|
65
|
-
@layer transitional-styles {
|
|
66
|
-
:host {
|
|
67
|
-
padding-left: 0;
|
|
68
|
-
margin-bottom: 0;
|
|
69
|
-
margin-top: 0;
|
|
70
|
-
display: flex;
|
|
71
|
-
flex-direction: column;
|
|
72
|
-
list-style: none;
|
|
73
|
-
overflow-y: auto;
|
|
74
|
-
}
|
|
75
|
-
:host > li {
|
|
76
|
-
padding-bottom: 0.5rem;
|
|
77
|
-
padding-top: 0.5rem;
|
|
78
|
-
border: 0;
|
|
79
|
-
display: block;
|
|
80
|
-
position: relative;
|
|
81
|
-
}
|
|
82
|
-
:host > li::before {
|
|
83
|
-
font-weight: 500;
|
|
84
|
-
display: inline-block;
|
|
85
|
-
left: 0;
|
|
86
|
-
position: absolute;
|
|
87
|
-
text-align: center;
|
|
88
|
-
}
|
|
89
|
-
}`;
|
|
90
|
-
|
|
91
|
-
// libs/core/src/primitives/listbox/option.trans.styles.scss?inline
|
|
92
|
-
var option_trans_styles_default = `/**
|
|
93
|
-
* Calculate the luminance for a color.
|
|
94
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
95
|
-
*/
|
|
96
|
-
/**
|
|
97
|
-
* Calculate the contrast ratio between two colors.
|
|
98
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
99
|
-
*/
|
|
100
|
-
/* stylelint-disable max-nesting-depth */
|
|
101
|
-
/* stylelint-enable max-nesting-depth */
|
|
102
|
-
/* stylelint-disable */
|
|
103
|
-
/* stylelint-enable */
|
|
104
|
-
/* stylelint-disable */
|
|
105
|
-
/**
|
|
106
|
-
* @deprecated
|
|
107
|
-
* Use \`add-focus\` instead
|
|
108
|
-
*/
|
|
109
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
110
|
-
@layer base, reset, transitional-styles;
|
|
111
|
-
@layer transitional-styles {
|
|
112
|
-
:host div {
|
|
113
|
-
padding-left: 1rem;
|
|
114
|
-
padding-right: 1rem;
|
|
115
|
-
padding-bottom: 0.75rem;
|
|
116
|
-
padding-top: 0.75rem;
|
|
117
|
-
line-height: 1.25;
|
|
118
|
-
cursor: pointer;
|
|
119
|
-
display: flex;
|
|
120
|
-
gap: 0.75rem;
|
|
121
|
-
-webkit-user-select: none;
|
|
122
|
-
-moz-user-select: none;
|
|
123
|
-
user-select: none;
|
|
124
|
-
}
|
|
125
|
-
:host div:hover, :host div:focus-visible {
|
|
126
|
-
background-color: var(--grey-400);
|
|
127
|
-
}
|
|
128
|
-
:host div:active {
|
|
129
|
-
background-color: var(--grey-400);
|
|
130
|
-
}
|
|
131
|
-
:host div:focus {
|
|
132
|
-
outline-color: #000;
|
|
133
|
-
outline-offset: -0.25rem;
|
|
134
|
-
}
|
|
135
|
-
:host div.active.sg-highlighted, :host div[aria-selected=true] {
|
|
136
|
-
background: var(--grey-1000);
|
|
137
|
-
color: #fff;
|
|
138
|
-
}
|
|
139
|
-
:host(:hover) div,
|
|
140
|
-
:host(:focus-visible) div {
|
|
141
|
-
background-color: var(--grey-400);
|
|
142
|
-
}
|
|
143
|
-
:host(:active) div {
|
|
144
|
-
background-color: var(--grey-500);
|
|
145
|
-
}
|
|
146
|
-
:host(:focus-visible) {
|
|
147
|
-
outline-color: #000;
|
|
148
|
-
outline-offset: -0.25rem;
|
|
149
|
-
}
|
|
150
|
-
:host([inert]) {
|
|
151
|
-
display: none;
|
|
152
|
-
}
|
|
153
|
-
:host([highlighted]) div {
|
|
154
|
-
background: var(--grey-1000);
|
|
155
|
-
color: #fff;
|
|
156
|
-
}
|
|
157
|
-
.checkbox {
|
|
158
|
-
background-color: var(--gds-comp-checkbox-container-color);
|
|
159
|
-
border-radius: var(--gds-comp-checkbox-border-radius);
|
|
160
|
-
box-shadow: inset 0 0 0 1px var(--gds-comp-checkbox-border-color);
|
|
161
|
-
flex: 0 0 auto;
|
|
162
|
-
flex-shrink: 0;
|
|
163
|
-
height: var(--gds-comp-checkbox-container-width);
|
|
164
|
-
margin-top: 0.15rem;
|
|
165
|
-
position: relative;
|
|
166
|
-
width: var(--gds-comp-checkbox-container-width);
|
|
167
|
-
display: flex;
|
|
168
|
-
align-items: center;
|
|
169
|
-
justify-content: center;
|
|
170
|
-
}
|
|
171
|
-
.checkbox [gds-element=gds-icon-checkmark]::part(icon) {
|
|
172
|
-
width: 10px;
|
|
173
|
-
height: 10px;
|
|
174
|
-
}
|
|
175
|
-
.checkbox.checked {
|
|
176
|
-
background-color: var(--gds-comp-checkbox-container-color-selected);
|
|
177
|
-
}
|
|
178
|
-
.checkbox.checked [gds-element=gds-icon-checkmark]::part(icon) {
|
|
179
|
-
color: var(--gds-comp-checkbox-border-color-selected, #fff);
|
|
180
|
-
}
|
|
181
|
-
}`;
|
|
182
|
-
|
|
183
|
-
// libs/core/src/primitives/listbox/listbox.trans.styles.ts
|
|
184
|
-
function register() {
|
|
185
|
-
TransitionalStyles.instance.register("gds-listbox", listbox_trans_styles_default.toString());
|
|
186
|
-
TransitionalStyles.instance.register("gds-option", option_trans_styles_default.toString());
|
|
187
|
-
TransitionalStyles.instance.register(
|
|
188
|
-
"gds-menu-heading",
|
|
189
|
-
menu_heading_trans_styles_default.toString()
|
|
190
|
-
);
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
// libs/core/src/components/popover/popover.trans.styles.scss?inline
|
|
194
|
-
var popover_trans_styles_default = `/* stylelint-disable max-nesting-depth */
|
|
195
|
-
/* stylelint-enable max-nesting-depth */
|
|
196
|
-
/**
|
|
197
|
-
* Calculate the luminance for a color.
|
|
198
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
199
|
-
*/
|
|
200
|
-
/**
|
|
201
|
-
* Calculate the contrast ratio between two colors.
|
|
202
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
203
|
-
*/
|
|
204
|
-
/* stylelint-disable */
|
|
205
|
-
/* stylelint-enable */
|
|
206
|
-
/* stylelint-disable */
|
|
207
|
-
/**
|
|
208
|
-
* @deprecated
|
|
209
|
-
* Use \`add-focus\` instead
|
|
210
|
-
*/
|
|
211
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
212
|
-
@layer base, reset, transitional-styles;
|
|
213
|
-
@layer transitional-styles {
|
|
214
|
-
:host {
|
|
215
|
-
display: contents;
|
|
216
|
-
}
|
|
217
|
-
:host([open]) dialog {
|
|
218
|
-
box-sizing: border-box;
|
|
219
|
-
opacity: 1;
|
|
220
|
-
transform: translate3d(0, 0, 0);
|
|
221
|
-
visibility: visible;
|
|
222
|
-
}
|
|
223
|
-
:host > div:not([hidden]) {
|
|
224
|
-
display: contents;
|
|
225
|
-
}
|
|
226
|
-
header {
|
|
227
|
-
display: flex;
|
|
228
|
-
}
|
|
229
|
-
header .close::part(_button) {
|
|
230
|
-
border-radius: 100%;
|
|
231
|
-
color: var(--text-primary-color);
|
|
232
|
-
border: 1px solid transparent;
|
|
233
|
-
}
|
|
234
|
-
header .close::part(_button):hover {
|
|
235
|
-
background-color: var(--grey-500);
|
|
236
|
-
}
|
|
237
|
-
header h2 {
|
|
238
|
-
flex-grow: 1;
|
|
239
|
-
font-weight: 400;
|
|
240
|
-
line-height: 1.5;
|
|
241
|
-
margin: 0.25rem 0 0 0.75rem;
|
|
242
|
-
}
|
|
243
|
-
dialog {
|
|
244
|
-
--z-index: var(--sg-z-index-popover);
|
|
245
|
-
background-color: var(--sg-popover-background);
|
|
246
|
-
display: flex;
|
|
247
|
-
flex-direction: column;
|
|
248
|
-
justify-content: flex-end;
|
|
249
|
-
opacity: 0;
|
|
250
|
-
visibility: hidden;
|
|
251
|
-
position: fixed;
|
|
252
|
-
inset: auto;
|
|
253
|
-
z-index: var(--z-index);
|
|
254
|
-
box-shadow: var(--sg-popover-box-shadow);
|
|
255
|
-
color: var(--text-primary-color);
|
|
256
|
-
overflow: hidden;
|
|
257
|
-
padding: 0;
|
|
258
|
-
padding-bottom: 0;
|
|
259
|
-
border: solid var(--sg-border-width) var(--sg-border-color);
|
|
260
|
-
--border-color: var(--text-primary-color);
|
|
261
|
-
--sg-border-color: var(--text-primary-color);
|
|
262
|
-
border-radius: var(--sg-border-radius);
|
|
263
|
-
}
|
|
264
|
-
@media (max-width: 35.98em) {
|
|
265
|
-
dialog.use-modal-in-mobile {
|
|
266
|
-
border-top: solid var(--sg-border-width) var(--sg-border-color);
|
|
267
|
-
--border-color: var(--sg-border-color);
|
|
268
|
-
padding-bottom: 0.5rem;
|
|
269
|
-
border-radius: 1rem 1rem 0 0;
|
|
270
|
-
bottom: 0;
|
|
271
|
-
left: 0;
|
|
272
|
-
transition: all 300ms ease-in-out;
|
|
273
|
-
width: 100%;
|
|
274
|
-
border: 1px solid var(--border-color);
|
|
275
|
-
border-radius: 0.25rem;
|
|
276
|
-
max-height: 80svh;
|
|
277
|
-
padding-bottom: 0;
|
|
278
|
-
inset: 0;
|
|
279
|
-
}
|
|
280
|
-
dialog.use-modal-in-mobile.v-kb-visible {
|
|
281
|
-
inset-block-end: auto;
|
|
282
|
-
max-height: 50svh;
|
|
283
|
-
top: 1rem;
|
|
284
|
-
}
|
|
285
|
-
}
|
|
286
|
-
@media (min-width: 36em) {
|
|
287
|
-
dialog.use-modal-in-mobile header {
|
|
288
|
-
display: none;
|
|
289
|
-
}
|
|
290
|
-
}
|
|
291
|
-
@media (min-width: 36em) {
|
|
292
|
-
dialog.use-modal-in-mobile:not(.has-backdrop)::backdrop {
|
|
293
|
-
opacity: 0;
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
dialog::backdrop {
|
|
297
|
-
background-color: rgba(0, 0, 0, 0.2);
|
|
298
|
-
display: block;
|
|
299
|
-
position: fixed;
|
|
300
|
-
}
|
|
301
|
-
dialog:not(.use-modal-in-mobile) header {
|
|
302
|
-
display: none;
|
|
303
|
-
}
|
|
304
|
-
dialog:not(.use-modal-in-mobile)::backdrop {
|
|
305
|
-
opacity: 0;
|
|
306
|
-
}
|
|
307
|
-
}`;
|
|
308
|
-
|
|
309
|
-
// libs/core/src/components/popover/popover.trans.styles.ts
|
|
310
|
-
function register2() {
|
|
311
|
-
TransitionalStyles.instance.register("gds-popover", popover_trans_styles_default.toString());
|
|
312
|
-
}
|
|
313
|
-
var popover_trans_styles_default2 = register2;
|
|
314
|
-
|
|
315
|
-
// libs/core/src/components/context-menu/context-menu.trans.styles.scss?inline
|
|
316
|
-
var context_menu_trans_styles_default = `/* stylelint-disable max-nesting-depth */
|
|
317
|
-
/* stylelint-enable max-nesting-depth */
|
|
318
|
-
/**
|
|
319
|
-
* Calculate the luminance for a color.
|
|
320
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
321
|
-
*/
|
|
322
|
-
/**
|
|
323
|
-
* Calculate the contrast ratio between two colors.
|
|
324
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
325
|
-
*/
|
|
326
|
-
/* stylelint-disable */
|
|
327
|
-
/* stylelint-enable */
|
|
328
|
-
/* stylelint-disable */
|
|
329
|
-
/**
|
|
330
|
-
* @deprecated
|
|
331
|
-
* Use \`add-focus\` instead
|
|
332
|
-
*/
|
|
333
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
334
|
-
i.sg-icon {
|
|
335
|
-
font-size: 0;
|
|
336
|
-
width: 1rem;
|
|
337
|
-
height: 1rem;
|
|
338
|
-
display: inline-block;
|
|
339
|
-
}
|
|
340
|
-
i.sg-icon::before {
|
|
341
|
-
content: "";
|
|
342
|
-
display: inline-block;
|
|
343
|
-
background: var(--color);
|
|
344
|
-
width: 100%;
|
|
345
|
-
height: 100%;
|
|
346
|
-
-webkit-mask-repeat: no-repeat;
|
|
347
|
-
mask-repeat: no-repeat;
|
|
348
|
-
}
|
|
349
|
-
i.sg-icon.sg-icon-calendar::before {
|
|
350
|
-
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M152 64h144V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40h40c35.3 0 64 28.65 64 64v320c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V128c0-35.35 28.65-64 64-64h40V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40zM48 248h80v-56H48v56zm0 48v64h80v-64H48zm128 0v64h96v-64h-96zm144 0v64h80v-64h-80zm80-104h-80v56h80v-56zm0 216h-80v56h64c8.8 0 16-7.2 16-16v-40zm-128 0h-96v56h96v-56zm-144 0H48v40c0 8.8 7.16 16 16 16h64v-56zm144-216h-96v56h96v-56z '/%3E%3C/svg%3E");
|
|
351
|
-
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M152 64h144V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40h40c35.3 0 64 28.65 64 64v320c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V128c0-35.35 28.65-64 64-64h40V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40zM48 248h80v-56H48v56zm0 48v64h80v-64H48zm128 0v64h96v-64h-96zm144 0v64h80v-64h-80zm80-104h-80v56h80v-56zm0 216h-80v56h64c8.8 0 16-7.2 16-16v-40zm-128 0h-96v56h96v-56zm-144 0H48v40c0 8.8 7.16 16 16 16h64v-56zm144-216h-96v56h96v-56z '/%3E%3C/svg%3E");
|
|
352
|
-
}
|
|
353
|
-
i.sg-icon.sg-icon-calendar-range::before {
|
|
354
|
-
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M96 288c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm224 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-128-64c0-13.3 10.7-24 24-24h112c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24zm40 72c13.3 0 24 10.7 24 24s-10.7 24-24 24H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h112zM152 64h144V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40h40c35.3 0 64 28.65 64 64v320c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V128c0-35.35 28.65-64 64-64h40V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40zM48 448c0 8.8 7.16 16 16 16h320c8.8 0 16-7.2 16-16V192H48v256z'/%3E%3C/svg%3E");
|
|
355
|
-
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M96 288c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm224 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-128-64c0-13.3 10.7-24 24-24h112c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24zm40 72c13.3 0 24 10.7 24 24s-10.7 24-24 24H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h112zM152 64h144V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40h40c35.3 0 64 28.65 64 64v320c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V128c0-35.35 28.65-64 64-64h40V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40zM48 448c0 8.8 7.16 16 16 16h320c8.8 0 16-7.2 16-16V192H48v256z'/%3E%3C/svg%3E");
|
|
356
|
-
}
|
|
357
|
-
i.sg-icon.sg-icon-ellipsis::before {
|
|
358
|
-
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M8 256a56 56 0 1 1 112 0A56 56 0 1 1 8 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z'/%3E%3C/svg%3E");
|
|
359
|
-
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M8 256a56 56 0 1 1 112 0A56 56 0 1 1 8 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z'/%3E%3C/svg%3E");
|
|
360
|
-
}
|
|
361
|
-
i.sg-icon.sg-icon-grip-vertical::before {
|
|
362
|
-
-webkit-mask-image: url("data:image/svg+xml, %3Csvg height='1em' viewBox='0 0 320 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 352l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zm192 0l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 320c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 192l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 160c-22.1 0-40-17.9-40-40L0 72C0 49.9 17.9 32 40 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40z' /%3E%3C/svg%3E");
|
|
363
|
-
mask-image: url("data:image/svg+xml, %3Csvg height='1em' viewBox='0 0 320 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 352l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zm192 0l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 320c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 192l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 160c-22.1 0-40-17.9-40-40L0 72C0 49.9 17.9 32 40 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40z' /%3E%3C/svg%3E");
|
|
364
|
-
}
|
|
365
|
-
i.sg-icon.sg-icon-next::before {
|
|
366
|
-
background: none;
|
|
367
|
-
border-bottom: 2px solid;
|
|
368
|
-
border-left: 2px solid;
|
|
369
|
-
content: "";
|
|
370
|
-
display: block;
|
|
371
|
-
height: 12px;
|
|
372
|
-
margin-left: -10px;
|
|
373
|
-
margin-top: 2px;
|
|
374
|
-
transform: translate(75%) rotate(-135deg) scaleZ(-1);
|
|
375
|
-
transition: transform 0.3s ease-in;
|
|
376
|
-
width: 12px;
|
|
377
|
-
}
|
|
378
|
-
i.sg-icon.sg-icon-previous::before {
|
|
379
|
-
background: none;
|
|
380
|
-
border-bottom: 2px solid;
|
|
381
|
-
border-left: 2px solid;
|
|
382
|
-
content: "";
|
|
383
|
-
display: block;
|
|
384
|
-
height: 12px;
|
|
385
|
-
margin-left: -4px;
|
|
386
|
-
margin-top: 2px;
|
|
387
|
-
transform: translate(75%) rotate(45deg) scaleZ(-1);
|
|
388
|
-
transition: transform 0.3s ease-in;
|
|
389
|
-
width: 12px;
|
|
390
|
-
}
|
|
391
|
-
i.sg-icon.sg-icon-ellipsis::before {
|
|
392
|
-
margin-right: -2px;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
@layer base, reset, transitional-styles;
|
|
396
|
-
@layer transitional-styles {
|
|
397
|
-
@layer _base, _overrides;
|
|
398
|
-
:host {
|
|
399
|
-
display: inline-block;
|
|
400
|
-
}
|
|
401
|
-
@layer _base {
|
|
402
|
-
button {
|
|
403
|
-
background-color: transparent;
|
|
404
|
-
border: 0;
|
|
405
|
-
cursor: pointer;
|
|
406
|
-
font-family: inherit;
|
|
407
|
-
padding: 0;
|
|
408
|
-
padding-left: 1rem;
|
|
409
|
-
padding-right: 1rem;
|
|
410
|
-
padding-bottom: 0.75rem;
|
|
411
|
-
padding-top: 0.75rem;
|
|
412
|
-
border-radius: var(--sg-border-radius);
|
|
413
|
-
border: solid var(--sg-border-width) var(--sg-border-color);
|
|
414
|
-
font-weight: 500;
|
|
415
|
-
min-height: 2.75rem;
|
|
416
|
-
align-items: center;
|
|
417
|
-
display: inline-flex;
|
|
418
|
-
justify-content: center;
|
|
419
|
-
background-color: transparent;
|
|
420
|
-
border: 0.0625rem solid transparent;
|
|
421
|
-
padding: 0.625rem;
|
|
422
|
-
height: 2.75rem;
|
|
423
|
-
width: 2.75rem;
|
|
424
|
-
min-width: auto;
|
|
425
|
-
--color: var(--gds-ref-pallet-base800);
|
|
426
|
-
}
|
|
427
|
-
button:focus:not(:focus-visible) {
|
|
428
|
-
box-shadow: none;
|
|
429
|
-
outline: 0;
|
|
430
|
-
}
|
|
431
|
-
button:focus, button:focus-visible {
|
|
432
|
-
outline-color: var(--gds-sys-color-focus-outline);
|
|
433
|
-
outline-style: solid;
|
|
434
|
-
outline-width: 0.125rem;
|
|
435
|
-
outline-offset: 0.125rem;
|
|
436
|
-
}
|
|
437
|
-
@media (max-width: 35.98em) {
|
|
438
|
-
button {
|
|
439
|
-
min-width: 100%;
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
@media screen and (-ms-high-contrast: active) {
|
|
443
|
-
button {
|
|
444
|
-
border: 2px solid currentcolor;
|
|
445
|
-
}
|
|
446
|
-
}
|
|
447
|
-
button.small {
|
|
448
|
-
min-height: 2rem;
|
|
449
|
-
padding: 0.4375rem 0.75rem;
|
|
450
|
-
line-height: 1rem;
|
|
451
|
-
}
|
|
452
|
-
button.large {
|
|
453
|
-
min-height: 4rem;
|
|
454
|
-
padding: 1rem 1.5rem;
|
|
455
|
-
font-size: 1.5rem;
|
|
456
|
-
line-height: 2rem;
|
|
457
|
-
}
|
|
458
|
-
.form-group button {
|
|
459
|
-
margin-top: -0.625rem;
|
|
460
|
-
}
|
|
461
|
-
button.small {
|
|
462
|
-
height: 2rem;
|
|
463
|
-
width: 2rem;
|
|
464
|
-
padding: 0.4375rem;
|
|
465
|
-
line-height: 1.125rem;
|
|
466
|
-
}
|
|
467
|
-
button svg {
|
|
468
|
-
height: 1rem;
|
|
469
|
-
width: 1rem;
|
|
470
|
-
}
|
|
471
|
-
button path,
|
|
472
|
-
button line,
|
|
473
|
-
button circle,
|
|
474
|
-
button rect,
|
|
475
|
-
button ellipse,
|
|
476
|
-
button polyline,
|
|
477
|
-
button text {
|
|
478
|
-
fill: var(--gds-ref-pallet-base800);
|
|
479
|
-
stroke: var(--gds-ref-pallet-base800);
|
|
480
|
-
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
481
|
-
}
|
|
482
|
-
button:hover, button.highlighted {
|
|
483
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
484
|
-
border-color: transparent;
|
|
485
|
-
}
|
|
486
|
-
button:active, button.highlighted:hover {
|
|
487
|
-
background-color: rgba(0, 0, 0, 0.2);
|
|
488
|
-
border-color: transparent;
|
|
489
|
-
}
|
|
490
|
-
}
|
|
491
|
-
@layer _overrides {
|
|
492
|
-
button {
|
|
493
|
-
border-color: transparent;
|
|
494
|
-
color: var(--gds-ref-pallet-base800);
|
|
495
|
-
display: flex;
|
|
496
|
-
gap: 0.5rem;
|
|
497
|
-
line-height: 0.75;
|
|
498
|
-
padding-inline: 0.4375rem;
|
|
499
|
-
width: auto;
|
|
500
|
-
}
|
|
501
|
-
button.highlighted {
|
|
502
|
-
background-color: var(--gds-ref-pallet-base300);
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
}`;
|
|
506
|
-
|
|
507
|
-
// libs/core/src/components/context-menu/context-menu.trans.styles.ts
|
|
508
|
-
function register3() {
|
|
509
|
-
TransitionalStyles.instance.register("gds-context-menu", context_menu_trans_styles_default.toString());
|
|
510
|
-
register2();
|
|
511
|
-
register();
|
|
512
|
-
}
|
|
513
|
-
var context_menu_trans_styles_default2 = register3;
|
|
514
|
-
|
|
515
|
-
// libs/core/src/components/calendar/calendar.trans.styles.scss?inline
|
|
516
|
-
var calendar_trans_styles_default = `/* stylelint-disable max-nesting-depth */
|
|
517
|
-
/* stylelint-enable max-nesting-depth */
|
|
518
|
-
/**
|
|
519
|
-
* Calculate the luminance for a color.
|
|
520
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
521
|
-
*/
|
|
522
|
-
/**
|
|
523
|
-
* Calculate the contrast ratio between two colors.
|
|
524
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
525
|
-
*/
|
|
526
|
-
/* stylelint-disable */
|
|
527
|
-
/* stylelint-enable */
|
|
528
|
-
/* stylelint-disable */
|
|
529
|
-
/**
|
|
530
|
-
* @deprecated
|
|
531
|
-
* Use \`add-focus\` instead
|
|
532
|
-
*/
|
|
533
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
534
|
-
/* medium */
|
|
535
|
-
/* regular */
|
|
536
|
-
/* regular */
|
|
537
|
-
/* regular */
|
|
538
|
-
/* hover */
|
|
539
|
-
/* focus */
|
|
540
|
-
/* selected */
|
|
541
|
-
/* highlighted */
|
|
542
|
-
/* active */
|
|
543
|
-
/* disabled */
|
|
544
|
-
/* today */
|
|
545
|
-
/* weekend */
|
|
546
|
-
@layer base, reset, transitional-styles;
|
|
547
|
-
@layer transitional-styles {
|
|
548
|
-
@layer _base {
|
|
549
|
-
:host {
|
|
550
|
-
display: flex;
|
|
551
|
-
justify-content: center;
|
|
552
|
-
}
|
|
553
|
-
@media (max-width: 35.98em) {
|
|
554
|
-
:host {
|
|
555
|
-
flex-wrap: wrap;
|
|
556
|
-
overflow-y: auto;
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
:host table {
|
|
560
|
-
border-spacing: 0;
|
|
561
|
-
}
|
|
562
|
-
:host th,
|
|
563
|
-
:host td {
|
|
564
|
-
box-sizing: border-box;
|
|
565
|
-
height: 2.75rem;
|
|
566
|
-
text-align: center;
|
|
567
|
-
width: 2.75rem;
|
|
568
|
-
}
|
|
569
|
-
:host thead {
|
|
570
|
-
/* days */
|
|
571
|
-
}
|
|
572
|
-
:host thead th {
|
|
573
|
-
background: var(--sg-bg-level-2);
|
|
574
|
-
border-bottom: solid 1px var(--sg-grey-300);
|
|
575
|
-
font-weight: 400;
|
|
576
|
-
top: 0;
|
|
577
|
-
}
|
|
578
|
-
@media (max-width: 35.98em) {
|
|
579
|
-
:host thead th {
|
|
580
|
-
position: sticky;
|
|
581
|
-
}
|
|
582
|
-
}
|
|
583
|
-
:host tbody {
|
|
584
|
-
/* week numbers */
|
|
585
|
-
/* dates */
|
|
586
|
-
}
|
|
587
|
-
:host tbody th {
|
|
588
|
-
font-weight: 400;
|
|
589
|
-
}
|
|
590
|
-
:host tbody td {
|
|
591
|
-
border: solid 1px transparent;
|
|
592
|
-
font-weight: 500;
|
|
593
|
-
-webkit-user-select: none;
|
|
594
|
-
-moz-user-select: none;
|
|
595
|
-
user-select: none;
|
|
596
|
-
/* weekend */
|
|
597
|
-
/* today */
|
|
598
|
-
/* hover */
|
|
599
|
-
/* focus */
|
|
600
|
-
/* selected */
|
|
601
|
-
/* highlighted */
|
|
602
|
-
/* active (pressed) */
|
|
603
|
-
/* disabled */
|
|
604
|
-
}
|
|
605
|
-
:host tbody td.sg-date-holiday:not(.disabled) {
|
|
606
|
-
background: var(--sg-bg-level-2);
|
|
607
|
-
color: hsl(var(--sg-hsl-red-2));
|
|
608
|
-
}
|
|
609
|
-
:host tbody td.today {
|
|
610
|
-
background: transparent;
|
|
611
|
-
border-radius: 4px;
|
|
612
|
-
box-shadow: inset 0 0 0 2px var(--grey-1000);
|
|
613
|
-
color: var(--grey-1000);
|
|
614
|
-
}
|
|
615
|
-
:host tbody td:hover:not(.disabled) {
|
|
616
|
-
background: var(--grey-500);
|
|
617
|
-
border: solid 1px var(--sg-bg-level-2);
|
|
618
|
-
border-radius: 4px;
|
|
619
|
-
color: var(--gds-sys-color-font);
|
|
620
|
-
cursor: pointer;
|
|
621
|
-
}
|
|
622
|
-
:host tbody td:focus-visible:focus:not(:focus-visible) {
|
|
623
|
-
box-shadow: none;
|
|
624
|
-
outline: 0;
|
|
625
|
-
}
|
|
626
|
-
:host tbody td:focus-visible:focus, :host tbody td:focus-visible:focus-visible {
|
|
627
|
-
outline-color: var(--gds-sys-color-focus-outline);
|
|
628
|
-
outline-style: solid;
|
|
629
|
-
outline-width: 0.125rem;
|
|
630
|
-
outline-offset: 0.125rem;
|
|
631
|
-
}
|
|
632
|
-
:host tbody td:focus-visible:not(.disabled) {
|
|
633
|
-
border: solid 1px var(--sg-bg-level-2);
|
|
634
|
-
border-radius: 4px;
|
|
635
|
-
cursor: pointer;
|
|
636
|
-
position: relative;
|
|
637
|
-
z-index: 0;
|
|
638
|
-
}
|
|
639
|
-
:host tbody td[aria-selected=true] {
|
|
640
|
-
background: var(--grey-1000);
|
|
641
|
-
border: solid 1px var(--sg-bg-level-2);
|
|
642
|
-
border-radius: 4px;
|
|
643
|
-
color: hsl(var(--sg-hsl-white));
|
|
644
|
-
}
|
|
645
|
-
:host tbody td[tabindex="0"] {
|
|
646
|
-
border-radius: 4px;
|
|
647
|
-
}
|
|
648
|
-
:host tbody td:hover:active:not(.disabled) {
|
|
649
|
-
background: var(--grey-1000);
|
|
650
|
-
border: solid 1px var(--sg-bg-level-2);
|
|
651
|
-
border-radius: 4px;
|
|
652
|
-
color: hsl(var(--sg-hsl-white));
|
|
653
|
-
}
|
|
654
|
-
:host tbody td.disabled {
|
|
655
|
-
background: hsl(var(--sg-hsl-disabled-background));
|
|
656
|
-
border: solid 1px var(--sg-bg-level-2);
|
|
657
|
-
border-radius: 4px;
|
|
658
|
-
color: hsl(var(--sg-hsl-disabled-color));
|
|
659
|
-
cursor: not-allowed;
|
|
660
|
-
font-weight: 400;
|
|
661
|
-
}
|
|
662
|
-
:host tbody td.disabled.sg-date-holiday {
|
|
663
|
-
color: hsla(var(--sg-hsl-red-2), 0.25);
|
|
664
|
-
}
|
|
665
|
-
:host tbody td.disabled .number,
|
|
666
|
-
:host tbody td.disabled .indicator-dot {
|
|
667
|
-
--_color: hsl(var(--sg-hsl-disabled-color)) !important;
|
|
668
|
-
}
|
|
669
|
-
:host tbody td.custom-date {
|
|
670
|
-
position: relative;
|
|
671
|
-
}
|
|
672
|
-
:host tbody .number {
|
|
673
|
-
color: var(--_color, "currentColor");
|
|
674
|
-
}
|
|
675
|
-
:host tbody .indicator-dot {
|
|
676
|
-
display: block;
|
|
677
|
-
width: 0.375rem;
|
|
678
|
-
height: 0.375rem;
|
|
679
|
-
top: 1.5rem;
|
|
680
|
-
border-radius: 50%;
|
|
681
|
-
margin: auto;
|
|
682
|
-
position: absolute;
|
|
683
|
-
inset-block-end: 0.125rem;
|
|
684
|
-
inset-inline: 0;
|
|
685
|
-
background-color: var(--_color);
|
|
686
|
-
}
|
|
687
|
-
:host table {
|
|
688
|
-
flex-grow: 1;
|
|
689
|
-
width: 100%;
|
|
690
|
-
}
|
|
691
|
-
:host table td {
|
|
692
|
-
width: 3rem;
|
|
693
|
-
height: 3rem;
|
|
694
|
-
}
|
|
695
|
-
}
|
|
696
|
-
@layer _modifiers {
|
|
697
|
-
.week-number {
|
|
698
|
-
border-right: solid 1px var(--gds-ref-pallet-base300);
|
|
699
|
-
font-weight: 400;
|
|
700
|
-
pointer-events: none;
|
|
701
|
-
}
|
|
702
|
-
}
|
|
703
|
-
}`;
|
|
704
|
-
|
|
705
|
-
// libs/core/src/components/calendar/calendar.trans.styles.ts
|
|
706
|
-
function register4() {
|
|
707
|
-
TransitionalStyles.instance.register("gds-calendar", calendar_trans_styles_default.toString());
|
|
708
|
-
}
|
|
709
|
-
var calendar_trans_styles_default2 = register4;
|
|
710
|
-
|
|
711
|
-
// libs/core/src/primitives/field-base/field-base.trans.styles.scss?inline
|
|
712
|
-
var field_base_trans_styles_default = `/* stylelint-disable max-nesting-depth */
|
|
713
|
-
/* stylelint-enable max-nesting-depth */
|
|
714
|
-
/**
|
|
715
|
-
* Calculate the luminance for a color.
|
|
716
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
717
|
-
*/
|
|
718
|
-
/**
|
|
719
|
-
* Calculate the contrast ratio between two colors.
|
|
720
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
721
|
-
*/
|
|
722
|
-
/* stylelint-disable */
|
|
723
|
-
/* stylelint-enable */
|
|
724
|
-
/* stylelint-disable */
|
|
725
|
-
/**
|
|
726
|
-
* @deprecated
|
|
727
|
-
* Use \`add-focus\` instead
|
|
728
|
-
*/
|
|
729
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
730
|
-
@layer base, reset, transitional-styles;
|
|
731
|
-
@layer transitional-styles {
|
|
732
|
-
.field {
|
|
733
|
-
border-radius: var(--sg-border-radius);
|
|
734
|
-
border: solid var(--sg-border-width) var(--sg-border-color);
|
|
735
|
-
--border-color: var(--sg-border-color);
|
|
736
|
-
align-items: stretch;
|
|
737
|
-
gap: var(--gds-space-xs);
|
|
738
|
-
background-color: var(--sg-form-control-bg);
|
|
739
|
-
box-sizing: border-box;
|
|
740
|
-
color: var(--sg-text-primary);
|
|
741
|
-
cursor: text;
|
|
742
|
-
display: flex;
|
|
743
|
-
justify-content: space-between;
|
|
744
|
-
align-items: center;
|
|
745
|
-
padding: calc(var(--gds-space-xs) - 1px) var(--gds-space-xs) calc(var(--gds-space-xs) - 1px) var(--gds-space-m);
|
|
746
|
-
min-block-size: 44px;
|
|
747
|
-
}
|
|
748
|
-
.field:focus:not(:focus-visible) {
|
|
749
|
-
box-shadow: none;
|
|
750
|
-
outline: 0;
|
|
751
|
-
}
|
|
752
|
-
.field:focus, .field:focus-within {
|
|
753
|
-
outline-color: var(--gds-sys-color-focus-outline);
|
|
754
|
-
outline-style: solid;
|
|
755
|
-
outline-width: 0.125rem;
|
|
756
|
-
outline-offset: 0.125rem;
|
|
757
|
-
}
|
|
758
|
-
.field:hover {
|
|
759
|
-
background-color: var(--grey-200);
|
|
760
|
-
}
|
|
761
|
-
.field.small {
|
|
762
|
-
font-size: 0.875rem;
|
|
763
|
-
min-height: 2rem;
|
|
764
|
-
}
|
|
765
|
-
.field.multiline {
|
|
766
|
-
align-items: flex-start;
|
|
767
|
-
padding: calc(var(--gds-space-s) - 1px) var(--gds-space-s) calc(var(--gds-space-s) - 1px) var(--gds-space-m);
|
|
768
|
-
height: -moz-max-content;
|
|
769
|
-
height: max-content;
|
|
770
|
-
}
|
|
771
|
-
.field.action-slot-occupied:not(.trail-slot-occupied) {
|
|
772
|
-
padding-right: var(--gds-space-xs);
|
|
773
|
-
}
|
|
774
|
-
.field.lead-slot-occupied {
|
|
775
|
-
padding-left: var(--gds-space-xs);
|
|
776
|
-
}
|
|
777
|
-
.field.trail-slot-occupied {
|
|
778
|
-
padding: calc(var(--gds-space-xs) - 1px) var(--gds-space-m);
|
|
779
|
-
}
|
|
780
|
-
.field slot[name=action]::slotted(*) {
|
|
781
|
-
margin: -3px 0 -3px -3px;
|
|
782
|
-
}
|
|
783
|
-
.field:focus-within {
|
|
784
|
-
outline-color: currentColor;
|
|
785
|
-
}
|
|
786
|
-
.field.invalid {
|
|
787
|
-
border-color: var(--gds-color-l3-border-negative);
|
|
788
|
-
color: var(--gds-color-l3-content-negative);
|
|
789
|
-
border-bottom-width: 2px;
|
|
790
|
-
}
|
|
791
|
-
.field.disabled {
|
|
792
|
-
background: var(--gds-color-l3-background-disabled);
|
|
793
|
-
color: var(--gds-color-l3-content-disabled);
|
|
794
|
-
border-color: transparent;
|
|
795
|
-
pointer-events: none;
|
|
796
|
-
}
|
|
797
|
-
.main-slot-wrap {
|
|
798
|
-
display: flex;
|
|
799
|
-
flex: 1;
|
|
800
|
-
}
|
|
801
|
-
slot:not([name])::slotted(*) {
|
|
802
|
-
color: currentColor;
|
|
803
|
-
}
|
|
804
|
-
slot[name=lead]::slotted([gds-element^=gds-icon-]) {
|
|
805
|
-
align-items: center;
|
|
806
|
-
justify-content: center;
|
|
807
|
-
display: flex;
|
|
808
|
-
min-width: var(--gds-space-l);
|
|
809
|
-
}
|
|
810
|
-
}`;
|
|
811
|
-
|
|
812
|
-
// libs/core/src/primitives/field-base/field-base.trans.styles.ts
|
|
813
|
-
function register5() {
|
|
814
|
-
TransitionalStyles.instance.register("gds-field-base", field_base_trans_styles_default.toString());
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
// libs/core/src/components/dropdown/dropdown.trans.styles.ts
|
|
818
|
-
function register7() {
|
|
819
|
-
register();
|
|
820
|
-
register2();
|
|
821
|
-
register6();
|
|
822
|
-
register5();
|
|
823
|
-
}
|
|
824
|
-
var dropdown_trans_styles_default = register7;
|
|
825
|
-
|
|
826
|
-
// libs/core/src/components/datepicker/datepicker.trans.styles.scss?inline
|
|
827
|
-
var datepicker_trans_styles_default = `/* stylelint-disable max-nesting-depth */
|
|
828
|
-
/* stylelint-enable max-nesting-depth */
|
|
829
|
-
/**
|
|
830
|
-
* Calculate the luminance for a color.
|
|
831
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
832
|
-
*/
|
|
833
|
-
/**
|
|
834
|
-
* Calculate the contrast ratio between two colors.
|
|
835
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
836
|
-
*/
|
|
837
|
-
/* stylelint-disable */
|
|
838
|
-
/* stylelint-enable */
|
|
839
|
-
/* stylelint-disable */
|
|
840
|
-
/**
|
|
841
|
-
* @deprecated
|
|
842
|
-
* Use \`add-focus\` instead
|
|
843
|
-
*/
|
|
844
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
845
|
-
@layer base, reset, transitional-styles;
|
|
846
|
-
@layer transitional-styles {
|
|
847
|
-
:host {
|
|
848
|
-
display: flex;
|
|
849
|
-
flex-direction: column;
|
|
850
|
-
width: 100%;
|
|
851
|
-
contain: layout;
|
|
852
|
-
isolation: isolate;
|
|
853
|
-
gap: var(--gds-space-xs);
|
|
854
|
-
}
|
|
855
|
-
[role=spinbutton] {
|
|
856
|
-
display: inline-block;
|
|
857
|
-
}
|
|
858
|
-
[role=spinbutton]:focus {
|
|
859
|
-
background: color-mix(in srgb, var(--gds-sys-color-blue) 50%, transparent);
|
|
860
|
-
outline: none;
|
|
861
|
-
}
|
|
862
|
-
[role=spinbutton]::-moz-selection {
|
|
863
|
-
background: transparent;
|
|
864
|
-
}
|
|
865
|
-
[role=spinbutton]::selection {
|
|
866
|
-
background: transparent;
|
|
867
|
-
}
|
|
868
|
-
}`;
|
|
869
|
-
|
|
870
|
-
// libs/core/src/components/datepicker/datepicker.trans.styles.ts
|
|
871
|
-
function register8() {
|
|
872
|
-
const tokensAndStyles = datepicker_trans_styles_default.toString() + tokens.reduce((acc, token) => acc + token.cssText, "");
|
|
873
|
-
TransitionalStyles.instance.register(
|
|
874
|
-
"gds-datepicker",
|
|
875
|
-
tokensAndStyles.toString()
|
|
876
|
-
);
|
|
877
|
-
register7();
|
|
878
|
-
register2();
|
|
879
|
-
register4();
|
|
880
|
-
}
|
|
881
|
-
var datepicker_trans_styles_default2 = register8;
|
|
882
|
-
|
|
883
|
-
// libs/core/src/components/filter-chips/filter-chip/filter-chip.trans.styles.scss?inline
|
|
884
|
-
var filter_chip_trans_styles_default = `@layer base, reset, transitional-styles;
|
|
885
|
-
@layer transitional-styles {
|
|
886
|
-
@layer _base, _overrides;
|
|
887
|
-
@layer _base {
|
|
888
|
-
.btn-p {
|
|
889
|
-
padding: 0 0.75rem;
|
|
890
|
-
}
|
|
891
|
-
.icon {
|
|
892
|
-
width: 1rem;
|
|
893
|
-
}
|
|
894
|
-
}
|
|
895
|
-
}`;
|
|
896
|
-
|
|
897
|
-
// libs/core/src/components/filter-chips/filter-chip/filter-chip.trans.styles.ts
|
|
898
|
-
function register9() {
|
|
899
|
-
TransitionalStyles.instance.register("gds-filter-chip", filter_chip_trans_styles_default.toString());
|
|
900
|
-
register6();
|
|
901
|
-
}
|
|
902
|
-
var filter_chip_trans_styles_default2 = register9;
|
|
903
|
-
|
|
904
|
-
// libs/core/src/components/filter-chips/filter-chips.trans.styles.scss?inline
|
|
905
|
-
var filter_chips_trans_styles_default = `@layer base, reset, transitional-styles;
|
|
906
|
-
@layer transitional-styles {
|
|
907
|
-
@layer _base, _overrides;
|
|
908
|
-
@layer _base {}
|
|
909
|
-
@layer _overrides {}
|
|
910
|
-
}`;
|
|
911
|
-
|
|
912
|
-
// libs/core/src/components/filter-chips/filter-chips.trans.styles.ts
|
|
913
|
-
function register10() {
|
|
914
|
-
TransitionalStyles.instance.register("gds-filter-chips", filter_chips_trans_styles_default.toString());
|
|
915
|
-
register9();
|
|
916
|
-
}
|
|
917
|
-
var filter_chips_trans_styles_default2 = register10;
|
|
918
|
-
|
|
919
|
-
// libs/core/src/components/grouped-list/grouped-list.trans.styles.scss?inline
|
|
920
|
-
var grouped_list_trans_styles_default = `@layer base, reset, transitional-styles;
|
|
921
|
-
@layer transitional-styles {
|
|
922
|
-
@layer _base, _overrides;
|
|
923
|
-
:host {
|
|
924
|
-
display: block;
|
|
925
|
-
list-style: none;
|
|
926
|
-
}
|
|
927
|
-
@layer _base {
|
|
928
|
-
.gds-list-heading {
|
|
929
|
-
background-color: var(--gds-ref-pallet-base200, #e9e9e9);
|
|
930
|
-
font-size: 0.875rem;
|
|
931
|
-
font-weight: 500;
|
|
932
|
-
padding: 0.5rem 1rem;
|
|
933
|
-
}
|
|
934
|
-
::slotted([gds-element=gds-list-item]) {
|
|
935
|
-
all: revert;
|
|
936
|
-
border-bottom: 1px solid var(--gds-ref-pallet-base200, #e9e9e9);
|
|
937
|
-
display: flex;
|
|
938
|
-
gap: 0.25rem;
|
|
939
|
-
justify-content: space-between;
|
|
940
|
-
padding: 1rem;
|
|
941
|
-
}
|
|
942
|
-
}
|
|
943
|
-
}`;
|
|
944
|
-
|
|
945
|
-
// libs/core/src/components/grouped-list/grouped-list.trans.styles.ts
|
|
946
|
-
function register11() {
|
|
947
|
-
TransitionalStyles.instance.register("gds-grouped-list", grouped_list_trans_styles_default.toString());
|
|
948
|
-
}
|
|
949
|
-
var grouped_list_trans_styles_default2 = register11;
|
|
950
|
-
|
|
951
|
-
// libs/core/src/components/input/input.trans.styles.ts
|
|
952
|
-
function register12() {
|
|
953
|
-
register6();
|
|
954
|
-
register5();
|
|
955
|
-
}
|
|
956
|
-
var input_trans_styles_default = register12;
|
|
957
|
-
|
|
958
|
-
// libs/core/src/components/segmented-control/segment/segment.trans.styles.scss?inline
|
|
959
|
-
var segment_trans_styles_default = `/* stylelint-disable max-nesting-depth */
|
|
960
|
-
/* stylelint-enable max-nesting-depth */
|
|
961
|
-
/**
|
|
962
|
-
* Calculate the luminance for a color.
|
|
963
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
964
|
-
*/
|
|
965
|
-
/**
|
|
966
|
-
* Calculate the contrast ratio between two colors.
|
|
967
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
968
|
-
*/
|
|
969
|
-
/* stylelint-disable */
|
|
970
|
-
/* stylelint-enable */
|
|
971
|
-
/* stylelint-disable */
|
|
972
|
-
/**
|
|
973
|
-
* @deprecated
|
|
974
|
-
* Use \`add-focus\` instead
|
|
975
|
-
*/
|
|
976
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
977
|
-
@layer base, reset, transitional-styles;
|
|
978
|
-
@layer transitional-styles {
|
|
979
|
-
@layer _base;
|
|
980
|
-
@layer _base {
|
|
981
|
-
:host {
|
|
982
|
-
border-right: 1px solid #333;
|
|
983
|
-
box-sizing: border-box;
|
|
984
|
-
display: flex;
|
|
985
|
-
transition: 0.2s;
|
|
986
|
-
z-index: 1;
|
|
987
|
-
}
|
|
988
|
-
:host(:last-child) {
|
|
989
|
-
border-right: 0;
|
|
990
|
-
}
|
|
991
|
-
button {
|
|
992
|
-
-webkit-appearance: none;
|
|
993
|
-
-moz-appearance: none;
|
|
994
|
-
appearance: none;
|
|
995
|
-
background: transparent;
|
|
996
|
-
border-width: 0;
|
|
997
|
-
color: var(--text-primary-color);
|
|
998
|
-
cursor: pointer;
|
|
999
|
-
flex-grow: 1;
|
|
1000
|
-
flex-shrink: 0;
|
|
1001
|
-
font-family: inherit;
|
|
1002
|
-
font-size: inherit;
|
|
1003
|
-
font-weight: 500;
|
|
1004
|
-
min-width: 6.625rem;
|
|
1005
|
-
overflow: hidden;
|
|
1006
|
-
padding: 0 1rem;
|
|
1007
|
-
text-align: center;
|
|
1008
|
-
text-overflow: ellipsis;
|
|
1009
|
-
white-space: nowrap;
|
|
1010
|
-
width: 100%;
|
|
1011
|
-
border-radius: 0;
|
|
1012
|
-
}
|
|
1013
|
-
@media (pointer: fine) {
|
|
1014
|
-
button:hover {
|
|
1015
|
-
background-color: var(--grey-400);
|
|
1016
|
-
}
|
|
1017
|
-
}
|
|
1018
|
-
button[aria-current=true] {
|
|
1019
|
-
background-color: #333;
|
|
1020
|
-
color: #fff;
|
|
1021
|
-
}
|
|
1022
|
-
button:focus-visible {
|
|
1023
|
-
outline: 2px solid #000;
|
|
1024
|
-
outline-offset: -2px;
|
|
1025
|
-
}
|
|
1026
|
-
button:disabled,
|
|
1027
|
-
button[aria-disabled=true],
|
|
1028
|
-
button.disabled {
|
|
1029
|
-
color: var(--text-disabled-color) !important;
|
|
1030
|
-
border-color: var(--border-disabled-color) !important;
|
|
1031
|
-
cursor: not-allowed;
|
|
1032
|
-
}
|
|
1033
|
-
button:disabled::-moz-placeholder, button[aria-disabled=true]::-moz-placeholder, button.disabled::-moz-placeholder {
|
|
1034
|
-
color: var(--text-disabled-color);
|
|
1035
|
-
}
|
|
1036
|
-
button:disabled::placeholder,
|
|
1037
|
-
button[aria-disabled=true]::placeholder,
|
|
1038
|
-
button.disabled::placeholder {
|
|
1039
|
-
color: var(--text-disabled-color);
|
|
1040
|
-
}
|
|
1041
|
-
}
|
|
1042
|
-
}`;
|
|
1043
|
-
|
|
1044
|
-
// libs/core/src/components/segmented-control/segment/segment.trans.styles.ts
|
|
1045
|
-
function register13() {
|
|
1046
|
-
TransitionalStyles.instance.register("gds-segmented", segment_trans_styles_default.toString());
|
|
1047
|
-
}
|
|
1048
|
-
var segment_trans_styles_default2 = register13;
|
|
1049
|
-
|
|
1050
|
-
// libs/core/src/components/segmented-control/segmented-control.trans.styles.css?inline
|
|
1051
|
-
var segmented_control_trans_styles_default = `@layer base, reset, transitional-styles;
|
|
1052
|
-
|
|
1053
|
-
@layer transitional-styles {
|
|
1054
|
-
@layer _base, _overrides;
|
|
1055
|
-
|
|
1056
|
-
@layer _base {
|
|
1057
|
-
:host {
|
|
1058
|
-
background-color: #fff;
|
|
1059
|
-
border: 1px solid #333;
|
|
1060
|
-
border-radius: 4px;
|
|
1061
|
-
box-sizing: border-box;
|
|
1062
|
-
contain: layout;
|
|
1063
|
-
display: inline-flex;
|
|
1064
|
-
height: 3rem;
|
|
1065
|
-
max-width: 100%;
|
|
1066
|
-
overflow: hidden;
|
|
1067
|
-
}
|
|
1068
|
-
|
|
1069
|
-
:host([size='small']) {
|
|
1070
|
-
height: 2.5rem;
|
|
1071
|
-
}
|
|
1072
|
-
|
|
1073
|
-
#track {
|
|
1074
|
-
box-sizing: border-box;
|
|
1075
|
-
display: flex;
|
|
1076
|
-
flex-grow: 0;
|
|
1077
|
-
flex-shrink: 1;
|
|
1078
|
-
scroll-snap-type: inline mandatory;
|
|
1079
|
-
overscroll-behavior-x: contain;
|
|
1080
|
-
scroll-behavior: smooth;
|
|
1081
|
-
overflow-x: scroll;
|
|
1082
|
-
position: relative;
|
|
1083
|
-
width: 100%;
|
|
1084
|
-
scrollbar-width: none;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
#track::-webkit-scrollbar {
|
|
1088
|
-
display: none;
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
#btn-prev,
|
|
1092
|
-
#btn-next {
|
|
1093
|
-
align-items: center;
|
|
1094
|
-
-webkit-appearance: none;
|
|
1095
|
-
-moz-appearance: none;
|
|
1096
|
-
appearance: none;
|
|
1097
|
-
aspect-ratio: 1;
|
|
1098
|
-
background-color: #fff;
|
|
1099
|
-
border-width: 0;
|
|
1100
|
-
color: #333;
|
|
1101
|
-
cursor: pointer;
|
|
1102
|
-
display: flex;
|
|
1103
|
-
font-size: 1rem;
|
|
1104
|
-
height: 100%;
|
|
1105
|
-
justify-content: center;
|
|
1106
|
-
width: 2.5rem;
|
|
1107
|
-
z-index: 2;
|
|
1108
|
-
position: absolute;
|
|
1109
|
-
transition: 0.2s;
|
|
1110
|
-
|
|
1111
|
-
@media (pointer: fine) {
|
|
1112
|
-
&:hover {
|
|
1113
|
-
background-color: var(--grey-400);
|
|
1114
|
-
}
|
|
1115
|
-
}
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1118
|
-
#btn-prev {
|
|
1119
|
-
border-right: 1px solid #333;
|
|
1120
|
-
}
|
|
1121
|
-
#btn-next {
|
|
1122
|
-
border-left: 1px solid #333;
|
|
1123
|
-
right: 0;
|
|
1124
|
-
}
|
|
1125
|
-
|
|
1126
|
-
#btn-prev[aria-hidden='true'],
|
|
1127
|
-
#btn-next[aria-hidden='true'] {
|
|
1128
|
-
opacity: 0;
|
|
1129
|
-
width: 0;
|
|
1130
|
-
margin: 0;
|
|
1131
|
-
padding: 0;
|
|
1132
|
-
}
|
|
1133
|
-
|
|
1134
|
-
:host([size='small']) #btn-prev,
|
|
1135
|
-
:host([size='small']) #btn-next {
|
|
1136
|
-
width: 2rem;
|
|
1137
|
-
}
|
|
1138
|
-
|
|
1139
|
-
::slotted(*) {
|
|
1140
|
-
flex-grow: 1;
|
|
1141
|
-
flex-shrink: 0;
|
|
1142
|
-
z-index: 1;
|
|
1143
|
-
scroll-margin: 0 2.5rem;
|
|
1144
|
-
scroll-snap-align: start;
|
|
1145
|
-
}
|
|
1146
|
-
|
|
1147
|
-
#indicator {
|
|
1148
|
-
display: none;
|
|
1149
|
-
}
|
|
1150
|
-
}
|
|
1151
|
-
|
|
1152
|
-
/* @layer _overrides {
|
|
1153
|
-
} */
|
|
1154
|
-
}
|
|
1155
|
-
`;
|
|
1156
|
-
|
|
1157
|
-
// libs/core/src/components/segmented-control/segmented-control.trans.styles.ts
|
|
1158
|
-
function register14() {
|
|
1159
|
-
TransitionalStyles.instance.register(
|
|
1160
|
-
"gds-segmented-control",
|
|
1161
|
-
segmented_control_trans_styles_default.toString()
|
|
1162
|
-
);
|
|
1163
|
-
register13();
|
|
1164
|
-
}
|
|
1165
|
-
var segmented_control_trans_styles_default2 = register14;
|
|
1166
|
-
|
|
1167
|
-
// libs/core/src/components/theme/chlorophyll-tokens.scss?inline
|
|
1168
|
-
var chlorophyll_tokens_default = `/**
|
|
1169
|
-
* Calculate the luminance for a color.
|
|
1170
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
1171
|
-
*/
|
|
1172
|
-
/**
|
|
1173
|
-
* Calculate the contrast ratio between two colors.
|
|
1174
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
1175
|
-
*/
|
|
1176
|
-
/* stylelint-disable max-nesting-depth */
|
|
1177
|
-
/* stylelint-enable max-nesting-depth */
|
|
1178
|
-
/* stylelint-disable */
|
|
1179
|
-
/* stylelint-enable */
|
|
1180
|
-
/* stylelint-disable */
|
|
1181
|
-
/* Mixin for adding themes,
|
|
1182
|
-
Themes such as dark-mode, high-contrast mode etc.
|
|
1183
|
-
Values for light mode are used by default.
|
|
1184
|
-
*/
|
|
1185
|
-
/* mixin for generating css variables from map with optional prefix */
|
|
1186
|
-
:host {
|
|
1187
|
-
display: contents;
|
|
1188
|
-
}
|
|
1189
|
-
|
|
1190
|
-
:host([color-scheme=light]) {
|
|
1191
|
-
--gds-sys-shape-corner-none: 0;
|
|
1192
|
-
--gds-sys-shape-corner-small: 0.125rem;
|
|
1193
|
-
--gds-sys-shape-corner-medium: 0.25rem;
|
|
1194
|
-
--gds-sys-shape-corner-round: 50%;
|
|
1195
|
-
--gds-ref-color-white: #ffffff;
|
|
1196
|
-
--gds-ref-color-black: #000000;
|
|
1197
|
-
--gds-ref-pallet-base000: hsl(0 0% 100%);
|
|
1198
|
-
--gds-ref-pallet-base100: hsl(0, 0%, 97%);
|
|
1199
|
-
--gds-ref-pallet-base200: hsl(0, 0%, 91%);
|
|
1200
|
-
--gds-ref-pallet-base300: hsl(0, 0%, 87%);
|
|
1201
|
-
--gds-ref-pallet-base400: hsl(0, 0%, 81%);
|
|
1202
|
-
--gds-ref-pallet-base500: hsl(0, 0%, 68%);
|
|
1203
|
-
--gds-ref-pallet-base600: hsl(0, 0%, 53%);
|
|
1204
|
-
--gds-ref-pallet-base700: hsl(0, 0%, 29%);
|
|
1205
|
-
--gds-ref-pallet-base800: hsl(0, 0%, 20%);
|
|
1206
|
-
--gds-ref-pallet-base900: hsl(0, 0%, 10%);
|
|
1207
|
-
--gds-ref-pallet-base1000: hsl(0 0% 0%);
|
|
1208
|
-
--gds-sys-color-blue: #41b0ee;
|
|
1209
|
-
--gds-sys-color-blue-dark-1: #0092e1;
|
|
1210
|
-
--gds-sys-color-blue-dark-2: #007ac7;
|
|
1211
|
-
--gds-sys-color-surface: var(--gds-ref-pallet-base000);
|
|
1212
|
-
--gds-sys-color-base: var(--gds-ref-pallet-base800);
|
|
1213
|
-
--gds-sys-color-font: var(--gds-ref-pallet-base800);
|
|
1214
|
-
--gds-sys-color-base-container: var(--gds-ref-pallet-base500);
|
|
1215
|
-
--gds-sys-color-focus-outline: var(--gds-ref-pallet-base1000);
|
|
1216
|
-
--gds-sys-color-blue: #41b0ee;
|
|
1217
|
-
--gds-sys-color-dark-blue-1: #41b0ee;
|
|
1218
|
-
--gds-sys-color-dark-blue-2: #007ac7;
|
|
1219
|
-
--gds-sys-color-green: #60cd18;
|
|
1220
|
-
--gds-sys-color-dark-green-1: #45b400;
|
|
1221
|
-
--gds-sys-color-dark-green-2: #308800;
|
|
1222
|
-
--gds-sys-color-yellow: #ffc500;
|
|
1223
|
-
--gds-sys-color-dark-yellow-1: #ffb400;
|
|
1224
|
-
--gds-sys-color-dark-yellow-2: #f8a000;
|
|
1225
|
-
--gds-sys-color-text-primary: #333333;
|
|
1226
|
-
--gds-sys-color-text-secondary: #ababab;
|
|
1227
|
-
--gds-sys-color-text-white: #ffffff;
|
|
1228
|
-
--gds-sys-color-text-black: #333333;
|
|
1229
|
-
--gds-sys-color-text-inverted: #ffffff;
|
|
1230
|
-
--gds-sys-color-text-link: #0062bc;
|
|
1231
|
-
--gds-sys-color-text-error: #9f000a;
|
|
1232
|
-
--gds-sys-color-text-disabled: #adadad;
|
|
1233
|
-
--gds-sys-color-red: #f03529;
|
|
1234
|
-
--gds-sys-color-dark-red-1: #d81a1a;
|
|
1235
|
-
--gds-sys-color-dark-red-2: #bb000c;
|
|
1236
|
-
--gds-sys-color-purple: #673ab6;
|
|
1237
|
-
--gds-sys-color-dark-purple-1: #4f2c99;
|
|
1238
|
-
--gds-sys-color-dark-purple-2: #3f2587;
|
|
1239
|
-
--gds-sys-color-white: #ffffff;
|
|
1240
|
-
--gds-sys-color-black: #000000;
|
|
1241
|
-
--gds-sys-color-background-primary: #ffffff;
|
|
1242
|
-
--gds-sys-color-background-secondary: #eeeeee;
|
|
1243
|
-
--gds-sys-color-base-100: #f8f8f8;
|
|
1244
|
-
--gds-sys-color-base-200: #e9e9e9;
|
|
1245
|
-
--gds-sys-color-base-300: #dedede;
|
|
1246
|
-
--gds-sys-color-base-400: #cecece;
|
|
1247
|
-
--gds-sys-color-base-500: #adadad;
|
|
1248
|
-
--gds-sys-color-base-600: #868686;
|
|
1249
|
-
--gds-sys-color-base-700: #494949;
|
|
1250
|
-
--gds-sys-color-base-800: #333333;
|
|
1251
|
-
--gds-sys-color-base-900: #1a1a1a;
|
|
1252
|
-
--gds-sys-color-hover-10: rgba(255, 255, 255, 0.1);
|
|
1253
|
-
--gds-sys-color-hover-20: rgba(255, 255, 255, 0.2);
|
|
1254
|
-
--gds-comp-checkbox-container-height: 1rem;
|
|
1255
|
-
--gds-comp-checkbox-container-width: 1rem;
|
|
1256
|
-
--gds-comp-checkbox-container-color: var(--gds-sys-color-surface);
|
|
1257
|
-
--gds-comp-checkbox-container-color-disabled: var(--gds-ref-pallet-base200);
|
|
1258
|
-
--gds-comp-checkbox-border-color: var(--gds-sys-color-base);
|
|
1259
|
-
--gds-comp-checkbox-border-radius: var(--gds-sys-shape-corner-small);
|
|
1260
|
-
--gds-comp-checkbox-hover-border-color: var(--gds-ref-pallet-base600);
|
|
1261
|
-
--gds-comp-checkbox-container-color-selected: var(--gds-sys-color-base);
|
|
1262
|
-
--gds-comp-checkbox-border-color-selected: var(--gds-sys-color-surface);
|
|
1263
|
-
--gds-comp-checkbox-border-color-focus: var(--gds-sys-color-blue-dark-2);
|
|
1264
|
-
--heading-primary-color: rgb(0, 0, 0);
|
|
1265
|
-
--text-primary-color: rgb(51, 51, 51);
|
|
1266
|
-
--text-secondary-color: rgb(134, 134, 134);
|
|
1267
|
-
--text-disabled-color: var(--gds-ref-pallet-base600);
|
|
1268
|
-
--text-primary-disabled-color: var(--gds-ref-pallet-base600);
|
|
1269
|
-
--border-color: rgba(0, 0, 0, 0.17);
|
|
1270
|
-
--border-secondary-color: rgba(0, 0, 0, 0.1);
|
|
1271
|
-
--border-disabled-color: var(--gds-ref-pallet-base500);
|
|
1272
|
-
--border-primary-disabled-color: var(--gds-ref-pallet-base500);
|
|
1273
|
-
--border-color-invalid: rgb(159, 0, 10);
|
|
1274
|
-
--border-color-valid: rgb(55, 157, 0);
|
|
1275
|
-
--checkbox-checkmark-disabled-color: rgb(255, 255, 255);
|
|
1276
|
-
--form-control-primary-bg-disabled: var(--gds-ref-pallet-base200);
|
|
1277
|
-
--link-color-dark: rgb(51, 51, 51);
|
|
1278
|
-
--link-color-dark-visited: rgb(73, 73, 73);
|
|
1279
|
-
/* try and adjust colors to get desired color combination,
|
|
1280
|
-
in this case adjust background to go with white foreground */
|
|
1281
|
-
--intent-primary-background: rgb(0, 122, 199);
|
|
1282
|
-
--intent-primary-color: #fff;
|
|
1283
|
-
--intent-primary-fadable-color: 255, 255, 255;
|
|
1284
|
-
/* try and adjust colors to get desired color combination,
|
|
1285
|
-
in this case adjust background to go with white foreground */
|
|
1286
|
-
--intent-secondary-background: rgb(222, 222, 222);
|
|
1287
|
-
--intent-secondary-color: black;
|
|
1288
|
-
--intent-secondary-fadable-color: 0, 0, 0;
|
|
1289
|
-
/* try and adjust colors to get desired color combination,
|
|
1290
|
-
in this case adjust background to go with white foreground */
|
|
1291
|
-
--intent-info-background: rgb(0, 122, 199);
|
|
1292
|
-
--intent-info-color: #fff;
|
|
1293
|
-
--intent-info-fadable-color: 255, 255, 255;
|
|
1294
|
-
/* try and adjust colors to get desired color combination,
|
|
1295
|
-
in this case adjust background to go with white foreground */
|
|
1296
|
-
--intent-success-background: rgb(48.4503158901, 133.9460147801, 2.3496939396);
|
|
1297
|
-
--intent-success-color: #fff;
|
|
1298
|
-
--intent-success-fadable-color: 255, 255, 255;
|
|
1299
|
-
/* try and adjust colors to get desired color combination,
|
|
1300
|
-
in this case adjust background to go with white foreground */
|
|
1301
|
-
--intent-warning-background: rgb(255, 197, 0);
|
|
1302
|
-
--intent-warning-color: black;
|
|
1303
|
-
--intent-warning-fadable-color: 0, 0, 0;
|
|
1304
|
-
/* try and adjust colors to get desired color combination,
|
|
1305
|
-
in this case adjust background to go with white foreground */
|
|
1306
|
-
--intent-danger-background: rgb(159, 0, 10);
|
|
1307
|
-
--intent-danger-color: #fff;
|
|
1308
|
-
--intent-danger-fadable-color: 255, 255, 255;
|
|
1309
|
-
/* try and adjust colors to get desired color combination,
|
|
1310
|
-
in this case adjust background to go with white foreground */
|
|
1311
|
-
--intent-light-background: rgb(238, 238, 238);
|
|
1312
|
-
--intent-light-color: black;
|
|
1313
|
-
--intent-light-fadable-color: 0, 0, 0;
|
|
1314
|
-
/* try and adjust colors to get desired color combination,
|
|
1315
|
-
in this case adjust background to go with white foreground */
|
|
1316
|
-
--intent-dark-background: rgb(51, 51, 51);
|
|
1317
|
-
--intent-dark-color: #fff;
|
|
1318
|
-
--intent-dark-fadable-color: 255, 255, 255;
|
|
1319
|
-
--grey-1100: rgb(26, 26, 26);
|
|
1320
|
-
--grey-1000: rgb(51, 51, 51);
|
|
1321
|
-
--grey-900: rgb(73, 73, 73);
|
|
1322
|
-
--grey-800: rgb(134, 134, 134);
|
|
1323
|
-
--grey-700: rgb(173, 173, 173);
|
|
1324
|
-
--grey-600: rgb(206, 206, 206);
|
|
1325
|
-
--grey-500: rgb(222, 222, 222);
|
|
1326
|
-
--grey-400: rgb(233, 233, 233);
|
|
1327
|
-
--grey-300: rgb(238, 238, 238);
|
|
1328
|
-
--grey-200: rgb(248, 248, 248);
|
|
1329
|
-
--grey-100: rgb(255, 255, 255);
|
|
1330
|
-
color: var(--text-primary-color);
|
|
1331
|
-
--gds-sys-outline-color: #333333;
|
|
1332
|
-
--gds-comp-chips-fr-color: #333333;
|
|
1333
|
-
--gds-comp-chips-bg-color: #ffffff;
|
|
1334
|
-
--gds-comp-chips-br-color: #333333;
|
|
1335
|
-
--gds-comp-chips-fr-color-hover: #ffffff;
|
|
1336
|
-
--gds-comp-chips-bg-color-hover: #494949;
|
|
1337
|
-
--gds-comp-chips-br-color-hover: #494949;
|
|
1338
|
-
--gds-comp-chips-bg-color-active: #333333;
|
|
1339
|
-
--gds-comp-chips-bg-color-action: #333333;
|
|
1340
|
-
/* generate css variables */
|
|
1341
|
-
--sg-z-index-datepicker: 995;
|
|
1342
|
-
--sg-z-index-dropdown-backdrop: 990;
|
|
1343
|
-
--sg-z-index-dropdown: 2000;
|
|
1344
|
-
--sg-z-index-sticky: 1020;
|
|
1345
|
-
--sg-z-index-fixed: 1030;
|
|
1346
|
-
--sg-z-index-modal-backdrop: 1040;
|
|
1347
|
-
--sg-z-index-modal: 1050;
|
|
1348
|
-
--sg-z-index-popover: 1060;
|
|
1349
|
-
--sg-z-index-tooltip: 1070;
|
|
1350
|
-
--sg-text-primary: #333333;
|
|
1351
|
-
--sg-text-secondary: #333333;
|
|
1352
|
-
--sg-form-control-bg: #fff;
|
|
1353
|
-
--sg-form-control-bg-disabled: #eeeeee;
|
|
1354
|
-
--sg-border-color: var(--gds-ref-pallet-base600);
|
|
1355
|
-
--sg-border-width: 1px;
|
|
1356
|
-
--sg-border-width-50: 0.5px;
|
|
1357
|
-
--sg-border-radius: 0.25rem;
|
|
1358
|
-
--sg-hsl-contrast: 0deg, 0%, 0%;
|
|
1359
|
-
--sg-hsl-light: 0deg, 0%, 97.2549019608%;
|
|
1360
|
-
--sg-hsl-light-contrast: 0deg, 0%, 0%;
|
|
1361
|
-
--sg-hsl-dark: 0deg, 0%, 10.1960784314%;
|
|
1362
|
-
--sg-hsl-dark-contrast: 0deg, 0%, 100%;
|
|
1363
|
-
--sg-hsl-black: 0deg, 0%, 0%;
|
|
1364
|
-
--sg-hsl-white: 0deg, 0%, 100%;
|
|
1365
|
-
--sg-hsl-blue-0: 201.5028901734deg, 83.5748792271%, 59.4117647059%;
|
|
1366
|
-
--sg-hsl-blue-1: 201.0666666667deg, 100%, 44.1176470588%;
|
|
1367
|
-
--sg-hsl-blue-2: 203.216080402deg, 100%, 39.0196078431%;
|
|
1368
|
-
--sg-hsl-green-0: 96.1325966851deg, 79.03930131%, 44.9019607843%;
|
|
1369
|
-
--sg-hsl-green-1: 97deg, 100%, 35.2941176471%;
|
|
1370
|
-
--sg-hsl-green-2: 98.8235294118deg, 100%, 26.6666666667%;
|
|
1371
|
-
--sg-hsl-yellow-0: 46.3529411765deg, 100%, 50%;
|
|
1372
|
-
--sg-hsl-yellow-1: 42.3529411765deg, 100%, 50%;
|
|
1373
|
-
--sg-hsl-yellow-2: 38.7096774194deg, 100%, 48.6274509804%;
|
|
1374
|
-
--sg-hsl-red-0: 3.6180904523deg, 86.8995633188%, 55.0980392157%;
|
|
1375
|
-
--sg-hsl-red-1: 0deg, 78.5123966942%, 47.4509803922%;
|
|
1376
|
-
--sg-hsl-red-2: 356.1497326203deg, 100%, 36.6666666667%;
|
|
1377
|
-
--sg-hsl-purple-0: 261.7741935484deg, 51.6666666667%, 47.0588235294%;
|
|
1378
|
-
--sg-hsl-purple-1: 259.2660550459deg, 55.3299492386%, 38.6274509804%;
|
|
1379
|
-
--sg-hsl-purple-2: 255.9183673469deg, 56.976744186%, 33.7254901961%;
|
|
1380
|
-
--sg-grey-100: #f8f8f8;
|
|
1381
|
-
--sg-grey-200: #e9e9e9;
|
|
1382
|
-
--sg-grey-300: #dedede;
|
|
1383
|
-
--sg-grey-400: #cecece;
|
|
1384
|
-
--sg-grey-500: #adadad;
|
|
1385
|
-
--sg-grey-600: #868686;
|
|
1386
|
-
--sg-grey-700: #494949;
|
|
1387
|
-
--sg-grey-800: #333333;
|
|
1388
|
-
--sg-grey-900: #1a1a1a;
|
|
1389
|
-
--sg-intent-neutral-hsl: 0deg, 0%, 91.3725490196%;
|
|
1390
|
-
--sg-intent-neutral-hsl-contrast: 0deg, 0%, 0%;
|
|
1391
|
-
--sg-intent-info-hsl: 203.216080402deg, 100%, 39.0196078431%;
|
|
1392
|
-
--sg-intent-info-hsl-contrast: 0deg, 0%, 100%;
|
|
1393
|
-
--sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;
|
|
1394
|
-
--sg-intent-success-hsl-contrast: 0deg, 0%, 100%;
|
|
1395
|
-
--sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;
|
|
1396
|
-
--sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;
|
|
1397
|
-
--sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;
|
|
1398
|
-
--sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;
|
|
1399
|
-
--sg-hsl-disabled-background: 0deg, 0%, 97.2549019608%;
|
|
1400
|
-
--sg-hsl-disabled-color: 0deg, 0%, 67.8431372549%;
|
|
1401
|
-
--sg-bg-level-0: #eeeeee;
|
|
1402
|
-
--sg-bg-level-1: #fff;
|
|
1403
|
-
--sg-bg-level-2: #fff;
|
|
1404
|
-
--sg-bg-level-3: #fff;
|
|
1405
|
-
--sg-table-header-background: #1a1a1a;
|
|
1406
|
-
--sg-table-header-color: #fff;
|
|
1407
|
-
--sg-table-cell-padding-x: 0.5rem;
|
|
1408
|
-
--sg-table-cell-padding-y: 0.6875rem;
|
|
1409
|
-
--sg-table-border-width: 1px;
|
|
1410
|
-
--sg-table-border-color: var(--gds-ref-pallet-base600);
|
|
1411
|
-
--sg-table-sort-icon-color: var(--gds-ref-pallet-base600);
|
|
1412
|
-
--sg-table-sort-icon-color-active: #fff;
|
|
1413
|
-
--sg-skeleton-loader-highlight-color: #dedede;
|
|
1414
|
-
--sg-skeleton-loader-background-color: #f8f8f8;
|
|
1415
|
-
--sg-modal-background: #fff;
|
|
1416
|
-
--sg-modal-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1417
|
-
--sg-modal-backdrop-background: rgba(0, 0, 0, 0.5);
|
|
1418
|
-
--sg-popover-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1419
|
-
--sg-popover-background: #fff;
|
|
1420
|
-
--sg-popover-border-color: #007ac7;
|
|
1421
|
-
--sg-card-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1422
|
-
--sg-card-background: #fff;
|
|
1423
|
-
--sg-card-heading-color: #333333;
|
|
1424
|
-
--sg-card-color: #333333;
|
|
1425
|
-
--sg-card-border: solid 1px #fff;
|
|
1426
|
-
--sg-card-border-radius: 4px;
|
|
1427
|
-
}
|
|
1428
|
-
|
|
1429
|
-
/* force dark mode */
|
|
1430
|
-
:host([color-scheme=dark]) {
|
|
1431
|
-
--heading-primary-color: rgb(255, 255, 255);
|
|
1432
|
-
--text-primary-color: rgba(255, 255, 255, 0.9);
|
|
1433
|
-
--text-secondary-color: rgba(255, 255, 255, 0.6);
|
|
1434
|
-
--text-disabled-color: rgba(255, 255, 255, 0.07);
|
|
1435
|
-
--text-primary-disabled-color: rgba(255, 255, 255, 0.07);
|
|
1436
|
-
--border-color: rgb(51, 51, 51);
|
|
1437
|
-
--border-secondary-color: rgb(51, 51, 51);
|
|
1438
|
-
--border-disabled-color: rgb(44, 44, 44);
|
|
1439
|
-
--border-primary-disabled-color: rgb(44, 44, 44);
|
|
1440
|
-
--border-color-invalid: rgb(255, 89, 79);
|
|
1441
|
-
--border-color-valid: rgb(48, 136, 0);
|
|
1442
|
-
--checkbox-checkmark-disabled-color: rgb(51, 51, 51);
|
|
1443
|
-
--link-color-dark: rgb(179, 179, 179);
|
|
1444
|
-
--link-color-dark-visited: rgb(171, 171, 171);
|
|
1445
|
-
--form-control-primary-bg-disabled: rgba(255, 255, 255, 0.02);
|
|
1446
|
-
/* try and adjust colors to get desired color combination,
|
|
1447
|
-
in this case adjust background to go with white foreground */
|
|
1448
|
-
--intent-primary-background: rgb(44, 156, 217);
|
|
1449
|
-
--intent-primary-color: #000;
|
|
1450
|
-
--intent-primary-fadable-color: 0, 0, 0;
|
|
1451
|
-
/* try and adjust colors to get desired color combination,
|
|
1452
|
-
in this case adjust background to go with white foreground */
|
|
1453
|
-
--intent-secondary-background: rgb(51, 51, 51);
|
|
1454
|
-
--intent-secondary-color: #fff;
|
|
1455
|
-
--intent-secondary-fadable-color: 255, 255, 255;
|
|
1456
|
-
/* try and adjust colors to get desired color combination,
|
|
1457
|
-
in this case adjust background to go with white foreground */
|
|
1458
|
-
--intent-info-background: rgb(44, 156, 217);
|
|
1459
|
-
--intent-info-color: #000;
|
|
1460
|
-
--intent-info-fadable-color: 0, 0, 0;
|
|
1461
|
-
/* try and adjust colors to get desired color combination,
|
|
1462
|
-
in this case adjust background to go with white foreground */
|
|
1463
|
-
--intent-success-background: rgb(48, 136, 0);
|
|
1464
|
-
--intent-success-color: #000;
|
|
1465
|
-
--intent-success-fadable-color: 0, 0, 0;
|
|
1466
|
-
/* try and adjust colors to get desired color combination,
|
|
1467
|
-
in this case adjust background to go with white foreground */
|
|
1468
|
-
--intent-warning-background: rgb(255, 225, 130);
|
|
1469
|
-
--intent-warning-color: #000;
|
|
1470
|
-
--intent-warning-fadable-color: 0, 0, 0;
|
|
1471
|
-
/* try and adjust colors to get desired color combination,
|
|
1472
|
-
in this case adjust background to go with white foreground */
|
|
1473
|
-
--intent-danger-background: rgb(255, 89, 79);
|
|
1474
|
-
--intent-danger-color: #000;
|
|
1475
|
-
--intent-danger-fadable-color: 0, 0, 0;
|
|
1476
|
-
/* try and adjust colors to get desired color combination,
|
|
1477
|
-
in this case adjust background to go with white foreground */
|
|
1478
|
-
--intent-light-background: rgb(39, 39, 39);
|
|
1479
|
-
--intent-light-color: #fff;
|
|
1480
|
-
--intent-light-fadable-color: 255, 255, 255;
|
|
1481
|
-
/* try and adjust colors to get desired color combination,
|
|
1482
|
-
in this case adjust background to go with white foreground */
|
|
1483
|
-
--intent-dark-background: rgb(171, 171, 171);
|
|
1484
|
-
--intent-dark-color: #000;
|
|
1485
|
-
--intent-dark-fadable-color: 0, 0, 0;
|
|
1486
|
-
--grey-100: rgb(18, 18, 18);
|
|
1487
|
-
--grey-200: rgb(34, 34, 34);
|
|
1488
|
-
--grey-300: rgb(39, 39, 39);
|
|
1489
|
-
--grey-400: rgb(44, 44, 44);
|
|
1490
|
-
--grey-500: rgb(51, 51, 51);
|
|
1491
|
-
--grey-600: rgb(60, 60, 60);
|
|
1492
|
-
--grey-700: rgb(67, 67, 67);
|
|
1493
|
-
--grey-800: rgb(73, 73, 73);
|
|
1494
|
-
--grey-900: rgb(117, 117, 117);
|
|
1495
|
-
--grey-1000: rgb(171, 171, 171);
|
|
1496
|
-
--grey-1100: rgb(179, 179, 179);
|
|
1497
|
-
color: var(--text-primary-color);
|
|
1498
|
-
--gds-sys-outline-color: hsla(0, 0%, 87%, 0.2);
|
|
1499
|
-
--gds-comp-chips-fr-color: #dedede;
|
|
1500
|
-
--gds-comp-chips-bg-color: #2c2c2c;
|
|
1501
|
-
--gds-comp-chips-br-color: #2c2c2c;
|
|
1502
|
-
--gds-comp-chips-fr-color-hover: #dedede;
|
|
1503
|
-
--gds-comp-chips-bg-color-hover: #2c2c2c;
|
|
1504
|
-
--gds-comp-chips-br-color-hover: hsla(0, 0%, 87%, 0.2);
|
|
1505
|
-
--gds-comp-chips-bg-color-active: #222222;
|
|
1506
|
-
--gds-comp-chips-bg-color-action: #2c2c2c;
|
|
1507
|
-
--gds-sys-color-focus-outline: white;
|
|
1508
|
-
--gds-sys-color-font: var(--gds-ref-pallet-base300);
|
|
1509
|
-
/* generate css variables */
|
|
1510
|
-
--sg-z-index-datepicker: 995;
|
|
1511
|
-
--sg-z-index-dropdown-backdrop: 990;
|
|
1512
|
-
--sg-z-index-dropdown: 2000;
|
|
1513
|
-
--sg-z-index-sticky: 1020;
|
|
1514
|
-
--sg-z-index-fixed: 1030;
|
|
1515
|
-
--sg-z-index-modal-backdrop: 1040;
|
|
1516
|
-
--sg-z-index-modal: 1050;
|
|
1517
|
-
--sg-z-index-popover: 1060;
|
|
1518
|
-
--sg-z-index-tooltip: 1070;
|
|
1519
|
-
--sg-text-primary: #dedede;
|
|
1520
|
-
--sg-text-secondary: #ababab;
|
|
1521
|
-
--sg-form-control-bg: rgba(0, 0, 0, 0.1);
|
|
1522
|
-
--sg-form-control-bg-disabled: rgba(255, 255, 255, 0.02);
|
|
1523
|
-
--sg-border-color: #ababab;
|
|
1524
|
-
--sg-border-width: 1px;
|
|
1525
|
-
--sg-border-width-50: 0.5px;
|
|
1526
|
-
--sg-border-radius: 0.25rem;
|
|
1527
|
-
--sg-hsl-contrast: 0deg, 0%, 100%;
|
|
1528
|
-
--sg-hsl-light: 0deg, 0%, 87.0588235294%;
|
|
1529
|
-
--sg-hsl-light-contrast: 0deg, 0%, 0%;
|
|
1530
|
-
--sg-hsl-dark: 0deg, 0%, 7.0588235294%;
|
|
1531
|
-
--sg-hsl-dark-contrast: 0deg, 0%, 100%;
|
|
1532
|
-
--sg-hsl-black: 0deg, 0%, 0%;
|
|
1533
|
-
--sg-hsl-white: 0deg, 0%, 100%;
|
|
1534
|
-
--sg-hsl-blue-0: 201.5028901734deg, 83.5748792271%, 59.4117647059%;
|
|
1535
|
-
--sg-hsl-blue-1: 201.0666666667deg, 100%, 44.1176470588%;
|
|
1536
|
-
--sg-hsl-blue-2: 203.216080402deg, 100%, 39.0196078431%;
|
|
1537
|
-
--sg-hsl-green-0: 96.1325966851deg, 79.03930131%, 44.9019607843%;
|
|
1538
|
-
--sg-hsl-green-1: 97deg, 100%, 35.2941176471%;
|
|
1539
|
-
--sg-hsl-green-2: 98.8235294118deg, 100%, 26.6666666667%;
|
|
1540
|
-
--sg-hsl-yellow-0: 46.3529411765deg, 100%, 50%;
|
|
1541
|
-
--sg-hsl-yellow-1: 42.3529411765deg, 100%, 50%;
|
|
1542
|
-
--sg-hsl-yellow-2: 38.7096774194deg, 100%, 48.6274509804%;
|
|
1543
|
-
--sg-hsl-red-0: 3.6180904523deg, 86.8995633188%, 55.0980392157%;
|
|
1544
|
-
--sg-hsl-red-1: 0deg, 78.5123966942%, 47.4509803922%;
|
|
1545
|
-
--sg-hsl-red-2: 356.1497326203deg, 100%, 36.6666666667%;
|
|
1546
|
-
--sg-hsl-purple-0: 261.7741935484deg, 51.6666666667%, 47.0588235294%;
|
|
1547
|
-
--sg-hsl-purple-1: 259.2660550459deg, 55.3299492386%, 38.6274509804%;
|
|
1548
|
-
--sg-hsl-purple-2: 255.9183673469deg, 56.976744186%, 33.7254901961%;
|
|
1549
|
-
--sg-grey-100: #dedede;
|
|
1550
|
-
--sg-grey-200: #ababab;
|
|
1551
|
-
--sg-grey-300: #757575;
|
|
1552
|
-
--sg-grey-400: #494949;
|
|
1553
|
-
--sg-grey-500: #333333;
|
|
1554
|
-
--sg-grey-600: #2c2c2c;
|
|
1555
|
-
--sg-grey-700: #272727;
|
|
1556
|
-
--sg-grey-800: #222222;
|
|
1557
|
-
--sg-grey-900: #121212;
|
|
1558
|
-
--sg-intent-neutral-hsl: 0deg, 0%, 20%;
|
|
1559
|
-
--sg-intent-neutral-hsl-contrast: 0deg, 0%, 100%;
|
|
1560
|
-
--sg-intent-info-hsl: 203.216080402deg, 100%, 39.0196078431%;
|
|
1561
|
-
--sg-intent-info-hsl-contrast: 0deg, 0%, 100%;
|
|
1562
|
-
--sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;
|
|
1563
|
-
--sg-intent-success-hsl-contrast: 0deg, 0%, 100%;
|
|
1564
|
-
--sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;
|
|
1565
|
-
--sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;
|
|
1566
|
-
--sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;
|
|
1567
|
-
--sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;
|
|
1568
|
-
--sg-hsl-disabled-background: 0deg, 0%, 20%;
|
|
1569
|
-
--sg-hsl-disabled-color: 0deg, 0%, 45.8823529412%;
|
|
1570
|
-
--sg-bg-level-0: #121212;
|
|
1571
|
-
--sg-bg-level-1: #222222;
|
|
1572
|
-
--sg-bg-level-2: #272727;
|
|
1573
|
-
--sg-bg-level-3: #2c2c2c;
|
|
1574
|
-
--sg-table-header-background: #121212;
|
|
1575
|
-
--sg-table-header-color: #fff;
|
|
1576
|
-
--sg-table-cell-padding-x: 0.5rem;
|
|
1577
|
-
--sg-table-cell-padding-y: 0.6875rem;
|
|
1578
|
-
--sg-table-border-width: 1px;
|
|
1579
|
-
--sg-table-border-color: #ababab;
|
|
1580
|
-
--sg-table-sort-icon-color: #ababab;
|
|
1581
|
-
--sg-table-sort-icon-color-active: #fff;
|
|
1582
|
-
--sg-skeleton-loader-highlight-color: #494949;
|
|
1583
|
-
--sg-skeleton-loader-background-color: #2c2c2c;
|
|
1584
|
-
--sg-modal-background: #272727;
|
|
1585
|
-
--sg-modal-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1586
|
-
--sg-modal-backdrop-background: rgba(0, 0, 0, 0.5);
|
|
1587
|
-
--sg-popover-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1588
|
-
--sg-popover-background: #222222;
|
|
1589
|
-
--sg-popover-border-color: #007ac7;
|
|
1590
|
-
--sg-card-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1591
|
-
--sg-card-background: #222222;
|
|
1592
|
-
--sg-card-heading-color: #dedede;
|
|
1593
|
-
--sg-card-color: #dedede;
|
|
1594
|
-
--sg-card-border: solid 1px #222222;
|
|
1595
|
-
--sg-card-border-radius: 4px;
|
|
1596
|
-
}
|
|
1597
|
-
|
|
1598
|
-
/* use preferred color scheme */
|
|
1599
|
-
@media (prefers-color-scheme: dark) {
|
|
1600
|
-
:host,
|
|
1601
|
-
:host([color-scheme=auto]) {
|
|
1602
|
-
--heading-primary-color: rgb(255, 255, 255);
|
|
1603
|
-
--text-primary-color: rgba(255, 255, 255, 0.9);
|
|
1604
|
-
--text-secondary-color: rgba(255, 255, 255, 0.6);
|
|
1605
|
-
--text-disabled-color: rgba(255, 255, 255, 0.07);
|
|
1606
|
-
--text-primary-disabled-color: rgba(255, 255, 255, 0.07);
|
|
1607
|
-
--border-color: rgb(51, 51, 51);
|
|
1608
|
-
--border-secondary-color: rgb(51, 51, 51);
|
|
1609
|
-
--border-disabled-color: rgb(44, 44, 44);
|
|
1610
|
-
--border-primary-disabled-color: rgb(44, 44, 44);
|
|
1611
|
-
--border-color-invalid: rgb(255, 89, 79);
|
|
1612
|
-
--border-color-valid: rgb(48, 136, 0);
|
|
1613
|
-
--checkbox-checkmark-disabled-color: rgb(51, 51, 51);
|
|
1614
|
-
--link-color-dark: rgb(179, 179, 179);
|
|
1615
|
-
--link-color-dark-visited: rgb(171, 171, 171);
|
|
1616
|
-
--form-control-primary-bg-disabled: rgba(255, 255, 255, 0.02);
|
|
1617
|
-
/* try and adjust colors to get desired color combination,
|
|
1618
|
-
in this case adjust background to go with white foreground */
|
|
1619
|
-
--intent-primary-background: rgb(44, 156, 217);
|
|
1620
|
-
--intent-primary-color: #000;
|
|
1621
|
-
--intent-primary-fadable-color: 0, 0, 0;
|
|
1622
|
-
/* try and adjust colors to get desired color combination,
|
|
1623
|
-
in this case adjust background to go with white foreground */
|
|
1624
|
-
--intent-secondary-background: rgb(51, 51, 51);
|
|
1625
|
-
--intent-secondary-color: #fff;
|
|
1626
|
-
--intent-secondary-fadable-color: 255, 255, 255;
|
|
1627
|
-
/* try and adjust colors to get desired color combination,
|
|
1628
|
-
in this case adjust background to go with white foreground */
|
|
1629
|
-
--intent-info-background: rgb(44, 156, 217);
|
|
1630
|
-
--intent-info-color: #000;
|
|
1631
|
-
--intent-info-fadable-color: 0, 0, 0;
|
|
1632
|
-
/* try and adjust colors to get desired color combination,
|
|
1633
|
-
in this case adjust background to go with white foreground */
|
|
1634
|
-
--intent-success-background: rgb(48, 136, 0);
|
|
1635
|
-
--intent-success-color: #000;
|
|
1636
|
-
--intent-success-fadable-color: 0, 0, 0;
|
|
1637
|
-
/* try and adjust colors to get desired color combination,
|
|
1638
|
-
in this case adjust background to go with white foreground */
|
|
1639
|
-
--intent-warning-background: rgb(255, 225, 130);
|
|
1640
|
-
--intent-warning-color: #000;
|
|
1641
|
-
--intent-warning-fadable-color: 0, 0, 0;
|
|
1642
|
-
/* try and adjust colors to get desired color combination,
|
|
1643
|
-
in this case adjust background to go with white foreground */
|
|
1644
|
-
--intent-danger-background: rgb(255, 89, 79);
|
|
1645
|
-
--intent-danger-color: #000;
|
|
1646
|
-
--intent-danger-fadable-color: 0, 0, 0;
|
|
1647
|
-
/* try and adjust colors to get desired color combination,
|
|
1648
|
-
in this case adjust background to go with white foreground */
|
|
1649
|
-
--intent-light-background: rgb(39, 39, 39);
|
|
1650
|
-
--intent-light-color: #fff;
|
|
1651
|
-
--intent-light-fadable-color: 255, 255, 255;
|
|
1652
|
-
/* try and adjust colors to get desired color combination,
|
|
1653
|
-
in this case adjust background to go with white foreground */
|
|
1654
|
-
--intent-dark-background: rgb(171, 171, 171);
|
|
1655
|
-
--intent-dark-color: #000;
|
|
1656
|
-
--intent-dark-fadable-color: 0, 0, 0;
|
|
1657
|
-
--grey-100: rgb(18, 18, 18);
|
|
1658
|
-
--grey-200: rgb(34, 34, 34);
|
|
1659
|
-
--grey-300: rgb(39, 39, 39);
|
|
1660
|
-
--grey-400: rgb(44, 44, 44);
|
|
1661
|
-
--grey-500: rgb(51, 51, 51);
|
|
1662
|
-
--grey-600: rgb(60, 60, 60);
|
|
1663
|
-
--grey-700: rgb(67, 67, 67);
|
|
1664
|
-
--grey-800: rgb(73, 73, 73);
|
|
1665
|
-
--grey-900: rgb(117, 117, 117);
|
|
1666
|
-
--grey-1000: rgb(171, 171, 171);
|
|
1667
|
-
--grey-1100: rgb(179, 179, 179);
|
|
1668
|
-
color: var(--text-primary-color);
|
|
1669
|
-
--gds-sys-outline-color: hsla(0, 0%, 87%, 0.2);
|
|
1670
|
-
--gds-comp-chips-fr-color: #dedede;
|
|
1671
|
-
--gds-comp-chips-bg-color: #2c2c2c;
|
|
1672
|
-
--gds-comp-chips-br-color: #2c2c2c;
|
|
1673
|
-
--gds-comp-chips-fr-color-hover: #dedede;
|
|
1674
|
-
--gds-comp-chips-bg-color-hover: #2c2c2c;
|
|
1675
|
-
--gds-comp-chips-br-color-hover: hsla(0, 0%, 87%, 0.2);
|
|
1676
|
-
--gds-comp-chips-bg-color-active: #222222;
|
|
1677
|
-
--gds-comp-chips-bg-color-action: #2c2c2c;
|
|
1678
|
-
--gds-sys-color-focus-outline: white;
|
|
1679
|
-
--gds-sys-color-font: var(--gds-ref-pallet-base300);
|
|
1680
|
-
/* generate css variables */
|
|
1681
|
-
--sg-z-index-datepicker: 995;
|
|
1682
|
-
--sg-z-index-dropdown-backdrop: 990;
|
|
1683
|
-
--sg-z-index-dropdown: 2000;
|
|
1684
|
-
--sg-z-index-sticky: 1020;
|
|
1685
|
-
--sg-z-index-fixed: 1030;
|
|
1686
|
-
--sg-z-index-modal-backdrop: 1040;
|
|
1687
|
-
--sg-z-index-modal: 1050;
|
|
1688
|
-
--sg-z-index-popover: 1060;
|
|
1689
|
-
--sg-z-index-tooltip: 1070;
|
|
1690
|
-
--sg-text-primary: #dedede;
|
|
1691
|
-
--sg-text-secondary: #ababab;
|
|
1692
|
-
--sg-form-control-bg: rgba(0, 0, 0, 0.1);
|
|
1693
|
-
--sg-form-control-bg-disabled: rgba(255, 255, 255, 0.02);
|
|
1694
|
-
--sg-border-color: #ababab;
|
|
1695
|
-
--sg-border-width: 1px;
|
|
1696
|
-
--sg-border-width-50: 0.5px;
|
|
1697
|
-
--sg-border-radius: 0.25rem;
|
|
1698
|
-
--sg-hsl-contrast: 0deg, 0%, 100%;
|
|
1699
|
-
--sg-hsl-light: 0deg, 0%, 87.0588235294%;
|
|
1700
|
-
--sg-hsl-light-contrast: 0deg, 0%, 0%;
|
|
1701
|
-
--sg-hsl-dark: 0deg, 0%, 7.0588235294%;
|
|
1702
|
-
--sg-hsl-dark-contrast: 0deg, 0%, 100%;
|
|
1703
|
-
--sg-hsl-black: 0deg, 0%, 0%;
|
|
1704
|
-
--sg-hsl-white: 0deg, 0%, 100%;
|
|
1705
|
-
--sg-hsl-blue-0: 201.5028901734deg, 83.5748792271%, 59.4117647059%;
|
|
1706
|
-
--sg-hsl-blue-1: 201.0666666667deg, 100%, 44.1176470588%;
|
|
1707
|
-
--sg-hsl-blue-2: 203.216080402deg, 100%, 39.0196078431%;
|
|
1708
|
-
--sg-hsl-green-0: 96.1325966851deg, 79.03930131%, 44.9019607843%;
|
|
1709
|
-
--sg-hsl-green-1: 97deg, 100%, 35.2941176471%;
|
|
1710
|
-
--sg-hsl-green-2: 98.8235294118deg, 100%, 26.6666666667%;
|
|
1711
|
-
--sg-hsl-yellow-0: 46.3529411765deg, 100%, 50%;
|
|
1712
|
-
--sg-hsl-yellow-1: 42.3529411765deg, 100%, 50%;
|
|
1713
|
-
--sg-hsl-yellow-2: 38.7096774194deg, 100%, 48.6274509804%;
|
|
1714
|
-
--sg-hsl-red-0: 3.6180904523deg, 86.8995633188%, 55.0980392157%;
|
|
1715
|
-
--sg-hsl-red-1: 0deg, 78.5123966942%, 47.4509803922%;
|
|
1716
|
-
--sg-hsl-red-2: 356.1497326203deg, 100%, 36.6666666667%;
|
|
1717
|
-
--sg-hsl-purple-0: 261.7741935484deg, 51.6666666667%, 47.0588235294%;
|
|
1718
|
-
--sg-hsl-purple-1: 259.2660550459deg, 55.3299492386%, 38.6274509804%;
|
|
1719
|
-
--sg-hsl-purple-2: 255.9183673469deg, 56.976744186%, 33.7254901961%;
|
|
1720
|
-
--sg-grey-100: #dedede;
|
|
1721
|
-
--sg-grey-200: #ababab;
|
|
1722
|
-
--sg-grey-300: #757575;
|
|
1723
|
-
--sg-grey-400: #494949;
|
|
1724
|
-
--sg-grey-500: #333333;
|
|
1725
|
-
--sg-grey-600: #2c2c2c;
|
|
1726
|
-
--sg-grey-700: #272727;
|
|
1727
|
-
--sg-grey-800: #222222;
|
|
1728
|
-
--sg-grey-900: #121212;
|
|
1729
|
-
--sg-intent-neutral-hsl: 0deg, 0%, 20%;
|
|
1730
|
-
--sg-intent-neutral-hsl-contrast: 0deg, 0%, 100%;
|
|
1731
|
-
--sg-intent-info-hsl: 203.216080402deg, 100%, 39.0196078431%;
|
|
1732
|
-
--sg-intent-info-hsl-contrast: 0deg, 0%, 100%;
|
|
1733
|
-
--sg-intent-success-hsl: 98.8235294118deg, 100%, 26.6666666667%;
|
|
1734
|
-
--sg-intent-success-hsl-contrast: 0deg, 0%, 100%;
|
|
1735
|
-
--sg-intent-warning-hsl: 46.3529411765deg, 100%, 50%;
|
|
1736
|
-
--sg-intent-warning-hsl-contrast: 0deg, 0%, 0%;
|
|
1737
|
-
--sg-intent-critical-hsl: 0deg, 78.5123966942%, 47.4509803922%;
|
|
1738
|
-
--sg-intent-critical-hsl-contrast: 0deg, 0%, 100%;
|
|
1739
|
-
--sg-hsl-disabled-background: 0deg, 0%, 20%;
|
|
1740
|
-
--sg-hsl-disabled-color: 0deg, 0%, 45.8823529412%;
|
|
1741
|
-
--sg-bg-level-0: #121212;
|
|
1742
|
-
--sg-bg-level-1: #222222;
|
|
1743
|
-
--sg-bg-level-2: #272727;
|
|
1744
|
-
--sg-bg-level-3: #2c2c2c;
|
|
1745
|
-
--sg-table-header-background: #121212;
|
|
1746
|
-
--sg-table-header-color: #fff;
|
|
1747
|
-
--sg-table-cell-padding-x: 0.5rem;
|
|
1748
|
-
--sg-table-cell-padding-y: 0.6875rem;
|
|
1749
|
-
--sg-table-border-width: 1px;
|
|
1750
|
-
--sg-table-border-color: #ababab;
|
|
1751
|
-
--sg-table-sort-icon-color: #ababab;
|
|
1752
|
-
--sg-table-sort-icon-color-active: #fff;
|
|
1753
|
-
--sg-skeleton-loader-highlight-color: #494949;
|
|
1754
|
-
--sg-skeleton-loader-background-color: #2c2c2c;
|
|
1755
|
-
--sg-modal-background: #272727;
|
|
1756
|
-
--sg-modal-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1757
|
-
--sg-modal-backdrop-background: rgba(0, 0, 0, 0.5);
|
|
1758
|
-
--sg-popover-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1759
|
-
--sg-popover-background: #222222;
|
|
1760
|
-
--sg-popover-border-color: #007ac7;
|
|
1761
|
-
--sg-card-box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.15);
|
|
1762
|
-
--sg-card-background: #222222;
|
|
1763
|
-
--sg-card-heading-color: #dedede;
|
|
1764
|
-
--sg-card-color: #dedede;
|
|
1765
|
-
--sg-card-border: solid 1px #222222;
|
|
1766
|
-
--sg-card-border-radius: 4px;
|
|
1767
|
-
}
|
|
1768
|
-
}`;
|
|
1769
|
-
|
|
1770
|
-
// libs/core/src/components/theme/theme.trans.styles.ts
|
|
1771
|
-
function register15() {
|
|
1772
|
-
TransitionalStyles.instance.register(
|
|
1773
|
-
"gds-theme",
|
|
1774
|
-
chlorophyll_tokens_default.toString()
|
|
1775
|
-
);
|
|
1776
|
-
}
|
|
1777
|
-
var theme_trans_styles_default = register15;
|
|
1778
|
-
|
|
1779
|
-
// libs/core/src/utils/transitional-styles/transitional-styles.ts
|
|
1780
|
-
var registerTransitionalStyles = () => {
|
|
1781
|
-
register15();
|
|
1782
|
-
register7();
|
|
1783
|
-
register3();
|
|
1784
|
-
register8();
|
|
1785
|
-
register11();
|
|
1786
|
-
register14();
|
|
1787
|
-
register10();
|
|
1788
|
-
register6();
|
|
1789
|
-
register12();
|
|
1790
|
-
};
|
|
1791
|
-
var _styles, _elements, _useLegacyStylesheets;
|
|
1792
|
-
var _TransitionalStyles = class _TransitionalStyles {
|
|
1793
|
-
constructor() {
|
|
1794
|
-
__privateAdd(this, _styles, /* @__PURE__ */ new Map());
|
|
1795
|
-
__privateAdd(this, _elements, /* @__PURE__ */ new Map());
|
|
1796
|
-
__privateAdd(this, _useLegacyStylesheets, !supportsConstructedStylesheets());
|
|
1797
|
-
}
|
|
1798
|
-
static get instance() {
|
|
1799
|
-
var _a;
|
|
1800
|
-
if (!((_a = globalThis.__gdsTransitionalStyles) == null ? void 0 : _a[VER_SUFFIX]))
|
|
1801
|
-
globalThis.__gdsTransitionalStyles = __spreadProps(__spreadValues({}, globalThis.__gdsTransitionalStyles), {
|
|
1802
|
-
[VER_SUFFIX]: new _TransitionalStyles()
|
|
1803
|
-
});
|
|
1804
|
-
return globalThis.__gdsTransitionalStyles[VER_SUFFIX];
|
|
1805
|
-
}
|
|
1806
|
-
apply(element, styleKey) {
|
|
1807
|
-
if (!element.shadowRoot)
|
|
1808
|
-
return;
|
|
1809
|
-
const style = __privateGet(this, _styles).get(styleKey);
|
|
1810
|
-
if (!style)
|
|
1811
|
-
return;
|
|
1812
|
-
__privateGet(this, _elements).set(styleKey, element);
|
|
1813
|
-
this.applyToElement(styleKey, style);
|
|
1814
|
-
}
|
|
1815
|
-
applyToElement(styleKey, sheet) {
|
|
1816
|
-
var _a, _b;
|
|
1817
|
-
const element = __privateGet(this, _elements).get(styleKey);
|
|
1818
|
-
if (!element || !element.shadowRoot)
|
|
1819
|
-
return;
|
|
1820
|
-
const applyTransitional = () => {
|
|
1821
|
-
element._dynamicStylesController.clearInitial();
|
|
1822
|
-
element._dynamicStylesController.inject("t-styles", unsafeCSS(sheet));
|
|
1823
|
-
element._isUsingTransitionalStyles = true;
|
|
1824
|
-
};
|
|
1825
|
-
const clearTransitional = () => {
|
|
1826
|
-
element._isUsingTransitionalStyles = false;
|
|
1827
|
-
element._dynamicStylesController.clear("t-styles");
|
|
1828
|
-
element._dynamicStylesController.restoreInitial();
|
|
1829
|
-
};
|
|
1830
|
-
const gdsThemeSelector = "[gds-element=gds-theme]";
|
|
1831
|
-
let currentRoot = element.getRootNode();
|
|
1832
|
-
let closestGdsTheme = element.closest(gdsThemeSelector);
|
|
1833
|
-
while (closestGdsTheme === null && currentRoot !== document) {
|
|
1834
|
-
closestGdsTheme = (_a = currentRoot.host) == null ? void 0 : _a.closest(
|
|
1835
|
-
gdsThemeSelector
|
|
1836
|
-
);
|
|
1837
|
-
currentRoot = (_b = currentRoot.host) == null ? void 0 : _b.getRootNode();
|
|
1838
|
-
}
|
|
1839
|
-
if (closestGdsTheme) {
|
|
1840
|
-
const theme = closestGdsTheme;
|
|
1841
|
-
const updateStyles = () => {
|
|
1842
|
-
if (theme.designVersion === "2023") {
|
|
1843
|
-
clearTransitional();
|
|
1844
|
-
} else {
|
|
1845
|
-
applyTransitional();
|
|
1846
|
-
}
|
|
1847
|
-
};
|
|
1848
|
-
theme.addEventListener("gds-design-version-changed", updateStyles);
|
|
1849
|
-
element.addEventListener(
|
|
1850
|
-
"gds-element-disconnected",
|
|
1851
|
-
() => theme.removeEventListener("gds-design-version-changed", updateStyles)
|
|
1852
|
-
);
|
|
1853
|
-
if (theme.designVersion === "2023") {
|
|
1854
|
-
clearTransitional();
|
|
1855
|
-
return;
|
|
1856
|
-
}
|
|
1857
|
-
}
|
|
1858
|
-
applyTransitional();
|
|
1859
|
-
}
|
|
1860
|
-
register(name, styles) {
|
|
1861
|
-
let preparedStyle = styles;
|
|
1862
|
-
if (__privateGet(this, _useLegacyStylesheets)) {
|
|
1863
|
-
preparedStyle = `@layer reset {
|
|
1864
|
-
*:not(style, [gds-element]) {
|
|
1865
|
-
all: revert;
|
|
1866
|
-
}
|
|
1867
|
-
}
|
|
1868
|
-
${styles}`;
|
|
1869
|
-
}
|
|
1870
|
-
__privateGet(this, _styles).set(name, preparedStyle);
|
|
1871
|
-
this.applyToElement(name, preparedStyle);
|
|
1872
|
-
}
|
|
1873
|
-
};
|
|
1874
|
-
_styles = new WeakMap();
|
|
1875
|
-
_elements = new WeakMap();
|
|
1876
|
-
_useLegacyStylesheets = new WeakMap();
|
|
1877
|
-
var TransitionalStyles = _TransitionalStyles;
|
|
1878
|
-
|
|
1879
|
-
// libs/core/src/components/button/button.trans.styles.scss?inline
|
|
1880
|
-
var button_trans_styles_default = `/* stylelint-disable max-nesting-depth */
|
|
1881
|
-
/* stylelint-enable max-nesting-depth */
|
|
1882
|
-
/**
|
|
1883
|
-
* Calculate the luminance for a color.
|
|
1884
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
1885
|
-
*/
|
|
1886
|
-
/**
|
|
1887
|
-
* Calculate the contrast ratio between two colors.
|
|
1888
|
-
* See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
1889
|
-
*/
|
|
1890
|
-
/* stylelint-disable */
|
|
1891
|
-
/* stylelint-enable */
|
|
1892
|
-
/* stylelint-disable */
|
|
1893
|
-
/**
|
|
1894
|
-
* @deprecated
|
|
1895
|
-
* Use \`add-focus\` instead
|
|
1896
|
-
*/
|
|
1897
|
-
/** add background color, color and border-color to element when it has focus-visible i.e. tab focus */
|
|
1898
|
-
i.sg-icon {
|
|
1899
|
-
font-size: 0;
|
|
1900
|
-
width: 1rem;
|
|
1901
|
-
height: 1rem;
|
|
1902
|
-
display: inline-block;
|
|
1903
|
-
}
|
|
1904
|
-
i.sg-icon::before {
|
|
1905
|
-
content: "";
|
|
1906
|
-
display: inline-block;
|
|
1907
|
-
background: var(--color);
|
|
1908
|
-
width: 100%;
|
|
1909
|
-
height: 100%;
|
|
1910
|
-
-webkit-mask-repeat: no-repeat;
|
|
1911
|
-
mask-repeat: no-repeat;
|
|
1912
|
-
}
|
|
1913
|
-
i.sg-icon.sg-icon-calendar::before {
|
|
1914
|
-
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M152 64h144V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40h40c35.3 0 64 28.65 64 64v320c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V128c0-35.35 28.65-64 64-64h40V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40zM48 248h80v-56H48v56zm0 48v64h80v-64H48zm128 0v64h96v-64h-96zm144 0v64h80v-64h-80zm80-104h-80v56h80v-56zm0 216h-80v56h64c8.8 0 16-7.2 16-16v-40zm-128 0h-96v56h96v-56zm-144 0H48v40c0 8.8 7.16 16 16 16h64v-56zm144-216h-96v56h96v-56z '/%3E%3C/svg%3E");
|
|
1915
|
-
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M152 64h144V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40h40c35.3 0 64 28.65 64 64v320c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V128c0-35.35 28.65-64 64-64h40V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40zM48 248h80v-56H48v56zm0 48v64h80v-64H48zm128 0v64h96v-64h-96zm144 0v64h80v-64h-80zm80-104h-80v56h80v-56zm0 216h-80v56h64c8.8 0 16-7.2 16-16v-40zm-128 0h-96v56h96v-56zm-144 0H48v40c0 8.8 7.16 16 16 16h64v-56zm144-216h-96v56h96v-56z '/%3E%3C/svg%3E");
|
|
1916
|
-
}
|
|
1917
|
-
i.sg-icon.sg-icon-calendar-range::before {
|
|
1918
|
-
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M96 288c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm224 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-128-64c0-13.3 10.7-24 24-24h112c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24zm40 72c13.3 0 24 10.7 24 24s-10.7 24-24 24H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h112zM152 64h144V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40h40c35.3 0 64 28.65 64 64v320c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V128c0-35.35 28.65-64 64-64h40V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40zM48 448c0 8.8 7.16 16 16 16h320c8.8 0 16-7.2 16-16V192H48v256z'/%3E%3C/svg%3E");
|
|
1919
|
-
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M96 288c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32zm224 64c17.7 0 32 14.3 32 32s-14.3 32-32 32-32-14.3-32-32 14.3-32 32-32zm-128-64c0-13.3 10.7-24 24-24h112c13.3 0 24 10.7 24 24s-10.7 24-24 24H216c-13.3 0-24-10.7-24-24zm40 72c13.3 0 24 10.7 24 24s-10.7 24-24 24H120c-13.3 0-24-10.7-24-24s10.7-24 24-24h112zM152 64h144V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40h40c35.3 0 64 28.65 64 64v320c0 35.3-28.7 64-64 64H64c-35.35 0-64-28.7-64-64V128c0-35.35 28.65-64 64-64h40V24c0-13.25 10.7-24 24-24s24 10.75 24 24v40zM48 448c0 8.8 7.16 16 16 16h320c8.8 0 16-7.2 16-16V192H48v256z'/%3E%3C/svg%3E");
|
|
1920
|
-
}
|
|
1921
|
-
i.sg-icon.sg-icon-ellipsis::before {
|
|
1922
|
-
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M8 256a56 56 0 1 1 112 0A56 56 0 1 1 8 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z'/%3E%3C/svg%3E");
|
|
1923
|
-
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc.--%3E%3Cpath d='M8 256a56 56 0 1 1 112 0A56 56 0 1 1 8 256zm160 0a56 56 0 1 1 112 0 56 56 0 1 1 -112 0zm216-56a56 56 0 1 1 0 112 56 56 0 1 1 0-112z'/%3E%3C/svg%3E");
|
|
1924
|
-
}
|
|
1925
|
-
i.sg-icon.sg-icon-grip-vertical::before {
|
|
1926
|
-
-webkit-mask-image: url("data:image/svg+xml, %3Csvg height='1em' viewBox='0 0 320 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 352l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zm192 0l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 320c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 192l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 160c-22.1 0-40-17.9-40-40L0 72C0 49.9 17.9 32 40 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40z' /%3E%3C/svg%3E");
|
|
1927
|
-
mask-image: url("data:image/svg+xml, %3Csvg height='1em' viewBox='0 0 320 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 352l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zm192 0l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 320c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 192l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40zM40 160c-22.1 0-40-17.9-40-40L0 72C0 49.9 17.9 32 40 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0zM232 32l48 0c22.1 0 40 17.9 40 40l0 48c0 22.1-17.9 40-40 40l-48 0c-22.1 0-40-17.9-40-40l0-48c0-22.1 17.9-40 40-40z' /%3E%3C/svg%3E");
|
|
1928
|
-
}
|
|
1929
|
-
i.sg-icon.sg-icon-next::before {
|
|
1930
|
-
background: none;
|
|
1931
|
-
border-bottom: 2px solid;
|
|
1932
|
-
border-left: 2px solid;
|
|
1933
|
-
content: "";
|
|
1934
|
-
display: block;
|
|
1935
|
-
height: 12px;
|
|
1936
|
-
margin-left: -10px;
|
|
1937
|
-
margin-top: 2px;
|
|
1938
|
-
transform: translate(75%) rotate(-135deg) scaleZ(-1);
|
|
1939
|
-
transition: transform 0.3s ease-in;
|
|
1940
|
-
width: 12px;
|
|
1941
|
-
}
|
|
1942
|
-
i.sg-icon.sg-icon-previous::before {
|
|
1943
|
-
background: none;
|
|
1944
|
-
border-bottom: 2px solid;
|
|
1945
|
-
border-left: 2px solid;
|
|
1946
|
-
content: "";
|
|
1947
|
-
display: block;
|
|
1948
|
-
height: 12px;
|
|
1949
|
-
margin-left: -4px;
|
|
1950
|
-
margin-top: 2px;
|
|
1951
|
-
transform: translate(75%) rotate(45deg) scaleZ(-1);
|
|
1952
|
-
transition: transform 0.3s ease-in;
|
|
1953
|
-
width: 12px;
|
|
1954
|
-
}
|
|
1955
|
-
i.sg-icon.sg-icon-ellipsis::before {
|
|
1956
|
-
margin-right: -2px;
|
|
1957
|
-
}
|
|
1958
|
-
|
|
1959
|
-
@layer base, reset, transitional-styles;
|
|
1960
|
-
@layer transitional-styles {
|
|
1961
|
-
@layer _base, _ranks, _overrides;
|
|
1962
|
-
:host {
|
|
1963
|
-
display: inline-block;
|
|
1964
|
-
}
|
|
1965
|
-
@layer _base {
|
|
1966
|
-
.button {
|
|
1967
|
-
background-color: transparent;
|
|
1968
|
-
border: 0;
|
|
1969
|
-
cursor: pointer;
|
|
1970
|
-
font-family: inherit;
|
|
1971
|
-
padding: 0;
|
|
1972
|
-
padding-left: 1rem;
|
|
1973
|
-
padding-right: 1rem;
|
|
1974
|
-
padding-bottom: 0.75rem;
|
|
1975
|
-
padding-top: 0.75rem;
|
|
1976
|
-
border-radius: var(--sg-border-radius);
|
|
1977
|
-
border: solid var(--sg-border-width) var(--sg-border-color);
|
|
1978
|
-
font-weight: 500;
|
|
1979
|
-
min-height: 2.75rem;
|
|
1980
|
-
align-items: center;
|
|
1981
|
-
display: inline-flex;
|
|
1982
|
-
justify-content: center;
|
|
1983
|
-
box-sizing: border-box;
|
|
1984
|
-
font-size: inherit;
|
|
1985
|
-
overflow: hidden;
|
|
1986
|
-
display: flex;
|
|
1987
|
-
gap: 0.5rem;
|
|
1988
|
-
text-decoration: none;
|
|
1989
|
-
width: 100%;
|
|
1990
|
-
}
|
|
1991
|
-
.button:focus:not(:focus-visible) {
|
|
1992
|
-
box-shadow: none;
|
|
1993
|
-
outline: 0;
|
|
1994
|
-
}
|
|
1995
|
-
.button:focus, .button:focus-visible {
|
|
1996
|
-
outline-color: var(--gds-sys-color-focus-outline);
|
|
1997
|
-
outline-style: solid;
|
|
1998
|
-
outline-width: 0.125rem;
|
|
1999
|
-
outline-offset: 0.125rem;
|
|
2000
|
-
}
|
|
2001
|
-
@media (max-width: 35.98em) {
|
|
2002
|
-
.button {
|
|
2003
|
-
min-width: 100%;
|
|
2004
|
-
}
|
|
2005
|
-
}
|
|
2006
|
-
@media screen and (-ms-high-contrast: active) {
|
|
2007
|
-
.button {
|
|
2008
|
-
border: 2px solid currentcolor;
|
|
2009
|
-
}
|
|
2010
|
-
}
|
|
2011
|
-
.button.small {
|
|
2012
|
-
min-height: 2rem;
|
|
2013
|
-
padding: 0.4375rem 0.75rem;
|
|
2014
|
-
line-height: 1rem;
|
|
2015
|
-
}
|
|
2016
|
-
.button.large {
|
|
2017
|
-
min-height: 4rem;
|
|
2018
|
-
padding: 1rem 1.5rem;
|
|
2019
|
-
font-size: 1.5rem;
|
|
2020
|
-
line-height: 2rem;
|
|
2021
|
-
}
|
|
2022
|
-
.button slot:not([name]) {
|
|
2023
|
-
display: inline-block;
|
|
2024
|
-
overflow: hidden;
|
|
2025
|
-
text-overflow: ellipsis;
|
|
2026
|
-
white-space: nowrap;
|
|
2027
|
-
}
|
|
2028
|
-
:host(:not([variant=ghost])) .button {
|
|
2029
|
-
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), outline-offset 0s, outline-width 0s;
|
|
2030
|
-
background: rgb(0, 122, 199);
|
|
2031
|
-
border-color: rgb(0, 122, 199);
|
|
2032
|
-
color: #fff;
|
|
2033
|
-
--color: #fff;
|
|
2034
|
-
}
|
|
2035
|
-
:host(:not([variant=ghost])) .button:not(:disabled, .disabled, [aria-disabled]):hover {
|
|
2036
|
-
background-color: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2037
|
-
color: rgb(255, 255, 255);
|
|
2038
|
-
--background: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2039
|
-
--color: rgb(255, 255, 255);
|
|
2040
|
-
border-color: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2041
|
-
}
|
|
2042
|
-
:host(:not([variant=ghost])) .button[aria-selected=true], :host(:not([variant=ghost])) .button:active, :host(:not([variant=ghost])) .button.active, :host(:not([variant=ghost])) .button.active:hover, :host(:not([variant=ghost])) .button:active:hover {
|
|
2043
|
-
background-color: rgb(0, 122, 199);
|
|
2044
|
-
color: rgb(255, 255, 255);
|
|
2045
|
-
--background: rgb(0, 122, 199);
|
|
2046
|
-
--color: rgb(255, 255, 255);
|
|
2047
|
-
border-color: rgb(0, 122, 199);
|
|
2048
|
-
}
|
|
2049
|
-
:host(:not([variant=ghost])) .button:focus-visible {
|
|
2050
|
-
background-color: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2051
|
-
color: rgb(255, 255, 255);
|
|
2052
|
-
--background: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2053
|
-
--color: rgb(255, 255, 255);
|
|
2054
|
-
border-color: rgb(25.4035777564, 154.8940067842, 227.221994169) !important;
|
|
2055
|
-
}
|
|
2056
|
-
:host(:not([variant=ghost])) .button:disabled, :host(:not([variant=ghost])) .button.disabled, :host(:not([variant=ghost])) .button[aria-disabled=true] {
|
|
2057
|
-
background: var(--form-control-primary-bg-disabled) !important;
|
|
2058
|
-
color: var(--text-primary-disabled-color) !important;
|
|
2059
|
-
border-color: var(--border-primary-disabled-color) !important;
|
|
2060
|
-
cursor: not-allowed;
|
|
2061
|
-
}
|
|
2062
|
-
:host(:not([variant=ghost])) .button:disabled::-moz-placeholder, :host(:not([variant=ghost])) .button.disabled::-moz-placeholder, :host(:not([variant=ghost])) .button[aria-disabled=true]::-moz-placeholder {
|
|
2063
|
-
color: var(--text-disabled-color);
|
|
2064
|
-
}
|
|
2065
|
-
:host(:not([variant=ghost])) .button:disabled::placeholder, :host(:not([variant=ghost])) .button.disabled::placeholder, :host(:not([variant=ghost])) .button[aria-disabled=true]::placeholder {
|
|
2066
|
-
color: var(--text-disabled-color);
|
|
2067
|
-
}
|
|
2068
|
-
:host([rank*=secondary]) .button {
|
|
2069
|
-
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), outline-offset 0s, outline-width 0s;
|
|
2070
|
-
background: transparent;
|
|
2071
|
-
border-color: rgb(0, 122, 199);
|
|
2072
|
-
color: rgb(0, 122, 199);
|
|
2073
|
-
--color: rgb(0, 122, 199);
|
|
2074
|
-
}
|
|
2075
|
-
:host([rank*=secondary]) .button:focus:not(:focus-visible) {
|
|
2076
|
-
box-shadow: none;
|
|
2077
|
-
outline: 0;
|
|
2078
|
-
}
|
|
2079
|
-
:host([rank*=secondary]) .button:focus, :host([rank*=secondary]) .button:focus-visible {
|
|
2080
|
-
outline-color: var(--gds-sys-color-focus-outline);
|
|
2081
|
-
outline-style: solid;
|
|
2082
|
-
outline-width: 0.125rem;
|
|
2083
|
-
outline-offset: 0.125rem;
|
|
2084
|
-
}
|
|
2085
|
-
:host([rank*=secondary]) .button:not(:disabled, .disabled, [aria-disabled]):hover {
|
|
2086
|
-
background-color: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2087
|
-
color: rgb(255, 255, 255);
|
|
2088
|
-
--background: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2089
|
-
--color: rgb(255, 255, 255);
|
|
2090
|
-
border-color: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2091
|
-
}
|
|
2092
|
-
:host([rank*=secondary]) .button[aria-selected=true], :host([rank*=secondary]) .button:active, :host([rank*=secondary]) .button.active, :host([rank*=secondary]) .button.active:hover, :host([rank*=secondary]) .button:active:hover {
|
|
2093
|
-
background-color: rgb(0, 122, 199);
|
|
2094
|
-
color: rgb(255, 255, 255);
|
|
2095
|
-
--background: rgb(0, 122, 199);
|
|
2096
|
-
--color: rgb(255, 255, 255);
|
|
2097
|
-
border-color: rgb(0, 122, 199);
|
|
2098
|
-
}
|
|
2099
|
-
:host([rank*=secondary]) .button:disabled, :host([rank*=secondary]) .button.disabled, :host([rank*=secondary]) .button[aria-disabled=true] {
|
|
2100
|
-
background: var(--sg-form-control-bg-disabled) !important;
|
|
2101
|
-
color: var(--text-disabled-color) !important;
|
|
2102
|
-
border-color: var(--border-disabled-color) !important;
|
|
2103
|
-
cursor: not-allowed;
|
|
2104
|
-
}
|
|
2105
|
-
:host([rank*=secondary]) .button:disabled::-moz-placeholder, :host([rank*=secondary]) .button.disabled::-moz-placeholder, :host([rank*=secondary]) .button[aria-disabled=true]::-moz-placeholder {
|
|
2106
|
-
color: var(--text-disabled-color);
|
|
2107
|
-
}
|
|
2108
|
-
:host([rank*=secondary]) .button:disabled::placeholder, :host([rank*=secondary]) .button.disabled::placeholder, :host([rank*=secondary]) .button[aria-disabled=true]::placeholder {
|
|
2109
|
-
color: var(--text-disabled-color);
|
|
2110
|
-
}
|
|
2111
|
-
:host([rank*=tertiary]) .button {
|
|
2112
|
-
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), outline-offset 0s, outline-width 0s;
|
|
2113
|
-
background: transparent;
|
|
2114
|
-
border-color: transparent;
|
|
2115
|
-
color: rgb(0, 122, 199);
|
|
2116
|
-
--color: rgb(0, 122, 199);
|
|
2117
|
-
}
|
|
2118
|
-
:host([rank*=tertiary]) .button:focus:not(:focus-visible) {
|
|
2119
|
-
box-shadow: none;
|
|
2120
|
-
outline: 0;
|
|
2121
|
-
}
|
|
2122
|
-
:host([rank*=tertiary]) .button:focus, :host([rank*=tertiary]) .button:focus-visible {
|
|
2123
|
-
outline-color: var(--gds-sys-color-focus-outline);
|
|
2124
|
-
outline-style: solid;
|
|
2125
|
-
outline-width: 0.125rem;
|
|
2126
|
-
outline-offset: 0.125rem;
|
|
2127
|
-
}
|
|
2128
|
-
:host([rank*=tertiary]) .button:not(:disabled, .disabled, [aria-disabled]):hover {
|
|
2129
|
-
background-color: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2130
|
-
color: rgb(255, 255, 255);
|
|
2131
|
-
--background: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2132
|
-
--color: rgb(255, 255, 255);
|
|
2133
|
-
border-color: rgb(25.4035777564, 154.8940067842, 227.221994169);
|
|
2134
|
-
}
|
|
2135
|
-
:host([rank*=tertiary]) .button[aria-selected=true], :host([rank*=tertiary]) .button:active, :host([rank*=tertiary]) .button.active, :host([rank*=tertiary]) .button.active:hover, :host([rank*=tertiary]) .button:active:hover {
|
|
2136
|
-
background-color: rgb(0, 122, 199);
|
|
2137
|
-
color: rgb(255, 255, 255);
|
|
2138
|
-
--background: rgb(0, 122, 199);
|
|
2139
|
-
--color: rgb(255, 255, 255);
|
|
2140
|
-
border-color: rgb(0, 122, 199);
|
|
2141
|
-
}
|
|
2142
|
-
:host([rank*=tertiary]) .button:disabled, :host([rank*=tertiary]) .button.disabled, :host([rank*=tertiary]) .button[aria-disabled=true] {
|
|
2143
|
-
background: var(--sg-form-control-bg-disabled) !important;
|
|
2144
|
-
color: var(--text-disabled-color) !important;
|
|
2145
|
-
border-color: var(--border-disabled-color) !important;
|
|
2146
|
-
cursor: not-allowed;
|
|
2147
|
-
}
|
|
2148
|
-
:host([rank*=tertiary]) .button:disabled::-moz-placeholder, :host([rank*=tertiary]) .button.disabled::-moz-placeholder, :host([rank*=tertiary]) .button[aria-disabled=true]::-moz-placeholder {
|
|
2149
|
-
color: var(--text-disabled-color);
|
|
2150
|
-
}
|
|
2151
|
-
:host([rank*=tertiary]) .button:disabled::placeholder, :host([rank*=tertiary]) .button.disabled::placeholder, :host([rank*=tertiary]) .button[aria-disabled=true]::placeholder {
|
|
2152
|
-
color: var(--text-disabled-color);
|
|
2153
|
-
}
|
|
2154
|
-
/* stylelint-disable */
|
|
2155
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button,
|
|
2156
|
-
:host([variant=negative][rank=primary]) .button {
|
|
2157
|
-
background: rgb(187, 0, 12);
|
|
2158
|
-
border-color: rgb(187, 0, 12);
|
|
2159
|
-
color: #fff;
|
|
2160
|
-
--color: #fff;
|
|
2161
|
-
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), outline-offset 0s, outline-width 0s;
|
|
2162
|
-
}
|
|
2163
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:not(:disabled, .disabled, [aria-disabled]):hover,
|
|
2164
|
-
:host([variant=negative][rank=primary]) .button:not(:disabled, .disabled, [aria-disabled]):hover {
|
|
2165
|
-
background-color: rgb(216, 26, 26);
|
|
2166
|
-
color: rgb(255, 255, 255);
|
|
2167
|
-
--background: rgb(216, 26, 26);
|
|
2168
|
-
--color: rgb(255, 255, 255);
|
|
2169
|
-
border-color: rgb(216, 26, 26);
|
|
2170
|
-
}
|
|
2171
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button[aria-selected=true], :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:active, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button.active, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button.active:hover, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:active:hover,
|
|
2172
|
-
:host([variant=negative][rank=primary]) .button[aria-selected=true],
|
|
2173
|
-
:host([variant=negative][rank=primary]) .button:active,
|
|
2174
|
-
:host([variant=negative][rank=primary]) .button.active,
|
|
2175
|
-
:host([variant=negative][rank=primary]) .button.active:hover,
|
|
2176
|
-
:host([variant=negative][rank=primary]) .button:active:hover {
|
|
2177
|
-
background-color: rgb(187, 0, 12);
|
|
2178
|
-
color: rgb(255, 255, 255);
|
|
2179
|
-
--background: rgb(187, 0, 12);
|
|
2180
|
-
--color: rgb(255, 255, 255);
|
|
2181
|
-
border-color: rgb(187, 0, 12);
|
|
2182
|
-
}
|
|
2183
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button[aria-selected]:hover, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button.active:hover, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:active:hover,
|
|
2184
|
-
:host([variant=negative][rank=primary]) .button[aria-selected]:hover,
|
|
2185
|
-
:host([variant=negative][rank=primary]) .button.active:hover,
|
|
2186
|
-
:host([variant=negative][rank=primary]) .button:active:hover {
|
|
2187
|
-
opacity: 0.9;
|
|
2188
|
-
}
|
|
2189
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:focus:not(:focus-visible),
|
|
2190
|
-
:host([variant=negative][rank=primary]) .button:focus:not(:focus-visible) {
|
|
2191
|
-
box-shadow: none;
|
|
2192
|
-
outline: 0;
|
|
2193
|
-
}
|
|
2194
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:focus, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:focus-visible,
|
|
2195
|
-
:host([variant=negative][rank=primary]) .button:focus,
|
|
2196
|
-
:host([variant=negative][rank=primary]) .button:focus-visible {
|
|
2197
|
-
outline-color: var(--gds-sys-color-focus-outline);
|
|
2198
|
-
outline-style: solid;
|
|
2199
|
-
outline-width: 0.125rem;
|
|
2200
|
-
outline-offset: 0.125rem;
|
|
2201
|
-
}
|
|
2202
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:disabled, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button.disabled, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button[aria-disabled=true],
|
|
2203
|
-
:host([variant=negative][rank=primary]) .button:disabled,
|
|
2204
|
-
:host([variant=negative][rank=primary]) .button.disabled,
|
|
2205
|
-
:host([variant=negative][rank=primary]) .button[aria-disabled=true] {
|
|
2206
|
-
background: var(--form-control-primary-bg-disabled) !important;
|
|
2207
|
-
color: var(--text-primary-disabled-color) !important;
|
|
2208
|
-
border-color: var(--border-primary-disabled-color) !important;
|
|
2209
|
-
cursor: not-allowed;
|
|
2210
|
-
}
|
|
2211
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:disabled::-moz-placeholder, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button.disabled::-moz-placeholder, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button[aria-disabled=true]::-moz-placeholder, :host([variant=negative][rank=primary]) .button:disabled::-moz-placeholder, :host([variant=negative][rank=primary]) .button.disabled::-moz-placeholder, :host([variant=negative][rank=primary]) .button[aria-disabled=true]::-moz-placeholder {
|
|
2212
|
-
color: var(--text-disabled-color);
|
|
2213
|
-
}
|
|
2214
|
-
:host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button:disabled::placeholder, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button.disabled::placeholder, :host([variant=negative]:not([rank=secondary], [rank=tertiary])) .button[aria-disabled=true]::placeholder,
|
|
2215
|
-
:host([variant=negative][rank=primary]) .button:disabled::placeholder,
|
|
2216
|
-
:host([variant=negative][rank=primary]) .button.disabled::placeholder,
|
|
2217
|
-
:host([variant=negative][rank=primary]) .button[aria-disabled=true]::placeholder {
|
|
2218
|
-
color: var(--text-disabled-color);
|
|
2219
|
-
}
|
|
2220
|
-
/* stylelint-enable */
|
|
2221
|
-
:host([variant=negative][rank=secondary]) .button,
|
|
2222
|
-
:host([variant=negative][rank=tertiary]) .button {
|
|
2223
|
-
color: rgb(187, 0, 12);
|
|
2224
|
-
--color: rgb(187, 0, 12);
|
|
2225
|
-
border-color: transparent;
|
|
2226
|
-
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), outline-offset 0s, outline-width 0s;
|
|
2227
|
-
}
|
|
2228
|
-
:host([variant=negative][rank=secondary]) .button:not(:disabled, .disabled, [aria-disabled]):hover,
|
|
2229
|
-
:host([variant=negative][rank=tertiary]) .button:not(:disabled, .disabled, [aria-disabled]):hover {
|
|
2230
|
-
background-color: rgb(216, 26, 26);
|
|
2231
|
-
color: rgb(255, 255, 255);
|
|
2232
|
-
--background: rgb(216, 26, 26);
|
|
2233
|
-
--color: rgb(255, 255, 255);
|
|
2234
|
-
border-color: rgb(216, 26, 26);
|
|
2235
|
-
}
|
|
2236
|
-
:host([variant=negative][rank=secondary]) .button[aria-selected=true], :host([variant=negative][rank=secondary]) .button:active, :host([variant=negative][rank=secondary]) .button.active, :host([variant=negative][rank=secondary]) .button.active:hover, :host([variant=negative][rank=secondary]) .button:active:hover,
|
|
2237
|
-
:host([variant=negative][rank=tertiary]) .button[aria-selected=true],
|
|
2238
|
-
:host([variant=negative][rank=tertiary]) .button:active,
|
|
2239
|
-
:host([variant=negative][rank=tertiary]) .button.active,
|
|
2240
|
-
:host([variant=negative][rank=tertiary]) .button.active:hover,
|
|
2241
|
-
:host([variant=negative][rank=tertiary]) .button:active:hover {
|
|
2242
|
-
background-color: rgb(187, 0, 12);
|
|
2243
|
-
color: rgb(255, 255, 255);
|
|
2244
|
-
--background: rgb(187, 0, 12);
|
|
2245
|
-
--color: rgb(255, 255, 255);
|
|
2246
|
-
border-color: rgb(187, 0, 12);
|
|
2247
|
-
}
|
|
2248
|
-
:host([variant=negative][rank=secondary]) .button[aria-selected]:hover, :host([variant=negative][rank=secondary]) .button.active:hover, :host([variant=negative][rank=secondary]) .button:active:hover,
|
|
2249
|
-
:host([variant=negative][rank=tertiary]) .button[aria-selected]:hover,
|
|
2250
|
-
:host([variant=negative][rank=tertiary]) .button.active:hover,
|
|
2251
|
-
:host([variant=negative][rank=tertiary]) .button:active:hover {
|
|
2252
|
-
opacity: 0.9;
|
|
2253
|
-
}
|
|
2254
|
-
:host([variant=negative][rank=secondary]) .button:focus:not(:focus-visible),
|
|
2255
|
-
:host([variant=negative][rank=tertiary]) .button:focus:not(:focus-visible) {
|
|
2256
|
-
box-shadow: none;
|
|
2257
|
-
outline: 0;
|
|
2258
|
-
}
|
|
2259
|
-
:host([variant=negative][rank=secondary]) .button:focus, :host([variant=negative][rank=secondary]) .button:focus-visible,
|
|
2260
|
-
:host([variant=negative][rank=tertiary]) .button:focus,
|
|
2261
|
-
:host([variant=negative][rank=tertiary]) .button:focus-visible {
|
|
2262
|
-
outline-color: var(--gds-sys-color-focus-outline);
|
|
2263
|
-
outline-style: solid;
|
|
2264
|
-
outline-width: 0.125rem;
|
|
2265
|
-
outline-offset: 0.125rem;
|
|
2266
|
-
}
|
|
2267
|
-
:host([variant=negative][rank=secondary]) .button {
|
|
2268
|
-
border-color: rgb(187, 0, 12);
|
|
2269
|
-
}
|
|
2270
|
-
:host([variant=ghost]) .button {
|
|
2271
|
-
transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1), outline-offset 0s, outline-width 0s;
|
|
2272
|
-
border-color: rgb(51, 51, 51);
|
|
2273
|
-
color: rgb(51, 51, 51);
|
|
2274
|
-
--color: rgb(51, 51, 51);
|
|
2275
|
-
}
|
|
2276
|
-
:host([variant=ghost]) .button:not(:disabled, .disabled, [aria-disabled]):hover {
|
|
2277
|
-
background-color: rgb(51, 51, 51);
|
|
2278
|
-
color: rgb(255, 255, 255);
|
|
2279
|
-
--background: rgb(51, 51, 51);
|
|
2280
|
-
--color: rgb(255, 255, 255);
|
|
2281
|
-
border-color: rgb(51, 51, 51);
|
|
2282
|
-
}
|
|
2283
|
-
:host([variant=ghost]) .button[aria-selected=true], :host([variant=ghost]) .button:active, :host([variant=ghost]) .button.active, :host([variant=ghost]) .button.active:hover, :host([variant=ghost]) .button:active:hover {
|
|
2284
|
-
background-color: rgb(51, 51, 51);
|
|
2285
|
-
color: rgb(255, 255, 255);
|
|
2286
|
-
--background: rgb(51, 51, 51);
|
|
2287
|
-
--color: rgb(255, 255, 255);
|
|
2288
|
-
border-color: rgb(51, 51, 51);
|
|
2289
|
-
}
|
|
2290
|
-
:host([variant=ghost]) .button[aria-selected]:hover, :host([variant=ghost]) .button.active:hover, :host([variant=ghost]) .button:active:hover {
|
|
2291
|
-
opacity: 0.9;
|
|
2292
|
-
}
|
|
2293
|
-
:host([variant=ghost]) .button:focus-visible {
|
|
2294
|
-
background-color: rgb(51, 51, 51);
|
|
2295
|
-
color: rgb(255, 255, 255);
|
|
2296
|
-
--background: rgb(51, 51, 51);
|
|
2297
|
-
--color: rgb(255, 255, 255);
|
|
2298
|
-
border-color: rgb(51, 51, 51) !important;
|
|
2299
|
-
}
|
|
2300
|
-
:host([variant=ghost]) .button:disabled, :host([variant=ghost]) .button.disabled, :host([variant=ghost]) .button[aria-disabled=true] {
|
|
2301
|
-
color: var(--text-disabled-color) !important;
|
|
2302
|
-
border-color: var(--border-disabled-color) !important;
|
|
2303
|
-
cursor: not-allowed;
|
|
2304
|
-
}
|
|
2305
|
-
:host([variant=ghost]) .button:disabled::-moz-placeholder, :host([variant=ghost]) .button.disabled::-moz-placeholder, :host([variant=ghost]) .button[aria-disabled=true]::-moz-placeholder {
|
|
2306
|
-
color: var(--text-disabled-color);
|
|
2307
|
-
}
|
|
2308
|
-
:host([variant=ghost]) .button:disabled::placeholder, :host([variant=ghost]) .button.disabled::placeholder, :host([variant=ghost]) .button[aria-disabled=true]::placeholder {
|
|
2309
|
-
color: var(--text-disabled-color);
|
|
2310
|
-
}
|
|
2311
|
-
}
|
|
2312
|
-
@layer _overrides {
|
|
2313
|
-
:host .button.icon {
|
|
2314
|
-
padding: 0.75rem;
|
|
2315
|
-
background: transparent;
|
|
2316
|
-
border-width: 0px;
|
|
2317
|
-
color: currentColor;
|
|
2318
|
-
}
|
|
2319
|
-
:host .button.icon:hover {
|
|
2320
|
-
color: currentColor;
|
|
2321
|
-
background: var(--grey-500);
|
|
2322
|
-
}
|
|
2323
|
-
:host .button.icon slot {
|
|
2324
|
-
display: contents;
|
|
2325
|
-
}
|
|
2326
|
-
.button.icon.xs {
|
|
2327
|
-
min-height: 1.5rem;
|
|
2328
|
-
line-height: 0.75rem;
|
|
2329
|
-
padding: 0.25rem;
|
|
2330
|
-
}
|
|
2331
|
-
.button.icon.small {
|
|
2332
|
-
padding: 0.5rem;
|
|
2333
|
-
}
|
|
2334
|
-
.button.icon.large {
|
|
2335
|
-
padding: 1rem;
|
|
2336
|
-
}
|
|
2337
|
-
}
|
|
2338
|
-
}`;
|
|
2339
|
-
|
|
2340
|
-
// libs/core/src/components/button/button.trans.styles.ts
|
|
2341
|
-
function register6() {
|
|
2342
|
-
TransitionalStyles.instance.register("gds-button", button_trans_styles_default.toString());
|
|
2343
|
-
}
|
|
2344
|
-
var button_trans_styles_default2 = register6;
|
|
2345
|
-
|
|
2346
|
-
export {
|
|
2347
|
-
register6 as register,
|
|
2348
|
-
button_trans_styles_default2 as button_trans_styles_default,
|
|
2349
|
-
register2,
|
|
2350
|
-
popover_trans_styles_default2 as popover_trans_styles_default,
|
|
2351
|
-
register3,
|
|
2352
|
-
context_menu_trans_styles_default2 as context_menu_trans_styles_default,
|
|
2353
|
-
register4,
|
|
2354
|
-
calendar_trans_styles_default2 as calendar_trans_styles_default,
|
|
2355
|
-
register5,
|
|
2356
|
-
register7 as register6,
|
|
2357
|
-
dropdown_trans_styles_default,
|
|
2358
|
-
register8 as register7,
|
|
2359
|
-
datepicker_trans_styles_default2 as datepicker_trans_styles_default,
|
|
2360
|
-
register9 as register8,
|
|
2361
|
-
filter_chip_trans_styles_default2 as filter_chip_trans_styles_default,
|
|
2362
|
-
register10 as register9,
|
|
2363
|
-
filter_chips_trans_styles_default2 as filter_chips_trans_styles_default,
|
|
2364
|
-
register11 as register10,
|
|
2365
|
-
grouped_list_trans_styles_default2 as grouped_list_trans_styles_default,
|
|
2366
|
-
register12 as register11,
|
|
2367
|
-
input_trans_styles_default,
|
|
2368
|
-
register13 as register12,
|
|
2369
|
-
segment_trans_styles_default2 as segment_trans_styles_default,
|
|
2370
|
-
register14 as register13,
|
|
2371
|
-
segmented_control_trans_styles_default2 as segmented_control_trans_styles_default,
|
|
2372
|
-
register15 as register14,
|
|
2373
|
-
theme_trans_styles_default,
|
|
2374
|
-
registerTransitionalStyles,
|
|
2375
|
-
TransitionalStyles
|
|
2376
|
-
};
|