@gobolt/genesis 0.0.10 → 0.1.0
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/README.md +8 -2
- package/dist/AntdIcon-nCNB0J1E.js +192 -0
- package/dist/CheckCircleFilled-BKgizvyl.js +13 -0
- package/dist/{CheckOutlined-CeTKr6II.js → CheckOutlined-cEBrx_Ag.js} +2 -2
- package/dist/ClockCircleOutlined-BaXQuLIn.js +13 -0
- package/dist/{CloseCircleFilled-DXCxlIQL.js → CloseCircleFilled-B9e7yFwo.js} +2 -2
- package/dist/{CloseOutlined-ClXDNn82.js → CloseOutlined-ogxnm7Oy.js} +2 -2
- package/dist/{Compact-CGY560JF.js → Compact-Du9689ax.js} +41 -44
- package/dist/{ContextIsolator-D5x2Ih51.js → ContextIsolator-BmfhJgG0.js} +2 -2
- package/dist/{PurePanel-BqPLRtc2.js → DownOutlined-Dcq69ZKM.js} +42 -40
- package/dist/{index-C8haFnXI.js → EllipsisOutlined-DGMph0Bj.js} +138 -135
- package/dist/ExclamationCircleFilled-BHELVsTg.js +13 -0
- package/dist/Keyframes-C9_aCDvn.js +17 -0
- package/dist/{LoadingOutlined-8EnJdZ7I.js → LoadingOutlined-C1qu6ymP.js} +6 -6
- package/dist/MinusCircleOutlined-Shz0RRQV.js +37 -0
- package/dist/{Overflow-PBZD-PFm.js → Overflow-DWf4XIal.js} +62 -61
- package/dist/{SearchOutlined-BP3Z2K6j.js → SearchOutlined-DNj-7b_h.js} +2 -2
- package/dist/Skeleton-BVN4pcVe.js +560 -0
- package/dist/TextArea-Bkf9hh7l.js +708 -0
- package/dist/Typography-CoZ5qD-t.js +705 -0
- package/dist/_baseIsEqual-L0-w1QRI.js +598 -0
- package/dist/_commonjsHelpers-BkfeUUK-.js +28 -0
- package/dist/asyncToGenerator-CKP9bEZn.js +312 -0
- package/dist/{button-CDQgO1OK.js → button-BwqpCxVM.js} +127 -116
- package/dist/clsx-OuTLNxxd.js +16 -0
- package/dist/components/Avatar/Avatar.d.ts +12 -0
- package/dist/components/Avatar/Avatar.js +61 -0
- package/dist/components/Avatar/__stories__/Avatar.stories.d.ts +8 -0
- package/dist/components/Avatar/__tests__/Avatar.test.d.ts +1 -0
- package/dist/components/Avatar/__tests__/Avatar.test.js +17 -0
- package/dist/components/Avatar/index.d.ts +2 -0
- package/dist/components/Avatar/index.js +4 -0
- package/dist/components/Avatar/styles.d.ts +18 -0
- package/dist/components/Avatar/styles.js +326 -0
- package/dist/components/Badge/Badge.d.ts +5 -3
- package/dist/components/Badge/Badge.js +67 -100
- package/dist/components/Badge/__stories__/Badge.stories.d.ts +5 -4
- package/dist/components/Badge/__tests__/Badge.test.js +9 -10
- package/dist/components/Badge/styles.d.ts +12 -3
- package/dist/components/Badge/styles.js +30 -27
- package/dist/components/Breadcrumb/Breadcrumb.js +2 -2
- package/dist/components/Breadcrumb/__tests__/Breadcrumb.test.js +1 -1
- package/dist/components/Breadcrumb/styles.js +239 -2260
- package/dist/components/Button/Button.d.ts +4 -3
- package/dist/components/Button/Button.js +10 -6
- package/dist/components/Button/__stories__/Button.stories.d.ts +3 -0
- package/dist/components/Button/__tests__/Button.test.js +1 -1
- package/dist/components/Button/styles.d.ts +2 -2
- package/dist/components/Button/styles.js +20 -17
- package/dist/components/Card/Card.d.ts +9 -0
- package/dist/components/Card/Card.js +16 -0
- package/dist/components/Card/__stories__/Card.stories.d.ts +7 -0
- package/dist/components/Card/__tests__/Card.test.d.ts +1 -0
- package/dist/components/Card/__tests__/Card.test.js +16 -0
- package/dist/components/Card/index.d.ts +2 -0
- package/dist/components/Card/index.js +4 -0
- package/dist/components/Card/styles.d.ts +16 -0
- package/dist/components/Card/styles.js +12 -0
- package/dist/components/Checkbox/Checkbox.d.ts +1 -2
- package/dist/components/Checkbox/Checkbox.js +28 -16
- package/dist/components/Checkbox/__tests__/Checkbox.test.js +1 -1
- package/dist/components/Checkbox/styles.js +22 -457
- package/dist/components/Dashboard/Dashboard.d.ts +5 -0
- package/dist/components/Dashboard/Dashboard.js +5 -0
- package/dist/components/Dashboard/__mocks__/dashboard-data.d.ts +14 -0
- package/dist/components/Dashboard/__mocks__/dashboard-data.js +186 -0
- package/dist/components/Dashboard/__stories__/Dashboard.stories.d.ts +7 -0
- package/dist/components/Dashboard/__stories__/DashboardLayoutContent.d.ts +2 -0
- package/dist/components/Dashboard/__stories__/DashboardLayoutContent.js +948 -0
- package/dist/components/Dashboard/__stories__/DashboardLayoutHeader.d.ts +2 -0
- package/dist/components/Dashboard/__stories__/DashboardLayoutHeader.js +85 -0
- package/dist/components/Dashboard/__stories__/DashboardLayoutStory.d.ts +13 -0
- package/dist/components/Dashboard/__stories__/DashboardLayoutStory.js +22 -0
- package/dist/components/Dashboard/__stories__/charts/LineChart.d.ts +12 -0
- package/dist/components/Dashboard/__stories__/charts/LineChart.js +536 -0
- package/dist/components/Dashboard/__tests__/Dashboard.test.d.ts +1 -0
- package/dist/components/Dashboard/__tests__/Dashboard.test.js +16 -0
- package/dist/components/Dashboard/index.d.ts +2 -0
- package/dist/components/Dashboard/index.js +4 -0
- package/dist/components/Dashboard/styles.d.ts +14 -0
- package/dist/components/Dashboard/styles.js +11 -0
- package/dist/components/DatePicker/DatePicker.d.ts +6 -0
- package/dist/components/DatePicker/DatePicker.js +5 -0
- package/dist/components/DatePicker/__stories__/DatePicker.stories.d.ts +10 -0
- package/dist/components/DatePicker/__tests__/DatePicker.test.d.ts +1 -0
- package/dist/components/DatePicker/__tests__/DatePicker.test.js +19 -0
- package/dist/components/DatePicker/index.d.ts +2 -0
- package/dist/components/DatePicker/index.js +4 -0
- package/dist/components/DateRangePicker/DateRangePicker.d.ts +5 -0
- package/dist/components/DateRangePicker/DateRangePicker.js +5 -0
- package/dist/components/DateRangePicker/__stories__/DateRangePicker.stories.d.ts +9 -0
- package/dist/components/DateRangePicker/__tests__/DateRangePicker.test.d.ts +1 -0
- package/dist/components/DateRangePicker/__tests__/DateRangePicker.test.js +23 -0
- package/dist/components/DateRangePicker/index.d.ts +2 -0
- package/dist/components/DateRangePicker/index.js +4 -0
- package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +19 -0
- package/dist/components/ErrorBoundary/ErrorBoundary.js +72 -0
- package/dist/components/ErrorBoundary/__stories__/ErrorBoundary.stories.d.ts +8 -0
- package/dist/components/ErrorBoundary/__tests__/ErrorBoundary.test.d.ts +1 -0
- package/dist/components/ErrorBoundary/__tests__/ErrorBoundary.test.js +25 -0
- package/dist/components/ErrorBoundary/index.d.ts +2 -0
- package/dist/components/ErrorBoundary/index.js +4 -0
- package/dist/components/ErrorBoundary/styles.d.ts +14 -0
- package/dist/components/ErrorBoundary/styles.js +11 -0
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.d.ts +2 -2
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.js +33 -18
- package/dist/components/ErrorBoundaryFallback/__stories__/ErrorBoundaryFallback.stories.d.ts +1 -1
- package/dist/components/ErrorBoundaryFallback/styles.js +17 -15
- package/dist/components/Form/Form.js +3 -3
- package/dist/components/Form/__stories__/FormStory.js +127 -50
- package/dist/components/Form/__tests__/form.test.js +2 -2
- package/dist/components/Form/index.js +1 -1
- package/dist/components/Form/styles.js +1 -1
- package/dist/components/Glyph/Glyph.d.ts +4 -0
- package/dist/components/Glyph/Glyph.js +9 -0
- package/dist/components/Glyph/__stories__/Glyph.stories.d.ts +7 -0
- package/dist/components/Glyph/index.d.ts +2 -0
- package/dist/components/Glyph/index.js +4 -0
- package/dist/components/Glyph/styles.d.ts +14 -0
- package/dist/components/Glyph/styles.js +11 -0
- package/dist/components/Input/Input.d.ts +1 -2
- package/dist/components/Input/Input.js +14 -10
- package/dist/components/Input/__tests__/Input.test.js +1 -1
- package/dist/components/Input/styles.js +58 -466
- package/dist/components/Layout/Content/Content.d.ts +11 -0
- package/dist/components/Layout/Content/Content.js +32 -0
- package/dist/components/Layout/Content/ResponsiveContent.d.ts +7 -0
- package/dist/components/Layout/Content/ResponsiveContent.js +81 -0
- package/dist/components/Layout/Content/index.d.ts +2 -0
- package/dist/components/Layout/Content/index.js +4 -0
- package/dist/components/Layout/Content/styles.d.ts +11 -0
- package/dist/components/Layout/Content/styles.js +16 -0
- package/dist/components/Layout/Layout.d.ts +8 -0
- package/dist/components/Layout/Layout.js +6 -0
- package/dist/components/Layout/MainLayout/MainLayout.d.ts +10 -0
- package/dist/components/Layout/MainLayout/MainLayout.js +28 -0
- package/dist/components/Layout/MainLayout/__stories__/MainLayout.stories.d.ts +9 -0
- package/dist/components/Layout/MainLayout/index.d.ts +2 -0
- package/dist/components/Layout/MainLayout/index.js +4 -0
- package/dist/components/Layout/MainLayout/styles.d.ts +4 -0
- package/dist/components/Layout/MainLayout/styles.js +69 -0
- package/dist/components/Layout/__stories__/Layout.stories.d.ts +7 -0
- package/dist/components/Layout/__tests__/Layout.test.d.ts +1 -0
- package/dist/components/Layout/__tests__/Layout.test.js +14 -0
- package/dist/components/Layout/index.d.ts +2 -0
- package/dist/components/Layout/index.js +4 -0
- package/dist/components/Message/Message.d.ts +6 -4
- package/dist/components/Message/Message.js +70 -43
- package/dist/components/Message/__tests__/Message.test.js +1 -1
- package/dist/components/Message/styles.d.ts +1 -0
- package/dist/components/Message/styles.js +15 -11
- package/dist/components/Notification/Notification.js +145 -120
- package/dist/components/Notification/NotificationBadge/NotificationBadge.d.ts +6 -0
- package/dist/components/Notification/NotificationBadge/NotificationBadge.js +49 -0
- package/dist/components/Notification/NotificationBadge/__stories__/NotificationBadge.stories.d.ts +13 -0
- package/dist/components/Notification/NotificationBadge/__tests__/NotificationBadge.test.d.ts +1 -0
- package/dist/components/Notification/NotificationBadge/__tests__/NotificationBadge.test.js +18 -0
- package/dist/components/Notification/NotificationBadge/index.d.ts +2 -0
- package/dist/components/Notification/NotificationBadge/index.js +4 -0
- package/dist/components/Notification/NotificationBadge/styles.d.ts +3 -0
- package/dist/components/Notification/NotificationBadge/styles.js +34 -0
- package/dist/components/Notification/__tests__/Notification.test.js +1 -1
- package/dist/components/Notification/styles.d.ts +1 -1
- package/dist/components/Notification/styles.js +1 -1
- package/dist/components/Popover/Popover.d.ts +10 -0
- package/dist/components/Popover/Popover.js +21 -0
- package/dist/components/Popover/__stories__/Popover.stories.d.ts +7 -0
- package/dist/components/Popover/__tests__/Popover.test.d.ts +1 -0
- package/dist/components/Popover/__tests__/Popover.test.js +40 -0
- package/dist/components/Popover/index.d.ts +2 -0
- package/dist/components/Popover/index.js +4 -0
- package/dist/components/Popover/styles.d.ts +15 -0
- package/dist/components/Popover/styles.js +6 -0
- package/dist/components/Progress/Progress.d.ts +18 -0
- package/dist/components/Progress/Progress.js +91 -0
- package/dist/components/Progress/Progress.util.d.ts +4 -0
- package/dist/components/Progress/Progress.util.js +62 -0
- package/dist/components/Progress/ProgressText.d.ts +11 -0
- package/dist/components/Progress/ProgressText.js +67 -0
- package/dist/components/Progress/__stories__/Progress.stories.d.ts +12 -0
- package/dist/components/Progress/__tests__/Progress.test.d.ts +1 -0
- package/dist/components/Progress/__tests__/Progress.test.js +21 -0
- package/dist/components/Progress/index.d.ts +2 -0
- package/dist/components/Progress/index.js +4 -0
- package/dist/components/Progress/styles.d.ts +17 -0
- package/dist/components/Progress/styles.js +793 -0
- package/dist/components/Radio/Radio.js +22 -6
- package/dist/components/Radio/RadioGroup.js +1 -1
- package/dist/components/Radio/__tests__/RadioGroup.test.js +1 -1
- package/dist/components/Radio/index.d.ts +1 -0
- package/dist/components/Row/Row.d.ts +14 -0
- package/dist/components/Row/Row.js +38 -0
- package/dist/components/Row/RowActions/RowActions.d.ts +9 -0
- package/dist/components/Row/RowActions/RowActions.js +59 -0
- package/dist/components/Row/RowActions/styles.d.ts +2 -0
- package/dist/components/Row/RowActions/styles.js +32 -0
- package/dist/components/Row/RowLabelValue/RowLabelValue.d.ts +11 -0
- package/dist/components/Row/RowLabelValue/RowLabelValue.js +62 -0
- package/dist/components/Row/RowLabelValue/RowSkeleton.d.ts +3 -0
- package/dist/components/Row/RowLabelValue/RowSkeleton.js +24 -0
- package/dist/components/Row/RowLabelValue/styles.d.ts +15 -0
- package/dist/components/Row/RowLabelValue/styles.js +25 -0
- package/dist/components/Row/__stories__/Row.stories.d.ts +13 -0
- package/dist/components/Row/__tests__/Row.test.d.ts +1 -0
- package/dist/components/Row/__tests__/Row.test.js +16 -0
- package/dist/components/Row/index.d.ts +2 -0
- package/dist/components/Row/index.js +4 -0
- package/dist/components/Row/styles.d.ts +15 -0
- package/dist/components/Row/styles.js +15 -0
- package/dist/components/SegmentedControls/SegmentedControls.d.ts +12 -0
- package/dist/components/SegmentedControls/SegmentedControls.js +26 -0
- package/dist/components/SegmentedControls/__stories__/SegmentedControls.stories.d.ts +9 -0
- package/dist/components/SegmentedControls/__tests__/SegmentedControls.test.d.ts +1 -0
- package/dist/components/SegmentedControls/__tests__/SegmentedControls.test.js +24 -0
- package/dist/components/SegmentedControls/index.d.ts +2 -0
- package/dist/components/SegmentedControls/index.js +4 -0
- package/dist/components/SegmentedControls/styles.d.ts +12 -0
- package/dist/components/SegmentedControls/styles.js +511 -0
- package/dist/components/Select/Select.d.ts +2 -4
- package/dist/components/Select/Select.js +12 -11
- package/dist/components/Select/__tests__/Select.test.js +1 -1
- package/dist/components/Select/styles.js +39 -3654
- package/dist/components/Shapes/Shapes.d.ts +6 -0
- package/dist/components/Shapes/Shapes.js +8 -0
- package/dist/components/Shapes/__stories__/Shapes.stories.d.ts +9 -0
- package/dist/components/Shapes/__tests__/Shapes.test.d.ts +1 -0
- package/dist/components/Shapes/__tests__/Shapes.test.js +16 -0
- package/dist/components/Shapes/index.d.ts +2 -0
- package/dist/components/Shapes/index.js +4 -0
- package/dist/components/Shapes/variants/Circle.d.ts +5 -0
- package/dist/components/Shapes/variants/Circle.js +23 -0
- package/dist/components/Shapes/variants/Rectangle.d.ts +5 -0
- package/dist/components/Shapes/variants/Rectangle.js +23 -0
- package/dist/components/Shapes/variants/Triangle.d.ts +5 -0
- package/dist/components/Shapes/variants/Triangle.js +23 -0
- package/dist/components/Switch/Switch.d.ts +9 -0
- package/dist/components/Switch/Switch.js +22 -0
- package/dist/components/Switch/__stories__/Switch.stories.d.ts +8 -0
- package/dist/components/Switch/__tests__/Switch.test.d.ts +1 -0
- package/dist/components/Switch/__tests__/Switch.test.js +25 -0
- package/dist/components/Switch/index.d.ts +2 -0
- package/dist/components/Switch/index.js +4 -0
- package/dist/components/Switch/styles.d.ts +9 -0
- package/dist/components/Switch/styles.js +456 -0
- package/dist/components/Table/Table.d.ts +15 -0
- package/dist/components/Table/Table.js +23 -0
- package/dist/components/Table/__mocks__/table-mocks.d.ts +20 -0
- package/dist/components/Table/__mocks__/table-mocks.js +321 -0
- package/dist/components/Table/__stories__/Table.stories.d.ts +7 -0
- package/dist/components/Table/__tests__/Table.test.d.ts +1 -0
- package/dist/components/Table/__tests__/Table.test.js +34 -0
- package/dist/components/Table/index.d.ts +2 -0
- package/dist/components/Table/index.js +4 -0
- package/dist/components/Table/styles.d.ts +8 -0
- package/dist/components/Table/styles.js +6 -0
- package/dist/components/Tabs/Tabs.d.ts +10 -0
- package/dist/components/Tabs/Tabs.js +23 -0
- package/dist/components/Tabs/__stories__/Tabs.stories.d.ts +8 -0
- package/dist/components/Tabs/__tests__/Tabs.test.d.ts +1 -0
- package/dist/components/Tabs/__tests__/Tabs.test.js +37 -0
- package/dist/components/Tabs/index.d.ts +2 -0
- package/dist/components/Tabs/index.js +4 -0
- package/dist/components/Tabs/styles.d.ts +12 -0
- package/dist/components/Tabs/styles.js +102 -0
- package/dist/components/Tile/Tile.d.ts +10 -0
- package/dist/components/Tile/Tile.js +21 -0
- package/dist/components/Tile/__stories__/Tile.stories.d.ts +7 -0
- package/dist/components/Tile/__tests__/Tile.test.d.ts +1 -0
- package/dist/components/Tile/__tests__/Tile.test.js +21 -0
- package/dist/components/Tile/index.d.ts +2 -0
- package/dist/components/Tile/index.js +4 -0
- package/dist/components/Tile/styles.d.ts +11 -0
- package/dist/components/Tile/styles.js +12 -0
- package/dist/components/Toast/Toast.js +23 -6
- package/dist/components/Toast/__tests__/Toast.test.js +2 -2
- package/dist/components/Toast/index.js +1 -1
- package/dist/components/Toast/styles.d.ts +0 -1
- package/dist/components/Toast/styles.js +14 -23
- package/dist/components/Tooltip/Tooltip.d.ts +7 -0
- package/dist/components/Tooltip/Tooltip.js +50 -0
- package/dist/components/Tooltip/__stories__/Tooltip.stories.d.ts +7 -0
- package/dist/components/Tooltip/__tests__/Tooltip.test.d.ts +1 -0
- package/dist/components/Tooltip/__tests__/Tooltip.test.js +25 -0
- package/dist/components/Tooltip/index.d.ts +2 -0
- package/dist/components/Tooltip/index.js +4 -0
- package/dist/components/Tooltip/styles.d.ts +20 -0
- package/dist/components/Tooltip/styles.js +11 -0
- package/dist/components/Typography/Typography.d.ts +5 -1
- package/dist/components/Typography/Typography.js +2 -2
- package/dist/components/Typography/__stories__/Typography.stories.d.ts +1 -0
- package/dist/components/Typography/__tests__/Typography.test.js +2 -2
- package/dist/components/Typography/index.js +1 -1
- package/dist/components/Typography/styles.d.ts +1 -0
- package/dist/components/Typography/styles.js +53 -17
- package/dist/components/index.d.ts +35 -1
- package/dist/components/index.js +58 -24
- package/dist/constants/index.d.ts +4 -0
- package/dist/constants/index.js +4 -2
- package/dist/{context-BMW3aJEf.js → context-DIFtNa4d.js} +230 -233
- package/dist/dropdown-Dp_PTQ2u.js +2045 -0
- package/dist/generateCategoricalChart-7ceYaiZ2.js +15597 -0
- package/dist/genesis/GenesisThemeBreakdown.js +101 -43
- package/dist/genesis/labs/Lab.stories.d.ts +6 -0
- package/dist/genesis/styles.js +7 -2923
- package/dist/iconBase-LROS5hdG.js +112 -0
- package/dist/index-BPVue1Yd.js +445 -0
- package/dist/{index-bKlRxQp4.js → index-BQM5OniU.js} +12 -12
- package/dist/index-BRUI9igj.js +11 -0
- package/dist/index-B_1Ge8na.js +1846 -0
- package/dist/{index-oK7z6jnz.js → index-BbTV2Cw5.js} +8641 -8798
- package/dist/index-BeGv28kJ.js +5173 -0
- package/dist/{index-1CBpubM3.js → index-BpZSuIUV.js} +45 -42
- package/dist/index-BvOLXELm.js +102 -0
- package/dist/index-CLSrpQRW.js +416 -0
- package/dist/index-CbVOl2U6.js +288 -0
- package/dist/index-D0U6r5O7.js +780 -0
- package/dist/index-DEu2PVzQ.js +538 -0
- package/dist/index-DLdU7Tpd.js +183 -0
- package/dist/index-DNQ-jnBx.js +3321 -0
- package/dist/index-DOsPeIWJ.js +1000 -0
- package/dist/{index-C0SmxWLS.js → index-DRGX1Wem.js} +136 -143
- package/dist/index-DWjq9XYj.js +899 -0
- package/dist/index.js +65 -31
- package/dist/interface/address.d.ts +10 -0
- package/dist/interface/address.js +1 -0
- package/dist/interface/appointment.d.ts +57 -0
- package/dist/interface/appointment.js +5 -0
- package/dist/interface/appointmentV2.d.ts +65 -0
- package/dist/interface/appointmentV2.js +1 -0
- package/dist/interface/appointmentsState.d.ts +21 -0
- package/dist/interface/appointmentsState.js +1 -0
- package/dist/interface/common.d.ts +2 -0
- package/dist/interface/common.js +1 -0
- package/dist/interface/completionData.d.ts +18 -0
- package/dist/interface/completionData.js +1 -0
- package/dist/interface/deliveryPartner.d.ts +25 -0
- package/dist/interface/deliveryPartner.js +1 -0
- package/dist/interface/organization.d.ts +9 -0
- package/dist/interface/organization.js +1 -0
- package/dist/interface/pagination.d.ts +8 -0
- package/dist/interface/pagination.js +1 -0
- package/dist/interface/roles.d.ts +9 -0
- package/dist/interface/roles.js +1 -0
- package/dist/interface/route.d.ts +73 -0
- package/dist/interface/route.js +1 -0
- package/dist/interface/routeAnalysis.d.ts +108 -0
- package/dist/interface/routeAnalysis.js +1 -0
- package/dist/interface/routeAutomationJob.d.ts +95 -0
- package/dist/interface/routeAutomationJob.js +10 -0
- package/dist/interface/routeAutomationLog.d.ts +10 -0
- package/dist/interface/routeAutomationLog.js +1 -0
- package/dist/interface/routeEvent.d.ts +55 -0
- package/dist/interface/routeEvent.js +5 -0
- package/dist/interface/serviceArea.d.ts +18 -0
- package/dist/interface/serviceArea.js +1 -0
- package/dist/interface/util.d.ts +3 -0
- package/dist/interface/util.js +1 -0
- package/dist/interface/vehicle.d.ts +120 -0
- package/dist/interface/vehicle.js +1 -0
- package/dist/interface/workOrder.d.ts +22 -0
- package/dist/interface/workOrder.js +1 -0
- package/dist/isVisible-D3-B85BJ.js +22 -0
- package/dist/{magic-string.es-D2FWSwU3.js → magic-string.es-BKBb7z-1.js} +1 -1
- package/dist/motion-CUN72xsH.js +33 -0
- package/dist/omit-B_u6A-HL.js +9 -0
- package/dist/{pickAttrs-B0YTfcV1.js → pickAttrs-CleuMJFR.js} +1 -1
- package/dist/{warning-C63HNL9U.js → presets-Djh_L_6R.js} +333 -356
- package/dist/providers/BreakpointThemeProvider.d.ts +9 -0
- package/dist/providers/BreakpointThemeProvider.js +21 -0
- package/dist/providers/GenesisProvider.js +3 -3
- package/dist/providers/ToastProvider.js +22 -6
- package/dist/providers/index.js +1 -1
- package/dist/providers/useGenesis.js +2 -2
- package/dist/responsiveObserver-dCkpy7Cb.js +73 -0
- package/dist/roundedArrow-DI_Q-xdU.js +65 -0
- package/dist/setup-CUbCc8fQ.js +24706 -0
- package/dist/setup.types-dBtAXXGp.js +8824 -0
- package/dist/shadow-BoMGMNn3.js +13 -0
- package/dist/styleChecker-Cotu61d0.js +21 -0
- package/dist/styles/design-tokens/border-tokens/BorderTokenList.js +29 -13
- package/dist/styles/design-tokens/sizing-tokens/SizingTokenList.d.ts +1 -3
- package/dist/styles/design-tokens/sizing-tokens/SizingTokenList.js +37 -16
- package/dist/styles/design-tokens/sizing-tokens/index.stories.d.ts +0 -1
- package/dist/styles/theme/genesis-theme.js +398 -331
- package/dist/styles/theme/genesis-theme.types.d.ts +53 -12
- package/dist/styles/theme/theme-tree/ThemeTree.d.ts +1 -0
- package/dist/styles/theme/theme-tree/ThemeTree.js +1652 -0
- package/dist/styles/theme/theme-tree/ThemeTree.stories.d.ts +6 -0
- package/dist/styles-CWdUpZom.js +289 -0
- package/dist/{styles-CT_fyXBd.js → styles-D1vKDy9V.js} +587 -643
- package/dist/styles-qerRs7Rn.js +9196 -0
- package/dist/test/setup.d.ts +2 -3
- package/dist/test/setup.js +87 -4
- package/dist/test/setup.types.d.ts +7 -0
- package/dist/test/setup.types.js +1 -0
- package/dist/toArray-U3Az44CO.js +11 -0
- package/dist/useBreakpoint-TkMv121M.js +22 -0
- package/dist/useCSSVarCls-Dau77fzS.js +11 -0
- package/dist/useIcons-Ck4JP1m9.js +321 -0
- package/dist/useId-D2tzlufo.js +26 -0
- package/dist/useLocale-CTfNpakL.js +16 -0
- package/dist/useMergedState-D6toxSxh.js +23 -0
- package/dist/useSize-DSq4r6zy.js +9 -0
- package/dist/{useVariants-DvhXfgJY.js → useVariants-DrLzUVLU.js} +3 -3
- package/dist/useZIndex-DhyHuZTN.js +44 -0
- package/dist/utils/icon-util.d.ts +2 -0
- package/dist/utils/icon-util.js +89 -0
- package/package.json +27 -15
- package/dist/AntdIcon-BoLh1dP8.js +0 -202
- package/dist/ExclamationCircleFilled-C0Kj5KQV.js +0 -21
- package/dist/TextArea-DKwCct3i.js +0 -1690
- package/dist/Typography-aGoDUl4R.js +0 -710
- package/dist/index-BZAhCB_K.js +0 -97
- package/dist/index-CfDY25LP.js +0 -873
- package/dist/index-DPW8XdWj.js +0 -952
- package/dist/isVisible-A-IfeFoT.js +0 -367
- package/dist/providers/ThemeProvider.d.ts +0 -9
- package/dist/providers/ThemeProvider.js +0 -21
- package/dist/setup-BvfREoHl.js +0 -33891
- package/dist/useLocale-DT-z_vQ6.js +0 -16
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/ASN.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/ASN.js +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Appointment.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Appointment.js +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Inventory.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Inventory.js +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Parcel.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Parcel.js +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Product.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Product.js +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Route.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Route.js +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Shipment.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/Shipment.js +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/ShoppingCart.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/ShoppingCart.js +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/System.d.ts +0 -0
- /package/dist/components/{Badge → Notification/NotificationBadge}/icons/System.js +0 -0
|
@@ -1,91 +1,91 @@
|
|
|
1
|
-
import { Size1 as
|
|
2
|
-
const
|
|
1
|
+
import { Size1 as s, Size2 as y, Size3 as h, Size4 as u, Size5 as B, Size6 as E, Size7 as w, Size8 as D, Size10 as x, Size12 as A, Size13 as M, Size14 as N, Size16 as R, Size18 as G, Size20 as L, Size24 as O, Size27 as P, Size28 as Y, Size30 as X, Size32 as I, Size34 as K, Size35 as V, Size39 as j, Size43 as q, Size50 as J, Size64 as Q, Size05 as U, Size15 as Z, Size025 as _, Size25 as $, ColorYellow500 as f, ColorSky700 as S, ColorSky900 as C, ColorGray100 as g, ColorGrayWhite as z, ColorGray500 as v, ColorGray700 as b, ColorSky800 as t, ColorGray800 as d, ColorYellow800 as n, ColorYellow900 as p, ColorSky300 as F, ColorSky400 as m, BorderRadiusNone as ee, BorderRadiusXs as re, BorderRadiusSm as oe, BorderRadiusMd as ie, BorderRadiusLg as te, BorderRadiusXl as ne, BorderRadiusXxl as ae, BorderRadiusXxxl as le, BorderRadiusRounded as ge, TypographyPrimaryFontFamily as ce, ColorRed100 as de, ColorRed200 as pe, ColorRed300 as se, ColorRed400 as ye, ColorRed500 as he, ColorRed600 as ue, ColorRed700 as fe, ColorRed800 as Se, ColorRed900 as Ce, ColorOrange100 as ze, ColorOrange200 as ve, ColorOrange300 as be, ColorOrange400 as Fe, ColorOrange500 as me, ColorOrange600 as He, ColorOrange700 as We, ColorOrange800 as ke, ColorOrange900 as Te, ColorYellow100 as Be, ColorYellow200 as Ee, ColorYellow300 as we, ColorYellow400 as De, ColorYellow600 as xe, ColorYellow700 as Ae, ColorGreen100 as Me, ColorGreen200 as Ne, ColorGreen300 as Re, ColorGreen400 as Ge, ColorGreen500 as Le, ColorGreen600 as Oe, ColorGreen700 as Pe, ColorGreen800 as Ye, ColorGreen900 as Xe, ColorSky100 as Ie, ColorSky200 as Ke, ColorSky500 as Ve, ColorSky600 as je, ColorBlue100 as qe, ColorBlue200 as Je, ColorBlue300 as Qe, ColorBlue400 as Ue, ColorBlue500 as Ze, ColorBlue600 as _e, ColorBlue700 as $e, ColorBlue800 as er, ColorBlue900 as rr, ColorPurple100 as or, ColorPurple200 as ir, ColorPurple300 as tr, ColorPurple400 as nr, ColorPurple500 as ar, ColorPurple600 as lr, ColorPurple700 as gr, ColorPurple800 as cr, ColorPurple900 as dr, ColorGray200 as pr, ColorGray300 as sr, ColorGray400 as yr, ColorGray600 as hr, ColorGray900 as ur, ColorGrayBlack as fr, TypographyWideFontSizeDisplay1 as Sr, TypographyWideFontSizeDisplay2 as Cr, TypographyWideFontSizeDisplay3 as zr, TypographyWideFontSizeHeading1 as vr, TypographyWideFontSizeHeading2 as br, TypographyWideFontSizeHeading3 as Fr, TypographyWideFontSizeSubHeading1 as mr, TypographyWideFontSizeSubHeading2 as Hr, TypographyWideFontSizeSubHeading3 as Wr, TypographyWideFontSizeBody1 as kr, TypographyWideFontSizeBody2 as Tr, TypographyWideFontSizeBody3 as Br, TypographyWideFontSizeBody4 as Er, TypographyWideFontSizeBody5 as wr, TypographyWideFontSizeMessage as Dr, TypographyWideFontSizeOverline1 as xr, TypographyWideFontSizeOverline2 as Ar, TypographyWideFontSizeOverline3 as Mr, TypographyWideFontSizeLabel1 as Nr, TypographyWideFontSizeLabel2 as Rr, TypographyWideFontSizeLabel3 as Gr, TypographyWideFontSizeLink1 as Lr, TypographyWideFontSizeLink2 as Or, TypographyWideFontSizeLink3 as Pr, TypographyWideFontSizeDigits1 as Yr, TypographyWideFontSizeDigits2 as Xr, TypographyWideFontSizeDigits3 as Ir, TypographyMediumFontSizeDisplay1 as Kr, TypographyMediumFontSizeDisplay2 as Vr, TypographyMediumFontSizeDisplay3 as jr, TypographyMediumFontSizeHeading1 as qr, TypographyMediumFontSizeHeading2 as Jr, TypographyMediumFontSizeHeading3 as Qr, TypographyMediumFontSizeSubHeading1 as Ur, TypographyMediumFontSizeSubHeading2 as Zr, TypographyMediumFontSizeSubHeading3 as _r, TypographyMediumFontSizeBody1 as $r, TypographyMediumFontSizeBody2 as eo, TypographyMediumFontSizeBody3 as ro, TypographyMediumFontSizeBody4 as oo, TypographyMediumFontSizeBody5 as io, TypographyMediumFontSizeMessage as to, TypographyMediumFontSizeOverline1 as no, TypographyMediumFontSizeOverline2 as ao, TypographyMediumFontSizeOverline3 as lo, TypographyMediumFontSizeLabel1 as go, TypographyMediumFontSizeLabel2 as co, TypographyMediumFontSizeLabel3 as po, TypographyMediumFontSizeLink1 as so, TypographyMediumFontSizeLink2 as yo, TypographyMediumFontSizeLink3 as ho, TypographyMediumFontSizeDigits1 as uo, TypographyMediumFontSizeDigits2 as fo, TypographyMediumFontSizeDigits3 as So, TypographyNarrowFontSizeDisplay1 as Co, TypographyNarrowFontSizeDisplay2 as zo, TypographyNarrowFontSizeDisplay3 as vo, TypographyNarrowFontSizeHeading1 as bo, TypographyNarrowFontSizeHeading2 as Fo, TypographyNarrowFontSizeHeading3 as mo, TypographyNarrowFontSizeSubHeading1 as Ho, TypographyNarrowFontSizeSubHeading2 as Wo, TypographyNarrowFontSizeSubHeading3 as ko, TypographyNarrowFontSizeBody1 as To, TypographyNarrowFontSizeBody2 as Bo, TypographyNarrowFontSizeBody3 as Eo, TypographyNarrowFontSizeBody4 as wo, TypographyNarrowFontSizeBody5 as Do, TypographyNarrowFontSizeMessage as xo, TypographyNarrowFontSizeOverline1 as Ao, TypographyNarrowFontSizeOverline2 as Mo, TypographyNarrowFontSizeOverline3 as No, TypographyNarrowFontSizeLabel1 as Ro, TypographyNarrowFontSizeLabel2 as Go, TypographyNarrowFontSizeLabel3 as Lo, TypographyNarrowFontSizeLink1 as Oo, TypographyNarrowFontSizeLink2 as Po, TypographyNarrowFontSizeLink3 as Yo, TypographyNarrowFontSizeDigits1 as Xo, TypographyNarrowFontSizeDigits2 as Io, TypographyNarrowFontSizeDigits3 as Ko } from "../design-tokens/variables.js";
|
|
2
|
+
const Vo = {
|
|
3
3
|
wide: 1280,
|
|
4
4
|
medium: 1024,
|
|
5
5
|
narrow: 480
|
|
6
|
-
},
|
|
7
|
-
BorderRadiusNone:
|
|
8
|
-
BorderRadiusXs:
|
|
9
|
-
BorderRadiusSm:
|
|
10
|
-
BorderRadiusMd:
|
|
11
|
-
BorderRadiusLg:
|
|
12
|
-
BorderRadiusXl:
|
|
13
|
-
BorderRadiusXxl:
|
|
14
|
-
BorderRadiusXxxl:
|
|
15
|
-
BorderRadiusRounded:
|
|
6
|
+
}, c = {
|
|
7
|
+
BorderRadiusNone: ee,
|
|
8
|
+
BorderRadiusXs: re,
|
|
9
|
+
BorderRadiusSm: oe,
|
|
10
|
+
BorderRadiusMd: ie,
|
|
11
|
+
BorderRadiusLg: te,
|
|
12
|
+
BorderRadiusXl: ne,
|
|
13
|
+
BorderRadiusXxl: ae,
|
|
14
|
+
BorderRadiusXxxl: le,
|
|
15
|
+
BorderRadiusRounded: ge
|
|
16
16
|
}, i = {
|
|
17
|
-
Size1:
|
|
17
|
+
Size1: s,
|
|
18
18
|
// 4px
|
|
19
19
|
Size2: y,
|
|
20
20
|
// 8px
|
|
21
21
|
Size3: h,
|
|
22
22
|
// 12px
|
|
23
|
-
Size4:
|
|
23
|
+
Size4: u,
|
|
24
24
|
// 16px
|
|
25
|
-
Size5:
|
|
25
|
+
Size5: B,
|
|
26
26
|
// 20px
|
|
27
|
-
Size6:
|
|
27
|
+
Size6: E,
|
|
28
28
|
// 24px
|
|
29
|
-
Size7:
|
|
29
|
+
Size7: w,
|
|
30
30
|
// 28px
|
|
31
|
-
Size8:
|
|
31
|
+
Size8: D,
|
|
32
32
|
// 32px
|
|
33
|
-
Size10:
|
|
33
|
+
Size10: x,
|
|
34
34
|
// 40px
|
|
35
|
-
Size12:
|
|
35
|
+
Size12: A,
|
|
36
36
|
// 48px
|
|
37
|
-
Size13:
|
|
37
|
+
Size13: M,
|
|
38
38
|
// 52px
|
|
39
|
-
Size14:
|
|
39
|
+
Size14: N,
|
|
40
40
|
// 56px
|
|
41
|
-
Size16:
|
|
41
|
+
Size16: R,
|
|
42
42
|
// 64px
|
|
43
|
-
Size18:
|
|
43
|
+
Size18: G,
|
|
44
44
|
// 72px
|
|
45
|
-
Size20:
|
|
45
|
+
Size20: L,
|
|
46
46
|
// 80px
|
|
47
|
-
Size24:
|
|
47
|
+
Size24: O,
|
|
48
48
|
// 96px
|
|
49
|
-
Size27:
|
|
49
|
+
Size27: P,
|
|
50
50
|
// 108px
|
|
51
|
-
Size28:
|
|
51
|
+
Size28: Y,
|
|
52
52
|
// 112px
|
|
53
|
-
Size30:
|
|
53
|
+
Size30: X,
|
|
54
54
|
// 120px
|
|
55
|
-
Size32:
|
|
55
|
+
Size32: I,
|
|
56
56
|
// 128px
|
|
57
|
-
Size34:
|
|
57
|
+
Size34: K,
|
|
58
58
|
// 136px
|
|
59
|
-
Size35:
|
|
59
|
+
Size35: V,
|
|
60
60
|
// 140px
|
|
61
|
-
Size39:
|
|
61
|
+
Size39: j,
|
|
62
62
|
// 156px
|
|
63
|
-
Size43:
|
|
63
|
+
Size43: q,
|
|
64
64
|
// 172px
|
|
65
|
-
Size50:
|
|
65
|
+
Size50: J,
|
|
66
66
|
// 200px
|
|
67
|
-
Size64:
|
|
67
|
+
Size64: Q,
|
|
68
68
|
// 256px
|
|
69
|
-
Size05:
|
|
69
|
+
Size05: U,
|
|
70
70
|
// 2px
|
|
71
|
-
Size15:
|
|
71
|
+
Size15: Z,
|
|
72
72
|
// 6px
|
|
73
|
-
Size025:
|
|
73
|
+
Size025: _,
|
|
74
74
|
// 1px
|
|
75
|
-
Size25:
|
|
75
|
+
Size25: $,
|
|
76
76
|
// 10px
|
|
77
|
-
xs:
|
|
77
|
+
xs: s,
|
|
78
78
|
// 4px
|
|
79
79
|
sm: y,
|
|
80
80
|
// 8px
|
|
81
81
|
md: h,
|
|
82
82
|
// 12px
|
|
83
|
-
lg:
|
|
83
|
+
lg: u,
|
|
84
84
|
// 16px
|
|
85
85
|
typography1: 12,
|
|
86
86
|
typography2: 14,
|
|
87
87
|
typography3: 16
|
|
88
|
-
},
|
|
88
|
+
}, gi = {
|
|
89
89
|
display1: "display1",
|
|
90
90
|
display2: "display2",
|
|
91
91
|
display3: "display3",
|
|
@@ -113,592 +113,592 @@ const Yi = {
|
|
|
113
113
|
digits1: "digits1",
|
|
114
114
|
digits2: "digits2",
|
|
115
115
|
digits3: "digits3"
|
|
116
|
-
},
|
|
116
|
+
}, jo = {
|
|
117
117
|
display1: {
|
|
118
|
-
fontSize:
|
|
118
|
+
fontSize: Sr,
|
|
119
119
|
lineHeight: "3.5rem",
|
|
120
120
|
fontWeight: 700,
|
|
121
121
|
letterSpacing: "0"
|
|
122
122
|
},
|
|
123
123
|
display2: {
|
|
124
|
-
fontSize:
|
|
124
|
+
fontSize: Cr,
|
|
125
125
|
lineHeight: "3rem",
|
|
126
126
|
fontWeight: 700,
|
|
127
127
|
letterSpacing: "0"
|
|
128
128
|
},
|
|
129
129
|
display3: {
|
|
130
|
-
fontSize:
|
|
130
|
+
fontSize: zr,
|
|
131
131
|
lineHeight: "2.5rem",
|
|
132
132
|
fontWeight: 700,
|
|
133
133
|
letterSpacing: "0"
|
|
134
134
|
},
|
|
135
135
|
heading1: {
|
|
136
|
-
fontSize:
|
|
136
|
+
fontSize: vr,
|
|
137
137
|
lineHeight: "2rem",
|
|
138
138
|
fontWeight: 700,
|
|
139
139
|
letterSpacing: "0"
|
|
140
140
|
},
|
|
141
141
|
heading2: {
|
|
142
|
-
fontSize:
|
|
142
|
+
fontSize: br,
|
|
143
143
|
lineHeight: "1.75rem",
|
|
144
144
|
fontWeight: 700,
|
|
145
145
|
letterSpacing: "0"
|
|
146
146
|
},
|
|
147
147
|
heading3: {
|
|
148
|
-
fontSize:
|
|
148
|
+
fontSize: Fr,
|
|
149
149
|
lineHeight: "1.5rem",
|
|
150
150
|
fontWeight: 700,
|
|
151
151
|
letterSpacing: "0"
|
|
152
152
|
},
|
|
153
153
|
subHeading1: {
|
|
154
|
-
fontSize:
|
|
154
|
+
fontSize: mr,
|
|
155
155
|
lineHeight: "1.25rem",
|
|
156
156
|
fontWeight: 600,
|
|
157
157
|
letterSpacing: "0"
|
|
158
158
|
},
|
|
159
159
|
subHeading2: {
|
|
160
|
-
fontSize:
|
|
160
|
+
fontSize: Hr,
|
|
161
161
|
lineHeight: "1.25rem",
|
|
162
162
|
fontWeight: 600,
|
|
163
163
|
letterSpacing: "0"
|
|
164
164
|
},
|
|
165
165
|
subHeading3: {
|
|
166
|
-
fontSize:
|
|
166
|
+
fontSize: Wr,
|
|
167
167
|
lineHeight: "1rem",
|
|
168
168
|
fontWeight: 600,
|
|
169
169
|
letterSpacing: "0"
|
|
170
170
|
},
|
|
171
171
|
body1: {
|
|
172
|
-
fontSize:
|
|
172
|
+
fontSize: kr,
|
|
173
173
|
lineHeight: "1.5rem",
|
|
174
174
|
fontWeight: 400,
|
|
175
175
|
letterSpacing: "0"
|
|
176
176
|
},
|
|
177
177
|
body2: {
|
|
178
|
-
fontSize:
|
|
178
|
+
fontSize: Tr,
|
|
179
179
|
lineHeight: "1.25rem",
|
|
180
180
|
fontWeight: 400,
|
|
181
181
|
letterSpacing: "0"
|
|
182
182
|
},
|
|
183
183
|
body3: {
|
|
184
|
-
fontSize:
|
|
184
|
+
fontSize: Br,
|
|
185
185
|
lineHeight: "1rem",
|
|
186
186
|
fontWeight: 400,
|
|
187
187
|
letterSpacing: "0"
|
|
188
188
|
},
|
|
189
189
|
body4: {
|
|
190
|
-
fontSize:
|
|
190
|
+
fontSize: Er,
|
|
191
191
|
lineHeight: "0.875rem",
|
|
192
192
|
fontWeight: 400,
|
|
193
193
|
letterSpacing: "0"
|
|
194
194
|
},
|
|
195
195
|
body5: {
|
|
196
|
-
fontSize:
|
|
196
|
+
fontSize: wr,
|
|
197
197
|
lineHeight: "0.75rem",
|
|
198
198
|
fontWeight: 400,
|
|
199
199
|
letterSpacing: "0"
|
|
200
200
|
},
|
|
201
201
|
message: {
|
|
202
|
-
fontSize:
|
|
202
|
+
fontSize: Dr,
|
|
203
203
|
lineHeight: "23px",
|
|
204
204
|
fontWeight: 400,
|
|
205
205
|
letterSpacing: "0"
|
|
206
206
|
},
|
|
207
207
|
overline1: {
|
|
208
|
-
fontSize:
|
|
208
|
+
fontSize: xr,
|
|
209
209
|
lineHeight: "0.75rem",
|
|
210
210
|
fontWeight: 500,
|
|
211
211
|
letterSpacing: "0"
|
|
212
212
|
},
|
|
213
213
|
overline2: {
|
|
214
|
-
fontSize:
|
|
214
|
+
fontSize: Ar,
|
|
215
215
|
lineHeight: "0.75rem",
|
|
216
216
|
fontWeight: 500,
|
|
217
217
|
letterSpacing: "0"
|
|
218
218
|
},
|
|
219
219
|
overline3: {
|
|
220
|
-
fontSize:
|
|
220
|
+
fontSize: Mr,
|
|
221
221
|
lineHeight: "0.75rem",
|
|
222
222
|
fontWeight: 500,
|
|
223
223
|
letterSpacing: "0"
|
|
224
224
|
},
|
|
225
225
|
label1: {
|
|
226
|
-
fontSize:
|
|
226
|
+
fontSize: Nr,
|
|
227
227
|
lineHeight: "1rem",
|
|
228
228
|
fontWeight: 500,
|
|
229
229
|
letterSpacing: "0"
|
|
230
230
|
},
|
|
231
231
|
label2: {
|
|
232
|
-
fontSize:
|
|
232
|
+
fontSize: Rr,
|
|
233
233
|
lineHeight: "1rem",
|
|
234
234
|
fontWeight: 500,
|
|
235
235
|
letterSpacing: "0"
|
|
236
236
|
},
|
|
237
237
|
label3: {
|
|
238
|
-
fontSize:
|
|
238
|
+
fontSize: Gr,
|
|
239
239
|
lineHeight: "1rem",
|
|
240
240
|
fontWeight: 500,
|
|
241
241
|
letterSpacing: "0"
|
|
242
242
|
},
|
|
243
243
|
link1: {
|
|
244
|
-
fontSize:
|
|
244
|
+
fontSize: Lr,
|
|
245
245
|
lineHeight: "1.5rem",
|
|
246
246
|
fontWeight: 500,
|
|
247
247
|
letterSpacing: "0"
|
|
248
248
|
},
|
|
249
249
|
link2: {
|
|
250
|
-
fontSize:
|
|
250
|
+
fontSize: Or,
|
|
251
251
|
lineHeight: "1.25rem",
|
|
252
252
|
fontWeight: 500,
|
|
253
253
|
letterSpacing: "0"
|
|
254
254
|
},
|
|
255
255
|
link3: {
|
|
256
|
-
fontSize:
|
|
256
|
+
fontSize: Pr,
|
|
257
257
|
lineHeight: "1rem",
|
|
258
258
|
fontWeight: 500,
|
|
259
259
|
letterSpacing: "0"
|
|
260
260
|
},
|
|
261
261
|
digits1: {
|
|
262
|
-
fontSize:
|
|
262
|
+
fontSize: Yr,
|
|
263
263
|
lineHeight: "3.5rem",
|
|
264
264
|
fontWeight: 700,
|
|
265
265
|
letterSpacing: "0"
|
|
266
266
|
},
|
|
267
267
|
digits2: {
|
|
268
|
-
fontSize:
|
|
268
|
+
fontSize: Xr,
|
|
269
269
|
lineHeight: "3rem",
|
|
270
270
|
fontWeight: 700,
|
|
271
271
|
letterSpacing: "0"
|
|
272
272
|
},
|
|
273
273
|
digits3: {
|
|
274
|
-
fontSize:
|
|
274
|
+
fontSize: Ir,
|
|
275
275
|
lineHeight: "2.5rem",
|
|
276
276
|
fontWeight: 700,
|
|
277
277
|
letterSpacing: "0"
|
|
278
278
|
}
|
|
279
|
-
},
|
|
279
|
+
}, qo = {
|
|
280
280
|
display1: {
|
|
281
|
-
fontSize:
|
|
281
|
+
fontSize: Kr,
|
|
282
282
|
lineHeight: "3.5rem",
|
|
283
283
|
fontWeight: 700,
|
|
284
284
|
letterSpacing: "0"
|
|
285
285
|
},
|
|
286
286
|
display2: {
|
|
287
|
-
fontSize:
|
|
287
|
+
fontSize: Vr,
|
|
288
288
|
lineHeight: "3rem",
|
|
289
289
|
fontWeight: 700,
|
|
290
290
|
letterSpacing: "0"
|
|
291
291
|
},
|
|
292
292
|
display3: {
|
|
293
|
-
fontSize:
|
|
293
|
+
fontSize: jr,
|
|
294
294
|
lineHeight: "2.5rem",
|
|
295
295
|
fontWeight: 700,
|
|
296
296
|
letterSpacing: "0"
|
|
297
297
|
},
|
|
298
298
|
heading1: {
|
|
299
|
-
fontSize:
|
|
299
|
+
fontSize: qr,
|
|
300
300
|
lineHeight: "2rem",
|
|
301
301
|
fontWeight: 700,
|
|
302
302
|
letterSpacing: "0"
|
|
303
303
|
},
|
|
304
304
|
heading2: {
|
|
305
|
-
fontSize:
|
|
305
|
+
fontSize: Jr,
|
|
306
306
|
lineHeight: "1.75rem",
|
|
307
307
|
fontWeight: 700,
|
|
308
308
|
letterSpacing: "0"
|
|
309
309
|
},
|
|
310
310
|
heading3: {
|
|
311
|
-
fontSize:
|
|
311
|
+
fontSize: Qr,
|
|
312
312
|
lineHeight: "1.5rem",
|
|
313
313
|
fontWeight: 700,
|
|
314
314
|
letterSpacing: "0"
|
|
315
315
|
},
|
|
316
316
|
subHeading1: {
|
|
317
|
-
fontSize:
|
|
317
|
+
fontSize: Ur,
|
|
318
318
|
lineHeight: "1.25rem",
|
|
319
319
|
fontWeight: 600,
|
|
320
320
|
letterSpacing: "0"
|
|
321
321
|
},
|
|
322
322
|
subHeading2: {
|
|
323
|
-
fontSize:
|
|
323
|
+
fontSize: Zr,
|
|
324
324
|
lineHeight: "1.25rem",
|
|
325
325
|
fontWeight: 600,
|
|
326
326
|
letterSpacing: "0"
|
|
327
327
|
},
|
|
328
328
|
subHeading3: {
|
|
329
|
-
fontSize:
|
|
329
|
+
fontSize: _r,
|
|
330
330
|
lineHeight: "1rem",
|
|
331
331
|
fontWeight: 600,
|
|
332
332
|
letterSpacing: "0"
|
|
333
333
|
},
|
|
334
334
|
body1: {
|
|
335
|
-
fontSize:
|
|
335
|
+
fontSize: $r,
|
|
336
336
|
lineHeight: "1.5rem",
|
|
337
337
|
fontWeight: 400,
|
|
338
338
|
letterSpacing: "0"
|
|
339
339
|
},
|
|
340
340
|
body2: {
|
|
341
|
-
fontSize:
|
|
341
|
+
fontSize: eo,
|
|
342
342
|
lineHeight: "1.25rem",
|
|
343
343
|
fontWeight: 400,
|
|
344
344
|
letterSpacing: "0"
|
|
345
345
|
},
|
|
346
346
|
body3: {
|
|
347
|
-
fontSize:
|
|
347
|
+
fontSize: ro,
|
|
348
348
|
lineHeight: "1rem",
|
|
349
349
|
fontWeight: 400,
|
|
350
350
|
letterSpacing: "0"
|
|
351
351
|
},
|
|
352
352
|
body4: {
|
|
353
|
-
fontSize:
|
|
353
|
+
fontSize: oo,
|
|
354
354
|
lineHeight: "0.875rem",
|
|
355
355
|
fontWeight: 400,
|
|
356
356
|
letterSpacing: "0"
|
|
357
357
|
},
|
|
358
358
|
body5: {
|
|
359
|
-
fontSize:
|
|
359
|
+
fontSize: io,
|
|
360
360
|
lineHeight: "0.75rem",
|
|
361
361
|
fontWeight: 400,
|
|
362
362
|
letterSpacing: "0"
|
|
363
363
|
},
|
|
364
364
|
message: {
|
|
365
|
-
fontSize:
|
|
365
|
+
fontSize: to,
|
|
366
366
|
lineHeight: "23px",
|
|
367
367
|
fontWeight: 400,
|
|
368
368
|
letterSpacing: "0"
|
|
369
369
|
},
|
|
370
370
|
overline1: {
|
|
371
|
-
fontSize:
|
|
371
|
+
fontSize: no,
|
|
372
372
|
lineHeight: "0.75rem",
|
|
373
373
|
fontWeight: 500,
|
|
374
374
|
letterSpacing: "0"
|
|
375
375
|
},
|
|
376
376
|
overline2: {
|
|
377
|
-
fontSize:
|
|
377
|
+
fontSize: ao,
|
|
378
378
|
lineHeight: "0.75rem",
|
|
379
379
|
fontWeight: 500,
|
|
380
380
|
letterSpacing: "0"
|
|
381
381
|
},
|
|
382
382
|
overline3: {
|
|
383
|
-
fontSize:
|
|
383
|
+
fontSize: lo,
|
|
384
384
|
lineHeight: "0.75rem",
|
|
385
385
|
fontWeight: 500,
|
|
386
386
|
letterSpacing: "0"
|
|
387
387
|
},
|
|
388
388
|
label1: {
|
|
389
|
-
fontSize:
|
|
389
|
+
fontSize: go,
|
|
390
390
|
lineHeight: "1rem",
|
|
391
391
|
fontWeight: 500,
|
|
392
392
|
letterSpacing: "0"
|
|
393
393
|
},
|
|
394
394
|
label2: {
|
|
395
|
-
fontSize:
|
|
395
|
+
fontSize: co,
|
|
396
396
|
lineHeight: "1rem",
|
|
397
397
|
fontWeight: 500,
|
|
398
398
|
letterSpacing: "0"
|
|
399
399
|
},
|
|
400
400
|
label3: {
|
|
401
|
-
fontSize:
|
|
401
|
+
fontSize: po,
|
|
402
402
|
lineHeight: "1rem",
|
|
403
403
|
fontWeight: 500,
|
|
404
404
|
letterSpacing: "0"
|
|
405
405
|
},
|
|
406
406
|
link1: {
|
|
407
|
-
fontSize:
|
|
407
|
+
fontSize: so,
|
|
408
408
|
lineHeight: "1.5rem",
|
|
409
409
|
fontWeight: 500,
|
|
410
410
|
letterSpacing: "0"
|
|
411
411
|
},
|
|
412
412
|
link2: {
|
|
413
|
-
fontSize:
|
|
413
|
+
fontSize: yo,
|
|
414
414
|
lineHeight: "1.25rem",
|
|
415
415
|
fontWeight: 500,
|
|
416
416
|
letterSpacing: "0"
|
|
417
417
|
},
|
|
418
418
|
link3: {
|
|
419
|
-
fontSize:
|
|
419
|
+
fontSize: ho,
|
|
420
420
|
lineHeight: "1rem",
|
|
421
421
|
fontWeight: 500,
|
|
422
422
|
letterSpacing: "0"
|
|
423
423
|
},
|
|
424
424
|
digits1: {
|
|
425
|
-
fontSize:
|
|
425
|
+
fontSize: uo,
|
|
426
426
|
lineHeight: "3.5rem",
|
|
427
427
|
fontWeight: 700,
|
|
428
428
|
letterSpacing: "0"
|
|
429
429
|
},
|
|
430
430
|
digits2: {
|
|
431
|
-
fontSize:
|
|
431
|
+
fontSize: fo,
|
|
432
432
|
lineHeight: "3rem",
|
|
433
433
|
fontWeight: 700,
|
|
434
434
|
letterSpacing: "0"
|
|
435
435
|
},
|
|
436
436
|
digits3: {
|
|
437
|
-
fontSize:
|
|
437
|
+
fontSize: So,
|
|
438
438
|
lineHeight: "2.5rem",
|
|
439
439
|
fontWeight: 700,
|
|
440
440
|
letterSpacing: "0"
|
|
441
441
|
}
|
|
442
|
-
},
|
|
442
|
+
}, Jo = {
|
|
443
443
|
display1: {
|
|
444
|
-
fontSize:
|
|
444
|
+
fontSize: Co,
|
|
445
445
|
lineHeight: "3.5rem",
|
|
446
446
|
fontWeight: 700,
|
|
447
447
|
letterSpacing: "0"
|
|
448
448
|
},
|
|
449
449
|
display2: {
|
|
450
|
-
fontSize:
|
|
450
|
+
fontSize: zo,
|
|
451
451
|
lineHeight: "3rem",
|
|
452
452
|
fontWeight: 700,
|
|
453
453
|
letterSpacing: "0"
|
|
454
454
|
},
|
|
455
455
|
display3: {
|
|
456
|
-
fontSize:
|
|
456
|
+
fontSize: vo,
|
|
457
457
|
lineHeight: "2.5rem",
|
|
458
458
|
fontWeight: 700,
|
|
459
459
|
letterSpacing: "0"
|
|
460
460
|
},
|
|
461
461
|
heading1: {
|
|
462
|
-
fontSize:
|
|
462
|
+
fontSize: bo,
|
|
463
463
|
lineHeight: "2rem",
|
|
464
464
|
fontWeight: 700,
|
|
465
465
|
letterSpacing: "0"
|
|
466
466
|
},
|
|
467
467
|
heading2: {
|
|
468
|
-
fontSize:
|
|
468
|
+
fontSize: Fo,
|
|
469
469
|
lineHeight: "1.75rem",
|
|
470
470
|
fontWeight: 700,
|
|
471
471
|
letterSpacing: "0"
|
|
472
472
|
},
|
|
473
473
|
heading3: {
|
|
474
|
-
fontSize:
|
|
474
|
+
fontSize: mo,
|
|
475
475
|
lineHeight: "1.5rem",
|
|
476
476
|
fontWeight: 700,
|
|
477
477
|
letterSpacing: "0"
|
|
478
478
|
},
|
|
479
479
|
subHeading1: {
|
|
480
|
-
fontSize:
|
|
480
|
+
fontSize: Ho,
|
|
481
481
|
lineHeight: "1.25rem",
|
|
482
482
|
fontWeight: 600,
|
|
483
483
|
letterSpacing: "0"
|
|
484
484
|
},
|
|
485
485
|
subHeading2: {
|
|
486
|
-
fontSize:
|
|
486
|
+
fontSize: Wo,
|
|
487
487
|
lineHeight: "1.25rem",
|
|
488
488
|
fontWeight: 600,
|
|
489
489
|
letterSpacing: "0"
|
|
490
490
|
},
|
|
491
491
|
subHeading3: {
|
|
492
|
-
fontSize:
|
|
492
|
+
fontSize: ko,
|
|
493
493
|
lineHeight: "1rem",
|
|
494
494
|
fontWeight: 600,
|
|
495
495
|
letterSpacing: "0"
|
|
496
496
|
},
|
|
497
497
|
body1: {
|
|
498
|
-
fontSize:
|
|
498
|
+
fontSize: To,
|
|
499
499
|
lineHeight: "1.5rem",
|
|
500
500
|
fontWeight: 400,
|
|
501
501
|
letterSpacing: "0"
|
|
502
502
|
},
|
|
503
503
|
body2: {
|
|
504
|
-
fontSize:
|
|
504
|
+
fontSize: Bo,
|
|
505
505
|
lineHeight: "1.25rem",
|
|
506
506
|
fontWeight: 400,
|
|
507
507
|
letterSpacing: "0"
|
|
508
508
|
},
|
|
509
509
|
body3: {
|
|
510
|
-
fontSize:
|
|
510
|
+
fontSize: Eo,
|
|
511
511
|
lineHeight: "1rem",
|
|
512
512
|
fontWeight: 400,
|
|
513
513
|
letterSpacing: "0"
|
|
514
514
|
},
|
|
515
515
|
body4: {
|
|
516
|
-
fontSize:
|
|
516
|
+
fontSize: wo,
|
|
517
517
|
lineHeight: "0.875rem",
|
|
518
518
|
fontWeight: 400,
|
|
519
519
|
letterSpacing: "0"
|
|
520
520
|
},
|
|
521
521
|
body5: {
|
|
522
|
-
fontSize:
|
|
522
|
+
fontSize: Do,
|
|
523
523
|
lineHeight: "0.75rem",
|
|
524
524
|
fontWeight: 400,
|
|
525
525
|
letterSpacing: "0"
|
|
526
526
|
},
|
|
527
527
|
message: {
|
|
528
|
-
fontSize:
|
|
528
|
+
fontSize: xo,
|
|
529
529
|
lineHeight: "23px",
|
|
530
530
|
fontWeight: 400,
|
|
531
531
|
letterSpacing: "0"
|
|
532
532
|
},
|
|
533
533
|
overline1: {
|
|
534
|
-
fontSize:
|
|
534
|
+
fontSize: Ao,
|
|
535
535
|
lineHeight: "0.75rem",
|
|
536
536
|
fontWeight: 500,
|
|
537
537
|
letterSpacing: "0"
|
|
538
538
|
},
|
|
539
539
|
overline2: {
|
|
540
|
-
fontSize:
|
|
540
|
+
fontSize: Mo,
|
|
541
541
|
lineHeight: "0.75rem",
|
|
542
542
|
fontWeight: 500,
|
|
543
543
|
letterSpacing: "0"
|
|
544
544
|
},
|
|
545
545
|
overline3: {
|
|
546
|
-
fontSize:
|
|
546
|
+
fontSize: No,
|
|
547
547
|
lineHeight: "0.75rem",
|
|
548
548
|
fontWeight: 500,
|
|
549
549
|
letterSpacing: "0"
|
|
550
550
|
},
|
|
551
551
|
label1: {
|
|
552
|
-
fontSize:
|
|
552
|
+
fontSize: Ro,
|
|
553
553
|
lineHeight: "1rem",
|
|
554
554
|
fontWeight: 500,
|
|
555
555
|
letterSpacing: "0"
|
|
556
556
|
},
|
|
557
557
|
label2: {
|
|
558
|
-
fontSize:
|
|
558
|
+
fontSize: Go,
|
|
559
559
|
lineHeight: "1rem",
|
|
560
560
|
fontWeight: 500,
|
|
561
561
|
letterSpacing: "0"
|
|
562
562
|
},
|
|
563
563
|
label3: {
|
|
564
|
-
fontSize:
|
|
564
|
+
fontSize: Lo,
|
|
565
565
|
lineHeight: "1rem",
|
|
566
566
|
fontWeight: 500,
|
|
567
567
|
letterSpacing: "0"
|
|
568
568
|
},
|
|
569
569
|
link1: {
|
|
570
|
-
fontSize:
|
|
570
|
+
fontSize: Oo,
|
|
571
571
|
lineHeight: "1.5rem",
|
|
572
572
|
fontWeight: 500,
|
|
573
573
|
letterSpacing: "0"
|
|
574
574
|
},
|
|
575
575
|
link2: {
|
|
576
|
-
fontSize:
|
|
576
|
+
fontSize: Po,
|
|
577
577
|
lineHeight: "1.25rem",
|
|
578
578
|
fontWeight: 500,
|
|
579
579
|
letterSpacing: "0"
|
|
580
580
|
},
|
|
581
581
|
link3: {
|
|
582
|
-
fontSize:
|
|
582
|
+
fontSize: Yo,
|
|
583
583
|
lineHeight: "1rem",
|
|
584
584
|
fontWeight: 500,
|
|
585
585
|
letterSpacing: "0"
|
|
586
586
|
},
|
|
587
587
|
digits1: {
|
|
588
|
-
fontSize:
|
|
588
|
+
fontSize: Xo,
|
|
589
589
|
lineHeight: "3.5rem",
|
|
590
590
|
fontWeight: 700,
|
|
591
591
|
letterSpacing: "0"
|
|
592
592
|
},
|
|
593
593
|
digits2: {
|
|
594
|
-
fontSize:
|
|
594
|
+
fontSize: Io,
|
|
595
595
|
lineHeight: "3rem",
|
|
596
596
|
fontWeight: 700,
|
|
597
597
|
letterSpacing: "0"
|
|
598
598
|
},
|
|
599
599
|
digits3: {
|
|
600
|
-
fontSize:
|
|
600
|
+
fontSize: Ko,
|
|
601
601
|
lineHeight: "2.5rem",
|
|
602
602
|
fontWeight: 700,
|
|
603
603
|
letterSpacing: "0"
|
|
604
604
|
}
|
|
605
|
-
},
|
|
606
|
-
fontFamily:
|
|
607
|
-
wide:
|
|
608
|
-
medium:
|
|
609
|
-
narrow:
|
|
605
|
+
}, Qo = {
|
|
606
|
+
fontFamily: ce,
|
|
607
|
+
wide: jo,
|
|
608
|
+
medium: qo,
|
|
609
|
+
narrow: Jo
|
|
610
610
|
}, o = {
|
|
611
611
|
red: {
|
|
612
|
-
100:
|
|
613
|
-
200:
|
|
614
|
-
300:
|
|
615
|
-
400:
|
|
616
|
-
500:
|
|
617
|
-
600:
|
|
618
|
-
700:
|
|
619
|
-
800:
|
|
620
|
-
900:
|
|
612
|
+
100: de,
|
|
613
|
+
200: pe,
|
|
614
|
+
300: se,
|
|
615
|
+
400: ye,
|
|
616
|
+
500: he,
|
|
617
|
+
600: ue,
|
|
618
|
+
700: fe,
|
|
619
|
+
800: Se,
|
|
620
|
+
900: Ce
|
|
621
621
|
},
|
|
622
622
|
orange: {
|
|
623
|
-
100:
|
|
624
|
-
200:
|
|
625
|
-
300:
|
|
626
|
-
400:
|
|
627
|
-
500:
|
|
628
|
-
600:
|
|
629
|
-
700:
|
|
630
|
-
800:
|
|
631
|
-
900:
|
|
623
|
+
100: ze,
|
|
624
|
+
200: ve,
|
|
625
|
+
300: be,
|
|
626
|
+
400: Fe,
|
|
627
|
+
500: me,
|
|
628
|
+
600: He,
|
|
629
|
+
700: We,
|
|
630
|
+
800: ke,
|
|
631
|
+
900: Te
|
|
632
632
|
},
|
|
633
633
|
yellow: {
|
|
634
|
-
100:
|
|
635
|
-
200:
|
|
636
|
-
300: ve,
|
|
637
|
-
400: He,
|
|
638
|
-
500: s,
|
|
639
|
-
600: We,
|
|
640
|
-
700: Te,
|
|
641
|
-
800: t,
|
|
642
|
-
900: d
|
|
643
|
-
},
|
|
644
|
-
green: {
|
|
645
|
-
100: ke,
|
|
646
|
-
200: Be,
|
|
634
|
+
100: Be,
|
|
635
|
+
200: Ee,
|
|
647
636
|
300: we,
|
|
648
637
|
400: De,
|
|
649
|
-
500:
|
|
650
|
-
600:
|
|
651
|
-
700:
|
|
652
|
-
800:
|
|
653
|
-
900:
|
|
638
|
+
500: f,
|
|
639
|
+
600: xe,
|
|
640
|
+
700: Ae,
|
|
641
|
+
800: n,
|
|
642
|
+
900: p
|
|
654
643
|
},
|
|
655
|
-
|
|
656
|
-
100:
|
|
657
|
-
200:
|
|
658
|
-
300:
|
|
659
|
-
400:
|
|
660
|
-
500:
|
|
661
|
-
600:
|
|
662
|
-
700:
|
|
663
|
-
800:
|
|
644
|
+
green: {
|
|
645
|
+
100: Me,
|
|
646
|
+
200: Ne,
|
|
647
|
+
300: Re,
|
|
648
|
+
400: Ge,
|
|
649
|
+
500: Le,
|
|
650
|
+
600: Oe,
|
|
651
|
+
700: Pe,
|
|
652
|
+
800: Ye,
|
|
664
653
|
900: Xe
|
|
665
654
|
},
|
|
666
|
-
|
|
655
|
+
sky: {
|
|
667
656
|
100: Ie,
|
|
668
657
|
200: Ke,
|
|
669
|
-
300:
|
|
670
|
-
400:
|
|
671
|
-
500:
|
|
672
|
-
600:
|
|
673
|
-
700:
|
|
674
|
-
800:
|
|
675
|
-
900:
|
|
658
|
+
300: F,
|
|
659
|
+
400: m,
|
|
660
|
+
500: Ve,
|
|
661
|
+
600: je,
|
|
662
|
+
700: S,
|
|
663
|
+
800: t,
|
|
664
|
+
900: C
|
|
665
|
+
},
|
|
666
|
+
blue: {
|
|
667
|
+
100: qe,
|
|
668
|
+
200: Je,
|
|
669
|
+
300: Qe,
|
|
670
|
+
400: Ue,
|
|
671
|
+
500: Ze,
|
|
672
|
+
600: _e,
|
|
673
|
+
700: $e,
|
|
674
|
+
800: er,
|
|
675
|
+
900: rr
|
|
676
676
|
},
|
|
677
677
|
purple: {
|
|
678
|
-
100:
|
|
679
|
-
200:
|
|
680
|
-
300:
|
|
681
|
-
400:
|
|
682
|
-
500:
|
|
683
|
-
600:
|
|
684
|
-
700:
|
|
685
|
-
800:
|
|
686
|
-
900:
|
|
678
|
+
100: or,
|
|
679
|
+
200: ir,
|
|
680
|
+
300: tr,
|
|
681
|
+
400: nr,
|
|
682
|
+
500: ar,
|
|
683
|
+
600: lr,
|
|
684
|
+
700: gr,
|
|
685
|
+
800: cr,
|
|
686
|
+
900: dr
|
|
687
687
|
},
|
|
688
688
|
gray: {
|
|
689
689
|
100: g,
|
|
690
|
-
200:
|
|
691
|
-
300:
|
|
692
|
-
400:
|
|
693
|
-
500:
|
|
694
|
-
600:
|
|
695
|
-
700:
|
|
696
|
-
800:
|
|
697
|
-
900:
|
|
698
|
-
black:
|
|
699
|
-
white:
|
|
690
|
+
200: pr,
|
|
691
|
+
300: sr,
|
|
692
|
+
400: yr,
|
|
693
|
+
500: v,
|
|
694
|
+
600: hr,
|
|
695
|
+
700: b,
|
|
696
|
+
800: d,
|
|
697
|
+
900: ur,
|
|
698
|
+
black: fr,
|
|
699
|
+
white: z
|
|
700
700
|
}
|
|
701
|
-
},
|
|
701
|
+
}, Uo = {
|
|
702
702
|
padding: {
|
|
703
703
|
verPadding: i.Size25,
|
|
704
704
|
// 25px
|
|
@@ -707,18 +707,18 @@ const Yi = {
|
|
|
707
707
|
},
|
|
708
708
|
gap: i.Size2,
|
|
709
709
|
// 8px
|
|
710
|
-
radius:
|
|
710
|
+
radius: c.BorderRadiusMd
|
|
711
711
|
// 6px
|
|
712
|
-
},
|
|
712
|
+
}, Zo = {
|
|
713
713
|
padding: {
|
|
714
|
-
verPadding:
|
|
715
|
-
horPadding:
|
|
714
|
+
verPadding: 10,
|
|
715
|
+
horPadding: 12
|
|
716
716
|
},
|
|
717
717
|
gap: i.Size2,
|
|
718
718
|
// 8px
|
|
719
|
-
radius:
|
|
719
|
+
radius: c.BorderRadiusSm
|
|
720
720
|
// 6px
|
|
721
|
-
},
|
|
721
|
+
}, _o = {
|
|
722
722
|
suffixPrefixVerPadding: 11,
|
|
723
723
|
// special case - see sizing in FIGMA
|
|
724
724
|
suffixPrefixHorPadding: i.Size2
|
|
@@ -754,8 +754,11 @@ const Yi = {
|
|
|
754
754
|
active: "#30606B"
|
|
755
755
|
},
|
|
756
756
|
utility: {
|
|
757
|
+
active: "#FFF",
|
|
757
758
|
onsurface: "#222222",
|
|
758
|
-
border: "#CBCBCB"
|
|
759
|
+
border: "#CBCBCB",
|
|
760
|
+
hover: "#DEEFF3",
|
|
761
|
+
pressed: "#CBCBCB"
|
|
759
762
|
}
|
|
760
763
|
},
|
|
761
764
|
inputs: {
|
|
@@ -765,13 +768,61 @@ const Yi = {
|
|
|
765
768
|
}
|
|
766
769
|
},
|
|
767
770
|
onsurface: {
|
|
768
|
-
"copy-disabled": "#6C6C6C"
|
|
771
|
+
"copy-disabled": "#6C6C6C",
|
|
772
|
+
copy: "#3E3E3E",
|
|
773
|
+
"copy-dark": "#222222"
|
|
769
774
|
},
|
|
770
775
|
surface: {
|
|
771
776
|
border: "#CBCBCB"
|
|
772
777
|
},
|
|
773
778
|
transparent: "transparent"
|
|
774
|
-
},
|
|
779
|
+
}, r = {
|
|
780
|
+
interactive: {
|
|
781
|
+
primary: {
|
|
782
|
+
active: "#30606B",
|
|
783
|
+
hover: "#00282B",
|
|
784
|
+
pressed: "#214148",
|
|
785
|
+
onsurface: "#FFFFFF"
|
|
786
|
+
},
|
|
787
|
+
secondary: {
|
|
788
|
+
active: "#9A9A9A",
|
|
789
|
+
hover: "#222222",
|
|
790
|
+
pressed: "#101010",
|
|
791
|
+
onsurface: "#3E3E3E"
|
|
792
|
+
},
|
|
793
|
+
tertiary: {
|
|
794
|
+
active: "#FFCA7D",
|
|
795
|
+
hover: "#E7A13C",
|
|
796
|
+
pressed: "#B27330",
|
|
797
|
+
onsurface: "#222222"
|
|
798
|
+
},
|
|
799
|
+
link: {
|
|
800
|
+
active: "#30606B"
|
|
801
|
+
},
|
|
802
|
+
utility: {
|
|
803
|
+
active: "#FFF",
|
|
804
|
+
onsurface: "#222222",
|
|
805
|
+
border: "#CBCBCB",
|
|
806
|
+
hover: "#DEEFF3",
|
|
807
|
+
pressed: "#CBCBCB"
|
|
808
|
+
}
|
|
809
|
+
},
|
|
810
|
+
inputs: {
|
|
811
|
+
onsurface: {
|
|
812
|
+
active: "#384DF6",
|
|
813
|
+
focus: "#384DF6"
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
onsurface: {
|
|
817
|
+
"copy-disabled": "#6C6C6C",
|
|
818
|
+
copy: "#3E3E3E",
|
|
819
|
+
"copy-dark": "#222222"
|
|
820
|
+
},
|
|
821
|
+
surface: {
|
|
822
|
+
border: "#CBCBCB"
|
|
823
|
+
},
|
|
824
|
+
transparent: "transparent"
|
|
825
|
+
}, H = {
|
|
775
826
|
primary: {
|
|
776
827
|
active: {
|
|
777
828
|
color: e.interactive.primary.onsurface,
|
|
@@ -874,24 +925,61 @@ const Yi = {
|
|
|
874
925
|
},
|
|
875
926
|
disabled: a
|
|
876
927
|
},
|
|
928
|
+
utility: {
|
|
929
|
+
active: {
|
|
930
|
+
color: e.interactive.secondary.onsurface,
|
|
931
|
+
backgroundColor: e.transparent,
|
|
932
|
+
borderColor: e.interactive.secondary.active
|
|
933
|
+
},
|
|
934
|
+
hover: {
|
|
935
|
+
color: e.interactive.utility.onsurface,
|
|
936
|
+
backgroundColor: e.interactive.utility.hover,
|
|
937
|
+
borderColor: e.interactive.utility.border
|
|
938
|
+
},
|
|
939
|
+
pressed: {
|
|
940
|
+
color: e.interactive.secondary.onsurface,
|
|
941
|
+
backgroundColor: e.interactive.utility.pressed,
|
|
942
|
+
borderColor: e.interactive.utility.pressed
|
|
943
|
+
},
|
|
944
|
+
focussed: {
|
|
945
|
+
color: e.interactive.secondary.onsurface,
|
|
946
|
+
backgroundColor: e.transparent,
|
|
947
|
+
borderColor: e.interactive.secondary.active,
|
|
948
|
+
ringColor: e.inputs.onsurface.focus
|
|
949
|
+
},
|
|
950
|
+
error: {
|
|
951
|
+
...l,
|
|
952
|
+
ringColor: e.inputs.onsurface.focus
|
|
953
|
+
},
|
|
954
|
+
default: {
|
|
955
|
+
color: e.interactive.secondary.onsurface,
|
|
956
|
+
backgroundColor: e.transparent,
|
|
957
|
+
borderColor: e.interactive.secondary.active,
|
|
958
|
+
ringColor: e.inputs.onsurface.focus
|
|
959
|
+
},
|
|
960
|
+
disabled: a
|
|
961
|
+
},
|
|
877
962
|
status: {
|
|
878
963
|
error: {
|
|
879
964
|
default: "#CF3237",
|
|
880
965
|
ringColor: e.inputs.onsurface.focus,
|
|
881
966
|
onsurface: "#AA292D",
|
|
882
|
-
surface: "#F9D4D5"
|
|
967
|
+
surface: "#F9D4D5",
|
|
968
|
+
"surface-hover": "#F3A9AB"
|
|
883
969
|
},
|
|
884
970
|
success: {
|
|
885
971
|
default: "#32863E",
|
|
886
972
|
ringColor: e.inputs.onsurface.focus,
|
|
887
973
|
onsurface: "#296E33",
|
|
888
|
-
surface: "#D3EFD7"
|
|
974
|
+
surface: "#D3EFD7",
|
|
975
|
+
"surface-hover": "#A7DFAF"
|
|
889
976
|
},
|
|
890
977
|
warning: {
|
|
891
|
-
default:
|
|
978
|
+
default: f,
|
|
892
979
|
ringColor: e.inputs.onsurface.focus,
|
|
893
980
|
onsurface: "#704819",
|
|
894
|
-
surface: "#FFF2DF"
|
|
981
|
+
surface: "#FFF2DF",
|
|
982
|
+
"surface-hover": "#FFE5BE"
|
|
895
983
|
},
|
|
896
984
|
info: {
|
|
897
985
|
default: "#384DF6",
|
|
@@ -903,7 +991,21 @@ const Yi = {
|
|
|
903
991
|
default: "#9A9A9A",
|
|
904
992
|
ringColor: e.inputs.onsurface.focus,
|
|
905
993
|
onsurface: "#3E3E3E",
|
|
906
|
-
surface: "#F4F4F4"
|
|
994
|
+
surface: "#F4F4F4",
|
|
995
|
+
"surface-hover": "#F4F4F4"
|
|
996
|
+
},
|
|
997
|
+
hollow: {
|
|
998
|
+
default: "#9A9A9A",
|
|
999
|
+
ringColor: e.inputs.onsurface.focus,
|
|
1000
|
+
onsurface: "#3E3E3E",
|
|
1001
|
+
surface: "#F4F4F4",
|
|
1002
|
+
"surface-hover": "#FFFFFF"
|
|
1003
|
+
},
|
|
1004
|
+
disabled: {
|
|
1005
|
+
default: "#6C6C6C",
|
|
1006
|
+
ringColor: e.inputs.onsurface.focus,
|
|
1007
|
+
onsurface: "#EEEEEE",
|
|
1008
|
+
surface: "#EEEEEE"
|
|
907
1009
|
}
|
|
908
1010
|
},
|
|
909
1011
|
timebox: {
|
|
@@ -931,7 +1033,8 @@ const Yi = {
|
|
|
931
1033
|
onsurface: "#222222"
|
|
932
1034
|
},
|
|
933
1035
|
link: {
|
|
934
|
-
active:
|
|
1036
|
+
active: S,
|
|
1037
|
+
hover: C,
|
|
935
1038
|
disabled: g,
|
|
936
1039
|
current: "#384DF6"
|
|
937
1040
|
},
|
|
@@ -939,10 +1042,11 @@ const Yi = {
|
|
|
939
1042
|
},
|
|
940
1043
|
inputs: {
|
|
941
1044
|
surface: {
|
|
942
|
-
active:
|
|
943
|
-
border:
|
|
1045
|
+
active: z,
|
|
1046
|
+
border: v,
|
|
944
1047
|
disabled: g,
|
|
945
|
-
checked: "#384DF6"
|
|
1048
|
+
checked: "#384DF6",
|
|
1049
|
+
"checked-hover": "#24319D"
|
|
946
1050
|
},
|
|
947
1051
|
onsurface: {
|
|
948
1052
|
active: "#222222",
|
|
@@ -953,128 +1057,91 @@ const Yi = {
|
|
|
953
1057
|
},
|
|
954
1058
|
surface: {
|
|
955
1059
|
border: "#CBCBCB",
|
|
956
|
-
secondary: "#F4F4F4"
|
|
1060
|
+
secondary: "#F4F4F4",
|
|
1061
|
+
tertiary: "#EEEEEE",
|
|
1062
|
+
"border-light": "#DFDFDF"
|
|
957
1063
|
},
|
|
958
1064
|
transparent: "transparent",
|
|
959
1065
|
onsurface: {
|
|
960
|
-
copy:
|
|
961
|
-
"copy-light":
|
|
1066
|
+
copy: "#3E3E3E",
|
|
1067
|
+
"copy-light": b,
|
|
962
1068
|
"copy-dark": "#222222",
|
|
963
1069
|
"copy-disabled": "#6C6C6C"
|
|
964
1070
|
}
|
|
965
|
-
},
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
backgroundColor: "#0D1F22",
|
|
980
|
-
borderColor: "#0D1F22"
|
|
981
|
-
},
|
|
982
|
-
focussed: {
|
|
983
|
-
color: o.gray.white,
|
|
984
|
-
backgroundColor: "#0D1F22",
|
|
985
|
-
borderColor: "#0D1F22",
|
|
986
|
-
ringColor: "#384DF6"
|
|
987
|
-
},
|
|
988
|
-
disabled: {
|
|
989
|
-
color: o.gray[600],
|
|
990
|
-
backgroundColor: "#2C2C2C",
|
|
991
|
-
borderColor: "#2C2C2C"
|
|
992
|
-
}
|
|
1071
|
+
}, $o = H;
|
|
1072
|
+
o.gray.white, o.gray.white, o.gray.white, o.gray.white, o.gray[600], o.gray.white, o.gray.white, o.gray.white, t, t, o.gray.white, t, t, o.gray[600], d, d, o.gray.white, o.gray.white, o.gray.white, n, n, o.gray.white, n, n, o.gray[600], p, p, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.hover, r.interactive.tertiary.hover, r.interactive.tertiary.onsurface, r.interactive.tertiary.pressed, r.interactive.tertiary.pressed, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.inputs.onsurface.focus, {
|
|
1073
|
+
...l,
|
|
1074
|
+
ringColor: r.inputs.onsurface.focus
|
|
1075
|
+
}, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.inputs.onsurface.focus, {
|
|
1076
|
+
link: (F, m, g),
|
|
1077
|
+
...r.interactive
|
|
1078
|
+
};
|
|
1079
|
+
const ei = {
|
|
1080
|
+
general: {
|
|
1081
|
+
1: "box-shadow: 0px 4px 16px 0px #00000026",
|
|
1082
|
+
2: "box-shadow: 0px 8px 24px -4px #00000026",
|
|
1083
|
+
3: "box-shadow: 0px 2px 3px -1px #00000026",
|
|
1084
|
+
4: "box-shadow: 4px 0px 7px -3px #0000001F"
|
|
993
1085
|
},
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
backgroundColor: "#4D4D4D",
|
|
998
|
-
borderColor: "#4D4D4D"
|
|
999
|
-
},
|
|
1000
|
-
hover: {
|
|
1001
|
-
color: o.gray.white,
|
|
1002
|
-
backgroundColor: "#666666",
|
|
1003
|
-
borderColor: "#666666"
|
|
1004
|
-
},
|
|
1005
|
-
pressed: {
|
|
1006
|
-
color: o.gray.white,
|
|
1007
|
-
backgroundColor: r,
|
|
1008
|
-
borderColor: r
|
|
1009
|
-
},
|
|
1010
|
-
focussed: {
|
|
1011
|
-
color: o.gray.white,
|
|
1012
|
-
backgroundColor: r,
|
|
1013
|
-
borderColor: r,
|
|
1014
|
-
ringColor: "#384DF6"
|
|
1015
|
-
},
|
|
1016
|
-
disabled: {
|
|
1017
|
-
color: o.gray[600],
|
|
1018
|
-
backgroundColor: n,
|
|
1019
|
-
borderColor: n
|
|
1020
|
-
}
|
|
1086
|
+
actions: {
|
|
1087
|
+
1: "box-shadow: 0px 2px 2px -1px #00000033",
|
|
1088
|
+
2: "box-shadow: 0px 1px 2px 0px #00000026"
|
|
1021
1089
|
},
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
color: o.gray.white,
|
|
1025
|
-
backgroundColor: "#8B6B3C",
|
|
1026
|
-
borderColor: "#8B6B3C"
|
|
1027
|
-
},
|
|
1028
|
-
hover: {
|
|
1029
|
-
color: o.gray.white,
|
|
1030
|
-
backgroundColor: "#735929",
|
|
1031
|
-
borderColor: "#735929"
|
|
1032
|
-
},
|
|
1033
|
-
pressed: {
|
|
1034
|
-
color: o.gray.white,
|
|
1035
|
-
backgroundColor: t,
|
|
1036
|
-
borderColor: t
|
|
1037
|
-
},
|
|
1038
|
-
focussed: {
|
|
1039
|
-
color: o.gray.white,
|
|
1040
|
-
backgroundColor: t,
|
|
1041
|
-
borderColor: t,
|
|
1042
|
-
ringColor: "#384DF6"
|
|
1043
|
-
},
|
|
1044
|
-
disabled: {
|
|
1045
|
-
color: o.gray[600],
|
|
1046
|
-
backgroundColor: d,
|
|
1047
|
-
borderColor: d
|
|
1048
|
-
}
|
|
1090
|
+
inputs: {
|
|
1091
|
+
1: "box-shadow: 0px 1px 2px 0px #0000001F"
|
|
1049
1092
|
}
|
|
1050
|
-
},
|
|
1051
|
-
|
|
1093
|
+
}, ri = {
|
|
1094
|
+
instant: 0,
|
|
1095
|
+
veryfast: 0.15,
|
|
1096
|
+
fast: 0.33,
|
|
1097
|
+
medium: 0.5,
|
|
1098
|
+
slow: 1,
|
|
1099
|
+
veryslow: 2
|
|
1100
|
+
}, oi = {
|
|
1101
|
+
"ver-padding": 4,
|
|
1102
|
+
"right-padding": 8,
|
|
1103
|
+
"left-padding": 8,
|
|
1104
|
+
radius: 50
|
|
1105
|
+
}, ii = {
|
|
1106
|
+
"ver-padding": i.Size1,
|
|
1107
|
+
"hor-padding": i.Size2,
|
|
1108
|
+
radius: c.BorderRadiusMd,
|
|
1109
|
+
gap: i.Size1
|
|
1110
|
+
}, ti = {
|
|
1111
|
+
"ver-padding": i.Size5,
|
|
1112
|
+
"hor-padding": i.Size6,
|
|
1113
|
+
gap: i.Size2
|
|
1114
|
+
}, ni = {
|
|
1115
|
+
button: Uo,
|
|
1116
|
+
utilityButton: Zo,
|
|
1117
|
+
input: _o,
|
|
1118
|
+
row: ti,
|
|
1119
|
+
badge: oi,
|
|
1120
|
+
popover: ii
|
|
1121
|
+
}, ai = (k, T) => k.status[T].default, W = {
|
|
1122
|
+
breakpoints: Vo,
|
|
1052
1123
|
sizing: i,
|
|
1053
|
-
borderRadius:
|
|
1054
|
-
typography:
|
|
1124
|
+
borderRadius: c,
|
|
1125
|
+
typography: Qo,
|
|
1055
1126
|
allColors: o,
|
|
1056
|
-
components:
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
}
|
|
1064
|
-
}, $i = {
|
|
1065
|
-
...b,
|
|
1066
|
-
colors: Qi,
|
|
1127
|
+
components: ni,
|
|
1128
|
+
motion: ri,
|
|
1129
|
+
shadows: ei,
|
|
1130
|
+
getStatusColor: ai
|
|
1131
|
+
}, ci = {
|
|
1132
|
+
...W,
|
|
1133
|
+
colors: H,
|
|
1067
1134
|
mode: "light"
|
|
1068
|
-
},
|
|
1069
|
-
...
|
|
1070
|
-
colors:
|
|
1135
|
+
}, di = {
|
|
1136
|
+
...W,
|
|
1137
|
+
colors: $o,
|
|
1071
1138
|
mode: "dark"
|
|
1072
1139
|
};
|
|
1073
1140
|
export {
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1141
|
+
gi as TypographySizeKey,
|
|
1142
|
+
W as baseTokens,
|
|
1143
|
+
Vo as breakpoints,
|
|
1144
|
+
di as darkTheme,
|
|
1145
|
+
ci as lightTheme,
|
|
1079
1146
|
i as sizing
|
|
1080
1147
|
};
|