@apple-pie/slice 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/chunks/Avatar-0EXaRG4e.js +54 -0
- package/dist/cjs/chunks/AvatarGroup-BsRUAZl0.js +37 -0
- package/dist/cjs/chunks/Badge-Bv6c2YVC.js +23 -0
- package/dist/cjs/chunks/Button-DFAWHJmQ.js +246 -0
- package/dist/cjs/chunks/ButtonBar-DOgYDAda.js +53 -0
- package/dist/cjs/chunks/Card-BPClSuHa.js +37 -0
- package/dist/cjs/chunks/CheckBox-tsExpwtr.js +56 -0
- package/dist/cjs/chunks/Chip-CPHF1zn-.js +84 -0
- package/dist/cjs/chunks/DivInput-DDQVtlot.js +102 -0
- package/dist/cjs/chunks/DocIcons-B5TcBqSH.js +108 -0
- package/dist/cjs/chunks/Dot-BSSClfHQ.js +73 -0
- package/dist/cjs/chunks/DrggablePanel-wWLPesc8.js +202 -0
- package/dist/cjs/chunks/DropDown-COdCr77A.js +102 -0
- package/dist/cjs/chunks/ErrorSummary-CIUqlSLC.js +60 -0
- package/dist/cjs/chunks/FileIcon-DTQaXxfC.js +221 -0
- package/dist/cjs/chunks/FileList-J2EgJyCo.js +217 -0
- package/dist/cjs/chunks/FlexDiv-CW5gSa4V.js +65 -0
- package/dist/cjs/chunks/Grouper-QwwunKen.js +61 -0
- package/dist/cjs/chunks/IconButton-B53y3z1_.js +77 -0
- package/dist/cjs/chunks/Label-DoiS07-y.js +111 -0
- package/dist/cjs/chunks/Logos-CAHU-eIP.js +483 -0
- package/dist/cjs/chunks/Overlay-Bb2YoSKr.js +36 -0
- package/dist/cjs/chunks/Pager-CN2z8M9E.js +37 -0
- package/dist/cjs/chunks/ProgressIndicator-BbrZ7Aoc.js +157 -0
- package/dist/cjs/chunks/PromptInput-BXDqUXFQ.js +150 -0
- package/dist/cjs/chunks/RadioButton-GKRhZEmb.js +56 -0
- package/dist/cjs/chunks/RadioButtonList-CFpZmyAX.js +59 -0
- package/dist/cjs/chunks/Slider-CZvCAodl.js +136 -0
- package/dist/cjs/chunks/Spacer-CtxV2Pww.js +18 -0
- package/dist/cjs/chunks/Switch-C94aofxQ.js +37 -0
- package/dist/cjs/chunks/TabBar-D6akzNUf.js +123 -0
- package/dist/cjs/chunks/TextArea-DjF8Koup.js +82 -0
- package/dist/cjs/chunks/TextField-Cg6mQcYl.js +204 -0
- package/dist/cjs/chunks/Tip-CjMHa-fD.js +88 -0
- package/dist/cjs/chunks/Toast-Cdyh6T-l.js +163 -0
- package/dist/cjs/chunks/UploadArea-BmZ50EEl.js +123 -0
- package/dist/cjs/chunks/_types-B5xXv4NA.js +1386 -0
- package/dist/cjs/chunks/sharedTypes-gCECyn2N.js +6 -0
- package/dist/cjs/chunks/style-inject.es-CMuL-BfJ.js +11 -0
- package/dist/cjs/chunks/tipStore-Ck4NLvml.js +17 -0
- package/dist/cjs/chunks/toastStore-CSStgB9d.js +17 -0
- package/dist/cjs/chunks/tslib.es6-C8dZW5nY.js +49 -0
- package/dist/cjs/chunks/uploads-worker-mD8pcsGP.js +221 -0
- package/dist/cjs/chunks/uploadsStore-CxWIctvI.js +75 -0
- package/dist/cjs/chunks/utils-BsBHecUI.js +70 -0
- package/dist/cjs/chunks/windowStore-RaJswiHM.js +70 -0
- package/dist/cjs/hooks/useDoubleClick.js +11 -23
- package/dist/cjs/hooks/useKeyboardShortcuts.js +18 -35
- package/dist/cjs/hooks/useLastUpdated.js +20 -42
- package/dist/cjs/hooks/useLocalStore.js +23 -39
- package/dist/cjs/hooks/useObserveResize.js +26 -44
- package/dist/cjs/hooks/useObserveTheme.js +18 -36
- package/dist/cjs/hooks/useTheme.js +17 -40
- package/dist/cjs/hooks/useToolTip.js +19 -32
- package/dist/cjs/hooks/useTrackRenders.js +11 -29
- package/dist/cjs/hooks/useWindow.js +29 -65
- package/dist/cjs/hooks.js +12 -30
- package/dist/cjs/index.js +46 -134
- package/dist/cjs/providers/ThemeProvider.js +27 -45
- package/dist/cjs/providers.js +5 -12
- package/dist/cjs/stores/tip.js +4 -9
- package/dist/cjs/stores/toast.js +4 -9
- package/dist/cjs/stores/uploads.js +11 -0
- package/dist/cjs/stores/window.js +8 -10
- package/dist/cjs/stores.js +18 -21
- package/dist/cjs/theme/colors.js +371 -379
- package/dist/cjs/theme/corners.js +10 -12
- package/dist/cjs/theme/elevations.js +10 -13
- package/dist/cjs/theme/themes.js +8 -13
- package/dist/cjs/theme/type.js +225 -384
- package/dist/cjs/theme.js +5 -13
- package/dist/cjs/uikit/Avatar/index.js +6 -0
- package/dist/cjs/uikit/AvatarGroup/index.js +7 -0
- package/dist/cjs/uikit/Badge/index.js +6 -0
- package/dist/cjs/uikit/Button/index.js +12 -0
- package/dist/cjs/uikit/ButtonBar/index.js +12 -0
- package/dist/cjs/uikit/Card/index.js +10 -0
- package/dist/cjs/uikit/CheckBox/index.js +10 -0
- package/dist/cjs/uikit/Chip/index.js +11 -0
- package/dist/cjs/uikit/DivInput/index.js +7 -0
- package/dist/cjs/uikit/DocIcon/index.js +9 -0
- package/dist/cjs/uikit/Dot/index.js +6 -0
- package/dist/cjs/uikit/DraggablePanel/index.js +10 -0
- package/dist/cjs/uikit/DropDown/index.js +10 -0
- package/dist/cjs/uikit/ErrorSummary/index.js +6 -0
- package/dist/cjs/uikit/FileIcon/index.js +15 -0
- package/dist/cjs/uikit/FileList/index.js +11 -0
- package/dist/cjs/uikit/FlexDiv/index.js +6 -0
- package/dist/cjs/uikit/Grouper/index.js +11 -0
- package/dist/cjs/uikit/Icon/index.js +14 -0
- package/dist/cjs/uikit/IconButton/index.js +12 -0
- package/dist/cjs/uikit/Label/index.js +10 -0
- package/dist/cjs/uikit/Logos/index.js +9 -0
- package/dist/cjs/uikit/Overlay/index.js +6 -0
- package/dist/cjs/uikit/Pager/index.js +7 -0
- package/dist/cjs/uikit/Progress/index.js +10 -0
- package/dist/cjs/uikit/PromptInput/index.js +14 -0
- package/dist/cjs/uikit/RadioButton/index.js +12 -0
- package/dist/cjs/uikit/RadioButtonList/index.js +13 -0
- package/dist/cjs/uikit/Slider/index.js +7 -0
- package/dist/cjs/uikit/Spacer/index.js +6 -0
- package/dist/cjs/uikit/Switch/index.js +6 -0
- package/dist/cjs/uikit/TabBar/index.js +12 -0
- package/dist/cjs/uikit/TextArea/index.js +13 -0
- package/dist/cjs/uikit/Textfield/index.js +13 -0
- package/dist/cjs/uikit/Tip/index.js +7 -0
- package/dist/cjs/uikit/Toast/index.js +16 -0
- package/dist/cjs/uikit/UploadArea/index.js +15 -0
- package/dist/cjs/workers/uploads/uploads.js +5 -0
- package/dist/esm/chunks/Avatar-D_W5zErj.mjs +60 -0
- package/dist/esm/chunks/AvatarGroup-Dbfmz0Yz.mjs +45 -0
- package/dist/esm/chunks/Badge-BISGWj5-.mjs +29 -0
- package/dist/esm/chunks/Button-B_aIY6wE.mjs +264 -0
- package/dist/esm/chunks/ButtonBar-Cr6TFvvD.mjs +66 -0
- package/dist/esm/chunks/Card-BzKBF0ny.mjs +45 -0
- package/dist/esm/chunks/CheckBox-CYggPKaT.mjs +68 -0
- package/dist/esm/chunks/Chip-B3wb9g1U.mjs +96 -0
- package/dist/esm/chunks/DivInput-_VL6PAqT.mjs +114 -0
- package/dist/esm/chunks/DocIcons-BxtcXsWI.mjs +114 -0
- package/dist/esm/chunks/Dot-C-Xu24wF.mjs +81 -0
- package/dist/esm/chunks/DrggablePanel-Bg3UKK1k.mjs +214 -0
- package/dist/esm/chunks/DropDown-D7KyGLkM.mjs +114 -0
- package/dist/esm/chunks/ErrorSummary-CZw06dSh.mjs +68 -0
- package/dist/esm/chunks/FileIcon-BcIJzIwA.mjs +233 -0
- package/dist/esm/chunks/FileList-DUzgHfE-.mjs +229 -0
- package/dist/esm/chunks/FlexDiv-BLYDgWu2.mjs +73 -0
- package/dist/esm/chunks/Grouper-CRldBHSw.mjs +75 -0
- package/dist/esm/chunks/IconButton-BBiZrXlS.mjs +93 -0
- package/dist/esm/chunks/Label-DPIAVkn1.mjs +124 -0
- package/dist/esm/chunks/Logos-CpcaarOG.mjs +493 -0
- package/dist/esm/chunks/Overlay-Bh0enFIe.mjs +44 -0
- package/dist/esm/chunks/Pager-B-1ZRUzU.mjs +45 -0
- package/dist/esm/chunks/ProgressIndicator-CNOBQ_Fv.mjs +167 -0
- package/dist/esm/chunks/PromptInput-DdsIgZ3T.mjs +160 -0
- package/dist/esm/chunks/RadioButton-D-TdQu3a.mjs +66 -0
- package/dist/esm/chunks/RadioButtonList-CEScWkbT.mjs +67 -0
- package/dist/esm/chunks/Slider-C3A8GCfH.mjs +142 -0
- package/dist/esm/chunks/Spacer-BlgEdKEM.mjs +20 -0
- package/dist/esm/chunks/Switch-obpmvCGd.mjs +45 -0
- package/dist/esm/chunks/TabBar-DFj021UP.mjs +141 -0
- package/dist/esm/chunks/TextArea-D_hq6VF3.mjs +90 -0
- package/dist/esm/chunks/TextField-Co0u-xdd.mjs +222 -0
- package/dist/esm/chunks/Tip-CHQh-Yq0.mjs +98 -0
- package/dist/esm/chunks/Toast-BiXzVFtM.mjs +179 -0
- package/dist/esm/chunks/UploadArea-B9685Z06.mjs +133 -0
- package/dist/esm/chunks/_types-KZDzhaiK.mjs +1395 -0
- package/dist/esm/chunks/sharedTypes-tn9-uJvb.mjs +8 -0
- package/dist/esm/chunks/style-inject.es-D0BjEaN8.mjs +11 -0
- package/dist/esm/chunks/tipStore-CL5a95Bl.mjs +15 -0
- package/dist/esm/chunks/toastStore-D2PEIqCo.mjs +15 -0
- package/dist/esm/chunks/tslib.es6-c-7TIv71.mjs +53 -0
- package/dist/esm/chunks/uploads-worker-Dv-4zGnC.mjs +224 -0
- package/dist/esm/chunks/uploadsStore-D69fEXMY.mjs +72 -0
- package/dist/esm/chunks/utils-BQ1v7VE4.mjs +74 -0
- package/dist/esm/chunks/windowStore-CwW0i_le.mjs +71 -0
- package/dist/esm/hooks/useDoubleClick.mjs +14 -0
- package/dist/esm/hooks/useKeyboardShortcuts.mjs +27 -0
- package/dist/esm/hooks/useLastUpdated.mjs +31 -0
- package/dist/esm/hooks/useLocalStore.mjs +36 -0
- package/dist/esm/hooks/useObserveResize.mjs +38 -0
- package/dist/esm/hooks/useObserveTheme.mjs +34 -0
- package/dist/esm/hooks/useTheme.mjs +73 -0
- package/dist/esm/hooks/useToolTip.mjs +23 -0
- package/dist/esm/hooks/useTrackRenders.mjs +23 -0
- package/dist/esm/hooks/useWindow.mjs +52 -0
- package/dist/esm/hooks.mjs +29 -0
- package/dist/esm/index.mjs +117 -0
- package/dist/esm/providers/ThemeProvider.mjs +49 -0
- package/dist/esm/providers.mjs +15 -0
- package/dist/esm/stores/tip.mjs +3 -0
- package/dist/esm/stores/toast.mjs +3 -0
- package/dist/esm/stores/uploads.mjs +7 -0
- package/dist/esm/stores/window.mjs +3 -0
- package/dist/esm/stores.mjs +13 -0
- package/dist/esm/theme/colors.mjs +373 -0
- package/dist/esm/theme/corners.mjs +12 -0
- package/dist/esm/theme/elevations.mjs +15 -0
- package/dist/esm/theme/themes.mjs +25 -0
- package/dist/esm/theme/type.mjs +236 -0
- package/dist/esm/theme.mjs +9 -0
- package/dist/esm/uikit/Avatar/index.mjs +9 -0
- package/dist/esm/uikit/AvatarGroup/index.mjs +11 -0
- package/dist/esm/uikit/Badge/index.mjs +9 -0
- package/dist/esm/uikit/Button/index.mjs +39 -0
- package/dist/esm/uikit/ButtonBar/index.mjs +39 -0
- package/dist/esm/uikit/Card/index.mjs +29 -0
- package/dist/esm/uikit/CheckBox/index.mjs +31 -0
- package/dist/esm/uikit/Chip/index.mjs +31 -0
- package/dist/esm/uikit/DivInput/index.mjs +13 -0
- package/dist/esm/uikit/DocIcon/index.mjs +23 -0
- package/dist/esm/uikit/Dot/index.mjs +11 -0
- package/dist/esm/uikit/DraggablePanel/index.mjs +29 -0
- package/dist/esm/uikit/DropDown/index.mjs +29 -0
- package/dist/esm/uikit/ErrorSummary/index.mjs +11 -0
- package/dist/esm/uikit/FileIcon/index.mjs +25 -0
- package/dist/esm/uikit/FileList/index.mjs +35 -0
- package/dist/esm/uikit/FlexDiv/index.mjs +11 -0
- package/dist/esm/uikit/Grouper/index.mjs +33 -0
- package/dist/esm/uikit/Icon/index.mjs +25 -0
- package/dist/esm/uikit/IconButton/index.mjs +37 -0
- package/dist/esm/uikit/Label/index.mjs +27 -0
- package/dist/esm/uikit/Logos/index.mjs +23 -0
- package/dist/esm/uikit/Overlay/index.mjs +11 -0
- package/dist/esm/uikit/Pager/index.mjs +11 -0
- package/dist/esm/uikit/Progress/index.mjs +27 -0
- package/dist/esm/uikit/PromptInput/index.mjs +45 -0
- package/dist/esm/uikit/RadioButton/index.mjs +39 -0
- package/dist/esm/uikit/RadioButtonList/index.mjs +41 -0
- package/dist/esm/uikit/Slider/index.mjs +13 -0
- package/dist/esm/uikit/Spacer/index.mjs +7 -0
- package/dist/esm/uikit/Switch/index.mjs +11 -0
- package/dist/esm/uikit/TabBar/index.mjs +39 -0
- package/dist/esm/uikit/TextArea/index.mjs +41 -0
- package/dist/esm/uikit/Textfield/index.mjs +43 -0
- package/dist/esm/uikit/Tip/index.mjs +13 -0
- package/dist/esm/uikit/Toast/index.mjs +31 -0
- package/dist/esm/uikit/UploadArea/index.mjs +37 -0
- package/dist/esm/workers/uploads/uploads.mjs +5 -0
- package/dist/types/stores/index.d.ts +1 -0
- package/dist/types/stores/uploads/_types.d.ts +16 -0
- package/dist/types/stores/uploads/index.d.ts +2 -0
- package/dist/types/stores/uploads/uploadsStore.d.ts +22 -0
- package/dist/types/workers/uploads/uploads-worker.d.ts +129 -0
- package/dist/types/workers/uploads/uploads.d.ts +1 -0
- package/dist/types/workers/uploads/uploads.runtime.d.ts +1 -0
- package/package.json +23 -17
- package/dist/cjs/chunks/Avatar-z2YcOAoP.js +0 -68
- package/dist/cjs/chunks/AvatarGroup-Cz8369zI.js +0 -39
- package/dist/cjs/chunks/Badge-COSg__VJ.js +0 -41
- package/dist/cjs/chunks/Button-BNXqiA13.js +0 -312
- package/dist/cjs/chunks/ButtonBar-CeDdAOlH.js +0 -58
- package/dist/cjs/chunks/Card-Cc_c-S7i.js +0 -36
- package/dist/cjs/chunks/CheckBox-hTWIPqV_.js +0 -76
- package/dist/cjs/chunks/Chip-CLKVldi4.js +0 -93
- package/dist/cjs/chunks/DivInput-DnY2emt-.js +0 -204
- package/dist/cjs/chunks/DocIcons-BRWOzK96.js +0 -41
- package/dist/cjs/chunks/Dot-B5dO8kSS.js +0 -80
- package/dist/cjs/chunks/DrggablePanel-BtsURL9o.js +0 -302
- package/dist/cjs/chunks/DropDown-COr9u96t.js +0 -154
- package/dist/cjs/chunks/ErrorSummary-BrSHbGpk.js +0 -42
- package/dist/cjs/chunks/FileIcon-CEMQK_Je.js +0 -132
- package/dist/cjs/chunks/FileList-BHMne9Mr.js +0 -163
- package/dist/cjs/chunks/FlexDiv-BHl29ywz.js +0 -103
- package/dist/cjs/chunks/Grouper-EyHoeA8w.js +0 -50
- package/dist/cjs/chunks/IconButton-9QZ4eKBZ.js +0 -84
- package/dist/cjs/chunks/Label-s1aCv2Y1.js +0 -134
- package/dist/cjs/chunks/Logos-DSlAUz8l.js +0 -119
- package/dist/cjs/chunks/Overlay-DV3C5NDO.js +0 -45
- package/dist/cjs/chunks/Pager-CRjpl1FZ.js +0 -42
- package/dist/cjs/chunks/ProgressIndicator-BAwAaw58.js +0 -121
- package/dist/cjs/chunks/PromptInput-CfzofBTJ.js +0 -212
- package/dist/cjs/chunks/RadioButton-DA9YUGEF.js +0 -65
- package/dist/cjs/chunks/RadioButtonList-BtsT7GJc.js +0 -116
- package/dist/cjs/chunks/Slider-CqrIwn-L.js +0 -285
- package/dist/cjs/chunks/Spacer-BEY2-_PB.js +0 -16
- package/dist/cjs/chunks/Switch-CtkFtogd.js +0 -43
- package/dist/cjs/chunks/TabBar-WsNlr-aZ.js +0 -176
- package/dist/cjs/chunks/TextArea-BMJWUH2H.js +0 -153
- package/dist/cjs/chunks/TextField-mfwz79cD.js +0 -248
- package/dist/cjs/chunks/Tip-Af6FMEDi.js +0 -91
- package/dist/cjs/chunks/Toast-CxAEOW4z.js +0 -158
- package/dist/cjs/chunks/UploadArea-DunGYE1_.js +0 -155
- package/dist/cjs/chunks/_types-BNlHsGMQ.js +0 -714
- package/dist/cjs/chunks/sharedTypes-BvTjh6M5.js +0 -9
- package/dist/cjs/chunks/style-inject.es-XZHJH68X.js +0 -30
- package/dist/cjs/chunks/tipStore-C9oV9SIh.js +0 -23
- package/dist/cjs/chunks/toastStore-C-ETP9H6.js +0 -23
- package/dist/cjs/chunks/tslib.es6-4H29ixHs.js +0 -48
- package/dist/cjs/chunks/utils-BwNacfBU.js +0 -128
- package/dist/cjs/chunks/windowStore-CPcVHJq6.js +0 -93
- package/dist/cjs/uikit/Avatar.js +0 -11
- package/dist/cjs/uikit/AvatarGroup.js +0 -12
- package/dist/cjs/uikit/Badge.js +0 -11
- package/dist/cjs/uikit/Button.js +0 -26
- package/dist/cjs/uikit/ButtonBar.js +0 -26
- package/dist/cjs/uikit/Card.js +0 -21
- package/dist/cjs/uikit/CheckBox.js +0 -22
- package/dist/cjs/uikit/Chip.js +0 -22
- package/dist/cjs/uikit/DivInput.js +0 -13
- package/dist/cjs/uikit/DocIcon.js +0 -18
- package/dist/cjs/uikit/Dot.js +0 -12
- package/dist/cjs/uikit/DraggablePanel.js +0 -21
- package/dist/cjs/uikit/DropDown.js +0 -21
- package/dist/cjs/uikit/ErrorSummary.js +0 -12
- package/dist/cjs/uikit/FileIcon.js +0 -23
- package/dist/cjs/uikit/FileList.js +0 -24
- package/dist/cjs/uikit/FlexDiv.js +0 -12
- package/dist/cjs/uikit/Grouper.js +0 -23
- package/dist/cjs/uikit/Icon.js +0 -23
- package/dist/cjs/uikit/IconButton.js +0 -25
- package/dist/cjs/uikit/Label.js +0 -20
- package/dist/cjs/uikit/Logos.js +0 -18
- package/dist/cjs/uikit/Overlay.js +0 -12
- package/dist/cjs/uikit/Pager.js +0 -12
- package/dist/cjs/uikit/Progress.js +0 -21
- package/dist/cjs/uikit/PromptInput.js +0 -29
- package/dist/cjs/uikit/RadioButton.js +0 -26
- package/dist/cjs/uikit/RadioButtonList.js +0 -27
- package/dist/cjs/uikit/Slider.js +0 -13
- package/dist/cjs/uikit/Spacer.js +0 -10
- package/dist/cjs/uikit/Switch.js +0 -12
- package/dist/cjs/uikit/TabBar.js +0 -26
- package/dist/cjs/uikit/TextArea.js +0 -27
- package/dist/cjs/uikit/Textfield.js +0 -28
- package/dist/cjs/uikit/Tip.js +0 -13
- package/dist/cjs/uikit/Toast.js +0 -26
- package/dist/cjs/uikit/UploadArea.js +0 -31
- package/dist/esm/chunks/Avatar-BtkvMV1v.js +0 -66
- package/dist/esm/chunks/AvatarGroup-pbqdS56o.js +0 -37
- package/dist/esm/chunks/Badge-DtxDLSO0.js +0 -39
- package/dist/esm/chunks/Button-BUJkJqdO.js +0 -310
- package/dist/esm/chunks/ButtonBar-Bl0oCxd8.js +0 -56
- package/dist/esm/chunks/Card-Bjk0kgQh.js +0 -34
- package/dist/esm/chunks/CheckBox-CvkZuSeB.js +0 -74
- package/dist/esm/chunks/Chip-o-YG_HAf.js +0 -91
- package/dist/esm/chunks/DivInput-D6ORPrkT.js +0 -202
- package/dist/esm/chunks/DocIcons-CbOX4n8Y.js +0 -39
- package/dist/esm/chunks/Dot-BZcEZbnm.js +0 -78
- package/dist/esm/chunks/DrggablePanel-DWrTjXvf.js +0 -300
- package/dist/esm/chunks/DropDown-BDIvYWI-.js +0 -152
- package/dist/esm/chunks/ErrorSummary-DzDnacH0.js +0 -40
- package/dist/esm/chunks/FileIcon-Cxh-QsYb.js +0 -130
- package/dist/esm/chunks/FileList-CdUgbpYF.js +0 -161
- package/dist/esm/chunks/FlexDiv-CFyndG99.js +0 -101
- package/dist/esm/chunks/Grouper-NJbpaaQG.js +0 -48
- package/dist/esm/chunks/IconButton-3m9ugITV.js +0 -82
- package/dist/esm/chunks/Label-BRon-ejm.js +0 -132
- package/dist/esm/chunks/Logos-DwZP-TR2.js +0 -117
- package/dist/esm/chunks/Overlay-BolsHW9S.js +0 -43
- package/dist/esm/chunks/Pager-BHLyXq9p.js +0 -40
- package/dist/esm/chunks/ProgressIndicator-uI9BZwBB.js +0 -118
- package/dist/esm/chunks/PromptInput-DodTBG82.js +0 -210
- package/dist/esm/chunks/RadioButton-D8otD_Jj.js +0 -63
- package/dist/esm/chunks/RadioButtonList-CtX1j7rO.js +0 -114
- package/dist/esm/chunks/Slider-O6UelMjh.js +0 -283
- package/dist/esm/chunks/Spacer-DbZSG5x3.js +0 -14
- package/dist/esm/chunks/Switch-DjfrSiQz.js +0 -41
- package/dist/esm/chunks/TabBar-C0NgwRa2.js +0 -174
- package/dist/esm/chunks/TextArea-DK0giDGR.js +0 -151
- package/dist/esm/chunks/TextField-CQ4XYYNm.js +0 -246
- package/dist/esm/chunks/Tip-iFECDhwN.js +0 -89
- package/dist/esm/chunks/Toast-ZxMZtbd0.js +0 -156
- package/dist/esm/chunks/UploadArea-C0YHy4Z9.js +0 -147
- package/dist/esm/chunks/_types-RJ7q8S0B.js +0 -712
- package/dist/esm/chunks/sharedTypes-BfZzG1KX.js +0 -9
- package/dist/esm/chunks/style-inject.es-tgCJW-Cu.js +0 -28
- package/dist/esm/chunks/tipStore-nBYJ6tmE.js +0 -17
- package/dist/esm/chunks/toastStore-r3pvNa28.js +0 -17
- package/dist/esm/chunks/tslib.es6-0pkUdtrF.js +0 -45
- package/dist/esm/chunks/utils-CZ1LWeN6.js +0 -121
- package/dist/esm/chunks/windowStore-Cu4W4zJM.js +0 -91
- package/dist/esm/hooks/useDoubleClick.js +0 -24
- package/dist/esm/hooks/useKeyboardShortcuts.js +0 -42
- package/dist/esm/hooks/useLastUpdated.js +0 -51
- package/dist/esm/hooks/useLocalStore.js +0 -50
- package/dist/esm/hooks/useObserveResize.js +0 -54
- package/dist/esm/hooks/useObserveTheme.js +0 -41
- package/dist/esm/hooks/useTheme.js +0 -84
- package/dist/esm/hooks/useToolTip.js +0 -34
- package/dist/esm/hooks/useTrackRenders.js +0 -37
- package/dist/esm/hooks/useWindow.js +0 -84
- package/dist/esm/hooks.js +0 -15
- package/dist/esm/index.js +0 -59
- package/dist/esm/providers/ThemeProvider.js +0 -56
- package/dist/esm/providers.js +0 -8
- package/dist/esm/stores/tip.js +0 -2
- package/dist/esm/stores/toast.js +0 -2
- package/dist/esm/stores/window.js +0 -2
- package/dist/esm/stores.js +0 -4
- package/dist/esm/theme/colors.js +0 -377
- package/dist/esm/theme/corners.js +0 -12
- package/dist/esm/theme/elevations.js +0 -15
- package/dist/esm/theme/themes.js +0 -23
- package/dist/esm/theme/type.js +0 -393
- package/dist/esm/theme.js +0 -5
- package/dist/esm/uikit/Avatar.js +0 -5
- package/dist/esm/uikit/AvatarGroup.js +0 -6
- package/dist/esm/uikit/Badge.js +0 -5
- package/dist/esm/uikit/Button.js +0 -20
- package/dist/esm/uikit/ButtonBar.js +0 -20
- package/dist/esm/uikit/Card.js +0 -15
- package/dist/esm/uikit/CheckBox.js +0 -16
- package/dist/esm/uikit/Chip.js +0 -16
- package/dist/esm/uikit/DivInput.js +0 -7
- package/dist/esm/uikit/DocIcon.js +0 -12
- package/dist/esm/uikit/Dot.js +0 -6
- package/dist/esm/uikit/DraggablePanel.js +0 -15
- package/dist/esm/uikit/DropDown.js +0 -15
- package/dist/esm/uikit/ErrorSummary.js +0 -6
- package/dist/esm/uikit/FileIcon.js +0 -13
- package/dist/esm/uikit/FileList.js +0 -18
- package/dist/esm/uikit/FlexDiv.js +0 -6
- package/dist/esm/uikit/Grouper.js +0 -17
- package/dist/esm/uikit/Icon.js +0 -13
- package/dist/esm/uikit/IconButton.js +0 -19
- package/dist/esm/uikit/Label.js +0 -14
- package/dist/esm/uikit/Logos.js +0 -12
- package/dist/esm/uikit/Overlay.js +0 -6
- package/dist/esm/uikit/Pager.js +0 -6
- package/dist/esm/uikit/Progress.js +0 -14
- package/dist/esm/uikit/PromptInput.js +0 -23
- package/dist/esm/uikit/RadioButton.js +0 -20
- package/dist/esm/uikit/RadioButtonList.js +0 -21
- package/dist/esm/uikit/Slider.js +0 -7
- package/dist/esm/uikit/Spacer.js +0 -4
- package/dist/esm/uikit/Switch.js +0 -6
- package/dist/esm/uikit/TabBar.js +0 -20
- package/dist/esm/uikit/TextArea.js +0 -21
- package/dist/esm/uikit/Textfield.js +0 -22
- package/dist/esm/uikit/Tip.js +0 -7
- package/dist/esm/uikit/Toast.js +0 -16
- package/dist/esm/uikit/UploadArea.js +0 -19
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
const coreColors = {
|
|
2
|
+
"brand-grey-50": "#f4f7fa",
|
|
3
|
+
"brand-grey-100": "#e5ecf3",
|
|
4
|
+
"brand-grey-200": "#d5e0ea",
|
|
5
|
+
"brand-grey-300": "#98acbf",
|
|
6
|
+
"brand-grey-400": "#7f96a9",
|
|
7
|
+
"brand-grey-500": "#657d91",
|
|
8
|
+
"brand-grey-600": "#4c6273",
|
|
9
|
+
"brand-grey-700": "#405261",
|
|
10
|
+
"brand-grey-800": "#37434e",
|
|
11
|
+
"brand-grey-900": "#2d353d",
|
|
12
|
+
"brand-grey-950": "#1f262d",
|
|
13
|
+
"brand-sea-50": "#e8f1ff",
|
|
14
|
+
"brand-sea-100": "#c7defe",
|
|
15
|
+
"brand-sea-200": "#a5c9ff",
|
|
16
|
+
"brand-sea-300": "#7ab3ff",
|
|
17
|
+
"brand-sea-400": "#4084ff",
|
|
18
|
+
"brand-sea-500": "#2f45ff",
|
|
19
|
+
"brand-sea-600": "#2d2fff",
|
|
20
|
+
"brand-sea-700": "#0000ff",
|
|
21
|
+
"brand-sea-800": "#0609cd",
|
|
22
|
+
"brand-sea-900": "#001699",
|
|
23
|
+
"brand-sea-950": "#0a0b5c",
|
|
24
|
+
"brand-sky-50": "#eafffe",
|
|
25
|
+
"brand-sky-100": "#cdfffb",
|
|
26
|
+
"brand-sky-200": "#a3f8ff",
|
|
27
|
+
"brand-sky-300": "#6af5ff",
|
|
28
|
+
"brand-sky-400": "#00edff",
|
|
29
|
+
"brand-sky-500": "#00c8e0",
|
|
30
|
+
"brand-sky-600": "#00a6c0",
|
|
31
|
+
"brand-sky-700": "#03839b",
|
|
32
|
+
"brand-sky-800": "#0d697d",
|
|
33
|
+
"brand-sky-900": "#105669",
|
|
34
|
+
"brand-sky-950": "#033949",
|
|
35
|
+
"brand-land-50": "#f4ffe5",
|
|
36
|
+
"brand-land-100": "#e0ffb7",
|
|
37
|
+
"brand-land-200": "#caff95",
|
|
38
|
+
"brand-land-300": "#b7fe59",
|
|
39
|
+
"brand-land-400": "#9cf820",
|
|
40
|
+
"brand-land-500": "#71e618",
|
|
41
|
+
"brand-land-600": "#56c900",
|
|
42
|
+
"brand-land-700": "#2d8c00",
|
|
43
|
+
"brand-land-800": "#31690b",
|
|
44
|
+
"brand-land-900": "#2a580f",
|
|
45
|
+
"brand-land-950": "#123201",
|
|
46
|
+
"brand-orange-50": "#fff8ec",
|
|
47
|
+
"brand-orange-100": "#ffebd7",
|
|
48
|
+
"brand-orange-200": "#ffe3c6",
|
|
49
|
+
"brand-orange-300": "#ffc182",
|
|
50
|
+
"brand-orange-400": "#ff972e",
|
|
51
|
+
"brand-orange-500": "#ff800a",
|
|
52
|
+
"brand-orange-600": "#ff6700",
|
|
53
|
+
"brand-orange-700": "#ff3700",
|
|
54
|
+
"brand-orange-800": "#a02b0b",
|
|
55
|
+
"brand-orange-900": "#80250b",
|
|
56
|
+
"brand-orange-950": "#461604",
|
|
57
|
+
"brand-yellow-50": "#ffffea",
|
|
58
|
+
"brand-yellow-100": "#fffdca",
|
|
59
|
+
"brand-yellow-200": "#fff2a0",
|
|
60
|
+
"brand-yellow-300": "#ffeb72",
|
|
61
|
+
"brand-yellow-400": "#ffd333",
|
|
62
|
+
"brand-yellow-500": "#ffc200",
|
|
63
|
+
"brand-yellow-600": "#ffad00",
|
|
64
|
+
"brand-yellow-700": "#c68601",
|
|
65
|
+
"brand-yellow-800": "#8f6307",
|
|
66
|
+
"brand-yellow-900": "#5f430a",
|
|
67
|
+
"brand-yellow-950": "#442e00",
|
|
68
|
+
"brand-purple-50": "#faf0ff",
|
|
69
|
+
"brand-purple-100": "#f4ddff",
|
|
70
|
+
"brand-purple-200": "#e5cdff",
|
|
71
|
+
"brand-purple-300": "#ccafff",
|
|
72
|
+
"brand-purple-400": "#b891ff",
|
|
73
|
+
"brand-purple-500": "#7d48ff",
|
|
74
|
+
"brand-purple-600": "#6a14ff",
|
|
75
|
+
"brand-purple-700": "#5600f1",
|
|
76
|
+
"brand-purple-800": "#4d01d6",
|
|
77
|
+
"brand-purple-900": "#4003af",
|
|
78
|
+
"brand-purple-950": "#1e007c",
|
|
79
|
+
"brand-magenta-50": "#fef1fc",
|
|
80
|
+
"brand-magenta-100": "#ffdcef",
|
|
81
|
+
"brand-magenta-200": "#ffcae6",
|
|
82
|
+
"brand-magenta-300": "#ff90cb",
|
|
83
|
+
"brand-magenta-400": "#ff61ca",
|
|
84
|
+
"brand-magenta-500": "#ff3ac2",
|
|
85
|
+
"brand-magenta-600": "#f012aa",
|
|
86
|
+
"brand-magenta-700": "#df059b",
|
|
87
|
+
"brand-magenta-800": "#9b0069",
|
|
88
|
+
"brand-magenta-900": "#790a55",
|
|
89
|
+
"brand-magenta-950": "#58003a",
|
|
90
|
+
"brand-white-0": "#ffffff",
|
|
91
|
+
"product-red-400": "#ff474a",
|
|
92
|
+
"product-red-500": "#df0529",
|
|
93
|
+
"core-drop-shadow-light": "#0339491a",
|
|
94
|
+
"core-drop-shadow-dark": "#0000007a",
|
|
95
|
+
"core-surface-coverup-translucent-light": "#1f262d52",
|
|
96
|
+
"core-surface-coverup-translucent-dark": "#0000007a",
|
|
97
|
+
"core-surface-overlay-translucent-light": "#ffffffcc",
|
|
98
|
+
"core-surface-overlay-translucent-dark": "#1f262dcc",
|
|
99
|
+
"scroll-bar-light": "#e3e8ef",
|
|
100
|
+
"scroll-bar-dark": "rgba(255, 255, 255, 0.1)",
|
|
101
|
+
"scroll-bar-hover-light": "#cdd5df",
|
|
102
|
+
"scroll-bar-hover-dark": "rgba(255, 255, 255, 0.15)",
|
|
103
|
+
"surface-shadow-soft-light": "0px 4px 24px #0339491a",
|
|
104
|
+
"surface-shadow-soft-dark": "0px 4px 24px #0000007a",
|
|
105
|
+
"surface-shadow-strong-light": "0px 4px 64px #0339491a",
|
|
106
|
+
"surface-shadow-strong-dark": "0px 4px 64px #0000007a"
|
|
107
|
+
}, light = {
|
|
108
|
+
"array-land": coreColors["brand-land-100"],
|
|
109
|
+
"array-land-label": coreColors["brand-land-600"],
|
|
110
|
+
"array-magenta": coreColors["brand-magenta-100"],
|
|
111
|
+
"array-magenta-label": coreColors["brand-magenta-600"],
|
|
112
|
+
"array-orange": coreColors["brand-orange-100"],
|
|
113
|
+
"array-orange-label": coreColors["brand-orange-600"],
|
|
114
|
+
"array-purple": coreColors["brand-purple-100"],
|
|
115
|
+
"array-purple-label": coreColors["brand-purple-600"],
|
|
116
|
+
"array-sea": coreColors["brand-sea-100"],
|
|
117
|
+
"array-sea-label": coreColors["brand-sea-600"],
|
|
118
|
+
"array-sky": coreColors["brand-sky-100"],
|
|
119
|
+
"array-sky-label": coreColors["brand-sky-600"],
|
|
120
|
+
"array-yellow": coreColors["brand-yellow-100"],
|
|
121
|
+
"array-yellow-label": coreColors["brand-yellow-600"],
|
|
122
|
+
"core-badge-primary": coreColors["brand-sea-500"],
|
|
123
|
+
"core-badge-secondary": coreColors["brand-grey-100"],
|
|
124
|
+
"core-button-disabled": coreColors["brand-grey-50"],
|
|
125
|
+
"core-button-primary": coreColors["brand-sea-500"],
|
|
126
|
+
"core-drop-shadow": coreColors["core-drop-shadow-light"],
|
|
127
|
+
"core-gp-logo-primary": coreColors["brand-sea-700"],
|
|
128
|
+
"core-gp-logo-secondary": coreColors["brand-grey-950"],
|
|
129
|
+
"core-icon-dark": coreColors["brand-grey-950"],
|
|
130
|
+
"core-icon-disabled": coreColors["brand-grey-300"],
|
|
131
|
+
"core-icon-error": coreColors["product-red-500"],
|
|
132
|
+
"core-icon-light": coreColors["brand-white-0"],
|
|
133
|
+
"core-icon-primary": coreColors["brand-grey-950"],
|
|
134
|
+
"core-icon-secondary": coreColors["brand-grey-700"],
|
|
135
|
+
"core-icon-tertiary": coreColors["brand-sea-500"],
|
|
136
|
+
"core-outline-secondary": coreColors["brand-grey-700"],
|
|
137
|
+
"core-outline-primary": coreColors["brand-grey-100"],
|
|
138
|
+
"core-outline-special": coreColors["brand-sea-100"],
|
|
139
|
+
"core-outline-tertiary": coreColors["brand-sea-500"],
|
|
140
|
+
"core-surface-coverup-translucent": coreColors["core-surface-coverup-translucent-light"],
|
|
141
|
+
"core-surface-overlay-translucent": coreColors["core-surface-overlay-translucent-light"],
|
|
142
|
+
"core-surface-primary": coreColors["brand-white-0"],
|
|
143
|
+
"core-surface-secondary": coreColors["brand-grey-50"],
|
|
144
|
+
"core-surface-special": coreColors["brand-sea-50"],
|
|
145
|
+
"core-text-dark": coreColors["brand-grey-950"],
|
|
146
|
+
"core-text-disabled": coreColors["brand-grey-300"],
|
|
147
|
+
"core-text-error": coreColors["product-red-500"],
|
|
148
|
+
"core-text-light": coreColors["brand-white-0"],
|
|
149
|
+
"core-text-primary": coreColors["brand-grey-950"],
|
|
150
|
+
"core-text-secondary": coreColors["brand-grey-700"],
|
|
151
|
+
"core-text-tertiary": coreColors["brand-grey-600"],
|
|
152
|
+
"core-text-special": coreColors["brand-sea-500"],
|
|
153
|
+
"core-link-primary": coreColors["brand-sea-700"],
|
|
154
|
+
"eor-tag-employee": coreColors["brand-sky-700"],
|
|
155
|
+
"eor-tag-overdue": coreColors["product-red-500"],
|
|
156
|
+
"eor-tag-paid": coreColors["brand-land-700"],
|
|
157
|
+
"eor-tag-pending": coreColors["brand-orange-500"],
|
|
158
|
+
"eor-tag-professional": coreColors["brand-sea-500"],
|
|
159
|
+
"feedback-attention": coreColors["brand-yellow-500"],
|
|
160
|
+
"feedback-informative": coreColors["brand-sky-700"],
|
|
161
|
+
"feedback-positive": coreColors["brand-land-700"],
|
|
162
|
+
"feedback-urgency": coreColors["brand-orange-500"],
|
|
163
|
+
"feedback-warning": coreColors["product-red-500"],
|
|
164
|
+
"gia-tag-risk-high": coreColors["product-red-500"],
|
|
165
|
+
"gia-tag-risk-low": coreColors["brand-sky-700"],
|
|
166
|
+
"gia-tag-risk-moderate": coreColors["brand-orange-500"],
|
|
167
|
+
"gia-text-excerpt-highlight": coreColors["brand-orange-100"],
|
|
168
|
+
"gia-text-selection": coreColors["brand-sea-100"],
|
|
169
|
+
"scroll-bar": coreColors["scroll-bar-light"],
|
|
170
|
+
"scroll-bar-hover": coreColors["scroll-bar-hover-light"],
|
|
171
|
+
"surface-shadow-soft": coreColors["surface-shadow-soft-light"],
|
|
172
|
+
"surface-shadow-strong": coreColors["surface-shadow-strong-light"]
|
|
173
|
+
}, dark = {
|
|
174
|
+
"array-land": coreColors["brand-land-100"],
|
|
175
|
+
"array-land-label": coreColors["brand-land-600"],
|
|
176
|
+
"array-magenta": coreColors["brand-magenta-100"],
|
|
177
|
+
"array-magenta-label": coreColors["brand-magenta-600"],
|
|
178
|
+
"array-orange": coreColors["brand-orange-100"],
|
|
179
|
+
"array-orange-label": coreColors["brand-orange-600"],
|
|
180
|
+
"array-purple": coreColors["brand-purple-100"],
|
|
181
|
+
"array-purple-label": coreColors["brand-purple-600"],
|
|
182
|
+
"array-sea": coreColors["brand-sea-100"],
|
|
183
|
+
"array-sea-label": coreColors["brand-sea-600"],
|
|
184
|
+
"array-sky": coreColors["brand-sky-100"],
|
|
185
|
+
"array-sky-label": coreColors["brand-sky-600"],
|
|
186
|
+
"array-yellow": coreColors["brand-yellow-100"],
|
|
187
|
+
"array-yellow-label": coreColors["brand-yellow-600"],
|
|
188
|
+
"core-badge-primary": coreColors["brand-sea-500"],
|
|
189
|
+
"core-badge-secondary": coreColors["brand-grey-700"],
|
|
190
|
+
"core-button-disabled": coreColors["brand-grey-900"],
|
|
191
|
+
"core-button-primary": coreColors["brand-sea-500"],
|
|
192
|
+
"core-drop-shadow": coreColors["core-drop-shadow-dark"],
|
|
193
|
+
"core-gp-logo-primary": coreColors["brand-sea-500"],
|
|
194
|
+
"core-gp-logo-secondary": coreColors["brand-white-0"],
|
|
195
|
+
"core-icon-dark": coreColors["brand-grey-950"],
|
|
196
|
+
"core-icon-disabled": coreColors["brand-grey-500"],
|
|
197
|
+
"core-icon-error": coreColors["product-red-400"],
|
|
198
|
+
"core-icon-light": coreColors["brand-white-0"],
|
|
199
|
+
"core-icon-primary": coreColors["brand-white-0"],
|
|
200
|
+
"core-icon-secondary": coreColors["brand-grey-200"],
|
|
201
|
+
"core-icon-tertiary": coreColors["brand-sky-300"],
|
|
202
|
+
"core-outline-secondary": coreColors["brand-grey-100"],
|
|
203
|
+
"core-outline-primary": coreColors["brand-grey-700"],
|
|
204
|
+
"core-outline-special": coreColors["brand-sky-900"],
|
|
205
|
+
"core-outline-tertiary": coreColors["brand-sky-300"],
|
|
206
|
+
"core-surface-coverup-translucent": coreColors["core-surface-coverup-translucent-dark"],
|
|
207
|
+
"core-surface-overlay-translucent": coreColors["core-surface-overlay-translucent-dark"],
|
|
208
|
+
"core-surface-primary": coreColors["brand-grey-950"],
|
|
209
|
+
"core-surface-secondary": coreColors["brand-grey-900"],
|
|
210
|
+
"core-surface-special": coreColors["brand-sky-950"],
|
|
211
|
+
"core-text-dark": coreColors["brand-grey-950"],
|
|
212
|
+
"core-text-disabled": coreColors["brand-grey-500"],
|
|
213
|
+
"core-text-error": coreColors["product-red-400"],
|
|
214
|
+
"core-text-light": coreColors["brand-white-0"],
|
|
215
|
+
"core-text-primary": coreColors["brand-white-0"],
|
|
216
|
+
"core-text-secondary": coreColors["brand-grey-200"],
|
|
217
|
+
"core-text-tertiary": coreColors["brand-grey-400"],
|
|
218
|
+
"core-text-special": coreColors["brand-sky-300"],
|
|
219
|
+
"core-link-primary": coreColors["brand-sky-300"],
|
|
220
|
+
"eor-tag-employee": coreColors["brand-sky-700"],
|
|
221
|
+
"eor-tag-overdue": coreColors["product-red-400"],
|
|
222
|
+
"eor-tag-paid": coreColors["brand-land-700"],
|
|
223
|
+
"eor-tag-pending": coreColors["brand-orange-500"],
|
|
224
|
+
"eor-tag-professional": coreColors["brand-sea-500"],
|
|
225
|
+
"feedback-attention": coreColors["brand-yellow-400"],
|
|
226
|
+
"feedback-informative": coreColors["brand-sky-600"],
|
|
227
|
+
"feedback-positive": coreColors["brand-land-700"],
|
|
228
|
+
"feedback-urgency": coreColors["brand-orange-500"],
|
|
229
|
+
"feedback-warning": coreColors["product-red-400"],
|
|
230
|
+
"gia-tag-risk-high": coreColors["product-red-400"],
|
|
231
|
+
"gia-tag-risk-low": coreColors["brand-sky-600"],
|
|
232
|
+
"gia-tag-risk-moderate": coreColors["brand-orange-500"],
|
|
233
|
+
"gia-text-excerpt-highlight": coreColors["brand-orange-100"],
|
|
234
|
+
"gia-text-selection": coreColors["brand-sea-900"],
|
|
235
|
+
"scroll-bar": coreColors["scroll-bar-dark"],
|
|
236
|
+
"scroll-bar-hover": coreColors["scroll-bar-hover-dark"],
|
|
237
|
+
"surface-shadow-soft": coreColors["surface-shadow-soft-dark"],
|
|
238
|
+
"surface-shadow-strong": coreColors["surface-shadow-strong-dark"]
|
|
239
|
+
}, colorCssVars = {
|
|
240
|
+
"array-land": "var(--array-land)",
|
|
241
|
+
"array-land-label": "var(--array-land-label)",
|
|
242
|
+
"array-magenta": "var(--array-magenta)",
|
|
243
|
+
"array-magenta-label": "var(--array-magenta-label)",
|
|
244
|
+
"array-orange": "var(--array-orange)",
|
|
245
|
+
"array-orange-label": "var(--array-orange-label)",
|
|
246
|
+
"array-purple": "var(--array-purple)",
|
|
247
|
+
"array-purple-label": "var(--array-purple-label)",
|
|
248
|
+
"array-sea": "var(--array-sea)",
|
|
249
|
+
"array-sea-label": "var(--array-sea-label)",
|
|
250
|
+
"array-sky": "var(--array-sky)",
|
|
251
|
+
"array-sky-label": "var(--array-sky-label)",
|
|
252
|
+
"array-yellow": "var(--array-yellow)",
|
|
253
|
+
"array-yellow-label": "var(--array-yellow-label)",
|
|
254
|
+
"core-badge-primary": "var(--core-badge-primary)",
|
|
255
|
+
"core-badge-secondary": "var(--core-badge-secondary)",
|
|
256
|
+
"core-button-disabled": "var(--core-button-disabled)",
|
|
257
|
+
"core-button-primary": "var(--core-button-primary)",
|
|
258
|
+
"core-drop-shadow": "var(--core-drop-shadow)",
|
|
259
|
+
"core-gp-logo-primary": "var(--core-gp-logo-primary)",
|
|
260
|
+
"core-gp-logo-secondary": "var(--core-gp-logo-secondary)",
|
|
261
|
+
"core-icon-dark": "var(--core-icon-dark)",
|
|
262
|
+
"core-icon-disabled": "var(--core-icon-disabled)",
|
|
263
|
+
"core-icon-error": "var(--core-icon-error)",
|
|
264
|
+
"core-icon-light": "var(--core-icon-light)",
|
|
265
|
+
"core-icon-primary": "var(--core-icon-primary)",
|
|
266
|
+
"core-icon-secondary": "var(--core-icon-secondary)",
|
|
267
|
+
"core-icon-tertiary": "var(--core-icon-tertiary)",
|
|
268
|
+
"core-outline-secondary": "var(--core-outline-secondary)",
|
|
269
|
+
"core-outline-primary": "var(--core-outline-primary)",
|
|
270
|
+
"core-outline-special": "var(--core-outline-special)",
|
|
271
|
+
"core-outline-tertiary": "var(--core-outline-tertiary)",
|
|
272
|
+
"core-surface-coverup-translucent": "var(--core-surface-coverup-translucent)",
|
|
273
|
+
"core-surface-overlay-translucent": "var(--core-surface-overlay-translucent)",
|
|
274
|
+
"core-surface-primary": "var(--core-surface-primary)",
|
|
275
|
+
"core-surface-secondary": "var(--core-surface-secondary)",
|
|
276
|
+
"core-surface-special": "var(--core-surface-special)",
|
|
277
|
+
"core-text-dark": "var(--core-text-dark)",
|
|
278
|
+
"core-text-disabled": "var(--core-text-disabled)",
|
|
279
|
+
"core-text-error": "var(--core-text-error)",
|
|
280
|
+
"core-text-light": "var(--core-text-light)",
|
|
281
|
+
"core-text-primary": "var(--core-text-primary)",
|
|
282
|
+
"core-text-secondary": "var(--core-text-secondary)",
|
|
283
|
+
"core-text-special": "var(--core-text-special)",
|
|
284
|
+
"core-text-tertiary": "var(--core-text-tertiary)",
|
|
285
|
+
"core-link-primary": "var(--core-link-primary)",
|
|
286
|
+
"eor-tag-employee": "var(--eor-tag-employee)",
|
|
287
|
+
"eor-tag-overdue": "var(--eor-tag-overdue)",
|
|
288
|
+
"eor-tag-paid": "var(--eor-tag-paid)",
|
|
289
|
+
"eor-tag-pending": "var(--eor-tag-pending)",
|
|
290
|
+
"eor-tag-professional": "var(--eor-tag-professional)",
|
|
291
|
+
"feedback-attention": "var(--feedback-attention)",
|
|
292
|
+
"feedback-informative": "var(--feedback-informative)",
|
|
293
|
+
"feedback-positive": "var(--feedback-positive)",
|
|
294
|
+
"feedback-urgency": "var(--feedback-urgency)",
|
|
295
|
+
"feedback-warning": "var(--feedback-warning)",
|
|
296
|
+
"gia-tag-risk-high": "var(--gia-tag-risk-high)",
|
|
297
|
+
"gia-tag-risk-low": "var(--gia-tag-risk-low)",
|
|
298
|
+
"gia-tag-risk-moderate": "var(--gia-tag-risk-moderate)",
|
|
299
|
+
"gia-text-excerpt-highlight": "var(--gia-text-excerpt-highlight)",
|
|
300
|
+
"gia-text-selection": "var(--gia-text-selection)",
|
|
301
|
+
"scroll-bar": "var(--scroll-bar)",
|
|
302
|
+
"scroll-bar-hover": "var(--scroll-bar-hover)",
|
|
303
|
+
"surface-shadow-soft": "var(--surface-shadow-soft)",
|
|
304
|
+
"surface-shadow-strong": "var(--surface-shadow-strong)"
|
|
305
|
+
}, colorClass = {
|
|
306
|
+
"array-land": "array-land",
|
|
307
|
+
"array-land-label": "array-land-label",
|
|
308
|
+
"array-magenta": "array-magenta",
|
|
309
|
+
"array-magenta-label": "array-magenta-label",
|
|
310
|
+
"array-orange": "array-orange",
|
|
311
|
+
"array-orange-label": "array-orange-label",
|
|
312
|
+
"array-purple": "array-purple",
|
|
313
|
+
"array-purple-label": "array-purple-label",
|
|
314
|
+
"array-sea": "array-sea",
|
|
315
|
+
"array-sea-label": "array-sea-label",
|
|
316
|
+
"array-sky": "array-sky",
|
|
317
|
+
"array-sky-label": "array-sky-label",
|
|
318
|
+
"array-yellow": "array-yellow",
|
|
319
|
+
"array-yellow-label": "array-yellow-label",
|
|
320
|
+
"core-badge-primary": "core-badge-primary",
|
|
321
|
+
"core-badge-secondary": "core-badge-secondary",
|
|
322
|
+
"core-button-disabled": "core-button-disabled",
|
|
323
|
+
"core-button-primary": "core-button-primary",
|
|
324
|
+
"core-drop-shadow": "core-drop-shadow",
|
|
325
|
+
"core-gp-logo-primary": "core-gp-logo-primary",
|
|
326
|
+
"core-gp-logo-secondary": "core-gp-logo-secondary",
|
|
327
|
+
"core-icon-dark": "core-icon-dark",
|
|
328
|
+
"core-icon-disabled": "core-icon-disabled",
|
|
329
|
+
"core-icon-error": "core-icon-error",
|
|
330
|
+
"core-icon-light": "core-icon-light",
|
|
331
|
+
"core-icon-primary": "core-icon-primary",
|
|
332
|
+
"core-icon-secondary": "core-icon-secondary",
|
|
333
|
+
"core-icon-tertiary": "core-icon-tertiary",
|
|
334
|
+
"core-outline-secondary": "core-outline-secondary",
|
|
335
|
+
"core-outline-primary": "core-outline-primary",
|
|
336
|
+
"core-outline-special": "core-outline-special",
|
|
337
|
+
"core-outline-tertiary": "core-outline-tertiary",
|
|
338
|
+
"core-surface-coverup-translucent": "core-surface-coverup-translucent",
|
|
339
|
+
"core-surface-overlay-translucent": "core-surface-overlay-translucent",
|
|
340
|
+
"core-surface-primary": "core-surface-primary",
|
|
341
|
+
"core-surface-secondary": "core-surface-secondary",
|
|
342
|
+
"core-surface-special": "core-surface-special",
|
|
343
|
+
"core-text-dark": "core-text-dark",
|
|
344
|
+
"core-text-disabled": "core-text-disabled",
|
|
345
|
+
"core-text-error": "core-text-error",
|
|
346
|
+
"core-text-light": "core-text-light",
|
|
347
|
+
"core-text-primary": "core-text-primary",
|
|
348
|
+
"core-text-secondary": "core-text-secondary",
|
|
349
|
+
"core-text-special": "core-text-special",
|
|
350
|
+
"core-text-tertiary": "core-text-tertiary",
|
|
351
|
+
"core-link-primary": "core-link-primary",
|
|
352
|
+
"eor-tag-employee": "eor-tag-employee",
|
|
353
|
+
"eor-tag-overdue": "eor-tag-overdue",
|
|
354
|
+
"eor-tag-paid": "eor-tag-paid",
|
|
355
|
+
"eor-tag-pending": "eor-tag-pending",
|
|
356
|
+
"eor-tag-professional": "eor-tag-professional",
|
|
357
|
+
"feedback-attention": "feedback-attention",
|
|
358
|
+
"feedback-informative": "feedback-informative",
|
|
359
|
+
"feedback-positive": "feedback-positive",
|
|
360
|
+
"feedback-urgency": "feedback-urgency",
|
|
361
|
+
"feedback-warning": "feedback-warning",
|
|
362
|
+
"gia-tag-risk-high": "gia-tag-risk-high",
|
|
363
|
+
"gia-tag-risk-low": "gia-tag-risk-low",
|
|
364
|
+
"gia-tag-risk-moderate": "gia-tag-risk-moderate",
|
|
365
|
+
"gia-text-excerpt-highlight": "gia-text-excerpt-highlight",
|
|
366
|
+
"gia-text-selection": "gia-text-selection",
|
|
367
|
+
"scroll-bar": "scroll-bar",
|
|
368
|
+
"scroll-bar-hover": "scroll-bar-hover",
|
|
369
|
+
"surface-shadow-soft": "surface-shadow-soft",
|
|
370
|
+
"surface-shadow-strong": "surface-shadow-strong"
|
|
371
|
+
};
|
|
372
|
+
|
|
373
|
+
export { colorClass, colorCssVars, coreColors, dark, light };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Elevation levels for UI component types
|
|
3
|
+
*/
|
|
4
|
+
const elevations = {
|
|
5
|
+
"elevation-below-surface": -100,
|
|
6
|
+
"elevation-surface": 0,
|
|
7
|
+
"elevation-float": 100,
|
|
8
|
+
"elevation-describe": 200,
|
|
9
|
+
"elevation-status": 300,
|
|
10
|
+
"elevation-notify": 400,
|
|
11
|
+
"elevation-overlay": 500,
|
|
12
|
+
"elevation-confirm": 600
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { elevations };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { dark, coreColors, light } from "./colors.mjs";
|
|
2
|
+
|
|
3
|
+
import { corners } from "./corners.mjs";
|
|
4
|
+
|
|
5
|
+
import { elevations } from "./elevations.mjs";
|
|
6
|
+
|
|
7
|
+
import { type } from "./type.mjs";
|
|
8
|
+
|
|
9
|
+
const lightTheme = {
|
|
10
|
+
name: "lightMode",
|
|
11
|
+
coreColors: coreColors,
|
|
12
|
+
colors: light,
|
|
13
|
+
type: type,
|
|
14
|
+
corners: corners,
|
|
15
|
+
elevations: elevations
|
|
16
|
+
}, darkTheme = {
|
|
17
|
+
name: "darkMode",
|
|
18
|
+
coreColors: coreColors,
|
|
19
|
+
colors: dark,
|
|
20
|
+
type: type,
|
|
21
|
+
corners: corners,
|
|
22
|
+
elevations: elevations
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
export { darkTheme, lightTheme };
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
const fontFamily = '"Funnel Sans"', fontWeights_regular = 360, fontWeights_medium = 420, fontWeights_bold = 480, fontSizes_xs = 12, fontSizes_s = 14, fontSizes_m = 15, fontSizes_l = 16, fontSizes_xl = 17, type = {
|
|
2
|
+
"body-xs-regular": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_regular};\n font-size: ${fontSizes_xs}px;\n line-height: 133.33%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
3
|
+
"body-xs-medium": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_medium};\n font-size: ${fontSizes_xs}px;\n line-height: 133.33%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
4
|
+
"body-xs-bold": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_bold};\n font-size: ${fontSizes_xs}px;\n line-height: 133.33%;\n text-decoration: none;\n letter-spacing: 0.250px`,
|
|
5
|
+
"body-s-regular": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_regular};\n font-size: ${fontSizes_s}px;\n line-height: 142.86%;\n text-decoration: none;\n letter-spacing: 0.15px`,
|
|
6
|
+
"body-s-medium": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_medium};\n font-size: ${fontSizes_s}px;\n line-height: 142.86%;\n text-decoration: none;\n letter-spacing: 0.15px`,
|
|
7
|
+
"body-s-bold": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_bold};\n font-size: ${fontSizes_s}px;\n line-height: 142.86%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
8
|
+
"body-m-regular": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_regular};\n font-size: ${fontSizes_m}px;\n line-height: 140%;\n text-decoration: none;\n letter-spacing: 0.15px`,
|
|
9
|
+
"body-m-medium": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_medium};\n font-size: ${fontSizes_m}px;\n line-height: 140%;\n text-decoration: none;\n letter-spacing: 0.15px`,
|
|
10
|
+
"body-m-bold": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_bold};\n font-size: ${fontSizes_m}px;\n line-height: 140%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
11
|
+
"body-l-regular": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_regular};\n font-size: ${fontSizes_l}px;\n line-height: 162.5%;\n text-decoration: none;\n letter-spacing: 0.1px`,
|
|
12
|
+
"body-l-medium": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_medium};\n font-size: ${fontSizes_l}px;\n line-height: 162.5%;\n text-decoration: none;\n letter-spacing: 0.1px`,
|
|
13
|
+
"body-l-bold": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_bold};\n font-size: ${fontSizes_l}px;\n line-height: 162.5%;\n text-decoration: none;\n letter-spacing: 0.15px`,
|
|
14
|
+
"body-xl-regular": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_regular};\n font-size: ${fontSizes_xl}px;\n line-height: 162.5%;\n text-decoration: none;\n letter-spacing: 0.1px`,
|
|
15
|
+
"body-xl-medium": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_medium};\n font-size: ${fontSizes_xl}px;\n line-height: 162.5%;\n text-decoration: none;\n letter-spacing: 0.1px`,
|
|
16
|
+
"body-xl-bold": `\n font-family: ${fontFamily};\n font-weight: ${fontWeights_bold};\n font-size: ${fontSizes_xl}px;\n line-height: 162.5%;\n text-decoration: none;\n letter-spacing: 0.15px`,
|
|
17
|
+
"heading-s-medium": `\n font-family: ${fontFamily};\n font-weight: 500;\n font-size: 20px; \n line-height: 140%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
18
|
+
"heading-s-bold": `\n font-family: ${fontFamily};\n font-weight: 600;\n font-size: 20px; \n line-height: 140%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
19
|
+
"heading-m-medium": `\n font-family: ${fontFamily};\n font-weight: 500;\n font-size: 24px; \n line-height: 116.67%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
20
|
+
"heading-m-bold": `\n font-family: ${fontFamily};\n font-weight: 600;\n font-size: 24px; \n line-height: 116.67%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
21
|
+
"heading-l-medium": `\n font-family: ${fontFamily};\n font-weight: 500;\n font-size: 28px; \n line-height: 128.57%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
22
|
+
"heading-l-bold": `\n font-family: ${fontFamily};\n font-weight: 600;\n font-size: 28px; \n line-height: 128.57%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
23
|
+
"heading-xl-medium": `\n font-family: ${fontFamily};\n font-weight: 500;\n font-size: 36px; \n line-height: 128.57%;\n text-decoration: none;\n letter-spacing: 0.2px`,
|
|
24
|
+
"heading-xl-bold": `\n font-family: ${fontFamily};\n font-weight: 600;\n font-size: 36px; \n line-height: 128.57%;\n text-decoration: none;\n letter-spacing: 0.2px`
|
|
25
|
+
}, typeCssClasses = {
|
|
26
|
+
"body-xs-regular": "body-xs-regular",
|
|
27
|
+
"body-xs-medium": "body-xs-medium",
|
|
28
|
+
"body-xs-bold": "body-xs-bold",
|
|
29
|
+
"body-s-regular": "body-s-regular",
|
|
30
|
+
"body-s-medium": "body-s-medium",
|
|
31
|
+
"body-s-bold": "body-s-bold",
|
|
32
|
+
"body-m-regular": "body-m-regular",
|
|
33
|
+
"body-m-medium": "body-m-medium",
|
|
34
|
+
"body-m-bold": "body-m-bold",
|
|
35
|
+
"body-l-regular": "body-l-regular",
|
|
36
|
+
"body-l-medium": "body-l-medium",
|
|
37
|
+
"body-l-bold": "body-l-bold",
|
|
38
|
+
"body-xl-regular": "body-xl-regular",
|
|
39
|
+
"body-xl-medium": "body-xl-medium",
|
|
40
|
+
"body-xl-bold": "body-xl-bold",
|
|
41
|
+
"heading-s-bold": "heading-s-bold",
|
|
42
|
+
"heading-s-medium": "heading-s-medium",
|
|
43
|
+
"heading-m-medium": "heading-m-medium",
|
|
44
|
+
"heading-m-bold": "heading-m-bold",
|
|
45
|
+
"heading-l-medium": "heading-l-medium",
|
|
46
|
+
"heading-l-bold": "heading-l-bold",
|
|
47
|
+
"heading-xl-medium": "heading-xl-medium",
|
|
48
|
+
"heading-xl-bold": "heading-xl-bold"
|
|
49
|
+
}, typeStyles = {
|
|
50
|
+
"body-xs-regular": {
|
|
51
|
+
fontFamily: `${fontFamily}`,
|
|
52
|
+
fontWeight: `${fontWeights_regular}`,
|
|
53
|
+
fontSize: `${fontSizes_xs}px`,
|
|
54
|
+
lineHeight: "133.33%",
|
|
55
|
+
textDecoration: "none",
|
|
56
|
+
letterSpacing: "0.2px"
|
|
57
|
+
},
|
|
58
|
+
"body-xs-medium": {
|
|
59
|
+
fontFamily: `${fontFamily}`,
|
|
60
|
+
fontWeight: `${fontWeights_medium}`,
|
|
61
|
+
fontSize: `${fontSizes_xs}px`,
|
|
62
|
+
lineHeight: "133.33%",
|
|
63
|
+
textDecoration: "none",
|
|
64
|
+
letterSpacing: "0.2px"
|
|
65
|
+
},
|
|
66
|
+
"body-xs-bold": {
|
|
67
|
+
fontFamily: `${fontFamily}`,
|
|
68
|
+
fontWeight: `${fontWeights_bold}`,
|
|
69
|
+
fontSize: `${fontSizes_xs}px`,
|
|
70
|
+
lineHeight: "133.33%",
|
|
71
|
+
textDecoration: "none",
|
|
72
|
+
letterSpacing: "0.250px"
|
|
73
|
+
},
|
|
74
|
+
"body-s-regular": {
|
|
75
|
+
fontFamily: `${fontFamily}`,
|
|
76
|
+
fontWeight: `${fontWeights_regular}`,
|
|
77
|
+
fontSize: `${fontSizes_s}px`,
|
|
78
|
+
lineHeight: "142.86%",
|
|
79
|
+
textDecoration: "none",
|
|
80
|
+
letterSpacing: "0.15px"
|
|
81
|
+
},
|
|
82
|
+
"body-s-medium": {
|
|
83
|
+
fontFamily: `${fontFamily}`,
|
|
84
|
+
fontWeight: `${fontWeights_medium}`,
|
|
85
|
+
fontSize: `${fontSizes_s}px`,
|
|
86
|
+
lineHeight: "142.86%",
|
|
87
|
+
textDecoration: "none",
|
|
88
|
+
letterSpacing: "0.15px"
|
|
89
|
+
},
|
|
90
|
+
"body-s-bold": {
|
|
91
|
+
fontFamily: `${fontFamily}`,
|
|
92
|
+
fontWeight: `${fontWeights_bold}`,
|
|
93
|
+
fontSize: `${fontSizes_s}px`,
|
|
94
|
+
lineHeight: "142.86%",
|
|
95
|
+
textDecoration: "none",
|
|
96
|
+
letterSpacing: "0.2px"
|
|
97
|
+
},
|
|
98
|
+
"body-m-regular": {
|
|
99
|
+
fontFamily: `${fontFamily}`,
|
|
100
|
+
fontWeight: `${fontWeights_regular}`,
|
|
101
|
+
fontSize: `${fontSizes_m}px`,
|
|
102
|
+
lineHeight: "140%",
|
|
103
|
+
textDecoration: "none",
|
|
104
|
+
letterSpacing: "0.15px"
|
|
105
|
+
},
|
|
106
|
+
"body-m-medium": {
|
|
107
|
+
fontFamily: `${fontFamily}`,
|
|
108
|
+
fontWeight: `${fontWeights_medium}`,
|
|
109
|
+
fontSize: `${fontSizes_m}px`,
|
|
110
|
+
lineHeight: "140%",
|
|
111
|
+
textDecoration: "none",
|
|
112
|
+
letterSpacing: "0.15px"
|
|
113
|
+
},
|
|
114
|
+
"body-m-bold": {
|
|
115
|
+
fontFamily: `${fontFamily}`,
|
|
116
|
+
fontWeight: `${fontWeights_bold}`,
|
|
117
|
+
fontSize: `${fontSizes_m}px`,
|
|
118
|
+
lineHeight: "140%",
|
|
119
|
+
textDecoration: "none",
|
|
120
|
+
letterSpacing: "0.2px"
|
|
121
|
+
},
|
|
122
|
+
"body-l-regular": {
|
|
123
|
+
fontFamily: `${fontFamily}`,
|
|
124
|
+
fontWeight: `${fontWeights_regular}`,
|
|
125
|
+
fontSize: `${fontSizes_l}px`,
|
|
126
|
+
lineHeight: "162.5%",
|
|
127
|
+
textDecoration: "none",
|
|
128
|
+
letterSpacing: "0.1px"
|
|
129
|
+
},
|
|
130
|
+
"body-l-medium": {
|
|
131
|
+
fontFamily: `${fontFamily}`,
|
|
132
|
+
fontWeight: `${fontWeights_medium}`,
|
|
133
|
+
fontSize: `${fontSizes_l}px`,
|
|
134
|
+
lineHeight: "162.5%",
|
|
135
|
+
textDecoration: "none",
|
|
136
|
+
letterSpacing: "0.1px"
|
|
137
|
+
},
|
|
138
|
+
"body-l-bold": {
|
|
139
|
+
fontFamily: `${fontFamily}`,
|
|
140
|
+
fontWeight: `${fontWeights_bold}`,
|
|
141
|
+
fontSize: `${fontSizes_l}px`,
|
|
142
|
+
lineHeight: "162.5%",
|
|
143
|
+
textDecoration: "none",
|
|
144
|
+
letterSpacing: "0.15px"
|
|
145
|
+
},
|
|
146
|
+
"body-xl-regular": {
|
|
147
|
+
fontFamily: `${fontFamily}`,
|
|
148
|
+
fontWeight: `${fontWeights_regular}`,
|
|
149
|
+
fontSize: `${fontSizes_xl}px`,
|
|
150
|
+
lineHeight: "162.5%",
|
|
151
|
+
textDecoration: "none",
|
|
152
|
+
letterSpacing: "0.1px"
|
|
153
|
+
},
|
|
154
|
+
"body-xl-medium": {
|
|
155
|
+
fontFamily: `${fontFamily}`,
|
|
156
|
+
fontWeight: `${fontWeights_medium}`,
|
|
157
|
+
fontSize: `${fontSizes_xl}px`,
|
|
158
|
+
lineHeight: "162.5%",
|
|
159
|
+
textDecoration: "none",
|
|
160
|
+
letterSpacing: "0.1px"
|
|
161
|
+
},
|
|
162
|
+
"body-xl-bold": {
|
|
163
|
+
fontFamily: `${fontFamily}`,
|
|
164
|
+
fontWeight: `${fontWeights_bold}`,
|
|
165
|
+
fontSize: `${fontSizes_xl}px`,
|
|
166
|
+
lineHeight: "162.5%",
|
|
167
|
+
textDecoration: "none",
|
|
168
|
+
letterSpacing: "0.15px"
|
|
169
|
+
},
|
|
170
|
+
"heading-s-medium": {
|
|
171
|
+
fontFamily: `${fontFamily}`,
|
|
172
|
+
fontWeight: "500",
|
|
173
|
+
fontSize: "20px",
|
|
174
|
+
lineHeight: "140%",
|
|
175
|
+
textDecoration: "none",
|
|
176
|
+
letterSpacing: "0.2px"
|
|
177
|
+
},
|
|
178
|
+
"heading-s-bold": {
|
|
179
|
+
fontFamily: `${fontFamily}`,
|
|
180
|
+
fontWeight: "600",
|
|
181
|
+
fontSize: "20px",
|
|
182
|
+
lineHeight: "140%",
|
|
183
|
+
textDecoration: "none",
|
|
184
|
+
letterSpacing: "0.2px"
|
|
185
|
+
},
|
|
186
|
+
"heading-m-medium": {
|
|
187
|
+
fontFamily: `${fontFamily}`,
|
|
188
|
+
fontWeight: "500",
|
|
189
|
+
fontSize: "24px",
|
|
190
|
+
lineHeight: "116.67%",
|
|
191
|
+
textDecoration: "none",
|
|
192
|
+
letterSpacing: "0.2px"
|
|
193
|
+
},
|
|
194
|
+
"heading-m-bold": {
|
|
195
|
+
fontFamily: `${fontFamily}`,
|
|
196
|
+
fontWeight: "600",
|
|
197
|
+
fontSize: "24px",
|
|
198
|
+
lineHeight: "116.67%",
|
|
199
|
+
textDecoration: "none",
|
|
200
|
+
letterSpacing: "0.2px"
|
|
201
|
+
},
|
|
202
|
+
"heading-l-medium": {
|
|
203
|
+
fontFamily: `${fontFamily}`,
|
|
204
|
+
fontWeight: "500",
|
|
205
|
+
fontSize: "30px",
|
|
206
|
+
lineHeight: "128.57%",
|
|
207
|
+
textDecoration: "none",
|
|
208
|
+
letterSpacing: "0.2px"
|
|
209
|
+
},
|
|
210
|
+
"heading-l-bold": {
|
|
211
|
+
fontFamily: `${fontFamily}`,
|
|
212
|
+
fontWeight: "600",
|
|
213
|
+
fontSize: "30px",
|
|
214
|
+
lineHeight: "128.57%",
|
|
215
|
+
textDecoration: "none",
|
|
216
|
+
letterSpacing: "0.2px"
|
|
217
|
+
},
|
|
218
|
+
"heading-xl-medium": {
|
|
219
|
+
fontFamily: `${fontFamily}`,
|
|
220
|
+
fontWeight: "500",
|
|
221
|
+
fontSize: "36px",
|
|
222
|
+
lineHeight: "128.57%",
|
|
223
|
+
textDecoration: "none",
|
|
224
|
+
letterSpacing: "0.2px"
|
|
225
|
+
},
|
|
226
|
+
"heading-xl-bold": {
|
|
227
|
+
fontFamily: `${fontFamily}`,
|
|
228
|
+
fontWeight: "600",
|
|
229
|
+
fontSize: "36px",
|
|
230
|
+
lineHeight: "128.57%",
|
|
231
|
+
textDecoration: "none",
|
|
232
|
+
letterSpacing: "0.2px"
|
|
233
|
+
}
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
export { type, typeCssClasses, typeStyles };
|