@gobolt/genesis 0.3.20 → 0.3.22
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/Table/Table.d.ts +51 -0
- package/dist/Table/Table.js +14 -0
- package/dist/Table/TableControls/CustomPagination.d.ts +13 -0
- package/dist/Table/TableControls/CustomPagination.js +158 -0
- package/dist/Table/TableControls/PaginationNumber.d.ts +7 -0
- package/dist/Table/TableControls/PaginationNumber.js +30 -0
- package/dist/Table/styles.d.ts +14 -0
- package/dist/Table/styles.js +64 -0
- package/dist/Table/useTable.d.ts +26 -0
- package/dist/Table/useTable.js +141 -0
- package/dist/Typography/Typography.d.ts +17 -0
- package/dist/Typography/Typography.js +16 -0
- package/dist/Typography/index.d.ts +2 -0
- package/dist/Typography/index.js +1 -0
- package/dist/Typography/styles.d.ts +3 -0
- package/dist/Typography/styles.js +54 -0
- package/dist/components/Badge/Badge.js +25 -91
- package/dist/components/Badge/index.d.ts +2 -2
- package/dist/components/Badge/index.js +1 -0
- package/dist/components/Badge/styles.d.ts +3 -12
- package/dist/components/Badge/styles.js +16 -30
- package/dist/components/Button/Button.d.ts +3 -3
- package/dist/components/Button/Button.js +9 -32
- package/dist/components/Button/Button.tsx +59 -0
- package/dist/components/Button/IconButton.d.ts +1 -1
- package/dist/components/Button/IconButton.js +8 -29
- package/dist/components/Button/__stories__/Button.stories.d.ts +2 -2
- package/dist/components/Button/__stories__/Button.stories.js +154 -0
- package/dist/components/Button/__stories__/IconButton.stories.d.ts +2 -2
- package/dist/components/Button/__stories__/IconButton.stories.js +133 -0
- package/dist/components/Button/__stories__/UtilityButton.stories.d.ts +2 -2
- package/dist/components/Button/__stories__/UtilityButton.stories.js +71 -0
- package/dist/components/Button/__tests__/Button.test.js +19 -0
- package/dist/components/Button/icon-button-styles.d.ts +1 -12
- package/dist/components/Button/icon-button-styles.js +11 -12
- package/dist/components/Button/index.d.ts +4 -4
- package/dist/components/Button/index.js +2 -0
- package/dist/components/Button/styles.d.ts +1 -16
- package/dist/components/Button/styles.js +40 -48
- package/dist/components/Button/styles.ts +176 -0
- package/dist/components/Input/Input.d.ts +4 -4
- package/dist/components/Input/Input.js +29 -52
- package/dist/components/Input/index.d.ts +2 -2
- package/dist/components/Input/index.js +1 -0
- package/dist/components/Input/styles.d.ts +1 -17
- package/dist/components/Input/styles.js +53 -61
- package/dist/components/Select/Select.d.ts +4 -4
- package/dist/components/Select/Select.js +120 -164
- package/dist/components/Select/SelectTrigger.d.ts +3 -3
- package/dist/components/Select/SelectTrigger.js +56 -78
- package/dist/components/Select/index.d.ts +2 -2
- package/dist/components/Select/index.js +1 -0
- package/dist/components/Table/Table.d.ts +4 -3
- package/dist/components/Table/Table.js +13 -45
- package/dist/components/Table/Table.tsx +112 -0
- package/dist/components/Table/TableControls/CustomPagination.d.ts +2 -2
- package/dist/components/Table/TableControls/CustomPagination.js +127 -290
- package/dist/components/Table/TableControls/PaginationNumber.d.ts +1 -1
- package/dist/components/Table/TableControls/PaginationNumber.js +7 -20
- package/dist/components/Table/TableControls/PrimaryTableControlsRow.d.ts +1 -1
- package/dist/components/Table/TableControls/PrimaryTableControlsRow.js +71 -157
- package/dist/components/Table/TableControls/SecondaryTableControlsRow.d.ts +1 -1
- package/dist/components/Table/TableControls/SecondaryTableControlsRow.js +37 -75
- package/dist/components/Table/TableControls/TableControls.d.ts +3 -3
- package/dist/components/Table/TableControls/TableControls.js +12 -38
- package/dist/components/Table/TableControls/TableControls.tsx +51 -0
- package/dist/components/Table/TableControls/__stories__/CustomPaginationStandalone.stories.d.ts +2 -2
- package/dist/components/Table/TableControls/__stories__/CustomPaginationStandalone.stories.js +58 -0
- package/dist/components/Table/TableControls/__stories__/PaginationNumber.stories.d.ts +2 -2
- package/dist/components/Table/TableControls/__stories__/PaginationNumber.stories.js +37 -0
- package/dist/components/Table/TableControls/__stories__/TableControls.stories.d.ts +2 -2
- package/dist/components/Table/TableControls/__stories__/TableControls.stories.js +106 -0
- package/dist/components/Table/TableControls/__tests__/CustomPagination.test.js +82 -0
- package/dist/components/Table/TableControls/__tests__/TableControls.test.js +74 -0
- package/dist/components/Table/TableControls/index.d.ts +2 -2
- package/dist/components/Table/TableControls/index.js +1 -0
- package/dist/components/Table/TableControls/styles.d.ts +2 -2
- package/dist/components/Table/TableControls/styles.js +16 -0
- package/dist/components/Table/TablePagination.d.ts +2 -2
- package/dist/components/Table/TablePagination.js +9 -50
- package/dist/components/Table/__mocks__/table-mocks.d.ts +1 -1
- package/dist/components/Table/__mocks__/table-mocks.js +288 -290
- package/dist/components/Table/__stories__/GenesisTable.stories.d.ts +1 -1
- package/dist/components/Table/__stories__/GenesisTable.stories.js +23 -0
- package/dist/components/Table/__stories__/Table.stories.d.ts +2 -2
- package/dist/components/Table/__stories__/Table.stories.js +188 -0
- package/dist/components/Table/__tests__/table.test.js +47 -0
- package/dist/components/Table/index.d.ts +6 -6
- package/dist/components/Table/index.js +3 -0
- package/dist/components/Table/styles.d.ts +3 -17
- package/dist/components/Table/styles.js +13 -12
- package/dist/components/Table/useTable.d.ts +5 -2
- package/dist/components/Table/useTable.js +135 -75
- package/dist/components/Table/useTable.ts +194 -0
- package/dist/components/TableWithControls/TableWithControls.d.ts +2 -2
- package/dist/components/TableWithControls/TableWithControls.js +19 -41
- package/dist/components/TableWithControls/TableWithControls.tsx +54 -0
- package/dist/components/TableWithControls/__stories__/TableWithControls.stories.d.ts +2 -2
- package/dist/components/TableWithControls/__stories__/TableWithControls.stories.js +178 -0
- package/dist/components/TableWithControls/__stories__/TableWithControlsStory.js +55 -0
- package/dist/components/TableWithControls/__tests__/TableWithControls.test.js +41 -0
- package/dist/components/TableWithControls/index.d.ts +3 -3
- package/dist/components/TableWithControls/index.js +2 -0
- package/dist/components/TableWithControls/useTableWithControls.d.ts +5 -4
- package/dist/components/TableWithControls/useTableWithControls.js +128 -146
- package/dist/components/TableWithControls/useTableWithControls.tsx +161 -0
- package/dist/components/Tooltip/Tooltip.js +6 -23
- package/dist/components/Tooltip/index.d.ts +2 -2
- package/dist/components/Tooltip/index.js +1 -0
- package/dist/components/Tooltip/styles.d.ts +1 -14
- package/dist/components/Tooltip/styles.js +5 -9
- package/dist/components/Typography/Typography.d.ts +2 -2
- package/dist/components/Typography/Typography.js +14 -70
- package/dist/components/Typography/index.d.ts +2 -2
- package/dist/components/Typography/index.js +1 -0
- package/dist/components/Typography/styles.d.ts +3 -21
- package/dist/components/Typography/styles.js +20 -73
- package/dist/components/UtilityButton/UtilityButton.d.ts +1 -1
- package/dist/components/UtilityButton/UtilityButton.js +8 -29
- package/dist/components/UtilityButton/UtilityButton.tsx +36 -0
- package/dist/components/UtilityButton/index.d.ts +2 -2
- package/dist/components/UtilityButton/index.js +1 -0
- package/dist/components/index.d.ts +7 -74
- package/dist/components/index.ts +7 -0
- package/dist/components/shared/DropdownChevron.js +5 -25
- package/dist/constants/index.js +81 -91
- package/dist/constants/index.ts +98 -0
- package/dist/genesis-theme.types.d.ts +263 -0
- package/dist/genesis-theme.types.js +6 -0
- package/dist/index.d.ts +10 -6
- package/dist/index.js +88 -93
- package/dist/index.ts +10 -0
- package/dist/interface/appointment.d.ts +2 -2
- package/dist/interface/appointment.js +23 -0
- package/dist/styled.d.ts +1 -0
- package/dist/styled.js +44 -0
- package/dist/styles/design-tokens/variables.js +706 -395
- package/dist/styles/theme/genesis-theme.d.ts +1 -1
- package/dist/styles/theme/genesis-theme.js +1469 -1293
- package/dist/styles/theme/genesis-theme.types.js +6 -0
- package/dist/styles/theme/genesis-theme.types.ts +297 -0
- package/dist/styles/theme/index.d.ts +2 -2
- package/dist/styles/theme/index.js +1 -0
- package/dist/test/setup.d.ts +5 -2
- package/dist/test/setup.js +53 -0
- package/dist/test/setup.types.d.ts +1 -0
- package/dist/test/setup.types.js +1 -0
- package/dist/utils/icon-util.js +108 -98
- package/dist/utils/styled.d.ts +1 -1
- package/dist/utils/styled.js +44 -0
- package/dist/utils/styled.ts +52 -0
- package/package.json +4 -3
- package/dist/_virtual/_commonjsHelpers.cjs +0 -5
- package/dist/_virtual/_commonjsHelpers.js +0 -6
- package/dist/_virtual/advancedFormat.cjs +0 -6
- package/dist/_virtual/advancedFormat.js +0 -7
- package/dist/_virtual/advancedFormat2.cjs +0 -3
- package/dist/_virtual/advancedFormat2.js +0 -4
- package/dist/_virtual/customParseFormat.cjs +0 -6
- package/dist/_virtual/customParseFormat.js +0 -7
- package/dist/_virtual/customParseFormat2.cjs +0 -3
- package/dist/_virtual/customParseFormat2.js +0 -4
- package/dist/_virtual/dayjs.min.cjs +0 -6
- package/dist/_virtual/dayjs.min.js +0 -7
- package/dist/_virtual/dayjs.min2.cjs +0 -3
- package/dist/_virtual/dayjs.min2.js +0 -4
- package/dist/_virtual/index.cjs +0 -6
- package/dist/_virtual/index.js +0 -7
- package/dist/_virtual/index2.cjs +0 -3
- package/dist/_virtual/index2.js +0 -4
- package/dist/_virtual/index3.cjs +0 -4
- package/dist/_virtual/index3.js +0 -5
- package/dist/_virtual/index4.cjs +0 -3
- package/dist/_virtual/index4.js +0 -4
- package/dist/_virtual/index5.cjs +0 -6
- package/dist/_virtual/index5.js +0 -7
- package/dist/_virtual/index6.cjs +0 -6
- package/dist/_virtual/index6.js +0 -7
- package/dist/_virtual/index7.cjs +0 -6
- package/dist/_virtual/index7.js +0 -7
- package/dist/_virtual/index8.cjs +0 -3
- package/dist/_virtual/index8.js +0 -4
- package/dist/_virtual/localeData.cjs +0 -6
- package/dist/_virtual/localeData.js +0 -7
- package/dist/_virtual/localeData2.cjs +0 -3
- package/dist/_virtual/localeData2.js +0 -4
- package/dist/_virtual/react-is.development.cjs +0 -3
- package/dist/_virtual/react-is.development.js +0 -4
- package/dist/_virtual/react-is.production.min.cjs +0 -3
- package/dist/_virtual/react-is.production.min.js +0 -4
- package/dist/_virtual/utilities.cjs +0 -3
- package/dist/_virtual/utilities.js +0 -4
- package/dist/_virtual/weekOfYear.cjs +0 -6
- package/dist/_virtual/weekOfYear.js +0 -7
- package/dist/_virtual/weekOfYear2.cjs +0 -3
- package/dist/_virtual/weekOfYear2.js +0 -4
- package/dist/_virtual/weekYear.cjs +0 -6
- package/dist/_virtual/weekYear.js +0 -7
- package/dist/_virtual/weekYear2.cjs +0 -3
- package/dist/_virtual/weekYear2.js +0 -4
- package/dist/_virtual/weekday.cjs +0 -6
- package/dist/_virtual/weekday.js +0 -7
- package/dist/_virtual/weekday2.cjs +0 -3
- package/dist/_virtual/weekday2.js +0 -4
- package/dist/bundle.css +0 -1205
- package/dist/components/Avatar/Avatar.cjs +0 -75
- package/dist/components/Avatar/Avatar.d.ts +0 -16
- package/dist/components/Avatar/Avatar.js +0 -76
- package/dist/components/Avatar/__stories__/Avatar.stories.d.ts +0 -9
- package/dist/components/Avatar/index.d.ts +0 -2
- package/dist/components/Avatar/styles.cjs +0 -11
- package/dist/components/Avatar/styles.d.ts +0 -17
- package/dist/components/Avatar/styles.js +0 -12
- package/dist/components/Badge/Badge.cjs +0 -93
- package/dist/components/Badge/__stories__/Badge.stories.d.ts +0 -17
- package/dist/components/Badge/styles.cjs +0 -59
- package/dist/components/Breadcrumb/Breadcrumb.cjs +0 -9
- package/dist/components/Breadcrumb/Breadcrumb.d.ts +0 -7
- package/dist/components/Breadcrumb/Breadcrumb.js +0 -10
- package/dist/components/Breadcrumb/Breadcrumb.types.d.ts +0 -23
- package/dist/components/Breadcrumb/__stories__/Breadcrumb.stories.d.ts +0 -9
- package/dist/components/Breadcrumb/__tests__/Breadcrumb.test.d.ts +0 -1
- package/dist/components/Breadcrumb/index.d.ts +0 -4
- package/dist/components/Breadcrumb/styles.cjs +0 -69
- package/dist/components/Breadcrumb/styles.d.ts +0 -26
- package/dist/components/Breadcrumb/styles.js +0 -69
- package/dist/components/Button/Button.cjs +0 -35
- package/dist/components/Button/IconButton.cjs +0 -29
- package/dist/components/Button/icon-button-styles.cjs +0 -76
- package/dist/components/Button/styles.cjs +0 -125
- package/dist/components/Card/Card.cjs +0 -17
- package/dist/components/Card/Card.d.ts +0 -9
- package/dist/components/Card/Card.js +0 -18
- package/dist/components/Card/__stories__/Card.stories.d.ts +0 -7
- package/dist/components/Card/__tests__/Card.test.d.ts +0 -1
- package/dist/components/Card/index.d.ts +0 -2
- package/dist/components/Card/styles.cjs +0 -14
- package/dist/components/Card/styles.d.ts +0 -15
- package/dist/components/Card/styles.js +0 -15
- package/dist/components/Chat/Chat.cjs +0 -245
- package/dist/components/Chat/Chat.d.ts +0 -18
- package/dist/components/Chat/Chat.js +0 -246
- package/dist/components/Chat/Message.cjs +0 -96
- package/dist/components/Chat/Message.d.ts +0 -8
- package/dist/components/Chat/Message.js +0 -97
- package/dist/components/Chat/__stories__/Chat.stories.d.ts +0 -19
- package/dist/components/Chat/index.d.ts +0 -2
- package/dist/components/Checkbox/Checkbox.cjs +0 -28
- package/dist/components/Checkbox/Checkbox.d.ts +0 -9
- package/dist/components/Checkbox/Checkbox.js +0 -29
- package/dist/components/Checkbox/__stories__/Checkbox.stories.d.ts +0 -7
- package/dist/components/Checkbox/__tests__/Checkbox.test.d.ts +0 -1
- package/dist/components/Checkbox/index.d.ts +0 -2
- package/dist/components/Checkbox/styles.cjs +0 -9
- package/dist/components/Checkbox/styles.d.ts +0 -15
- package/dist/components/Checkbox/styles.js +0 -10
- package/dist/components/Dashboard/Dashboard.d.ts +0 -5
- package/dist/components/Dashboard/__mocks__/dashboard-data.d.ts +0 -13
- package/dist/components/Dashboard/__stories__/Dashboard.stories.d.ts +0 -6
- package/dist/components/Dashboard/__stories__/DashboardLayoutContent.d.ts +0 -2
- package/dist/components/Dashboard/__stories__/DashboardLayoutHeader.d.ts +0 -2
- package/dist/components/Dashboard/__stories__/DashboardLayoutStory.d.ts +0 -12
- package/dist/components/Dashboard/__stories__/charts/LineChart.d.ts +0 -12
- package/dist/components/Dashboard/__tests__/Dashboard.test.d.ts +0 -1
- package/dist/components/Dashboard/index.d.ts +0 -2
- package/dist/components/Dashboard/styles.d.ts +0 -13
- package/dist/components/DatePicker/DatePicker.cjs +0 -18
- package/dist/components/DatePicker/DatePicker.d.ts +0 -4
- package/dist/components/DatePicker/DatePicker.js +0 -19
- package/dist/components/DatePicker/__stories__/DatePicker.stories.d.ts +0 -9
- package/dist/components/DatePicker/__tests__/DatePicker.test.d.ts +0 -1
- package/dist/components/DatePicker/index.d.ts +0 -2
- package/dist/components/DateRangePicker/DateRangePicker.cjs +0 -20
- package/dist/components/DateRangePicker/DateRangePicker.d.ts +0 -4
- package/dist/components/DateRangePicker/DateRangePicker.js +0 -21
- package/dist/components/DateRangePicker/__stories__/DateRangePicker.stories.d.ts +0 -10
- package/dist/components/DateRangePicker/__tests__/DateRangePicker.test.d.ts +0 -1
- package/dist/components/DateRangePicker/index.d.ts +0 -2
- package/dist/components/ErrorBoundary/ErrorBoundary.cjs +0 -71
- package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +0 -19
- package/dist/components/ErrorBoundary/ErrorBoundary.js +0 -53
- package/dist/components/ErrorBoundary/__stories__/ErrorBoundary.stories.d.ts +0 -7
- package/dist/components/ErrorBoundary/__tests__/ErrorBoundary.test.d.ts +0 -1
- package/dist/components/ErrorBoundary/index.d.ts +0 -2
- package/dist/components/ErrorBoundary/styles.d.ts +0 -13
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.cjs +0 -37
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.d.ts +0 -8
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.js +0 -38
- package/dist/components/ErrorBoundaryFallback/__stories__/ErrorBoundaryFallback.stories.d.ts +0 -7
- package/dist/components/ErrorBoundaryFallback/index.d.ts +0 -2
- package/dist/components/ErrorBoundaryFallback/styles.cjs +0 -15
- package/dist/components/ErrorBoundaryFallback/styles.d.ts +0 -1
- package/dist/components/ErrorBoundaryFallback/styles.js +0 -16
- package/dist/components/Filters/Filter.d.ts +0 -23
- package/dist/components/Filters/FilterRow.d.ts +0 -8
- package/dist/components/Filters/Filters.d.ts +0 -8
- package/dist/components/Filters/__stories__/Filters.stories.d.ts +0 -7
- package/dist/components/Filters/__stories__/mock.d.ts +0 -5
- package/dist/components/Filters/__tests__/Filters.test.d.ts +0 -1
- package/dist/components/Filters/index.d.ts +0 -2
- package/dist/components/Filters/styles.d.ts +0 -28
- package/dist/components/Form/Form.cjs +0 -18
- package/dist/components/Form/Form.d.ts +0 -25
- package/dist/components/Form/Form.js +0 -18
- package/dist/components/Form/__stories__/Form.stories.d.ts +0 -6
- package/dist/components/Form/__stories__/FormStory.d.ts +0 -1
- package/dist/components/Form/__tests__/form.test.d.ts +0 -1
- package/dist/components/Form/index.d.ts +0 -2
- package/dist/components/Form/styles.cjs +0 -12
- package/dist/components/Form/styles.d.ts +0 -2
- package/dist/components/Form/styles.js +0 -13
- package/dist/components/Glyph/Glyph.d.ts +0 -4
- package/dist/components/Glyph/__stories__/Glyph.stories.d.ts +0 -6
- package/dist/components/Glyph/custom/UnitNumber.cjs +0 -51
- package/dist/components/Glyph/custom/UnitNumber.d.ts +0 -5
- package/dist/components/Glyph/custom/UnitNumber.js +0 -52
- package/dist/components/Glyph/custom/__stories__/UnitNumber.stories.d.ts +0 -7
- package/dist/components/Glyph/index.d.ts +0 -4
- package/dist/components/Glyph/styles.d.ts +0 -13
- package/dist/components/Input/Input.cjs +0 -56
- package/dist/components/Input/__stories__/Input.stories.d.ts +0 -14
- package/dist/components/Input/__tests__/Input.test.d.ts +0 -1
- package/dist/components/Input/styles.cjs +0 -187
- package/dist/components/Insights/BarChart/BarChart.cjs +0 -196
- package/dist/components/Insights/BarChart/BarChart.d.ts +0 -30
- package/dist/components/Insights/BarChart/BarChart.js +0 -197
- package/dist/components/Insights/BarChart/__stories__/BarChart.stories.d.ts +0 -7
- package/dist/components/Insights/BarChart/__tests__/BarChart.test.d.ts +0 -1
- package/dist/components/Insights/BarChart/index.d.ts +0 -2
- package/dist/components/Insights/BarChart/styles.cjs +0 -32
- package/dist/components/Insights/BarChart/styles.d.ts +0 -9
- package/dist/components/Insights/BarChart/styles.js +0 -33
- package/dist/components/Insights/DonutChart/DonutChart.cjs +0 -172
- package/dist/components/Insights/DonutChart/DonutChart.d.ts +0 -19
- package/dist/components/Insights/DonutChart/DonutChart.js +0 -173
- package/dist/components/Insights/DonutChart/__stories__/DonutChart.stories.d.ts +0 -8
- package/dist/components/Insights/DonutChart/__tests__/DonutChart.test.d.ts +0 -1
- package/dist/components/Insights/DonutChart/index.d.ts +0 -2
- package/dist/components/Insights/DonutChart/styles.cjs +0 -28
- package/dist/components/Insights/DonutChart/styles.d.ts +0 -9
- package/dist/components/Insights/DonutChart/styles.js +0 -29
- package/dist/components/Insights/LineChart/LineChart.cjs +0 -167
- package/dist/components/Insights/LineChart/LineChart.d.ts +0 -23
- package/dist/components/Insights/LineChart/LineChart.js +0 -168
- package/dist/components/Insights/LineChart/__stories__/LineChart.stories.d.ts +0 -6
- package/dist/components/Insights/LineChart/__tests__/LineChart.test.d.ts +0 -1
- package/dist/components/Insights/LineChart/index.d.ts +0 -2
- package/dist/components/Insights/LineChart/styles.cjs +0 -32
- package/dist/components/Insights/LineChart/styles.d.ts +0 -9
- package/dist/components/Insights/LineChart/styles.js +0 -33
- package/dist/components/Insights/__stories__/InsightsDrawer.stories.d.ts +0 -12
- package/dist/components/Insights/index.d.ts +0 -6
- package/dist/components/Layout/Content/Content.cjs +0 -24
- package/dist/components/Layout/Content/Content.d.ts +0 -10
- package/dist/components/Layout/Content/Content.js +0 -24
- package/dist/components/Layout/Content/ResponsiveContent.d.ts +0 -7
- package/dist/components/Layout/Content/index.d.ts +0 -2
- package/dist/components/Layout/Content/styles.cjs +0 -18
- package/dist/components/Layout/Content/styles.d.ts +0 -10
- package/dist/components/Layout/Content/styles.js +0 -19
- package/dist/components/Layout/Layout.cjs +0 -7
- package/dist/components/Layout/Layout.d.ts +0 -8
- package/dist/components/Layout/Layout.js +0 -8
- package/dist/components/Layout/MainLayout/MainLayout.d.ts +0 -9
- package/dist/components/Layout/MainLayout/__stories__/MainLayout.stories.d.ts +0 -8
- package/dist/components/Layout/MainLayout/index.d.ts +0 -2
- package/dist/components/Layout/MainLayout/styles.d.ts +0 -4
- package/dist/components/Layout/__stories__/Layout.stories.d.ts +0 -6
- package/dist/components/Layout/__tests__/Layout.test.d.ts +0 -1
- package/dist/components/Layout/index.d.ts +0 -2
- package/dist/components/Message/Message.cjs +0 -97
- package/dist/components/Message/Message.d.ts +0 -14
- package/dist/components/Message/Message.js +0 -98
- package/dist/components/Message/__stories__/Message.stories.d.ts +0 -14
- package/dist/components/Message/__tests__/Message.test.d.ts +0 -1
- package/dist/components/Message/index.d.ts +0 -2
- package/dist/components/Message/styles.cjs +0 -46
- package/dist/components/Message/styles.d.ts +0 -9
- package/dist/components/Message/styles.js +0 -47
- package/dist/components/Notification/Notification.cjs +0 -94
- package/dist/components/Notification/Notification.d.ts +0 -17
- package/dist/components/Notification/Notification.js +0 -95
- package/dist/components/Notification/NotificationBadge/NotificationBadge.cjs +0 -59
- package/dist/components/Notification/NotificationBadge/NotificationBadge.d.ts +0 -6
- package/dist/components/Notification/NotificationBadge/NotificationBadge.js +0 -60
- package/dist/components/Notification/NotificationBadge/__stories__/NotificationBadge.stories.d.ts +0 -12
- package/dist/components/Notification/NotificationBadge/__tests__/NotificationBadge.test.d.ts +0 -1
- package/dist/components/Notification/NotificationBadge/icons/ASN.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/ASN.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/ASN.js +0 -23
- package/dist/components/Notification/NotificationBadge/icons/Appointment.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/Appointment.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/Appointment.js +0 -23
- package/dist/components/Notification/NotificationBadge/icons/Inventory.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/Inventory.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/Inventory.js +0 -23
- package/dist/components/Notification/NotificationBadge/icons/Parcel.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/Parcel.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/Parcel.js +0 -23
- package/dist/components/Notification/NotificationBadge/icons/Product.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/Product.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/Product.js +0 -23
- package/dist/components/Notification/NotificationBadge/icons/Route.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/Route.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/Route.js +0 -23
- package/dist/components/Notification/NotificationBadge/icons/Shipment.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/Shipment.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/Shipment.js +0 -23
- package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.js +0 -23
- package/dist/components/Notification/NotificationBadge/icons/System.cjs +0 -22
- package/dist/components/Notification/NotificationBadge/icons/System.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/icons/System.js +0 -23
- package/dist/components/Notification/NotificationBadge/index.d.ts +0 -2
- package/dist/components/Notification/NotificationBadge/styles.cjs +0 -49
- package/dist/components/Notification/NotificationBadge/styles.d.ts +0 -3
- package/dist/components/Notification/NotificationBadge/styles.js +0 -50
- package/dist/components/Notification/NotificationRightChevron.cjs +0 -22
- package/dist/components/Notification/NotificationRightChevron.d.ts +0 -2
- package/dist/components/Notification/NotificationRightChevron.js +0 -23
- package/dist/components/Notification/__stories__/Notification.stories.d.ts +0 -9
- package/dist/components/Notification/__tests__/Notification.test.d.ts +0 -1
- package/dist/components/Notification/index.d.ts +0 -2
- package/dist/components/Notification/styles.cjs +0 -70
- package/dist/components/Notification/styles.d.ts +0 -16
- package/dist/components/Notification/styles.js +0 -71
- package/dist/components/Popover/Popover.cjs +0 -25
- package/dist/components/Popover/Popover.d.ts +0 -10
- package/dist/components/Popover/Popover.js +0 -26
- package/dist/components/Popover/__stories__/Popover.stories.d.ts +0 -6
- package/dist/components/Popover/__tests__/Popover.test.d.ts +0 -1
- package/dist/components/Popover/index.d.ts +0 -2
- package/dist/components/Popover/styles.cjs +0 -11
- package/dist/components/Popover/styles.d.ts +0 -14
- package/dist/components/Popover/styles.js +0 -12
- package/dist/components/Progress/Progress.cjs +0 -64
- package/dist/components/Progress/Progress.d.ts +0 -18
- package/dist/components/Progress/Progress.js +0 -65
- package/dist/components/Progress/Progress.util.cjs +0 -42
- package/dist/components/Progress/Progress.util.d.ts +0 -3
- package/dist/components/Progress/Progress.util.js +0 -43
- package/dist/components/Progress/ProgressText.cjs +0 -41
- package/dist/components/Progress/ProgressText.d.ts +0 -10
- package/dist/components/Progress/ProgressText.js +0 -42
- package/dist/components/Progress/__stories__/Progress.stories.d.ts +0 -11
- package/dist/components/Progress/__tests__/Progress.test.d.ts +0 -1
- package/dist/components/Progress/index.d.ts +0 -2
- package/dist/components/Progress/styles.cjs +0 -11
- package/dist/components/Progress/styles.d.ts +0 -16
- package/dist/components/Progress/styles.js +0 -12
- package/dist/components/Radio/Radio.cjs +0 -120
- package/dist/components/Radio/Radio.d.ts +0 -13
- package/dist/components/Radio/Radio.js +0 -120
- package/dist/components/Radio/RadioGroup.cjs +0 -34
- package/dist/components/Radio/RadioGroup.d.ts +0 -12
- package/dist/components/Radio/RadioGroup.js +0 -35
- package/dist/components/Radio/__stories__/RadioGroup.stories.d.ts +0 -8
- package/dist/components/Radio/__tests__/RadioGroup.test.d.ts +0 -1
- package/dist/components/Radio/index.d.ts +0 -4
- package/dist/components/Radio/states/RadioChecked.cjs +0 -17
- package/dist/components/Radio/states/RadioChecked.d.ts +0 -2
- package/dist/components/Radio/states/RadioChecked.js +0 -18
- package/dist/components/Radio/states/RadioCheckedDisabled.cjs +0 -17
- package/dist/components/Radio/states/RadioCheckedDisabled.d.ts +0 -2
- package/dist/components/Radio/states/RadioCheckedDisabled.js +0 -18
- package/dist/components/Radio/states/RadioCheckedFocussed.cjs +0 -29
- package/dist/components/Radio/states/RadioCheckedFocussed.d.ts +0 -2
- package/dist/components/Radio/states/RadioCheckedFocussed.js +0 -30
- package/dist/components/Radio/states/RadioCheckedHover.cjs +0 -17
- package/dist/components/Radio/states/RadioCheckedHover.d.ts +0 -2
- package/dist/components/Radio/states/RadioCheckedHover.js +0 -18
- package/dist/components/Radio/states/RadioUnchecked.cjs +0 -14
- package/dist/components/Radio/states/RadioUnchecked.d.ts +0 -2
- package/dist/components/Radio/states/RadioUnchecked.js +0 -15
- package/dist/components/Radio/states/RadioUncheckedDisabled.cjs +0 -14
- package/dist/components/Radio/states/RadioUncheckedDisabled.d.ts +0 -2
- package/dist/components/Radio/states/RadioUncheckedDisabled.js +0 -15
- package/dist/components/Radio/states/RadioUncheckedFocussed.cjs +0 -28
- package/dist/components/Radio/states/RadioUncheckedFocussed.d.ts +0 -2
- package/dist/components/Radio/states/RadioUncheckedFocussed.js +0 -29
- package/dist/components/Radio/states/RadioUncheckedHover.cjs +0 -17
- package/dist/components/Radio/states/RadioUncheckedHover.d.ts +0 -2
- package/dist/components/Radio/states/RadioUncheckedHover.js +0 -18
- package/dist/components/Row/Row.cjs +0 -39
- package/dist/components/Row/Row.d.ts +0 -13
- package/dist/components/Row/Row.js +0 -40
- package/dist/components/Row/RowActions/RowActions.cjs +0 -24
- package/dist/components/Row/RowActions/RowActions.d.ts +0 -9
- package/dist/components/Row/RowActions/RowActions.js +0 -25
- package/dist/components/Row/RowActions/styles.cjs +0 -10
- package/dist/components/Row/RowActions/styles.d.ts +0 -1
- package/dist/components/Row/RowActions/styles.js +0 -11
- package/dist/components/Row/RowLabelValue/RowLabelValue.cjs +0 -42
- package/dist/components/Row/RowLabelValue/RowLabelValue.d.ts +0 -10
- package/dist/components/Row/RowLabelValue/RowLabelValue.js +0 -43
- package/dist/components/Row/RowLabelValue/RowSkeleton.cjs +0 -28
- package/dist/components/Row/RowLabelValue/RowSkeleton.d.ts +0 -3
- package/dist/components/Row/RowLabelValue/RowSkeleton.js +0 -29
- package/dist/components/Row/RowLabelValue/styles.cjs +0 -31
- package/dist/components/Row/RowLabelValue/styles.d.ts +0 -15
- package/dist/components/Row/RowLabelValue/styles.js +0 -32
- package/dist/components/Row/__stories__/Row.stories.d.ts +0 -12
- package/dist/components/Row/__tests__/Row.test.d.ts +0 -1
- package/dist/components/Row/index.d.ts +0 -2
- package/dist/components/Row/styles.cjs +0 -20
- package/dist/components/Row/styles.d.ts +0 -14
- package/dist/components/Row/styles.js +0 -21
- package/dist/components/SegmentedControls/SegmentedControls.cjs +0 -25
- package/dist/components/SegmentedControls/SegmentedControls.d.ts +0 -12
- package/dist/components/SegmentedControls/SegmentedControls.js +0 -26
- package/dist/components/SegmentedControls/__stories__/SegmentedControls.stories.d.ts +0 -8
- package/dist/components/SegmentedControls/__tests__/SegmentedControls.test.d.ts +0 -1
- package/dist/components/SegmentedControls/index.d.ts +0 -2
- package/dist/components/SegmentedControls/styles.cjs +0 -44
- package/dist/components/SegmentedControls/styles.d.ts +0 -11
- package/dist/components/SegmentedControls/styles.js +0 -45
- package/dist/components/Select/Select.cjs +0 -218
- package/dist/components/Select/SelectTrigger.cjs +0 -124
- package/dist/components/Select/__stories__/Select.stories.d.ts +0 -11
- package/dist/components/Shapes/Shapes.cjs +0 -15
- package/dist/components/Shapes/Shapes.d.ts +0 -6
- package/dist/components/Shapes/Shapes.js +0 -16
- package/dist/components/Shapes/__stories__/Shapes.stories.d.ts +0 -8
- package/dist/components/Shapes/__tests__/Shapes.test.d.ts +0 -1
- package/dist/components/Shapes/index.d.ts +0 -2
- package/dist/components/Shapes/variants/Circle.cjs +0 -22
- package/dist/components/Shapes/variants/Circle.d.ts +0 -5
- package/dist/components/Shapes/variants/Circle.js +0 -23
- package/dist/components/Shapes/variants/Rectangle.cjs +0 -22
- package/dist/components/Shapes/variants/Rectangle.d.ts +0 -5
- package/dist/components/Shapes/variants/Rectangle.js +0 -23
- package/dist/components/Shapes/variants/Triangle.cjs +0 -22
- package/dist/components/Shapes/variants/Triangle.d.ts +0 -5
- package/dist/components/Shapes/variants/Triangle.js +0 -23
- package/dist/components/Stories/position-checker.d.ts +0 -6
- package/dist/components/Switch/Switch.cjs +0 -23
- package/dist/components/Switch/Switch.d.ts +0 -9
- package/dist/components/Switch/Switch.js +0 -24
- package/dist/components/Switch/__stories__/Switch.stories.d.ts +0 -8
- package/dist/components/Switch/__tests__/Switch.test.d.ts +0 -1
- package/dist/components/Switch/index.d.ts +0 -2
- package/dist/components/Switch/styles.cjs +0 -65
- package/dist/components/Switch/styles.d.ts +0 -8
- package/dist/components/Switch/styles.js +0 -65
- package/dist/components/Table/Table.cjs +0 -45
- package/dist/components/Table/TableControls/CustomPagination.cjs +0 -321
- package/dist/components/Table/TableControls/PaginationNumber.cjs +0 -42
- package/dist/components/Table/TableControls/PrimaryTableControlsRow.cjs +0 -162
- package/dist/components/Table/TableControls/SecondaryTableControlsRow.cjs +0 -80
- package/dist/components/Table/TableControls/TableControls.cjs +0 -38
- package/dist/components/Table/TablePagination.cjs +0 -51
- package/dist/components/Table/__mocks__/table-mocks.cjs +0 -302
- package/dist/components/Table/styles.cjs +0 -62
- package/dist/components/Table/useTable.cjs +0 -80
- package/dist/components/TableWithControls/TableWithControls.cjs +0 -41
- package/dist/components/TableWithControls/useTableWithControls.cjs +0 -153
- package/dist/components/Tabs/Tabs.cjs +0 -21
- package/dist/components/Tabs/Tabs.d.ts +0 -50
- package/dist/components/Tabs/Tabs.js +0 -22
- package/dist/components/Tabs/__stories__/Tabs.stories.d.ts +0 -9
- package/dist/components/Tabs/__tests__/Tabs.test.d.ts +0 -1
- package/dist/components/Tabs/index.d.ts +0 -2
- package/dist/components/Tabs/styles.cjs +0 -104
- package/dist/components/Tabs/styles.d.ts +0 -11
- package/dist/components/Tabs/styles.js +0 -105
- package/dist/components/Tile/Tile.cjs +0 -22
- package/dist/components/Tile/Tile.d.ts +0 -10
- package/dist/components/Tile/Tile.js +0 -23
- package/dist/components/Tile/__stories__/Tile.stories.d.ts +0 -6
- package/dist/components/Tile/__tests__/Tile.test.d.ts +0 -1
- package/dist/components/Tile/index.d.ts +0 -2
- package/dist/components/Tile/styles.cjs +0 -14
- package/dist/components/Tile/styles.d.ts +0 -10
- package/dist/components/Tile/styles.js +0 -15
- package/dist/components/Toast/Toast.cjs +0 -100
- package/dist/components/Toast/Toast.d.ts +0 -13
- package/dist/components/Toast/Toast.js +0 -101
- package/dist/components/Toast/__stories__/Toast.stories.d.ts +0 -15
- package/dist/components/Toast/__tests__/Toast.test.d.ts +0 -1
- package/dist/components/Toast/index.d.ts +0 -2
- package/dist/components/Toast/styles.cjs +0 -46
- package/dist/components/Toast/styles.d.ts +0 -9
- package/dist/components/Toast/styles.js +0 -47
- package/dist/components/Tooltip/Tooltip.cjs +0 -24
- package/dist/components/Tooltip/__stories__/Tooltip.stories.d.ts +0 -7
- package/dist/components/Tooltip/__tests__/Tooltip.test.d.ts +0 -1
- package/dist/components/Tooltip/styles.cjs +0 -29
- package/dist/components/Typography/Typography.cjs +0 -71
- package/dist/components/Typography/__stories__/Typography.stories.d.ts +0 -13
- package/dist/components/Typography/__tests__/Typography.test.d.ts +0 -1
- package/dist/components/Typography/styles.cjs +0 -106
- package/dist/components/UtilityButton/UtilityButton.cjs +0 -29
- package/dist/components/shared/DropdownChevron.cjs +0 -26
- package/dist/constants/index.cjs +0 -99
- package/dist/genesis/GenesisThemeBreakdown.d.ts +0 -3
- package/dist/genesis/GenesisThemeDemo.d.ts +0 -5
- package/dist/genesis/GenesisThemeDemo.stories.d.ts +0 -6
- package/dist/genesis/Lab.stories.d.ts +0 -5
- package/dist/genesis/styles.d.ts +0 -11
- package/dist/index.cjs +0 -93
- package/dist/interface/appointmentV2.d.ts +0 -64
- package/dist/interface/appointmentsState.d.ts +0 -20
- package/dist/interface/common.d.ts +0 -2
- package/dist/interface/completionData.d.ts +0 -18
- package/dist/interface/deliveryPartner.d.ts +0 -24
- package/dist/interface/organization.d.ts +0 -9
- package/dist/interface/pagination.d.ts +0 -8
- package/dist/interface/roles.d.ts +0 -9
- package/dist/interface/route.d.ts +0 -72
- package/dist/interface/routeAnalysis.d.ts +0 -107
- package/dist/interface/routeAutomationJob.d.ts +0 -94
- package/dist/interface/routeAutomationLog.d.ts +0 -9
- package/dist/interface/routeEvent.d.ts +0 -55
- package/dist/interface/serviceArea.d.ts +0 -17
- package/dist/interface/util.d.ts +0 -3
- package/dist/interface/vehicle.d.ts +0 -119
- package/dist/interface/workOrder.d.ts +0 -22
- package/dist/node_modules/@ant-design/colors/es/generate.cjs +0 -120
- package/dist/node_modules/@ant-design/colors/es/generate.js +0 -121
- package/dist/node_modules/@ant-design/colors/es/presets.cjs +0 -72
- package/dist/node_modules/@ant-design/colors/es/presets.js +0 -73
- package/dist/node_modules/@ant-design/cssinjs/es/Cache.cjs +0 -49
- package/dist/node_modules/@ant-design/cssinjs/es/Cache.js +0 -49
- package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.cjs +0 -23
- package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.js +0 -24
- package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.cjs +0 -65
- package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.js +0 -46
- package/dist/node_modules/@ant-design/cssinjs/es/extractStyle.cjs +0 -11
- package/dist/node_modules/@ant-design/cssinjs/es/extractStyle.js +0 -10
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCSSVarRegister.cjs +0 -67
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCSSVarRegister.js +0 -67
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.cjs +0 -124
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.js +0 -124
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.cjs +0 -38
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.js +0 -20
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.cjs +0 -57
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.js +0 -39
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.cjs +0 -90
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.js +0 -72
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useHMR.cjs +0 -23
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useHMR.js +0 -24
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useStyleRegister.cjs +0 -330
- package/dist/node_modules/@ant-design/cssinjs/es/hooks/useStyleRegister.js +0 -311
- package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.cjs +0 -12
- package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.js +0 -13
- package/dist/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.cjs +0 -10
- package/dist/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.js +0 -11
- package/dist/node_modules/@ant-design/cssinjs/es/linters/utils.cjs +0 -7
- package/dist/node_modules/@ant-design/cssinjs/es/linters/utils.js +0 -8
- package/dist/node_modules/@ant-design/cssinjs/es/theme/Theme.cjs +0 -29
- package/dist/node_modules/@ant-design/cssinjs/es/theme/Theme.js +0 -30
- package/dist/node_modules/@ant-design/cssinjs/es/theme/ThemeCache.cjs +0 -139
- package/dist/node_modules/@ant-design/cssinjs/es/theme/ThemeCache.js +0 -139
- package/dist/node_modules/@ant-design/cssinjs/es/theme/createTheme.cjs +0 -12
- package/dist/node_modules/@ant-design/cssinjs/es/theme/createTheme.js +0 -13
- package/dist/node_modules/@ant-design/cssinjs/es/transformers/legacyLogicalProperties.cjs +0 -14
- package/dist/node_modules/@ant-design/cssinjs/es/transformers/legacyLogicalProperties.js +0 -13
- package/dist/node_modules/@ant-design/cssinjs/es/util/cacheMapUtil.cjs +0 -60
- package/dist/node_modules/@ant-design/cssinjs/es/util/cacheMapUtil.js +0 -61
- package/dist/node_modules/@ant-design/cssinjs/es/util/css-variables.cjs +0 -37
- package/dist/node_modules/@ant-design/cssinjs/es/util/css-variables.js +0 -38
- package/dist/node_modules/@ant-design/cssinjs/es/util/index.cjs +0 -78
- package/dist/node_modules/@ant-design/cssinjs/es/util/index.js +0 -79
- package/dist/node_modules/@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.cjs +0 -87
- package/dist/node_modules/@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.js +0 -88
- package/dist/node_modules/@ant-design/cssinjs-utils/es/hooks/useCSP.cjs +0 -5
- package/dist/node_modules/@ant-design/cssinjs-utils/es/hooks/useCSP.js +0 -6
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/CSSCalculator.cjs +0 -116
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/CSSCalculator.js +0 -117
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/NumCalculator.cjs +0 -72
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/NumCalculator.js +0 -73
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/calculator.cjs +0 -7
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/calculator.js +0 -8
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/index.cjs +0 -10
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/index.js +0 -11
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/genStyleUtils.cjs +0 -204
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/genStyleUtils.js +0 -205
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getCompVarPrefix.cjs +0 -5
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getCompVarPrefix.js +0 -6
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getComponentToken.cjs +0 -31
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getComponentToken.js +0 -32
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getDefaultComponentToken.cjs +0 -10
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getDefaultComponentToken.js +0 -11
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/maxmin.cjs +0 -40
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/maxmin.js +0 -41
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/statistic.cjs +0 -68
- package/dist/node_modules/@ant-design/cssinjs-utils/es/util/statistic.js +0 -68
- package/dist/node_modules/@ant-design/fast-color/es/FastColor.cjs +0 -473
- package/dist/node_modules/@ant-design/fast-color/es/FastColor.js +0 -474
- package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.cjs +0 -65
- package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.js +0 -47
- package/dist/node_modules/@ant-design/icons/es/components/Context.cjs +0 -4
- package/dist/node_modules/@ant-design/icons/es/components/Context.js +0 -5
- package/dist/node_modules/@ant-design/icons/es/components/IconBase.cjs +0 -77
- package/dist/node_modules/@ant-design/icons/es/components/IconBase.js +0 -59
- package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.cjs +0 -20
- package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.js +0 -21
- package/dist/node_modules/@ant-design/icons/es/icons/BarsOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/BarsOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CalendarOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CalendarOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CaretUpOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CaretUpOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleLeftOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleLeftOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleRightOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/DoubleRightOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/EllipsisOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/EllipsisOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/EnterOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/EnterOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/FileOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/FileOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/FilterFilled.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/FilterFilled.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOpenOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOpenOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/FolderOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/HolderOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/HolderOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/MinusSquareOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/MinusSquareOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/PlusSquareOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/PlusSquareOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/QuestionCircleOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/QuestionCircleOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/icons/WarningFilled.cjs +0 -35
- package/dist/node_modules/@ant-design/icons/es/icons/WarningFilled.js +0 -17
- package/dist/node_modules/@ant-design/icons/es/utils.cjs +0 -88
- package/dist/node_modules/@ant-design/icons/es/utils.js +0 -89
- package/dist/node_modules/@ant-design/icons-svg/es/asn/BarsOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/BarsOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CalendarOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CalendarOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownFilled.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownFilled.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretUpOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretUpOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleFilled.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleFilled.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleFilled.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleFilled.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CopyOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/CopyOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleLeftOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleLeftOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleRightOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleRightOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DownOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/DownOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EditOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EditOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EllipsisOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EllipsisOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EnterOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EnterOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleFilled.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleFilled.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeInvisibleOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeInvisibleOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FileOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FileOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FilterFilled.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FilterFilled.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOpenOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOpenOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/HolderOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/HolderOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LeftOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LeftOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LoadingOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/LoadingOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusSquareOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusSquareOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusSquareOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusSquareOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/QuestionCircleOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/QuestionCircleOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/RightOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/RightOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SearchOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SearchOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SwapRightOutlined.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/SwapRightOutlined.js +0 -4
- package/dist/node_modules/@ant-design/icons-svg/es/asn/WarningFilled.cjs +0 -3
- package/dist/node_modules/@ant-design/icons-svg/es/asn/WarningFilled.js +0 -4
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.cjs +0 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +0 -8
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.cjs +0 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +0 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.cjs +0 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +0 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.cjs +0 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +0 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.cjs +0 -25
- package/dist/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +0 -26
- package/dist/node_modules/@babel/runtime/helpers/esm/classCallCheck.cjs +0 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +0 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/construct.cjs +0 -11
- package/dist/node_modules/@babel/runtime/helpers/esm/construct.js +0 -12
- package/dist/node_modules/@babel/runtime/helpers/esm/createClass.cjs +0 -14
- package/dist/node_modules/@babel/runtime/helpers/esm/createClass.js +0 -15
- package/dist/node_modules/@babel/runtime/helpers/esm/createSuper.cjs +0 -16
- package/dist/node_modules/@babel/runtime/helpers/esm/createSuper.js +0 -17
- package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.cjs +0 -11
- package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.js +0 -12
- package/dist/node_modules/@babel/runtime/helpers/esm/extends.cjs +0 -11
- package/dist/node_modules/@babel/runtime/helpers/esm/extends.js +0 -12
- package/dist/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.cjs +0 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +0 -8
- package/dist/node_modules/@babel/runtime/helpers/esm/inherits.cjs +0 -15
- package/dist/node_modules/@babel/runtime/helpers/esm/inherits.js +0 -16
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeFunction.cjs +0 -9
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +0 -10
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.cjs +0 -12
- package/dist/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +0 -13
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArray.cjs +0 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +0 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.cjs +0 -23
- package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +0 -24
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableRest.cjs +0 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +0 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.cjs +0 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +0 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.cjs +0 -5
- package/dist/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +0 -6
- package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.cjs +0 -24
- package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +0 -25
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.cjs +0 -12
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +0 -13
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.cjs +0 -11
- package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +0 -12
- package/dist/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.cjs +0 -9
- package/dist/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +0 -10
- package/dist/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.cjs +0 -287
- package/dist/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js +0 -288
- package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.cjs +0 -7
- package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +0 -8
- package/dist/node_modules/@babel/runtime/helpers/esm/slicedToArray.cjs +0 -9
- package/dist/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +0 -10
- package/dist/node_modules/@babel/runtime/helpers/esm/toArray.cjs +0 -9
- package/dist/node_modules/@babel/runtime/helpers/esm/toArray.js +0 -10
- package/dist/node_modules/@babel/runtime/helpers/esm/toConsumableArray.cjs +0 -9
- package/dist/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +0 -10
- package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.cjs +0 -13
- package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +0 -14
- package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.cjs +0 -8
- package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +0 -9
- package/dist/node_modules/@babel/runtime/helpers/esm/typeof.cjs +0 -10
- package/dist/node_modules/@babel/runtime/helpers/esm/typeof.js +0 -11
- package/dist/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.cjs +0 -10
- package/dist/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +0 -11
- package/dist/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.cjs +0 -28
- package/dist/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +0 -29
- package/dist/node_modules/@emotion/hash/dist/hash.browser.esm.cjs +0 -30
- package/dist/node_modules/@emotion/hash/dist/hash.browser.esm.js +0 -31
- package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.cjs +0 -50
- package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.js +0 -51
- package/dist/node_modules/@fontsource/inter/300.css.cjs +0 -1
- package/dist/node_modules/@fontsource/inter/300.css.js +0 -1
- package/dist/node_modules/@fontsource/inter/400.css.cjs +0 -1
- package/dist/node_modules/@fontsource/inter/400.css.js +0 -1
- package/dist/node_modules/@fontsource/inter/500.css.cjs +0 -1
- package/dist/node_modules/@fontsource/inter/500.css.js +0 -1
- package/dist/node_modules/@fontsource/inter/600.css.cjs +0 -1
- package/dist/node_modules/@fontsource/inter/600.css.js +0 -1
- package/dist/node_modules/@fontsource/inter/700.css.cjs +0 -1
- package/dist/node_modules/@fontsource/inter/700.css.js +0 -1
- package/dist/node_modules/@fontsource/roboto-mono/400.css.cjs +0 -1
- package/dist/node_modules/@fontsource/roboto-mono/400.css.js +0 -1
- package/dist/node_modules/@rc-component/async-validator/es/index.cjs +0 -276
- package/dist/node_modules/@rc-component/async-validator/es/index.js +0 -277
- package/dist/node_modules/@rc-component/async-validator/es/messages.cjs +0 -58
- package/dist/node_modules/@rc-component/async-validator/es/messages.js +0 -59
- package/dist/node_modules/@rc-component/async-validator/es/rule/enum.cjs +0 -10
- package/dist/node_modules/@rc-component/async-validator/es/rule/enum.js +0 -11
- package/dist/node_modules/@rc-component/async-validator/es/rule/index.cjs +0 -16
- package/dist/node_modules/@rc-component/async-validator/es/rule/index.js +0 -17
- package/dist/node_modules/@rc-component/async-validator/es/rule/pattern.cjs +0 -18
- package/dist/node_modules/@rc-component/async-validator/es/rule/pattern.js +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/rule/range.cjs +0 -41
- package/dist/node_modules/@rc-component/async-validator/es/rule/range.js +0 -42
- package/dist/node_modules/@rc-component/async-validator/es/rule/required.cjs +0 -8
- package/dist/node_modules/@rc-component/async-validator/es/rule/required.js +0 -9
- package/dist/node_modules/@rc-component/async-validator/es/rule/type.cjs +0 -75
- package/dist/node_modules/@rc-component/async-validator/es/rule/type.js +0 -76
- package/dist/node_modules/@rc-component/async-validator/es/rule/url.cjs +0 -58
- package/dist/node_modules/@rc-component/async-validator/es/rule/url.js +0 -59
- package/dist/node_modules/@rc-component/async-validator/es/rule/whitespace.cjs +0 -8
- package/dist/node_modules/@rc-component/async-validator/es/rule/whitespace.js +0 -9
- package/dist/node_modules/@rc-component/async-validator/es/util.cjs +0 -244
- package/dist/node_modules/@rc-component/async-validator/es/util.js +0 -246
- package/dist/node_modules/@rc-component/async-validator/es/validator/any.cjs +0 -15
- package/dist/node_modules/@rc-component/async-validator/es/validator/any.js +0 -16
- package/dist/node_modules/@rc-component/async-validator/es/validator/array.cjs +0 -18
- package/dist/node_modules/@rc-component/async-validator/es/validator/array.js +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/boolean.cjs +0 -18
- package/dist/node_modules/@rc-component/async-validator/es/validator/boolean.js +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/date.cjs +0 -27
- package/dist/node_modules/@rc-component/async-validator/es/validator/date.js +0 -28
- package/dist/node_modules/@rc-component/async-validator/es/validator/enum.cjs +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/enum.js +0 -20
- package/dist/node_modules/@rc-component/async-validator/es/validator/float.cjs +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/float.js +0 -20
- package/dist/node_modules/@rc-component/async-validator/es/validator/index.cjs +0 -36
- package/dist/node_modules/@rc-component/async-validator/es/validator/index.js +0 -37
- package/dist/node_modules/@rc-component/async-validator/es/validator/integer.cjs +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/integer.js +0 -20
- package/dist/node_modules/@rc-component/async-validator/es/validator/method.cjs +0 -18
- package/dist/node_modules/@rc-component/async-validator/es/validator/method.js +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/number.cjs +0 -22
- package/dist/node_modules/@rc-component/async-validator/es/validator/number.js +0 -23
- package/dist/node_modules/@rc-component/async-validator/es/validator/object.cjs +0 -18
- package/dist/node_modules/@rc-component/async-validator/es/validator/object.js +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/pattern.cjs +0 -18
- package/dist/node_modules/@rc-component/async-validator/es/validator/pattern.js +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/regexp.cjs +0 -18
- package/dist/node_modules/@rc-component/async-validator/es/validator/regexp.js +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/required.cjs +0 -10
- package/dist/node_modules/@rc-component/async-validator/es/validator/required.js +0 -11
- package/dist/node_modules/@rc-component/async-validator/es/validator/string.cjs +0 -23
- package/dist/node_modules/@rc-component/async-validator/es/validator/string.js +0 -24
- package/dist/node_modules/@rc-component/async-validator/es/validator/type.cjs +0 -19
- package/dist/node_modules/@rc-component/async-validator/es/validator/type.js +0 -20
- package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.cjs +0 -125
- package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.js +0 -126
- package/dist/node_modules/@rc-component/color-picker/es/color.cjs +0 -61
- package/dist/node_modules/@rc-component/color-picker/es/color.js +0 -62
- package/dist/node_modules/@rc-component/color-picker/es/components/ColorBlock.cjs +0 -18
- package/dist/node_modules/@rc-component/color-picker/es/components/ColorBlock.js +0 -19
- package/dist/node_modules/@rc-component/color-picker/es/components/Gradient.cjs +0 -25
- package/dist/node_modules/@rc-component/color-picker/es/components/Gradient.js +0 -26
- package/dist/node_modules/@rc-component/color-picker/es/components/Handler.cjs +0 -14
- package/dist/node_modules/@rc-component/color-picker/es/components/Handler.js +0 -15
- package/dist/node_modules/@rc-component/color-picker/es/components/Palette.cjs +0 -13
- package/dist/node_modules/@rc-component/color-picker/es/components/Palette.js +0 -14
- package/dist/node_modules/@rc-component/color-picker/es/components/Picker.cjs +0 -63
- package/dist/node_modules/@rc-component/color-picker/es/components/Picker.js +0 -64
- package/dist/node_modules/@rc-component/color-picker/es/components/Slider.cjs +0 -86
- package/dist/node_modules/@rc-component/color-picker/es/components/Slider.js +0 -87
- package/dist/node_modules/@rc-component/color-picker/es/components/Transform.cjs +0 -16
- package/dist/node_modules/@rc-component/color-picker/es/components/Transform.js +0 -17
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorDrag.cjs +0 -81
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorDrag.js +0 -82
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorState.cjs +0 -17
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorState.js +0 -18
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useComponent.cjs +0 -29
- package/dist/node_modules/@rc-component/color-picker/es/hooks/useComponent.js +0 -11
- package/dist/node_modules/@rc-component/color-picker/es/util.cjs +0 -67
- package/dist/node_modules/@rc-component/color-picker/es/util.js +0 -68
- package/dist/node_modules/@rc-component/context/es/Immutable.cjs +0 -77
- package/dist/node_modules/@rc-component/context/es/Immutable.js +0 -59
- package/dist/node_modules/@rc-component/context/es/context.cjs +0 -95
- package/dist/node_modules/@rc-component/context/es/context.js +0 -77
- package/dist/node_modules/@rc-component/portal/es/Context.cjs +0 -23
- package/dist/node_modules/@rc-component/portal/es/Context.js +0 -5
- package/dist/node_modules/@rc-component/portal/es/Portal.cjs +0 -91
- package/dist/node_modules/@rc-component/portal/es/Portal.js +0 -73
- package/dist/node_modules/@rc-component/portal/es/index.cjs +0 -4
- package/dist/node_modules/@rc-component/portal/es/index.js +0 -4
- package/dist/node_modules/@rc-component/portal/es/mock.cjs +0 -7
- package/dist/node_modules/@rc-component/portal/es/mock.js +0 -8
- package/dist/node_modules/@rc-component/portal/es/useDom.cjs +0 -81
- package/dist/node_modules/@rc-component/portal/es/useDom.js +0 -63
- package/dist/node_modules/@rc-component/portal/es/useScrollLocker.cjs +0 -48
- package/dist/node_modules/@rc-component/portal/es/useScrollLocker.js +0 -30
- package/dist/node_modules/@rc-component/portal/es/util.cjs +0 -5
- package/dist/node_modules/@rc-component/portal/es/util.js +0 -6
- package/dist/node_modules/@rc-component/trigger/es/Popup/Arrow.cjs +0 -62
- package/dist/node_modules/@rc-component/trigger/es/Popup/Arrow.js +0 -44
- package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.cjs +0 -45
- package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.js +0 -27
- package/dist/node_modules/@rc-component/trigger/es/Popup/PopupContent.cjs +0 -31
- package/dist/node_modules/@rc-component/trigger/es/Popup/PopupContent.js +0 -13
- package/dist/node_modules/@rc-component/trigger/es/Popup/index.cjs +0 -156
- package/dist/node_modules/@rc-component/trigger/es/Popup/index.js +0 -138
- package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.cjs +0 -37
- package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.js +0 -19
- package/dist/node_modules/@rc-component/trigger/es/context.cjs +0 -23
- package/dist/node_modules/@rc-component/trigger/es/context.js +0 -5
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAction.cjs +0 -44
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAction.js +0 -26
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAlign.cjs +0 -441
- package/dist/node_modules/@rc-component/trigger/es/hooks/useAlign.js +0 -423
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.cjs +0 -36
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.js +0 -37
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.cjs +0 -71
- package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.js +0 -53
- package/dist/node_modules/@rc-component/trigger/es/index.cjs +0 -368
- package/dist/node_modules/@rc-component/trigger/es/index.js +0 -349
- package/dist/node_modules/@rc-component/trigger/es/util.cjs +0 -109
- package/dist/node_modules/@rc-component/trigger/es/util.js +0 -110
- package/dist/node_modules/@socket.io/component-emitter/lib/esm/index.cjs +0 -72
- package/dist/node_modules/@socket.io/component-emitter/lib/esm/index.js +0 -73
- package/dist/node_modules/@ungap/structured-clone/esm/deserialize.cjs +0 -67
- package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +0 -68
- package/dist/node_modules/@ungap/structured-clone/esm/index.cjs +0 -11
- package/dist/node_modules/@ungap/structured-clone/esm/index.js +0 -11
- package/dist/node_modules/@ungap/structured-clone/esm/serialize.cjs +0 -134
- package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +0 -135
- package/dist/node_modules/@ungap/structured-clone/esm/types.cjs +0 -21
- package/dist/node_modules/@ungap/structured-clone/esm/types.js +0 -22
- package/dist/node_modules/antd/es/_util/ActionButton.cjs +0 -118
- package/dist/node_modules/antd/es/_util/ActionButton.js +0 -100
- package/dist/node_modules/antd/es/_util/ContextIsolator.cjs +0 -26
- package/dist/node_modules/antd/es/_util/ContextIsolator.js +0 -27
- package/dist/node_modules/antd/es/_util/PurePanel.cjs +0 -106
- package/dist/node_modules/antd/es/_util/PurePanel.js +0 -87
- package/dist/node_modules/antd/es/_util/colors.cjs +0 -12
- package/dist/node_modules/antd/es/_util/colors.js +0 -13
- package/dist/node_modules/antd/es/_util/easings.cjs +0 -10
- package/dist/node_modules/antd/es/_util/easings.js +0 -11
- package/dist/node_modules/antd/es/_util/extendsObject.cjs +0 -17
- package/dist/node_modules/antd/es/_util/extendsObject.js +0 -18
- package/dist/node_modules/antd/es/_util/gapSize.cjs +0 -12
- package/dist/node_modules/antd/es/_util/gapSize.js +0 -13
- package/dist/node_modules/antd/es/_util/getAllowClear.cjs +0 -15
- package/dist/node_modules/antd/es/_util/getAllowClear.js +0 -16
- package/dist/node_modules/antd/es/_util/getRenderPropValue.cjs +0 -8
- package/dist/node_modules/antd/es/_util/getRenderPropValue.js +0 -9
- package/dist/node_modules/antd/es/_util/getScroll.cjs +0 -27
- package/dist/node_modules/antd/es/_util/getScroll.js +0 -27
- package/dist/node_modules/antd/es/_util/hooks/useForceUpdate.cjs +0 -26
- package/dist/node_modules/antd/es/_util/hooks/useForceUpdate.js +0 -8
- package/dist/node_modules/antd/es/_util/hooks/useMultipleSelect.cjs +0 -31
- package/dist/node_modules/antd/es/_util/hooks/useMultipleSelect.js +0 -32
- package/dist/node_modules/antd/es/_util/hooks/useProxyImperativeHandle.cjs +0 -33
- package/dist/node_modules/antd/es/_util/hooks/useProxyImperativeHandle.js +0 -34
- package/dist/node_modules/antd/es/_util/hooks/useSyncState.cjs +0 -31
- package/dist/node_modules/antd/es/_util/hooks/useSyncState.js +0 -13
- package/dist/node_modules/antd/es/_util/hooks/useZIndex.cjs +0 -58
- package/dist/node_modules/antd/es/_util/hooks/useZIndex.js +0 -59
- package/dist/node_modules/antd/es/_util/isPrimitive.cjs +0 -3
- package/dist/node_modules/antd/es/_util/isPrimitive.js +0 -4
- package/dist/node_modules/antd/es/_util/motion.cjs +0 -45
- package/dist/node_modules/antd/es/_util/motion.js +0 -45
- package/dist/node_modules/antd/es/_util/placements.cjs +0 -176
- package/dist/node_modules/antd/es/_util/placements.js +0 -176
- package/dist/node_modules/antd/es/_util/reactNode.cjs +0 -17
- package/dist/node_modules/antd/es/_util/reactNode.js +0 -18
- package/dist/node_modules/antd/es/_util/responsiveObserver.cjs +0 -114
- package/dist/node_modules/antd/es/_util/responsiveObserver.js +0 -114
- package/dist/node_modules/antd/es/_util/scrollTo.cjs +0 -34
- package/dist/node_modules/antd/es/_util/scrollTo.js +0 -35
- package/dist/node_modules/antd/es/_util/statusUtils.cjs +0 -14
- package/dist/node_modules/antd/es/_util/statusUtils.js +0 -15
- package/dist/node_modules/antd/es/_util/toList.cjs +0 -7
- package/dist/node_modules/antd/es/_util/toList.js +0 -8
- package/dist/node_modules/antd/es/_util/warning.cjs +0 -77
- package/dist/node_modules/antd/es/_util/warning.js +0 -59
- package/dist/node_modules/antd/es/_util/wave/WaveEffect.cjs +0 -154
- package/dist/node_modules/antd/es/_util/wave/WaveEffect.js +0 -136
- package/dist/node_modules/antd/es/_util/wave/index.cjs +0 -52
- package/dist/node_modules/antd/es/_util/wave/index.js +0 -53
- package/dist/node_modules/antd/es/_util/wave/interface.cjs +0 -5
- package/dist/node_modules/antd/es/_util/wave/interface.js +0 -6
- package/dist/node_modules/antd/es/_util/wave/style.cjs +0 -47
- package/dist/node_modules/antd/es/_util/wave/style.js +0 -48
- package/dist/node_modules/antd/es/_util/wave/useWave.cjs +0 -60
- package/dist/node_modules/antd/es/_util/wave/useWave.js +0 -42
- package/dist/node_modules/antd/es/_util/wave/util.cjs +0 -24
- package/dist/node_modules/antd/es/_util/wave/util.js +0 -25
- package/dist/node_modules/antd/es/_util/zindexContext.cjs +0 -7
- package/dist/node_modules/antd/es/_util/zindexContext.js +0 -8
- package/dist/node_modules/antd/es/avatar/Avatar.cjs +0 -189
- package/dist/node_modules/antd/es/avatar/Avatar.js +0 -171
- package/dist/node_modules/antd/es/avatar/AvatarContext.cjs +0 -23
- package/dist/node_modules/antd/es/avatar/AvatarContext.js +0 -5
- package/dist/node_modules/antd/es/avatar/AvatarGroup.cjs +0 -123
- package/dist/node_modules/antd/es/avatar/AvatarGroup.js +0 -105
- package/dist/node_modules/antd/es/avatar/index.cjs +0 -6
- package/dist/node_modules/antd/es/avatar/index.js +0 -7
- package/dist/node_modules/antd/es/avatar/style/index.cjs +0 -146
- package/dist/node_modules/antd/es/avatar/style/index.js +0 -146
- package/dist/node_modules/antd/es/breadcrumb/Breadcrumb.cjs +0 -168
- package/dist/node_modules/antd/es/breadcrumb/Breadcrumb.js +0 -150
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbItem.cjs +0 -112
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbItem.js +0 -93
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbSeparator.cjs +0 -38
- package/dist/node_modules/antd/es/breadcrumb/BreadcrumbSeparator.js +0 -20
- package/dist/node_modules/antd/es/breadcrumb/index.cjs +0 -3
- package/dist/node_modules/antd/es/breadcrumb/index.js +0 -4
- package/dist/node_modules/antd/es/breadcrumb/style/index.cjs +0 -113
- package/dist/node_modules/antd/es/breadcrumb/style/index.js +0 -113
- package/dist/node_modules/antd/es/breadcrumb/useItemRender.cjs +0 -75
- package/dist/node_modules/antd/es/breadcrumb/useItemRender.js +0 -56
- package/dist/node_modules/antd/es/breadcrumb/useItems.cjs +0 -44
- package/dist/node_modules/antd/es/breadcrumb/useItems.js +0 -45
- package/dist/node_modules/antd/es/button/DefaultLoadingIcon.cjs +0 -80
- package/dist/node_modules/antd/es/button/DefaultLoadingIcon.js +0 -81
- package/dist/node_modules/antd/es/button/IconWrapper.cjs +0 -18
- package/dist/node_modules/antd/es/button/IconWrapper.js +0 -19
- package/dist/node_modules/antd/es/button/button-group.cjs +0 -89
- package/dist/node_modules/antd/es/button/button-group.js +0 -70
- package/dist/node_modules/antd/es/button/button.cjs +0 -251
- package/dist/node_modules/antd/es/button/button.js +0 -252
- package/dist/node_modules/antd/es/button/buttonHelpers.cjs +0 -64
- package/dist/node_modules/antd/es/button/buttonHelpers.js +0 -65
- package/dist/node_modules/antd/es/button/index.cjs +0 -4
- package/dist/node_modules/antd/es/button/index.js +0 -4
- package/dist/node_modules/antd/es/button/style/compact.cjs +0 -54
- package/dist/node_modules/antd/es/button/style/compact.js +0 -55
- package/dist/node_modules/antd/es/button/style/group.cjs +0 -70
- package/dist/node_modules/antd/es/button/style/group.js +0 -71
- package/dist/node_modules/antd/es/button/style/index.cjs +0 -491
- package/dist/node_modules/antd/es/button/style/index.js +0 -492
- package/dist/node_modules/antd/es/button/style/token.cjs +0 -93
- package/dist/node_modules/antd/es/button/style/token.js +0 -94
- package/dist/node_modules/antd/es/calendar/locale/en_US.cjs +0 -3
- package/dist/node_modules/antd/es/calendar/locale/en_US.js +0 -4
- package/dist/node_modules/antd/es/card/Card.cjs +0 -207
- package/dist/node_modules/antd/es/card/Card.js +0 -189
- package/dist/node_modules/antd/es/card/Grid.cjs +0 -50
- package/dist/node_modules/antd/es/card/Grid.js +0 -32
- package/dist/node_modules/antd/es/card/Meta.cjs +0 -62
- package/dist/node_modules/antd/es/card/Meta.js +0 -44
- package/dist/node_modules/antd/es/card/index.cjs +0 -11
- package/dist/node_modules/antd/es/card/index.js +0 -12
- package/dist/node_modules/antd/es/card/style/index.cjs +0 -361
- package/dist/node_modules/antd/es/card/style/index.js +0 -361
- package/dist/node_modules/antd/es/checkbox/Checkbox.cjs +0 -148
- package/dist/node_modules/antd/es/checkbox/Checkbox.js +0 -130
- package/dist/node_modules/antd/es/checkbox/Group.cjs +0 -134
- package/dist/node_modules/antd/es/checkbox/Group.js +0 -115
- package/dist/node_modules/antd/es/checkbox/GroupContext.cjs +0 -4
- package/dist/node_modules/antd/es/checkbox/GroupContext.js +0 -5
- package/dist/node_modules/antd/es/checkbox/index.cjs +0 -10
- package/dist/node_modules/antd/es/checkbox/index.js +0 -11
- package/dist/node_modules/antd/es/checkbox/style/index.cjs +0 -247
- package/dist/node_modules/antd/es/checkbox/style/index.js +0 -247
- package/dist/node_modules/antd/es/checkbox/useBubbleLock.cjs +0 -25
- package/dist/node_modules/antd/es/checkbox/useBubbleLock.js +0 -26
- package/dist/node_modules/antd/es/color-picker/color.cjs +0 -118
- package/dist/node_modules/antd/es/color-picker/color.js +0 -119
- package/dist/node_modules/antd/es/color-picker/components/ColorPresets.cjs +0 -20
- package/dist/node_modules/antd/es/color-picker/components/ColorPresets.js +0 -21
- package/dist/node_modules/antd/es/config-provider/DisabledContext.cjs +0 -35
- package/dist/node_modules/antd/es/config-provider/DisabledContext.js +0 -16
- package/dist/node_modules/antd/es/config-provider/MotionWrapper.cjs +0 -57
- package/dist/node_modules/antd/es/config-provider/MotionWrapper.js +0 -39
- package/dist/node_modules/antd/es/config-provider/PropWarning.cjs +0 -35
- package/dist/node_modules/antd/es/config-provider/PropWarning.js +0 -17
- package/dist/node_modules/antd/es/config-provider/SizeContext.cjs +0 -35
- package/dist/node_modules/antd/es/config-provider/SizeContext.js +0 -16
- package/dist/node_modules/antd/es/config-provider/UnstableContext.cjs +0 -41
- package/dist/node_modules/antd/es/config-provider/UnstableContext.js +0 -22
- package/dist/node_modules/antd/es/config-provider/context.cjs +0 -62
- package/dist/node_modules/antd/es/config-provider/context.js +0 -44
- package/dist/node_modules/antd/es/config-provider/cssVariables.cjs +0 -71
- package/dist/node_modules/antd/es/config-provider/cssVariables.js +0 -72
- package/dist/node_modules/antd/es/config-provider/defaultRenderEmpty.cjs +0 -40
- package/dist/node_modules/antd/es/config-provider/defaultRenderEmpty.js +0 -41
- package/dist/node_modules/antd/es/config-provider/hooks/useCSSVarCls.cjs +0 -22
- package/dist/node_modules/antd/es/config-provider/hooks/useCSSVarCls.js +0 -23
- package/dist/node_modules/antd/es/config-provider/hooks/useConfig.cjs +0 -13
- package/dist/node_modules/antd/es/config-provider/hooks/useConfig.js +0 -14
- package/dist/node_modules/antd/es/config-provider/hooks/useSize.cjs +0 -20
- package/dist/node_modules/antd/es/config-provider/hooks/useSize.js +0 -21
- package/dist/node_modules/antd/es/config-provider/hooks/useTheme.cjs +0 -46
- package/dist/node_modules/antd/es/config-provider/hooks/useTheme.js +0 -47
- package/dist/node_modules/antd/es/config-provider/hooks/useThemeKey.cjs +0 -28
- package/dist/node_modules/antd/es/config-provider/hooks/useThemeKey.js +0 -10
- package/dist/node_modules/antd/es/config-provider/index.cjs +0 -414
- package/dist/node_modules/antd/es/config-provider/index.js +0 -396
- package/dist/node_modules/antd/es/date-picker/PickerButton.cjs +0 -27
- package/dist/node_modules/antd/es/date-picker/PickerButton.js +0 -9
- package/dist/node_modules/antd/es/date-picker/generatePicker/constant.cjs +0 -16
- package/dist/node_modules/antd/es/date-picker/generatePicker/constant.js +0 -17
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateRangePicker.cjs +0 -170
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateRangePicker.js +0 -153
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateSinglePicker.cjs +0 -202
- package/dist/node_modules/antd/es/date-picker/generatePicker/generateSinglePicker.js +0 -185
- package/dist/node_modules/antd/es/date-picker/generatePicker/index.cjs +0 -26
- package/dist/node_modules/antd/es/date-picker/generatePicker/index.js +0 -27
- package/dist/node_modules/antd/es/date-picker/generatePicker/useComponents.cjs +0 -9
- package/dist/node_modules/antd/es/date-picker/generatePicker/useComponents.js +0 -10
- package/dist/node_modules/antd/es/date-picker/index.cjs +0 -11
- package/dist/node_modules/antd/es/date-picker/index.js +0 -12
- package/dist/node_modules/antd/es/date-picker/locale/en_US.cjs +0 -19
- package/dist/node_modules/antd/es/date-picker/locale/en_US.js +0 -20
- package/dist/node_modules/antd/es/date-picker/style/index.cjs +0 -462
- package/dist/node_modules/antd/es/date-picker/style/index.js +0 -463
- package/dist/node_modules/antd/es/date-picker/style/multiple.cjs +0 -114
- package/dist/node_modules/antd/es/date-picker/style/multiple.js +0 -115
- package/dist/node_modules/antd/es/date-picker/style/panel.cjs +0 -618
- package/dist/node_modules/antd/es/date-picker/style/panel.js +0 -618
- package/dist/node_modules/antd/es/date-picker/style/token.cjs +0 -74
- package/dist/node_modules/antd/es/date-picker/style/token.js +0 -75
- package/dist/node_modules/antd/es/date-picker/style/variants.cjs +0 -52
- package/dist/node_modules/antd/es/date-picker/style/variants.js +0 -53
- package/dist/node_modules/antd/es/date-picker/util.cjs +0 -89
- package/dist/node_modules/antd/es/date-picker/util.js +0 -71
- package/dist/node_modules/antd/es/dropdown/dropdown-button.cjs +0 -132
- package/dist/node_modules/antd/es/dropdown/dropdown-button.js +0 -114
- package/dist/node_modules/antd/es/dropdown/dropdown.cjs +0 -235
- package/dist/node_modules/antd/es/dropdown/dropdown.js +0 -217
- package/dist/node_modules/antd/es/dropdown/index.cjs +0 -6
- package/dist/node_modules/antd/es/dropdown/index.js +0 -7
- package/dist/node_modules/antd/es/dropdown/style/index.cjs +0 -320
- package/dist/node_modules/antd/es/dropdown/style/index.js +0 -320
- package/dist/node_modules/antd/es/dropdown/style/status.cjs +0 -24
- package/dist/node_modules/antd/es/dropdown/style/status.js +0 -25
- package/dist/node_modules/antd/es/empty/empty.cjs +0 -95
- package/dist/node_modules/antd/es/empty/empty.js +0 -77
- package/dist/node_modules/antd/es/empty/index.cjs +0 -103
- package/dist/node_modules/antd/es/empty/index.js +0 -85
- package/dist/node_modules/antd/es/empty/simple.cjs +0 -85
- package/dist/node_modules/antd/es/empty/simple.js +0 -68
- package/dist/node_modules/antd/es/empty/style/index.cjs +0 -88
- package/dist/node_modules/antd/es/empty/style/index.js +0 -89
- package/dist/node_modules/antd/es/form/ErrorList.cjs +0 -117
- package/dist/node_modules/antd/es/form/ErrorList.js +0 -99
- package/dist/node_modules/antd/es/form/Form.cjs +0 -178
- package/dist/node_modules/antd/es/form/Form.js +0 -159
- package/dist/node_modules/antd/es/form/FormItem/ItemHolder.cjs +0 -174
- package/dist/node_modules/antd/es/form/FormItem/ItemHolder.js +0 -156
- package/dist/node_modules/antd/es/form/FormItem/StatusProvider.cjs +0 -92
- package/dist/node_modules/antd/es/form/FormItem/StatusProvider.js +0 -74
- package/dist/node_modules/antd/es/form/FormItem/index.cjs +0 -275
- package/dist/node_modules/antd/es/form/FormItem/index.js +0 -257
- package/dist/node_modules/antd/es/form/FormItemInput.cjs +0 -141
- package/dist/node_modules/antd/es/form/FormItemInput.js +0 -123
- package/dist/node_modules/antd/es/form/FormItemLabel.cjs +0 -124
- package/dist/node_modules/antd/es/form/FormItemLabel.js +0 -106
- package/dist/node_modules/antd/es/form/FormList.cjs +0 -62
- package/dist/node_modules/antd/es/form/FormList.js +0 -44
- package/dist/node_modules/antd/es/form/context.cjs +0 -73
- package/dist/node_modules/antd/es/form/context.js +0 -55
- package/dist/node_modules/antd/es/form/hooks/useChildren.cjs +0 -10
- package/dist/node_modules/antd/es/form/hooks/useChildren.js +0 -11
- package/dist/node_modules/antd/es/form/hooks/useDebounce.cjs +0 -34
- package/dist/node_modules/antd/es/form/hooks/useDebounce.js +0 -16
- package/dist/node_modules/antd/es/form/hooks/useForm.cjs +0 -96
- package/dist/node_modules/antd/es/form/hooks/useForm.js +0 -78
- package/dist/node_modules/antd/es/form/hooks/useFormInstance.cjs +0 -29
- package/dist/node_modules/antd/es/form/hooks/useFormInstance.js +0 -11
- package/dist/node_modules/antd/es/form/hooks/useFormItemStatus.cjs +0 -41
- package/dist/node_modules/antd/es/form/hooks/useFormItemStatus.js +0 -23
- package/dist/node_modules/antd/es/form/hooks/useFormWarning.cjs +0 -39
- package/dist/node_modules/antd/es/form/hooks/useFormWarning.js +0 -21
- package/dist/node_modules/antd/es/form/hooks/useFrameState.cjs +0 -57
- package/dist/node_modules/antd/es/form/hooks/useFrameState.js +0 -39
- package/dist/node_modules/antd/es/form/hooks/useItemRef.cjs +0 -41
- package/dist/node_modules/antd/es/form/hooks/useItemRef.js +0 -23
- package/dist/node_modules/antd/es/form/hooks/useVariants.cjs +0 -45
- package/dist/node_modules/antd/es/form/hooks/useVariants.js +0 -27
- package/dist/node_modules/antd/es/form/index.cjs +0 -23
- package/dist/node_modules/antd/es/form/index.js +0 -24
- package/dist/node_modules/antd/es/form/style/explain.cjs +0 -45
- package/dist/node_modules/antd/es/form/style/explain.js +0 -46
- package/dist/node_modules/antd/es/form/style/fallbackCmp.cjs +0 -39
- package/dist/node_modules/antd/es/form/style/fallbackCmp.js +0 -40
- package/dist/node_modules/antd/es/form/style/index.cjs +0 -521
- package/dist/node_modules/antd/es/form/style/index.js +0 -521
- package/dist/node_modules/antd/es/form/util.cjs +0 -36
- package/dist/node_modules/antd/es/form/util.js +0 -37
- package/dist/node_modules/antd/es/form/validateMessagesContext.cjs +0 -4
- package/dist/node_modules/antd/es/form/validateMessagesContext.js +0 -5
- package/dist/node_modules/antd/es/grid/RowContext.cjs +0 -4
- package/dist/node_modules/antd/es/grid/RowContext.js +0 -5
- package/dist/node_modules/antd/es/grid/col.cjs +0 -120
- package/dist/node_modules/antd/es/grid/col.js +0 -102
- package/dist/node_modules/antd/es/grid/hooks/useBreakpoint.cjs +0 -23
- package/dist/node_modules/antd/es/grid/hooks/useBreakpoint.js +0 -24
- package/dist/node_modules/antd/es/grid/hooks/useGutter.cjs +0 -29
- package/dist/node_modules/antd/es/grid/hooks/useGutter.js +0 -30
- package/dist/node_modules/antd/es/grid/row.cjs +0 -114
- package/dist/node_modules/antd/es/grid/row.js +0 -96
- package/dist/node_modules/antd/es/grid/style/index.cjs +0 -180
- package/dist/node_modules/antd/es/grid/style/index.js +0 -181
- package/dist/node_modules/antd/es/input/Group.cjs +0 -65
- package/dist/node_modules/antd/es/input/Group.js +0 -48
- package/dist/node_modules/antd/es/input/Input.cjs +0 -166
- package/dist/node_modules/antd/es/input/Input.js +0 -166
- package/dist/node_modules/antd/es/input/OTP/OTPInput.cjs +0 -89
- package/dist/node_modules/antd/es/input/OTP/OTPInput.js +0 -71
- package/dist/node_modules/antd/es/input/OTP/index.cjs +0 -216
- package/dist/node_modules/antd/es/input/OTP/index.js +0 -198
- package/dist/node_modules/antd/es/input/Password.cjs +0 -124
- package/dist/node_modules/antd/es/input/Password.js +0 -107
- package/dist/node_modules/antd/es/input/Search.cjs +0 -169
- package/dist/node_modules/antd/es/input/Search.js +0 -151
- package/dist/node_modules/antd/es/input/TextArea.cjs +0 -148
- package/dist/node_modules/antd/es/input/TextArea.js +0 -131
- package/dist/node_modules/antd/es/input/hooks/useRemovePasswordTimeout.cjs +0 -25
- package/dist/node_modules/antd/es/input/hooks/useRemovePasswordTimeout.js +0 -26
- package/dist/node_modules/antd/es/input/index.cjs +0 -14
- package/dist/node_modules/antd/es/input/index.js +0 -15
- package/dist/node_modules/antd/es/input/style/index.cjs +0 -698
- package/dist/node_modules/antd/es/input/style/index.js +0 -698
- package/dist/node_modules/antd/es/input/style/otp.cjs +0 -51
- package/dist/node_modules/antd/es/input/style/otp.js +0 -52
- package/dist/node_modules/antd/es/input/style/textarea.cjs +0 -104
- package/dist/node_modules/antd/es/input/style/textarea.js +0 -104
- package/dist/node_modules/antd/es/input/style/token.cjs +0 -74
- package/dist/node_modules/antd/es/input/style/token.js +0 -75
- package/dist/node_modules/antd/es/input/style/variants.cjs +0 -322
- package/dist/node_modules/antd/es/input/style/variants.js +0 -323
- package/dist/node_modules/antd/es/input/utils.cjs +0 -5
- package/dist/node_modules/antd/es/input/utils.js +0 -6
- package/dist/node_modules/antd/es/layout/Sider.cjs +0 -193
- package/dist/node_modules/antd/es/layout/Sider.js +0 -175
- package/dist/node_modules/antd/es/layout/context.cjs +0 -28
- package/dist/node_modules/antd/es/layout/context.js +0 -10
- package/dist/node_modules/antd/es/layout/style/index.cjs +0 -130
- package/dist/node_modules/antd/es/layout/style/index.js +0 -131
- package/dist/node_modules/antd/es/layout/style/sider.cjs +0 -130
- package/dist/node_modules/antd/es/layout/style/sider.js +0 -131
- package/dist/node_modules/antd/es/locale/context.cjs +0 -4
- package/dist/node_modules/antd/es/locale/context.js +0 -5
- package/dist/node_modules/antd/es/locale/en_US.cjs +0 -146
- package/dist/node_modules/antd/es/locale/en_US.js +0 -147
- package/dist/node_modules/antd/es/locale/index.cjs +0 -52
- package/dist/node_modules/antd/es/locale/index.js +0 -33
- package/dist/node_modules/antd/es/locale/useLocale.cjs +0 -41
- package/dist/node_modules/antd/es/locale/useLocale.js +0 -23
- package/dist/node_modules/antd/es/menu/MenuContext.cjs +0 -8
- package/dist/node_modules/antd/es/menu/MenuContext.js +0 -9
- package/dist/node_modules/antd/es/menu/MenuDivider.cjs +0 -52
- package/dist/node_modules/antd/es/menu/MenuDivider.js +0 -34
- package/dist/node_modules/antd/es/menu/MenuItem.cjs +0 -100
- package/dist/node_modules/antd/es/menu/MenuItem.js +0 -82
- package/dist/node_modules/antd/es/menu/OverrideContext.cjs +0 -59
- package/dist/node_modules/antd/es/menu/OverrideContext.js +0 -40
- package/dist/node_modules/antd/es/menu/SubMenu.cjs +0 -74
- package/dist/node_modules/antd/es/menu/SubMenu.js +0 -56
- package/dist/node_modules/antd/es/menu/index.cjs +0 -50
- package/dist/node_modules/antd/es/menu/index.js +0 -33
- package/dist/node_modules/antd/es/menu/menu.cjs +0 -160
- package/dist/node_modules/antd/es/menu/menu.js +0 -143
- package/dist/node_modules/antd/es/menu/style/horizontal.cjs +0 -58
- package/dist/node_modules/antd/es/menu/style/horizontal.js +0 -59
- package/dist/node_modules/antd/es/menu/style/index.cjs +0 -579
- package/dist/node_modules/antd/es/menu/style/index.js +0 -579
- package/dist/node_modules/antd/es/menu/style/rtl.cjs +0 -41
- package/dist/node_modules/antd/es/menu/style/rtl.js +0 -42
- package/dist/node_modules/antd/es/menu/style/theme.cjs +0 -228
- package/dist/node_modules/antd/es/menu/style/theme.js +0 -229
- package/dist/node_modules/antd/es/menu/style/vertical.cjs +0 -200
- package/dist/node_modules/antd/es/menu/style/vertical.js +0 -201
- package/dist/node_modules/antd/es/modal/locale.cjs +0 -18
- package/dist/node_modules/antd/es/modal/locale.js +0 -19
- package/dist/node_modules/antd/es/pagination/Pagination.cjs +0 -206
- package/dist/node_modules/antd/es/pagination/Pagination.js +0 -188
- package/dist/node_modules/antd/es/pagination/index.cjs +0 -3
- package/dist/node_modules/antd/es/pagination/index.js +0 -4
- package/dist/node_modules/antd/es/pagination/style/bordered.cjs +0 -105
- package/dist/node_modules/antd/es/pagination/style/bordered.js +0 -106
- package/dist/node_modules/antd/es/pagination/style/index.cjs +0 -545
- package/dist/node_modules/antd/es/pagination/style/index.js +0 -545
- package/dist/node_modules/antd/es/pagination/useShowSizeChanger.cjs +0 -14
- package/dist/node_modules/antd/es/pagination/useShowSizeChanger.js +0 -15
- package/dist/node_modules/antd/es/popconfirm/PurePanel.cjs +0 -117
- package/dist/node_modules/antd/es/popconfirm/PurePanel.js +0 -98
- package/dist/node_modules/antd/es/popconfirm/index.cjs +0 -126
- package/dist/node_modules/antd/es/popconfirm/index.js +0 -108
- package/dist/node_modules/antd/es/popconfirm/style/index.cjs +0 -84
- package/dist/node_modules/antd/es/popconfirm/style/index.js +0 -84
- package/dist/node_modules/antd/es/popover/PurePanel.cjs +0 -100
- package/dist/node_modules/antd/es/popover/PurePanel.js +0 -81
- package/dist/node_modules/antd/es/popover/index.cjs +0 -127
- package/dist/node_modules/antd/es/popover/index.js +0 -109
- package/dist/node_modules/antd/es/popover/style/index.cjs +0 -179
- package/dist/node_modules/antd/es/popover/style/index.js +0 -179
- package/dist/node_modules/antd/es/progress/Circle.cjs +0 -98
- package/dist/node_modules/antd/es/progress/Circle.js +0 -80
- package/dist/node_modules/antd/es/progress/Line.cjs +0 -149
- package/dist/node_modules/antd/es/progress/Line.js +0 -130
- package/dist/node_modules/antd/es/progress/Steps.cjs +0 -65
- package/dist/node_modules/antd/es/progress/Steps.js +0 -47
- package/dist/node_modules/antd/es/progress/index.cjs +0 -3
- package/dist/node_modules/antd/es/progress/index.js +0 -4
- package/dist/node_modules/antd/es/progress/progress.cjs +0 -180
- package/dist/node_modules/antd/es/progress/progress.js +0 -162
- package/dist/node_modules/antd/es/progress/style/index.cjs +0 -322
- package/dist/node_modules/antd/es/progress/style/index.js +0 -322
- package/dist/node_modules/antd/es/progress/utils.cjs +0 -89
- package/dist/node_modules/antd/es/progress/utils.js +0 -90
- package/dist/node_modules/antd/es/radio/context.cjs +0 -30
- package/dist/node_modules/antd/es/radio/context.js +0 -11
- package/dist/node_modules/antd/es/radio/group.cjs +0 -134
- package/dist/node_modules/antd/es/radio/group.js +0 -116
- package/dist/node_modules/antd/es/radio/index.cjs +0 -12
- package/dist/node_modules/antd/es/radio/index.js +0 -12
- package/dist/node_modules/antd/es/radio/radio.cjs +0 -123
- package/dist/node_modules/antd/es/radio/radio.js +0 -105
- package/dist/node_modules/antd/es/radio/radioButton.cjs +0 -52
- package/dist/node_modules/antd/es/radio/radioButton.js +0 -34
- package/dist/node_modules/antd/es/radio/style/index.cjs +0 -477
- package/dist/node_modules/antd/es/radio/style/index.js +0 -477
- package/dist/node_modules/antd/es/result/index.cjs +0 -134
- package/dist/node_modules/antd/es/result/index.js +0 -115
- package/dist/node_modules/antd/es/result/noFound.cjs +0 -255
- package/dist/node_modules/antd/es/result/noFound.js +0 -237
- package/dist/node_modules/antd/es/result/serverError.cjs +0 -295
- package/dist/node_modules/antd/es/result/serverError.js +0 -277
- package/dist/node_modules/antd/es/result/style/index.cjs +0 -128
- package/dist/node_modules/antd/es/result/style/index.js +0 -128
- package/dist/node_modules/antd/es/result/unauthorized.cjs +0 -245
- package/dist/node_modules/antd/es/result/unauthorized.js +0 -227
- package/dist/node_modules/antd/es/segmented/index.cjs +0 -99
- package/dist/node_modules/antd/es/segmented/index.js +0 -81
- package/dist/node_modules/antd/es/segmented/style/index.cjs +0 -232
- package/dist/node_modules/antd/es/segmented/style/index.js +0 -232
- package/dist/node_modules/antd/es/select/index.cjs +0 -246
- package/dist/node_modules/antd/es/select/index.js +0 -228
- package/dist/node_modules/antd/es/select/mergedBuiltinPlacements.cjs +0 -35
- package/dist/node_modules/antd/es/select/mergedBuiltinPlacements.js +0 -36
- package/dist/node_modules/antd/es/select/style/dropdown.cjs +0 -148
- package/dist/node_modules/antd/es/select/style/dropdown.js +0 -149
- package/dist/node_modules/antd/es/select/style/index.cjs +0 -258
- package/dist/node_modules/antd/es/select/style/index.js +0 -259
- package/dist/node_modules/antd/es/select/style/multiple.cjs +0 -298
- package/dist/node_modules/antd/es/select/style/multiple.js +0 -298
- package/dist/node_modules/antd/es/select/style/single.cjs +0 -170
- package/dist/node_modules/antd/es/select/style/single.js +0 -171
- package/dist/node_modules/antd/es/select/style/token.cjs +0 -60
- package/dist/node_modules/antd/es/select/style/token.js +0 -61
- package/dist/node_modules/antd/es/select/style/variants.cjs +0 -229
- package/dist/node_modules/antd/es/select/style/variants.js +0 -230
- package/dist/node_modules/antd/es/select/useIcons.cjs +0 -100
- package/dist/node_modules/antd/es/select/useIcons.js +0 -82
- package/dist/node_modules/antd/es/select/useShowArrow.cjs +0 -5
- package/dist/node_modules/antd/es/select/useShowArrow.js +0 -6
- package/dist/node_modules/antd/es/skeleton/Avatar.cjs +0 -54
- package/dist/node_modules/antd/es/skeleton/Avatar.js +0 -36
- package/dist/node_modules/antd/es/skeleton/Button.cjs +0 -54
- package/dist/node_modules/antd/es/skeleton/Button.js +0 -36
- package/dist/node_modules/antd/es/skeleton/Element.cjs +0 -50
- package/dist/node_modules/antd/es/skeleton/Element.js +0 -32
- package/dist/node_modules/antd/es/skeleton/Image.cjs +0 -57
- package/dist/node_modules/antd/es/skeleton/Image.js +0 -39
- package/dist/node_modules/antd/es/skeleton/Input.cjs +0 -54
- package/dist/node_modules/antd/es/skeleton/Input.js +0 -36
- package/dist/node_modules/antd/es/skeleton/Node.cjs +0 -50
- package/dist/node_modules/antd/es/skeleton/Node.js +0 -32
- package/dist/node_modules/antd/es/skeleton/Paragraph.cjs +0 -59
- package/dist/node_modules/antd/es/skeleton/Paragraph.js +0 -41
- package/dist/node_modules/antd/es/skeleton/Skeleton.cjs +0 -152
- package/dist/node_modules/antd/es/skeleton/Skeleton.js +0 -134
- package/dist/node_modules/antd/es/skeleton/Title.cjs +0 -40
- package/dist/node_modules/antd/es/skeleton/Title.js +0 -22
- package/dist/node_modules/antd/es/skeleton/index.cjs +0 -3
- package/dist/node_modules/antd/es/skeleton/index.js +0 -4
- package/dist/node_modules/antd/es/skeleton/style/index.cjs +0 -328
- package/dist/node_modules/antd/es/skeleton/style/index.js +0 -328
- package/dist/node_modules/antd/es/space/Compact.cjs +0 -122
- package/dist/node_modules/antd/es/space/Compact.js +0 -103
- package/dist/node_modules/antd/es/space/Item.cjs +0 -44
- package/dist/node_modules/antd/es/space/Item.js +0 -26
- package/dist/node_modules/antd/es/space/context.cjs +0 -8
- package/dist/node_modules/antd/es/space/context.js +0 -9
- package/dist/node_modules/antd/es/space/index.cjs +0 -127
- package/dist/node_modules/antd/es/space/index.js +0 -109
- package/dist/node_modules/antd/es/space/style/compact.cjs +0 -18
- package/dist/node_modules/antd/es/space/style/compact.js +0 -19
- package/dist/node_modules/antd/es/space/style/index.cjs +0 -97
- package/dist/node_modules/antd/es/space/style/index.js +0 -98
- package/dist/node_modules/antd/es/spin/Indicator/Looper.cjs +0 -44
- package/dist/node_modules/antd/es/spin/Indicator/Looper.js +0 -26
- package/dist/node_modules/antd/es/spin/Indicator/Progress.cjs +0 -85
- package/dist/node_modules/antd/es/spin/Indicator/Progress.js +0 -67
- package/dist/node_modules/antd/es/spin/Indicator/index.cjs +0 -43
- package/dist/node_modules/antd/es/spin/Indicator/index.js +0 -25
- package/dist/node_modules/antd/es/spin/index.cjs +0 -136
- package/dist/node_modules/antd/es/spin/index.js +0 -118
- package/dist/node_modules/antd/es/spin/style/index.cjs +0 -299
- package/dist/node_modules/antd/es/spin/style/index.js +0 -299
- package/dist/node_modules/antd/es/spin/usePercent.cjs +0 -50
- package/dist/node_modules/antd/es/spin/usePercent.js +0 -32
- package/dist/node_modules/antd/es/style/compact-item-vertical.cjs +0 -43
- package/dist/node_modules/antd/es/style/compact-item-vertical.js +0 -44
- package/dist/node_modules/antd/es/style/compact-item.cjs +0 -64
- package/dist/node_modules/antd/es/style/compact-item.js +0 -65
- package/dist/node_modules/antd/es/style/index.cjs +0 -165
- package/dist/node_modules/antd/es/style/index.js +0 -166
- package/dist/node_modules/antd/es/style/motion/collapse.cjs +0 -19
- package/dist/node_modules/antd/es/style/motion/collapse.js +0 -20
- package/dist/node_modules/antd/es/style/motion/motion.cjs +0 -37
- package/dist/node_modules/antd/es/style/motion/motion.js +0 -38
- package/dist/node_modules/antd/es/style/motion/move.cjs +0 -159
- package/dist/node_modules/antd/es/style/motion/move.js +0 -160
- package/dist/node_modules/antd/es/style/motion/slide.cjs +0 -164
- package/dist/node_modules/antd/es/style/motion/slide.js +0 -165
- package/dist/node_modules/antd/es/style/motion/zoom.cjs +0 -209
- package/dist/node_modules/antd/es/style/motion/zoom.js +0 -210
- package/dist/node_modules/antd/es/style/placementArrow.cjs +0 -170
- package/dist/node_modules/antd/es/style/placementArrow.js +0 -170
- package/dist/node_modules/antd/es/style/roundedArrow.cjs +0 -90
- package/dist/node_modules/antd/es/style/roundedArrow.js +0 -91
- package/dist/node_modules/antd/es/switch/index.cjs +0 -102
- package/dist/node_modules/antd/es/switch/index.js +0 -84
- package/dist/node_modules/antd/es/switch/style/index.cjs +0 -336
- package/dist/node_modules/antd/es/switch/style/index.js +0 -336
- package/dist/node_modules/antd/es/table/Column.cjs +0 -3
- package/dist/node_modules/antd/es/table/Column.js +0 -4
- package/dist/node_modules/antd/es/table/ColumnGroup.cjs +0 -3
- package/dist/node_modules/antd/es/table/ColumnGroup.js +0 -4
- package/dist/node_modules/antd/es/table/ExpandIcon.cjs +0 -49
- package/dist/node_modules/antd/es/table/ExpandIcon.js +0 -31
- package/dist/node_modules/antd/es/table/InternalTable.cjs +0 -402
- package/dist/node_modules/antd/es/table/InternalTable.js +0 -384
- package/dist/node_modules/antd/es/table/RcTable/VirtualTable.cjs +0 -15
- package/dist/node_modules/antd/es/table/RcTable/VirtualTable.js +0 -16
- package/dist/node_modules/antd/es/table/RcTable/index.cjs +0 -15
- package/dist/node_modules/antd/es/table/RcTable/index.js +0 -16
- package/dist/node_modules/antd/es/table/Table.cjs +0 -51
- package/dist/node_modules/antd/es/table/Table.js +0 -33
- package/dist/node_modules/antd/es/table/hooks/useContainerWidth.cjs +0 -16
- package/dist/node_modules/antd/es/table/hooks/useContainerWidth.js +0 -17
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterDropdown.cjs +0 -486
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterDropdown.js +0 -467
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterSearch.cjs +0 -47
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterSearch.js +0 -29
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterWrapper.cjs +0 -40
- package/dist/node_modules/antd/es/table/hooks/useFilter/FilterWrapper.js +0 -22
- package/dist/node_modules/antd/es/table/hooks/useFilter/index.cjs +0 -223
- package/dist/node_modules/antd/es/table/hooks/useFilter/index.js +0 -204
- package/dist/node_modules/antd/es/table/hooks/useLazyKVMap.cjs +0 -49
- package/dist/node_modules/antd/es/table/hooks/useLazyKVMap.js +0 -31
- package/dist/node_modules/antd/es/table/hooks/usePagination.cjs +0 -67
- package/dist/node_modules/antd/es/table/hooks/usePagination.js +0 -67
- package/dist/node_modules/antd/es/table/hooks/useSelection.cjs +0 -533
- package/dist/node_modules/antd/es/table/hooks/useSelection.js +0 -515
- package/dist/node_modules/antd/es/table/hooks/useSorter.cjs +0 -392
- package/dist/node_modules/antd/es/table/hooks/useSorter.js +0 -373
- package/dist/node_modules/antd/es/table/hooks/useTitleColumns.cjs +0 -38
- package/dist/node_modules/antd/es/table/hooks/useTitleColumns.js +0 -20
- package/dist/node_modules/antd/es/table/index.cjs +0 -3
- package/dist/node_modules/antd/es/table/index.js +0 -4
- package/dist/node_modules/antd/es/table/style/bordered.cjs +0 -151
- package/dist/node_modules/antd/es/table/style/bordered.js +0 -152
- package/dist/node_modules/antd/es/table/style/ellipsis.cjs +0 -32
- package/dist/node_modules/antd/es/table/style/ellipsis.js +0 -33
- package/dist/node_modules/antd/es/table/style/empty.cjs +0 -21
- package/dist/node_modules/antd/es/table/style/empty.js +0 -22
- package/dist/node_modules/antd/es/table/style/expand.cjs +0 -134
- package/dist/node_modules/antd/es/table/style/expand.js +0 -135
- package/dist/node_modules/antd/es/table/style/filter.cjs +0 -167
- package/dist/node_modules/antd/es/table/style/filter.js +0 -168
- package/dist/node_modules/antd/es/table/style/fixed.cjs +0 -121
- package/dist/node_modules/antd/es/table/style/fixed.js +0 -122
- package/dist/node_modules/antd/es/table/style/index.cjs +0 -335
- package/dist/node_modules/antd/es/table/style/index.js +0 -335
- package/dist/node_modules/antd/es/table/style/pagination.cjs +0 -46
- package/dist/node_modules/antd/es/table/style/pagination.js +0 -47
- package/dist/node_modules/antd/es/table/style/radius.cjs +0 -58
- package/dist/node_modules/antd/es/table/style/radius.js +0 -59
- package/dist/node_modules/antd/es/table/style/rtl.cjs +0 -46
- package/dist/node_modules/antd/es/table/style/rtl.js +0 -47
- package/dist/node_modules/antd/es/table/style/selection.cjs +0 -107
- package/dist/node_modules/antd/es/table/style/selection.js +0 -108
- package/dist/node_modules/antd/es/table/style/size.cjs +0 -58
- package/dist/node_modules/antd/es/table/style/size.js +0 -59
- package/dist/node_modules/antd/es/table/style/sorter.cjs +0 -94
- package/dist/node_modules/antd/es/table/style/sorter.js +0 -95
- package/dist/node_modules/antd/es/table/style/sticky.cjs +0 -67
- package/dist/node_modules/antd/es/table/style/sticky.js +0 -68
- package/dist/node_modules/antd/es/table/style/summary.cjs +0 -40
- package/dist/node_modules/antd/es/table/style/summary.js +0 -41
- package/dist/node_modules/antd/es/table/style/virtual.cjs +0 -85
- package/dist/node_modules/antd/es/table/style/virtual.js +0 -86
- package/dist/node_modules/antd/es/table/util.cjs +0 -30
- package/dist/node_modules/antd/es/table/util.js +0 -31
- package/dist/node_modules/antd/es/tabs/TabPane.cjs +0 -6
- package/dist/node_modules/antd/es/tabs/TabPane.js +0 -7
- package/dist/node_modules/antd/es/tabs/hooks/useAnimateConfig.cjs +0 -36
- package/dist/node_modules/antd/es/tabs/hooks/useAnimateConfig.js +0 -37
- package/dist/node_modules/antd/es/tabs/hooks/useLegacyItems.cjs +0 -63
- package/dist/node_modules/antd/es/tabs/hooks/useLegacyItems.js +0 -45
- package/dist/node_modules/antd/es/tabs/index.cjs +0 -134
- package/dist/node_modules/antd/es/tabs/index.js +0 -116
- package/dist/node_modules/antd/es/tabs/style/index.cjs +0 -851
- package/dist/node_modules/antd/es/tabs/style/index.js +0 -851
- package/dist/node_modules/antd/es/tabs/style/motion.cjs +0 -41
- package/dist/node_modules/antd/es/tabs/style/motion.js +0 -42
- package/dist/node_modules/antd/es/theme/context.cjs +0 -13
- package/dist/node_modules/antd/es/theme/context.js +0 -14
- package/dist/node_modules/antd/es/theme/interface/presetColors.cjs +0 -3
- package/dist/node_modules/antd/es/theme/interface/presetColors.js +0 -4
- package/dist/node_modules/antd/es/theme/themes/default/colorAlgorithm.cjs +0 -9
- package/dist/node_modules/antd/es/theme/themes/default/colorAlgorithm.js +0 -10
- package/dist/node_modules/antd/es/theme/themes/default/colors.cjs +0 -50
- package/dist/node_modules/antd/es/theme/themes/default/colors.js +0 -51
- package/dist/node_modules/antd/es/theme/themes/default/index.cjs +0 -32
- package/dist/node_modules/antd/es/theme/themes/default/index.js +0 -33
- package/dist/node_modules/antd/es/theme/themes/default/theme.cjs +0 -15
- package/dist/node_modules/antd/es/theme/themes/default/theme.js +0 -16
- package/dist/node_modules/antd/es/theme/themes/seed.cjs +0 -70
- package/dist/node_modules/antd/es/theme/themes/seed.js +0 -70
- package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.cjs +0 -86
- package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.js +0 -87
- package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.cjs +0 -19
- package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.js +0 -20
- package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.cjs +0 -12
- package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.js +0 -13
- package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.cjs +0 -36
- package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.js +0 -37
- package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.cjs +0 -22
- package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.js +0 -22
- package/dist/node_modules/antd/es/theme/themes/shared/genRadius.cjs +0 -43
- package/dist/node_modules/antd/es/theme/themes/shared/genRadius.js +0 -44
- package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.cjs +0 -28
- package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.js +0 -29
- package/dist/node_modules/antd/es/theme/useToken.cjs +0 -132
- package/dist/node_modules/antd/es/theme/useToken.js +0 -132
- package/dist/node_modules/antd/es/theme/util/alias.cjs +0 -170
- package/dist/node_modules/antd/es/theme/util/alias.js +0 -171
- package/dist/node_modules/antd/es/theme/util/genPresetColor.cjs +0 -17
- package/dist/node_modules/antd/es/theme/util/genPresetColor.js +0 -18
- package/dist/node_modules/antd/es/theme/util/genStyleUtils.cjs +0 -52
- package/dist/node_modules/antd/es/theme/util/genStyleUtils.js +0 -53
- package/dist/node_modules/antd/es/theme/util/getAlphaColor.cjs +0 -41
- package/dist/node_modules/antd/es/theme/util/getAlphaColor.js +0 -42
- package/dist/node_modules/antd/es/theme/util/useResetIconStyle.cjs +0 -28
- package/dist/node_modules/antd/es/theme/util/useResetIconStyle.js +0 -29
- package/dist/node_modules/antd/es/time-picker/locale/en_US.cjs +0 -6
- package/dist/node_modules/antd/es/time-picker/locale/en_US.js +0 -7
- package/dist/node_modules/antd/es/tooltip/PurePanel.cjs +0 -59
- package/dist/node_modules/antd/es/tooltip/PurePanel.js +0 -41
- package/dist/node_modules/antd/es/tooltip/index.cjs +0 -221
- package/dist/node_modules/antd/es/tooltip/index.js +0 -203
- package/dist/node_modules/antd/es/tooltip/style/index.cjs +0 -152
- package/dist/node_modules/antd/es/tooltip/style/index.js +0 -152
- package/dist/node_modules/antd/es/tooltip/util.cjs +0 -21
- package/dist/node_modules/antd/es/tooltip/util.js +0 -22
- package/dist/node_modules/antd/es/tree/DirectoryTree.cjs +0 -177
- package/dist/node_modules/antd/es/tree/DirectoryTree.js +0 -159
- package/dist/node_modules/antd/es/tree/Tree.cjs +0 -122
- package/dist/node_modules/antd/es/tree/Tree.js +0 -123
- package/dist/node_modules/antd/es/tree/index.cjs +0 -10
- package/dist/node_modules/antd/es/tree/index.js +0 -11
- package/dist/node_modules/antd/es/tree/style/directory.cjs +0 -55
- package/dist/node_modules/antd/es/tree/style/directory.js +0 -56
- package/dist/node_modules/antd/es/tree/style/index.cjs +0 -386
- package/dist/node_modules/antd/es/tree/style/index.js +0 -386
- package/dist/node_modules/antd/es/tree/utils/dictUtil.cjs +0 -73
- package/dist/node_modules/antd/es/tree/utils/dictUtil.js +0 -74
- package/dist/node_modules/antd/es/tree/utils/dropIndicator.cjs +0 -37
- package/dist/node_modules/antd/es/tree/utils/dropIndicator.js +0 -37
- package/dist/node_modules/antd/es/tree/utils/iconUtil.cjs +0 -95
- package/dist/node_modules/antd/es/tree/utils/iconUtil.js +0 -77
- package/dist/node_modules/antd/es/typography/Base/CopyBtn.cjs +0 -62
- package/dist/node_modules/antd/es/typography/Base/CopyBtn.js +0 -44
- package/dist/node_modules/antd/es/typography/Base/Ellipsis.cjs +0 -202
- package/dist/node_modules/antd/es/typography/Base/Ellipsis.js +0 -184
- package/dist/node_modules/antd/es/typography/Base/EllipsisTooltip.cjs +0 -40
- package/dist/node_modules/antd/es/typography/Base/EllipsisTooltip.js +0 -22
- package/dist/node_modules/antd/es/typography/Base/index.cjs +0 -354
- package/dist/node_modules/antd/es/typography/Base/index.js +0 -336
- package/dist/node_modules/antd/es/typography/Base/util.cjs +0 -33
- package/dist/node_modules/antd/es/typography/Base/util.js +0 -34
- package/dist/node_modules/antd/es/typography/Editable.cjs +0 -132
- package/dist/node_modules/antd/es/typography/Editable.js +0 -114
- package/dist/node_modules/antd/es/typography/Link.cjs +0 -51
- package/dist/node_modules/antd/es/typography/Link.js +0 -33
- package/dist/node_modules/antd/es/typography/Paragraph.cjs +0 -28
- package/dist/node_modules/antd/es/typography/Paragraph.js +0 -10
- package/dist/node_modules/antd/es/typography/Text.cjs +0 -55
- package/dist/node_modules/antd/es/typography/Text.js +0 -37
- package/dist/node_modules/antd/es/typography/Title.cjs +0 -48
- package/dist/node_modules/antd/es/typography/Title.js +0 -30
- package/dist/node_modules/antd/es/typography/Typography.cjs +0 -76
- package/dist/node_modules/antd/es/typography/Typography.js +0 -58
- package/dist/node_modules/antd/es/typography/hooks/useCopyClick.cjs +0 -96
- package/dist/node_modules/antd/es/typography/hooks/useCopyClick.js +0 -78
- package/dist/node_modules/antd/es/typography/hooks/useMergedConfig.cjs +0 -28
- package/dist/node_modules/antd/es/typography/hooks/useMergedConfig.js +0 -10
- package/dist/node_modules/antd/es/typography/hooks/usePrevious.cjs +0 -10
- package/dist/node_modules/antd/es/typography/hooks/usePrevious.js +0 -11
- package/dist/node_modules/antd/es/typography/hooks/useTooltipProps.cjs +0 -23
- package/dist/node_modules/antd/es/typography/hooks/useTooltipProps.js +0 -24
- package/dist/node_modules/antd/es/typography/index.cjs +0 -12
- package/dist/node_modules/antd/es/typography/index.js +0 -13
- package/dist/node_modules/antd/es/typography/style/index.cjs +0 -113
- package/dist/node_modules/antd/es/typography/style/index.js +0 -113
- package/dist/node_modules/antd/es/typography/style/mixins.cjs +0 -236
- package/dist/node_modules/antd/es/typography/style/mixins.js +0 -237
- package/dist/node_modules/antd/es/version/index.cjs +0 -3
- package/dist/node_modules/antd/es/version/index.js +0 -4
- package/dist/node_modules/antd/es/version/version.cjs +0 -3
- package/dist/node_modules/antd/es/version/version.js +0 -4
- package/dist/node_modules/bail/index.cjs +0 -7
- package/dist/node_modules/bail/index.js +0 -8
- package/dist/node_modules/classnames/index.cjs +0 -65
- package/dist/node_modules/classnames/index.js +0 -66
- package/dist/node_modules/clsx/dist/clsx.m.cjs +0 -15
- package/dist/node_modules/clsx/dist/clsx.m.js +0 -15
- package/dist/node_modules/comma-separated-tokens/index.cjs +0 -9
- package/dist/node_modules/comma-separated-tokens/index.js +0 -10
- package/dist/node_modules/compute-scroll-into-view/dist/index.cjs +0 -57
- package/dist/node_modules/compute-scroll-into-view/dist/index.js +0 -58
- package/dist/node_modules/copy-to-clipboard/index.cjs +0 -100
- package/dist/node_modules/copy-to-clipboard/index.js +0 -101
- package/dist/node_modules/d3-array/src/ascending.cjs +0 -5
- package/dist/node_modules/d3-array/src/ascending.js +0 -6
- package/dist/node_modules/d3-array/src/bisect.cjs +0 -10
- package/dist/node_modules/d3-array/src/bisect.js +0 -10
- package/dist/node_modules/d3-array/src/bisector.cjs +0 -46
- package/dist/node_modules/d3-array/src/bisector.js +0 -47
- package/dist/node_modules/d3-array/src/descending.cjs +0 -5
- package/dist/node_modules/d3-array/src/descending.js +0 -6
- package/dist/node_modules/d3-array/src/number.cjs +0 -5
- package/dist/node_modules/d3-array/src/number.js +0 -6
- package/dist/node_modules/d3-array/src/range.cjs +0 -10
- package/dist/node_modules/d3-array/src/range.js +0 -11
- package/dist/node_modules/d3-array/src/ticks.cjs +0 -51
- package/dist/node_modules/d3-array/src/ticks.js +0 -51
- package/dist/node_modules/d3-color/src/color.cjs +0 -338
- package/dist/node_modules/d3-color/src/color.js +0 -338
- package/dist/node_modules/d3-color/src/define.cjs +0 -13
- package/dist/node_modules/d3-color/src/define.js +0 -13
- package/dist/node_modules/d3-dispatch/src/dispatch.cjs +0 -69
- package/dist/node_modules/d3-dispatch/src/dispatch.js +0 -70
- package/dist/node_modules/d3-ease/src/cubic.cjs +0 -5
- package/dist/node_modules/d3-ease/src/cubic.js +0 -6
- package/dist/node_modules/d3-ease/src/elastic.cjs +0 -43
- package/dist/node_modules/d3-ease/src/elastic.js +0 -44
- package/dist/node_modules/d3-ease/src/linear.cjs +0 -3
- package/dist/node_modules/d3-ease/src/linear.js +0 -4
- package/dist/node_modules/d3-ease/src/math.cjs +0 -5
- package/dist/node_modules/d3-ease/src/math.js +0 -6
- package/dist/node_modules/d3-format/src/defaultLocale.cjs +0 -18
- package/dist/node_modules/d3-format/src/defaultLocale.js +0 -20
- package/dist/node_modules/d3-format/src/exponent.cjs +0 -6
- package/dist/node_modules/d3-format/src/exponent.js +0 -7
- package/dist/node_modules/d3-format/src/formatDecimal.cjs +0 -15
- package/dist/node_modules/d3-format/src/formatDecimal.js +0 -15
- package/dist/node_modules/d3-format/src/formatGroup.cjs +0 -14
- package/dist/node_modules/d3-format/src/formatGroup.js +0 -15
- package/dist/node_modules/d3-format/src/formatNumerals.cjs +0 -9
- package/dist/node_modules/d3-format/src/formatNumerals.js +0 -10
- package/dist/node_modules/d3-format/src/formatPrefixAuto.cjs +0 -11
- package/dist/node_modules/d3-format/src/formatPrefixAuto.js +0 -12
- package/dist/node_modules/d3-format/src/formatRounded.cjs +0 -9
- package/dist/node_modules/d3-format/src/formatRounded.js +0 -10
- package/dist/node_modules/d3-format/src/formatSpecifier.cjs +0 -37
- package/dist/node_modules/d3-format/src/formatSpecifier.js +0 -37
- package/dist/node_modules/d3-format/src/formatTrim.cjs +0 -20
- package/dist/node_modules/d3-format/src/formatTrim.js +0 -21
- package/dist/node_modules/d3-format/src/formatTypes.cjs +0 -20
- package/dist/node_modules/d3-format/src/formatTypes.js +0 -21
- package/dist/node_modules/d3-format/src/identity.cjs +0 -5
- package/dist/node_modules/d3-format/src/identity.js +0 -6
- package/dist/node_modules/d3-format/src/locale.cjs +0 -81
- package/dist/node_modules/d3-format/src/locale.js +0 -82
- package/dist/node_modules/d3-format/src/precisionFixed.cjs +0 -6
- package/dist/node_modules/d3-format/src/precisionFixed.js +0 -7
- package/dist/node_modules/d3-format/src/precisionPrefix.cjs +0 -6
- package/dist/node_modules/d3-format/src/precisionPrefix.js +0 -7
- package/dist/node_modules/d3-format/src/precisionRound.cjs +0 -7
- package/dist/node_modules/d3-format/src/precisionRound.js +0 -8
- package/dist/node_modules/d3-interpolate/src/array.cjs +0 -12
- package/dist/node_modules/d3-interpolate/src/array.js +0 -13
- package/dist/node_modules/d3-interpolate/src/color.cjs +0 -24
- package/dist/node_modules/d3-interpolate/src/color.js +0 -24
- package/dist/node_modules/d3-interpolate/src/constant.cjs +0 -3
- package/dist/node_modules/d3-interpolate/src/constant.js +0 -4
- package/dist/node_modules/d3-interpolate/src/date.cjs +0 -8
- package/dist/node_modules/d3-interpolate/src/date.js +0 -9
- package/dist/node_modules/d3-interpolate/src/number.cjs +0 -7
- package/dist/node_modules/d3-interpolate/src/number.js +0 -8
- package/dist/node_modules/d3-interpolate/src/numberArray.cjs +0 -15
- package/dist/node_modules/d3-interpolate/src/numberArray.js +0 -15
- package/dist/node_modules/d3-interpolate/src/object.cjs +0 -19
- package/dist/node_modules/d3-interpolate/src/object.js +0 -20
- package/dist/node_modules/d3-interpolate/src/rgb.cjs +0 -19
- package/dist/node_modules/d3-interpolate/src/rgb.js +0 -20
- package/dist/node_modules/d3-interpolate/src/round.cjs +0 -7
- package/dist/node_modules/d3-interpolate/src/round.js +0 -8
- package/dist/node_modules/d3-interpolate/src/string.cjs +0 -42
- package/dist/node_modules/d3-interpolate/src/string.js +0 -43
- package/dist/node_modules/d3-interpolate/src/transform/decompose.cjs +0 -28
- package/dist/node_modules/d3-interpolate/src/transform/decompose.js +0 -28
- package/dist/node_modules/d3-interpolate/src/transform/index.cjs +0 -58
- package/dist/node_modules/d3-interpolate/src/transform/index.js +0 -59
- package/dist/node_modules/d3-interpolate/src/transform/parse.cjs +0 -17
- package/dist/node_modules/d3-interpolate/src/transform/parse.js +0 -18
- package/dist/node_modules/d3-interpolate/src/value.cjs +0 -15
- package/dist/node_modules/d3-interpolate/src/value.js +0 -16
- package/dist/node_modules/d3-path/src/path.cjs +0 -87
- package/dist/node_modules/d3-path/src/path.js +0 -88
- package/dist/node_modules/d3-scale/src/band.cjs +0 -70
- package/dist/node_modules/d3-scale/src/band.js +0 -70
- package/dist/node_modules/d3-scale/src/constant.cjs +0 -7
- package/dist/node_modules/d3-scale/src/constant.js +0 -8
- package/dist/node_modules/d3-scale/src/continuous.cjs +0 -95
- package/dist/node_modules/d3-scale/src/continuous.js +0 -95
- package/dist/node_modules/d3-scale/src/init.cjs +0 -15
- package/dist/node_modules/d3-scale/src/init.js +0 -16
- package/dist/node_modules/d3-scale/src/linear.cjs +0 -61
- package/dist/node_modules/d3-scale/src/linear.js +0 -61
- package/dist/node_modules/d3-scale/src/number.cjs +0 -5
- package/dist/node_modules/d3-scale/src/number.js +0 -6
- package/dist/node_modules/d3-scale/src/ordinal.cjs +0 -38
- package/dist/node_modules/d3-scale/src/ordinal.js +0 -38
- package/dist/node_modules/d3-scale/src/tickFormat.cjs +0 -33
- package/dist/node_modules/d3-scale/src/tickFormat.js +0 -34
- package/dist/node_modules/d3-selection/src/array.cjs +0 -5
- package/dist/node_modules/d3-selection/src/array.js +0 -6
- package/dist/node_modules/d3-selection/src/constant.cjs +0 -7
- package/dist/node_modules/d3-selection/src/constant.js +0 -8
- package/dist/node_modules/d3-selection/src/creator.cjs +0 -19
- package/dist/node_modules/d3-selection/src/creator.js +0 -20
- package/dist/node_modules/d3-selection/src/matcher.cjs +0 -14
- package/dist/node_modules/d3-selection/src/matcher.js +0 -14
- package/dist/node_modules/d3-selection/src/namespace.cjs +0 -8
- package/dist/node_modules/d3-selection/src/namespace.js +0 -9
- package/dist/node_modules/d3-selection/src/namespaces.cjs +0 -12
- package/dist/node_modules/d3-selection/src/namespaces.js +0 -12
- package/dist/node_modules/d3-selection/src/pointer.cjs +0 -21
- package/dist/node_modules/d3-selection/src/pointer.js +0 -22
- package/dist/node_modules/d3-selection/src/select.cjs +0 -6
- package/dist/node_modules/d3-selection/src/select.js +0 -7
- package/dist/node_modules/d3-selection/src/selection/append.cjs +0 -9
- package/dist/node_modules/d3-selection/src/selection/append.js +0 -10
- package/dist/node_modules/d3-selection/src/selection/attr.cjs +0 -45
- package/dist/node_modules/d3-selection/src/selection/attr.js +0 -46
- package/dist/node_modules/d3-selection/src/selection/call.cjs +0 -8
- package/dist/node_modules/d3-selection/src/selection/call.js +0 -9
- package/dist/node_modules/d3-selection/src/selection/classed.cjs +0 -63
- package/dist/node_modules/d3-selection/src/selection/classed.js +0 -64
- package/dist/node_modules/d3-selection/src/selection/clone.cjs +0 -13
- package/dist/node_modules/d3-selection/src/selection/clone.js +0 -14
- package/dist/node_modules/d3-selection/src/selection/data.cjs +0 -75
- package/dist/node_modules/d3-selection/src/selection/data.js +0 -76
- package/dist/node_modules/d3-selection/src/selection/datum.cjs +0 -5
- package/dist/node_modules/d3-selection/src/selection/datum.js +0 -6
- package/dist/node_modules/d3-selection/src/selection/dispatch.cjs +0 -27
- package/dist/node_modules/d3-selection/src/selection/dispatch.js +0 -28
- package/dist/node_modules/d3-selection/src/selection/each.cjs +0 -10
- package/dist/node_modules/d3-selection/src/selection/each.js +0 -11
- package/dist/node_modules/d3-selection/src/selection/empty.cjs +0 -5
- package/dist/node_modules/d3-selection/src/selection/empty.js +0 -6
- package/dist/node_modules/d3-selection/src/selection/enter.cjs +0 -31
- package/dist/node_modules/d3-selection/src/selection/enter.js +0 -31
- package/dist/node_modules/d3-selection/src/selection/exit.cjs +0 -7
- package/dist/node_modules/d3-selection/src/selection/exit.js +0 -8
- package/dist/node_modules/d3-selection/src/selection/filter.cjs +0 -15
- package/dist/node_modules/d3-selection/src/selection/filter.js +0 -16
- package/dist/node_modules/d3-selection/src/selection/html.cjs +0 -19
- package/dist/node_modules/d3-selection/src/selection/html.js +0 -20
- package/dist/node_modules/d3-selection/src/selection/index.cjs +0 -88
- package/dist/node_modules/d3-selection/src/selection/index.js +0 -88
- package/dist/node_modules/d3-selection/src/selection/insert.cjs +0 -13
- package/dist/node_modules/d3-selection/src/selection/insert.js +0 -14
- package/dist/node_modules/d3-selection/src/selection/iterator.cjs +0 -9
- package/dist/node_modules/d3-selection/src/selection/iterator.js +0 -10
- package/dist/node_modules/d3-selection/src/selection/join.cjs +0 -18
- package/dist/node_modules/d3-selection/src/selection/join.js +0 -19
- package/dist/node_modules/d3-selection/src/selection/lower.cjs +0 -8
- package/dist/node_modules/d3-selection/src/selection/lower.js +0 -9
- package/dist/node_modules/d3-selection/src/selection/merge.cjs +0 -17
- package/dist/node_modules/d3-selection/src/selection/merge.js +0 -18
- package/dist/node_modules/d3-selection/src/selection/node.cjs +0 -11
- package/dist/node_modules/d3-selection/src/selection/node.js +0 -12
- package/dist/node_modules/d3-selection/src/selection/nodes.cjs +0 -5
- package/dist/node_modules/d3-selection/src/selection/nodes.js +0 -6
- package/dist/node_modules/d3-selection/src/selection/on.cjs +0 -63
- package/dist/node_modules/d3-selection/src/selection/on.js +0 -64
- package/dist/node_modules/d3-selection/src/selection/order.cjs +0 -13
- package/dist/node_modules/d3-selection/src/selection/order.js +0 -14
- package/dist/node_modules/d3-selection/src/selection/property.cjs +0 -22
- package/dist/node_modules/d3-selection/src/selection/property.js +0 -23
- package/dist/node_modules/d3-selection/src/selection/raise.cjs +0 -8
- package/dist/node_modules/d3-selection/src/selection/raise.js +0 -9
- package/dist/node_modules/d3-selection/src/selection/remove.cjs +0 -9
- package/dist/node_modules/d3-selection/src/selection/remove.js +0 -10
- package/dist/node_modules/d3-selection/src/selection/select.cjs +0 -16
- package/dist/node_modules/d3-selection/src/selection/select.js +0 -17
- package/dist/node_modules/d3-selection/src/selection/selectAll.cjs +0 -23
- package/dist/node_modules/d3-selection/src/selection/selectAll.js +0 -24
- package/dist/node_modules/d3-selection/src/selection/selectChild.cjs +0 -15
- package/dist/node_modules/d3-selection/src/selection/selectChild.js +0 -16
- package/dist/node_modules/d3-selection/src/selection/selectChildren.cjs +0 -15
- package/dist/node_modules/d3-selection/src/selection/selectChildren.js +0 -16
- package/dist/node_modules/d3-selection/src/selection/size.cjs +0 -7
- package/dist/node_modules/d3-selection/src/selection/size.js +0 -8
- package/dist/node_modules/d3-selection/src/selection/sort.cjs +0 -21
- package/dist/node_modules/d3-selection/src/selection/sort.js +0 -22
- package/dist/node_modules/d3-selection/src/selection/sparse.cjs +0 -5
- package/dist/node_modules/d3-selection/src/selection/sparse.js +0 -6
- package/dist/node_modules/d3-selection/src/selection/style.cjs +0 -28
- package/dist/node_modules/d3-selection/src/selection/style.js +0 -28
- package/dist/node_modules/d3-selection/src/selection/text.cjs +0 -19
- package/dist/node_modules/d3-selection/src/selection/text.js +0 -20
- package/dist/node_modules/d3-selection/src/selector.cjs +0 -9
- package/dist/node_modules/d3-selection/src/selector.js +0 -10
- package/dist/node_modules/d3-selection/src/selectorAll.cjs +0 -10
- package/dist/node_modules/d3-selection/src/selectorAll.js +0 -11
- package/dist/node_modules/d3-selection/src/sourceEvent.cjs +0 -7
- package/dist/node_modules/d3-selection/src/sourceEvent.js +0 -8
- package/dist/node_modules/d3-selection/src/window.cjs +0 -5
- package/dist/node_modules/d3-selection/src/window.js +0 -6
- package/dist/node_modules/d3-shape/src/arc.cjs +0 -132
- package/dist/node_modules/d3-shape/src/arc.js +0 -133
- package/dist/node_modules/d3-shape/src/array.cjs +0 -5
- package/dist/node_modules/d3-shape/src/array.js +0 -6
- package/dist/node_modules/d3-shape/src/constant.cjs +0 -7
- package/dist/node_modules/d3-shape/src/constant.js +0 -8
- package/dist/node_modules/d3-shape/src/curve/cardinal.cjs +0 -73
- package/dist/node_modules/d3-shape/src/curve/cardinal.js +0 -73
- package/dist/node_modules/d3-shape/src/curve/linear.cjs +0 -38
- package/dist/node_modules/d3-shape/src/curve/linear.js +0 -39
- package/dist/node_modules/d3-shape/src/descending.cjs +0 -5
- package/dist/node_modules/d3-shape/src/descending.js +0 -6
- package/dist/node_modules/d3-shape/src/identity.cjs +0 -5
- package/dist/node_modules/d3-shape/src/identity.js +0 -6
- package/dist/node_modules/d3-shape/src/line.cjs +0 -40
- package/dist/node_modules/d3-shape/src/line.js +0 -41
- package/dist/node_modules/d3-shape/src/math.cjs +0 -31
- package/dist/node_modules/d3-shape/src/math.js +0 -32
- package/dist/node_modules/d3-shape/src/path.cjs +0 -18
- package/dist/node_modules/d3-shape/src/path.js +0 -19
- package/dist/node_modules/d3-shape/src/pie.cjs +0 -54
- package/dist/node_modules/d3-shape/src/pie.js +0 -55
- package/dist/node_modules/d3-shape/src/point.cjs +0 -9
- package/dist/node_modules/d3-shape/src/point.js +0 -10
- package/dist/node_modules/d3-timer/src/timeout.cjs +0 -12
- package/dist/node_modules/d3-timer/src/timeout.js +0 -13
- package/dist/node_modules/d3-timer/src/timer.cjs +0 -95
- package/dist/node_modules/d3-timer/src/timer.js +0 -96
- package/dist/node_modules/d3-transition/src/interrupt.cjs +0 -20
- package/dist/node_modules/d3-transition/src/interrupt.js +0 -21
- package/dist/node_modules/d3-transition/src/selection/index.cjs +0 -6
- package/dist/node_modules/d3-transition/src/selection/index.js +0 -5
- package/dist/node_modules/d3-transition/src/selection/interrupt.cjs +0 -8
- package/dist/node_modules/d3-transition/src/selection/interrupt.js +0 -9
- package/dist/node_modules/d3-transition/src/selection/transition.cjs +0 -38
- package/dist/node_modules/d3-transition/src/selection/transition.js +0 -39
- package/dist/node_modules/d3-transition/src/transition/attr.cjs +0 -54
- package/dist/node_modules/d3-transition/src/transition/attr.js +0 -55
- package/dist/node_modules/d3-transition/src/transition/attrTween.cjs +0 -41
- package/dist/node_modules/d3-transition/src/transition/attrTween.js +0 -42
- package/dist/node_modules/d3-transition/src/transition/delay.cjs +0 -17
- package/dist/node_modules/d3-transition/src/transition/delay.js +0 -18
- package/dist/node_modules/d3-transition/src/transition/duration.cjs +0 -17
- package/dist/node_modules/d3-transition/src/transition/duration.js +0 -18
- package/dist/node_modules/d3-transition/src/transition/ease.cjs +0 -13
- package/dist/node_modules/d3-transition/src/transition/ease.js +0 -14
- package/dist/node_modules/d3-transition/src/transition/easeVarying.cjs +0 -14
- package/dist/node_modules/d3-transition/src/transition/easeVarying.js +0 -15
- package/dist/node_modules/d3-transition/src/transition/end.cjs +0 -22
- package/dist/node_modules/d3-transition/src/transition/end.js +0 -23
- package/dist/node_modules/d3-transition/src/transition/filter.cjs +0 -15
- package/dist/node_modules/d3-transition/src/transition/filter.js +0 -16
- package/dist/node_modules/d3-transition/src/transition/index.cjs +0 -67
- package/dist/node_modules/d3-transition/src/transition/index.js +0 -68
- package/dist/node_modules/d3-transition/src/transition/interpolate.cjs +0 -10
- package/dist/node_modules/d3-transition/src/transition/interpolate.js +0 -11
- package/dist/node_modules/d3-transition/src/transition/merge.cjs +0 -17
- package/dist/node_modules/d3-transition/src/transition/merge.js +0 -18
- package/dist/node_modules/d3-transition/src/transition/on.cjs +0 -22
- package/dist/node_modules/d3-transition/src/transition/on.js +0 -23
- package/dist/node_modules/d3-transition/src/transition/remove.cjs +0 -12
- package/dist/node_modules/d3-transition/src/transition/remove.js +0 -13
- package/dist/node_modules/d3-transition/src/transition/schedule.cjs +0 -125
- package/dist/node_modules/d3-transition/src/transition/schedule.js +0 -125
- package/dist/node_modules/d3-transition/src/transition/select.cjs +0 -19
- package/dist/node_modules/d3-transition/src/transition/select.js +0 -20
- package/dist/node_modules/d3-transition/src/transition/selectAll.cjs +0 -23
- package/dist/node_modules/d3-transition/src/transition/selectAll.js +0 -24
- package/dist/node_modules/d3-transition/src/transition/selection.cjs +0 -7
- package/dist/node_modules/d3-transition/src/transition/selection.js +0 -8
- package/dist/node_modules/d3-transition/src/transition/style.cjs +0 -46
- package/dist/node_modules/d3-transition/src/transition/style.js +0 -47
- package/dist/node_modules/d3-transition/src/transition/styleTween.cjs +0 -24
- package/dist/node_modules/d3-transition/src/transition/styleTween.js +0 -25
- package/dist/node_modules/d3-transition/src/transition/text.cjs +0 -17
- package/dist/node_modules/d3-transition/src/transition/text.js +0 -18
- package/dist/node_modules/d3-transition/src/transition/textTween.cjs +0 -24
- package/dist/node_modules/d3-transition/src/transition/textTween.js +0 -25
- package/dist/node_modules/d3-transition/src/transition/transition.cjs +0 -21
- package/dist/node_modules/d3-transition/src/transition/transition.js +0 -22
- package/dist/node_modules/d3-transition/src/transition/tween.cjs +0 -64
- package/dist/node_modules/d3-transition/src/transition/tween.js +0 -64
- package/dist/node_modules/d3-zoom/src/transform.cjs +0 -44
- package/dist/node_modules/d3-zoom/src/transform.js +0 -45
- package/dist/node_modules/date-fns/_lib/addLeadingZeros.cjs +0 -7
- package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +0 -8
- package/dist/node_modules/date-fns/_lib/defaultOptions.cjs +0 -6
- package/dist/node_modules/date-fns/_lib/defaultOptions.js +0 -7
- package/dist/node_modules/date-fns/_lib/format/formatters.cjs +0 -652
- package/dist/node_modules/date-fns/_lib/format/formatters.js +0 -653
- package/dist/node_modules/date-fns/_lib/format/lightFormatters.cjs +0 -61
- package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +0 -62
- package/dist/node_modules/date-fns/_lib/format/longFormatters.cjs +0 -57
- package/dist/node_modules/date-fns/_lib/format/longFormatters.js +0 -58
- package/dist/node_modules/date-fns/_lib/getRoundingMethod.cjs +0 -9
- package/dist/node_modules/date-fns/_lib/getRoundingMethod.js +0 -10
- package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.cjs +0 -19
- package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +0 -20
- package/dist/node_modules/date-fns/_lib/protectedTokens.cjs +0 -22
- package/dist/node_modules/date-fns/_lib/protectedTokens.js +0 -23
- package/dist/node_modules/date-fns/compareAsc.cjs +0 -17
- package/dist/node_modules/date-fns/compareAsc.js +0 -17
- package/dist/node_modules/date-fns/constants.cjs +0 -9
- package/dist/node_modules/date-fns/constants.js +0 -10
- package/dist/node_modules/date-fns/constructFrom.cjs +0 -11
- package/dist/node_modules/date-fns/constructFrom.js +0 -11
- package/dist/node_modules/date-fns/constructNow.cjs +0 -8
- package/dist/node_modules/date-fns/constructNow.js +0 -8
- package/dist/node_modules/date-fns/differenceInCalendarDays.cjs +0 -14
- package/dist/node_modules/date-fns/differenceInCalendarDays.js +0 -14
- package/dist/node_modules/date-fns/differenceInCalendarMonths.cjs +0 -12
- package/dist/node_modules/date-fns/differenceInCalendarMonths.js +0 -12
- package/dist/node_modules/date-fns/differenceInMilliseconds.cjs +0 -8
- package/dist/node_modules/date-fns/differenceInMilliseconds.js +0 -8
- package/dist/node_modules/date-fns/differenceInMonths.cjs +0 -31
- package/dist/node_modules/date-fns/differenceInMonths.js +0 -31
- package/dist/node_modules/date-fns/differenceInSeconds.cjs +0 -10
- package/dist/node_modules/date-fns/differenceInSeconds.js +0 -10
- package/dist/node_modules/date-fns/endOfDay.cjs +0 -10
- package/dist/node_modules/date-fns/endOfDay.js +0 -10
- package/dist/node_modules/date-fns/endOfMonth.cjs +0 -12
- package/dist/node_modules/date-fns/endOfMonth.js +0 -12
- package/dist/node_modules/date-fns/format.cjs +0 -78
- package/dist/node_modules/date-fns/format.js +0 -78
- package/dist/node_modules/date-fns/formatDistance.cjs +0 -91
- package/dist/node_modules/date-fns/formatDistance.js +0 -91
- package/dist/node_modules/date-fns/formatDistanceToNow.cjs +0 -9
- package/dist/node_modules/date-fns/formatDistanceToNow.js +0 -9
- package/dist/node_modules/date-fns/getDayOfYear.cjs +0 -13
- package/dist/node_modules/date-fns/getDayOfYear.js +0 -13
- package/dist/node_modules/date-fns/getISOWeek.cjs +0 -13
- package/dist/node_modules/date-fns/getISOWeek.js +0 -13
- package/dist/node_modules/date-fns/getISOWeekYear.cjs +0 -26
- package/dist/node_modules/date-fns/getISOWeekYear.js +0 -26
- package/dist/node_modules/date-fns/getWeek.cjs +0 -13
- package/dist/node_modules/date-fns/getWeek.js +0 -13
- package/dist/node_modules/date-fns/getWeekYear.cjs +0 -29
- package/dist/node_modules/date-fns/getWeekYear.js +0 -29
- package/dist/node_modules/date-fns/isDate.cjs +0 -7
- package/dist/node_modules/date-fns/isDate.js +0 -7
- package/dist/node_modules/date-fns/isLastDayOfMonth.cjs +0 -11
- package/dist/node_modules/date-fns/isLastDayOfMonth.js +0 -11
- package/dist/node_modules/date-fns/isValid.cjs +0 -13
- package/dist/node_modules/date-fns/isValid.js +0 -13
- package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.cjs +0 -9
- package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +0 -10
- package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.cjs +0 -19
- package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +0 -20
- package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.cjs +0 -42
- package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +0 -43
- package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.cjs +0 -15
- package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +0 -16
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.cjs +0 -84
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +0 -85
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.cjs +0 -35
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +0 -36
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.cjs +0 -11
- package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +0 -12
- package/dist/node_modules/date-fns/locale/en-US/_lib/localize.cjs +0 -163
- package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +0 -164
- package/dist/node_modules/date-fns/locale/en-US/_lib/match.cjs +0 -121
- package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +0 -122
- package/dist/node_modules/date-fns/locale/en-US.cjs +0 -21
- package/dist/node_modules/date-fns/locale/en-US.js +0 -21
- package/dist/node_modules/date-fns/startOfDay.cjs +0 -10
- package/dist/node_modules/date-fns/startOfDay.js +0 -10
- package/dist/node_modules/date-fns/startOfISOWeek.cjs +0 -8
- package/dist/node_modules/date-fns/startOfISOWeek.js +0 -8
- package/dist/node_modules/date-fns/startOfISOWeekYear.cjs +0 -14
- package/dist/node_modules/date-fns/startOfISOWeekYear.js +0 -14
- package/dist/node_modules/date-fns/startOfWeek.cjs +0 -16
- package/dist/node_modules/date-fns/startOfWeek.js +0 -16
- package/dist/node_modules/date-fns/startOfWeekYear.cjs +0 -18
- package/dist/node_modules/date-fns/startOfWeekYear.js +0 -18
- package/dist/node_modules/date-fns/startOfYear.cjs +0 -13
- package/dist/node_modules/date-fns/startOfYear.js +0 -13
- package/dist/node_modules/date-fns/toDate.cjs +0 -14
- package/dist/node_modules/date-fns/toDate.js +0 -14
- package/dist/node_modules/dayjs/dayjs.min.cjs +0 -285
- package/dist/node_modules/dayjs/dayjs.min.js +0 -286
- package/dist/node_modules/dayjs/plugin/advancedFormat.cjs +0 -57
- package/dist/node_modules/dayjs/plugin/advancedFormat.js +0 -58
- package/dist/node_modules/dayjs/plugin/customParseFormat.cjs +0 -132
- package/dist/node_modules/dayjs/plugin/customParseFormat.js +0 -133
- package/dist/node_modules/dayjs/plugin/localeData.cjs +0 -85
- package/dist/node_modules/dayjs/plugin/localeData.js +0 -86
- package/dist/node_modules/dayjs/plugin/weekOfYear.cjs +0 -32
- package/dist/node_modules/dayjs/plugin/weekOfYear.js +0 -33
- package/dist/node_modules/dayjs/plugin/weekYear.cjs +0 -22
- package/dist/node_modules/dayjs/plugin/weekYear.js +0 -23
- package/dist/node_modules/dayjs/plugin/weekday.cjs +0 -22
- package/dist/node_modules/dayjs/plugin/weekday.js +0 -23
- package/dist/node_modules/decode-named-character-reference/index.dom.cjs +0 -16
- package/dist/node_modules/decode-named-character-reference/index.dom.js +0 -17
- package/dist/node_modules/devlop/lib/default.cjs +0 -7
- package/dist/node_modules/devlop/lib/default.js +0 -8
- package/dist/node_modules/engine.io-client/build/esm/contrib/has-cors.cjs +0 -8
- package/dist/node_modules/engine.io-client/build/esm/contrib/has-cors.js +0 -9
- package/dist/node_modules/engine.io-client/build/esm/contrib/parseqs.cjs +0 -23
- package/dist/node_modules/engine.io-client/build/esm/contrib/parseqs.js +0 -24
- package/dist/node_modules/engine.io-client/build/esm/contrib/parseuri.cjs +0 -60
- package/dist/node_modules/engine.io-client/build/esm/contrib/parseuri.js +0 -61
- package/dist/node_modules/engine.io-client/build/esm/globals.cjs +0 -25
- package/dist/node_modules/engine.io-client/build/esm/globals.js +0 -26
- package/dist/node_modules/engine.io-client/build/esm/socket.cjs +0 -575
- package/dist/node_modules/engine.io-client/build/esm/socket.js +0 -576
- package/dist/node_modules/engine.io-client/build/esm/transport.cjs +0 -137
- package/dist/node_modules/engine.io-client/build/esm/transport.js +0 -138
- package/dist/node_modules/engine.io-client/build/esm/transports/index.cjs +0 -10
- package/dist/node_modules/engine.io-client/build/esm/transports/index.js +0 -11
- package/dist/node_modules/engine.io-client/build/esm/transports/polling-xhr.cjs +0 -248
- package/dist/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +0 -249
- package/dist/node_modules/engine.io-client/build/esm/transports/polling.cjs +0 -134
- package/dist/node_modules/engine.io-client/build/esm/transports/polling.js +0 -135
- package/dist/node_modules/engine.io-client/build/esm/transports/websocket.cjs +0 -101
- package/dist/node_modules/engine.io-client/build/esm/transports/websocket.js +0 -102
- package/dist/node_modules/engine.io-client/build/esm/transports/webtransport.cjs +0 -66
- package/dist/node_modules/engine.io-client/build/esm/transports/webtransport.js +0 -67
- package/dist/node_modules/engine.io-client/build/esm/util.cjs +0 -52
- package/dist/node_modules/engine.io-client/build/esm/util.js +0 -53
- package/dist/node_modules/engine.io-parser/build/esm/commons.cjs +0 -17
- package/dist/node_modules/engine.io-parser/build/esm/commons.js +0 -18
- package/dist/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.cjs +0 -27
- package/dist/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +0 -28
- package/dist/node_modules/engine.io-parser/build/esm/decodePacket.browser.cjs +0 -55
- package/dist/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +0 -56
- package/dist/node_modules/engine.io-parser/build/esm/encodePacket.browser.cjs +0 -56
- package/dist/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +0 -57
- package/dist/node_modules/engine.io-parser/build/esm/index.cjs +0 -151
- package/dist/node_modules/engine.io-parser/build/esm/index.js +0 -152
- package/dist/node_modules/estree-util-is-identifier-name/lib/index.cjs +0 -10
- package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +0 -11
- package/dist/node_modules/extend/index.cjs +0 -93
- package/dist/node_modules/extend/index.js +0 -94
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.cjs +0 -389
- package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +0 -390
- package/dist/node_modules/hast-util-whitespace/lib/index.cjs +0 -9
- package/dist/node_modules/hast-util-whitespace/lib/index.js +0 -10
- package/dist/node_modules/html-url-attributes/lib/index.cjs +0 -25
- package/dist/node_modules/html-url-attributes/lib/index.js +0 -26
- package/dist/node_modules/inline-style-parser/index.cjs +0 -140
- package/dist/node_modules/inline-style-parser/index.js +0 -141
- package/dist/node_modules/internmap/src/index.cjs +0 -42
- package/dist/node_modules/internmap/src/index.js +0 -43
- package/dist/node_modules/is-plain-obj/index.cjs +0 -9
- package/dist/node_modules/is-plain-obj/index.js +0 -10
- package/dist/node_modules/mdast-util-from-markdown/lib/index.cjs +0 -718
- package/dist/node_modules/mdast-util-from-markdown/lib/index.js +0 -719
- package/dist/node_modules/mdast-util-to-hast/lib/footer.cjs +0 -114
- package/dist/node_modules/mdast-util-to-hast/lib/footer.js +0 -115
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.cjs +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.cjs +0 -7
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +0 -8
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.cjs +0 -23
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +0 -24
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.cjs +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.cjs +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.cjs +0 -40
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +0 -41
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.cjs +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.cjs +0 -10
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +0 -11
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.cjs +0 -18
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +0 -19
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.cjs +0 -15
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +0 -16
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.cjs +0 -58
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +0 -59
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.cjs +0 -14
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +0 -15
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.cjs +0 -23
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +0 -24
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.cjs +0 -17
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +0 -18
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.cjs +0 -63
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +0 -64
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.cjs +0 -25
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +0 -26
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.cjs +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.cjs +0 -7
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +0 -8
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.cjs +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.cjs +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +0 -14
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.cjs +0 -34
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +0 -35
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.cjs +0 -38
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +0 -39
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.cjs +0 -8
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +0 -9
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.cjs +0 -12
- package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +0 -13
- package/dist/node_modules/mdast-util-to-hast/lib/index.cjs +0 -14
- package/dist/node_modules/mdast-util-to-hast/lib/index.js +0 -15
- package/dist/node_modules/mdast-util-to-hast/lib/revert.cjs +0 -28
- package/dist/node_modules/mdast-util-to-hast/lib/revert.js +0 -29
- package/dist/node_modules/mdast-util-to-hast/lib/state.cjs +0 -147
- package/dist/node_modules/mdast-util-to-hast/lib/state.js +0 -148
- package/dist/node_modules/mdast-util-to-string/lib/index.cjs +0 -37
- package/dist/node_modules/mdast-util-to-string/lib/index.js +0 -38
- package/dist/node_modules/micromark/lib/constructs.cjs +0 -92
- package/dist/node_modules/micromark/lib/constructs.js +0 -93
- package/dist/node_modules/micromark/lib/create-tokenizer.cjs +0 -319
- package/dist/node_modules/micromark/lib/create-tokenizer.js +0 -320
- package/dist/node_modules/micromark/lib/initialize/content.cjs +0 -52
- package/dist/node_modules/micromark/lib/initialize/content.js +0 -53
- package/dist/node_modules/micromark/lib/initialize/document.cjs +0 -185
- package/dist/node_modules/micromark/lib/initialize/document.js +0 -186
- package/dist/node_modules/micromark/lib/initialize/flow.cjs +0 -41
- package/dist/node_modules/micromark/lib/initialize/flow.js +0 -42
- package/dist/node_modules/micromark/lib/initialize/text.cjs +0 -141
- package/dist/node_modules/micromark/lib/initialize/text.js +0 -142
- package/dist/node_modules/micromark/lib/parse.cjs +0 -33
- package/dist/node_modules/micromark/lib/parse.js +0 -34
- package/dist/node_modules/micromark/lib/postprocess.cjs +0 -8
- package/dist/node_modules/micromark/lib/postprocess.js +0 -9
- package/dist/node_modules/micromark/lib/preprocess.cjs +0 -79
- package/dist/node_modules/micromark/lib/preprocess.js +0 -80
- package/dist/node_modules/micromark-core-commonmark/lib/attention.cjs +0 -134
- package/dist/node_modules/micromark-core-commonmark/lib/attention.js +0 -135
- package/dist/node_modules/micromark-core-commonmark/lib/autolink.cjs +0 -102
- package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +0 -103
- package/dist/node_modules/micromark-core-commonmark/lib/blank-line.cjs +0 -17
- package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +0 -18
- package/dist/node_modules/micromark-core-commonmark/lib/block-quote.cjs +0 -60
- package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +0 -61
- package/dist/node_modules/micromark-core-commonmark/lib/character-escape.cjs +0 -27
- package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +0 -28
- package/dist/node_modules/micromark-core-commonmark/lib/character-reference.cjs +0 -67
- package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +0 -68
- package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.cjs +0 -185
- package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +0 -186
- package/dist/node_modules/micromark-core-commonmark/lib/code-indented.cjs +0 -66
- package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +0 -67
- package/dist/node_modules/micromark-core-commonmark/lib/code-text.cjs +0 -115
- package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +0 -116
- package/dist/node_modules/micromark-core-commonmark/lib/content.cjs +0 -74
- package/dist/node_modules/micromark-core-commonmark/lib/content.js +0 -75
- package/dist/node_modules/micromark-core-commonmark/lib/definition.cjs +0 -93
- package/dist/node_modules/micromark-core-commonmark/lib/definition.js +0 -94
- package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.cjs +0 -22
- package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +0 -23
- package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.cjs +0 -94
- package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +0 -95
- package/dist/node_modules/micromark-core-commonmark/lib/html-flow.cjs +0 -382
- package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +0 -383
- package/dist/node_modules/micromark-core-commonmark/lib/html-text.cjs +0 -308
- package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +0 -309
- package/dist/node_modules/micromark-core-commonmark/lib/label-end.cjs +0 -234
- package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +0 -235
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.cjs +0 -32
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +0 -33
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.cjs +0 -23
- package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +0 -24
- package/dist/node_modules/micromark-core-commonmark/lib/line-ending.cjs +0 -16
- package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +0 -17
- package/dist/node_modules/micromark-core-commonmark/lib/list.cjs +0 -134
- package/dist/node_modules/micromark-core-commonmark/lib/list.js +0 -135
- package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.cjs +0 -94
- package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +0 -95
- package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.cjs +0 -41
- package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +0 -42
- package/dist/node_modules/micromark-factory-destination/index.cjs +0 -93
- package/dist/node_modules/micromark-factory-destination/index.js +0 -94
- package/dist/node_modules/micromark-factory-label/index.cjs +0 -62
- package/dist/node_modules/micromark-factory-label/index.js +0 -63
- package/dist/node_modules/micromark-factory-space/index.cjs +0 -23
- package/dist/node_modules/micromark-factory-space/index.js +0 -24
- package/dist/node_modules/micromark-factory-title/index.cjs +0 -64
- package/dist/node_modules/micromark-factory-title/index.js +0 -65
- package/dist/node_modules/micromark-factory-whitespace/index.cjs +0 -21
- package/dist/node_modules/micromark-factory-whitespace/index.js +0 -22
- package/dist/node_modules/micromark-util-character/index.cjs +0 -43
- package/dist/node_modules/micromark-util-character/index.js +0 -44
- package/dist/node_modules/micromark-util-chunked/index.cjs +0 -35
- package/dist/node_modules/micromark-util-chunked/index.js +0 -36
- package/dist/node_modules/micromark-util-classify-character/index.cjs +0 -11
- package/dist/node_modules/micromark-util-classify-character/index.js +0 -12
- package/dist/node_modules/micromark-util-combine-extensions/index.cjs +0 -40
- package/dist/node_modules/micromark-util-combine-extensions/index.js +0 -41
- package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.cjs +0 -18
- package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +0 -19
- package/dist/node_modules/micromark-util-decode-string/index.cjs +0 -20
- package/dist/node_modules/micromark-util-decode-string/index.js +0 -21
- package/dist/node_modules/micromark-util-html-tag-name/index.cjs +0 -68
- package/dist/node_modules/micromark-util-html-tag-name/index.js +0 -69
- package/dist/node_modules/micromark-util-normalize-identifier/index.cjs +0 -5
- package/dist/node_modules/micromark-util-normalize-identifier/index.js +0 -6
- package/dist/node_modules/micromark-util-resolve-all/index.cjs +0 -14
- package/dist/node_modules/micromark-util-resolve-all/index.js +0 -15
- package/dist/node_modules/micromark-util-sanitize-uri/index.cjs +0 -40
- package/dist/node_modules/micromark-util-sanitize-uri/index.js +0 -41
- package/dist/node_modules/micromark-util-subtokenize/index.cjs +0 -156
- package/dist/node_modules/micromark-util-subtokenize/index.js +0 -157
- package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.cjs +0 -193
- package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +0 -194
- package/dist/node_modules/property-information/index.cjs +0 -12
- package/dist/node_modules/property-information/index.js +0 -13
- package/dist/node_modules/property-information/lib/aria.cjs +0 -60
- package/dist/node_modules/property-information/lib/aria.js +0 -61
- package/dist/node_modules/property-information/lib/find.cjs +0 -39
- package/dist/node_modules/property-information/lib/find.js +0 -40
- package/dist/node_modules/property-information/lib/hast-to-react.cjs +0 -21
- package/dist/node_modules/property-information/lib/hast-to-react.js +0 -22
- package/dist/node_modules/property-information/lib/html.cjs +0 -367
- package/dist/node_modules/property-information/lib/html.js +0 -368
- package/dist/node_modules/property-information/lib/normalize.cjs +0 -5
- package/dist/node_modules/property-information/lib/normalize.js +0 -6
- package/dist/node_modules/property-information/lib/svg.cjs +0 -565
- package/dist/node_modules/property-information/lib/svg.js +0 -566
- package/dist/node_modules/property-information/lib/util/case-insensitive-transform.cjs +0 -6
- package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +0 -7
- package/dist/node_modules/property-information/lib/util/case-sensitive-transform.cjs +0 -5
- package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +0 -6
- package/dist/node_modules/property-information/lib/util/create.cjs +0 -24
- package/dist/node_modules/property-information/lib/util/create.js +0 -25
- package/dist/node_modules/property-information/lib/util/defined-info.cjs +0 -40
- package/dist/node_modules/property-information/lib/util/defined-info.js +0 -41
- package/dist/node_modules/property-information/lib/util/info.cjs +0 -28
- package/dist/node_modules/property-information/lib/util/info.js +0 -29
- package/dist/node_modules/property-information/lib/util/merge.cjs +0 -12
- package/dist/node_modules/property-information/lib/util/merge.js +0 -13
- package/dist/node_modules/property-information/lib/util/schema.cjs +0 -24
- package/dist/node_modules/property-information/lib/util/schema.js +0 -25
- package/dist/node_modules/property-information/lib/util/types.cjs +0 -19
- package/dist/node_modules/property-information/lib/util/types.js +0 -20
- package/dist/node_modules/property-information/lib/xlink.cjs +0 -18
- package/dist/node_modules/property-information/lib/xlink.js +0 -19
- package/dist/node_modules/property-information/lib/xml.cjs +0 -10
- package/dist/node_modules/property-information/lib/xml.js +0 -11
- package/dist/node_modules/property-information/lib/xmlns.cjs +0 -10
- package/dist/node_modules/property-information/lib/xmlns.js +0 -11
- package/dist/node_modules/rc-checkbox/es/index.cjs +0 -91
- package/dist/node_modules/rc-checkbox/es/index.js +0 -73
- package/dist/node_modules/rc-dropdown/es/Dropdown.cjs +0 -102
- package/dist/node_modules/rc-dropdown/es/Dropdown.js +0 -103
- package/dist/node_modules/rc-dropdown/es/Overlay.cjs +0 -22
- package/dist/node_modules/rc-dropdown/es/Overlay.js +0 -23
- package/dist/node_modules/rc-dropdown/es/hooks/useAccessibility.cjs +0 -79
- package/dist/node_modules/rc-dropdown/es/hooks/useAccessibility.js +0 -61
- package/dist/node_modules/rc-dropdown/es/index.cjs +0 -3
- package/dist/node_modules/rc-dropdown/es/index.js +0 -4
- package/dist/node_modules/rc-dropdown/es/placements.cjs +0 -45
- package/dist/node_modules/rc-dropdown/es/placements.js +0 -46
- package/dist/node_modules/rc-field-form/es/Field.cjs +0 -510
- package/dist/node_modules/rc-field-form/es/Field.js +0 -492
- package/dist/node_modules/rc-field-form/es/FieldContext.cjs +0 -63
- package/dist/node_modules/rc-field-form/es/FieldContext.js +0 -44
- package/dist/node_modules/rc-field-form/es/Form.cjs +0 -128
- package/dist/node_modules/rc-field-form/es/Form.js +0 -110
- package/dist/node_modules/rc-field-form/es/FormContext.cjs +0 -79
- package/dist/node_modules/rc-field-form/es/FormContext.js +0 -60
- package/dist/node_modules/rc-field-form/es/List.cjs +0 -148
- package/dist/node_modules/rc-field-form/es/List.js +0 -130
- package/dist/node_modules/rc-field-form/es/ListContext.cjs +0 -23
- package/dist/node_modules/rc-field-form/es/ListContext.js +0 -5
- package/dist/node_modules/rc-field-form/es/index.cjs +0 -42
- package/dist/node_modules/rc-field-form/es/index.js +0 -23
- package/dist/node_modules/rc-field-form/es/useForm.cjs +0 -795
- package/dist/node_modules/rc-field-form/es/useForm.js +0 -776
- package/dist/node_modules/rc-field-form/es/useWatch.cjs +0 -80
- package/dist/node_modules/rc-field-form/es/useWatch.js +0 -80
- package/dist/node_modules/rc-field-form/es/utils/NameMap.cjs +0 -75
- package/dist/node_modules/rc-field-form/es/utils/NameMap.js +0 -76
- package/dist/node_modules/rc-field-form/es/utils/asyncUtil.cjs +0 -28
- package/dist/node_modules/rc-field-form/es/utils/asyncUtil.js +0 -29
- package/dist/node_modules/rc-field-form/es/utils/messages.cjs +0 -50
- package/dist/node_modules/rc-field-form/es/utils/messages.js +0 -51
- package/dist/node_modules/rc-field-form/es/utils/typeUtil.cjs +0 -12
- package/dist/node_modules/rc-field-form/es/utils/typeUtil.js +0 -13
- package/dist/node_modules/rc-field-form/es/utils/validateUtil.cjs +0 -290
- package/dist/node_modules/rc-field-form/es/utils/validateUtil.js +0 -272
- package/dist/node_modules/rc-field-form/es/utils/valueUtil.cjs +0 -88
- package/dist/node_modules/rc-field-form/es/utils/valueUtil.js +0 -89
- package/dist/node_modules/rc-input/es/BaseInput.cjs +0 -94
- package/dist/node_modules/rc-input/es/BaseInput.js +0 -95
- package/dist/node_modules/rc-input/es/Input.cjs +0 -202
- package/dist/node_modules/rc-input/es/Input.js +0 -203
- package/dist/node_modules/rc-input/es/hooks/useCount.cjs +0 -43
- package/dist/node_modules/rc-input/es/hooks/useCount.js +0 -25
- package/dist/node_modules/rc-input/es/index.cjs +0 -6
- package/dist/node_modules/rc-input/es/index.js +0 -6
- package/dist/node_modules/rc-input/es/utils/commonUtils.cjs +0 -66
- package/dist/node_modules/rc-input/es/utils/commonUtils.js +0 -67
- package/dist/node_modules/rc-menu/es/Divider.cjs +0 -38
- package/dist/node_modules/rc-menu/es/Divider.js +0 -20
- package/dist/node_modules/rc-menu/es/Icon.cjs +0 -36
- package/dist/node_modules/rc-menu/es/Icon.js +0 -18
- package/dist/node_modules/rc-menu/es/Menu.cjs +0 -322
- package/dist/node_modules/rc-menu/es/Menu.js +0 -305
- package/dist/node_modules/rc-menu/es/MenuItem.cjs +0 -166
- package/dist/node_modules/rc-menu/es/MenuItem.js +0 -148
- package/dist/node_modules/rc-menu/es/MenuItemGroup.cjs +0 -68
- package/dist/node_modules/rc-menu/es/MenuItemGroup.js +0 -50
- package/dist/node_modules/rc-menu/es/SubMenu/InlineSubMenuList.cjs +0 -75
- package/dist/node_modules/rc-menu/es/SubMenu/InlineSubMenuList.js +0 -57
- package/dist/node_modules/rc-menu/es/SubMenu/PopupTrigger.cjs +0 -84
- package/dist/node_modules/rc-menu/es/SubMenu/PopupTrigger.js +0 -66
- package/dist/node_modules/rc-menu/es/SubMenu/SubMenuList.cjs +0 -40
- package/dist/node_modules/rc-menu/es/SubMenu/SubMenuList.js +0 -22
- package/dist/node_modules/rc-menu/es/SubMenu/index.cjs +0 -232
- package/dist/node_modules/rc-menu/es/SubMenu/index.js +0 -214
- package/dist/node_modules/rc-menu/es/context/IdContext.cjs +0 -35
- package/dist/node_modules/rc-menu/es/context/IdContext.js +0 -17
- package/dist/node_modules/rc-menu/es/context/MenuContext.cjs +0 -52
- package/dist/node_modules/rc-menu/es/context/MenuContext.js +0 -33
- package/dist/node_modules/rc-menu/es/context/PathContext.cjs +0 -40
- package/dist/node_modules/rc-menu/es/context/PathContext.js +0 -22
- package/dist/node_modules/rc-menu/es/context/PrivateContext.cjs +0 -23
- package/dist/node_modules/rc-menu/es/context/PrivateContext.js +0 -5
- package/dist/node_modules/rc-menu/es/hooks/useAccessibility.cjs +0 -230
- package/dist/node_modules/rc-menu/es/hooks/useAccessibility.js +0 -212
- package/dist/node_modules/rc-menu/es/hooks/useActive.cjs +0 -46
- package/dist/node_modules/rc-menu/es/hooks/useActive.js +0 -28
- package/dist/node_modules/rc-menu/es/hooks/useDirectionStyle.cjs +0 -35
- package/dist/node_modules/rc-menu/es/hooks/useDirectionStyle.js +0 -17
- package/dist/node_modules/rc-menu/es/hooks/useKeyRecords.cjs +0 -121
- package/dist/node_modules/rc-menu/es/hooks/useKeyRecords.js +0 -103
- package/dist/node_modules/rc-menu/es/hooks/useMemoCallback.cjs +0 -34
- package/dist/node_modules/rc-menu/es/hooks/useMemoCallback.js +0 -16
- package/dist/node_modules/rc-menu/es/hooks/useUUID.cjs +0 -37
- package/dist/node_modules/rc-menu/es/hooks/useUUID.js +0 -19
- package/dist/node_modules/rc-menu/es/index.cjs +0 -20
- package/dist/node_modules/rc-menu/es/index.js +0 -20
- package/dist/node_modules/rc-menu/es/placements.cjs +0 -77
- package/dist/node_modules/rc-menu/es/placements.js +0 -77
- package/dist/node_modules/rc-menu/es/utils/commonUtil.cjs +0 -46
- package/dist/node_modules/rc-menu/es/utils/commonUtil.js +0 -28
- package/dist/node_modules/rc-menu/es/utils/motionUtil.cjs +0 -11
- package/dist/node_modules/rc-menu/es/utils/motionUtil.js +0 -12
- package/dist/node_modules/rc-menu/es/utils/nodeUtil.cjs +0 -83
- package/dist/node_modules/rc-menu/es/utils/nodeUtil.js +0 -65
- package/dist/node_modules/rc-menu/es/utils/timeUtil.cjs +0 -5
- package/dist/node_modules/rc-menu/es/utils/timeUtil.js +0 -6
- package/dist/node_modules/rc-menu/es/utils/warnUtil.cjs +0 -15
- package/dist/node_modules/rc-menu/es/utils/warnUtil.js +0 -16
- package/dist/node_modules/rc-motion/es/CSSMotion.cjs +0 -120
- package/dist/node_modules/rc-motion/es/CSSMotion.js +0 -102
- package/dist/node_modules/rc-motion/es/CSSMotionList.cjs +0 -143
- package/dist/node_modules/rc-motion/es/CSSMotionList.js +0 -124
- package/dist/node_modules/rc-motion/es/DomWrapper.cjs +0 -41
- package/dist/node_modules/rc-motion/es/DomWrapper.js +0 -23
- package/dist/node_modules/rc-motion/es/context.cjs +0 -33
- package/dist/node_modules/rc-motion/es/context.js +0 -14
- package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.cjs +0 -48
- package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.js +0 -31
- package/dist/node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.cjs +0 -5
- package/dist/node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.js +0 -6
- package/dist/node_modules/rc-motion/es/hooks/useNextFrame.cjs +0 -51
- package/dist/node_modules/rc-motion/es/hooks/useNextFrame.js +0 -33
- package/dist/node_modules/rc-motion/es/hooks/useStatus.cjs +0 -182
- package/dist/node_modules/rc-motion/es/hooks/useStatus.js +0 -165
- package/dist/node_modules/rc-motion/es/hooks/useStepQueue.cjs +0 -74
- package/dist/node_modules/rc-motion/es/hooks/useStepQueue.js +0 -55
- package/dist/node_modules/rc-motion/es/index.cjs +0 -7
- package/dist/node_modules/rc-motion/es/index.js +0 -7
- package/dist/node_modules/rc-motion/es/interface.cjs +0 -21
- package/dist/node_modules/rc-motion/es/interface.js +0 -22
- package/dist/node_modules/rc-motion/es/util/diff.cjs +0 -94
- package/dist/node_modules/rc-motion/es/util/diff.js +0 -95
- package/dist/node_modules/rc-motion/es/util/motion.cjs +0 -73
- package/dist/node_modules/rc-motion/es/util/motion.js +0 -74
- package/dist/node_modules/rc-overflow/es/Item.cjs +0 -77
- package/dist/node_modules/rc-overflow/es/Item.js +0 -59
- package/dist/node_modules/rc-overflow/es/Overflow.cjs +0 -240
- package/dist/node_modules/rc-overflow/es/Overflow.js +0 -222
- package/dist/node_modules/rc-overflow/es/RawItem.cjs +0 -47
- package/dist/node_modules/rc-overflow/es/RawItem.js +0 -29
- package/dist/node_modules/rc-overflow/es/context.cjs +0 -4
- package/dist/node_modules/rc-overflow/es/context.js +0 -5
- package/dist/node_modules/rc-overflow/es/hooks/channelUpdate.cjs +0 -14
- package/dist/node_modules/rc-overflow/es/hooks/channelUpdate.js +0 -15
- package/dist/node_modules/rc-overflow/es/hooks/useEffectState.cjs +0 -55
- package/dist/node_modules/rc-overflow/es/hooks/useEffectState.js +0 -36
- package/dist/node_modules/rc-overflow/es/index.cjs +0 -3
- package/dist/node_modules/rc-overflow/es/index.js +0 -4
- package/dist/node_modules/rc-pagination/es/Options.cjs +0 -105
- package/dist/node_modules/rc-pagination/es/Options.js +0 -106
- package/dist/node_modules/rc-pagination/es/Pager.cjs +0 -29
- package/dist/node_modules/rc-pagination/es/Pager.js +0 -30
- package/dist/node_modules/rc-pagination/es/Pagination.cjs +0 -384
- package/dist/node_modules/rc-pagination/es/Pagination.js +0 -385
- package/dist/node_modules/rc-pagination/es/locale/en_US.cjs +0 -17
- package/dist/node_modules/rc-pagination/es/locale/en_US.js +0 -18
- package/dist/node_modules/rc-pagination/es/locale/zh_CN.cjs +0 -17
- package/dist/node_modules/rc-pagination/es/locale/zh_CN.js +0 -18
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/Footer.cjs +0 -68
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/Footer.js +0 -50
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PopupPanel.cjs +0 -78
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PopupPanel.js +0 -60
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PresetPanel.cjs +0 -48
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/PresetPanel.js +0 -30
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/index.cjs +0 -154
- package/dist/node_modules/rc-picker/es/PickerInput/Popup/index.js +0 -136
- package/dist/node_modules/rc-picker/es/PickerInput/RangePicker.cjs +0 -399
- package/dist/node_modules/rc-picker/es/PickerInput/RangePicker.js +0 -381
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Icon.cjs +0 -49
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Icon.js +0 -30
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Input.cjs +0 -268
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/Input.js +0 -250
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/MaskFormat.cjs +0 -93
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/MaskFormat.js +0 -94
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/RangeSelector.cjs +0 -186
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/RangeSelector.js +0 -168
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/MultipleDates.cjs +0 -70
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/MultipleDates.js +0 -52
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/index.cjs +0 -155
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/index.js +0 -137
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useClearIcon.cjs +0 -36
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useClearIcon.js +0 -18
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useInputProps.cjs +0 -149
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useInputProps.js +0 -131
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useRootProps.cjs +0 -29
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useRootProps.js +0 -11
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/util.cjs +0 -14
- package/dist/node_modules/rc-picker/es/PickerInput/Selector/util.js +0 -15
- package/dist/node_modules/rc-picker/es/PickerInput/SinglePicker.cjs +0 -353
- package/dist/node_modules/rc-picker/es/PickerInput/SinglePicker.js +0 -335
- package/dist/node_modules/rc-picker/es/PickerInput/context.cjs +0 -23
- package/dist/node_modules/rc-picker/es/PickerInput/context.js +0 -5
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useCellRender.cjs +0 -53
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useCellRender.js +0 -35
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDelayState.cjs +0 -38
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDelayState.js +0 -39
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDisabledBoundary.cjs +0 -23
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDisabledBoundary.js +0 -24
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldFormat.cjs +0 -40
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldFormat.js +0 -22
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldsInvalidate.cjs +0 -54
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldsInvalidate.js +0 -36
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFilledProps.cjs +0 -100
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFilledProps.js +0 -82
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInputReadOnly.cjs +0 -8
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInputReadOnly.js +0 -9
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInvalidate.cjs +0 -52
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInvalidate.js +0 -53
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useLockEffect.cjs +0 -41
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useLockEffect.js +0 -23
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useOpen.cjs +0 -19
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useOpen.js +0 -20
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePickerRef.cjs +0 -40
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePickerRef.js +0 -22
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePresets.cjs +0 -42
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePresets.js +0 -24
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeActive.cjs +0 -71
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeActive.js +0 -53
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeDisabledDate.cjs +0 -27
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeDisabledDate.js +0 -28
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangePickerValue.cjs +0 -155
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangePickerValue.js +0 -136
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeValue.cjs +0 -195
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeValue.js +0 -176
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useShowNow.cjs +0 -14
- package/dist/node_modules/rc-picker/es/PickerInput/hooks/useShowNow.js +0 -15
- package/dist/node_modules/rc-picker/es/PickerPanel/DatePanel/index.cjs +0 -165
- package/dist/node_modules/rc-picker/es/PickerPanel/DatePanel/index.js +0 -147
- package/dist/node_modules/rc-picker/es/PickerPanel/DateTimePanel/index.cjs +0 -52
- package/dist/node_modules/rc-picker/es/PickerPanel/DateTimePanel/index.js +0 -34
- package/dist/node_modules/rc-picker/es/PickerPanel/DecadePanel/index.cjs +0 -102
- package/dist/node_modules/rc-picker/es/PickerPanel/DecadePanel/index.js +0 -84
- package/dist/node_modules/rc-picker/es/PickerPanel/MonthPanel/index.cjs +0 -95
- package/dist/node_modules/rc-picker/es/PickerPanel/MonthPanel/index.js +0 -77
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelBody.cjs +0 -121
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelBody.js +0 -103
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelHeader.cjs +0 -124
- package/dist/node_modules/rc-picker/es/PickerPanel/PanelHeader.js +0 -106
- package/dist/node_modules/rc-picker/es/PickerPanel/QuarterPanel/index.cjs +0 -86
- package/dist/node_modules/rc-picker/es/PickerPanel/QuarterPanel/index.js +0 -68
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/TimeColumn.cjs +0 -124
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/TimeColumn.js +0 -106
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/index.cjs +0 -238
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/index.js +0 -220
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/useScrollTo.cjs +0 -85
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/useScrollTo.js +0 -67
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/util.cjs +0 -31
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/util.js +0 -32
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/index.cjs +0 -43
- package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/index.js +0 -25
- package/dist/node_modules/rc-picker/es/PickerPanel/WeekPanel/index.cjs +0 -60
- package/dist/node_modules/rc-picker/es/PickerPanel/WeekPanel/index.js +0 -42
- package/dist/node_modules/rc-picker/es/PickerPanel/YearPanel/index.cjs +0 -104
- package/dist/node_modules/rc-picker/es/PickerPanel/YearPanel/index.js +0 -86
- package/dist/node_modules/rc-picker/es/PickerPanel/context.cjs +0 -60
- package/dist/node_modules/rc-picker/es/PickerPanel/context.js +0 -42
- package/dist/node_modules/rc-picker/es/PickerPanel/index.cjs +0 -227
- package/dist/node_modules/rc-picker/es/PickerPanel/index.js +0 -209
- package/dist/node_modules/rc-picker/es/PickerTrigger/index.cjs +0 -87
- package/dist/node_modules/rc-picker/es/PickerTrigger/index.js +0 -69
- package/dist/node_modules/rc-picker/es/PickerTrigger/util.cjs +0 -6
- package/dist/node_modules/rc-picker/es/PickerTrigger/util.js +0 -7
- package/dist/node_modules/rc-picker/es/generate/dayjs.cjs +0 -218
- package/dist/node_modules/rc-picker/es/generate/dayjs.js +0 -219
- package/dist/node_modules/rc-picker/es/hooks/useLocale.cjs +0 -50
- package/dist/node_modules/rc-picker/es/hooks/useLocale.js +0 -50
- package/dist/node_modules/rc-picker/es/hooks/useSyncState.cjs +0 -35
- package/dist/node_modules/rc-picker/es/hooks/useSyncState.js +0 -17
- package/dist/node_modules/rc-picker/es/hooks/useTimeConfig.cjs +0 -147
- package/dist/node_modules/rc-picker/es/hooks/useTimeConfig.js +0 -148
- package/dist/node_modules/rc-picker/es/hooks/useTimeInfo.cjs +0 -124
- package/dist/node_modules/rc-picker/es/hooks/useTimeInfo.js +0 -106
- package/dist/node_modules/rc-picker/es/hooks/useToggleDates.cjs +0 -18
- package/dist/node_modules/rc-picker/es/hooks/useToggleDates.js +0 -19
- package/dist/node_modules/rc-picker/es/index.cjs +0 -9
- package/dist/node_modules/rc-picker/es/index.js +0 -9
- package/dist/node_modules/rc-picker/es/locale/common.cjs +0 -8
- package/dist/node_modules/rc-picker/es/locale/common.js +0 -9
- package/dist/node_modules/rc-picker/es/locale/en_US.cjs +0 -31
- package/dist/node_modules/rc-picker/es/locale/en_US.js +0 -32
- package/dist/node_modules/rc-picker/es/utils/dateUtil.cjs +0 -137
- package/dist/node_modules/rc-picker/es/utils/dateUtil.js +0 -138
- package/dist/node_modules/rc-picker/es/utils/miscUtil.cjs +0 -66
- package/dist/node_modules/rc-picker/es/utils/miscUtil.js +0 -67
- package/dist/node_modules/rc-picker/es/utils/uiUtil.cjs +0 -8
- package/dist/node_modules/rc-picker/es/utils/uiUtil.js +0 -9
- package/dist/node_modules/rc-progress/es/Circle/PtgCircle.cjs +0 -83
- package/dist/node_modules/rc-progress/es/Circle/PtgCircle.js +0 -65
- package/dist/node_modules/rc-progress/es/Circle/index.cjs +0 -127
- package/dist/node_modules/rc-progress/es/Circle/index.js +0 -109
- package/dist/node_modules/rc-progress/es/Circle/util.cjs +0 -31
- package/dist/node_modules/rc-progress/es/Circle/util.js +0 -32
- package/dist/node_modules/rc-progress/es/Line.cjs +0 -4
- package/dist/node_modules/rc-progress/es/Line.js +0 -3
- package/dist/node_modules/rc-progress/es/common.cjs +0 -37
- package/dist/node_modules/rc-progress/es/common.js +0 -38
- package/dist/node_modules/rc-progress/es/hooks/useId.cjs +0 -45
- package/dist/node_modules/rc-progress/es/hooks/useId.js +0 -26
- package/dist/node_modules/rc-resize-observer/es/Collection.cjs +0 -49
- package/dist/node_modules/rc-resize-observer/es/Collection.js +0 -31
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.cjs +0 -41
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.js +0 -23
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/index.cjs +0 -102
- package/dist/node_modules/rc-resize-observer/es/SingleObserver/index.js +0 -84
- package/dist/node_modules/rc-resize-observer/es/index.cjs +0 -52
- package/dist/node_modules/rc-resize-observer/es/index.js +0 -34
- package/dist/node_modules/rc-resize-observer/es/utils/observerUtil.cjs +0 -33
- package/dist/node_modules/rc-resize-observer/es/utils/observerUtil.js +0 -34
- package/dist/node_modules/rc-segmented/es/MotionThumb.cjs +0 -171
- package/dist/node_modules/rc-segmented/es/MotionThumb.js +0 -153
- package/dist/node_modules/rc-segmented/es/index.cjs +0 -195
- package/dist/node_modules/rc-segmented/es/index.js +0 -177
- package/dist/node_modules/rc-select/es/BaseSelect/Polite.cjs +0 -43
- package/dist/node_modules/rc-select/es/BaseSelect/Polite.js +0 -25
- package/dist/node_modules/rc-select/es/BaseSelect/index.cjs +0 -442
- package/dist/node_modules/rc-select/es/BaseSelect/index.js +0 -423
- package/dist/node_modules/rc-select/es/OptGroup.cjs +0 -6
- package/dist/node_modules/rc-select/es/OptGroup.js +0 -7
- package/dist/node_modules/rc-select/es/Option.cjs +0 -6
- package/dist/node_modules/rc-select/es/Option.js +0 -7
- package/dist/node_modules/rc-select/es/OptionList.cjs +0 -321
- package/dist/node_modules/rc-select/es/OptionList.js +0 -304
- package/dist/node_modules/rc-select/es/Select.cjs +0 -387
- package/dist/node_modules/rc-select/es/Select.js +0 -369
- package/dist/node_modules/rc-select/es/SelectContext.cjs +0 -23
- package/dist/node_modules/rc-select/es/SelectContext.js +0 -5
- package/dist/node_modules/rc-select/es/SelectTrigger.cjs +0 -130
- package/dist/node_modules/rc-select/es/SelectTrigger.js +0 -112
- package/dist/node_modules/rc-select/es/Selector/Input.cjs +0 -103
- package/dist/node_modules/rc-select/es/Selector/Input.js +0 -85
- package/dist/node_modules/rc-select/es/Selector/MultipleSelector.cjs +0 -162
- package/dist/node_modules/rc-select/es/Selector/MultipleSelector.js +0 -145
- package/dist/node_modules/rc-select/es/Selector/SingleSelector.cjs +0 -91
- package/dist/node_modules/rc-select/es/Selector/SingleSelector.js +0 -73
- package/dist/node_modules/rc-select/es/Selector/index.cjs +0 -144
- package/dist/node_modules/rc-select/es/Selector/index.js +0 -127
- package/dist/node_modules/rc-select/es/TransBtn.cjs +0 -45
- package/dist/node_modules/rc-select/es/TransBtn.js +0 -27
- package/dist/node_modules/rc-select/es/hooks/useAllowClear.cjs +0 -32
- package/dist/node_modules/rc-select/es/hooks/useAllowClear.js +0 -33
- package/dist/node_modules/rc-select/es/hooks/useBaseProps.cjs +0 -28
- package/dist/node_modules/rc-select/es/hooks/useBaseProps.js +0 -9
- package/dist/node_modules/rc-select/es/hooks/useCache.cjs +0 -54
- package/dist/node_modules/rc-select/es/hooks/useCache.js +0 -36
- package/dist/node_modules/rc-select/es/hooks/useDelayReset.cjs +0 -44
- package/dist/node_modules/rc-select/es/hooks/useDelayReset.js +0 -26
- package/dist/node_modules/rc-select/es/hooks/useFilterOptions.cjs +0 -74
- package/dist/node_modules/rc-select/es/hooks/useFilterOptions.js +0 -56
- package/dist/node_modules/rc-select/es/hooks/useId.cjs +0 -46
- package/dist/node_modules/rc-select/es/hooks/useId.js +0 -27
- package/dist/node_modules/rc-select/es/hooks/useLayoutEffect.cjs +0 -30
- package/dist/node_modules/rc-select/es/hooks/useLayoutEffect.js +0 -12
- package/dist/node_modules/rc-select/es/hooks/useLock.cjs +0 -44
- package/dist/node_modules/rc-select/es/hooks/useLock.js +0 -26
- package/dist/node_modules/rc-select/es/hooks/useOptions.cjs +0 -59
- package/dist/node_modules/rc-select/es/hooks/useOptions.js +0 -41
- package/dist/node_modules/rc-select/es/hooks/useRefFunc.cjs +0 -30
- package/dist/node_modules/rc-select/es/hooks/useRefFunc.js +0 -12
- package/dist/node_modules/rc-select/es/hooks/useSelectTriggerControl.cjs +0 -53
- package/dist/node_modules/rc-select/es/hooks/useSelectTriggerControl.js +0 -35
- package/dist/node_modules/rc-select/es/index.cjs +0 -11
- package/dist/node_modules/rc-select/es/index.js +0 -11
- package/dist/node_modules/rc-select/es/utils/commonUtil.cjs +0 -36
- package/dist/node_modules/rc-select/es/utils/commonUtil.js +0 -37
- package/dist/node_modules/rc-select/es/utils/keyUtil.cjs +0 -39
- package/dist/node_modules/rc-select/es/utils/keyUtil.js +0 -40
- package/dist/node_modules/rc-select/es/utils/legacyUtil.cjs +0 -54
- package/dist/node_modules/rc-select/es/utils/legacyUtil.js +0 -36
- package/dist/node_modules/rc-select/es/utils/platformUtil.cjs +0 -5
- package/dist/node_modules/rc-select/es/utils/platformUtil.js +0 -6
- package/dist/node_modules/rc-select/es/utils/valueUtil.cjs +0 -108
- package/dist/node_modules/rc-select/es/utils/valueUtil.js +0 -109
- package/dist/node_modules/rc-select/es/utils/warningPropsUtil.cjs +0 -114
- package/dist/node_modules/rc-select/es/utils/warningPropsUtil.js +0 -95
- package/dist/node_modules/rc-switch/es/index.cjs +0 -77
- package/dist/node_modules/rc-switch/es/index.js +0 -59
- package/dist/node_modules/rc-table/es/Body/BodyRow.cjs +0 -122
- package/dist/node_modules/rc-table/es/Body/BodyRow.js +0 -103
- package/dist/node_modules/rc-table/es/Body/ExpandedRow.cjs +0 -56
- package/dist/node_modules/rc-table/es/Body/ExpandedRow.js +0 -38
- package/dist/node_modules/rc-table/es/Body/MeasureCell.cjs +0 -47
- package/dist/node_modules/rc-table/es/Body/MeasureCell.js +0 -29
- package/dist/node_modules/rc-table/es/Body/MeasureRow.cjs +0 -48
- package/dist/node_modules/rc-table/es/Body/MeasureRow.js +0 -30
- package/dist/node_modules/rc-table/es/Body/index.cjs +0 -89
- package/dist/node_modules/rc-table/es/Body/index.js +0 -71
- package/dist/node_modules/rc-table/es/Cell/index.cjs +0 -124
- package/dist/node_modules/rc-table/es/Cell/index.js +0 -106
- package/dist/node_modules/rc-table/es/Cell/useCellRender.cjs +0 -81
- package/dist/node_modules/rc-table/es/Cell/useCellRender.js +0 -63
- package/dist/node_modules/rc-table/es/Cell/useHoverState.cjs +0 -16
- package/dist/node_modules/rc-table/es/Cell/useHoverState.js +0 -17
- package/dist/node_modules/rc-table/es/ColGroup.cjs +0 -62
- package/dist/node_modules/rc-table/es/ColGroup.js +0 -44
- package/dist/node_modules/rc-table/es/FixedHolder/index.cjs +0 -142
- package/dist/node_modules/rc-table/es/FixedHolder/index.js +0 -125
- package/dist/node_modules/rc-table/es/Footer/Cell.cjs +0 -51
- package/dist/node_modules/rc-table/es/Footer/Cell.js +0 -33
- package/dist/node_modules/rc-table/es/Footer/Row.cjs +0 -28
- package/dist/node_modules/rc-table/es/Footer/Row.js +0 -10
- package/dist/node_modules/rc-table/es/Footer/Summary.cjs +0 -10
- package/dist/node_modules/rc-table/es/Footer/Summary.js +0 -11
- package/dist/node_modules/rc-table/es/Footer/SummaryContext.cjs +0 -23
- package/dist/node_modules/rc-table/es/Footer/SummaryContext.js +0 -5
- package/dist/node_modules/rc-table/es/Footer/index.cjs +0 -53
- package/dist/node_modules/rc-table/es/Footer/index.js +0 -34
- package/dist/node_modules/rc-table/es/Header/Header.cjs +0 -106
- package/dist/node_modules/rc-table/es/Header/Header.js +0 -88
- package/dist/node_modules/rc-table/es/Header/HeaderRow.cjs +0 -64
- package/dist/node_modules/rc-table/es/Header/HeaderRow.js +0 -46
- package/dist/node_modules/rc-table/es/Panel/index.cjs +0 -28
- package/dist/node_modules/rc-table/es/Panel/index.js +0 -10
- package/dist/node_modules/rc-table/es/Table.cjs +0 -569
- package/dist/node_modules/rc-table/es/Table.js +0 -550
- package/dist/node_modules/rc-table/es/VirtualTable/BodyGrid.cjs +0 -230
- package/dist/node_modules/rc-table/es/VirtualTable/BodyGrid.js +0 -212
- package/dist/node_modules/rc-table/es/VirtualTable/BodyLine.cjs +0 -103
- package/dist/node_modules/rc-table/es/VirtualTable/BodyLine.js +0 -85
- package/dist/node_modules/rc-table/es/VirtualTable/VirtualCell.cjs +0 -92
- package/dist/node_modules/rc-table/es/VirtualTable/VirtualCell.js +0 -73
- package/dist/node_modules/rc-table/es/VirtualTable/context.cjs +0 -8
- package/dist/node_modules/rc-table/es/VirtualTable/context.js +0 -9
- package/dist/node_modules/rc-table/es/VirtualTable/index.cjs +0 -96
- package/dist/node_modules/rc-table/es/VirtualTable/index.js +0 -78
- package/dist/node_modules/rc-table/es/constant.cjs +0 -5
- package/dist/node_modules/rc-table/es/constant.js +0 -6
- package/dist/node_modules/rc-table/es/context/PerfContext.cjs +0 -25
- package/dist/node_modules/rc-table/es/context/PerfContext.js +0 -7
- package/dist/node_modules/rc-table/es/context/TableContext.cjs +0 -10
- package/dist/node_modules/rc-table/es/context/TableContext.js +0 -10
- package/dist/node_modules/rc-table/es/hooks/useColumns/index.cjs +0 -226
- package/dist/node_modules/rc-table/es/hooks/useColumns/index.js +0 -207
- package/dist/node_modules/rc-table/es/hooks/useColumns/useWidthColumns.cjs +0 -79
- package/dist/node_modules/rc-table/es/hooks/useColumns/useWidthColumns.js +0 -61
- package/dist/node_modules/rc-table/es/hooks/useExpand.cjs +0 -82
- package/dist/node_modules/rc-table/es/hooks/useExpand.js +0 -64
- package/dist/node_modules/rc-table/es/hooks/useFixedInfo.cjs +0 -15
- package/dist/node_modules/rc-table/es/hooks/useFixedInfo.js +0 -16
- package/dist/node_modules/rc-table/es/hooks/useFlattenRecords.cjs +0 -56
- package/dist/node_modules/rc-table/es/hooks/useFlattenRecords.js +0 -38
- package/dist/node_modules/rc-table/es/hooks/useFrame.cjs +0 -58
- package/dist/node_modules/rc-table/es/hooks/useFrame.js +0 -59
- package/dist/node_modules/rc-table/es/hooks/useHover.cjs +0 -32
- package/dist/node_modules/rc-table/es/hooks/useHover.js +0 -14
- package/dist/node_modules/rc-table/es/hooks/useRenderTimes.cjs +0 -56
- package/dist/node_modules/rc-table/es/hooks/useRenderTimes.js +0 -37
- package/dist/node_modules/rc-table/es/hooks/useRowInfo.cjs +0 -54
- package/dist/node_modules/rc-table/es/hooks/useRowInfo.js +0 -55
- package/dist/node_modules/rc-table/es/hooks/useSticky.cjs +0 -42
- package/dist/node_modules/rc-table/es/hooks/useSticky.js +0 -24
- package/dist/node_modules/rc-table/es/hooks/useStickyOffsets.cjs +0 -29
- package/dist/node_modules/rc-table/es/hooks/useStickyOffsets.js +0 -30
- package/dist/node_modules/rc-table/es/stickyScrollBar.cjs +0 -191
- package/dist/node_modules/rc-table/es/stickyScrollBar.js +0 -173
- package/dist/node_modules/rc-table/es/sugar/Column.cjs +0 -5
- package/dist/node_modules/rc-table/es/sugar/Column.js +0 -6
- package/dist/node_modules/rc-table/es/sugar/ColumnGroup.cjs +0 -5
- package/dist/node_modules/rc-table/es/sugar/ColumnGroup.js +0 -6
- package/dist/node_modules/rc-table/es/utils/expandUtil.cjs +0 -63
- package/dist/node_modules/rc-table/es/utils/expandUtil.js +0 -45
- package/dist/node_modules/rc-table/es/utils/fixUtil.cjs +0 -46
- package/dist/node_modules/rc-table/es/utils/fixUtil.js +0 -47
- package/dist/node_modules/rc-table/es/utils/legacyUtil.cjs +0 -26
- package/dist/node_modules/rc-table/es/utils/legacyUtil.js +0 -27
- package/dist/node_modules/rc-table/es/utils/offsetUtil.cjs +0 -12
- package/dist/node_modules/rc-table/es/utils/offsetUtil.js +0 -13
- package/dist/node_modules/rc-table/es/utils/valueUtil.cjs +0 -31
- package/dist/node_modules/rc-table/es/utils/valueUtil.js +0 -32
- package/dist/node_modules/rc-tabs/es/TabContext.cjs +0 -4
- package/dist/node_modules/rc-tabs/es/TabContext.js +0 -5
- package/dist/node_modules/rc-tabs/es/TabNavList/AddButton.cjs +0 -40
- package/dist/node_modules/rc-tabs/es/TabNavList/AddButton.js +0 -22
- package/dist/node_modules/rc-tabs/es/TabNavList/ExtraContent.cjs +0 -49
- package/dist/node_modules/rc-tabs/es/TabNavList/ExtraContent.js +0 -31
- package/dist/node_modules/rc-tabs/es/TabNavList/OperationNode.cjs +0 -181
- package/dist/node_modules/rc-tabs/es/TabNavList/OperationNode.js +0 -164
- package/dist/node_modules/rc-tabs/es/TabNavList/TabNode.cjs +0 -100
- package/dist/node_modules/rc-tabs/es/TabNavList/TabNode.js +0 -82
- package/dist/node_modules/rc-tabs/es/TabNavList/Wrapper.cjs +0 -51
- package/dist/node_modules/rc-tabs/es/TabNavList/Wrapper.js +0 -33
- package/dist/node_modules/rc-tabs/es/TabNavList/index.cjs +0 -486
- package/dist/node_modules/rc-tabs/es/TabNavList/index.js +0 -469
- package/dist/node_modules/rc-tabs/es/TabPanelList/TabPane.cjs +0 -39
- package/dist/node_modules/rc-tabs/es/TabPanelList/TabPane.js +0 -21
- package/dist/node_modules/rc-tabs/es/TabPanelList/index.cjs +0 -65
- package/dist/node_modules/rc-tabs/es/TabPanelList/index.js +0 -47
- package/dist/node_modules/rc-tabs/es/Tabs.cjs +0 -134
- package/dist/node_modules/rc-tabs/es/Tabs.js +0 -117
- package/dist/node_modules/rc-tabs/es/hooks/useAnimateConfig.cjs +0 -37
- package/dist/node_modules/rc-tabs/es/hooks/useAnimateConfig.js +0 -38
- package/dist/node_modules/rc-tabs/es/hooks/useIndicator.cjs +0 -64
- package/dist/node_modules/rc-tabs/es/hooks/useIndicator.js +0 -65
- package/dist/node_modules/rc-tabs/es/hooks/useOffsets.cjs +0 -32
- package/dist/node_modules/rc-tabs/es/hooks/useOffsets.js +0 -33
- package/dist/node_modules/rc-tabs/es/hooks/useSyncState.cjs +0 -36
- package/dist/node_modules/rc-tabs/es/hooks/useSyncState.js +0 -18
- package/dist/node_modules/rc-tabs/es/hooks/useTouchMove.cjs +0 -139
- package/dist/node_modules/rc-tabs/es/hooks/useTouchMove.js +0 -122
- package/dist/node_modules/rc-tabs/es/hooks/useUpdate.cjs +0 -43
- package/dist/node_modules/rc-tabs/es/hooks/useUpdate.js +0 -43
- package/dist/node_modules/rc-tabs/es/hooks/useVisibleRange.cjs +0 -50
- package/dist/node_modules/rc-tabs/es/hooks/useVisibleRange.js +0 -51
- package/dist/node_modules/rc-tabs/es/index.cjs +0 -3
- package/dist/node_modules/rc-tabs/es/index.js +0 -4
- package/dist/node_modules/rc-tabs/es/util.cjs +0 -32
- package/dist/node_modules/rc-tabs/es/util.js +0 -33
- package/dist/node_modules/rc-textarea/es/ResizableTextArea.cjs +0 -133
- package/dist/node_modules/rc-textarea/es/ResizableTextArea.js +0 -115
- package/dist/node_modules/rc-textarea/es/TextArea.cjs +0 -177
- package/dist/node_modules/rc-textarea/es/TextArea.js +0 -178
- package/dist/node_modules/rc-textarea/es/calculateNodeHeight.cjs +0 -92
- package/dist/node_modules/rc-textarea/es/calculateNodeHeight.js +0 -92
- package/dist/node_modules/rc-textarea/es/index.cjs +0 -9
- package/dist/node_modules/rc-textarea/es/index.js +0 -9
- package/dist/node_modules/rc-tooltip/es/Popup.cjs +0 -35
- package/dist/node_modules/rc-tooltip/es/Popup.js +0 -17
- package/dist/node_modules/rc-tooltip/es/Tooltip.cjs +0 -85
- package/dist/node_modules/rc-tooltip/es/Tooltip.js +0 -68
- package/dist/node_modules/rc-tooltip/es/index.cjs +0 -6
- package/dist/node_modules/rc-tooltip/es/index.js +0 -6
- package/dist/node_modules/rc-tooltip/es/placements.cjs +0 -87
- package/dist/node_modules/rc-tooltip/es/placements.js +0 -87
- package/dist/node_modules/rc-tree/es/DropIndicator.cjs +0 -33
- package/dist/node_modules/rc-tree/es/DropIndicator.js +0 -34
- package/dist/node_modules/rc-tree/es/Indent.cjs +0 -40
- package/dist/node_modules/rc-tree/es/Indent.js +0 -22
- package/dist/node_modules/rc-tree/es/MotionTreeNode.cjs +0 -104
- package/dist/node_modules/rc-tree/es/MotionTreeNode.js +0 -86
- package/dist/node_modules/rc-tree/es/NodeList.cjs +0 -247
- package/dist/node_modules/rc-tree/es/NodeList.js +0 -228
- package/dist/node_modules/rc-tree/es/Tree.cjs +0 -966
- package/dist/node_modules/rc-tree/es/Tree.js +0 -948
- package/dist/node_modules/rc-tree/es/TreeNode.cjs +0 -273
- package/dist/node_modules/rc-tree/es/TreeNode.js +0 -274
- package/dist/node_modules/rc-tree/es/contextTypes.cjs +0 -25
- package/dist/node_modules/rc-tree/es/contextTypes.js +0 -7
- package/dist/node_modules/rc-tree/es/index.cjs +0 -7
- package/dist/node_modules/rc-tree/es/index.js +0 -7
- package/dist/node_modules/rc-tree/es/useUnmount.cjs +0 -41
- package/dist/node_modules/rc-tree/es/useUnmount.js +0 -23
- package/dist/node_modules/rc-tree/es/util.cjs +0 -213
- package/dist/node_modules/rc-tree/es/util.js +0 -214
- package/dist/node_modules/rc-tree/es/utils/conductUtil.cjs +0 -170
- package/dist/node_modules/rc-tree/es/utils/conductUtil.js +0 -171
- package/dist/node_modules/rc-tree/es/utils/diffUtil.cjs +0 -51
- package/dist/node_modules/rc-tree/es/utils/diffUtil.js +0 -52
- package/dist/node_modules/rc-tree/es/utils/keyUtil.cjs +0 -5
- package/dist/node_modules/rc-tree/es/utils/keyUtil.js +0 -6
- package/dist/node_modules/rc-tree/es/utils/treeUtil.cjs +0 -271
- package/dist/node_modules/rc-tree/es/utils/treeUtil.js +0 -272
- package/dist/node_modules/rc-util/es/Children/toArray.cjs +0 -21
- package/dist/node_modules/rc-util/es/Children/toArray.js +0 -22
- package/dist/node_modules/rc-util/es/Dom/addEventListener.cjs +0 -18
- package/dist/node_modules/rc-util/es/Dom/addEventListener.js +0 -19
- package/dist/node_modules/rc-util/es/Dom/canUseDom.cjs +0 -5
- package/dist/node_modules/rc-util/es/Dom/canUseDom.js +0 -6
- package/dist/node_modules/rc-util/es/Dom/contains.cjs +0 -18
- package/dist/node_modules/rc-util/es/Dom/contains.js +0 -19
- package/dist/node_modules/rc-util/es/Dom/dynamicCSS.cjs +0 -123
- package/dist/node_modules/rc-util/es/Dom/dynamicCSS.js +0 -124
- package/dist/node_modules/rc-util/es/Dom/findDOMNode.cjs +0 -31
- package/dist/node_modules/rc-util/es/Dom/findDOMNode.js +0 -31
- package/dist/node_modules/rc-util/es/Dom/focus.cjs +0 -39
- package/dist/node_modules/rc-util/es/Dom/focus.js +0 -40
- package/dist/node_modules/rc-util/es/Dom/isVisible.cjs +0 -25
- package/dist/node_modules/rc-util/es/Dom/isVisible.js +0 -26
- package/dist/node_modules/rc-util/es/Dom/shadow.cjs +0 -13
- package/dist/node_modules/rc-util/es/Dom/shadow.js +0 -14
- package/dist/node_modules/rc-util/es/Dom/styleChecker.cjs +0 -28
- package/dist/node_modules/rc-util/es/Dom/styleChecker.js +0 -29
- package/dist/node_modules/rc-util/es/KeyCode.cjs +0 -154
- package/dist/node_modules/rc-util/es/KeyCode.js +0 -155
- package/dist/node_modules/rc-util/es/React/isFragment.cjs +0 -14
- package/dist/node_modules/rc-util/es/React/isFragment.js +0 -15
- package/dist/node_modules/rc-util/es/React/render.cjs +0 -108
- package/dist/node_modules/rc-util/es/React/render.js +0 -90
- package/dist/node_modules/rc-util/es/getScrollBarSize.cjs +0 -64
- package/dist/node_modules/rc-util/es/getScrollBarSize.js +0 -64
- package/dist/node_modules/rc-util/es/hooks/useEvent.cjs +0 -34
- package/dist/node_modules/rc-util/es/hooks/useEvent.js +0 -16
- package/dist/node_modules/rc-util/es/hooks/useId.cjs +0 -60
- package/dist/node_modules/rc-util/es/hooks/useId.js +0 -42
- package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.cjs +0 -45
- package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.js +0 -26
- package/dist/node_modules/rc-util/es/hooks/useMemo.cjs +0 -30
- package/dist/node_modules/rc-util/es/hooks/useMemo.js +0 -12
- package/dist/node_modules/rc-util/es/hooks/useMergedState.cjs +0 -41
- package/dist/node_modules/rc-util/es/hooks/useMergedState.js +0 -42
- package/dist/node_modules/rc-util/es/hooks/useState.cjs +0 -40
- package/dist/node_modules/rc-util/es/hooks/useState.js +0 -22
- package/dist/node_modules/rc-util/es/hooks/useSyncState.cjs +0 -38
- package/dist/node_modules/rc-util/es/hooks/useSyncState.js +0 -20
- package/dist/node_modules/rc-util/es/isEqual.cjs +0 -46
- package/dist/node_modules/rc-util/es/isEqual.js +0 -47
- package/dist/node_modules/rc-util/es/isMobile.cjs +0 -9
- package/dist/node_modules/rc-util/es/isMobile.js +0 -10
- package/dist/node_modules/rc-util/es/omit.cjs +0 -11
- package/dist/node_modules/rc-util/es/omit.js +0 -12
- package/dist/node_modules/rc-util/es/pickAttrs.cjs +0 -40
- package/dist/node_modules/rc-util/es/pickAttrs.js +0 -41
- package/dist/node_modules/rc-util/es/raf.cjs +0 -49
- package/dist/node_modules/rc-util/es/raf.js +0 -50
- package/dist/node_modules/rc-util/es/ref.cjs +0 -76
- package/dist/node_modules/rc-util/es/ref.js +0 -77
- package/dist/node_modules/rc-util/es/utils/get.cjs +0 -12
- package/dist/node_modules/rc-util/es/utils/get.js +0 -13
- package/dist/node_modules/rc-util/es/utils/set.cjs +0 -74
- package/dist/node_modules/rc-util/es/utils/set.js +0 -74
- package/dist/node_modules/rc-util/es/warning.cjs +0 -53
- package/dist/node_modules/rc-util/es/warning.js +0 -53
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.cjs +0 -192
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.js +0 -193
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.cjs +0 -108
- package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.js +0 -109
- package/dist/node_modules/rc-util/node_modules/react-is/index.cjs +0 -16
- package/dist/node_modules/rc-util/node_modules/react-is/index.js +0 -17
- package/dist/node_modules/rc-virtual-list/es/Filler.cjs +0 -60
- package/dist/node_modules/rc-virtual-list/es/Filler.js +0 -42
- package/dist/node_modules/rc-virtual-list/es/Item.cjs +0 -31
- package/dist/node_modules/rc-virtual-list/es/Item.js +0 -13
- package/dist/node_modules/rc-virtual-list/es/List.cjs +0 -451
- package/dist/node_modules/rc-virtual-list/es/List.js +0 -433
- package/dist/node_modules/rc-virtual-list/es/ScrollBar.cjs +0 -216
- package/dist/node_modules/rc-virtual-list/es/ScrollBar.js +0 -198
- package/dist/node_modules/rc-virtual-list/es/hooks/useChildren.cjs +0 -42
- package/dist/node_modules/rc-virtual-list/es/hooks/useChildren.js +0 -24
- package/dist/node_modules/rc-virtual-list/es/hooks/useDiffItem.cjs +0 -36
- package/dist/node_modules/rc-virtual-list/es/hooks/useDiffItem.js +0 -18
- package/dist/node_modules/rc-virtual-list/es/hooks/useFrameWheel.cjs +0 -71
- package/dist/node_modules/rc-virtual-list/es/hooks/useFrameWheel.js +0 -72
- package/dist/node_modules/rc-virtual-list/es/hooks/useGetSize.cjs +0 -58
- package/dist/node_modules/rc-virtual-list/es/hooks/useGetSize.js +0 -40
- package/dist/node_modules/rc-virtual-list/es/hooks/useHeights.cjs +0 -87
- package/dist/node_modules/rc-virtual-list/es/hooks/useHeights.js +0 -70
- package/dist/node_modules/rc-virtual-list/es/hooks/useMobileTouchMove.cjs +0 -83
- package/dist/node_modules/rc-virtual-list/es/hooks/useMobileTouchMove.js +0 -84
- package/dist/node_modules/rc-virtual-list/es/hooks/useOriginScroll.cjs +0 -40
- package/dist/node_modules/rc-virtual-list/es/hooks/useOriginScroll.js +0 -41
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollDrag.cjs +0 -92
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollDrag.js +0 -73
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollTo.cjs +0 -136
- package/dist/node_modules/rc-virtual-list/es/hooks/useScrollTo.js +0 -118
- package/dist/node_modules/rc-virtual-list/es/index.cjs +0 -3
- package/dist/node_modules/rc-virtual-list/es/index.js +0 -4
- package/dist/node_modules/rc-virtual-list/es/utils/CacheMap.cjs +0 -42
- package/dist/node_modules/rc-virtual-list/es/utils/CacheMap.js +0 -43
- package/dist/node_modules/rc-virtual-list/es/utils/algorithmUtil.cjs +0 -42
- package/dist/node_modules/rc-virtual-list/es/utils/algorithmUtil.js +0 -43
- package/dist/node_modules/rc-virtual-list/es/utils/isFirefox.cjs +0 -4
- package/dist/node_modules/rc-virtual-list/es/utils/isFirefox.js +0 -5
- package/dist/node_modules/rc-virtual-list/es/utils/scrollbarUtil.cjs +0 -13
- package/dist/node_modules/rc-virtual-list/es/utils/scrollbarUtil.js +0 -14
- package/dist/node_modules/react-icons/fa6/index.cjs +0 -7
- package/dist/node_modules/react-icons/fa6/index.js +0 -8
- package/dist/node_modules/react-icons/fi/index.cjs +0 -7
- package/dist/node_modules/react-icons/fi/index.js +0 -8
- package/dist/node_modules/react-icons/hi/index.cjs +0 -59
- package/dist/node_modules/react-icons/hi/index.js +0 -60
- package/dist/node_modules/react-icons/hi2/index.cjs +0 -7
- package/dist/node_modules/react-icons/hi2/index.js +0 -8
- package/dist/node_modules/react-icons/lib/iconBase.cjs +0 -127
- package/dist/node_modules/react-icons/lib/iconBase.js +0 -128
- package/dist/node_modules/react-icons/lib/iconContext.cjs +0 -12
- package/dist/node_modules/react-icons/lib/iconContext.js +0 -13
- package/dist/node_modules/react-icons/lu/index.cjs +0 -7
- package/dist/node_modules/react-icons/lu/index.js +0 -8
- package/dist/node_modules/react-icons/pi/index.cjs +0 -15
- package/dist/node_modules/react-icons/pi/index.js +0 -16
- package/dist/node_modules/react-icons/tb/index.cjs +0 -7
- package/dist/node_modules/react-icons/tb/index.js +0 -8
- package/dist/node_modules/react-markdown/lib/index.cjs +0 -148
- package/dist/node_modules/react-markdown/lib/index.js +0 -149
- package/dist/node_modules/react-toastify/dist/ReactToastify.css.cjs +0 -1
- package/dist/node_modules/react-toastify/dist/ReactToastify.css.js +0 -1
- package/dist/node_modules/react-toastify/dist/index.cjs +0 -392
- package/dist/node_modules/react-toastify/dist/index.js +0 -393
- package/dist/node_modules/react-toastify/node_modules/clsx/dist/clsx.cjs +0 -17
- package/dist/node_modules/react-toastify/node_modules/clsx/dist/clsx.js +0 -17
- package/dist/node_modules/remark-parse/lib/index.cjs +0 -18
- package/dist/node_modules/remark-parse/lib/index.js +0 -19
- package/dist/node_modules/remark-rehype/lib/index.cjs +0 -20
- package/dist/node_modules/remark-rehype/lib/index.js +0 -21
- package/dist/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.cjs +0 -494
- package/dist/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js +0 -495
- package/dist/node_modules/scroll-into-view-if-needed/dist/index.cjs +0 -24
- package/dist/node_modules/scroll-into-view-if-needed/dist/index.js +0 -25
- package/dist/node_modules/socket.io-client/build/esm/contrib/backo2.cjs +0 -31
- package/dist/node_modules/socket.io-client/build/esm/contrib/backo2.js +0 -32
- package/dist/node_modules/socket.io-client/build/esm/index.cjs +0 -58
- package/dist/node_modules/socket.io-client/build/esm/index.js +0 -58
- package/dist/node_modules/socket.io-client/build/esm/manager.cjs +0 -363
- package/dist/node_modules/socket.io-client/build/esm/manager.js +0 -364
- package/dist/node_modules/socket.io-client/build/esm/on.cjs +0 -8
- package/dist/node_modules/socket.io-client/build/esm/on.js +0 -9
- package/dist/node_modules/socket.io-client/build/esm/socket.cjs +0 -777
- package/dist/node_modules/socket.io-client/build/esm/socket.js +0 -778
- package/dist/node_modules/socket.io-client/build/esm/url.cjs +0 -48
- package/dist/node_modules/socket.io-client/build/esm/url.js +0 -49
- package/dist/node_modules/socket.io-parser/build/esm/binary.cjs +0 -64
- package/dist/node_modules/socket.io-parser/build/esm/binary.js +0 -65
- package/dist/node_modules/socket.io-parser/build/esm/index.cjs +0 -261
- package/dist/node_modules/socket.io-parser/build/esm/index.js +0 -263
- package/dist/node_modules/socket.io-parser/build/esm/is-binary.cjs +0 -38
- package/dist/node_modules/socket.io-parser/build/esm/is-binary.js +0 -39
- package/dist/node_modules/space-separated-tokens/index.cjs +0 -5
- package/dist/node_modules/space-separated-tokens/index.js +0 -6
- package/dist/node_modules/style-to-js/cjs/index.cjs +0 -30
- package/dist/node_modules/style-to-js/cjs/index.js +0 -31
- package/dist/node_modules/style-to-js/cjs/utilities.cjs +0 -41
- package/dist/node_modules/style-to-js/cjs/utilities.js +0 -42
- package/dist/node_modules/style-to-object/cjs/index.cjs +0 -37
- package/dist/node_modules/style-to-object/cjs/index.js +0 -38
- package/dist/node_modules/stylis/src/Enum.cjs +0 -15
- package/dist/node_modules/stylis/src/Enum.js +0 -16
- package/dist/node_modules/stylis/src/Parser.cjs +0 -163
- package/dist/node_modules/stylis/src/Parser.js +0 -164
- package/dist/node_modules/stylis/src/Serializer.cjs +0 -28
- package/dist/node_modules/stylis/src/Serializer.js +0 -29
- package/dist/node_modules/stylis/src/Tokenizer.cjs +0 -149
- package/dist/node_modules/stylis/src/Tokenizer.js +0 -156
- package/dist/node_modules/stylis/src/Utility.cjs +0 -37
- package/dist/node_modules/stylis/src/Utility.js +0 -38
- package/dist/node_modules/throttle-debounce/esm/index.cjs +0 -60
- package/dist/node_modules/throttle-debounce/esm/index.js +0 -61
- package/dist/node_modules/toggle-selection/index.cjs +0 -41
- package/dist/node_modules/toggle-selection/index.js +0 -42
- package/dist/node_modules/trim-lines/index.cjs +0 -40
- package/dist/node_modules/trim-lines/index.js +0 -41
- package/dist/node_modules/trough/lib/index.cjs +0 -85
- package/dist/node_modules/trough/lib/index.js +0 -86
- package/dist/node_modules/unified/lib/callable-instance.cjs +0 -29
- package/dist/node_modules/unified/lib/callable-instance.js +0 -30
- package/dist/node_modules/unified/lib/index.cjs +0 -635
- package/dist/node_modules/unified/lib/index.js +0 -636
- package/dist/node_modules/unist-util-is/lib/index.cjs +0 -92
- package/dist/node_modules/unist-util-is/lib/index.js +0 -93
- package/dist/node_modules/unist-util-position/lib/index.cjs +0 -26
- package/dist/node_modules/unist-util-position/lib/index.js +0 -27
- package/dist/node_modules/unist-util-stringify-position/lib/index.cjs +0 -26
- package/dist/node_modules/unist-util-stringify-position/lib/index.js +0 -27
- package/dist/node_modules/unist-util-visit/lib/index.cjs +0 -26
- package/dist/node_modules/unist-util-visit/lib/index.js +0 -28
- package/dist/node_modules/unist-util-visit-parents/lib/color.cjs +0 -5
- package/dist/node_modules/unist-util-visit-parents/lib/color.js +0 -6
- package/dist/node_modules/unist-util-visit-parents/lib/index.cjs +0 -82
- package/dist/node_modules/unist-util-visit-parents/lib/index.js +0 -83
- package/dist/node_modules/vfile/lib/index.cjs +0 -461
- package/dist/node_modules/vfile/lib/index.js +0 -462
- package/dist/node_modules/vfile/lib/minpath.browser.cjs +0 -213
- package/dist/node_modules/vfile/lib/minpath.browser.js +0 -214
- package/dist/node_modules/vfile/lib/minproc.browser.cjs +0 -6
- package/dist/node_modules/vfile/lib/minproc.browser.js +0 -7
- package/dist/node_modules/vfile/lib/minurl.browser.cjs +0 -45
- package/dist/node_modules/vfile/lib/minurl.browser.js +0 -46
- package/dist/node_modules/vfile/lib/minurl.shared.cjs +0 -8
- package/dist/node_modules/vfile/lib/minurl.shared.js +0 -9
- package/dist/node_modules/vfile-message/lib/index.cjs +0 -137
- package/dist/node_modules/vfile-message/lib/index.js +0 -138
- package/dist/providers/BreakpointProvider.cjs +0 -30
- package/dist/providers/BreakpointProvider.d.ts +0 -7
- package/dist/providers/BreakpointProvider.js +0 -31
- package/dist/providers/GenesisProvider.cjs +0 -16
- package/dist/providers/GenesisProvider.d.ts +0 -7
- package/dist/providers/GenesisProvider.js +0 -16
- package/dist/providers/ToastProvider.cjs +0 -72
- package/dist/providers/ToastProvider.d.ts +0 -12
- package/dist/providers/ToastProvider.js +0 -73
- package/dist/providers/__stories__/GenesisProvider.stories.d.ts +0 -5
- package/dist/providers/index.d.ts +0 -2
- package/dist/providers/useGenesis.cjs +0 -15
- package/dist/providers/useGenesis.d.ts +0 -7
- package/dist/providers/useGenesis.js +0 -16
- package/dist/styles/design-tokens/border-tokens/BorderTokenList.d.ts +0 -1
- package/dist/styles/design-tokens/border-tokens/BorderTokens.stories.d.ts +0 -5
- package/dist/styles/design-tokens/color-tokens/ColorTokens.stories.d.ts +0 -6
- package/dist/styles/design-tokens/sizing-tokens/SizingTokenList.d.ts +0 -1
- package/dist/styles/design-tokens/sizing-tokens/index.stories.d.ts +0 -5
- package/dist/styles/design-tokens/typography-tokens/TypographyTokens.stories.d.ts +0 -7
- package/dist/styles/design-tokens/variables.cjs +0 -395
- package/dist/styles/global-styles.cjs +0 -24
- package/dist/styles/global-styles.d.ts +0 -1
- package/dist/styles/global-styles.js +0 -25
- package/dist/styles/theme/genesis-theme.cjs +0 -1335
- package/dist/styles/theme/genesis-theme.test.d.ts +0 -1
- package/dist/styles/theme/theme-tree/ThemeTree.d.ts +0 -1
- package/dist/styles/theme/theme-tree/ThemeTree.stories.d.ts +0 -5
- package/dist/types/index.d.ts +0 -1
- package/dist/utils/icon-util.cjs +0 -105
- package/dist/utils/simple-markdown.d.ts +0 -4
- package/dist/utils/user-util.cjs +0 -13
- package/dist/utils/user-util.d.ts +0 -2
- package/dist/utils/user-util.js +0 -14
- /package/dist/{components/Avatar/__tests__/Avatar.test.d.ts → interface/address.js} +0 -0
- /package/dist/{components/Badge/__tests__/Badge.test.d.ts → types/events.js} +0 -0
|
@@ -1,1336 +1,1512 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
6
11
|
};
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
// sizes
|
|
13
|
+
import { Size1, Size1_5, Size2, Size2_5, Size3, Size4, Size5, Size6, Size7, Size8, Size10, Size12, Size13, Size14, Size16, Size18, Size20, Size24, Size27, Size28, Size30, Size32, Size34, Size35, Size39, Size43, Size50, Size64, Size05, Size15, Size025, Size25, } from "../design-tokens/variables";
|
|
14
|
+
// typography
|
|
15
|
+
// FIXME: missing sub headings, digits, message, overline, label, link!!!
|
|
16
|
+
import { TypographyPrimaryFontFamily, TypographyWideFontSizeDisplay1, TypographyWideFontSizeDisplay2, TypographyWideFontSizeDisplay3, TypographyWideFontSizeHeading1, TypographyWideFontSizeHeading2, TypographyWideFontSizeHeading3, TypographyWideFontSizeSubHeading1, TypographyWideFontSizeSubHeading2, TypographyWideFontSizeSubHeading3, TypographyWideFontSizeBody1, TypographyWideFontSizeBody2, TypographyWideFontSizeBody3, TypographyWideFontSizeBody4, TypographyWideFontSizeBody5, TypographyWideFontSizeMessage, TypographyWideFontSizeOverline1, TypographyWideFontSizeOverline2, TypographyWideFontSizeOverline3, TypographyWideFontSizeLabel1, TypographyWideFontSizeLabel2, TypographyWideFontSizeLabel3, TypographyWideFontSizeLink1, TypographyWideFontSizeLink2, TypographyWideFontSizeLink3, TypographyWideFontSizeDigits1, TypographyWideFontSizeDigits2, TypographyWideFontSizeDigits3, TypographyMediumFontSizeDisplay1, TypographyMediumFontSizeDisplay2, TypographyMediumFontSizeDisplay3, TypographyMediumFontSizeHeading1, TypographyMediumFontSizeHeading2, TypographyMediumFontSizeHeading3, TypographyMediumFontSizeSubHeading1, TypographyMediumFontSizeSubHeading2, TypographyMediumFontSizeSubHeading3, TypographyMediumFontSizeBody1, TypographyMediumFontSizeBody2, TypographyMediumFontSizeBody3, TypographyMediumFontSizeBody4, TypographyMediumFontSizeBody5, TypographyMediumFontSizeMessage, TypographyMediumFontSizeOverline1, TypographyMediumFontSizeOverline2, TypographyMediumFontSizeOverline3, TypographyMediumFontSizeLabel1, TypographyMediumFontSizeLabel2, TypographyMediumFontSizeLabel3, TypographyMediumFontSizeLink1, TypographyMediumFontSizeLink2, TypographyMediumFontSizeLink3, TypographyMediumFontSizeDigits1, TypographyMediumFontSizeDigits2, TypographyMediumFontSizeDigits3, TypographyNarrowFontSizeDisplay1, TypographyNarrowFontSizeDisplay2, TypographyNarrowFontSizeDisplay3, TypographyNarrowFontSizeHeading1, TypographyNarrowFontSizeHeading2, TypographyNarrowFontSizeHeading3, TypographyNarrowFontSizeSubHeading1, TypographyNarrowFontSizeSubHeading2, TypographyNarrowFontSizeSubHeading3, TypographyNarrowFontSizeBody1, TypographyNarrowFontSizeBody2, TypographyNarrowFontSizeBody3, TypographyNarrowFontSizeBody4, TypographyNarrowFontSizeBody5, TypographyNarrowFontSizeMessage, TypographyNarrowFontSizeOverline1, TypographyNarrowFontSizeOverline2, TypographyNarrowFontSizeOverline3, TypographyNarrowFontSizeLabel1, TypographyNarrowFontSizeLabel2, TypographyNarrowFontSizeLabel3, TypographyNarrowFontSizeLink1, TypographyNarrowFontSizeLink2, TypographyNarrowFontSizeLink3, TypographyNarrowFontSizeDigits1, TypographyNarrowFontSizeDigits2, TypographyNarrowFontSizeDigits3, } from "../design-tokens/variables";
|
|
17
|
+
// colors
|
|
18
|
+
import { ColorRed100, ColorRed200, ColorRed300, ColorRed400, ColorRed500, ColorRed600, ColorRed700, ColorRed800, ColorRed900, ColorOrange100, ColorOrange200, ColorOrange300, ColorOrange400, ColorOrange500, ColorOrange600, ColorOrange700, ColorOrange800, ColorOrange900, ColorYellow100, ColorYellow200, ColorYellow300, ColorYellow400, ColorYellow500, ColorYellow600, ColorYellow700, ColorYellow800, ColorYellow900, ColorGreen100, ColorGreen200, ColorGreen300, ColorGreen400, ColorGreen500, ColorGreen600, ColorGreen700, ColorGreen800, ColorGreen900, ColorSky100, ColorSky200, ColorSky300, ColorSky400, ColorSky500, ColorSky600, ColorSky700, ColorSky800, ColorSky900, ColorBlue100, ColorBlue200, ColorBlue300, ColorBlue400, ColorBlue500, ColorBlue600, ColorBlue700, ColorBlue800, ColorBlue900, ColorPurple100, ColorPurple200, ColorPurple300, ColorPurple400, ColorPurple500, ColorPurple600, ColorPurple700, ColorPurple800, ColorPurple900, ColorGray100, ColorGray200, ColorGray300, ColorGray400, ColorGray500, ColorGray600, ColorGray700, ColorGray800, ColorGray900, ColorGrayBlack, ColorGrayWhite, } from "../design-tokens/variables";
|
|
19
|
+
// border radius
|
|
20
|
+
import { BorderRadiusNone, BorderRadiusXs, BorderRadiusSm, BorderRadiusMd, BorderRadiusLg, BorderRadiusXl, BorderRadiusXxl, BorderRadiusXxxl, BorderRadiusRounded, } from "../design-tokens/variables";
|
|
21
|
+
// breakpoints
|
|
22
|
+
// note: the Figma JSON didn't export a breakpoints object, so we need to create one based on what Figma describes as having breakpoints: Wide, Medium, Narrow
|
|
23
|
+
// Figma only mentions 3 breakpoints: Wide, Medium, Narrow so that's all we can officially support
|
|
24
|
+
export var breakpoints = {
|
|
25
|
+
wide: 1280,
|
|
26
|
+
medium: 1024,
|
|
27
|
+
narrow: 480,
|
|
17
28
|
};
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
// 12px
|
|
29
|
-
Size4,
|
|
30
|
-
// 16px
|
|
31
|
-
Size5,
|
|
32
|
-
// 20px
|
|
33
|
-
Size6,
|
|
34
|
-
// 24px
|
|
35
|
-
Size7,
|
|
36
|
-
// 28px
|
|
37
|
-
Size8,
|
|
38
|
-
// 32px
|
|
39
|
-
Size10,
|
|
40
|
-
// 40px
|
|
41
|
-
Size12,
|
|
42
|
-
// 48px
|
|
43
|
-
Size13,
|
|
44
|
-
// 52px
|
|
45
|
-
Size14,
|
|
46
|
-
// 56px
|
|
47
|
-
Size16,
|
|
48
|
-
// 64px
|
|
49
|
-
Size18,
|
|
50
|
-
// 72px
|
|
51
|
-
Size20,
|
|
52
|
-
// 80px
|
|
53
|
-
Size24,
|
|
54
|
-
// 96px
|
|
55
|
-
Size27,
|
|
56
|
-
// 108px
|
|
57
|
-
Size28,
|
|
58
|
-
// 112px
|
|
59
|
-
Size30,
|
|
60
|
-
// 120px
|
|
61
|
-
Size32,
|
|
62
|
-
// 128px
|
|
63
|
-
Size34,
|
|
64
|
-
// 136px
|
|
65
|
-
Size35,
|
|
66
|
-
// 140px
|
|
67
|
-
Size39,
|
|
68
|
-
// 156px
|
|
69
|
-
Size43,
|
|
70
|
-
// 172px
|
|
71
|
-
Size50,
|
|
72
|
-
// 200px
|
|
73
|
-
Size64,
|
|
74
|
-
// 256px
|
|
75
|
-
Size05,
|
|
76
|
-
// 2px
|
|
77
|
-
Size15,
|
|
78
|
-
// 6px
|
|
79
|
-
Size025,
|
|
80
|
-
// 1px
|
|
81
|
-
Size25,
|
|
82
|
-
// 10px
|
|
83
|
-
xs: Size1,
|
|
84
|
-
// 4px
|
|
85
|
-
sm: Size2,
|
|
86
|
-
// 8px
|
|
87
|
-
md: Size3,
|
|
88
|
-
// 12px
|
|
89
|
-
lg: Size4,
|
|
90
|
-
// 16px
|
|
91
|
-
typography1: 12,
|
|
92
|
-
typography2: 14,
|
|
93
|
-
typography3: 16
|
|
29
|
+
var borderRadius = {
|
|
30
|
+
BorderRadiusNone: BorderRadiusNone,
|
|
31
|
+
BorderRadiusXs: BorderRadiusXs,
|
|
32
|
+
BorderRadiusSm: BorderRadiusSm,
|
|
33
|
+
BorderRadiusMd: BorderRadiusMd,
|
|
34
|
+
BorderRadiusLg: BorderRadiusLg,
|
|
35
|
+
BorderRadiusXl: BorderRadiusXl,
|
|
36
|
+
BorderRadiusXxl: BorderRadiusXxl,
|
|
37
|
+
BorderRadiusXxxl: BorderRadiusXxxl,
|
|
38
|
+
BorderRadiusRounded: BorderRadiusRounded,
|
|
94
39
|
};
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
40
|
+
export var sizing = {
|
|
41
|
+
Size1: Size1, // 4px
|
|
42
|
+
Size1_5: Size1_5, // 6px
|
|
43
|
+
Size2: Size2, // 8px
|
|
44
|
+
Size2_5: Size2_5, // 10px
|
|
45
|
+
Size3: Size3, // 12px
|
|
46
|
+
Size4: Size4, // 16px
|
|
47
|
+
Size5: Size5, // 20px
|
|
48
|
+
Size6: Size6, // 24px
|
|
49
|
+
Size7: Size7, // 28px
|
|
50
|
+
Size8: Size8, // 32px
|
|
51
|
+
Size10: Size10, // 40px
|
|
52
|
+
Size12: Size12, // 48px
|
|
53
|
+
Size13: Size13, // 52px
|
|
54
|
+
Size14: Size14, // 56px
|
|
55
|
+
Size16: Size16, // 64px
|
|
56
|
+
Size18: Size18, // 72px
|
|
57
|
+
Size20: Size20, // 80px
|
|
58
|
+
Size24: Size24, // 96px
|
|
59
|
+
Size27: Size27, // 108px
|
|
60
|
+
Size28: Size28, // 112px
|
|
61
|
+
Size30: Size30, // 120px
|
|
62
|
+
Size32: Size32, // 128px
|
|
63
|
+
Size34: Size34, // 136px
|
|
64
|
+
Size35: Size35, // 140px
|
|
65
|
+
Size39: Size39, // 156px
|
|
66
|
+
Size43: Size43, // 172px
|
|
67
|
+
Size50: Size50, // 200px
|
|
68
|
+
Size64: Size64, // 256px
|
|
69
|
+
Size05: Size05, // 2px
|
|
70
|
+
Size15: Size15, // 6px
|
|
71
|
+
Size025: Size025, // 1px
|
|
72
|
+
Size25: Size25, // 10px
|
|
73
|
+
xs: Size1, // 4px
|
|
74
|
+
sm: Size2, // 8px
|
|
75
|
+
md: Size3, // 12px
|
|
76
|
+
lg: Size4, // 16px
|
|
77
|
+
typography1: 12,
|
|
78
|
+
typography2: 14,
|
|
79
|
+
typography3: 16,
|
|
123
80
|
};
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
letterSpacing: "0"
|
|
154
|
-
},
|
|
155
|
-
heading3: {
|
|
156
|
-
fontSize: TypographyWideFontSizeHeading3,
|
|
157
|
-
lineHeight: "1.5rem",
|
|
158
|
-
fontWeight: 700,
|
|
159
|
-
letterSpacing: "0"
|
|
160
|
-
},
|
|
161
|
-
subHeading1: {
|
|
162
|
-
fontSize: TypographyWideFontSizeSubHeading1,
|
|
163
|
-
lineHeight: "1.25rem",
|
|
164
|
-
fontWeight: 600,
|
|
165
|
-
letterSpacing: "0"
|
|
166
|
-
},
|
|
167
|
-
subHeading2: {
|
|
168
|
-
fontSize: TypographyWideFontSizeSubHeading2,
|
|
169
|
-
lineHeight: "1.25rem",
|
|
170
|
-
fontWeight: 600,
|
|
171
|
-
letterSpacing: "0"
|
|
172
|
-
},
|
|
173
|
-
subHeading3: {
|
|
174
|
-
fontSize: TypographyWideFontSizeSubHeading3,
|
|
175
|
-
lineHeight: "1rem",
|
|
176
|
-
fontWeight: 600,
|
|
177
|
-
letterSpacing: "0"
|
|
178
|
-
},
|
|
179
|
-
body1: {
|
|
180
|
-
fontSize: TypographyWideFontSizeBody1,
|
|
181
|
-
lineHeight: "1.5rem",
|
|
182
|
-
fontWeight: 400,
|
|
183
|
-
letterSpacing: "0"
|
|
184
|
-
},
|
|
185
|
-
body2: {
|
|
186
|
-
fontSize: TypographyWideFontSizeBody2,
|
|
187
|
-
lineHeight: "1.25rem",
|
|
188
|
-
fontWeight: 400,
|
|
189
|
-
letterSpacing: "0"
|
|
190
|
-
},
|
|
191
|
-
body3: {
|
|
192
|
-
fontSize: TypographyWideFontSizeBody3,
|
|
193
|
-
lineHeight: "1rem",
|
|
194
|
-
fontWeight: 400,
|
|
195
|
-
letterSpacing: "0"
|
|
196
|
-
},
|
|
197
|
-
body4: {
|
|
198
|
-
fontSize: TypographyWideFontSizeBody4,
|
|
199
|
-
lineHeight: "0.875rem",
|
|
200
|
-
fontWeight: 400,
|
|
201
|
-
letterSpacing: "0"
|
|
202
|
-
},
|
|
203
|
-
body5: {
|
|
204
|
-
fontSize: TypographyWideFontSizeBody5,
|
|
205
|
-
lineHeight: "0.75rem",
|
|
206
|
-
fontWeight: 400,
|
|
207
|
-
letterSpacing: "0"
|
|
208
|
-
},
|
|
209
|
-
message: {
|
|
210
|
-
fontSize: TypographyWideFontSizeMessage,
|
|
211
|
-
lineHeight: "23px",
|
|
212
|
-
fontWeight: 400,
|
|
213
|
-
letterSpacing: "0"
|
|
214
|
-
},
|
|
215
|
-
overline1: {
|
|
216
|
-
fontSize: TypographyWideFontSizeOverline1,
|
|
217
|
-
lineHeight: "0.75rem",
|
|
218
|
-
fontWeight: 500,
|
|
219
|
-
letterSpacing: "0"
|
|
220
|
-
},
|
|
221
|
-
overline2: {
|
|
222
|
-
fontSize: TypographyWideFontSizeOverline2,
|
|
223
|
-
lineHeight: "0.75rem",
|
|
224
|
-
fontWeight: 500,
|
|
225
|
-
letterSpacing: "0"
|
|
226
|
-
},
|
|
227
|
-
overline3: {
|
|
228
|
-
fontSize: TypographyWideFontSizeOverline3,
|
|
229
|
-
lineHeight: "0.75rem",
|
|
230
|
-
fontWeight: 500,
|
|
231
|
-
letterSpacing: "0"
|
|
232
|
-
},
|
|
233
|
-
label1: {
|
|
234
|
-
fontSize: TypographyWideFontSizeLabel1,
|
|
235
|
-
lineHeight: "1rem",
|
|
236
|
-
fontWeight: 500,
|
|
237
|
-
letterSpacing: "0"
|
|
238
|
-
},
|
|
239
|
-
label2: {
|
|
240
|
-
fontSize: TypographyWideFontSizeLabel2,
|
|
241
|
-
lineHeight: "1rem",
|
|
242
|
-
fontWeight: 500,
|
|
243
|
-
letterSpacing: "0"
|
|
244
|
-
},
|
|
245
|
-
label3: {
|
|
246
|
-
fontSize: TypographyWideFontSizeLabel3,
|
|
247
|
-
lineHeight: "1rem",
|
|
248
|
-
fontWeight: 500,
|
|
249
|
-
letterSpacing: "0"
|
|
250
|
-
},
|
|
251
|
-
link1: {
|
|
252
|
-
fontSize: TypographyWideFontSizeLink1,
|
|
253
|
-
lineHeight: "1.5rem",
|
|
254
|
-
fontWeight: 500,
|
|
255
|
-
letterSpacing: "0"
|
|
256
|
-
},
|
|
257
|
-
link2: {
|
|
258
|
-
fontSize: TypographyWideFontSizeLink2,
|
|
259
|
-
lineHeight: "1.25rem",
|
|
260
|
-
fontWeight: 500,
|
|
261
|
-
letterSpacing: "0"
|
|
262
|
-
},
|
|
263
|
-
link3: {
|
|
264
|
-
fontSize: TypographyWideFontSizeLink3,
|
|
265
|
-
lineHeight: "1rem",
|
|
266
|
-
fontWeight: 500,
|
|
267
|
-
letterSpacing: "0"
|
|
268
|
-
},
|
|
269
|
-
digits1: {
|
|
270
|
-
fontSize: TypographyWideFontSizeDigits1,
|
|
271
|
-
lineHeight: "3.5rem",
|
|
272
|
-
fontWeight: 700,
|
|
273
|
-
letterSpacing: "0"
|
|
274
|
-
},
|
|
275
|
-
digits2: {
|
|
276
|
-
fontSize: TypographyWideFontSizeDigits2,
|
|
277
|
-
lineHeight: "3rem",
|
|
278
|
-
fontWeight: 700,
|
|
279
|
-
letterSpacing: "0"
|
|
280
|
-
},
|
|
281
|
-
digits3: {
|
|
282
|
-
fontSize: TypographyWideFontSizeDigits3,
|
|
283
|
-
lineHeight: "2.5rem",
|
|
284
|
-
fontWeight: 700,
|
|
285
|
-
letterSpacing: "0"
|
|
286
|
-
}
|
|
81
|
+
// typography
|
|
82
|
+
export var TypographySizeKey = {
|
|
83
|
+
display1: "display1",
|
|
84
|
+
display2: "display2",
|
|
85
|
+
display3: "display3",
|
|
86
|
+
heading1: "heading1",
|
|
87
|
+
heading2: "heading2",
|
|
88
|
+
heading3: "heading3",
|
|
89
|
+
subHeading1: "subHeading1",
|
|
90
|
+
subHeading2: "subHeading2",
|
|
91
|
+
subHeading3: "subHeading3",
|
|
92
|
+
body1: "body1",
|
|
93
|
+
body2: "body2",
|
|
94
|
+
body3: "body3",
|
|
95
|
+
body4: "body4",
|
|
96
|
+
body5: "body5",
|
|
97
|
+
message: "message",
|
|
98
|
+
overline1: "overline1",
|
|
99
|
+
overline2: "overline2",
|
|
100
|
+
overline3: "overline3",
|
|
101
|
+
label1: "label1",
|
|
102
|
+
label2: "label2",
|
|
103
|
+
label3: "label3",
|
|
104
|
+
link1: "link1",
|
|
105
|
+
link2: "link2",
|
|
106
|
+
link3: "link3",
|
|
107
|
+
digits1: "digits1",
|
|
108
|
+
digits2: "digits2",
|
|
109
|
+
digits3: "digits3",
|
|
287
110
|
};
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
fontSize:
|
|
345
|
-
lineHeight: "
|
|
346
|
-
fontWeight: 400,
|
|
347
|
-
letterSpacing: "0"
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
fontSize:
|
|
375
|
-
lineHeight: "
|
|
376
|
-
fontWeight:
|
|
377
|
-
letterSpacing: "0"
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
111
|
+
var typographyTemplate = {
|
|
112
|
+
display1: {
|
|
113
|
+
fontSize: "",
|
|
114
|
+
lineHeight: "",
|
|
115
|
+
fontWeight: 700,
|
|
116
|
+
letterSpacing: "0",
|
|
117
|
+
},
|
|
118
|
+
display2: {
|
|
119
|
+
fontSize: "",
|
|
120
|
+
lineHeight: "",
|
|
121
|
+
fontWeight: 700,
|
|
122
|
+
letterSpacing: "0",
|
|
123
|
+
},
|
|
124
|
+
display3: {
|
|
125
|
+
fontSize: "",
|
|
126
|
+
lineHeight: "",
|
|
127
|
+
fontWeight: 700,
|
|
128
|
+
letterSpacing: "0",
|
|
129
|
+
},
|
|
130
|
+
heading1: {
|
|
131
|
+
fontSize: "",
|
|
132
|
+
lineHeight: "",
|
|
133
|
+
fontWeight: 700,
|
|
134
|
+
letterSpacing: "0",
|
|
135
|
+
},
|
|
136
|
+
heading2: {
|
|
137
|
+
fontSize: "",
|
|
138
|
+
lineHeight: "",
|
|
139
|
+
fontWeight: 700,
|
|
140
|
+
letterSpacing: "0",
|
|
141
|
+
},
|
|
142
|
+
heading3: {
|
|
143
|
+
fontSize: "",
|
|
144
|
+
lineHeight: "",
|
|
145
|
+
fontWeight: 700,
|
|
146
|
+
letterSpacing: "0",
|
|
147
|
+
},
|
|
148
|
+
subHeading1: {
|
|
149
|
+
fontSize: "",
|
|
150
|
+
lineHeight: "",
|
|
151
|
+
fontWeight: 600,
|
|
152
|
+
letterSpacing: "0",
|
|
153
|
+
},
|
|
154
|
+
subHeading2: {
|
|
155
|
+
fontSize: "",
|
|
156
|
+
lineHeight: "",
|
|
157
|
+
fontWeight: 600,
|
|
158
|
+
letterSpacing: "0",
|
|
159
|
+
},
|
|
160
|
+
subHeading3: {
|
|
161
|
+
fontSize: "",
|
|
162
|
+
lineHeight: "",
|
|
163
|
+
fontWeight: 600,
|
|
164
|
+
letterSpacing: "0",
|
|
165
|
+
},
|
|
166
|
+
body1: { fontSize: "", lineHeight: "", fontWeight: 400, letterSpacing: "0" },
|
|
167
|
+
body2: { fontSize: "", lineHeight: "", fontWeight: 400, letterSpacing: "0" },
|
|
168
|
+
body3: { fontSize: "", lineHeight: "", fontWeight: 400, letterSpacing: "0" },
|
|
169
|
+
body4: { fontSize: "", lineHeight: "", fontWeight: 400, letterSpacing: "0" },
|
|
170
|
+
body5: { fontSize: "", lineHeight: "", fontWeight: 400, letterSpacing: "0" },
|
|
171
|
+
message: {
|
|
172
|
+
fontSize: "",
|
|
173
|
+
lineHeight: "",
|
|
174
|
+
fontWeight: 400,
|
|
175
|
+
letterSpacing: "0",
|
|
176
|
+
},
|
|
177
|
+
overline1: {
|
|
178
|
+
fontSize: "",
|
|
179
|
+
lineHeight: "",
|
|
180
|
+
fontWeight: 500,
|
|
181
|
+
letterSpacing: "0",
|
|
182
|
+
},
|
|
183
|
+
overline2: {
|
|
184
|
+
fontSize: "",
|
|
185
|
+
lineHeight: "",
|
|
186
|
+
fontWeight: 500,
|
|
187
|
+
letterSpacing: "0",
|
|
188
|
+
},
|
|
189
|
+
overline3: {
|
|
190
|
+
fontSize: "",
|
|
191
|
+
lineHeight: "",
|
|
192
|
+
fontWeight: 500,
|
|
193
|
+
letterSpacing: "0",
|
|
194
|
+
},
|
|
195
|
+
label1: { fontSize: "", lineHeight: "", fontWeight: 500, letterSpacing: "0" },
|
|
196
|
+
label2: { fontSize: "", lineHeight: "", fontWeight: 500, letterSpacing: "0" },
|
|
197
|
+
label3: { fontSize: "", lineHeight: "", fontWeight: 500, letterSpacing: "0" },
|
|
198
|
+
link1: { fontSize: "", lineHeight: "", fontWeight: 500, letterSpacing: "0" },
|
|
199
|
+
link2: { fontSize: "", lineHeight: "", fontWeight: 500, letterSpacing: "0" },
|
|
200
|
+
link3: { fontSize: "", lineHeight: "", fontWeight: 500, letterSpacing: "0" },
|
|
201
|
+
digits1: {
|
|
202
|
+
fontSize: "",
|
|
203
|
+
lineHeight: "",
|
|
204
|
+
fontWeight: 700,
|
|
205
|
+
letterSpacing: "0",
|
|
206
|
+
},
|
|
207
|
+
digits2: {
|
|
208
|
+
fontSize: "",
|
|
209
|
+
lineHeight: "",
|
|
210
|
+
fontWeight: 700,
|
|
211
|
+
letterSpacing: "0",
|
|
212
|
+
},
|
|
213
|
+
digits3: {
|
|
214
|
+
fontSize: "",
|
|
215
|
+
lineHeight: "",
|
|
216
|
+
fontWeight: 700,
|
|
217
|
+
letterSpacing: "0",
|
|
218
|
+
},
|
|
219
|
+
};
|
|
220
|
+
var wideTypography = {
|
|
221
|
+
display1: {
|
|
222
|
+
fontSize: TypographyWideFontSizeDisplay1,
|
|
223
|
+
lineHeight: "3.5rem",
|
|
224
|
+
fontWeight: 700,
|
|
225
|
+
letterSpacing: "0",
|
|
226
|
+
},
|
|
227
|
+
display2: {
|
|
228
|
+
fontSize: TypographyWideFontSizeDisplay2,
|
|
229
|
+
lineHeight: "3rem",
|
|
230
|
+
fontWeight: 700,
|
|
231
|
+
letterSpacing: "0",
|
|
232
|
+
},
|
|
233
|
+
display3: {
|
|
234
|
+
fontSize: TypographyWideFontSizeDisplay3,
|
|
235
|
+
lineHeight: "2.5rem",
|
|
236
|
+
fontWeight: 700,
|
|
237
|
+
letterSpacing: "0",
|
|
238
|
+
},
|
|
239
|
+
heading1: {
|
|
240
|
+
fontSize: TypographyWideFontSizeHeading1,
|
|
241
|
+
lineHeight: "2rem",
|
|
242
|
+
fontWeight: 700,
|
|
243
|
+
letterSpacing: "0",
|
|
244
|
+
},
|
|
245
|
+
heading2: {
|
|
246
|
+
fontSize: TypographyWideFontSizeHeading2,
|
|
247
|
+
lineHeight: "1.75rem",
|
|
248
|
+
fontWeight: 700,
|
|
249
|
+
letterSpacing: "0",
|
|
250
|
+
},
|
|
251
|
+
heading3: {
|
|
252
|
+
fontSize: TypographyWideFontSizeHeading3,
|
|
253
|
+
lineHeight: "1.5rem",
|
|
254
|
+
fontWeight: 700,
|
|
255
|
+
letterSpacing: "0",
|
|
256
|
+
},
|
|
257
|
+
subHeading1: {
|
|
258
|
+
fontSize: TypographyWideFontSizeSubHeading1,
|
|
259
|
+
lineHeight: "1.25rem",
|
|
260
|
+
fontWeight: 600,
|
|
261
|
+
letterSpacing: "0",
|
|
262
|
+
},
|
|
263
|
+
subHeading2: {
|
|
264
|
+
fontSize: TypographyWideFontSizeSubHeading2,
|
|
265
|
+
lineHeight: "1.25rem",
|
|
266
|
+
fontWeight: 600,
|
|
267
|
+
letterSpacing: "0",
|
|
268
|
+
},
|
|
269
|
+
subHeading3: {
|
|
270
|
+
fontSize: TypographyWideFontSizeSubHeading3,
|
|
271
|
+
lineHeight: "1rem",
|
|
272
|
+
fontWeight: 600,
|
|
273
|
+
letterSpacing: "0",
|
|
274
|
+
},
|
|
275
|
+
body1: {
|
|
276
|
+
fontSize: TypographyWideFontSizeBody1,
|
|
277
|
+
lineHeight: "1.5rem",
|
|
278
|
+
fontWeight: 400,
|
|
279
|
+
letterSpacing: "0",
|
|
280
|
+
},
|
|
281
|
+
body2: {
|
|
282
|
+
fontSize: TypographyWideFontSizeBody2,
|
|
283
|
+
lineHeight: "1.25rem",
|
|
284
|
+
fontWeight: 400,
|
|
285
|
+
letterSpacing: "0",
|
|
286
|
+
},
|
|
287
|
+
body3: {
|
|
288
|
+
fontSize: TypographyWideFontSizeBody3,
|
|
289
|
+
lineHeight: "1rem",
|
|
290
|
+
fontWeight: 400,
|
|
291
|
+
letterSpacing: "0",
|
|
292
|
+
},
|
|
293
|
+
body4: {
|
|
294
|
+
fontSize: TypographyWideFontSizeBody4,
|
|
295
|
+
lineHeight: "0.875rem",
|
|
296
|
+
fontWeight: 400,
|
|
297
|
+
letterSpacing: "0",
|
|
298
|
+
},
|
|
299
|
+
body5: {
|
|
300
|
+
fontSize: TypographyWideFontSizeBody5,
|
|
301
|
+
lineHeight: "0.75rem",
|
|
302
|
+
fontWeight: 400,
|
|
303
|
+
letterSpacing: "0",
|
|
304
|
+
},
|
|
305
|
+
message: {
|
|
306
|
+
fontSize: TypographyWideFontSizeMessage,
|
|
307
|
+
lineHeight: "23px",
|
|
308
|
+
fontWeight: 400,
|
|
309
|
+
letterSpacing: "0",
|
|
310
|
+
},
|
|
311
|
+
overline1: {
|
|
312
|
+
fontSize: TypographyWideFontSizeOverline1,
|
|
313
|
+
lineHeight: "0.75rem",
|
|
314
|
+
fontWeight: 500,
|
|
315
|
+
letterSpacing: "0",
|
|
316
|
+
},
|
|
317
|
+
overline2: {
|
|
318
|
+
fontSize: TypographyWideFontSizeOverline2,
|
|
319
|
+
lineHeight: "0.75rem",
|
|
320
|
+
fontWeight: 500,
|
|
321
|
+
letterSpacing: "0",
|
|
322
|
+
},
|
|
323
|
+
overline3: {
|
|
324
|
+
fontSize: TypographyWideFontSizeOverline3,
|
|
325
|
+
lineHeight: "0.75rem",
|
|
326
|
+
fontWeight: 500,
|
|
327
|
+
letterSpacing: "0",
|
|
328
|
+
},
|
|
329
|
+
label1: {
|
|
330
|
+
fontSize: TypographyWideFontSizeLabel1,
|
|
331
|
+
lineHeight: "1rem",
|
|
332
|
+
fontWeight: 500,
|
|
333
|
+
letterSpacing: "0",
|
|
334
|
+
},
|
|
335
|
+
label2: {
|
|
336
|
+
fontSize: TypographyWideFontSizeLabel2,
|
|
337
|
+
lineHeight: "1rem",
|
|
338
|
+
fontWeight: 500,
|
|
339
|
+
letterSpacing: "0",
|
|
340
|
+
},
|
|
341
|
+
label3: {
|
|
342
|
+
fontSize: TypographyWideFontSizeLabel3,
|
|
343
|
+
lineHeight: "1rem",
|
|
344
|
+
fontWeight: 500,
|
|
345
|
+
letterSpacing: "0",
|
|
346
|
+
},
|
|
347
|
+
link1: {
|
|
348
|
+
fontSize: TypographyWideFontSizeLink1,
|
|
349
|
+
lineHeight: "1.5rem",
|
|
350
|
+
fontWeight: 500,
|
|
351
|
+
letterSpacing: "0",
|
|
352
|
+
},
|
|
353
|
+
link2: {
|
|
354
|
+
fontSize: TypographyWideFontSizeLink2,
|
|
355
|
+
lineHeight: "1.25rem",
|
|
356
|
+
fontWeight: 500,
|
|
357
|
+
letterSpacing: "0",
|
|
358
|
+
},
|
|
359
|
+
link3: {
|
|
360
|
+
fontSize: TypographyWideFontSizeLink3,
|
|
361
|
+
lineHeight: "1rem",
|
|
362
|
+
fontWeight: 500,
|
|
363
|
+
letterSpacing: "0",
|
|
364
|
+
},
|
|
365
|
+
digits1: {
|
|
366
|
+
fontSize: TypographyWideFontSizeDigits1,
|
|
367
|
+
lineHeight: "3.5rem",
|
|
368
|
+
fontWeight: 700,
|
|
369
|
+
letterSpacing: "0",
|
|
370
|
+
},
|
|
371
|
+
digits2: {
|
|
372
|
+
fontSize: TypographyWideFontSizeDigits2,
|
|
373
|
+
lineHeight: "3rem",
|
|
374
|
+
fontWeight: 700,
|
|
375
|
+
letterSpacing: "0",
|
|
376
|
+
},
|
|
377
|
+
digits3: {
|
|
378
|
+
fontSize: TypographyWideFontSizeDigits3,
|
|
379
|
+
lineHeight: "2.5rem",
|
|
380
|
+
fontWeight: 700,
|
|
381
|
+
letterSpacing: "0",
|
|
382
|
+
},
|
|
383
|
+
};
|
|
384
|
+
var mediumTypography = {
|
|
385
|
+
display1: {
|
|
386
|
+
fontSize: TypographyMediumFontSizeDisplay1,
|
|
387
|
+
lineHeight: "3.5rem",
|
|
388
|
+
fontWeight: 700,
|
|
389
|
+
letterSpacing: "0",
|
|
390
|
+
},
|
|
391
|
+
display2: {
|
|
392
|
+
fontSize: TypographyMediumFontSizeDisplay2,
|
|
393
|
+
lineHeight: "3rem",
|
|
394
|
+
fontWeight: 700,
|
|
395
|
+
letterSpacing: "0",
|
|
396
|
+
},
|
|
397
|
+
display3: {
|
|
398
|
+
fontSize: TypographyMediumFontSizeDisplay3,
|
|
399
|
+
lineHeight: "2.5rem",
|
|
400
|
+
fontWeight: 700,
|
|
401
|
+
letterSpacing: "0",
|
|
402
|
+
},
|
|
403
|
+
heading1: {
|
|
404
|
+
fontSize: TypographyMediumFontSizeHeading1,
|
|
405
|
+
lineHeight: "2rem",
|
|
406
|
+
fontWeight: 700,
|
|
407
|
+
letterSpacing: "0",
|
|
408
|
+
},
|
|
409
|
+
heading2: {
|
|
410
|
+
fontSize: TypographyMediumFontSizeHeading2,
|
|
411
|
+
lineHeight: "1.75rem",
|
|
412
|
+
fontWeight: 700,
|
|
413
|
+
letterSpacing: "0",
|
|
414
|
+
},
|
|
415
|
+
heading3: {
|
|
416
|
+
fontSize: TypographyMediumFontSizeHeading3,
|
|
417
|
+
lineHeight: "1.5rem",
|
|
418
|
+
fontWeight: 700,
|
|
419
|
+
letterSpacing: "0",
|
|
420
|
+
},
|
|
421
|
+
subHeading1: {
|
|
422
|
+
fontSize: TypographyMediumFontSizeSubHeading1,
|
|
423
|
+
lineHeight: "1.25rem",
|
|
424
|
+
fontWeight: 600,
|
|
425
|
+
letterSpacing: "0",
|
|
426
|
+
},
|
|
427
|
+
subHeading2: {
|
|
428
|
+
fontSize: TypographyMediumFontSizeSubHeading2,
|
|
429
|
+
lineHeight: "1.25rem",
|
|
430
|
+
fontWeight: 600,
|
|
431
|
+
letterSpacing: "0",
|
|
432
|
+
},
|
|
433
|
+
subHeading3: {
|
|
434
|
+
fontSize: TypographyMediumFontSizeSubHeading3,
|
|
435
|
+
lineHeight: "1rem",
|
|
436
|
+
fontWeight: 600,
|
|
437
|
+
letterSpacing: "0",
|
|
438
|
+
},
|
|
439
|
+
body1: {
|
|
440
|
+
fontSize: TypographyMediumFontSizeBody1,
|
|
441
|
+
lineHeight: "1.5rem",
|
|
442
|
+
fontWeight: 400,
|
|
443
|
+
letterSpacing: "0",
|
|
444
|
+
},
|
|
445
|
+
body2: {
|
|
446
|
+
fontSize: TypographyMediumFontSizeBody2,
|
|
447
|
+
lineHeight: "1.25rem",
|
|
448
|
+
fontWeight: 400,
|
|
449
|
+
letterSpacing: "0",
|
|
450
|
+
},
|
|
451
|
+
body3: {
|
|
452
|
+
fontSize: TypographyMediumFontSizeBody3,
|
|
453
|
+
lineHeight: "1rem",
|
|
454
|
+
fontWeight: 400,
|
|
455
|
+
letterSpacing: "0",
|
|
456
|
+
},
|
|
457
|
+
body4: {
|
|
458
|
+
fontSize: TypographyMediumFontSizeBody4,
|
|
459
|
+
lineHeight: "0.875rem",
|
|
460
|
+
fontWeight: 400,
|
|
461
|
+
letterSpacing: "0",
|
|
462
|
+
},
|
|
463
|
+
body5: {
|
|
464
|
+
fontSize: TypographyMediumFontSizeBody5,
|
|
465
|
+
lineHeight: "0.75rem",
|
|
466
|
+
fontWeight: 400,
|
|
467
|
+
letterSpacing: "0",
|
|
468
|
+
},
|
|
469
|
+
message: {
|
|
470
|
+
fontSize: TypographyMediumFontSizeMessage,
|
|
471
|
+
lineHeight: "23px",
|
|
472
|
+
fontWeight: 400,
|
|
473
|
+
letterSpacing: "0",
|
|
474
|
+
},
|
|
475
|
+
overline1: {
|
|
476
|
+
fontSize: TypographyMediumFontSizeOverline1,
|
|
477
|
+
lineHeight: "0.75rem",
|
|
478
|
+
fontWeight: 500,
|
|
479
|
+
letterSpacing: "0",
|
|
480
|
+
},
|
|
481
|
+
overline2: {
|
|
482
|
+
fontSize: TypographyMediumFontSizeOverline2,
|
|
483
|
+
lineHeight: "0.75rem",
|
|
484
|
+
fontWeight: 500,
|
|
485
|
+
letterSpacing: "0",
|
|
486
|
+
},
|
|
487
|
+
overline3: {
|
|
488
|
+
fontSize: TypographyMediumFontSizeOverline3,
|
|
489
|
+
lineHeight: "0.75rem",
|
|
490
|
+
fontWeight: 500,
|
|
491
|
+
letterSpacing: "0",
|
|
492
|
+
},
|
|
493
|
+
label1: {
|
|
494
|
+
fontSize: TypographyMediumFontSizeLabel1,
|
|
495
|
+
lineHeight: "1rem",
|
|
496
|
+
fontWeight: 500,
|
|
497
|
+
letterSpacing: "0",
|
|
498
|
+
},
|
|
499
|
+
label2: {
|
|
500
|
+
fontSize: TypographyMediumFontSizeLabel2,
|
|
501
|
+
lineHeight: "1rem",
|
|
502
|
+
fontWeight: 500,
|
|
503
|
+
letterSpacing: "0",
|
|
504
|
+
},
|
|
505
|
+
label3: {
|
|
506
|
+
fontSize: TypographyMediumFontSizeLabel3,
|
|
507
|
+
lineHeight: "1rem",
|
|
508
|
+
fontWeight: 500,
|
|
509
|
+
letterSpacing: "0",
|
|
510
|
+
},
|
|
511
|
+
link1: {
|
|
512
|
+
fontSize: TypographyMediumFontSizeLink1,
|
|
513
|
+
lineHeight: "1.5rem",
|
|
514
|
+
fontWeight: 500,
|
|
515
|
+
letterSpacing: "0",
|
|
516
|
+
},
|
|
517
|
+
link2: {
|
|
518
|
+
fontSize: TypographyMediumFontSizeLink2,
|
|
519
|
+
lineHeight: "1.25rem",
|
|
520
|
+
fontWeight: 500,
|
|
521
|
+
letterSpacing: "0",
|
|
522
|
+
},
|
|
523
|
+
link3: {
|
|
524
|
+
fontSize: TypographyMediumFontSizeLink3,
|
|
525
|
+
lineHeight: "1rem",
|
|
526
|
+
fontWeight: 500,
|
|
527
|
+
letterSpacing: "0",
|
|
528
|
+
},
|
|
529
|
+
digits1: {
|
|
530
|
+
fontSize: TypographyMediumFontSizeDigits1,
|
|
531
|
+
lineHeight: "3.5rem",
|
|
532
|
+
fontWeight: 700,
|
|
533
|
+
letterSpacing: "0",
|
|
534
|
+
},
|
|
535
|
+
digits2: {
|
|
536
|
+
fontSize: TypographyMediumFontSizeDigits2,
|
|
537
|
+
lineHeight: "3rem",
|
|
538
|
+
fontWeight: 700,
|
|
539
|
+
letterSpacing: "0",
|
|
540
|
+
},
|
|
541
|
+
digits3: {
|
|
542
|
+
fontSize: TypographyMediumFontSizeDigits3,
|
|
543
|
+
lineHeight: "2.5rem",
|
|
544
|
+
fontWeight: 700,
|
|
545
|
+
letterSpacing: "0",
|
|
546
|
+
},
|
|
451
547
|
};
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
548
|
+
var narrowTypography = {
|
|
549
|
+
display1: {
|
|
550
|
+
fontSize: TypographyNarrowFontSizeDisplay1,
|
|
551
|
+
lineHeight: "3.5rem",
|
|
552
|
+
fontWeight: 700,
|
|
553
|
+
letterSpacing: "0",
|
|
554
|
+
},
|
|
555
|
+
display2: {
|
|
556
|
+
fontSize: TypographyNarrowFontSizeDisplay2,
|
|
557
|
+
lineHeight: "3rem",
|
|
558
|
+
fontWeight: 700,
|
|
559
|
+
letterSpacing: "0",
|
|
560
|
+
},
|
|
561
|
+
display3: {
|
|
562
|
+
fontSize: TypographyNarrowFontSizeDisplay3,
|
|
563
|
+
lineHeight: "2.5rem",
|
|
564
|
+
fontWeight: 700,
|
|
565
|
+
letterSpacing: "0",
|
|
566
|
+
},
|
|
567
|
+
heading1: {
|
|
568
|
+
fontSize: TypographyNarrowFontSizeHeading1,
|
|
569
|
+
lineHeight: "2rem",
|
|
570
|
+
fontWeight: 700,
|
|
571
|
+
letterSpacing: "0",
|
|
572
|
+
},
|
|
573
|
+
heading2: {
|
|
574
|
+
fontSize: TypographyNarrowFontSizeHeading2,
|
|
575
|
+
lineHeight: "1.75rem",
|
|
576
|
+
fontWeight: 700,
|
|
577
|
+
letterSpacing: "0",
|
|
578
|
+
},
|
|
579
|
+
heading3: {
|
|
580
|
+
fontSize: TypographyNarrowFontSizeHeading3,
|
|
581
|
+
lineHeight: "1.5rem",
|
|
582
|
+
fontWeight: 700,
|
|
583
|
+
letterSpacing: "0",
|
|
584
|
+
},
|
|
585
|
+
subHeading1: {
|
|
586
|
+
fontSize: TypographyNarrowFontSizeSubHeading1,
|
|
587
|
+
lineHeight: "1.25rem",
|
|
588
|
+
fontWeight: 600,
|
|
589
|
+
letterSpacing: "0",
|
|
590
|
+
},
|
|
591
|
+
subHeading2: {
|
|
592
|
+
fontSize: TypographyNarrowFontSizeSubHeading2,
|
|
593
|
+
lineHeight: "1.25rem",
|
|
594
|
+
fontWeight: 600,
|
|
595
|
+
letterSpacing: "0",
|
|
596
|
+
},
|
|
597
|
+
subHeading3: {
|
|
598
|
+
fontSize: TypographyNarrowFontSizeSubHeading3,
|
|
599
|
+
lineHeight: "1rem",
|
|
600
|
+
fontWeight: 600,
|
|
601
|
+
letterSpacing: "0",
|
|
602
|
+
},
|
|
603
|
+
body1: {
|
|
604
|
+
fontSize: TypographyNarrowFontSizeBody1,
|
|
605
|
+
lineHeight: "1.5rem",
|
|
606
|
+
fontWeight: 400,
|
|
607
|
+
letterSpacing: "0",
|
|
608
|
+
},
|
|
609
|
+
body2: {
|
|
610
|
+
fontSize: TypographyNarrowFontSizeBody2,
|
|
611
|
+
lineHeight: "1.25rem",
|
|
612
|
+
fontWeight: 400,
|
|
613
|
+
letterSpacing: "0",
|
|
614
|
+
},
|
|
615
|
+
body3: {
|
|
616
|
+
fontSize: TypographyNarrowFontSizeBody3,
|
|
617
|
+
lineHeight: "1rem",
|
|
618
|
+
fontWeight: 400,
|
|
619
|
+
letterSpacing: "0",
|
|
620
|
+
},
|
|
621
|
+
body4: {
|
|
622
|
+
fontSize: TypographyNarrowFontSizeBody4,
|
|
623
|
+
lineHeight: "0.875rem",
|
|
624
|
+
fontWeight: 400,
|
|
625
|
+
letterSpacing: "0",
|
|
626
|
+
},
|
|
627
|
+
body5: {
|
|
628
|
+
fontSize: TypographyNarrowFontSizeBody5,
|
|
629
|
+
lineHeight: "0.75rem",
|
|
630
|
+
fontWeight: 400,
|
|
631
|
+
letterSpacing: "0",
|
|
632
|
+
},
|
|
633
|
+
message: {
|
|
634
|
+
fontSize: TypographyNarrowFontSizeMessage,
|
|
635
|
+
lineHeight: "23px",
|
|
636
|
+
fontWeight: 400,
|
|
637
|
+
letterSpacing: "0",
|
|
638
|
+
},
|
|
639
|
+
overline1: {
|
|
640
|
+
fontSize: TypographyNarrowFontSizeOverline1,
|
|
641
|
+
lineHeight: "0.75rem",
|
|
642
|
+
fontWeight: 500,
|
|
643
|
+
letterSpacing: "0",
|
|
644
|
+
},
|
|
645
|
+
overline2: {
|
|
646
|
+
fontSize: TypographyNarrowFontSizeOverline2,
|
|
647
|
+
lineHeight: "0.75rem",
|
|
648
|
+
fontWeight: 500,
|
|
649
|
+
letterSpacing: "0",
|
|
650
|
+
},
|
|
651
|
+
overline3: {
|
|
652
|
+
fontSize: TypographyNarrowFontSizeOverline3,
|
|
653
|
+
lineHeight: "0.75rem",
|
|
654
|
+
fontWeight: 500,
|
|
655
|
+
letterSpacing: "0",
|
|
656
|
+
},
|
|
657
|
+
label1: {
|
|
658
|
+
fontSize: TypographyNarrowFontSizeLabel1,
|
|
659
|
+
lineHeight: "1rem",
|
|
660
|
+
fontWeight: 500,
|
|
661
|
+
letterSpacing: "0",
|
|
662
|
+
},
|
|
663
|
+
label2: {
|
|
664
|
+
fontSize: TypographyNarrowFontSizeLabel2,
|
|
665
|
+
lineHeight: "1rem",
|
|
666
|
+
fontWeight: 500,
|
|
667
|
+
letterSpacing: "0",
|
|
668
|
+
},
|
|
669
|
+
label3: {
|
|
670
|
+
fontSize: TypographyNarrowFontSizeLabel3,
|
|
671
|
+
lineHeight: "1rem",
|
|
672
|
+
fontWeight: 500,
|
|
673
|
+
letterSpacing: "0",
|
|
674
|
+
},
|
|
675
|
+
link1: {
|
|
676
|
+
fontSize: TypographyNarrowFontSizeLink1,
|
|
677
|
+
lineHeight: "1.5rem",
|
|
678
|
+
fontWeight: 500,
|
|
679
|
+
letterSpacing: "0",
|
|
680
|
+
},
|
|
681
|
+
link2: {
|
|
682
|
+
fontSize: TypographyNarrowFontSizeLink2,
|
|
683
|
+
lineHeight: "1.25rem",
|
|
684
|
+
fontWeight: 500,
|
|
685
|
+
letterSpacing: "0",
|
|
686
|
+
},
|
|
687
|
+
link3: {
|
|
688
|
+
fontSize: TypographyNarrowFontSizeLink3,
|
|
689
|
+
lineHeight: "1rem",
|
|
690
|
+
fontWeight: 500,
|
|
691
|
+
letterSpacing: "0",
|
|
692
|
+
},
|
|
693
|
+
digits1: {
|
|
694
|
+
fontSize: TypographyNarrowFontSizeDigits1,
|
|
695
|
+
lineHeight: "3.5rem",
|
|
696
|
+
fontWeight: 700,
|
|
697
|
+
letterSpacing: "0",
|
|
698
|
+
},
|
|
699
|
+
digits2: {
|
|
700
|
+
fontSize: TypographyNarrowFontSizeDigits2,
|
|
701
|
+
lineHeight: "3rem",
|
|
702
|
+
fontWeight: 700,
|
|
703
|
+
letterSpacing: "0",
|
|
704
|
+
},
|
|
705
|
+
digits3: {
|
|
706
|
+
fontSize: TypographyNarrowFontSizeDigits3,
|
|
707
|
+
lineHeight: "2.5rem",
|
|
708
|
+
fontWeight: 700,
|
|
709
|
+
letterSpacing: "0",
|
|
710
|
+
},
|
|
615
711
|
};
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
712
|
+
var typography = {
|
|
713
|
+
fontFamily: TypographyPrimaryFontFamily,
|
|
714
|
+
wide: wideTypography,
|
|
715
|
+
medium: mediumTypography,
|
|
716
|
+
narrow: narrowTypography,
|
|
621
717
|
};
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
718
|
+
// colors
|
|
719
|
+
var colors = {
|
|
720
|
+
red: {
|
|
721
|
+
100: ColorRed100,
|
|
722
|
+
200: ColorRed200,
|
|
723
|
+
300: ColorRed300,
|
|
724
|
+
400: ColorRed400,
|
|
725
|
+
500: ColorRed500,
|
|
726
|
+
600: ColorRed600,
|
|
727
|
+
700: ColorRed700,
|
|
728
|
+
800: ColorRed800,
|
|
729
|
+
900: ColorRed900,
|
|
730
|
+
},
|
|
731
|
+
orange: {
|
|
732
|
+
100: ColorOrange100,
|
|
733
|
+
200: ColorOrange200,
|
|
734
|
+
300: ColorOrange300,
|
|
735
|
+
400: ColorOrange400,
|
|
736
|
+
500: ColorOrange500,
|
|
737
|
+
600: ColorOrange600,
|
|
738
|
+
700: ColorOrange700,
|
|
739
|
+
800: ColorOrange800,
|
|
740
|
+
900: ColorOrange900,
|
|
741
|
+
},
|
|
742
|
+
yellow: {
|
|
743
|
+
100: ColorYellow100,
|
|
744
|
+
200: ColorYellow200,
|
|
745
|
+
300: ColorYellow300,
|
|
746
|
+
400: ColorYellow400,
|
|
747
|
+
500: ColorYellow500,
|
|
748
|
+
600: ColorYellow600,
|
|
749
|
+
700: ColorYellow700,
|
|
750
|
+
800: ColorYellow800,
|
|
751
|
+
900: ColorYellow900,
|
|
752
|
+
},
|
|
753
|
+
green: {
|
|
754
|
+
100: ColorGreen100,
|
|
755
|
+
200: ColorGreen200,
|
|
756
|
+
300: ColorGreen300,
|
|
757
|
+
400: ColorGreen400,
|
|
758
|
+
500: ColorGreen500,
|
|
759
|
+
600: ColorGreen600,
|
|
760
|
+
700: ColorGreen700,
|
|
761
|
+
800: ColorGreen800,
|
|
762
|
+
900: ColorGreen900,
|
|
763
|
+
},
|
|
764
|
+
sky: {
|
|
765
|
+
100: ColorSky100,
|
|
766
|
+
200: ColorSky200,
|
|
767
|
+
300: ColorSky300,
|
|
768
|
+
400: ColorSky400,
|
|
769
|
+
500: ColorSky500,
|
|
770
|
+
600: ColorSky600,
|
|
771
|
+
700: ColorSky700,
|
|
772
|
+
800: ColorSky800,
|
|
773
|
+
900: ColorSky900,
|
|
774
|
+
},
|
|
775
|
+
blue: {
|
|
776
|
+
100: ColorBlue100,
|
|
777
|
+
200: ColorBlue200,
|
|
778
|
+
300: ColorBlue300,
|
|
779
|
+
400: ColorBlue400,
|
|
780
|
+
500: ColorBlue500,
|
|
781
|
+
600: ColorBlue600,
|
|
782
|
+
700: ColorBlue700,
|
|
783
|
+
800: ColorBlue800,
|
|
784
|
+
900: ColorBlue900,
|
|
785
|
+
},
|
|
786
|
+
purple: {
|
|
787
|
+
100: ColorPurple100,
|
|
788
|
+
200: ColorPurple200,
|
|
789
|
+
300: ColorPurple300,
|
|
790
|
+
400: ColorPurple400,
|
|
791
|
+
500: ColorPurple500,
|
|
792
|
+
600: ColorPurple600,
|
|
793
|
+
700: ColorPurple700,
|
|
794
|
+
800: ColorPurple800,
|
|
795
|
+
900: ColorPurple900,
|
|
796
|
+
},
|
|
797
|
+
gray: {
|
|
798
|
+
100: ColorGray100,
|
|
799
|
+
200: ColorGray200,
|
|
800
|
+
300: ColorGray300,
|
|
801
|
+
400: ColorGray400,
|
|
802
|
+
500: ColorGray500,
|
|
803
|
+
600: ColorGray600,
|
|
804
|
+
700: ColorGray700,
|
|
805
|
+
800: ColorGray800,
|
|
806
|
+
900: ColorGray900,
|
|
807
|
+
black: ColorGrayBlack,
|
|
808
|
+
white: ColorGrayWhite,
|
|
809
|
+
},
|
|
713
810
|
};
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
//
|
|
720
|
-
|
|
721
|
-
gap: sizing.Size2,
|
|
722
|
-
// 8px
|
|
723
|
-
radius: borderRadius.BorderRadiusMd
|
|
724
|
-
// 6px
|
|
811
|
+
var button = {
|
|
812
|
+
padding: {
|
|
813
|
+
verPadding: sizing.Size25, // 25px
|
|
814
|
+
horPadding: sizing.Size6, // 10px
|
|
815
|
+
},
|
|
816
|
+
gap: sizing.Size2, // 8px
|
|
817
|
+
radius: borderRadius.BorderRadiusMd, // 6px
|
|
725
818
|
};
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
radius: borderRadius.BorderRadiusSm
|
|
734
|
-
// 6px
|
|
819
|
+
var utilityButton = {
|
|
820
|
+
padding: {
|
|
821
|
+
verPadding: 10,
|
|
822
|
+
horPadding: 12,
|
|
823
|
+
},
|
|
824
|
+
gap: sizing.Size2, // 8px
|
|
825
|
+
radius: borderRadius.BorderRadiusSm, // 6px
|
|
735
826
|
};
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
radius: borderRadius.BorderRadiusSm
|
|
744
|
-
// 6px
|
|
827
|
+
var iconButton = {
|
|
828
|
+
padding: {
|
|
829
|
+
verPadding: 10,
|
|
830
|
+
horPadding: 12,
|
|
831
|
+
},
|
|
832
|
+
gap: sizing.Size2, // 8px
|
|
833
|
+
radius: borderRadius.BorderRadiusSm, // 6px
|
|
745
834
|
};
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
suffixPrefixHorPadding: sizing.Size2
|
|
835
|
+
var input = {
|
|
836
|
+
suffixPrefixVerPadding: 11, // special case - see sizing in FIGMA
|
|
837
|
+
suffixPrefixHorPadding: sizing.Size2,
|
|
750
838
|
};
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
839
|
+
var white = "#FFFFFF";
|
|
840
|
+
var disabled = {
|
|
841
|
+
color: "#6C6C6C",
|
|
842
|
+
backgroundColor: "#EEEEEE",
|
|
843
|
+
borderColor: "#CBCBCB",
|
|
755
844
|
};
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
845
|
+
var error = {
|
|
846
|
+
color: "#CF3237",
|
|
847
|
+
backgroundColor: "#FFEBEE",
|
|
848
|
+
borderColor: "#FFEBEE",
|
|
760
849
|
};
|
|
761
|
-
|
|
762
|
-
|
|
850
|
+
var lightInteractive = {
|
|
851
|
+
interactive: {
|
|
852
|
+
primary: {
|
|
853
|
+
active: "#30606B",
|
|
854
|
+
hover: "#00282B",
|
|
855
|
+
pressed: "#214148",
|
|
856
|
+
onsurface: "#FFFFFF",
|
|
857
|
+
},
|
|
858
|
+
secondary: {
|
|
859
|
+
active: "#9A9A9A",
|
|
860
|
+
hover: "#222222",
|
|
861
|
+
pressed: "#101010",
|
|
862
|
+
onsurface: "#3E3E3E",
|
|
863
|
+
},
|
|
864
|
+
tertiary: {
|
|
865
|
+
active: "#FFCA7D",
|
|
866
|
+
hover: "#E7A13C",
|
|
867
|
+
pressed: "#B27330",
|
|
868
|
+
onsurface: "#222222",
|
|
869
|
+
},
|
|
870
|
+
destructive: {
|
|
871
|
+
active: "#CF3237",
|
|
872
|
+
hover: "#AA292D",
|
|
873
|
+
pressed: "#842023",
|
|
874
|
+
onsurface: "#FFFFFF",
|
|
875
|
+
},
|
|
876
|
+
link: {
|
|
877
|
+
active: "#30606B",
|
|
878
|
+
},
|
|
879
|
+
utility: {
|
|
880
|
+
active: "#FFF",
|
|
881
|
+
onsurface: "#222222",
|
|
882
|
+
border: "#CBCBCB",
|
|
883
|
+
hover: "#DEEFF3",
|
|
884
|
+
pressed: "#CBCBCB",
|
|
885
|
+
},
|
|
886
|
+
},
|
|
887
|
+
inputs: {
|
|
888
|
+
onsurface: {
|
|
889
|
+
active: "#384DF6",
|
|
890
|
+
focus: "#384DF6",
|
|
891
|
+
},
|
|
892
|
+
},
|
|
893
|
+
onsurface: {
|
|
894
|
+
"copy-disabled": "#6C6C6C",
|
|
895
|
+
copy: "#3E3E3E",
|
|
896
|
+
"copy-dark": "#222222",
|
|
897
|
+
},
|
|
898
|
+
surface: {
|
|
899
|
+
border: "#CBCBCB",
|
|
900
|
+
},
|
|
901
|
+
transparent: "transparent",
|
|
902
|
+
};
|
|
903
|
+
var darkInteractive = {
|
|
904
|
+
interactive: {
|
|
905
|
+
primary: {
|
|
906
|
+
active: "#30606B",
|
|
907
|
+
hover: "#00282B",
|
|
908
|
+
pressed: "#214148",
|
|
909
|
+
onsurface: "#FFFFFF",
|
|
910
|
+
},
|
|
911
|
+
secondary: {
|
|
912
|
+
active: "#9A9A9A",
|
|
913
|
+
hover: "#222222",
|
|
914
|
+
pressed: "#101010",
|
|
915
|
+
onsurface: "#3E3E3E",
|
|
916
|
+
},
|
|
917
|
+
tertiary: {
|
|
918
|
+
active: "#FFCA7D",
|
|
919
|
+
hover: "#E7A13C",
|
|
920
|
+
pressed: "#B27330",
|
|
921
|
+
onsurface: "#222222",
|
|
922
|
+
},
|
|
923
|
+
destructive: {
|
|
924
|
+
active: "#CF3237",
|
|
925
|
+
hover: "#AA292D",
|
|
926
|
+
pressed: "#842023",
|
|
927
|
+
onsurface: "#FFFFFF",
|
|
928
|
+
},
|
|
929
|
+
link: {
|
|
930
|
+
active: "#30606B",
|
|
931
|
+
},
|
|
932
|
+
utility: {
|
|
933
|
+
active: "#FFF",
|
|
934
|
+
onsurface: "#222222",
|
|
935
|
+
border: "#CBCBCB",
|
|
936
|
+
hover: "#DEEFF3",
|
|
937
|
+
pressed: "#CBCBCB",
|
|
938
|
+
},
|
|
939
|
+
},
|
|
940
|
+
inputs: {
|
|
941
|
+
onsurface: {
|
|
942
|
+
active: "#384DF6",
|
|
943
|
+
focus: "#384DF6",
|
|
944
|
+
},
|
|
945
|
+
},
|
|
946
|
+
onsurface: {
|
|
947
|
+
"copy-disabled": "#6C6C6C",
|
|
948
|
+
copy: "#3E3E3E",
|
|
949
|
+
"copy-dark": "#222222",
|
|
950
|
+
},
|
|
951
|
+
surface: {
|
|
952
|
+
border: "#CBCBCB",
|
|
953
|
+
},
|
|
954
|
+
transparent: "transparent",
|
|
955
|
+
};
|
|
956
|
+
var lightModeColors = {
|
|
763
957
|
primary: {
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
958
|
+
active: {
|
|
959
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
960
|
+
backgroundColor: lightInteractive.interactive.primary.active,
|
|
961
|
+
borderColor: lightInteractive.interactive.primary.active,
|
|
962
|
+
},
|
|
963
|
+
hover: {
|
|
964
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
965
|
+
backgroundColor: lightInteractive.interactive.primary.hover,
|
|
966
|
+
borderColor: lightInteractive.interactive.primary.hover,
|
|
967
|
+
},
|
|
968
|
+
pressed: {
|
|
969
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
970
|
+
backgroundColor: lightInteractive.interactive.primary.pressed,
|
|
971
|
+
borderColor: lightInteractive.interactive.primary.pressed,
|
|
972
|
+
},
|
|
973
|
+
focussed: {
|
|
974
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
975
|
+
backgroundColor: lightInteractive.interactive.primary.active,
|
|
976
|
+
borderColor: lightInteractive.interactive.primary.active,
|
|
977
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
978
|
+
},
|
|
979
|
+
error: __assign(__assign({}, error), { ringColor: lightInteractive.inputs.onsurface.focus }),
|
|
980
|
+
default: {
|
|
981
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
982
|
+
backgroundColor: lightInteractive.interactive.primary.active,
|
|
983
|
+
borderColor: lightInteractive.interactive.primary.active,
|
|
984
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
985
|
+
},
|
|
986
|
+
disabled: disabled,
|
|
768
987
|
},
|
|
769
988
|
secondary: {
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
989
|
+
active: {
|
|
990
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
991
|
+
backgroundColor: lightInteractive.transparent,
|
|
992
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
993
|
+
},
|
|
994
|
+
hover: {
|
|
995
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
996
|
+
backgroundColor: lightInteractive.interactive.secondary.hover,
|
|
997
|
+
borderColor: lightInteractive.interactive.secondary.hover,
|
|
998
|
+
},
|
|
999
|
+
pressed: {
|
|
1000
|
+
color: lightInteractive.interactive.primary.onsurface,
|
|
1001
|
+
backgroundColor: lightInteractive.interactive.secondary.pressed,
|
|
1002
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
1003
|
+
},
|
|
1004
|
+
focussed: {
|
|
1005
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
1006
|
+
backgroundColor: lightInteractive.transparent,
|
|
1007
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
1008
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1009
|
+
},
|
|
1010
|
+
error: __assign(__assign({}, error), { ringColor: lightInteractive.inputs.onsurface.focus }),
|
|
1011
|
+
default: {
|
|
1012
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
1013
|
+
backgroundColor: lightInteractive.transparent,
|
|
1014
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
1015
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1016
|
+
},
|
|
1017
|
+
disabled: disabled,
|
|
774
1018
|
},
|
|
775
1019
|
tertiary: {
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
1020
|
+
active: {
|
|
1021
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1022
|
+
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
1023
|
+
borderColor: lightInteractive.interactive.tertiary.active,
|
|
1024
|
+
},
|
|
1025
|
+
hover: {
|
|
1026
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1027
|
+
backgroundColor: lightInteractive.interactive.tertiary.hover,
|
|
1028
|
+
borderColor: lightInteractive.interactive.tertiary.hover,
|
|
1029
|
+
},
|
|
1030
|
+
pressed: {
|
|
1031
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1032
|
+
backgroundColor: lightInteractive.interactive.tertiary.pressed,
|
|
1033
|
+
borderColor: lightInteractive.interactive.tertiary.pressed,
|
|
1034
|
+
},
|
|
1035
|
+
focussed: {
|
|
1036
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1037
|
+
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
1038
|
+
borderColor: lightInteractive.interactive.tertiary.active,
|
|
1039
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1040
|
+
},
|
|
1041
|
+
error: __assign(__assign({}, error), { ringColor: lightInteractive.inputs.onsurface.focus }),
|
|
1042
|
+
default: {
|
|
1043
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1044
|
+
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
1045
|
+
borderColor: lightInteractive.interactive.tertiary.active,
|
|
1046
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1047
|
+
},
|
|
1048
|
+
disabled: disabled,
|
|
780
1049
|
},
|
|
781
1050
|
destructive: {
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
1051
|
+
active: {
|
|
1052
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
1053
|
+
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
1054
|
+
borderColor: lightInteractive.interactive.destructive.active,
|
|
1055
|
+
},
|
|
1056
|
+
hover: {
|
|
1057
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
1058
|
+
backgroundColor: lightInteractive.interactive.destructive.hover,
|
|
1059
|
+
borderColor: lightInteractive.interactive.destructive.hover,
|
|
1060
|
+
},
|
|
1061
|
+
pressed: {
|
|
1062
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
1063
|
+
backgroundColor: lightInteractive.interactive.destructive.pressed,
|
|
1064
|
+
borderColor: lightInteractive.interactive.destructive.pressed,
|
|
1065
|
+
},
|
|
1066
|
+
focussed: {
|
|
1067
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
1068
|
+
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
1069
|
+
borderColor: lightInteractive.interactive.destructive.active,
|
|
1070
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1071
|
+
},
|
|
1072
|
+
error: __assign(__assign({}, error), { ringColor: lightInteractive.inputs.onsurface.focus }),
|
|
1073
|
+
default: {
|
|
1074
|
+
color: lightInteractive.interactive.destructive.onsurface,
|
|
1075
|
+
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
1076
|
+
borderColor: lightInteractive.interactive.destructive.active,
|
|
1077
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1078
|
+
},
|
|
1079
|
+
disabled: disabled,
|
|
789
1080
|
},
|
|
790
1081
|
utility: {
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
1082
|
+
active: {
|
|
1083
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
1084
|
+
backgroundColor: "#FFF",
|
|
1085
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
1086
|
+
},
|
|
1087
|
+
hover: {
|
|
1088
|
+
color: lightInteractive.interactive.utility.onsurface,
|
|
1089
|
+
backgroundColor: lightInteractive.interactive.utility.hover,
|
|
1090
|
+
borderColor: lightInteractive.interactive.utility.border,
|
|
1091
|
+
},
|
|
1092
|
+
pressed: {
|
|
1093
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
1094
|
+
backgroundColor: lightInteractive.interactive.utility.pressed,
|
|
1095
|
+
borderColor: lightInteractive.interactive.utility.pressed,
|
|
1096
|
+
},
|
|
1097
|
+
focussed: {
|
|
1098
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
1099
|
+
backgroundColor: "#FFF",
|
|
1100
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
1101
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1102
|
+
},
|
|
1103
|
+
error: __assign(__assign({}, error), { ringColor: lightInteractive.inputs.onsurface.focus }),
|
|
1104
|
+
default: {
|
|
1105
|
+
color: lightInteractive.interactive.secondary.onsurface,
|
|
1106
|
+
backgroundColor: lightInteractive.transparent,
|
|
1107
|
+
borderColor: lightInteractive.interactive.secondary.active,
|
|
1108
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1109
|
+
},
|
|
1110
|
+
disabled: disabled,
|
|
1111
|
+
},
|
|
1112
|
+
icon: {
|
|
1113
|
+
active: {
|
|
1114
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1115
|
+
backgroundColor: "transparent",
|
|
1116
|
+
borderColor: "transparent",
|
|
1117
|
+
},
|
|
1118
|
+
hover: {
|
|
1119
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1120
|
+
backgroundColor: "#DEEFF3",
|
|
1121
|
+
borderColor: "transparent",
|
|
1122
|
+
},
|
|
1123
|
+
pressed: {
|
|
1124
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1125
|
+
backgroundColor: "#DEEFF3",
|
|
1126
|
+
borderColor: "transparent",
|
|
1127
|
+
},
|
|
1128
|
+
selected: {
|
|
1129
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1130
|
+
backgroundColor: "#DEEFF3",
|
|
1131
|
+
borderColor: "transparent",
|
|
1132
|
+
},
|
|
1133
|
+
focussed: {
|
|
1134
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1135
|
+
backgroundColor: "transparent",
|
|
1136
|
+
borderColor: "transparent",
|
|
1137
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1138
|
+
},
|
|
1139
|
+
error: __assign(__assign({}, error), { ringColor: lightInteractive.inputs.onsurface.focus }),
|
|
1140
|
+
default: {
|
|
1141
|
+
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1142
|
+
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
1143
|
+
borderColor: lightInteractive.interactive.tertiary.active,
|
|
1144
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1145
|
+
},
|
|
1146
|
+
disabled: disabled,
|
|
1147
|
+
},
|
|
1148
|
+
status: {
|
|
1149
|
+
error: {
|
|
1150
|
+
default: "#CF3237",
|
|
1151
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1152
|
+
onsurface: "#AA292D",
|
|
1153
|
+
surface: "#F9D4D5",
|
|
1154
|
+
"surface-hover": "#F3A9AB",
|
|
1155
|
+
},
|
|
1156
|
+
success: {
|
|
1157
|
+
default: "#32863E",
|
|
1158
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1159
|
+
onsurface: "#296E33",
|
|
1160
|
+
surface: "#D3EFD7",
|
|
1161
|
+
"surface-hover": "#A7DFAF",
|
|
1162
|
+
},
|
|
1163
|
+
warning: {
|
|
1164
|
+
default: ColorYellow500,
|
|
1165
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1166
|
+
onsurface: "#704819",
|
|
1167
|
+
surface: "#FFF2DF",
|
|
1168
|
+
"surface-hover": "#FFE5BE",
|
|
1169
|
+
},
|
|
1170
|
+
info: {
|
|
1171
|
+
default: "#384DF6",
|
|
1172
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1173
|
+
onsurface: "#2E3FCA",
|
|
1174
|
+
surface: "#D7DBFD",
|
|
1175
|
+
},
|
|
1176
|
+
generic: {
|
|
1177
|
+
default: "#9A9A9A",
|
|
1178
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1179
|
+
onsurface: "#3E3E3E",
|
|
1180
|
+
surface: "#F4F4F4",
|
|
1181
|
+
"surface-hover": "#F4F4F4",
|
|
1182
|
+
},
|
|
1183
|
+
hollow: {
|
|
1184
|
+
default: "#9A9A9A",
|
|
1185
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1186
|
+
onsurface: "#3E3E3E",
|
|
1187
|
+
surface: "#F4F4F4",
|
|
1188
|
+
"surface-hover": "#FFFFFF",
|
|
1189
|
+
},
|
|
1190
|
+
disabled: {
|
|
1191
|
+
default: "#6C6C6C",
|
|
1192
|
+
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1193
|
+
onsurface: "#EEEEEE",
|
|
1194
|
+
surface: "#EEEEEE",
|
|
1195
|
+
},
|
|
1196
|
+
},
|
|
1197
|
+
timebox: {
|
|
1198
|
+
evening: {
|
|
1199
|
+
default: "#9F539F",
|
|
1200
|
+
},
|
|
1201
|
+
},
|
|
1202
|
+
interactive: __assign({ primary: {
|
|
1203
|
+
active: "#30606B",
|
|
1204
|
+
hover: "#00282B",
|
|
1205
|
+
pressed: "#214148",
|
|
1206
|
+
onsurface: "#FFFFFF",
|
|
1207
|
+
}, secondary: {
|
|
1208
|
+
active: "#9A9A9A",
|
|
1209
|
+
hover: "#222222",
|
|
1210
|
+
pressed: "#101010",
|
|
1211
|
+
onsurface: "#3E3E3E",
|
|
1212
|
+
}, tertiary: {
|
|
1213
|
+
active: "#FFCA7D",
|
|
1214
|
+
hover: "#E7A13C",
|
|
1215
|
+
pressed: "#B27330",
|
|
1216
|
+
onsurface: "#222222",
|
|
1217
|
+
}, link: {
|
|
1218
|
+
active: ColorSky700,
|
|
1219
|
+
hover: ColorSky900,
|
|
1220
|
+
disabled: ColorGray100,
|
|
1221
|
+
current: "#384DF6",
|
|
1222
|
+
} }, lightInteractive.interactive),
|
|
1223
|
+
inputs: {
|
|
1224
|
+
surface: {
|
|
1225
|
+
active: ColorGrayWhite,
|
|
1226
|
+
border: ColorGray500,
|
|
1227
|
+
disabled: ColorGray100,
|
|
1228
|
+
checked: "#384DF6",
|
|
1229
|
+
"checked-hover": "#24319D",
|
|
1230
|
+
},
|
|
1231
|
+
onsurface: {
|
|
1232
|
+
active: "#222222",
|
|
1233
|
+
focus: "#384DF6",
|
|
1234
|
+
placeholder: "#6C6C6C",
|
|
1235
|
+
"icon-disabled": "#6C6C6C",
|
|
1236
|
+
},
|
|
1237
|
+
progress: {
|
|
1238
|
+
empty: ColorGray300,
|
|
1239
|
+
success: ColorGreen400,
|
|
1240
|
+
error: ColorRed500,
|
|
1241
|
+
info: ColorBlue400,
|
|
1242
|
+
},
|
|
1243
|
+
},
|
|
1244
|
+
surface: {
|
|
1245
|
+
border: "#CBCBCB",
|
|
1246
|
+
secondary: "#F4F4F4",
|
|
1247
|
+
tertiary: "#EEEEEE",
|
|
1248
|
+
"border-light": "#DFDFDF",
|
|
1249
|
+
},
|
|
1250
|
+
transparent: "transparent",
|
|
799
1251
|
onsurface: {
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
}
|
|
805
|
-
const darkInteractive = {
|
|
806
|
-
interactive: {
|
|
807
|
-
tertiary: {
|
|
808
|
-
active: "#FFCA7D",
|
|
809
|
-
hover: "#E7A13C",
|
|
810
|
-
pressed: "#B27330",
|
|
811
|
-
onsurface: "#222222"
|
|
812
|
-
}
|
|
813
|
-
}
|
|
1252
|
+
copy: "#3E3E3E",
|
|
1253
|
+
"copy-light": ColorGray700,
|
|
1254
|
+
"copy-dark": "#222222",
|
|
1255
|
+
"copy-disabled": "#6C6C6C",
|
|
1256
|
+
},
|
|
814
1257
|
};
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
},
|
|
822
|
-
hover: {
|
|
823
|
-
color: lightInteractive.interactive.primary.onsurface,
|
|
824
|
-
backgroundColor: lightInteractive.interactive.primary.hover,
|
|
825
|
-
borderColor: lightInteractive.interactive.primary.hover
|
|
826
|
-
},
|
|
827
|
-
pressed: {
|
|
828
|
-
color: lightInteractive.interactive.primary.onsurface,
|
|
829
|
-
backgroundColor: lightInteractive.interactive.primary.pressed,
|
|
830
|
-
borderColor: lightInteractive.interactive.primary.pressed
|
|
831
|
-
},
|
|
832
|
-
focussed: {
|
|
833
|
-
color: lightInteractive.interactive.primary.onsurface,
|
|
834
|
-
backgroundColor: lightInteractive.interactive.primary.active,
|
|
835
|
-
borderColor: lightInteractive.interactive.primary.active,
|
|
836
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
837
|
-
},
|
|
838
|
-
error: {
|
|
839
|
-
...error,
|
|
840
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
841
|
-
},
|
|
842
|
-
default: {
|
|
843
|
-
color: lightInteractive.interactive.primary.onsurface,
|
|
844
|
-
backgroundColor: lightInteractive.interactive.primary.active,
|
|
845
|
-
borderColor: lightInteractive.interactive.primary.active,
|
|
846
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
847
|
-
},
|
|
848
|
-
disabled
|
|
849
|
-
},
|
|
850
|
-
secondary: {
|
|
851
|
-
active: {
|
|
852
|
-
color: lightInteractive.interactive.secondary.onsurface,
|
|
853
|
-
backgroundColor: lightInteractive.transparent,
|
|
854
|
-
borderColor: lightInteractive.interactive.secondary.active
|
|
855
|
-
},
|
|
856
|
-
hover: {
|
|
857
|
-
color: lightInteractive.interactive.primary.onsurface,
|
|
858
|
-
backgroundColor: lightInteractive.interactive.secondary.hover,
|
|
859
|
-
borderColor: lightInteractive.interactive.secondary.hover
|
|
860
|
-
},
|
|
861
|
-
pressed: {
|
|
862
|
-
color: lightInteractive.interactive.primary.onsurface,
|
|
863
|
-
backgroundColor: lightInteractive.interactive.secondary.pressed,
|
|
864
|
-
borderColor: lightInteractive.interactive.secondary.active
|
|
865
|
-
},
|
|
866
|
-
focussed: {
|
|
867
|
-
color: lightInteractive.interactive.secondary.onsurface,
|
|
868
|
-
backgroundColor: lightInteractive.transparent,
|
|
869
|
-
borderColor: lightInteractive.interactive.secondary.active,
|
|
870
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
871
|
-
},
|
|
872
|
-
error: {
|
|
873
|
-
...error,
|
|
874
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
875
|
-
},
|
|
876
|
-
default: {
|
|
877
|
-
color: lightInteractive.interactive.secondary.onsurface,
|
|
878
|
-
backgroundColor: lightInteractive.transparent,
|
|
879
|
-
borderColor: lightInteractive.interactive.secondary.active,
|
|
880
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
881
|
-
},
|
|
882
|
-
disabled
|
|
883
|
-
},
|
|
884
|
-
tertiary: {
|
|
885
|
-
active: {
|
|
886
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
887
|
-
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
888
|
-
borderColor: lightInteractive.interactive.tertiary.active
|
|
889
|
-
},
|
|
890
|
-
hover: {
|
|
891
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
892
|
-
backgroundColor: lightInteractive.interactive.tertiary.hover,
|
|
893
|
-
borderColor: lightInteractive.interactive.tertiary.hover
|
|
894
|
-
},
|
|
895
|
-
pressed: {
|
|
896
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
897
|
-
backgroundColor: lightInteractive.interactive.tertiary.pressed,
|
|
898
|
-
borderColor: lightInteractive.interactive.tertiary.pressed
|
|
899
|
-
},
|
|
900
|
-
focussed: {
|
|
901
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
902
|
-
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
903
|
-
borderColor: lightInteractive.interactive.tertiary.active,
|
|
904
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
905
|
-
},
|
|
906
|
-
error: {
|
|
907
|
-
...error,
|
|
908
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
909
|
-
},
|
|
910
|
-
default: {
|
|
911
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
912
|
-
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
913
|
-
borderColor: lightInteractive.interactive.tertiary.active,
|
|
914
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
915
|
-
},
|
|
916
|
-
disabled
|
|
917
|
-
},
|
|
918
|
-
destructive: {
|
|
919
|
-
active: {
|
|
920
|
-
color: lightInteractive.interactive.destructive.onsurface,
|
|
921
|
-
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
922
|
-
borderColor: lightInteractive.interactive.destructive.active
|
|
923
|
-
},
|
|
924
|
-
hover: {
|
|
925
|
-
color: lightInteractive.interactive.destructive.onsurface,
|
|
926
|
-
backgroundColor: lightInteractive.interactive.destructive.hover,
|
|
927
|
-
borderColor: lightInteractive.interactive.destructive.hover
|
|
928
|
-
},
|
|
929
|
-
pressed: {
|
|
930
|
-
color: lightInteractive.interactive.destructive.onsurface,
|
|
931
|
-
backgroundColor: lightInteractive.interactive.destructive.pressed,
|
|
932
|
-
borderColor: lightInteractive.interactive.destructive.pressed
|
|
933
|
-
},
|
|
934
|
-
focussed: {
|
|
935
|
-
color: lightInteractive.interactive.destructive.onsurface,
|
|
936
|
-
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
937
|
-
borderColor: lightInteractive.interactive.destructive.active,
|
|
938
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
939
|
-
},
|
|
940
|
-
error: {
|
|
941
|
-
...error,
|
|
942
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
943
|
-
},
|
|
944
|
-
default: {
|
|
945
|
-
color: lightInteractive.interactive.destructive.onsurface,
|
|
946
|
-
backgroundColor: lightInteractive.interactive.destructive.active,
|
|
947
|
-
borderColor: lightInteractive.interactive.destructive.active,
|
|
948
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
949
|
-
},
|
|
950
|
-
disabled
|
|
951
|
-
},
|
|
952
|
-
utility: {
|
|
953
|
-
active: {
|
|
954
|
-
color: lightInteractive.interactive.secondary.onsurface,
|
|
955
|
-
backgroundColor: "#FFF",
|
|
956
|
-
borderColor: lightInteractive.interactive.secondary.active
|
|
957
|
-
},
|
|
958
|
-
hover: {
|
|
959
|
-
color: lightInteractive.interactive.utility.onsurface,
|
|
960
|
-
backgroundColor: lightInteractive.interactive.utility.hover,
|
|
961
|
-
borderColor: lightInteractive.interactive.utility.border
|
|
962
|
-
},
|
|
963
|
-
pressed: {
|
|
964
|
-
color: lightInteractive.interactive.secondary.onsurface,
|
|
965
|
-
backgroundColor: lightInteractive.interactive.utility.pressed,
|
|
966
|
-
borderColor: lightInteractive.interactive.utility.pressed
|
|
967
|
-
},
|
|
968
|
-
focussed: {
|
|
969
|
-
color: lightInteractive.interactive.secondary.onsurface,
|
|
970
|
-
backgroundColor: "#FFF",
|
|
971
|
-
borderColor: lightInteractive.interactive.secondary.active,
|
|
972
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
973
|
-
},
|
|
974
|
-
error: {
|
|
975
|
-
...error,
|
|
976
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
977
|
-
},
|
|
978
|
-
default: {
|
|
979
|
-
color: lightInteractive.interactive.secondary.onsurface,
|
|
980
|
-
backgroundColor: lightInteractive.transparent,
|
|
981
|
-
borderColor: lightInteractive.interactive.secondary.active,
|
|
982
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
983
|
-
},
|
|
984
|
-
disabled
|
|
985
|
-
},
|
|
986
|
-
icon: {
|
|
987
|
-
active: {
|
|
988
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
989
|
-
backgroundColor: "transparent",
|
|
990
|
-
borderColor: "transparent"
|
|
991
|
-
},
|
|
992
|
-
hover: {
|
|
993
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
994
|
-
backgroundColor: "#DEEFF3",
|
|
995
|
-
borderColor: "transparent"
|
|
996
|
-
},
|
|
997
|
-
pressed: {
|
|
998
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
999
|
-
backgroundColor: "#DEEFF3",
|
|
1000
|
-
borderColor: "transparent"
|
|
1001
|
-
},
|
|
1002
|
-
selected: {
|
|
1003
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1004
|
-
backgroundColor: "#DEEFF3",
|
|
1005
|
-
borderColor: "transparent"
|
|
1006
|
-
},
|
|
1007
|
-
focussed: {
|
|
1008
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1009
|
-
backgroundColor: "transparent",
|
|
1010
|
-
borderColor: "transparent",
|
|
1011
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
1012
|
-
},
|
|
1013
|
-
error: {
|
|
1014
|
-
...error,
|
|
1015
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
1016
|
-
},
|
|
1017
|
-
default: {
|
|
1018
|
-
color: lightInteractive.interactive.tertiary.onsurface,
|
|
1019
|
-
backgroundColor: lightInteractive.interactive.tertiary.active,
|
|
1020
|
-
borderColor: lightInteractive.interactive.tertiary.active,
|
|
1021
|
-
ringColor: lightInteractive.inputs.onsurface.focus
|
|
1022
|
-
},
|
|
1023
|
-
disabled
|
|
1024
|
-
},
|
|
1025
|
-
status: {
|
|
1026
|
-
error: {
|
|
1027
|
-
default: "#CF3237",
|
|
1028
|
-
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1029
|
-
onsurface: "#AA292D",
|
|
1030
|
-
surface: "#F9D4D5",
|
|
1031
|
-
"surface-hover": "#F3A9AB"
|
|
1032
|
-
},
|
|
1033
|
-
success: {
|
|
1034
|
-
default: "#32863E",
|
|
1035
|
-
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1036
|
-
onsurface: "#296E33",
|
|
1037
|
-
surface: "#D3EFD7",
|
|
1038
|
-
"surface-hover": "#A7DFAF"
|
|
1039
|
-
},
|
|
1040
|
-
warning: {
|
|
1041
|
-
default: ColorYellow500,
|
|
1042
|
-
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1043
|
-
onsurface: "#704819",
|
|
1044
|
-
surface: "#FFF2DF",
|
|
1045
|
-
"surface-hover": "#FFE5BE"
|
|
1046
|
-
},
|
|
1047
|
-
info: {
|
|
1048
|
-
default: "#384DF6",
|
|
1049
|
-
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1050
|
-
onsurface: "#2E3FCA",
|
|
1051
|
-
surface: "#D7DBFD"
|
|
1052
|
-
},
|
|
1053
|
-
generic: {
|
|
1054
|
-
default: "#9A9A9A",
|
|
1055
|
-
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1056
|
-
onsurface: "#3E3E3E",
|
|
1057
|
-
surface: "#F4F4F4",
|
|
1058
|
-
"surface-hover": "#F4F4F4"
|
|
1059
|
-
},
|
|
1060
|
-
hollow: {
|
|
1061
|
-
default: "#9A9A9A",
|
|
1062
|
-
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1063
|
-
onsurface: "#3E3E3E",
|
|
1064
|
-
surface: "#F4F4F4",
|
|
1065
|
-
"surface-hover": "#FFFFFF"
|
|
1066
|
-
},
|
|
1067
|
-
disabled: {
|
|
1068
|
-
default: "#6C6C6C",
|
|
1069
|
-
ringColor: lightInteractive.inputs.onsurface.focus,
|
|
1070
|
-
onsurface: "#EEEEEE",
|
|
1071
|
-
surface: "#EEEEEE"
|
|
1072
|
-
}
|
|
1073
|
-
},
|
|
1074
|
-
timebox: {
|
|
1075
|
-
evening: {
|
|
1076
|
-
default: "#9F539F"
|
|
1077
|
-
}
|
|
1078
|
-
},
|
|
1079
|
-
interactive: {
|
|
1258
|
+
// TODO: Add dark mode colors so the both light and dark mode colors are in sync and maintainable
|
|
1259
|
+
// There is no immediate need for dark mode colors, but we should add them in the future
|
|
1260
|
+
// since they are part of the design system and we have the dark colors in Figma
|
|
1261
|
+
// but no components nor layouts are actually expressed in dark mode colors
|
|
1262
|
+
var darkModeColors = lightModeColors;
|
|
1263
|
+
var darkModeColorsTODO = {
|
|
1080
1264
|
primary: {
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1265
|
+
active: {
|
|
1266
|
+
color: colors.gray.white,
|
|
1267
|
+
backgroundColor: "#1A3D44",
|
|
1268
|
+
borderColor: "#1A3D44",
|
|
1269
|
+
},
|
|
1270
|
+
hover: {
|
|
1271
|
+
color: colors.gray.white,
|
|
1272
|
+
backgroundColor: "#0D1F22",
|
|
1273
|
+
borderColor: "#0D1F22",
|
|
1274
|
+
},
|
|
1275
|
+
pressed: {
|
|
1276
|
+
color: colors.gray.white,
|
|
1277
|
+
backgroundColor: "#0D1F22",
|
|
1278
|
+
borderColor: "#0D1F22",
|
|
1279
|
+
},
|
|
1280
|
+
focussed: {
|
|
1281
|
+
color: colors.gray.white,
|
|
1282
|
+
backgroundColor: "#0D1F22",
|
|
1283
|
+
borderColor: "#0D1F22",
|
|
1284
|
+
ringColor: "#384DF6",
|
|
1285
|
+
},
|
|
1286
|
+
disabled: {
|
|
1287
|
+
color: colors.gray[600],
|
|
1288
|
+
backgroundColor: "#2C2C2C",
|
|
1289
|
+
borderColor: "#2C2C2C",
|
|
1290
|
+
},
|
|
1085
1291
|
},
|
|
1086
1292
|
secondary: {
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1293
|
+
active: {
|
|
1294
|
+
color: colors.gray.white,
|
|
1295
|
+
backgroundColor: "#4D4D4D",
|
|
1296
|
+
borderColor: "#4D4D4D",
|
|
1297
|
+
},
|
|
1298
|
+
hover: {
|
|
1299
|
+
color: colors.gray.white,
|
|
1300
|
+
backgroundColor: "#666666",
|
|
1301
|
+
borderColor: "#666666",
|
|
1302
|
+
},
|
|
1303
|
+
pressed: {
|
|
1304
|
+
color: colors.gray.white,
|
|
1305
|
+
backgroundColor: ColorSky800,
|
|
1306
|
+
borderColor: ColorSky800,
|
|
1307
|
+
},
|
|
1308
|
+
focussed: {
|
|
1309
|
+
color: colors.gray.white,
|
|
1310
|
+
backgroundColor: ColorSky800,
|
|
1311
|
+
borderColor: ColorSky800,
|
|
1312
|
+
ringColor: "#384DF6",
|
|
1313
|
+
},
|
|
1314
|
+
disabled: {
|
|
1315
|
+
color: colors.gray[600],
|
|
1316
|
+
backgroundColor: ColorGray800,
|
|
1317
|
+
borderColor: ColorGray800,
|
|
1318
|
+
},
|
|
1091
1319
|
},
|
|
1092
1320
|
tertiary: {
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1321
|
+
active: {
|
|
1322
|
+
color: colors.gray.white,
|
|
1323
|
+
backgroundColor: "#8B6B3C",
|
|
1324
|
+
borderColor: "#8B6B3C",
|
|
1325
|
+
},
|
|
1326
|
+
hover: {
|
|
1327
|
+
color: colors.gray.white,
|
|
1328
|
+
backgroundColor: "#735929",
|
|
1329
|
+
borderColor: "#735929",
|
|
1330
|
+
},
|
|
1331
|
+
pressed: {
|
|
1332
|
+
color: colors.gray.white,
|
|
1333
|
+
backgroundColor: ColorYellow800,
|
|
1334
|
+
borderColor: ColorYellow800,
|
|
1335
|
+
},
|
|
1336
|
+
focussed: {
|
|
1337
|
+
color: colors.gray.white,
|
|
1338
|
+
backgroundColor: ColorYellow800,
|
|
1339
|
+
borderColor: ColorYellow800,
|
|
1340
|
+
ringColor: "#384DF6",
|
|
1341
|
+
},
|
|
1342
|
+
disabled: {
|
|
1343
|
+
color: colors.gray[600],
|
|
1344
|
+
backgroundColor: ColorYellow900,
|
|
1345
|
+
borderColor: ColorYellow900,
|
|
1346
|
+
},
|
|
1113
1347
|
},
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
}
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1198
|
-
borderColor: darkInteractive.interactive.tertiary.active
|
|
1199
|
-
},
|
|
1200
|
-
hover: {
|
|
1201
|
-
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1202
|
-
backgroundColor: darkInteractive.interactive.tertiary.hover,
|
|
1203
|
-
borderColor: darkInteractive.interactive.tertiary.hover
|
|
1204
|
-
},
|
|
1205
|
-
pressed: {
|
|
1206
|
-
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1207
|
-
backgroundColor: darkInteractive.interactive.tertiary.pressed,
|
|
1208
|
-
borderColor: darkInteractive.interactive.tertiary.pressed
|
|
1209
|
-
},
|
|
1210
|
-
focussed: {
|
|
1211
|
-
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1212
|
-
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1213
|
-
borderColor: darkInteractive.interactive.tertiary.active
|
|
1214
|
-
},
|
|
1215
|
-
default: {
|
|
1216
|
-
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1217
|
-
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1218
|
-
borderColor: darkInteractive.interactive.tertiary.active
|
|
1219
|
-
}
|
|
1220
|
-
},
|
|
1221
|
-
icon: {
|
|
1222
|
-
active: {
|
|
1223
|
-
color: darkInteractive.interactive.tertiary.onsurface
|
|
1224
|
-
},
|
|
1225
|
-
hover: {
|
|
1226
|
-
color: darkInteractive.interactive.tertiary.onsurface
|
|
1227
|
-
},
|
|
1228
|
-
pressed: {
|
|
1229
|
-
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1230
|
-
backgroundColor: darkInteractive.interactive.tertiary.pressed,
|
|
1231
|
-
borderColor: darkInteractive.interactive.tertiary.pressed
|
|
1232
|
-
},
|
|
1233
|
-
focussed: {
|
|
1234
|
-
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1235
|
-
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1236
|
-
borderColor: darkInteractive.interactive.tertiary.active
|
|
1237
|
-
},
|
|
1238
|
-
default: {
|
|
1239
|
-
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1240
|
-
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1241
|
-
borderColor: darkInteractive.interactive.tertiary.active
|
|
1242
|
-
}
|
|
1243
|
-
}
|
|
1244
|
-
});
|
|
1245
|
-
const shadows = {
|
|
1246
|
-
general: {
|
|
1247
|
-
"1": "0px 4px 16px 0px #00000026",
|
|
1248
|
-
"2": "0px 8px 24px -4px #00000026",
|
|
1249
|
-
"3": "0px 2px 3px -1px #00000026",
|
|
1250
|
-
"4": "4px 0px 7px -3px #0000001F"
|
|
1251
|
-
},
|
|
1252
|
-
actions: {
|
|
1253
|
-
"1": "0px 2px 2px -1px #00000033",
|
|
1254
|
-
"2": "0px 1px 2px 0px #00000026"
|
|
1255
|
-
},
|
|
1256
|
-
inputs: {
|
|
1257
|
-
"1": "0px 1px 2px 0px #0000001F"
|
|
1258
|
-
}
|
|
1259
|
-
};
|
|
1260
|
-
const motion = {
|
|
1261
|
-
instant: 0,
|
|
1262
|
-
veryfast: 0.15,
|
|
1263
|
-
fast: 0.33,
|
|
1264
|
-
medium: 0.5,
|
|
1265
|
-
slow: 1,
|
|
1266
|
-
veryslow: 2
|
|
1348
|
+
utility: {
|
|
1349
|
+
active: {
|
|
1350
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1351
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1352
|
+
borderColor: darkInteractive.interactive.tertiary.active,
|
|
1353
|
+
},
|
|
1354
|
+
hover: {
|
|
1355
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1356
|
+
backgroundColor: darkInteractive.interactive.tertiary.hover,
|
|
1357
|
+
borderColor: darkInteractive.interactive.tertiary.hover,
|
|
1358
|
+
},
|
|
1359
|
+
pressed: {
|
|
1360
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1361
|
+
backgroundColor: darkInteractive.interactive.tertiary.pressed,
|
|
1362
|
+
borderColor: darkInteractive.interactive.tertiary.pressed,
|
|
1363
|
+
},
|
|
1364
|
+
focussed: {
|
|
1365
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1366
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1367
|
+
borderColor: darkInteractive.interactive.tertiary.active,
|
|
1368
|
+
ringColor: darkInteractive.inputs.onsurface.focus,
|
|
1369
|
+
},
|
|
1370
|
+
error: __assign(__assign({}, error), { ringColor: darkInteractive.inputs.onsurface.focus }),
|
|
1371
|
+
default: {
|
|
1372
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1373
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1374
|
+
borderColor: darkInteractive.interactive.tertiary.active,
|
|
1375
|
+
ringColor: darkInteractive.inputs.onsurface.focus,
|
|
1376
|
+
},
|
|
1377
|
+
disabled: disabled,
|
|
1378
|
+
},
|
|
1379
|
+
icon: {
|
|
1380
|
+
active: {
|
|
1381
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1382
|
+
backgroundColor: "transparent",
|
|
1383
|
+
borderColor: "transparent",
|
|
1384
|
+
},
|
|
1385
|
+
hover: {
|
|
1386
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1387
|
+
backgroundColor: "transparent",
|
|
1388
|
+
borderColor: "transparent",
|
|
1389
|
+
},
|
|
1390
|
+
pressed: {
|
|
1391
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1392
|
+
backgroundColor: darkInteractive.interactive.tertiary.pressed,
|
|
1393
|
+
borderColor: darkInteractive.interactive.tertiary.pressed,
|
|
1394
|
+
},
|
|
1395
|
+
focussed: {
|
|
1396
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1397
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1398
|
+
borderColor: darkInteractive.interactive.tertiary.active,
|
|
1399
|
+
ringColor: darkInteractive.inputs.onsurface.focus,
|
|
1400
|
+
},
|
|
1401
|
+
error: __assign(__assign({}, error), { ringColor: darkInteractive.inputs.onsurface.focus }),
|
|
1402
|
+
default: {
|
|
1403
|
+
color: darkInteractive.interactive.tertiary.onsurface,
|
|
1404
|
+
backgroundColor: darkInteractive.interactive.tertiary.active,
|
|
1405
|
+
borderColor: darkInteractive.interactive.tertiary.active,
|
|
1406
|
+
ringColor: darkInteractive.inputs.onsurface.focus,
|
|
1407
|
+
},
|
|
1408
|
+
disabled: disabled,
|
|
1409
|
+
},
|
|
1410
|
+
interactive: __assign({ primary: {
|
|
1411
|
+
active: "#30606B",
|
|
1412
|
+
hover: "#00282B",
|
|
1413
|
+
pressed: "#214148",
|
|
1414
|
+
onsurface: "#FFFFFF",
|
|
1415
|
+
}, secondary: {
|
|
1416
|
+
active: "#9A9A9A",
|
|
1417
|
+
hover: "#222222",
|
|
1418
|
+
pressed: "#101010",
|
|
1419
|
+
onsurface: "#3E3E3E",
|
|
1420
|
+
}, tertiary: {
|
|
1421
|
+
active: "#FFCA7D",
|
|
1422
|
+
hover: "#E7A13C",
|
|
1423
|
+
pressed: "#B27330",
|
|
1424
|
+
onsurface: "#222222",
|
|
1425
|
+
}, link: {
|
|
1426
|
+
active: ColorSky300,
|
|
1427
|
+
hover: ColorSky400,
|
|
1428
|
+
disabled: ColorGray100,
|
|
1429
|
+
current: "#384DF6",
|
|
1430
|
+
} }, darkInteractive.interactive),
|
|
1267
1431
|
};
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
"left-padding": 8,
|
|
1272
|
-
radius: 50
|
|
1432
|
+
var colorModes = {
|
|
1433
|
+
light: lightModeColors,
|
|
1434
|
+
dark: darkModeColors,
|
|
1273
1435
|
};
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1436
|
+
var shadows = {
|
|
1437
|
+
general: {
|
|
1438
|
+
"1": "0px 4px 16px 0px #00000026",
|
|
1439
|
+
"2": "0px 8px 24px -4px #00000026",
|
|
1440
|
+
"3": "0px 2px 3px -1px #00000026",
|
|
1441
|
+
"4": "4px 0px 7px -3px #0000001F",
|
|
1442
|
+
},
|
|
1443
|
+
actions: {
|
|
1444
|
+
"1": "0px 2px 2px -1px #00000033",
|
|
1445
|
+
"2": "0px 1px 2px 0px #00000026",
|
|
1446
|
+
},
|
|
1447
|
+
inputs: {
|
|
1448
|
+
"1": "0px 1px 2px 0px #0000001F",
|
|
1449
|
+
},
|
|
1279
1450
|
};
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1451
|
+
var motion = {
|
|
1452
|
+
instant: 0,
|
|
1453
|
+
veryfast: 0.15,
|
|
1454
|
+
fast: 0.33,
|
|
1455
|
+
medium: 0.5,
|
|
1456
|
+
slow: 1,
|
|
1457
|
+
veryslow: 2,
|
|
1284
1458
|
};
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
disabled: ColorGray400,
|
|
1291
|
-
selected: ColorSky800,
|
|
1292
|
-
border: "#E0E0E0",
|
|
1293
|
-
ring: "#E0E0E0"
|
|
1459
|
+
var badge = {
|
|
1460
|
+
"ver-padding": 4,
|
|
1461
|
+
"right-padding": 8,
|
|
1462
|
+
"left-padding": 8,
|
|
1463
|
+
radius: 50,
|
|
1294
1464
|
};
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
row,
|
|
1301
|
-
badge,
|
|
1302
|
-
popover,
|
|
1303
|
-
tableCell
|
|
1465
|
+
var popover = {
|
|
1466
|
+
"ver-padding": sizing.Size1,
|
|
1467
|
+
"hor-padding": sizing.Size2,
|
|
1468
|
+
radius: borderRadius.BorderRadiusMd,
|
|
1469
|
+
gap: sizing.Size1,
|
|
1304
1470
|
};
|
|
1305
|
-
|
|
1306
|
-
|
|
1471
|
+
var row = {
|
|
1472
|
+
"ver-padding": sizing.Size5,
|
|
1473
|
+
"hor-padding": sizing.Size6,
|
|
1474
|
+
gap: sizing.Size2,
|
|
1307
1475
|
};
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
getStatusColor
|
|
1476
|
+
var tableCell = {
|
|
1477
|
+
surface: ColorGrayWhite,
|
|
1478
|
+
hover: ColorGray100,
|
|
1479
|
+
pressed: ColorGray200,
|
|
1480
|
+
focussed: ColorGray300,
|
|
1481
|
+
disabled: ColorGray400,
|
|
1482
|
+
selected: ColorSky800,
|
|
1483
|
+
border: "#E0E0E0",
|
|
1484
|
+
ring: "#E0E0E0",
|
|
1318
1485
|
};
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1486
|
+
var components = {
|
|
1487
|
+
button: button,
|
|
1488
|
+
utilityButton: utilityButton,
|
|
1489
|
+
iconButton: iconButton,
|
|
1490
|
+
input: input,
|
|
1491
|
+
row: row,
|
|
1492
|
+
badge: badge,
|
|
1493
|
+
popover: popover,
|
|
1494
|
+
tableCell: tableCell,
|
|
1323
1495
|
};
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
mode: "dark"
|
|
1496
|
+
// we can define convenience functions here to reduce the complexity of the theme object
|
|
1497
|
+
var getStatusColor = function (colors, status) {
|
|
1498
|
+
return colors.status[status].default;
|
|
1328
1499
|
};
|
|
1329
|
-
export {
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1500
|
+
export var baseTokens = {
|
|
1501
|
+
breakpoints: breakpoints,
|
|
1502
|
+
sizing: sizing,
|
|
1503
|
+
borderRadius: borderRadius,
|
|
1504
|
+
typography: typography,
|
|
1505
|
+
allColors: colors,
|
|
1506
|
+
components: components,
|
|
1507
|
+
motion: motion,
|
|
1508
|
+
shadows: shadows,
|
|
1509
|
+
getStatusColor: getStatusColor,
|
|
1336
1510
|
};
|
|
1511
|
+
export var lightTheme = __assign(__assign({}, baseTokens), { colors: lightModeColors, mode: "light" });
|
|
1512
|
+
export var darkTheme = __assign(__assign({}, baseTokens), { colors: darkModeColors, mode: "dark" });
|