@gobolt/genesis 0.3.20 → 0.3.21

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.
Files changed (3174) hide show
  1. package/dist/components/Badge/Badge.js +49 -92
  2. package/dist/components/Badge/index.d.ts +2 -2
  3. package/dist/components/Badge/index.js +1 -0
  4. package/dist/components/Badge/styles.d.ts +3 -3
  5. package/dist/components/Badge/styles.js +18 -57
  6. package/dist/components/Button/Button.d.ts +3 -3
  7. package/dist/components/Button/Button.js +32 -32
  8. package/dist/components/Button/Button.tsx +59 -0
  9. package/dist/components/Button/IconButton.d.ts +1 -1
  10. package/dist/components/Button/IconButton.js +30 -28
  11. package/dist/components/Button/__stories__/Button.stories.d.ts +2 -2
  12. package/dist/components/Button/__stories__/Button.stories.js +154 -0
  13. package/dist/components/Button/__stories__/IconButton.stories.d.ts +2 -2
  14. package/dist/components/Button/__stories__/IconButton.stories.js +133 -0
  15. package/dist/components/Button/__stories__/UtilityButton.stories.d.ts +2 -2
  16. package/dist/components/Button/__stories__/UtilityButton.stories.js +71 -0
  17. package/dist/components/Button/__tests__/Button.test.js +19 -0
  18. package/dist/components/Button/icon-button-styles.d.ts +2 -2
  19. package/dist/components/Button/icon-button-styles.js +20 -74
  20. package/dist/components/Button/index.d.ts +4 -4
  21. package/dist/components/Button/index.js +2 -0
  22. package/dist/components/Button/styles.d.ts +7 -7
  23. package/dist/components/Button/styles.js +55 -121
  24. package/dist/components/Button/{styles.cjs → styles.ts} +69 -18
  25. package/dist/components/Input/Input.d.ts +4 -4
  26. package/dist/components/Input/Input.js +53 -53
  27. package/dist/components/Input/index.d.ts +2 -2
  28. package/dist/components/Input/index.js +1 -0
  29. package/dist/components/Input/styles.d.ts +12 -11
  30. package/dist/components/Input/styles.js +71 -183
  31. package/dist/components/Select/Select.d.ts +4 -4
  32. package/dist/components/Select/Select.js +193 -213
  33. package/dist/components/Select/SelectTrigger.d.ts +3 -3
  34. package/dist/components/Select/SelectTrigger.js +86 -122
  35. package/dist/components/Select/index.d.ts +2 -2
  36. package/dist/components/Select/index.js +1 -0
  37. package/dist/components/Table/Table.d.ts +4 -3
  38. package/dist/components/Table/Table.js +32 -45
  39. package/dist/components/Table/Table.tsx +112 -0
  40. package/dist/components/Table/TableControls/CustomPagination.d.ts +2 -2
  41. package/dist/components/Table/TableControls/CustomPagination.js +161 -308
  42. package/dist/components/Table/TableControls/PaginationNumber.d.ts +1 -1
  43. package/dist/components/Table/TableControls/PaginationNumber.js +44 -41
  44. package/dist/components/Table/TableControls/PrimaryTableControlsRow.d.ts +1 -1
  45. package/dist/components/Table/TableControls/PrimaryTableControlsRow.js +72 -157
  46. package/dist/components/Table/TableControls/SecondaryTableControlsRow.d.ts +1 -1
  47. package/dist/components/Table/TableControls/SecondaryTableControlsRow.js +61 -77
  48. package/dist/components/Table/TableControls/TableControls.d.ts +3 -3
  49. package/dist/components/Table/TableControls/TableControls.js +13 -38
  50. package/dist/components/Table/TableControls/TableControls.tsx +51 -0
  51. package/dist/components/Table/TableControls/__stories__/CustomPaginationStandalone.stories.d.ts +2 -2
  52. package/dist/components/Table/TableControls/__stories__/CustomPaginationStandalone.stories.js +58 -0
  53. package/dist/components/Table/TableControls/__stories__/PaginationNumber.stories.d.ts +2 -2
  54. package/dist/components/Table/TableControls/__stories__/PaginationNumber.stories.js +37 -0
  55. package/dist/components/Table/TableControls/__stories__/TableControls.stories.d.ts +2 -2
  56. package/dist/components/Table/TableControls/__stories__/TableControls.stories.js +106 -0
  57. package/dist/components/Table/TableControls/__tests__/CustomPagination.test.js +82 -0
  58. package/dist/components/Table/TableControls/__tests__/TableControls.test.js +74 -0
  59. package/dist/components/Table/TableControls/index.d.ts +2 -2
  60. package/dist/components/Table/TableControls/index.js +1 -0
  61. package/dist/components/Table/TableControls/styles.d.ts +2 -2
  62. package/dist/components/Table/TableControls/styles.js +16 -0
  63. package/dist/components/Table/TablePagination.d.ts +2 -2
  64. package/dist/components/Table/TablePagination.js +26 -50
  65. package/dist/components/Table/__mocks__/table-mocks.d.ts +1 -1
  66. package/dist/components/Table/__mocks__/table-mocks.js +297 -290
  67. package/dist/components/Table/__stories__/GenesisTable.stories.d.ts +1 -1
  68. package/dist/components/Table/__stories__/GenesisTable.stories.js +23 -0
  69. package/dist/components/Table/__stories__/Table.stories.d.ts +2 -2
  70. package/dist/components/Table/__stories__/Table.stories.js +188 -0
  71. package/dist/components/Table/__tests__/table.test.js +47 -0
  72. package/dist/components/Table/index.d.ts +6 -6
  73. package/dist/components/Table/index.js +3 -0
  74. package/dist/components/Table/styles.d.ts +16 -16
  75. package/dist/components/Table/styles.js +18 -61
  76. package/dist/components/Table/useTable.d.ts +5 -2
  77. package/dist/components/Table/useTable.js +232 -75
  78. package/dist/components/Table/useTable.ts +194 -0
  79. package/dist/components/TableWithControls/TableWithControls.d.ts +2 -2
  80. package/dist/components/TableWithControls/TableWithControls.js +20 -41
  81. package/dist/components/TableWithControls/TableWithControls.tsx +54 -0
  82. package/dist/components/TableWithControls/__stories__/TableWithControls.stories.d.ts +2 -2
  83. package/dist/components/TableWithControls/__stories__/TableWithControls.stories.js +178 -0
  84. package/dist/components/TableWithControls/__stories__/TableWithControlsStory.js +55 -0
  85. package/dist/components/TableWithControls/__tests__/TableWithControls.test.js +41 -0
  86. package/dist/components/TableWithControls/index.d.ts +3 -3
  87. package/dist/components/TableWithControls/index.js +2 -0
  88. package/dist/components/TableWithControls/useTableWithControls.d.ts +5 -4
  89. package/dist/components/TableWithControls/useTableWithControls.js +111 -148
  90. package/dist/components/TableWithControls/{useTableWithControls.cjs → useTableWithControls.tsx} +67 -59
  91. package/dist/components/Tooltip/Tooltip.js +8 -24
  92. package/dist/components/Tooltip/index.d.ts +2 -2
  93. package/dist/components/Tooltip/index.js +1 -0
  94. package/dist/components/Tooltip/styles.d.ts +8 -8
  95. package/dist/components/Tooltip/styles.js +16 -29
  96. package/dist/components/Typography/Typography.d.ts +2 -2
  97. package/dist/components/Typography/Typography.js +37 -70
  98. package/dist/components/Typography/index.d.ts +2 -2
  99. package/dist/components/Typography/index.js +1 -0
  100. package/dist/components/Typography/styles.d.ts +11 -11
  101. package/dist/components/Typography/styles.js +33 -103
  102. package/dist/components/UtilityButton/UtilityButton.d.ts +1 -1
  103. package/dist/components/UtilityButton/UtilityButton.js +30 -28
  104. package/dist/components/UtilityButton/UtilityButton.tsx +36 -0
  105. package/dist/components/UtilityButton/index.d.ts +2 -2
  106. package/dist/components/UtilityButton/index.js +1 -0
  107. package/dist/components/index.d.ts +7 -74
  108. package/dist/components/index.ts +7 -0
  109. package/dist/components/shared/DropdownChevron.js +15 -24
  110. package/dist/constants/index.js +81 -91
  111. package/dist/constants/{index.cjs → index.ts} +25 -26
  112. package/dist/index.d.ts +10 -6
  113. package/dist/index.ts +10 -0
  114. package/dist/interface/appointment.d.ts +2 -2
  115. package/dist/interface/appointment.js +23 -0
  116. package/dist/styles/design-tokens/variables.js +706 -395
  117. package/dist/styles/theme/genesis-theme.d.ts +1 -1
  118. package/dist/styles/theme/genesis-theme.js +1469 -1293
  119. package/dist/styles/theme/genesis-theme.types.js +6 -0
  120. package/dist/styles/theme/genesis-theme.types.ts +297 -0
  121. package/dist/styles/theme/index.d.ts +2 -2
  122. package/dist/styles/theme/index.js +1 -0
  123. package/dist/test/setup.d.ts +5 -2
  124. package/dist/test/setup.js +53 -0
  125. package/dist/test/setup.types.d.ts +1 -0
  126. package/dist/test/setup.types.js +1 -0
  127. package/dist/utils/icon-util.d.ts +2 -2
  128. package/dist/utils/icon-util.js +112 -99
  129. package/dist/utils/styled.d.ts +1 -1
  130. package/dist/utils/styled.js +44 -0
  131. package/dist/utils/styled.ts +52 -0
  132. package/package.json +4 -3
  133. package/dist/_virtual/_commonjsHelpers.cjs +0 -5
  134. package/dist/_virtual/_commonjsHelpers.js +0 -6
  135. package/dist/_virtual/advancedFormat.cjs +0 -6
  136. package/dist/_virtual/advancedFormat.js +0 -7
  137. package/dist/_virtual/advancedFormat2.cjs +0 -3
  138. package/dist/_virtual/advancedFormat2.js +0 -4
  139. package/dist/_virtual/customParseFormat.cjs +0 -6
  140. package/dist/_virtual/customParseFormat.js +0 -7
  141. package/dist/_virtual/customParseFormat2.cjs +0 -3
  142. package/dist/_virtual/customParseFormat2.js +0 -4
  143. package/dist/_virtual/dayjs.min.cjs +0 -6
  144. package/dist/_virtual/dayjs.min.js +0 -7
  145. package/dist/_virtual/dayjs.min2.cjs +0 -3
  146. package/dist/_virtual/dayjs.min2.js +0 -4
  147. package/dist/_virtual/index.cjs +0 -6
  148. package/dist/_virtual/index.js +0 -7
  149. package/dist/_virtual/index2.cjs +0 -3
  150. package/dist/_virtual/index2.js +0 -4
  151. package/dist/_virtual/index3.cjs +0 -4
  152. package/dist/_virtual/index3.js +0 -5
  153. package/dist/_virtual/index4.cjs +0 -3
  154. package/dist/_virtual/index4.js +0 -4
  155. package/dist/_virtual/index5.cjs +0 -6
  156. package/dist/_virtual/index5.js +0 -7
  157. package/dist/_virtual/index6.cjs +0 -6
  158. package/dist/_virtual/index6.js +0 -7
  159. package/dist/_virtual/index7.cjs +0 -6
  160. package/dist/_virtual/index7.js +0 -7
  161. package/dist/_virtual/index8.cjs +0 -3
  162. package/dist/_virtual/index8.js +0 -4
  163. package/dist/_virtual/localeData.cjs +0 -6
  164. package/dist/_virtual/localeData.js +0 -7
  165. package/dist/_virtual/localeData2.cjs +0 -3
  166. package/dist/_virtual/localeData2.js +0 -4
  167. package/dist/_virtual/react-is.development.cjs +0 -3
  168. package/dist/_virtual/react-is.development.js +0 -4
  169. package/dist/_virtual/react-is.production.min.cjs +0 -3
  170. package/dist/_virtual/react-is.production.min.js +0 -4
  171. package/dist/_virtual/utilities.cjs +0 -3
  172. package/dist/_virtual/utilities.js +0 -4
  173. package/dist/_virtual/weekOfYear.cjs +0 -6
  174. package/dist/_virtual/weekOfYear.js +0 -7
  175. package/dist/_virtual/weekOfYear2.cjs +0 -3
  176. package/dist/_virtual/weekOfYear2.js +0 -4
  177. package/dist/_virtual/weekYear.cjs +0 -6
  178. package/dist/_virtual/weekYear.js +0 -7
  179. package/dist/_virtual/weekYear2.cjs +0 -3
  180. package/dist/_virtual/weekYear2.js +0 -4
  181. package/dist/_virtual/weekday.cjs +0 -6
  182. package/dist/_virtual/weekday.js +0 -7
  183. package/dist/_virtual/weekday2.cjs +0 -3
  184. package/dist/_virtual/weekday2.js +0 -4
  185. package/dist/bundle.css +0 -1205
  186. package/dist/components/Avatar/Avatar.cjs +0 -75
  187. package/dist/components/Avatar/Avatar.d.ts +0 -16
  188. package/dist/components/Avatar/Avatar.js +0 -76
  189. package/dist/components/Avatar/__stories__/Avatar.stories.d.ts +0 -9
  190. package/dist/components/Avatar/index.d.ts +0 -2
  191. package/dist/components/Avatar/styles.cjs +0 -11
  192. package/dist/components/Avatar/styles.d.ts +0 -17
  193. package/dist/components/Avatar/styles.js +0 -12
  194. package/dist/components/Badge/Badge.cjs +0 -93
  195. package/dist/components/Badge/__stories__/Badge.stories.d.ts +0 -17
  196. package/dist/components/Badge/styles.cjs +0 -59
  197. package/dist/components/Breadcrumb/Breadcrumb.cjs +0 -9
  198. package/dist/components/Breadcrumb/Breadcrumb.d.ts +0 -7
  199. package/dist/components/Breadcrumb/Breadcrumb.js +0 -10
  200. package/dist/components/Breadcrumb/Breadcrumb.types.d.ts +0 -23
  201. package/dist/components/Breadcrumb/__stories__/Breadcrumb.stories.d.ts +0 -9
  202. package/dist/components/Breadcrumb/__tests__/Breadcrumb.test.d.ts +0 -1
  203. package/dist/components/Breadcrumb/index.d.ts +0 -4
  204. package/dist/components/Breadcrumb/styles.cjs +0 -69
  205. package/dist/components/Breadcrumb/styles.d.ts +0 -26
  206. package/dist/components/Breadcrumb/styles.js +0 -69
  207. package/dist/components/Button/Button.cjs +0 -35
  208. package/dist/components/Button/IconButton.cjs +0 -29
  209. package/dist/components/Button/icon-button-styles.cjs +0 -76
  210. package/dist/components/Card/Card.cjs +0 -17
  211. package/dist/components/Card/Card.d.ts +0 -9
  212. package/dist/components/Card/Card.js +0 -18
  213. package/dist/components/Card/__stories__/Card.stories.d.ts +0 -7
  214. package/dist/components/Card/__tests__/Card.test.d.ts +0 -1
  215. package/dist/components/Card/index.d.ts +0 -2
  216. package/dist/components/Card/styles.cjs +0 -14
  217. package/dist/components/Card/styles.d.ts +0 -15
  218. package/dist/components/Card/styles.js +0 -15
  219. package/dist/components/Chat/Chat.cjs +0 -245
  220. package/dist/components/Chat/Chat.d.ts +0 -18
  221. package/dist/components/Chat/Chat.js +0 -246
  222. package/dist/components/Chat/Message.cjs +0 -96
  223. package/dist/components/Chat/Message.d.ts +0 -8
  224. package/dist/components/Chat/Message.js +0 -97
  225. package/dist/components/Chat/__stories__/Chat.stories.d.ts +0 -19
  226. package/dist/components/Chat/index.d.ts +0 -2
  227. package/dist/components/Checkbox/Checkbox.cjs +0 -28
  228. package/dist/components/Checkbox/Checkbox.d.ts +0 -9
  229. package/dist/components/Checkbox/Checkbox.js +0 -29
  230. package/dist/components/Checkbox/__stories__/Checkbox.stories.d.ts +0 -7
  231. package/dist/components/Checkbox/__tests__/Checkbox.test.d.ts +0 -1
  232. package/dist/components/Checkbox/index.d.ts +0 -2
  233. package/dist/components/Checkbox/styles.cjs +0 -9
  234. package/dist/components/Checkbox/styles.d.ts +0 -15
  235. package/dist/components/Checkbox/styles.js +0 -10
  236. package/dist/components/Dashboard/Dashboard.d.ts +0 -5
  237. package/dist/components/Dashboard/__mocks__/dashboard-data.d.ts +0 -13
  238. package/dist/components/Dashboard/__stories__/Dashboard.stories.d.ts +0 -6
  239. package/dist/components/Dashboard/__stories__/DashboardLayoutContent.d.ts +0 -2
  240. package/dist/components/Dashboard/__stories__/DashboardLayoutHeader.d.ts +0 -2
  241. package/dist/components/Dashboard/__stories__/DashboardLayoutStory.d.ts +0 -12
  242. package/dist/components/Dashboard/__stories__/charts/LineChart.d.ts +0 -12
  243. package/dist/components/Dashboard/__tests__/Dashboard.test.d.ts +0 -1
  244. package/dist/components/Dashboard/index.d.ts +0 -2
  245. package/dist/components/Dashboard/styles.d.ts +0 -13
  246. package/dist/components/DatePicker/DatePicker.cjs +0 -18
  247. package/dist/components/DatePicker/DatePicker.d.ts +0 -4
  248. package/dist/components/DatePicker/DatePicker.js +0 -19
  249. package/dist/components/DatePicker/__stories__/DatePicker.stories.d.ts +0 -9
  250. package/dist/components/DatePicker/__tests__/DatePicker.test.d.ts +0 -1
  251. package/dist/components/DatePicker/index.d.ts +0 -2
  252. package/dist/components/DateRangePicker/DateRangePicker.cjs +0 -20
  253. package/dist/components/DateRangePicker/DateRangePicker.d.ts +0 -4
  254. package/dist/components/DateRangePicker/DateRangePicker.js +0 -21
  255. package/dist/components/DateRangePicker/__stories__/DateRangePicker.stories.d.ts +0 -10
  256. package/dist/components/DateRangePicker/__tests__/DateRangePicker.test.d.ts +0 -1
  257. package/dist/components/DateRangePicker/index.d.ts +0 -2
  258. package/dist/components/ErrorBoundary/ErrorBoundary.cjs +0 -71
  259. package/dist/components/ErrorBoundary/ErrorBoundary.d.ts +0 -19
  260. package/dist/components/ErrorBoundary/ErrorBoundary.js +0 -53
  261. package/dist/components/ErrorBoundary/__stories__/ErrorBoundary.stories.d.ts +0 -7
  262. package/dist/components/ErrorBoundary/__tests__/ErrorBoundary.test.d.ts +0 -1
  263. package/dist/components/ErrorBoundary/index.d.ts +0 -2
  264. package/dist/components/ErrorBoundary/styles.d.ts +0 -13
  265. package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.cjs +0 -37
  266. package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.d.ts +0 -8
  267. package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.js +0 -38
  268. package/dist/components/ErrorBoundaryFallback/__stories__/ErrorBoundaryFallback.stories.d.ts +0 -7
  269. package/dist/components/ErrorBoundaryFallback/index.d.ts +0 -2
  270. package/dist/components/ErrorBoundaryFallback/styles.cjs +0 -15
  271. package/dist/components/ErrorBoundaryFallback/styles.d.ts +0 -1
  272. package/dist/components/ErrorBoundaryFallback/styles.js +0 -16
  273. package/dist/components/Filters/Filter.d.ts +0 -23
  274. package/dist/components/Filters/FilterRow.d.ts +0 -8
  275. package/dist/components/Filters/Filters.d.ts +0 -8
  276. package/dist/components/Filters/__stories__/Filters.stories.d.ts +0 -7
  277. package/dist/components/Filters/__stories__/mock.d.ts +0 -5
  278. package/dist/components/Filters/__tests__/Filters.test.d.ts +0 -1
  279. package/dist/components/Filters/index.d.ts +0 -2
  280. package/dist/components/Filters/styles.d.ts +0 -28
  281. package/dist/components/Form/Form.cjs +0 -18
  282. package/dist/components/Form/Form.d.ts +0 -25
  283. package/dist/components/Form/Form.js +0 -18
  284. package/dist/components/Form/__stories__/Form.stories.d.ts +0 -6
  285. package/dist/components/Form/__stories__/FormStory.d.ts +0 -1
  286. package/dist/components/Form/__tests__/form.test.d.ts +0 -1
  287. package/dist/components/Form/index.d.ts +0 -2
  288. package/dist/components/Form/styles.cjs +0 -12
  289. package/dist/components/Form/styles.d.ts +0 -2
  290. package/dist/components/Form/styles.js +0 -13
  291. package/dist/components/Glyph/Glyph.d.ts +0 -4
  292. package/dist/components/Glyph/__stories__/Glyph.stories.d.ts +0 -6
  293. package/dist/components/Glyph/custom/UnitNumber.cjs +0 -51
  294. package/dist/components/Glyph/custom/UnitNumber.d.ts +0 -5
  295. package/dist/components/Glyph/custom/UnitNumber.js +0 -52
  296. package/dist/components/Glyph/custom/__stories__/UnitNumber.stories.d.ts +0 -7
  297. package/dist/components/Glyph/index.d.ts +0 -4
  298. package/dist/components/Glyph/styles.d.ts +0 -13
  299. package/dist/components/Input/Input.cjs +0 -56
  300. package/dist/components/Input/__stories__/Input.stories.d.ts +0 -14
  301. package/dist/components/Input/__tests__/Input.test.d.ts +0 -1
  302. package/dist/components/Input/styles.cjs +0 -187
  303. package/dist/components/Insights/BarChart/BarChart.cjs +0 -196
  304. package/dist/components/Insights/BarChart/BarChart.d.ts +0 -30
  305. package/dist/components/Insights/BarChart/BarChart.js +0 -197
  306. package/dist/components/Insights/BarChart/__stories__/BarChart.stories.d.ts +0 -7
  307. package/dist/components/Insights/BarChart/__tests__/BarChart.test.d.ts +0 -1
  308. package/dist/components/Insights/BarChart/index.d.ts +0 -2
  309. package/dist/components/Insights/BarChart/styles.cjs +0 -32
  310. package/dist/components/Insights/BarChart/styles.d.ts +0 -9
  311. package/dist/components/Insights/BarChart/styles.js +0 -33
  312. package/dist/components/Insights/DonutChart/DonutChart.cjs +0 -172
  313. package/dist/components/Insights/DonutChart/DonutChart.d.ts +0 -19
  314. package/dist/components/Insights/DonutChart/DonutChart.js +0 -173
  315. package/dist/components/Insights/DonutChart/__stories__/DonutChart.stories.d.ts +0 -8
  316. package/dist/components/Insights/DonutChart/__tests__/DonutChart.test.d.ts +0 -1
  317. package/dist/components/Insights/DonutChart/index.d.ts +0 -2
  318. package/dist/components/Insights/DonutChart/styles.cjs +0 -28
  319. package/dist/components/Insights/DonutChart/styles.d.ts +0 -9
  320. package/dist/components/Insights/DonutChart/styles.js +0 -29
  321. package/dist/components/Insights/LineChart/LineChart.cjs +0 -167
  322. package/dist/components/Insights/LineChart/LineChart.d.ts +0 -23
  323. package/dist/components/Insights/LineChart/LineChart.js +0 -168
  324. package/dist/components/Insights/LineChart/__stories__/LineChart.stories.d.ts +0 -6
  325. package/dist/components/Insights/LineChart/__tests__/LineChart.test.d.ts +0 -1
  326. package/dist/components/Insights/LineChart/index.d.ts +0 -2
  327. package/dist/components/Insights/LineChart/styles.cjs +0 -32
  328. package/dist/components/Insights/LineChart/styles.d.ts +0 -9
  329. package/dist/components/Insights/LineChart/styles.js +0 -33
  330. package/dist/components/Insights/__stories__/InsightsDrawer.stories.d.ts +0 -12
  331. package/dist/components/Insights/index.d.ts +0 -6
  332. package/dist/components/Layout/Content/Content.cjs +0 -24
  333. package/dist/components/Layout/Content/Content.d.ts +0 -10
  334. package/dist/components/Layout/Content/Content.js +0 -24
  335. package/dist/components/Layout/Content/ResponsiveContent.d.ts +0 -7
  336. package/dist/components/Layout/Content/index.d.ts +0 -2
  337. package/dist/components/Layout/Content/styles.cjs +0 -18
  338. package/dist/components/Layout/Content/styles.d.ts +0 -10
  339. package/dist/components/Layout/Content/styles.js +0 -19
  340. package/dist/components/Layout/Layout.cjs +0 -7
  341. package/dist/components/Layout/Layout.d.ts +0 -8
  342. package/dist/components/Layout/Layout.js +0 -8
  343. package/dist/components/Layout/MainLayout/MainLayout.d.ts +0 -9
  344. package/dist/components/Layout/MainLayout/__stories__/MainLayout.stories.d.ts +0 -8
  345. package/dist/components/Layout/MainLayout/index.d.ts +0 -2
  346. package/dist/components/Layout/MainLayout/styles.d.ts +0 -4
  347. package/dist/components/Layout/__stories__/Layout.stories.d.ts +0 -6
  348. package/dist/components/Layout/__tests__/Layout.test.d.ts +0 -1
  349. package/dist/components/Layout/index.d.ts +0 -2
  350. package/dist/components/Message/Message.cjs +0 -97
  351. package/dist/components/Message/Message.d.ts +0 -14
  352. package/dist/components/Message/Message.js +0 -98
  353. package/dist/components/Message/__stories__/Message.stories.d.ts +0 -14
  354. package/dist/components/Message/__tests__/Message.test.d.ts +0 -1
  355. package/dist/components/Message/index.d.ts +0 -2
  356. package/dist/components/Message/styles.cjs +0 -46
  357. package/dist/components/Message/styles.d.ts +0 -9
  358. package/dist/components/Message/styles.js +0 -47
  359. package/dist/components/Notification/Notification.cjs +0 -94
  360. package/dist/components/Notification/Notification.d.ts +0 -17
  361. package/dist/components/Notification/Notification.js +0 -95
  362. package/dist/components/Notification/NotificationBadge/NotificationBadge.cjs +0 -59
  363. package/dist/components/Notification/NotificationBadge/NotificationBadge.d.ts +0 -6
  364. package/dist/components/Notification/NotificationBadge/NotificationBadge.js +0 -60
  365. package/dist/components/Notification/NotificationBadge/__stories__/NotificationBadge.stories.d.ts +0 -12
  366. package/dist/components/Notification/NotificationBadge/__tests__/NotificationBadge.test.d.ts +0 -1
  367. package/dist/components/Notification/NotificationBadge/icons/ASN.cjs +0 -22
  368. package/dist/components/Notification/NotificationBadge/icons/ASN.d.ts +0 -2
  369. package/dist/components/Notification/NotificationBadge/icons/ASN.js +0 -23
  370. package/dist/components/Notification/NotificationBadge/icons/Appointment.cjs +0 -22
  371. package/dist/components/Notification/NotificationBadge/icons/Appointment.d.ts +0 -2
  372. package/dist/components/Notification/NotificationBadge/icons/Appointment.js +0 -23
  373. package/dist/components/Notification/NotificationBadge/icons/Inventory.cjs +0 -22
  374. package/dist/components/Notification/NotificationBadge/icons/Inventory.d.ts +0 -2
  375. package/dist/components/Notification/NotificationBadge/icons/Inventory.js +0 -23
  376. package/dist/components/Notification/NotificationBadge/icons/Parcel.cjs +0 -22
  377. package/dist/components/Notification/NotificationBadge/icons/Parcel.d.ts +0 -2
  378. package/dist/components/Notification/NotificationBadge/icons/Parcel.js +0 -23
  379. package/dist/components/Notification/NotificationBadge/icons/Product.cjs +0 -22
  380. package/dist/components/Notification/NotificationBadge/icons/Product.d.ts +0 -2
  381. package/dist/components/Notification/NotificationBadge/icons/Product.js +0 -23
  382. package/dist/components/Notification/NotificationBadge/icons/Route.cjs +0 -22
  383. package/dist/components/Notification/NotificationBadge/icons/Route.d.ts +0 -2
  384. package/dist/components/Notification/NotificationBadge/icons/Route.js +0 -23
  385. package/dist/components/Notification/NotificationBadge/icons/Shipment.cjs +0 -22
  386. package/dist/components/Notification/NotificationBadge/icons/Shipment.d.ts +0 -2
  387. package/dist/components/Notification/NotificationBadge/icons/Shipment.js +0 -23
  388. package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.cjs +0 -22
  389. package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.d.ts +0 -2
  390. package/dist/components/Notification/NotificationBadge/icons/ShoppingCart.js +0 -23
  391. package/dist/components/Notification/NotificationBadge/icons/System.cjs +0 -22
  392. package/dist/components/Notification/NotificationBadge/icons/System.d.ts +0 -2
  393. package/dist/components/Notification/NotificationBadge/icons/System.js +0 -23
  394. package/dist/components/Notification/NotificationBadge/index.d.ts +0 -2
  395. package/dist/components/Notification/NotificationBadge/styles.cjs +0 -49
  396. package/dist/components/Notification/NotificationBadge/styles.d.ts +0 -3
  397. package/dist/components/Notification/NotificationBadge/styles.js +0 -50
  398. package/dist/components/Notification/NotificationRightChevron.cjs +0 -22
  399. package/dist/components/Notification/NotificationRightChevron.d.ts +0 -2
  400. package/dist/components/Notification/NotificationRightChevron.js +0 -23
  401. package/dist/components/Notification/__stories__/Notification.stories.d.ts +0 -9
  402. package/dist/components/Notification/__tests__/Notification.test.d.ts +0 -1
  403. package/dist/components/Notification/index.d.ts +0 -2
  404. package/dist/components/Notification/styles.cjs +0 -70
  405. package/dist/components/Notification/styles.d.ts +0 -16
  406. package/dist/components/Notification/styles.js +0 -71
  407. package/dist/components/Popover/Popover.cjs +0 -25
  408. package/dist/components/Popover/Popover.d.ts +0 -10
  409. package/dist/components/Popover/Popover.js +0 -26
  410. package/dist/components/Popover/__stories__/Popover.stories.d.ts +0 -6
  411. package/dist/components/Popover/__tests__/Popover.test.d.ts +0 -1
  412. package/dist/components/Popover/index.d.ts +0 -2
  413. package/dist/components/Popover/styles.cjs +0 -11
  414. package/dist/components/Popover/styles.d.ts +0 -14
  415. package/dist/components/Popover/styles.js +0 -12
  416. package/dist/components/Progress/Progress.cjs +0 -64
  417. package/dist/components/Progress/Progress.d.ts +0 -18
  418. package/dist/components/Progress/Progress.js +0 -65
  419. package/dist/components/Progress/Progress.util.cjs +0 -42
  420. package/dist/components/Progress/Progress.util.d.ts +0 -3
  421. package/dist/components/Progress/Progress.util.js +0 -43
  422. package/dist/components/Progress/ProgressText.cjs +0 -41
  423. package/dist/components/Progress/ProgressText.d.ts +0 -10
  424. package/dist/components/Progress/ProgressText.js +0 -42
  425. package/dist/components/Progress/__stories__/Progress.stories.d.ts +0 -11
  426. package/dist/components/Progress/__tests__/Progress.test.d.ts +0 -1
  427. package/dist/components/Progress/index.d.ts +0 -2
  428. package/dist/components/Progress/styles.cjs +0 -11
  429. package/dist/components/Progress/styles.d.ts +0 -16
  430. package/dist/components/Progress/styles.js +0 -12
  431. package/dist/components/Radio/Radio.cjs +0 -120
  432. package/dist/components/Radio/Radio.d.ts +0 -13
  433. package/dist/components/Radio/Radio.js +0 -120
  434. package/dist/components/Radio/RadioGroup.cjs +0 -34
  435. package/dist/components/Radio/RadioGroup.d.ts +0 -12
  436. package/dist/components/Radio/RadioGroup.js +0 -35
  437. package/dist/components/Radio/__stories__/RadioGroup.stories.d.ts +0 -8
  438. package/dist/components/Radio/__tests__/RadioGroup.test.d.ts +0 -1
  439. package/dist/components/Radio/index.d.ts +0 -4
  440. package/dist/components/Radio/states/RadioChecked.cjs +0 -17
  441. package/dist/components/Radio/states/RadioChecked.d.ts +0 -2
  442. package/dist/components/Radio/states/RadioChecked.js +0 -18
  443. package/dist/components/Radio/states/RadioCheckedDisabled.cjs +0 -17
  444. package/dist/components/Radio/states/RadioCheckedDisabled.d.ts +0 -2
  445. package/dist/components/Radio/states/RadioCheckedDisabled.js +0 -18
  446. package/dist/components/Radio/states/RadioCheckedFocussed.cjs +0 -29
  447. package/dist/components/Radio/states/RadioCheckedFocussed.d.ts +0 -2
  448. package/dist/components/Radio/states/RadioCheckedFocussed.js +0 -30
  449. package/dist/components/Radio/states/RadioCheckedHover.cjs +0 -17
  450. package/dist/components/Radio/states/RadioCheckedHover.d.ts +0 -2
  451. package/dist/components/Radio/states/RadioCheckedHover.js +0 -18
  452. package/dist/components/Radio/states/RadioUnchecked.cjs +0 -14
  453. package/dist/components/Radio/states/RadioUnchecked.d.ts +0 -2
  454. package/dist/components/Radio/states/RadioUnchecked.js +0 -15
  455. package/dist/components/Radio/states/RadioUncheckedDisabled.cjs +0 -14
  456. package/dist/components/Radio/states/RadioUncheckedDisabled.d.ts +0 -2
  457. package/dist/components/Radio/states/RadioUncheckedDisabled.js +0 -15
  458. package/dist/components/Radio/states/RadioUncheckedFocussed.cjs +0 -28
  459. package/dist/components/Radio/states/RadioUncheckedFocussed.d.ts +0 -2
  460. package/dist/components/Radio/states/RadioUncheckedFocussed.js +0 -29
  461. package/dist/components/Radio/states/RadioUncheckedHover.cjs +0 -17
  462. package/dist/components/Radio/states/RadioUncheckedHover.d.ts +0 -2
  463. package/dist/components/Radio/states/RadioUncheckedHover.js +0 -18
  464. package/dist/components/Row/Row.cjs +0 -39
  465. package/dist/components/Row/Row.d.ts +0 -13
  466. package/dist/components/Row/Row.js +0 -40
  467. package/dist/components/Row/RowActions/RowActions.cjs +0 -24
  468. package/dist/components/Row/RowActions/RowActions.d.ts +0 -9
  469. package/dist/components/Row/RowActions/RowActions.js +0 -25
  470. package/dist/components/Row/RowActions/styles.cjs +0 -10
  471. package/dist/components/Row/RowActions/styles.d.ts +0 -1
  472. package/dist/components/Row/RowActions/styles.js +0 -11
  473. package/dist/components/Row/RowLabelValue/RowLabelValue.cjs +0 -42
  474. package/dist/components/Row/RowLabelValue/RowLabelValue.d.ts +0 -10
  475. package/dist/components/Row/RowLabelValue/RowLabelValue.js +0 -43
  476. package/dist/components/Row/RowLabelValue/RowSkeleton.cjs +0 -28
  477. package/dist/components/Row/RowLabelValue/RowSkeleton.d.ts +0 -3
  478. package/dist/components/Row/RowLabelValue/RowSkeleton.js +0 -29
  479. package/dist/components/Row/RowLabelValue/styles.cjs +0 -31
  480. package/dist/components/Row/RowLabelValue/styles.d.ts +0 -15
  481. package/dist/components/Row/RowLabelValue/styles.js +0 -32
  482. package/dist/components/Row/__stories__/Row.stories.d.ts +0 -12
  483. package/dist/components/Row/__tests__/Row.test.d.ts +0 -1
  484. package/dist/components/Row/index.d.ts +0 -2
  485. package/dist/components/Row/styles.cjs +0 -20
  486. package/dist/components/Row/styles.d.ts +0 -14
  487. package/dist/components/Row/styles.js +0 -21
  488. package/dist/components/SegmentedControls/SegmentedControls.cjs +0 -25
  489. package/dist/components/SegmentedControls/SegmentedControls.d.ts +0 -12
  490. package/dist/components/SegmentedControls/SegmentedControls.js +0 -26
  491. package/dist/components/SegmentedControls/__stories__/SegmentedControls.stories.d.ts +0 -8
  492. package/dist/components/SegmentedControls/__tests__/SegmentedControls.test.d.ts +0 -1
  493. package/dist/components/SegmentedControls/index.d.ts +0 -2
  494. package/dist/components/SegmentedControls/styles.cjs +0 -44
  495. package/dist/components/SegmentedControls/styles.d.ts +0 -11
  496. package/dist/components/SegmentedControls/styles.js +0 -45
  497. package/dist/components/Select/Select.cjs +0 -218
  498. package/dist/components/Select/SelectTrigger.cjs +0 -124
  499. package/dist/components/Select/__stories__/Select.stories.d.ts +0 -11
  500. package/dist/components/Shapes/Shapes.cjs +0 -15
  501. package/dist/components/Shapes/Shapes.d.ts +0 -6
  502. package/dist/components/Shapes/Shapes.js +0 -16
  503. package/dist/components/Shapes/__stories__/Shapes.stories.d.ts +0 -8
  504. package/dist/components/Shapes/__tests__/Shapes.test.d.ts +0 -1
  505. package/dist/components/Shapes/index.d.ts +0 -2
  506. package/dist/components/Shapes/variants/Circle.cjs +0 -22
  507. package/dist/components/Shapes/variants/Circle.d.ts +0 -5
  508. package/dist/components/Shapes/variants/Circle.js +0 -23
  509. package/dist/components/Shapes/variants/Rectangle.cjs +0 -22
  510. package/dist/components/Shapes/variants/Rectangle.d.ts +0 -5
  511. package/dist/components/Shapes/variants/Rectangle.js +0 -23
  512. package/dist/components/Shapes/variants/Triangle.cjs +0 -22
  513. package/dist/components/Shapes/variants/Triangle.d.ts +0 -5
  514. package/dist/components/Shapes/variants/Triangle.js +0 -23
  515. package/dist/components/Stories/position-checker.d.ts +0 -6
  516. package/dist/components/Switch/Switch.cjs +0 -23
  517. package/dist/components/Switch/Switch.d.ts +0 -9
  518. package/dist/components/Switch/Switch.js +0 -24
  519. package/dist/components/Switch/__stories__/Switch.stories.d.ts +0 -8
  520. package/dist/components/Switch/__tests__/Switch.test.d.ts +0 -1
  521. package/dist/components/Switch/index.d.ts +0 -2
  522. package/dist/components/Switch/styles.cjs +0 -65
  523. package/dist/components/Switch/styles.d.ts +0 -8
  524. package/dist/components/Switch/styles.js +0 -65
  525. package/dist/components/Table/Table.cjs +0 -45
  526. package/dist/components/Table/TableControls/CustomPagination.cjs +0 -321
  527. package/dist/components/Table/TableControls/PaginationNumber.cjs +0 -42
  528. package/dist/components/Table/TableControls/PrimaryTableControlsRow.cjs +0 -162
  529. package/dist/components/Table/TableControls/SecondaryTableControlsRow.cjs +0 -80
  530. package/dist/components/Table/TableControls/TableControls.cjs +0 -38
  531. package/dist/components/Table/TablePagination.cjs +0 -51
  532. package/dist/components/Table/__mocks__/table-mocks.cjs +0 -302
  533. package/dist/components/Table/styles.cjs +0 -62
  534. package/dist/components/Table/useTable.cjs +0 -80
  535. package/dist/components/TableWithControls/TableWithControls.cjs +0 -41
  536. package/dist/components/Tabs/Tabs.cjs +0 -21
  537. package/dist/components/Tabs/Tabs.d.ts +0 -50
  538. package/dist/components/Tabs/Tabs.js +0 -22
  539. package/dist/components/Tabs/__stories__/Tabs.stories.d.ts +0 -9
  540. package/dist/components/Tabs/__tests__/Tabs.test.d.ts +0 -1
  541. package/dist/components/Tabs/index.d.ts +0 -2
  542. package/dist/components/Tabs/styles.cjs +0 -104
  543. package/dist/components/Tabs/styles.d.ts +0 -11
  544. package/dist/components/Tabs/styles.js +0 -105
  545. package/dist/components/Tile/Tile.cjs +0 -22
  546. package/dist/components/Tile/Tile.d.ts +0 -10
  547. package/dist/components/Tile/Tile.js +0 -23
  548. package/dist/components/Tile/__stories__/Tile.stories.d.ts +0 -6
  549. package/dist/components/Tile/__tests__/Tile.test.d.ts +0 -1
  550. package/dist/components/Tile/index.d.ts +0 -2
  551. package/dist/components/Tile/styles.cjs +0 -14
  552. package/dist/components/Tile/styles.d.ts +0 -10
  553. package/dist/components/Tile/styles.js +0 -15
  554. package/dist/components/Toast/Toast.cjs +0 -100
  555. package/dist/components/Toast/Toast.d.ts +0 -13
  556. package/dist/components/Toast/Toast.js +0 -101
  557. package/dist/components/Toast/__stories__/Toast.stories.d.ts +0 -15
  558. package/dist/components/Toast/__tests__/Toast.test.d.ts +0 -1
  559. package/dist/components/Toast/index.d.ts +0 -2
  560. package/dist/components/Toast/styles.cjs +0 -46
  561. package/dist/components/Toast/styles.d.ts +0 -9
  562. package/dist/components/Toast/styles.js +0 -47
  563. package/dist/components/Tooltip/Tooltip.cjs +0 -24
  564. package/dist/components/Tooltip/__stories__/Tooltip.stories.d.ts +0 -7
  565. package/dist/components/Tooltip/__tests__/Tooltip.test.d.ts +0 -1
  566. package/dist/components/Tooltip/styles.cjs +0 -29
  567. package/dist/components/Typography/Typography.cjs +0 -71
  568. package/dist/components/Typography/__stories__/Typography.stories.d.ts +0 -13
  569. package/dist/components/Typography/__tests__/Typography.test.d.ts +0 -1
  570. package/dist/components/Typography/styles.cjs +0 -106
  571. package/dist/components/UtilityButton/UtilityButton.cjs +0 -29
  572. package/dist/components/shared/DropdownChevron.cjs +0 -26
  573. package/dist/genesis/GenesisThemeBreakdown.d.ts +0 -3
  574. package/dist/genesis/GenesisThemeDemo.d.ts +0 -5
  575. package/dist/genesis/GenesisThemeDemo.stories.d.ts +0 -6
  576. package/dist/genesis/Lab.stories.d.ts +0 -5
  577. package/dist/genesis/styles.d.ts +0 -11
  578. package/dist/index.cjs +0 -93
  579. package/dist/index.js +0 -94
  580. package/dist/interface/appointmentV2.d.ts +0 -64
  581. package/dist/interface/appointmentsState.d.ts +0 -20
  582. package/dist/interface/common.d.ts +0 -2
  583. package/dist/interface/completionData.d.ts +0 -18
  584. package/dist/interface/deliveryPartner.d.ts +0 -24
  585. package/dist/interface/organization.d.ts +0 -9
  586. package/dist/interface/pagination.d.ts +0 -8
  587. package/dist/interface/roles.d.ts +0 -9
  588. package/dist/interface/route.d.ts +0 -72
  589. package/dist/interface/routeAnalysis.d.ts +0 -107
  590. package/dist/interface/routeAutomationJob.d.ts +0 -94
  591. package/dist/interface/routeAutomationLog.d.ts +0 -9
  592. package/dist/interface/routeEvent.d.ts +0 -55
  593. package/dist/interface/serviceArea.d.ts +0 -17
  594. package/dist/interface/util.d.ts +0 -3
  595. package/dist/interface/vehicle.d.ts +0 -119
  596. package/dist/interface/workOrder.d.ts +0 -22
  597. package/dist/node_modules/@ant-design/colors/es/generate.cjs +0 -120
  598. package/dist/node_modules/@ant-design/colors/es/generate.js +0 -121
  599. package/dist/node_modules/@ant-design/colors/es/presets.cjs +0 -72
  600. package/dist/node_modules/@ant-design/colors/es/presets.js +0 -73
  601. package/dist/node_modules/@ant-design/cssinjs/es/Cache.cjs +0 -49
  602. package/dist/node_modules/@ant-design/cssinjs/es/Cache.js +0 -49
  603. package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.cjs +0 -23
  604. package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.js +0 -24
  605. package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.cjs +0 -65
  606. package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.js +0 -46
  607. package/dist/node_modules/@ant-design/cssinjs/es/extractStyle.cjs +0 -11
  608. package/dist/node_modules/@ant-design/cssinjs/es/extractStyle.js +0 -10
  609. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCSSVarRegister.cjs +0 -67
  610. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCSSVarRegister.js +0 -67
  611. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.cjs +0 -124
  612. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.js +0 -124
  613. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.cjs +0 -38
  614. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.js +0 -20
  615. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.cjs +0 -57
  616. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.js +0 -39
  617. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.cjs +0 -90
  618. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.js +0 -72
  619. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useHMR.cjs +0 -23
  620. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useHMR.js +0 -24
  621. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useStyleRegister.cjs +0 -330
  622. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useStyleRegister.js +0 -311
  623. package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.cjs +0 -12
  624. package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.js +0 -13
  625. package/dist/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.cjs +0 -10
  626. package/dist/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.js +0 -11
  627. package/dist/node_modules/@ant-design/cssinjs/es/linters/utils.cjs +0 -7
  628. package/dist/node_modules/@ant-design/cssinjs/es/linters/utils.js +0 -8
  629. package/dist/node_modules/@ant-design/cssinjs/es/theme/Theme.cjs +0 -29
  630. package/dist/node_modules/@ant-design/cssinjs/es/theme/Theme.js +0 -30
  631. package/dist/node_modules/@ant-design/cssinjs/es/theme/ThemeCache.cjs +0 -139
  632. package/dist/node_modules/@ant-design/cssinjs/es/theme/ThemeCache.js +0 -139
  633. package/dist/node_modules/@ant-design/cssinjs/es/theme/createTheme.cjs +0 -12
  634. package/dist/node_modules/@ant-design/cssinjs/es/theme/createTheme.js +0 -13
  635. package/dist/node_modules/@ant-design/cssinjs/es/transformers/legacyLogicalProperties.cjs +0 -14
  636. package/dist/node_modules/@ant-design/cssinjs/es/transformers/legacyLogicalProperties.js +0 -13
  637. package/dist/node_modules/@ant-design/cssinjs/es/util/cacheMapUtil.cjs +0 -60
  638. package/dist/node_modules/@ant-design/cssinjs/es/util/cacheMapUtil.js +0 -61
  639. package/dist/node_modules/@ant-design/cssinjs/es/util/css-variables.cjs +0 -37
  640. package/dist/node_modules/@ant-design/cssinjs/es/util/css-variables.js +0 -38
  641. package/dist/node_modules/@ant-design/cssinjs/es/util/index.cjs +0 -78
  642. package/dist/node_modules/@ant-design/cssinjs/es/util/index.js +0 -79
  643. package/dist/node_modules/@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.cjs +0 -87
  644. package/dist/node_modules/@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.js +0 -88
  645. package/dist/node_modules/@ant-design/cssinjs-utils/es/hooks/useCSP.cjs +0 -5
  646. package/dist/node_modules/@ant-design/cssinjs-utils/es/hooks/useCSP.js +0 -6
  647. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/CSSCalculator.cjs +0 -116
  648. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/CSSCalculator.js +0 -117
  649. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/NumCalculator.cjs +0 -72
  650. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/NumCalculator.js +0 -73
  651. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/calculator.cjs +0 -7
  652. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/calculator.js +0 -8
  653. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/index.cjs +0 -10
  654. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/index.js +0 -11
  655. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/genStyleUtils.cjs +0 -204
  656. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/genStyleUtils.js +0 -205
  657. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getCompVarPrefix.cjs +0 -5
  658. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getCompVarPrefix.js +0 -6
  659. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getComponentToken.cjs +0 -31
  660. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getComponentToken.js +0 -32
  661. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getDefaultComponentToken.cjs +0 -10
  662. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getDefaultComponentToken.js +0 -11
  663. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/maxmin.cjs +0 -40
  664. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/maxmin.js +0 -41
  665. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/statistic.cjs +0 -68
  666. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/statistic.js +0 -68
  667. package/dist/node_modules/@ant-design/fast-color/es/FastColor.cjs +0 -473
  668. package/dist/node_modules/@ant-design/fast-color/es/FastColor.js +0 -474
  669. package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.cjs +0 -65
  670. package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.js +0 -47
  671. package/dist/node_modules/@ant-design/icons/es/components/Context.cjs +0 -4
  672. package/dist/node_modules/@ant-design/icons/es/components/Context.js +0 -5
  673. package/dist/node_modules/@ant-design/icons/es/components/IconBase.cjs +0 -77
  674. package/dist/node_modules/@ant-design/icons/es/components/IconBase.js +0 -59
  675. package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.cjs +0 -20
  676. package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.js +0 -21
  677. package/dist/node_modules/@ant-design/icons/es/icons/BarsOutlined.cjs +0 -35
  678. package/dist/node_modules/@ant-design/icons/es/icons/BarsOutlined.js +0 -17
  679. package/dist/node_modules/@ant-design/icons/es/icons/CalendarOutlined.cjs +0 -35
  680. package/dist/node_modules/@ant-design/icons/es/icons/CalendarOutlined.js +0 -17
  681. package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.cjs +0 -35
  682. package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.js +0 -17
  683. package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.cjs +0 -35
  684. package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.js +0 -17
  685. package/dist/node_modules/@ant-design/icons/es/icons/CaretUpOutlined.cjs +0 -35
  686. package/dist/node_modules/@ant-design/icons/es/icons/CaretUpOutlined.js +0 -17
  687. package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.cjs +0 -35
  688. package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.js +0 -17
  689. package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.cjs +0 -35
  690. package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.js +0 -17
  691. package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.cjs +0 -35
  692. package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.js +0 -17
  693. package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.cjs +0 -35
  694. package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.js +0 -17
  695. package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.cjs +0 -35
  696. package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.js +0 -17
  697. package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleOutlined.cjs +0 -35
  698. package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleOutlined.js +0 -17
  699. package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.cjs +0 -35
  700. package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.js +0 -17
  701. package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.cjs +0 -35
  702. package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.js +0 -17
  703. package/dist/node_modules/@ant-design/icons/es/icons/DoubleLeftOutlined.cjs +0 -35
  704. package/dist/node_modules/@ant-design/icons/es/icons/DoubleLeftOutlined.js +0 -17
  705. package/dist/node_modules/@ant-design/icons/es/icons/DoubleRightOutlined.cjs +0 -35
  706. package/dist/node_modules/@ant-design/icons/es/icons/DoubleRightOutlined.js +0 -17
  707. package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.cjs +0 -35
  708. package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.js +0 -17
  709. package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.cjs +0 -35
  710. package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.js +0 -17
  711. package/dist/node_modules/@ant-design/icons/es/icons/EllipsisOutlined.cjs +0 -35
  712. package/dist/node_modules/@ant-design/icons/es/icons/EllipsisOutlined.js +0 -17
  713. package/dist/node_modules/@ant-design/icons/es/icons/EnterOutlined.cjs +0 -35
  714. package/dist/node_modules/@ant-design/icons/es/icons/EnterOutlined.js +0 -17
  715. package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.cjs +0 -35
  716. package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.js +0 -17
  717. package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.cjs +0 -35
  718. package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.js +0 -17
  719. package/dist/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.cjs +0 -35
  720. package/dist/node_modules/@ant-design/icons/es/icons/EyeInvisibleOutlined.js +0 -17
  721. package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.cjs +0 -35
  722. package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.js +0 -17
  723. package/dist/node_modules/@ant-design/icons/es/icons/FileOutlined.cjs +0 -35
  724. package/dist/node_modules/@ant-design/icons/es/icons/FileOutlined.js +0 -17
  725. package/dist/node_modules/@ant-design/icons/es/icons/FilterFilled.cjs +0 -35
  726. package/dist/node_modules/@ant-design/icons/es/icons/FilterFilled.js +0 -17
  727. package/dist/node_modules/@ant-design/icons/es/icons/FolderOpenOutlined.cjs +0 -35
  728. package/dist/node_modules/@ant-design/icons/es/icons/FolderOpenOutlined.js +0 -17
  729. package/dist/node_modules/@ant-design/icons/es/icons/FolderOutlined.cjs +0 -35
  730. package/dist/node_modules/@ant-design/icons/es/icons/FolderOutlined.js +0 -17
  731. package/dist/node_modules/@ant-design/icons/es/icons/HolderOutlined.cjs +0 -35
  732. package/dist/node_modules/@ant-design/icons/es/icons/HolderOutlined.js +0 -17
  733. package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.cjs +0 -35
  734. package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.js +0 -17
  735. package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.cjs +0 -35
  736. package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.js +0 -17
  737. package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.cjs +0 -35
  738. package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.js +0 -17
  739. package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.cjs +0 -35
  740. package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.js +0 -17
  741. package/dist/node_modules/@ant-design/icons/es/icons/MinusSquareOutlined.cjs +0 -35
  742. package/dist/node_modules/@ant-design/icons/es/icons/MinusSquareOutlined.js +0 -17
  743. package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.cjs +0 -35
  744. package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.js +0 -17
  745. package/dist/node_modules/@ant-design/icons/es/icons/PlusSquareOutlined.cjs +0 -35
  746. package/dist/node_modules/@ant-design/icons/es/icons/PlusSquareOutlined.js +0 -17
  747. package/dist/node_modules/@ant-design/icons/es/icons/QuestionCircleOutlined.cjs +0 -35
  748. package/dist/node_modules/@ant-design/icons/es/icons/QuestionCircleOutlined.js +0 -17
  749. package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.cjs +0 -35
  750. package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.js +0 -17
  751. package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.cjs +0 -35
  752. package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.js +0 -17
  753. package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.cjs +0 -35
  754. package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.js +0 -17
  755. package/dist/node_modules/@ant-design/icons/es/icons/WarningFilled.cjs +0 -35
  756. package/dist/node_modules/@ant-design/icons/es/icons/WarningFilled.js +0 -17
  757. package/dist/node_modules/@ant-design/icons/es/utils.cjs +0 -88
  758. package/dist/node_modules/@ant-design/icons/es/utils.js +0 -89
  759. package/dist/node_modules/@ant-design/icons-svg/es/asn/BarsOutlined.cjs +0 -3
  760. package/dist/node_modules/@ant-design/icons-svg/es/asn/BarsOutlined.js +0 -4
  761. package/dist/node_modules/@ant-design/icons-svg/es/asn/CalendarOutlined.cjs +0 -3
  762. package/dist/node_modules/@ant-design/icons-svg/es/asn/CalendarOutlined.js +0 -4
  763. package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownFilled.cjs +0 -3
  764. package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownFilled.js +0 -4
  765. package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownOutlined.cjs +0 -3
  766. package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownOutlined.js +0 -4
  767. package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretUpOutlined.cjs +0 -3
  768. package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretUpOutlined.js +0 -4
  769. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleFilled.cjs +0 -3
  770. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleFilled.js +0 -4
  771. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleOutlined.cjs +0 -3
  772. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleOutlined.js +0 -4
  773. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckOutlined.cjs +0 -3
  774. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckOutlined.js +0 -4
  775. package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleOutlined.cjs +0 -3
  776. package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleOutlined.js +0 -4
  777. package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleFilled.cjs +0 -3
  778. package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleFilled.js +0 -4
  779. package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleOutlined.cjs +0 -3
  780. package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleOutlined.js +0 -4
  781. package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseOutlined.cjs +0 -3
  782. package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseOutlined.js +0 -4
  783. package/dist/node_modules/@ant-design/icons-svg/es/asn/CopyOutlined.cjs +0 -3
  784. package/dist/node_modules/@ant-design/icons-svg/es/asn/CopyOutlined.js +0 -4
  785. package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleLeftOutlined.cjs +0 -3
  786. package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleLeftOutlined.js +0 -4
  787. package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleRightOutlined.cjs +0 -3
  788. package/dist/node_modules/@ant-design/icons-svg/es/asn/DoubleRightOutlined.js +0 -4
  789. package/dist/node_modules/@ant-design/icons-svg/es/asn/DownOutlined.cjs +0 -3
  790. package/dist/node_modules/@ant-design/icons-svg/es/asn/DownOutlined.js +0 -4
  791. package/dist/node_modules/@ant-design/icons-svg/es/asn/EditOutlined.cjs +0 -3
  792. package/dist/node_modules/@ant-design/icons-svg/es/asn/EditOutlined.js +0 -4
  793. package/dist/node_modules/@ant-design/icons-svg/es/asn/EllipsisOutlined.cjs +0 -3
  794. package/dist/node_modules/@ant-design/icons-svg/es/asn/EllipsisOutlined.js +0 -4
  795. package/dist/node_modules/@ant-design/icons-svg/es/asn/EnterOutlined.cjs +0 -3
  796. package/dist/node_modules/@ant-design/icons-svg/es/asn/EnterOutlined.js +0 -4
  797. package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleFilled.cjs +0 -3
  798. package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleFilled.js +0 -4
  799. package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleOutlined.cjs +0 -3
  800. package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleOutlined.js +0 -4
  801. package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeInvisibleOutlined.cjs +0 -3
  802. package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeInvisibleOutlined.js +0 -4
  803. package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.cjs +0 -3
  804. package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.js +0 -4
  805. package/dist/node_modules/@ant-design/icons-svg/es/asn/FileOutlined.cjs +0 -3
  806. package/dist/node_modules/@ant-design/icons-svg/es/asn/FileOutlined.js +0 -4
  807. package/dist/node_modules/@ant-design/icons-svg/es/asn/FilterFilled.cjs +0 -3
  808. package/dist/node_modules/@ant-design/icons-svg/es/asn/FilterFilled.js +0 -4
  809. package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOpenOutlined.cjs +0 -3
  810. package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOpenOutlined.js +0 -4
  811. package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOutlined.cjs +0 -3
  812. package/dist/node_modules/@ant-design/icons-svg/es/asn/FolderOutlined.js +0 -4
  813. package/dist/node_modules/@ant-design/icons-svg/es/asn/HolderOutlined.cjs +0 -3
  814. package/dist/node_modules/@ant-design/icons-svg/es/asn/HolderOutlined.js +0 -4
  815. package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleOutlined.cjs +0 -3
  816. package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleOutlined.js +0 -4
  817. package/dist/node_modules/@ant-design/icons-svg/es/asn/LeftOutlined.cjs +0 -3
  818. package/dist/node_modules/@ant-design/icons-svg/es/asn/LeftOutlined.js +0 -4
  819. package/dist/node_modules/@ant-design/icons-svg/es/asn/LoadingOutlined.cjs +0 -3
  820. package/dist/node_modules/@ant-design/icons-svg/es/asn/LoadingOutlined.js +0 -4
  821. package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.cjs +0 -3
  822. package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.js +0 -4
  823. package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusSquareOutlined.cjs +0 -3
  824. package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusSquareOutlined.js +0 -4
  825. package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.cjs +0 -3
  826. package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.js +0 -4
  827. package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusSquareOutlined.cjs +0 -3
  828. package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusSquareOutlined.js +0 -4
  829. package/dist/node_modules/@ant-design/icons-svg/es/asn/QuestionCircleOutlined.cjs +0 -3
  830. package/dist/node_modules/@ant-design/icons-svg/es/asn/QuestionCircleOutlined.js +0 -4
  831. package/dist/node_modules/@ant-design/icons-svg/es/asn/RightOutlined.cjs +0 -3
  832. package/dist/node_modules/@ant-design/icons-svg/es/asn/RightOutlined.js +0 -4
  833. package/dist/node_modules/@ant-design/icons-svg/es/asn/SearchOutlined.cjs +0 -3
  834. package/dist/node_modules/@ant-design/icons-svg/es/asn/SearchOutlined.js +0 -4
  835. package/dist/node_modules/@ant-design/icons-svg/es/asn/SwapRightOutlined.cjs +0 -3
  836. package/dist/node_modules/@ant-design/icons-svg/es/asn/SwapRightOutlined.js +0 -4
  837. package/dist/node_modules/@ant-design/icons-svg/es/asn/WarningFilled.cjs +0 -3
  838. package/dist/node_modules/@ant-design/icons-svg/es/asn/WarningFilled.js +0 -4
  839. package/dist/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.cjs +0 -7
  840. package/dist/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +0 -8
  841. package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.cjs +0 -5
  842. package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +0 -6
  843. package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.cjs +0 -6
  844. package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +0 -7
  845. package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.cjs +0 -6
  846. package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +0 -7
  847. package/dist/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.cjs +0 -25
  848. package/dist/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +0 -26
  849. package/dist/node_modules/@babel/runtime/helpers/esm/classCallCheck.cjs +0 -5
  850. package/dist/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +0 -6
  851. package/dist/node_modules/@babel/runtime/helpers/esm/construct.cjs +0 -11
  852. package/dist/node_modules/@babel/runtime/helpers/esm/construct.js +0 -12
  853. package/dist/node_modules/@babel/runtime/helpers/esm/createClass.cjs +0 -14
  854. package/dist/node_modules/@babel/runtime/helpers/esm/createClass.js +0 -15
  855. package/dist/node_modules/@babel/runtime/helpers/esm/createSuper.cjs +0 -16
  856. package/dist/node_modules/@babel/runtime/helpers/esm/createSuper.js +0 -17
  857. package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.cjs +0 -11
  858. package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.js +0 -12
  859. package/dist/node_modules/@babel/runtime/helpers/esm/extends.cjs +0 -11
  860. package/dist/node_modules/@babel/runtime/helpers/esm/extends.js +0 -12
  861. package/dist/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.cjs +0 -7
  862. package/dist/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +0 -8
  863. package/dist/node_modules/@babel/runtime/helpers/esm/inherits.cjs +0 -15
  864. package/dist/node_modules/@babel/runtime/helpers/esm/inherits.js +0 -16
  865. package/dist/node_modules/@babel/runtime/helpers/esm/isNativeFunction.cjs +0 -9
  866. package/dist/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +0 -10
  867. package/dist/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.cjs +0 -12
  868. package/dist/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +0 -13
  869. package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArray.cjs +0 -5
  870. package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +0 -6
  871. package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.cjs +0 -23
  872. package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +0 -24
  873. package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableRest.cjs +0 -5
  874. package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +0 -6
  875. package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.cjs +0 -5
  876. package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +0 -6
  877. package/dist/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.cjs +0 -5
  878. package/dist/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +0 -6
  879. package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.cjs +0 -24
  880. package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +0 -25
  881. package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.cjs +0 -12
  882. package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +0 -13
  883. package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.cjs +0 -11
  884. package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +0 -12
  885. package/dist/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.cjs +0 -9
  886. package/dist/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +0 -10
  887. package/dist/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.cjs +0 -287
  888. package/dist/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js +0 -288
  889. package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.cjs +0 -7
  890. package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +0 -8
  891. package/dist/node_modules/@babel/runtime/helpers/esm/slicedToArray.cjs +0 -9
  892. package/dist/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +0 -10
  893. package/dist/node_modules/@babel/runtime/helpers/esm/toArray.cjs +0 -9
  894. package/dist/node_modules/@babel/runtime/helpers/esm/toArray.js +0 -10
  895. package/dist/node_modules/@babel/runtime/helpers/esm/toConsumableArray.cjs +0 -9
  896. package/dist/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +0 -10
  897. package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.cjs +0 -13
  898. package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +0 -14
  899. package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.cjs +0 -8
  900. package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +0 -9
  901. package/dist/node_modules/@babel/runtime/helpers/esm/typeof.cjs +0 -10
  902. package/dist/node_modules/@babel/runtime/helpers/esm/typeof.js +0 -11
  903. package/dist/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.cjs +0 -10
  904. package/dist/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +0 -11
  905. package/dist/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.cjs +0 -28
  906. package/dist/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +0 -29
  907. package/dist/node_modules/@emotion/hash/dist/hash.browser.esm.cjs +0 -30
  908. package/dist/node_modules/@emotion/hash/dist/hash.browser.esm.js +0 -31
  909. package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.cjs +0 -50
  910. package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.js +0 -51
  911. package/dist/node_modules/@fontsource/inter/300.css.cjs +0 -1
  912. package/dist/node_modules/@fontsource/inter/300.css.js +0 -1
  913. package/dist/node_modules/@fontsource/inter/400.css.cjs +0 -1
  914. package/dist/node_modules/@fontsource/inter/400.css.js +0 -1
  915. package/dist/node_modules/@fontsource/inter/500.css.cjs +0 -1
  916. package/dist/node_modules/@fontsource/inter/500.css.js +0 -1
  917. package/dist/node_modules/@fontsource/inter/600.css.cjs +0 -1
  918. package/dist/node_modules/@fontsource/inter/600.css.js +0 -1
  919. package/dist/node_modules/@fontsource/inter/700.css.cjs +0 -1
  920. package/dist/node_modules/@fontsource/inter/700.css.js +0 -1
  921. package/dist/node_modules/@fontsource/roboto-mono/400.css.cjs +0 -1
  922. package/dist/node_modules/@fontsource/roboto-mono/400.css.js +0 -1
  923. package/dist/node_modules/@rc-component/async-validator/es/index.cjs +0 -276
  924. package/dist/node_modules/@rc-component/async-validator/es/index.js +0 -277
  925. package/dist/node_modules/@rc-component/async-validator/es/messages.cjs +0 -58
  926. package/dist/node_modules/@rc-component/async-validator/es/messages.js +0 -59
  927. package/dist/node_modules/@rc-component/async-validator/es/rule/enum.cjs +0 -10
  928. package/dist/node_modules/@rc-component/async-validator/es/rule/enum.js +0 -11
  929. package/dist/node_modules/@rc-component/async-validator/es/rule/index.cjs +0 -16
  930. package/dist/node_modules/@rc-component/async-validator/es/rule/index.js +0 -17
  931. package/dist/node_modules/@rc-component/async-validator/es/rule/pattern.cjs +0 -18
  932. package/dist/node_modules/@rc-component/async-validator/es/rule/pattern.js +0 -19
  933. package/dist/node_modules/@rc-component/async-validator/es/rule/range.cjs +0 -41
  934. package/dist/node_modules/@rc-component/async-validator/es/rule/range.js +0 -42
  935. package/dist/node_modules/@rc-component/async-validator/es/rule/required.cjs +0 -8
  936. package/dist/node_modules/@rc-component/async-validator/es/rule/required.js +0 -9
  937. package/dist/node_modules/@rc-component/async-validator/es/rule/type.cjs +0 -75
  938. package/dist/node_modules/@rc-component/async-validator/es/rule/type.js +0 -76
  939. package/dist/node_modules/@rc-component/async-validator/es/rule/url.cjs +0 -58
  940. package/dist/node_modules/@rc-component/async-validator/es/rule/url.js +0 -59
  941. package/dist/node_modules/@rc-component/async-validator/es/rule/whitespace.cjs +0 -8
  942. package/dist/node_modules/@rc-component/async-validator/es/rule/whitespace.js +0 -9
  943. package/dist/node_modules/@rc-component/async-validator/es/util.cjs +0 -244
  944. package/dist/node_modules/@rc-component/async-validator/es/util.js +0 -246
  945. package/dist/node_modules/@rc-component/async-validator/es/validator/any.cjs +0 -15
  946. package/dist/node_modules/@rc-component/async-validator/es/validator/any.js +0 -16
  947. package/dist/node_modules/@rc-component/async-validator/es/validator/array.cjs +0 -18
  948. package/dist/node_modules/@rc-component/async-validator/es/validator/array.js +0 -19
  949. package/dist/node_modules/@rc-component/async-validator/es/validator/boolean.cjs +0 -18
  950. package/dist/node_modules/@rc-component/async-validator/es/validator/boolean.js +0 -19
  951. package/dist/node_modules/@rc-component/async-validator/es/validator/date.cjs +0 -27
  952. package/dist/node_modules/@rc-component/async-validator/es/validator/date.js +0 -28
  953. package/dist/node_modules/@rc-component/async-validator/es/validator/enum.cjs +0 -19
  954. package/dist/node_modules/@rc-component/async-validator/es/validator/enum.js +0 -20
  955. package/dist/node_modules/@rc-component/async-validator/es/validator/float.cjs +0 -19
  956. package/dist/node_modules/@rc-component/async-validator/es/validator/float.js +0 -20
  957. package/dist/node_modules/@rc-component/async-validator/es/validator/index.cjs +0 -36
  958. package/dist/node_modules/@rc-component/async-validator/es/validator/index.js +0 -37
  959. package/dist/node_modules/@rc-component/async-validator/es/validator/integer.cjs +0 -19
  960. package/dist/node_modules/@rc-component/async-validator/es/validator/integer.js +0 -20
  961. package/dist/node_modules/@rc-component/async-validator/es/validator/method.cjs +0 -18
  962. package/dist/node_modules/@rc-component/async-validator/es/validator/method.js +0 -19
  963. package/dist/node_modules/@rc-component/async-validator/es/validator/number.cjs +0 -22
  964. package/dist/node_modules/@rc-component/async-validator/es/validator/number.js +0 -23
  965. package/dist/node_modules/@rc-component/async-validator/es/validator/object.cjs +0 -18
  966. package/dist/node_modules/@rc-component/async-validator/es/validator/object.js +0 -19
  967. package/dist/node_modules/@rc-component/async-validator/es/validator/pattern.cjs +0 -18
  968. package/dist/node_modules/@rc-component/async-validator/es/validator/pattern.js +0 -19
  969. package/dist/node_modules/@rc-component/async-validator/es/validator/regexp.cjs +0 -18
  970. package/dist/node_modules/@rc-component/async-validator/es/validator/regexp.js +0 -19
  971. package/dist/node_modules/@rc-component/async-validator/es/validator/required.cjs +0 -10
  972. package/dist/node_modules/@rc-component/async-validator/es/validator/required.js +0 -11
  973. package/dist/node_modules/@rc-component/async-validator/es/validator/string.cjs +0 -23
  974. package/dist/node_modules/@rc-component/async-validator/es/validator/string.js +0 -24
  975. package/dist/node_modules/@rc-component/async-validator/es/validator/type.cjs +0 -19
  976. package/dist/node_modules/@rc-component/async-validator/es/validator/type.js +0 -20
  977. package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.cjs +0 -125
  978. package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.js +0 -126
  979. package/dist/node_modules/@rc-component/color-picker/es/color.cjs +0 -61
  980. package/dist/node_modules/@rc-component/color-picker/es/color.js +0 -62
  981. package/dist/node_modules/@rc-component/color-picker/es/components/ColorBlock.cjs +0 -18
  982. package/dist/node_modules/@rc-component/color-picker/es/components/ColorBlock.js +0 -19
  983. package/dist/node_modules/@rc-component/color-picker/es/components/Gradient.cjs +0 -25
  984. package/dist/node_modules/@rc-component/color-picker/es/components/Gradient.js +0 -26
  985. package/dist/node_modules/@rc-component/color-picker/es/components/Handler.cjs +0 -14
  986. package/dist/node_modules/@rc-component/color-picker/es/components/Handler.js +0 -15
  987. package/dist/node_modules/@rc-component/color-picker/es/components/Palette.cjs +0 -13
  988. package/dist/node_modules/@rc-component/color-picker/es/components/Palette.js +0 -14
  989. package/dist/node_modules/@rc-component/color-picker/es/components/Picker.cjs +0 -63
  990. package/dist/node_modules/@rc-component/color-picker/es/components/Picker.js +0 -64
  991. package/dist/node_modules/@rc-component/color-picker/es/components/Slider.cjs +0 -86
  992. package/dist/node_modules/@rc-component/color-picker/es/components/Slider.js +0 -87
  993. package/dist/node_modules/@rc-component/color-picker/es/components/Transform.cjs +0 -16
  994. package/dist/node_modules/@rc-component/color-picker/es/components/Transform.js +0 -17
  995. package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorDrag.cjs +0 -81
  996. package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorDrag.js +0 -82
  997. package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorState.cjs +0 -17
  998. package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorState.js +0 -18
  999. package/dist/node_modules/@rc-component/color-picker/es/hooks/useComponent.cjs +0 -29
  1000. package/dist/node_modules/@rc-component/color-picker/es/hooks/useComponent.js +0 -11
  1001. package/dist/node_modules/@rc-component/color-picker/es/util.cjs +0 -67
  1002. package/dist/node_modules/@rc-component/color-picker/es/util.js +0 -68
  1003. package/dist/node_modules/@rc-component/context/es/Immutable.cjs +0 -77
  1004. package/dist/node_modules/@rc-component/context/es/Immutable.js +0 -59
  1005. package/dist/node_modules/@rc-component/context/es/context.cjs +0 -95
  1006. package/dist/node_modules/@rc-component/context/es/context.js +0 -77
  1007. package/dist/node_modules/@rc-component/portal/es/Context.cjs +0 -23
  1008. package/dist/node_modules/@rc-component/portal/es/Context.js +0 -5
  1009. package/dist/node_modules/@rc-component/portal/es/Portal.cjs +0 -91
  1010. package/dist/node_modules/@rc-component/portal/es/Portal.js +0 -73
  1011. package/dist/node_modules/@rc-component/portal/es/index.cjs +0 -4
  1012. package/dist/node_modules/@rc-component/portal/es/index.js +0 -4
  1013. package/dist/node_modules/@rc-component/portal/es/mock.cjs +0 -7
  1014. package/dist/node_modules/@rc-component/portal/es/mock.js +0 -8
  1015. package/dist/node_modules/@rc-component/portal/es/useDom.cjs +0 -81
  1016. package/dist/node_modules/@rc-component/portal/es/useDom.js +0 -63
  1017. package/dist/node_modules/@rc-component/portal/es/useScrollLocker.cjs +0 -48
  1018. package/dist/node_modules/@rc-component/portal/es/useScrollLocker.js +0 -30
  1019. package/dist/node_modules/@rc-component/portal/es/util.cjs +0 -5
  1020. package/dist/node_modules/@rc-component/portal/es/util.js +0 -6
  1021. package/dist/node_modules/@rc-component/trigger/es/Popup/Arrow.cjs +0 -62
  1022. package/dist/node_modules/@rc-component/trigger/es/Popup/Arrow.js +0 -44
  1023. package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.cjs +0 -45
  1024. package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.js +0 -27
  1025. package/dist/node_modules/@rc-component/trigger/es/Popup/PopupContent.cjs +0 -31
  1026. package/dist/node_modules/@rc-component/trigger/es/Popup/PopupContent.js +0 -13
  1027. package/dist/node_modules/@rc-component/trigger/es/Popup/index.cjs +0 -156
  1028. package/dist/node_modules/@rc-component/trigger/es/Popup/index.js +0 -138
  1029. package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.cjs +0 -37
  1030. package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.js +0 -19
  1031. package/dist/node_modules/@rc-component/trigger/es/context.cjs +0 -23
  1032. package/dist/node_modules/@rc-component/trigger/es/context.js +0 -5
  1033. package/dist/node_modules/@rc-component/trigger/es/hooks/useAction.cjs +0 -44
  1034. package/dist/node_modules/@rc-component/trigger/es/hooks/useAction.js +0 -26
  1035. package/dist/node_modules/@rc-component/trigger/es/hooks/useAlign.cjs +0 -441
  1036. package/dist/node_modules/@rc-component/trigger/es/hooks/useAlign.js +0 -423
  1037. package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.cjs +0 -36
  1038. package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.js +0 -37
  1039. package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.cjs +0 -71
  1040. package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.js +0 -53
  1041. package/dist/node_modules/@rc-component/trigger/es/index.cjs +0 -368
  1042. package/dist/node_modules/@rc-component/trigger/es/index.js +0 -349
  1043. package/dist/node_modules/@rc-component/trigger/es/util.cjs +0 -109
  1044. package/dist/node_modules/@rc-component/trigger/es/util.js +0 -110
  1045. package/dist/node_modules/@socket.io/component-emitter/lib/esm/index.cjs +0 -72
  1046. package/dist/node_modules/@socket.io/component-emitter/lib/esm/index.js +0 -73
  1047. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.cjs +0 -67
  1048. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +0 -68
  1049. package/dist/node_modules/@ungap/structured-clone/esm/index.cjs +0 -11
  1050. package/dist/node_modules/@ungap/structured-clone/esm/index.js +0 -11
  1051. package/dist/node_modules/@ungap/structured-clone/esm/serialize.cjs +0 -134
  1052. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +0 -135
  1053. package/dist/node_modules/@ungap/structured-clone/esm/types.cjs +0 -21
  1054. package/dist/node_modules/@ungap/structured-clone/esm/types.js +0 -22
  1055. package/dist/node_modules/antd/es/_util/ActionButton.cjs +0 -118
  1056. package/dist/node_modules/antd/es/_util/ActionButton.js +0 -100
  1057. package/dist/node_modules/antd/es/_util/ContextIsolator.cjs +0 -26
  1058. package/dist/node_modules/antd/es/_util/ContextIsolator.js +0 -27
  1059. package/dist/node_modules/antd/es/_util/PurePanel.cjs +0 -106
  1060. package/dist/node_modules/antd/es/_util/PurePanel.js +0 -87
  1061. package/dist/node_modules/antd/es/_util/colors.cjs +0 -12
  1062. package/dist/node_modules/antd/es/_util/colors.js +0 -13
  1063. package/dist/node_modules/antd/es/_util/easings.cjs +0 -10
  1064. package/dist/node_modules/antd/es/_util/easings.js +0 -11
  1065. package/dist/node_modules/antd/es/_util/extendsObject.cjs +0 -17
  1066. package/dist/node_modules/antd/es/_util/extendsObject.js +0 -18
  1067. package/dist/node_modules/antd/es/_util/gapSize.cjs +0 -12
  1068. package/dist/node_modules/antd/es/_util/gapSize.js +0 -13
  1069. package/dist/node_modules/antd/es/_util/getAllowClear.cjs +0 -15
  1070. package/dist/node_modules/antd/es/_util/getAllowClear.js +0 -16
  1071. package/dist/node_modules/antd/es/_util/getRenderPropValue.cjs +0 -8
  1072. package/dist/node_modules/antd/es/_util/getRenderPropValue.js +0 -9
  1073. package/dist/node_modules/antd/es/_util/getScroll.cjs +0 -27
  1074. package/dist/node_modules/antd/es/_util/getScroll.js +0 -27
  1075. package/dist/node_modules/antd/es/_util/hooks/useForceUpdate.cjs +0 -26
  1076. package/dist/node_modules/antd/es/_util/hooks/useForceUpdate.js +0 -8
  1077. package/dist/node_modules/antd/es/_util/hooks/useMultipleSelect.cjs +0 -31
  1078. package/dist/node_modules/antd/es/_util/hooks/useMultipleSelect.js +0 -32
  1079. package/dist/node_modules/antd/es/_util/hooks/useProxyImperativeHandle.cjs +0 -33
  1080. package/dist/node_modules/antd/es/_util/hooks/useProxyImperativeHandle.js +0 -34
  1081. package/dist/node_modules/antd/es/_util/hooks/useSyncState.cjs +0 -31
  1082. package/dist/node_modules/antd/es/_util/hooks/useSyncState.js +0 -13
  1083. package/dist/node_modules/antd/es/_util/hooks/useZIndex.cjs +0 -58
  1084. package/dist/node_modules/antd/es/_util/hooks/useZIndex.js +0 -59
  1085. package/dist/node_modules/antd/es/_util/isPrimitive.cjs +0 -3
  1086. package/dist/node_modules/antd/es/_util/isPrimitive.js +0 -4
  1087. package/dist/node_modules/antd/es/_util/motion.cjs +0 -45
  1088. package/dist/node_modules/antd/es/_util/motion.js +0 -45
  1089. package/dist/node_modules/antd/es/_util/placements.cjs +0 -176
  1090. package/dist/node_modules/antd/es/_util/placements.js +0 -176
  1091. package/dist/node_modules/antd/es/_util/reactNode.cjs +0 -17
  1092. package/dist/node_modules/antd/es/_util/reactNode.js +0 -18
  1093. package/dist/node_modules/antd/es/_util/responsiveObserver.cjs +0 -114
  1094. package/dist/node_modules/antd/es/_util/responsiveObserver.js +0 -114
  1095. package/dist/node_modules/antd/es/_util/scrollTo.cjs +0 -34
  1096. package/dist/node_modules/antd/es/_util/scrollTo.js +0 -35
  1097. package/dist/node_modules/antd/es/_util/statusUtils.cjs +0 -14
  1098. package/dist/node_modules/antd/es/_util/statusUtils.js +0 -15
  1099. package/dist/node_modules/antd/es/_util/toList.cjs +0 -7
  1100. package/dist/node_modules/antd/es/_util/toList.js +0 -8
  1101. package/dist/node_modules/antd/es/_util/warning.cjs +0 -77
  1102. package/dist/node_modules/antd/es/_util/warning.js +0 -59
  1103. package/dist/node_modules/antd/es/_util/wave/WaveEffect.cjs +0 -154
  1104. package/dist/node_modules/antd/es/_util/wave/WaveEffect.js +0 -136
  1105. package/dist/node_modules/antd/es/_util/wave/index.cjs +0 -52
  1106. package/dist/node_modules/antd/es/_util/wave/index.js +0 -53
  1107. package/dist/node_modules/antd/es/_util/wave/interface.cjs +0 -5
  1108. package/dist/node_modules/antd/es/_util/wave/interface.js +0 -6
  1109. package/dist/node_modules/antd/es/_util/wave/style.cjs +0 -47
  1110. package/dist/node_modules/antd/es/_util/wave/style.js +0 -48
  1111. package/dist/node_modules/antd/es/_util/wave/useWave.cjs +0 -60
  1112. package/dist/node_modules/antd/es/_util/wave/useWave.js +0 -42
  1113. package/dist/node_modules/antd/es/_util/wave/util.cjs +0 -24
  1114. package/dist/node_modules/antd/es/_util/wave/util.js +0 -25
  1115. package/dist/node_modules/antd/es/_util/zindexContext.cjs +0 -7
  1116. package/dist/node_modules/antd/es/_util/zindexContext.js +0 -8
  1117. package/dist/node_modules/antd/es/avatar/Avatar.cjs +0 -189
  1118. package/dist/node_modules/antd/es/avatar/Avatar.js +0 -171
  1119. package/dist/node_modules/antd/es/avatar/AvatarContext.cjs +0 -23
  1120. package/dist/node_modules/antd/es/avatar/AvatarContext.js +0 -5
  1121. package/dist/node_modules/antd/es/avatar/AvatarGroup.cjs +0 -123
  1122. package/dist/node_modules/antd/es/avatar/AvatarGroup.js +0 -105
  1123. package/dist/node_modules/antd/es/avatar/index.cjs +0 -6
  1124. package/dist/node_modules/antd/es/avatar/index.js +0 -7
  1125. package/dist/node_modules/antd/es/avatar/style/index.cjs +0 -146
  1126. package/dist/node_modules/antd/es/avatar/style/index.js +0 -146
  1127. package/dist/node_modules/antd/es/breadcrumb/Breadcrumb.cjs +0 -168
  1128. package/dist/node_modules/antd/es/breadcrumb/Breadcrumb.js +0 -150
  1129. package/dist/node_modules/antd/es/breadcrumb/BreadcrumbItem.cjs +0 -112
  1130. package/dist/node_modules/antd/es/breadcrumb/BreadcrumbItem.js +0 -93
  1131. package/dist/node_modules/antd/es/breadcrumb/BreadcrumbSeparator.cjs +0 -38
  1132. package/dist/node_modules/antd/es/breadcrumb/BreadcrumbSeparator.js +0 -20
  1133. package/dist/node_modules/antd/es/breadcrumb/index.cjs +0 -3
  1134. package/dist/node_modules/antd/es/breadcrumb/index.js +0 -4
  1135. package/dist/node_modules/antd/es/breadcrumb/style/index.cjs +0 -113
  1136. package/dist/node_modules/antd/es/breadcrumb/style/index.js +0 -113
  1137. package/dist/node_modules/antd/es/breadcrumb/useItemRender.cjs +0 -75
  1138. package/dist/node_modules/antd/es/breadcrumb/useItemRender.js +0 -56
  1139. package/dist/node_modules/antd/es/breadcrumb/useItems.cjs +0 -44
  1140. package/dist/node_modules/antd/es/breadcrumb/useItems.js +0 -45
  1141. package/dist/node_modules/antd/es/button/DefaultLoadingIcon.cjs +0 -80
  1142. package/dist/node_modules/antd/es/button/DefaultLoadingIcon.js +0 -81
  1143. package/dist/node_modules/antd/es/button/IconWrapper.cjs +0 -18
  1144. package/dist/node_modules/antd/es/button/IconWrapper.js +0 -19
  1145. package/dist/node_modules/antd/es/button/button-group.cjs +0 -89
  1146. package/dist/node_modules/antd/es/button/button-group.js +0 -70
  1147. package/dist/node_modules/antd/es/button/button.cjs +0 -251
  1148. package/dist/node_modules/antd/es/button/button.js +0 -252
  1149. package/dist/node_modules/antd/es/button/buttonHelpers.cjs +0 -64
  1150. package/dist/node_modules/antd/es/button/buttonHelpers.js +0 -65
  1151. package/dist/node_modules/antd/es/button/index.cjs +0 -4
  1152. package/dist/node_modules/antd/es/button/index.js +0 -4
  1153. package/dist/node_modules/antd/es/button/style/compact.cjs +0 -54
  1154. package/dist/node_modules/antd/es/button/style/compact.js +0 -55
  1155. package/dist/node_modules/antd/es/button/style/group.cjs +0 -70
  1156. package/dist/node_modules/antd/es/button/style/group.js +0 -71
  1157. package/dist/node_modules/antd/es/button/style/index.cjs +0 -491
  1158. package/dist/node_modules/antd/es/button/style/index.js +0 -492
  1159. package/dist/node_modules/antd/es/button/style/token.cjs +0 -93
  1160. package/dist/node_modules/antd/es/button/style/token.js +0 -94
  1161. package/dist/node_modules/antd/es/calendar/locale/en_US.cjs +0 -3
  1162. package/dist/node_modules/antd/es/calendar/locale/en_US.js +0 -4
  1163. package/dist/node_modules/antd/es/card/Card.cjs +0 -207
  1164. package/dist/node_modules/antd/es/card/Card.js +0 -189
  1165. package/dist/node_modules/antd/es/card/Grid.cjs +0 -50
  1166. package/dist/node_modules/antd/es/card/Grid.js +0 -32
  1167. package/dist/node_modules/antd/es/card/Meta.cjs +0 -62
  1168. package/dist/node_modules/antd/es/card/Meta.js +0 -44
  1169. package/dist/node_modules/antd/es/card/index.cjs +0 -11
  1170. package/dist/node_modules/antd/es/card/index.js +0 -12
  1171. package/dist/node_modules/antd/es/card/style/index.cjs +0 -361
  1172. package/dist/node_modules/antd/es/card/style/index.js +0 -361
  1173. package/dist/node_modules/antd/es/checkbox/Checkbox.cjs +0 -148
  1174. package/dist/node_modules/antd/es/checkbox/Checkbox.js +0 -130
  1175. package/dist/node_modules/antd/es/checkbox/Group.cjs +0 -134
  1176. package/dist/node_modules/antd/es/checkbox/Group.js +0 -115
  1177. package/dist/node_modules/antd/es/checkbox/GroupContext.cjs +0 -4
  1178. package/dist/node_modules/antd/es/checkbox/GroupContext.js +0 -5
  1179. package/dist/node_modules/antd/es/checkbox/index.cjs +0 -10
  1180. package/dist/node_modules/antd/es/checkbox/index.js +0 -11
  1181. package/dist/node_modules/antd/es/checkbox/style/index.cjs +0 -247
  1182. package/dist/node_modules/antd/es/checkbox/style/index.js +0 -247
  1183. package/dist/node_modules/antd/es/checkbox/useBubbleLock.cjs +0 -25
  1184. package/dist/node_modules/antd/es/checkbox/useBubbleLock.js +0 -26
  1185. package/dist/node_modules/antd/es/color-picker/color.cjs +0 -118
  1186. package/dist/node_modules/antd/es/color-picker/color.js +0 -119
  1187. package/dist/node_modules/antd/es/color-picker/components/ColorPresets.cjs +0 -20
  1188. package/dist/node_modules/antd/es/color-picker/components/ColorPresets.js +0 -21
  1189. package/dist/node_modules/antd/es/config-provider/DisabledContext.cjs +0 -35
  1190. package/dist/node_modules/antd/es/config-provider/DisabledContext.js +0 -16
  1191. package/dist/node_modules/antd/es/config-provider/MotionWrapper.cjs +0 -57
  1192. package/dist/node_modules/antd/es/config-provider/MotionWrapper.js +0 -39
  1193. package/dist/node_modules/antd/es/config-provider/PropWarning.cjs +0 -35
  1194. package/dist/node_modules/antd/es/config-provider/PropWarning.js +0 -17
  1195. package/dist/node_modules/antd/es/config-provider/SizeContext.cjs +0 -35
  1196. package/dist/node_modules/antd/es/config-provider/SizeContext.js +0 -16
  1197. package/dist/node_modules/antd/es/config-provider/UnstableContext.cjs +0 -41
  1198. package/dist/node_modules/antd/es/config-provider/UnstableContext.js +0 -22
  1199. package/dist/node_modules/antd/es/config-provider/context.cjs +0 -62
  1200. package/dist/node_modules/antd/es/config-provider/context.js +0 -44
  1201. package/dist/node_modules/antd/es/config-provider/cssVariables.cjs +0 -71
  1202. package/dist/node_modules/antd/es/config-provider/cssVariables.js +0 -72
  1203. package/dist/node_modules/antd/es/config-provider/defaultRenderEmpty.cjs +0 -40
  1204. package/dist/node_modules/antd/es/config-provider/defaultRenderEmpty.js +0 -41
  1205. package/dist/node_modules/antd/es/config-provider/hooks/useCSSVarCls.cjs +0 -22
  1206. package/dist/node_modules/antd/es/config-provider/hooks/useCSSVarCls.js +0 -23
  1207. package/dist/node_modules/antd/es/config-provider/hooks/useConfig.cjs +0 -13
  1208. package/dist/node_modules/antd/es/config-provider/hooks/useConfig.js +0 -14
  1209. package/dist/node_modules/antd/es/config-provider/hooks/useSize.cjs +0 -20
  1210. package/dist/node_modules/antd/es/config-provider/hooks/useSize.js +0 -21
  1211. package/dist/node_modules/antd/es/config-provider/hooks/useTheme.cjs +0 -46
  1212. package/dist/node_modules/antd/es/config-provider/hooks/useTheme.js +0 -47
  1213. package/dist/node_modules/antd/es/config-provider/hooks/useThemeKey.cjs +0 -28
  1214. package/dist/node_modules/antd/es/config-provider/hooks/useThemeKey.js +0 -10
  1215. package/dist/node_modules/antd/es/config-provider/index.cjs +0 -414
  1216. package/dist/node_modules/antd/es/config-provider/index.js +0 -396
  1217. package/dist/node_modules/antd/es/date-picker/PickerButton.cjs +0 -27
  1218. package/dist/node_modules/antd/es/date-picker/PickerButton.js +0 -9
  1219. package/dist/node_modules/antd/es/date-picker/generatePicker/constant.cjs +0 -16
  1220. package/dist/node_modules/antd/es/date-picker/generatePicker/constant.js +0 -17
  1221. package/dist/node_modules/antd/es/date-picker/generatePicker/generateRangePicker.cjs +0 -170
  1222. package/dist/node_modules/antd/es/date-picker/generatePicker/generateRangePicker.js +0 -153
  1223. package/dist/node_modules/antd/es/date-picker/generatePicker/generateSinglePicker.cjs +0 -202
  1224. package/dist/node_modules/antd/es/date-picker/generatePicker/generateSinglePicker.js +0 -185
  1225. package/dist/node_modules/antd/es/date-picker/generatePicker/index.cjs +0 -26
  1226. package/dist/node_modules/antd/es/date-picker/generatePicker/index.js +0 -27
  1227. package/dist/node_modules/antd/es/date-picker/generatePicker/useComponents.cjs +0 -9
  1228. package/dist/node_modules/antd/es/date-picker/generatePicker/useComponents.js +0 -10
  1229. package/dist/node_modules/antd/es/date-picker/index.cjs +0 -11
  1230. package/dist/node_modules/antd/es/date-picker/index.js +0 -12
  1231. package/dist/node_modules/antd/es/date-picker/locale/en_US.cjs +0 -19
  1232. package/dist/node_modules/antd/es/date-picker/locale/en_US.js +0 -20
  1233. package/dist/node_modules/antd/es/date-picker/style/index.cjs +0 -462
  1234. package/dist/node_modules/antd/es/date-picker/style/index.js +0 -463
  1235. package/dist/node_modules/antd/es/date-picker/style/multiple.cjs +0 -114
  1236. package/dist/node_modules/antd/es/date-picker/style/multiple.js +0 -115
  1237. package/dist/node_modules/antd/es/date-picker/style/panel.cjs +0 -618
  1238. package/dist/node_modules/antd/es/date-picker/style/panel.js +0 -618
  1239. package/dist/node_modules/antd/es/date-picker/style/token.cjs +0 -74
  1240. package/dist/node_modules/antd/es/date-picker/style/token.js +0 -75
  1241. package/dist/node_modules/antd/es/date-picker/style/variants.cjs +0 -52
  1242. package/dist/node_modules/antd/es/date-picker/style/variants.js +0 -53
  1243. package/dist/node_modules/antd/es/date-picker/util.cjs +0 -89
  1244. package/dist/node_modules/antd/es/date-picker/util.js +0 -71
  1245. package/dist/node_modules/antd/es/dropdown/dropdown-button.cjs +0 -132
  1246. package/dist/node_modules/antd/es/dropdown/dropdown-button.js +0 -114
  1247. package/dist/node_modules/antd/es/dropdown/dropdown.cjs +0 -235
  1248. package/dist/node_modules/antd/es/dropdown/dropdown.js +0 -217
  1249. package/dist/node_modules/antd/es/dropdown/index.cjs +0 -6
  1250. package/dist/node_modules/antd/es/dropdown/index.js +0 -7
  1251. package/dist/node_modules/antd/es/dropdown/style/index.cjs +0 -320
  1252. package/dist/node_modules/antd/es/dropdown/style/index.js +0 -320
  1253. package/dist/node_modules/antd/es/dropdown/style/status.cjs +0 -24
  1254. package/dist/node_modules/antd/es/dropdown/style/status.js +0 -25
  1255. package/dist/node_modules/antd/es/empty/empty.cjs +0 -95
  1256. package/dist/node_modules/antd/es/empty/empty.js +0 -77
  1257. package/dist/node_modules/antd/es/empty/index.cjs +0 -103
  1258. package/dist/node_modules/antd/es/empty/index.js +0 -85
  1259. package/dist/node_modules/antd/es/empty/simple.cjs +0 -85
  1260. package/dist/node_modules/antd/es/empty/simple.js +0 -68
  1261. package/dist/node_modules/antd/es/empty/style/index.cjs +0 -88
  1262. package/dist/node_modules/antd/es/empty/style/index.js +0 -89
  1263. package/dist/node_modules/antd/es/form/ErrorList.cjs +0 -117
  1264. package/dist/node_modules/antd/es/form/ErrorList.js +0 -99
  1265. package/dist/node_modules/antd/es/form/Form.cjs +0 -178
  1266. package/dist/node_modules/antd/es/form/Form.js +0 -159
  1267. package/dist/node_modules/antd/es/form/FormItem/ItemHolder.cjs +0 -174
  1268. package/dist/node_modules/antd/es/form/FormItem/ItemHolder.js +0 -156
  1269. package/dist/node_modules/antd/es/form/FormItem/StatusProvider.cjs +0 -92
  1270. package/dist/node_modules/antd/es/form/FormItem/StatusProvider.js +0 -74
  1271. package/dist/node_modules/antd/es/form/FormItem/index.cjs +0 -275
  1272. package/dist/node_modules/antd/es/form/FormItem/index.js +0 -257
  1273. package/dist/node_modules/antd/es/form/FormItemInput.cjs +0 -141
  1274. package/dist/node_modules/antd/es/form/FormItemInput.js +0 -123
  1275. package/dist/node_modules/antd/es/form/FormItemLabel.cjs +0 -124
  1276. package/dist/node_modules/antd/es/form/FormItemLabel.js +0 -106
  1277. package/dist/node_modules/antd/es/form/FormList.cjs +0 -62
  1278. package/dist/node_modules/antd/es/form/FormList.js +0 -44
  1279. package/dist/node_modules/antd/es/form/context.cjs +0 -73
  1280. package/dist/node_modules/antd/es/form/context.js +0 -55
  1281. package/dist/node_modules/antd/es/form/hooks/useChildren.cjs +0 -10
  1282. package/dist/node_modules/antd/es/form/hooks/useChildren.js +0 -11
  1283. package/dist/node_modules/antd/es/form/hooks/useDebounce.cjs +0 -34
  1284. package/dist/node_modules/antd/es/form/hooks/useDebounce.js +0 -16
  1285. package/dist/node_modules/antd/es/form/hooks/useForm.cjs +0 -96
  1286. package/dist/node_modules/antd/es/form/hooks/useForm.js +0 -78
  1287. package/dist/node_modules/antd/es/form/hooks/useFormInstance.cjs +0 -29
  1288. package/dist/node_modules/antd/es/form/hooks/useFormInstance.js +0 -11
  1289. package/dist/node_modules/antd/es/form/hooks/useFormItemStatus.cjs +0 -41
  1290. package/dist/node_modules/antd/es/form/hooks/useFormItemStatus.js +0 -23
  1291. package/dist/node_modules/antd/es/form/hooks/useFormWarning.cjs +0 -39
  1292. package/dist/node_modules/antd/es/form/hooks/useFormWarning.js +0 -21
  1293. package/dist/node_modules/antd/es/form/hooks/useFrameState.cjs +0 -57
  1294. package/dist/node_modules/antd/es/form/hooks/useFrameState.js +0 -39
  1295. package/dist/node_modules/antd/es/form/hooks/useItemRef.cjs +0 -41
  1296. package/dist/node_modules/antd/es/form/hooks/useItemRef.js +0 -23
  1297. package/dist/node_modules/antd/es/form/hooks/useVariants.cjs +0 -45
  1298. package/dist/node_modules/antd/es/form/hooks/useVariants.js +0 -27
  1299. package/dist/node_modules/antd/es/form/index.cjs +0 -23
  1300. package/dist/node_modules/antd/es/form/index.js +0 -24
  1301. package/dist/node_modules/antd/es/form/style/explain.cjs +0 -45
  1302. package/dist/node_modules/antd/es/form/style/explain.js +0 -46
  1303. package/dist/node_modules/antd/es/form/style/fallbackCmp.cjs +0 -39
  1304. package/dist/node_modules/antd/es/form/style/fallbackCmp.js +0 -40
  1305. package/dist/node_modules/antd/es/form/style/index.cjs +0 -521
  1306. package/dist/node_modules/antd/es/form/style/index.js +0 -521
  1307. package/dist/node_modules/antd/es/form/util.cjs +0 -36
  1308. package/dist/node_modules/antd/es/form/util.js +0 -37
  1309. package/dist/node_modules/antd/es/form/validateMessagesContext.cjs +0 -4
  1310. package/dist/node_modules/antd/es/form/validateMessagesContext.js +0 -5
  1311. package/dist/node_modules/antd/es/grid/RowContext.cjs +0 -4
  1312. package/dist/node_modules/antd/es/grid/RowContext.js +0 -5
  1313. package/dist/node_modules/antd/es/grid/col.cjs +0 -120
  1314. package/dist/node_modules/antd/es/grid/col.js +0 -102
  1315. package/dist/node_modules/antd/es/grid/hooks/useBreakpoint.cjs +0 -23
  1316. package/dist/node_modules/antd/es/grid/hooks/useBreakpoint.js +0 -24
  1317. package/dist/node_modules/antd/es/grid/hooks/useGutter.cjs +0 -29
  1318. package/dist/node_modules/antd/es/grid/hooks/useGutter.js +0 -30
  1319. package/dist/node_modules/antd/es/grid/row.cjs +0 -114
  1320. package/dist/node_modules/antd/es/grid/row.js +0 -96
  1321. package/dist/node_modules/antd/es/grid/style/index.cjs +0 -180
  1322. package/dist/node_modules/antd/es/grid/style/index.js +0 -181
  1323. package/dist/node_modules/antd/es/input/Group.cjs +0 -65
  1324. package/dist/node_modules/antd/es/input/Group.js +0 -48
  1325. package/dist/node_modules/antd/es/input/Input.cjs +0 -166
  1326. package/dist/node_modules/antd/es/input/Input.js +0 -166
  1327. package/dist/node_modules/antd/es/input/OTP/OTPInput.cjs +0 -89
  1328. package/dist/node_modules/antd/es/input/OTP/OTPInput.js +0 -71
  1329. package/dist/node_modules/antd/es/input/OTP/index.cjs +0 -216
  1330. package/dist/node_modules/antd/es/input/OTP/index.js +0 -198
  1331. package/dist/node_modules/antd/es/input/Password.cjs +0 -124
  1332. package/dist/node_modules/antd/es/input/Password.js +0 -107
  1333. package/dist/node_modules/antd/es/input/Search.cjs +0 -169
  1334. package/dist/node_modules/antd/es/input/Search.js +0 -151
  1335. package/dist/node_modules/antd/es/input/TextArea.cjs +0 -148
  1336. package/dist/node_modules/antd/es/input/TextArea.js +0 -131
  1337. package/dist/node_modules/antd/es/input/hooks/useRemovePasswordTimeout.cjs +0 -25
  1338. package/dist/node_modules/antd/es/input/hooks/useRemovePasswordTimeout.js +0 -26
  1339. package/dist/node_modules/antd/es/input/index.cjs +0 -14
  1340. package/dist/node_modules/antd/es/input/index.js +0 -15
  1341. package/dist/node_modules/antd/es/input/style/index.cjs +0 -698
  1342. package/dist/node_modules/antd/es/input/style/index.js +0 -698
  1343. package/dist/node_modules/antd/es/input/style/otp.cjs +0 -51
  1344. package/dist/node_modules/antd/es/input/style/otp.js +0 -52
  1345. package/dist/node_modules/antd/es/input/style/textarea.cjs +0 -104
  1346. package/dist/node_modules/antd/es/input/style/textarea.js +0 -104
  1347. package/dist/node_modules/antd/es/input/style/token.cjs +0 -74
  1348. package/dist/node_modules/antd/es/input/style/token.js +0 -75
  1349. package/dist/node_modules/antd/es/input/style/variants.cjs +0 -322
  1350. package/dist/node_modules/antd/es/input/style/variants.js +0 -323
  1351. package/dist/node_modules/antd/es/input/utils.cjs +0 -5
  1352. package/dist/node_modules/antd/es/input/utils.js +0 -6
  1353. package/dist/node_modules/antd/es/layout/Sider.cjs +0 -193
  1354. package/dist/node_modules/antd/es/layout/Sider.js +0 -175
  1355. package/dist/node_modules/antd/es/layout/context.cjs +0 -28
  1356. package/dist/node_modules/antd/es/layout/context.js +0 -10
  1357. package/dist/node_modules/antd/es/layout/style/index.cjs +0 -130
  1358. package/dist/node_modules/antd/es/layout/style/index.js +0 -131
  1359. package/dist/node_modules/antd/es/layout/style/sider.cjs +0 -130
  1360. package/dist/node_modules/antd/es/layout/style/sider.js +0 -131
  1361. package/dist/node_modules/antd/es/locale/context.cjs +0 -4
  1362. package/dist/node_modules/antd/es/locale/context.js +0 -5
  1363. package/dist/node_modules/antd/es/locale/en_US.cjs +0 -146
  1364. package/dist/node_modules/antd/es/locale/en_US.js +0 -147
  1365. package/dist/node_modules/antd/es/locale/index.cjs +0 -52
  1366. package/dist/node_modules/antd/es/locale/index.js +0 -33
  1367. package/dist/node_modules/antd/es/locale/useLocale.cjs +0 -41
  1368. package/dist/node_modules/antd/es/locale/useLocale.js +0 -23
  1369. package/dist/node_modules/antd/es/menu/MenuContext.cjs +0 -8
  1370. package/dist/node_modules/antd/es/menu/MenuContext.js +0 -9
  1371. package/dist/node_modules/antd/es/menu/MenuDivider.cjs +0 -52
  1372. package/dist/node_modules/antd/es/menu/MenuDivider.js +0 -34
  1373. package/dist/node_modules/antd/es/menu/MenuItem.cjs +0 -100
  1374. package/dist/node_modules/antd/es/menu/MenuItem.js +0 -82
  1375. package/dist/node_modules/antd/es/menu/OverrideContext.cjs +0 -59
  1376. package/dist/node_modules/antd/es/menu/OverrideContext.js +0 -40
  1377. package/dist/node_modules/antd/es/menu/SubMenu.cjs +0 -74
  1378. package/dist/node_modules/antd/es/menu/SubMenu.js +0 -56
  1379. package/dist/node_modules/antd/es/menu/index.cjs +0 -50
  1380. package/dist/node_modules/antd/es/menu/index.js +0 -33
  1381. package/dist/node_modules/antd/es/menu/menu.cjs +0 -160
  1382. package/dist/node_modules/antd/es/menu/menu.js +0 -143
  1383. package/dist/node_modules/antd/es/menu/style/horizontal.cjs +0 -58
  1384. package/dist/node_modules/antd/es/menu/style/horizontal.js +0 -59
  1385. package/dist/node_modules/antd/es/menu/style/index.cjs +0 -579
  1386. package/dist/node_modules/antd/es/menu/style/index.js +0 -579
  1387. package/dist/node_modules/antd/es/menu/style/rtl.cjs +0 -41
  1388. package/dist/node_modules/antd/es/menu/style/rtl.js +0 -42
  1389. package/dist/node_modules/antd/es/menu/style/theme.cjs +0 -228
  1390. package/dist/node_modules/antd/es/menu/style/theme.js +0 -229
  1391. package/dist/node_modules/antd/es/menu/style/vertical.cjs +0 -200
  1392. package/dist/node_modules/antd/es/menu/style/vertical.js +0 -201
  1393. package/dist/node_modules/antd/es/modal/locale.cjs +0 -18
  1394. package/dist/node_modules/antd/es/modal/locale.js +0 -19
  1395. package/dist/node_modules/antd/es/pagination/Pagination.cjs +0 -206
  1396. package/dist/node_modules/antd/es/pagination/Pagination.js +0 -188
  1397. package/dist/node_modules/antd/es/pagination/index.cjs +0 -3
  1398. package/dist/node_modules/antd/es/pagination/index.js +0 -4
  1399. package/dist/node_modules/antd/es/pagination/style/bordered.cjs +0 -105
  1400. package/dist/node_modules/antd/es/pagination/style/bordered.js +0 -106
  1401. package/dist/node_modules/antd/es/pagination/style/index.cjs +0 -545
  1402. package/dist/node_modules/antd/es/pagination/style/index.js +0 -545
  1403. package/dist/node_modules/antd/es/pagination/useShowSizeChanger.cjs +0 -14
  1404. package/dist/node_modules/antd/es/pagination/useShowSizeChanger.js +0 -15
  1405. package/dist/node_modules/antd/es/popconfirm/PurePanel.cjs +0 -117
  1406. package/dist/node_modules/antd/es/popconfirm/PurePanel.js +0 -98
  1407. package/dist/node_modules/antd/es/popconfirm/index.cjs +0 -126
  1408. package/dist/node_modules/antd/es/popconfirm/index.js +0 -108
  1409. package/dist/node_modules/antd/es/popconfirm/style/index.cjs +0 -84
  1410. package/dist/node_modules/antd/es/popconfirm/style/index.js +0 -84
  1411. package/dist/node_modules/antd/es/popover/PurePanel.cjs +0 -100
  1412. package/dist/node_modules/antd/es/popover/PurePanel.js +0 -81
  1413. package/dist/node_modules/antd/es/popover/index.cjs +0 -127
  1414. package/dist/node_modules/antd/es/popover/index.js +0 -109
  1415. package/dist/node_modules/antd/es/popover/style/index.cjs +0 -179
  1416. package/dist/node_modules/antd/es/popover/style/index.js +0 -179
  1417. package/dist/node_modules/antd/es/progress/Circle.cjs +0 -98
  1418. package/dist/node_modules/antd/es/progress/Circle.js +0 -80
  1419. package/dist/node_modules/antd/es/progress/Line.cjs +0 -149
  1420. package/dist/node_modules/antd/es/progress/Line.js +0 -130
  1421. package/dist/node_modules/antd/es/progress/Steps.cjs +0 -65
  1422. package/dist/node_modules/antd/es/progress/Steps.js +0 -47
  1423. package/dist/node_modules/antd/es/progress/index.cjs +0 -3
  1424. package/dist/node_modules/antd/es/progress/index.js +0 -4
  1425. package/dist/node_modules/antd/es/progress/progress.cjs +0 -180
  1426. package/dist/node_modules/antd/es/progress/progress.js +0 -162
  1427. package/dist/node_modules/antd/es/progress/style/index.cjs +0 -322
  1428. package/dist/node_modules/antd/es/progress/style/index.js +0 -322
  1429. package/dist/node_modules/antd/es/progress/utils.cjs +0 -89
  1430. package/dist/node_modules/antd/es/progress/utils.js +0 -90
  1431. package/dist/node_modules/antd/es/radio/context.cjs +0 -30
  1432. package/dist/node_modules/antd/es/radio/context.js +0 -11
  1433. package/dist/node_modules/antd/es/radio/group.cjs +0 -134
  1434. package/dist/node_modules/antd/es/radio/group.js +0 -116
  1435. package/dist/node_modules/antd/es/radio/index.cjs +0 -12
  1436. package/dist/node_modules/antd/es/radio/index.js +0 -12
  1437. package/dist/node_modules/antd/es/radio/radio.cjs +0 -123
  1438. package/dist/node_modules/antd/es/radio/radio.js +0 -105
  1439. package/dist/node_modules/antd/es/radio/radioButton.cjs +0 -52
  1440. package/dist/node_modules/antd/es/radio/radioButton.js +0 -34
  1441. package/dist/node_modules/antd/es/radio/style/index.cjs +0 -477
  1442. package/dist/node_modules/antd/es/radio/style/index.js +0 -477
  1443. package/dist/node_modules/antd/es/result/index.cjs +0 -134
  1444. package/dist/node_modules/antd/es/result/index.js +0 -115
  1445. package/dist/node_modules/antd/es/result/noFound.cjs +0 -255
  1446. package/dist/node_modules/antd/es/result/noFound.js +0 -237
  1447. package/dist/node_modules/antd/es/result/serverError.cjs +0 -295
  1448. package/dist/node_modules/antd/es/result/serverError.js +0 -277
  1449. package/dist/node_modules/antd/es/result/style/index.cjs +0 -128
  1450. package/dist/node_modules/antd/es/result/style/index.js +0 -128
  1451. package/dist/node_modules/antd/es/result/unauthorized.cjs +0 -245
  1452. package/dist/node_modules/antd/es/result/unauthorized.js +0 -227
  1453. package/dist/node_modules/antd/es/segmented/index.cjs +0 -99
  1454. package/dist/node_modules/antd/es/segmented/index.js +0 -81
  1455. package/dist/node_modules/antd/es/segmented/style/index.cjs +0 -232
  1456. package/dist/node_modules/antd/es/segmented/style/index.js +0 -232
  1457. package/dist/node_modules/antd/es/select/index.cjs +0 -246
  1458. package/dist/node_modules/antd/es/select/index.js +0 -228
  1459. package/dist/node_modules/antd/es/select/mergedBuiltinPlacements.cjs +0 -35
  1460. package/dist/node_modules/antd/es/select/mergedBuiltinPlacements.js +0 -36
  1461. package/dist/node_modules/antd/es/select/style/dropdown.cjs +0 -148
  1462. package/dist/node_modules/antd/es/select/style/dropdown.js +0 -149
  1463. package/dist/node_modules/antd/es/select/style/index.cjs +0 -258
  1464. package/dist/node_modules/antd/es/select/style/index.js +0 -259
  1465. package/dist/node_modules/antd/es/select/style/multiple.cjs +0 -298
  1466. package/dist/node_modules/antd/es/select/style/multiple.js +0 -298
  1467. package/dist/node_modules/antd/es/select/style/single.cjs +0 -170
  1468. package/dist/node_modules/antd/es/select/style/single.js +0 -171
  1469. package/dist/node_modules/antd/es/select/style/token.cjs +0 -60
  1470. package/dist/node_modules/antd/es/select/style/token.js +0 -61
  1471. package/dist/node_modules/antd/es/select/style/variants.cjs +0 -229
  1472. package/dist/node_modules/antd/es/select/style/variants.js +0 -230
  1473. package/dist/node_modules/antd/es/select/useIcons.cjs +0 -100
  1474. package/dist/node_modules/antd/es/select/useIcons.js +0 -82
  1475. package/dist/node_modules/antd/es/select/useShowArrow.cjs +0 -5
  1476. package/dist/node_modules/antd/es/select/useShowArrow.js +0 -6
  1477. package/dist/node_modules/antd/es/skeleton/Avatar.cjs +0 -54
  1478. package/dist/node_modules/antd/es/skeleton/Avatar.js +0 -36
  1479. package/dist/node_modules/antd/es/skeleton/Button.cjs +0 -54
  1480. package/dist/node_modules/antd/es/skeleton/Button.js +0 -36
  1481. package/dist/node_modules/antd/es/skeleton/Element.cjs +0 -50
  1482. package/dist/node_modules/antd/es/skeleton/Element.js +0 -32
  1483. package/dist/node_modules/antd/es/skeleton/Image.cjs +0 -57
  1484. package/dist/node_modules/antd/es/skeleton/Image.js +0 -39
  1485. package/dist/node_modules/antd/es/skeleton/Input.cjs +0 -54
  1486. package/dist/node_modules/antd/es/skeleton/Input.js +0 -36
  1487. package/dist/node_modules/antd/es/skeleton/Node.cjs +0 -50
  1488. package/dist/node_modules/antd/es/skeleton/Node.js +0 -32
  1489. package/dist/node_modules/antd/es/skeleton/Paragraph.cjs +0 -59
  1490. package/dist/node_modules/antd/es/skeleton/Paragraph.js +0 -41
  1491. package/dist/node_modules/antd/es/skeleton/Skeleton.cjs +0 -152
  1492. package/dist/node_modules/antd/es/skeleton/Skeleton.js +0 -134
  1493. package/dist/node_modules/antd/es/skeleton/Title.cjs +0 -40
  1494. package/dist/node_modules/antd/es/skeleton/Title.js +0 -22
  1495. package/dist/node_modules/antd/es/skeleton/index.cjs +0 -3
  1496. package/dist/node_modules/antd/es/skeleton/index.js +0 -4
  1497. package/dist/node_modules/antd/es/skeleton/style/index.cjs +0 -328
  1498. package/dist/node_modules/antd/es/skeleton/style/index.js +0 -328
  1499. package/dist/node_modules/antd/es/space/Compact.cjs +0 -122
  1500. package/dist/node_modules/antd/es/space/Compact.js +0 -103
  1501. package/dist/node_modules/antd/es/space/Item.cjs +0 -44
  1502. package/dist/node_modules/antd/es/space/Item.js +0 -26
  1503. package/dist/node_modules/antd/es/space/context.cjs +0 -8
  1504. package/dist/node_modules/antd/es/space/context.js +0 -9
  1505. package/dist/node_modules/antd/es/space/index.cjs +0 -127
  1506. package/dist/node_modules/antd/es/space/index.js +0 -109
  1507. package/dist/node_modules/antd/es/space/style/compact.cjs +0 -18
  1508. package/dist/node_modules/antd/es/space/style/compact.js +0 -19
  1509. package/dist/node_modules/antd/es/space/style/index.cjs +0 -97
  1510. package/dist/node_modules/antd/es/space/style/index.js +0 -98
  1511. package/dist/node_modules/antd/es/spin/Indicator/Looper.cjs +0 -44
  1512. package/dist/node_modules/antd/es/spin/Indicator/Looper.js +0 -26
  1513. package/dist/node_modules/antd/es/spin/Indicator/Progress.cjs +0 -85
  1514. package/dist/node_modules/antd/es/spin/Indicator/Progress.js +0 -67
  1515. package/dist/node_modules/antd/es/spin/Indicator/index.cjs +0 -43
  1516. package/dist/node_modules/antd/es/spin/Indicator/index.js +0 -25
  1517. package/dist/node_modules/antd/es/spin/index.cjs +0 -136
  1518. package/dist/node_modules/antd/es/spin/index.js +0 -118
  1519. package/dist/node_modules/antd/es/spin/style/index.cjs +0 -299
  1520. package/dist/node_modules/antd/es/spin/style/index.js +0 -299
  1521. package/dist/node_modules/antd/es/spin/usePercent.cjs +0 -50
  1522. package/dist/node_modules/antd/es/spin/usePercent.js +0 -32
  1523. package/dist/node_modules/antd/es/style/compact-item-vertical.cjs +0 -43
  1524. package/dist/node_modules/antd/es/style/compact-item-vertical.js +0 -44
  1525. package/dist/node_modules/antd/es/style/compact-item.cjs +0 -64
  1526. package/dist/node_modules/antd/es/style/compact-item.js +0 -65
  1527. package/dist/node_modules/antd/es/style/index.cjs +0 -165
  1528. package/dist/node_modules/antd/es/style/index.js +0 -166
  1529. package/dist/node_modules/antd/es/style/motion/collapse.cjs +0 -19
  1530. package/dist/node_modules/antd/es/style/motion/collapse.js +0 -20
  1531. package/dist/node_modules/antd/es/style/motion/motion.cjs +0 -37
  1532. package/dist/node_modules/antd/es/style/motion/motion.js +0 -38
  1533. package/dist/node_modules/antd/es/style/motion/move.cjs +0 -159
  1534. package/dist/node_modules/antd/es/style/motion/move.js +0 -160
  1535. package/dist/node_modules/antd/es/style/motion/slide.cjs +0 -164
  1536. package/dist/node_modules/antd/es/style/motion/slide.js +0 -165
  1537. package/dist/node_modules/antd/es/style/motion/zoom.cjs +0 -209
  1538. package/dist/node_modules/antd/es/style/motion/zoom.js +0 -210
  1539. package/dist/node_modules/antd/es/style/placementArrow.cjs +0 -170
  1540. package/dist/node_modules/antd/es/style/placementArrow.js +0 -170
  1541. package/dist/node_modules/antd/es/style/roundedArrow.cjs +0 -90
  1542. package/dist/node_modules/antd/es/style/roundedArrow.js +0 -91
  1543. package/dist/node_modules/antd/es/switch/index.cjs +0 -102
  1544. package/dist/node_modules/antd/es/switch/index.js +0 -84
  1545. package/dist/node_modules/antd/es/switch/style/index.cjs +0 -336
  1546. package/dist/node_modules/antd/es/switch/style/index.js +0 -336
  1547. package/dist/node_modules/antd/es/table/Column.cjs +0 -3
  1548. package/dist/node_modules/antd/es/table/Column.js +0 -4
  1549. package/dist/node_modules/antd/es/table/ColumnGroup.cjs +0 -3
  1550. package/dist/node_modules/antd/es/table/ColumnGroup.js +0 -4
  1551. package/dist/node_modules/antd/es/table/ExpandIcon.cjs +0 -49
  1552. package/dist/node_modules/antd/es/table/ExpandIcon.js +0 -31
  1553. package/dist/node_modules/antd/es/table/InternalTable.cjs +0 -402
  1554. package/dist/node_modules/antd/es/table/InternalTable.js +0 -384
  1555. package/dist/node_modules/antd/es/table/RcTable/VirtualTable.cjs +0 -15
  1556. package/dist/node_modules/antd/es/table/RcTable/VirtualTable.js +0 -16
  1557. package/dist/node_modules/antd/es/table/RcTable/index.cjs +0 -15
  1558. package/dist/node_modules/antd/es/table/RcTable/index.js +0 -16
  1559. package/dist/node_modules/antd/es/table/Table.cjs +0 -51
  1560. package/dist/node_modules/antd/es/table/Table.js +0 -33
  1561. package/dist/node_modules/antd/es/table/hooks/useContainerWidth.cjs +0 -16
  1562. package/dist/node_modules/antd/es/table/hooks/useContainerWidth.js +0 -17
  1563. package/dist/node_modules/antd/es/table/hooks/useFilter/FilterDropdown.cjs +0 -486
  1564. package/dist/node_modules/antd/es/table/hooks/useFilter/FilterDropdown.js +0 -467
  1565. package/dist/node_modules/antd/es/table/hooks/useFilter/FilterSearch.cjs +0 -47
  1566. package/dist/node_modules/antd/es/table/hooks/useFilter/FilterSearch.js +0 -29
  1567. package/dist/node_modules/antd/es/table/hooks/useFilter/FilterWrapper.cjs +0 -40
  1568. package/dist/node_modules/antd/es/table/hooks/useFilter/FilterWrapper.js +0 -22
  1569. package/dist/node_modules/antd/es/table/hooks/useFilter/index.cjs +0 -223
  1570. package/dist/node_modules/antd/es/table/hooks/useFilter/index.js +0 -204
  1571. package/dist/node_modules/antd/es/table/hooks/useLazyKVMap.cjs +0 -49
  1572. package/dist/node_modules/antd/es/table/hooks/useLazyKVMap.js +0 -31
  1573. package/dist/node_modules/antd/es/table/hooks/usePagination.cjs +0 -67
  1574. package/dist/node_modules/antd/es/table/hooks/usePagination.js +0 -67
  1575. package/dist/node_modules/antd/es/table/hooks/useSelection.cjs +0 -533
  1576. package/dist/node_modules/antd/es/table/hooks/useSelection.js +0 -515
  1577. package/dist/node_modules/antd/es/table/hooks/useSorter.cjs +0 -392
  1578. package/dist/node_modules/antd/es/table/hooks/useSorter.js +0 -373
  1579. package/dist/node_modules/antd/es/table/hooks/useTitleColumns.cjs +0 -38
  1580. package/dist/node_modules/antd/es/table/hooks/useTitleColumns.js +0 -20
  1581. package/dist/node_modules/antd/es/table/index.cjs +0 -3
  1582. package/dist/node_modules/antd/es/table/index.js +0 -4
  1583. package/dist/node_modules/antd/es/table/style/bordered.cjs +0 -151
  1584. package/dist/node_modules/antd/es/table/style/bordered.js +0 -152
  1585. package/dist/node_modules/antd/es/table/style/ellipsis.cjs +0 -32
  1586. package/dist/node_modules/antd/es/table/style/ellipsis.js +0 -33
  1587. package/dist/node_modules/antd/es/table/style/empty.cjs +0 -21
  1588. package/dist/node_modules/antd/es/table/style/empty.js +0 -22
  1589. package/dist/node_modules/antd/es/table/style/expand.cjs +0 -134
  1590. package/dist/node_modules/antd/es/table/style/expand.js +0 -135
  1591. package/dist/node_modules/antd/es/table/style/filter.cjs +0 -167
  1592. package/dist/node_modules/antd/es/table/style/filter.js +0 -168
  1593. package/dist/node_modules/antd/es/table/style/fixed.cjs +0 -121
  1594. package/dist/node_modules/antd/es/table/style/fixed.js +0 -122
  1595. package/dist/node_modules/antd/es/table/style/index.cjs +0 -335
  1596. package/dist/node_modules/antd/es/table/style/index.js +0 -335
  1597. package/dist/node_modules/antd/es/table/style/pagination.cjs +0 -46
  1598. package/dist/node_modules/antd/es/table/style/pagination.js +0 -47
  1599. package/dist/node_modules/antd/es/table/style/radius.cjs +0 -58
  1600. package/dist/node_modules/antd/es/table/style/radius.js +0 -59
  1601. package/dist/node_modules/antd/es/table/style/rtl.cjs +0 -46
  1602. package/dist/node_modules/antd/es/table/style/rtl.js +0 -47
  1603. package/dist/node_modules/antd/es/table/style/selection.cjs +0 -107
  1604. package/dist/node_modules/antd/es/table/style/selection.js +0 -108
  1605. package/dist/node_modules/antd/es/table/style/size.cjs +0 -58
  1606. package/dist/node_modules/antd/es/table/style/size.js +0 -59
  1607. package/dist/node_modules/antd/es/table/style/sorter.cjs +0 -94
  1608. package/dist/node_modules/antd/es/table/style/sorter.js +0 -95
  1609. package/dist/node_modules/antd/es/table/style/sticky.cjs +0 -67
  1610. package/dist/node_modules/antd/es/table/style/sticky.js +0 -68
  1611. package/dist/node_modules/antd/es/table/style/summary.cjs +0 -40
  1612. package/dist/node_modules/antd/es/table/style/summary.js +0 -41
  1613. package/dist/node_modules/antd/es/table/style/virtual.cjs +0 -85
  1614. package/dist/node_modules/antd/es/table/style/virtual.js +0 -86
  1615. package/dist/node_modules/antd/es/table/util.cjs +0 -30
  1616. package/dist/node_modules/antd/es/table/util.js +0 -31
  1617. package/dist/node_modules/antd/es/tabs/TabPane.cjs +0 -6
  1618. package/dist/node_modules/antd/es/tabs/TabPane.js +0 -7
  1619. package/dist/node_modules/antd/es/tabs/hooks/useAnimateConfig.cjs +0 -36
  1620. package/dist/node_modules/antd/es/tabs/hooks/useAnimateConfig.js +0 -37
  1621. package/dist/node_modules/antd/es/tabs/hooks/useLegacyItems.cjs +0 -63
  1622. package/dist/node_modules/antd/es/tabs/hooks/useLegacyItems.js +0 -45
  1623. package/dist/node_modules/antd/es/tabs/index.cjs +0 -134
  1624. package/dist/node_modules/antd/es/tabs/index.js +0 -116
  1625. package/dist/node_modules/antd/es/tabs/style/index.cjs +0 -851
  1626. package/dist/node_modules/antd/es/tabs/style/index.js +0 -851
  1627. package/dist/node_modules/antd/es/tabs/style/motion.cjs +0 -41
  1628. package/dist/node_modules/antd/es/tabs/style/motion.js +0 -42
  1629. package/dist/node_modules/antd/es/theme/context.cjs +0 -13
  1630. package/dist/node_modules/antd/es/theme/context.js +0 -14
  1631. package/dist/node_modules/antd/es/theme/interface/presetColors.cjs +0 -3
  1632. package/dist/node_modules/antd/es/theme/interface/presetColors.js +0 -4
  1633. package/dist/node_modules/antd/es/theme/themes/default/colorAlgorithm.cjs +0 -9
  1634. package/dist/node_modules/antd/es/theme/themes/default/colorAlgorithm.js +0 -10
  1635. package/dist/node_modules/antd/es/theme/themes/default/colors.cjs +0 -50
  1636. package/dist/node_modules/antd/es/theme/themes/default/colors.js +0 -51
  1637. package/dist/node_modules/antd/es/theme/themes/default/index.cjs +0 -32
  1638. package/dist/node_modules/antd/es/theme/themes/default/index.js +0 -33
  1639. package/dist/node_modules/antd/es/theme/themes/default/theme.cjs +0 -15
  1640. package/dist/node_modules/antd/es/theme/themes/default/theme.js +0 -16
  1641. package/dist/node_modules/antd/es/theme/themes/seed.cjs +0 -70
  1642. package/dist/node_modules/antd/es/theme/themes/seed.js +0 -70
  1643. package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.cjs +0 -86
  1644. package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.js +0 -87
  1645. package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.cjs +0 -19
  1646. package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.js +0 -20
  1647. package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.cjs +0 -12
  1648. package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.js +0 -13
  1649. package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.cjs +0 -36
  1650. package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.js +0 -37
  1651. package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.cjs +0 -22
  1652. package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.js +0 -22
  1653. package/dist/node_modules/antd/es/theme/themes/shared/genRadius.cjs +0 -43
  1654. package/dist/node_modules/antd/es/theme/themes/shared/genRadius.js +0 -44
  1655. package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.cjs +0 -28
  1656. package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.js +0 -29
  1657. package/dist/node_modules/antd/es/theme/useToken.cjs +0 -132
  1658. package/dist/node_modules/antd/es/theme/useToken.js +0 -132
  1659. package/dist/node_modules/antd/es/theme/util/alias.cjs +0 -170
  1660. package/dist/node_modules/antd/es/theme/util/alias.js +0 -171
  1661. package/dist/node_modules/antd/es/theme/util/genPresetColor.cjs +0 -17
  1662. package/dist/node_modules/antd/es/theme/util/genPresetColor.js +0 -18
  1663. package/dist/node_modules/antd/es/theme/util/genStyleUtils.cjs +0 -52
  1664. package/dist/node_modules/antd/es/theme/util/genStyleUtils.js +0 -53
  1665. package/dist/node_modules/antd/es/theme/util/getAlphaColor.cjs +0 -41
  1666. package/dist/node_modules/antd/es/theme/util/getAlphaColor.js +0 -42
  1667. package/dist/node_modules/antd/es/theme/util/useResetIconStyle.cjs +0 -28
  1668. package/dist/node_modules/antd/es/theme/util/useResetIconStyle.js +0 -29
  1669. package/dist/node_modules/antd/es/time-picker/locale/en_US.cjs +0 -6
  1670. package/dist/node_modules/antd/es/time-picker/locale/en_US.js +0 -7
  1671. package/dist/node_modules/antd/es/tooltip/PurePanel.cjs +0 -59
  1672. package/dist/node_modules/antd/es/tooltip/PurePanel.js +0 -41
  1673. package/dist/node_modules/antd/es/tooltip/index.cjs +0 -221
  1674. package/dist/node_modules/antd/es/tooltip/index.js +0 -203
  1675. package/dist/node_modules/antd/es/tooltip/style/index.cjs +0 -152
  1676. package/dist/node_modules/antd/es/tooltip/style/index.js +0 -152
  1677. package/dist/node_modules/antd/es/tooltip/util.cjs +0 -21
  1678. package/dist/node_modules/antd/es/tooltip/util.js +0 -22
  1679. package/dist/node_modules/antd/es/tree/DirectoryTree.cjs +0 -177
  1680. package/dist/node_modules/antd/es/tree/DirectoryTree.js +0 -159
  1681. package/dist/node_modules/antd/es/tree/Tree.cjs +0 -122
  1682. package/dist/node_modules/antd/es/tree/Tree.js +0 -123
  1683. package/dist/node_modules/antd/es/tree/index.cjs +0 -10
  1684. package/dist/node_modules/antd/es/tree/index.js +0 -11
  1685. package/dist/node_modules/antd/es/tree/style/directory.cjs +0 -55
  1686. package/dist/node_modules/antd/es/tree/style/directory.js +0 -56
  1687. package/dist/node_modules/antd/es/tree/style/index.cjs +0 -386
  1688. package/dist/node_modules/antd/es/tree/style/index.js +0 -386
  1689. package/dist/node_modules/antd/es/tree/utils/dictUtil.cjs +0 -73
  1690. package/dist/node_modules/antd/es/tree/utils/dictUtil.js +0 -74
  1691. package/dist/node_modules/antd/es/tree/utils/dropIndicator.cjs +0 -37
  1692. package/dist/node_modules/antd/es/tree/utils/dropIndicator.js +0 -37
  1693. package/dist/node_modules/antd/es/tree/utils/iconUtil.cjs +0 -95
  1694. package/dist/node_modules/antd/es/tree/utils/iconUtil.js +0 -77
  1695. package/dist/node_modules/antd/es/typography/Base/CopyBtn.cjs +0 -62
  1696. package/dist/node_modules/antd/es/typography/Base/CopyBtn.js +0 -44
  1697. package/dist/node_modules/antd/es/typography/Base/Ellipsis.cjs +0 -202
  1698. package/dist/node_modules/antd/es/typography/Base/Ellipsis.js +0 -184
  1699. package/dist/node_modules/antd/es/typography/Base/EllipsisTooltip.cjs +0 -40
  1700. package/dist/node_modules/antd/es/typography/Base/EllipsisTooltip.js +0 -22
  1701. package/dist/node_modules/antd/es/typography/Base/index.cjs +0 -354
  1702. package/dist/node_modules/antd/es/typography/Base/index.js +0 -336
  1703. package/dist/node_modules/antd/es/typography/Base/util.cjs +0 -33
  1704. package/dist/node_modules/antd/es/typography/Base/util.js +0 -34
  1705. package/dist/node_modules/antd/es/typography/Editable.cjs +0 -132
  1706. package/dist/node_modules/antd/es/typography/Editable.js +0 -114
  1707. package/dist/node_modules/antd/es/typography/Link.cjs +0 -51
  1708. package/dist/node_modules/antd/es/typography/Link.js +0 -33
  1709. package/dist/node_modules/antd/es/typography/Paragraph.cjs +0 -28
  1710. package/dist/node_modules/antd/es/typography/Paragraph.js +0 -10
  1711. package/dist/node_modules/antd/es/typography/Text.cjs +0 -55
  1712. package/dist/node_modules/antd/es/typography/Text.js +0 -37
  1713. package/dist/node_modules/antd/es/typography/Title.cjs +0 -48
  1714. package/dist/node_modules/antd/es/typography/Title.js +0 -30
  1715. package/dist/node_modules/antd/es/typography/Typography.cjs +0 -76
  1716. package/dist/node_modules/antd/es/typography/Typography.js +0 -58
  1717. package/dist/node_modules/antd/es/typography/hooks/useCopyClick.cjs +0 -96
  1718. package/dist/node_modules/antd/es/typography/hooks/useCopyClick.js +0 -78
  1719. package/dist/node_modules/antd/es/typography/hooks/useMergedConfig.cjs +0 -28
  1720. package/dist/node_modules/antd/es/typography/hooks/useMergedConfig.js +0 -10
  1721. package/dist/node_modules/antd/es/typography/hooks/usePrevious.cjs +0 -10
  1722. package/dist/node_modules/antd/es/typography/hooks/usePrevious.js +0 -11
  1723. package/dist/node_modules/antd/es/typography/hooks/useTooltipProps.cjs +0 -23
  1724. package/dist/node_modules/antd/es/typography/hooks/useTooltipProps.js +0 -24
  1725. package/dist/node_modules/antd/es/typography/index.cjs +0 -12
  1726. package/dist/node_modules/antd/es/typography/index.js +0 -13
  1727. package/dist/node_modules/antd/es/typography/style/index.cjs +0 -113
  1728. package/dist/node_modules/antd/es/typography/style/index.js +0 -113
  1729. package/dist/node_modules/antd/es/typography/style/mixins.cjs +0 -236
  1730. package/dist/node_modules/antd/es/typography/style/mixins.js +0 -237
  1731. package/dist/node_modules/antd/es/version/index.cjs +0 -3
  1732. package/dist/node_modules/antd/es/version/index.js +0 -4
  1733. package/dist/node_modules/antd/es/version/version.cjs +0 -3
  1734. package/dist/node_modules/antd/es/version/version.js +0 -4
  1735. package/dist/node_modules/bail/index.cjs +0 -7
  1736. package/dist/node_modules/bail/index.js +0 -8
  1737. package/dist/node_modules/classnames/index.cjs +0 -65
  1738. package/dist/node_modules/classnames/index.js +0 -66
  1739. package/dist/node_modules/clsx/dist/clsx.m.cjs +0 -15
  1740. package/dist/node_modules/clsx/dist/clsx.m.js +0 -15
  1741. package/dist/node_modules/comma-separated-tokens/index.cjs +0 -9
  1742. package/dist/node_modules/comma-separated-tokens/index.js +0 -10
  1743. package/dist/node_modules/compute-scroll-into-view/dist/index.cjs +0 -57
  1744. package/dist/node_modules/compute-scroll-into-view/dist/index.js +0 -58
  1745. package/dist/node_modules/copy-to-clipboard/index.cjs +0 -100
  1746. package/dist/node_modules/copy-to-clipboard/index.js +0 -101
  1747. package/dist/node_modules/d3-array/src/ascending.cjs +0 -5
  1748. package/dist/node_modules/d3-array/src/ascending.js +0 -6
  1749. package/dist/node_modules/d3-array/src/bisect.cjs +0 -10
  1750. package/dist/node_modules/d3-array/src/bisect.js +0 -10
  1751. package/dist/node_modules/d3-array/src/bisector.cjs +0 -46
  1752. package/dist/node_modules/d3-array/src/bisector.js +0 -47
  1753. package/dist/node_modules/d3-array/src/descending.cjs +0 -5
  1754. package/dist/node_modules/d3-array/src/descending.js +0 -6
  1755. package/dist/node_modules/d3-array/src/number.cjs +0 -5
  1756. package/dist/node_modules/d3-array/src/number.js +0 -6
  1757. package/dist/node_modules/d3-array/src/range.cjs +0 -10
  1758. package/dist/node_modules/d3-array/src/range.js +0 -11
  1759. package/dist/node_modules/d3-array/src/ticks.cjs +0 -51
  1760. package/dist/node_modules/d3-array/src/ticks.js +0 -51
  1761. package/dist/node_modules/d3-color/src/color.cjs +0 -338
  1762. package/dist/node_modules/d3-color/src/color.js +0 -338
  1763. package/dist/node_modules/d3-color/src/define.cjs +0 -13
  1764. package/dist/node_modules/d3-color/src/define.js +0 -13
  1765. package/dist/node_modules/d3-dispatch/src/dispatch.cjs +0 -69
  1766. package/dist/node_modules/d3-dispatch/src/dispatch.js +0 -70
  1767. package/dist/node_modules/d3-ease/src/cubic.cjs +0 -5
  1768. package/dist/node_modules/d3-ease/src/cubic.js +0 -6
  1769. package/dist/node_modules/d3-ease/src/elastic.cjs +0 -43
  1770. package/dist/node_modules/d3-ease/src/elastic.js +0 -44
  1771. package/dist/node_modules/d3-ease/src/linear.cjs +0 -3
  1772. package/dist/node_modules/d3-ease/src/linear.js +0 -4
  1773. package/dist/node_modules/d3-ease/src/math.cjs +0 -5
  1774. package/dist/node_modules/d3-ease/src/math.js +0 -6
  1775. package/dist/node_modules/d3-format/src/defaultLocale.cjs +0 -18
  1776. package/dist/node_modules/d3-format/src/defaultLocale.js +0 -20
  1777. package/dist/node_modules/d3-format/src/exponent.cjs +0 -6
  1778. package/dist/node_modules/d3-format/src/exponent.js +0 -7
  1779. package/dist/node_modules/d3-format/src/formatDecimal.cjs +0 -15
  1780. package/dist/node_modules/d3-format/src/formatDecimal.js +0 -15
  1781. package/dist/node_modules/d3-format/src/formatGroup.cjs +0 -14
  1782. package/dist/node_modules/d3-format/src/formatGroup.js +0 -15
  1783. package/dist/node_modules/d3-format/src/formatNumerals.cjs +0 -9
  1784. package/dist/node_modules/d3-format/src/formatNumerals.js +0 -10
  1785. package/dist/node_modules/d3-format/src/formatPrefixAuto.cjs +0 -11
  1786. package/dist/node_modules/d3-format/src/formatPrefixAuto.js +0 -12
  1787. package/dist/node_modules/d3-format/src/formatRounded.cjs +0 -9
  1788. package/dist/node_modules/d3-format/src/formatRounded.js +0 -10
  1789. package/dist/node_modules/d3-format/src/formatSpecifier.cjs +0 -37
  1790. package/dist/node_modules/d3-format/src/formatSpecifier.js +0 -37
  1791. package/dist/node_modules/d3-format/src/formatTrim.cjs +0 -20
  1792. package/dist/node_modules/d3-format/src/formatTrim.js +0 -21
  1793. package/dist/node_modules/d3-format/src/formatTypes.cjs +0 -20
  1794. package/dist/node_modules/d3-format/src/formatTypes.js +0 -21
  1795. package/dist/node_modules/d3-format/src/identity.cjs +0 -5
  1796. package/dist/node_modules/d3-format/src/identity.js +0 -6
  1797. package/dist/node_modules/d3-format/src/locale.cjs +0 -81
  1798. package/dist/node_modules/d3-format/src/locale.js +0 -82
  1799. package/dist/node_modules/d3-format/src/precisionFixed.cjs +0 -6
  1800. package/dist/node_modules/d3-format/src/precisionFixed.js +0 -7
  1801. package/dist/node_modules/d3-format/src/precisionPrefix.cjs +0 -6
  1802. package/dist/node_modules/d3-format/src/precisionPrefix.js +0 -7
  1803. package/dist/node_modules/d3-format/src/precisionRound.cjs +0 -7
  1804. package/dist/node_modules/d3-format/src/precisionRound.js +0 -8
  1805. package/dist/node_modules/d3-interpolate/src/array.cjs +0 -12
  1806. package/dist/node_modules/d3-interpolate/src/array.js +0 -13
  1807. package/dist/node_modules/d3-interpolate/src/color.cjs +0 -24
  1808. package/dist/node_modules/d3-interpolate/src/color.js +0 -24
  1809. package/dist/node_modules/d3-interpolate/src/constant.cjs +0 -3
  1810. package/dist/node_modules/d3-interpolate/src/constant.js +0 -4
  1811. package/dist/node_modules/d3-interpolate/src/date.cjs +0 -8
  1812. package/dist/node_modules/d3-interpolate/src/date.js +0 -9
  1813. package/dist/node_modules/d3-interpolate/src/number.cjs +0 -7
  1814. package/dist/node_modules/d3-interpolate/src/number.js +0 -8
  1815. package/dist/node_modules/d3-interpolate/src/numberArray.cjs +0 -15
  1816. package/dist/node_modules/d3-interpolate/src/numberArray.js +0 -15
  1817. package/dist/node_modules/d3-interpolate/src/object.cjs +0 -19
  1818. package/dist/node_modules/d3-interpolate/src/object.js +0 -20
  1819. package/dist/node_modules/d3-interpolate/src/rgb.cjs +0 -19
  1820. package/dist/node_modules/d3-interpolate/src/rgb.js +0 -20
  1821. package/dist/node_modules/d3-interpolate/src/round.cjs +0 -7
  1822. package/dist/node_modules/d3-interpolate/src/round.js +0 -8
  1823. package/dist/node_modules/d3-interpolate/src/string.cjs +0 -42
  1824. package/dist/node_modules/d3-interpolate/src/string.js +0 -43
  1825. package/dist/node_modules/d3-interpolate/src/transform/decompose.cjs +0 -28
  1826. package/dist/node_modules/d3-interpolate/src/transform/decompose.js +0 -28
  1827. package/dist/node_modules/d3-interpolate/src/transform/index.cjs +0 -58
  1828. package/dist/node_modules/d3-interpolate/src/transform/index.js +0 -59
  1829. package/dist/node_modules/d3-interpolate/src/transform/parse.cjs +0 -17
  1830. package/dist/node_modules/d3-interpolate/src/transform/parse.js +0 -18
  1831. package/dist/node_modules/d3-interpolate/src/value.cjs +0 -15
  1832. package/dist/node_modules/d3-interpolate/src/value.js +0 -16
  1833. package/dist/node_modules/d3-path/src/path.cjs +0 -87
  1834. package/dist/node_modules/d3-path/src/path.js +0 -88
  1835. package/dist/node_modules/d3-scale/src/band.cjs +0 -70
  1836. package/dist/node_modules/d3-scale/src/band.js +0 -70
  1837. package/dist/node_modules/d3-scale/src/constant.cjs +0 -7
  1838. package/dist/node_modules/d3-scale/src/constant.js +0 -8
  1839. package/dist/node_modules/d3-scale/src/continuous.cjs +0 -95
  1840. package/dist/node_modules/d3-scale/src/continuous.js +0 -95
  1841. package/dist/node_modules/d3-scale/src/init.cjs +0 -15
  1842. package/dist/node_modules/d3-scale/src/init.js +0 -16
  1843. package/dist/node_modules/d3-scale/src/linear.cjs +0 -61
  1844. package/dist/node_modules/d3-scale/src/linear.js +0 -61
  1845. package/dist/node_modules/d3-scale/src/number.cjs +0 -5
  1846. package/dist/node_modules/d3-scale/src/number.js +0 -6
  1847. package/dist/node_modules/d3-scale/src/ordinal.cjs +0 -38
  1848. package/dist/node_modules/d3-scale/src/ordinal.js +0 -38
  1849. package/dist/node_modules/d3-scale/src/tickFormat.cjs +0 -33
  1850. package/dist/node_modules/d3-scale/src/tickFormat.js +0 -34
  1851. package/dist/node_modules/d3-selection/src/array.cjs +0 -5
  1852. package/dist/node_modules/d3-selection/src/array.js +0 -6
  1853. package/dist/node_modules/d3-selection/src/constant.cjs +0 -7
  1854. package/dist/node_modules/d3-selection/src/constant.js +0 -8
  1855. package/dist/node_modules/d3-selection/src/creator.cjs +0 -19
  1856. package/dist/node_modules/d3-selection/src/creator.js +0 -20
  1857. package/dist/node_modules/d3-selection/src/matcher.cjs +0 -14
  1858. package/dist/node_modules/d3-selection/src/matcher.js +0 -14
  1859. package/dist/node_modules/d3-selection/src/namespace.cjs +0 -8
  1860. package/dist/node_modules/d3-selection/src/namespace.js +0 -9
  1861. package/dist/node_modules/d3-selection/src/namespaces.cjs +0 -12
  1862. package/dist/node_modules/d3-selection/src/namespaces.js +0 -12
  1863. package/dist/node_modules/d3-selection/src/pointer.cjs +0 -21
  1864. package/dist/node_modules/d3-selection/src/pointer.js +0 -22
  1865. package/dist/node_modules/d3-selection/src/select.cjs +0 -6
  1866. package/dist/node_modules/d3-selection/src/select.js +0 -7
  1867. package/dist/node_modules/d3-selection/src/selection/append.cjs +0 -9
  1868. package/dist/node_modules/d3-selection/src/selection/append.js +0 -10
  1869. package/dist/node_modules/d3-selection/src/selection/attr.cjs +0 -45
  1870. package/dist/node_modules/d3-selection/src/selection/attr.js +0 -46
  1871. package/dist/node_modules/d3-selection/src/selection/call.cjs +0 -8
  1872. package/dist/node_modules/d3-selection/src/selection/call.js +0 -9
  1873. package/dist/node_modules/d3-selection/src/selection/classed.cjs +0 -63
  1874. package/dist/node_modules/d3-selection/src/selection/classed.js +0 -64
  1875. package/dist/node_modules/d3-selection/src/selection/clone.cjs +0 -13
  1876. package/dist/node_modules/d3-selection/src/selection/clone.js +0 -14
  1877. package/dist/node_modules/d3-selection/src/selection/data.cjs +0 -75
  1878. package/dist/node_modules/d3-selection/src/selection/data.js +0 -76
  1879. package/dist/node_modules/d3-selection/src/selection/datum.cjs +0 -5
  1880. package/dist/node_modules/d3-selection/src/selection/datum.js +0 -6
  1881. package/dist/node_modules/d3-selection/src/selection/dispatch.cjs +0 -27
  1882. package/dist/node_modules/d3-selection/src/selection/dispatch.js +0 -28
  1883. package/dist/node_modules/d3-selection/src/selection/each.cjs +0 -10
  1884. package/dist/node_modules/d3-selection/src/selection/each.js +0 -11
  1885. package/dist/node_modules/d3-selection/src/selection/empty.cjs +0 -5
  1886. package/dist/node_modules/d3-selection/src/selection/empty.js +0 -6
  1887. package/dist/node_modules/d3-selection/src/selection/enter.cjs +0 -31
  1888. package/dist/node_modules/d3-selection/src/selection/enter.js +0 -31
  1889. package/dist/node_modules/d3-selection/src/selection/exit.cjs +0 -7
  1890. package/dist/node_modules/d3-selection/src/selection/exit.js +0 -8
  1891. package/dist/node_modules/d3-selection/src/selection/filter.cjs +0 -15
  1892. package/dist/node_modules/d3-selection/src/selection/filter.js +0 -16
  1893. package/dist/node_modules/d3-selection/src/selection/html.cjs +0 -19
  1894. package/dist/node_modules/d3-selection/src/selection/html.js +0 -20
  1895. package/dist/node_modules/d3-selection/src/selection/index.cjs +0 -88
  1896. package/dist/node_modules/d3-selection/src/selection/index.js +0 -88
  1897. package/dist/node_modules/d3-selection/src/selection/insert.cjs +0 -13
  1898. package/dist/node_modules/d3-selection/src/selection/insert.js +0 -14
  1899. package/dist/node_modules/d3-selection/src/selection/iterator.cjs +0 -9
  1900. package/dist/node_modules/d3-selection/src/selection/iterator.js +0 -10
  1901. package/dist/node_modules/d3-selection/src/selection/join.cjs +0 -18
  1902. package/dist/node_modules/d3-selection/src/selection/join.js +0 -19
  1903. package/dist/node_modules/d3-selection/src/selection/lower.cjs +0 -8
  1904. package/dist/node_modules/d3-selection/src/selection/lower.js +0 -9
  1905. package/dist/node_modules/d3-selection/src/selection/merge.cjs +0 -17
  1906. package/dist/node_modules/d3-selection/src/selection/merge.js +0 -18
  1907. package/dist/node_modules/d3-selection/src/selection/node.cjs +0 -11
  1908. package/dist/node_modules/d3-selection/src/selection/node.js +0 -12
  1909. package/dist/node_modules/d3-selection/src/selection/nodes.cjs +0 -5
  1910. package/dist/node_modules/d3-selection/src/selection/nodes.js +0 -6
  1911. package/dist/node_modules/d3-selection/src/selection/on.cjs +0 -63
  1912. package/dist/node_modules/d3-selection/src/selection/on.js +0 -64
  1913. package/dist/node_modules/d3-selection/src/selection/order.cjs +0 -13
  1914. package/dist/node_modules/d3-selection/src/selection/order.js +0 -14
  1915. package/dist/node_modules/d3-selection/src/selection/property.cjs +0 -22
  1916. package/dist/node_modules/d3-selection/src/selection/property.js +0 -23
  1917. package/dist/node_modules/d3-selection/src/selection/raise.cjs +0 -8
  1918. package/dist/node_modules/d3-selection/src/selection/raise.js +0 -9
  1919. package/dist/node_modules/d3-selection/src/selection/remove.cjs +0 -9
  1920. package/dist/node_modules/d3-selection/src/selection/remove.js +0 -10
  1921. package/dist/node_modules/d3-selection/src/selection/select.cjs +0 -16
  1922. package/dist/node_modules/d3-selection/src/selection/select.js +0 -17
  1923. package/dist/node_modules/d3-selection/src/selection/selectAll.cjs +0 -23
  1924. package/dist/node_modules/d3-selection/src/selection/selectAll.js +0 -24
  1925. package/dist/node_modules/d3-selection/src/selection/selectChild.cjs +0 -15
  1926. package/dist/node_modules/d3-selection/src/selection/selectChild.js +0 -16
  1927. package/dist/node_modules/d3-selection/src/selection/selectChildren.cjs +0 -15
  1928. package/dist/node_modules/d3-selection/src/selection/selectChildren.js +0 -16
  1929. package/dist/node_modules/d3-selection/src/selection/size.cjs +0 -7
  1930. package/dist/node_modules/d3-selection/src/selection/size.js +0 -8
  1931. package/dist/node_modules/d3-selection/src/selection/sort.cjs +0 -21
  1932. package/dist/node_modules/d3-selection/src/selection/sort.js +0 -22
  1933. package/dist/node_modules/d3-selection/src/selection/sparse.cjs +0 -5
  1934. package/dist/node_modules/d3-selection/src/selection/sparse.js +0 -6
  1935. package/dist/node_modules/d3-selection/src/selection/style.cjs +0 -28
  1936. package/dist/node_modules/d3-selection/src/selection/style.js +0 -28
  1937. package/dist/node_modules/d3-selection/src/selection/text.cjs +0 -19
  1938. package/dist/node_modules/d3-selection/src/selection/text.js +0 -20
  1939. package/dist/node_modules/d3-selection/src/selector.cjs +0 -9
  1940. package/dist/node_modules/d3-selection/src/selector.js +0 -10
  1941. package/dist/node_modules/d3-selection/src/selectorAll.cjs +0 -10
  1942. package/dist/node_modules/d3-selection/src/selectorAll.js +0 -11
  1943. package/dist/node_modules/d3-selection/src/sourceEvent.cjs +0 -7
  1944. package/dist/node_modules/d3-selection/src/sourceEvent.js +0 -8
  1945. package/dist/node_modules/d3-selection/src/window.cjs +0 -5
  1946. package/dist/node_modules/d3-selection/src/window.js +0 -6
  1947. package/dist/node_modules/d3-shape/src/arc.cjs +0 -132
  1948. package/dist/node_modules/d3-shape/src/arc.js +0 -133
  1949. package/dist/node_modules/d3-shape/src/array.cjs +0 -5
  1950. package/dist/node_modules/d3-shape/src/array.js +0 -6
  1951. package/dist/node_modules/d3-shape/src/constant.cjs +0 -7
  1952. package/dist/node_modules/d3-shape/src/constant.js +0 -8
  1953. package/dist/node_modules/d3-shape/src/curve/cardinal.cjs +0 -73
  1954. package/dist/node_modules/d3-shape/src/curve/cardinal.js +0 -73
  1955. package/dist/node_modules/d3-shape/src/curve/linear.cjs +0 -38
  1956. package/dist/node_modules/d3-shape/src/curve/linear.js +0 -39
  1957. package/dist/node_modules/d3-shape/src/descending.cjs +0 -5
  1958. package/dist/node_modules/d3-shape/src/descending.js +0 -6
  1959. package/dist/node_modules/d3-shape/src/identity.cjs +0 -5
  1960. package/dist/node_modules/d3-shape/src/identity.js +0 -6
  1961. package/dist/node_modules/d3-shape/src/line.cjs +0 -40
  1962. package/dist/node_modules/d3-shape/src/line.js +0 -41
  1963. package/dist/node_modules/d3-shape/src/math.cjs +0 -31
  1964. package/dist/node_modules/d3-shape/src/math.js +0 -32
  1965. package/dist/node_modules/d3-shape/src/path.cjs +0 -18
  1966. package/dist/node_modules/d3-shape/src/path.js +0 -19
  1967. package/dist/node_modules/d3-shape/src/pie.cjs +0 -54
  1968. package/dist/node_modules/d3-shape/src/pie.js +0 -55
  1969. package/dist/node_modules/d3-shape/src/point.cjs +0 -9
  1970. package/dist/node_modules/d3-shape/src/point.js +0 -10
  1971. package/dist/node_modules/d3-timer/src/timeout.cjs +0 -12
  1972. package/dist/node_modules/d3-timer/src/timeout.js +0 -13
  1973. package/dist/node_modules/d3-timer/src/timer.cjs +0 -95
  1974. package/dist/node_modules/d3-timer/src/timer.js +0 -96
  1975. package/dist/node_modules/d3-transition/src/interrupt.cjs +0 -20
  1976. package/dist/node_modules/d3-transition/src/interrupt.js +0 -21
  1977. package/dist/node_modules/d3-transition/src/selection/index.cjs +0 -6
  1978. package/dist/node_modules/d3-transition/src/selection/index.js +0 -5
  1979. package/dist/node_modules/d3-transition/src/selection/interrupt.cjs +0 -8
  1980. package/dist/node_modules/d3-transition/src/selection/interrupt.js +0 -9
  1981. package/dist/node_modules/d3-transition/src/selection/transition.cjs +0 -38
  1982. package/dist/node_modules/d3-transition/src/selection/transition.js +0 -39
  1983. package/dist/node_modules/d3-transition/src/transition/attr.cjs +0 -54
  1984. package/dist/node_modules/d3-transition/src/transition/attr.js +0 -55
  1985. package/dist/node_modules/d3-transition/src/transition/attrTween.cjs +0 -41
  1986. package/dist/node_modules/d3-transition/src/transition/attrTween.js +0 -42
  1987. package/dist/node_modules/d3-transition/src/transition/delay.cjs +0 -17
  1988. package/dist/node_modules/d3-transition/src/transition/delay.js +0 -18
  1989. package/dist/node_modules/d3-transition/src/transition/duration.cjs +0 -17
  1990. package/dist/node_modules/d3-transition/src/transition/duration.js +0 -18
  1991. package/dist/node_modules/d3-transition/src/transition/ease.cjs +0 -13
  1992. package/dist/node_modules/d3-transition/src/transition/ease.js +0 -14
  1993. package/dist/node_modules/d3-transition/src/transition/easeVarying.cjs +0 -14
  1994. package/dist/node_modules/d3-transition/src/transition/easeVarying.js +0 -15
  1995. package/dist/node_modules/d3-transition/src/transition/end.cjs +0 -22
  1996. package/dist/node_modules/d3-transition/src/transition/end.js +0 -23
  1997. package/dist/node_modules/d3-transition/src/transition/filter.cjs +0 -15
  1998. package/dist/node_modules/d3-transition/src/transition/filter.js +0 -16
  1999. package/dist/node_modules/d3-transition/src/transition/index.cjs +0 -67
  2000. package/dist/node_modules/d3-transition/src/transition/index.js +0 -68
  2001. package/dist/node_modules/d3-transition/src/transition/interpolate.cjs +0 -10
  2002. package/dist/node_modules/d3-transition/src/transition/interpolate.js +0 -11
  2003. package/dist/node_modules/d3-transition/src/transition/merge.cjs +0 -17
  2004. package/dist/node_modules/d3-transition/src/transition/merge.js +0 -18
  2005. package/dist/node_modules/d3-transition/src/transition/on.cjs +0 -22
  2006. package/dist/node_modules/d3-transition/src/transition/on.js +0 -23
  2007. package/dist/node_modules/d3-transition/src/transition/remove.cjs +0 -12
  2008. package/dist/node_modules/d3-transition/src/transition/remove.js +0 -13
  2009. package/dist/node_modules/d3-transition/src/transition/schedule.cjs +0 -125
  2010. package/dist/node_modules/d3-transition/src/transition/schedule.js +0 -125
  2011. package/dist/node_modules/d3-transition/src/transition/select.cjs +0 -19
  2012. package/dist/node_modules/d3-transition/src/transition/select.js +0 -20
  2013. package/dist/node_modules/d3-transition/src/transition/selectAll.cjs +0 -23
  2014. package/dist/node_modules/d3-transition/src/transition/selectAll.js +0 -24
  2015. package/dist/node_modules/d3-transition/src/transition/selection.cjs +0 -7
  2016. package/dist/node_modules/d3-transition/src/transition/selection.js +0 -8
  2017. package/dist/node_modules/d3-transition/src/transition/style.cjs +0 -46
  2018. package/dist/node_modules/d3-transition/src/transition/style.js +0 -47
  2019. package/dist/node_modules/d3-transition/src/transition/styleTween.cjs +0 -24
  2020. package/dist/node_modules/d3-transition/src/transition/styleTween.js +0 -25
  2021. package/dist/node_modules/d3-transition/src/transition/text.cjs +0 -17
  2022. package/dist/node_modules/d3-transition/src/transition/text.js +0 -18
  2023. package/dist/node_modules/d3-transition/src/transition/textTween.cjs +0 -24
  2024. package/dist/node_modules/d3-transition/src/transition/textTween.js +0 -25
  2025. package/dist/node_modules/d3-transition/src/transition/transition.cjs +0 -21
  2026. package/dist/node_modules/d3-transition/src/transition/transition.js +0 -22
  2027. package/dist/node_modules/d3-transition/src/transition/tween.cjs +0 -64
  2028. package/dist/node_modules/d3-transition/src/transition/tween.js +0 -64
  2029. package/dist/node_modules/d3-zoom/src/transform.cjs +0 -44
  2030. package/dist/node_modules/d3-zoom/src/transform.js +0 -45
  2031. package/dist/node_modules/date-fns/_lib/addLeadingZeros.cjs +0 -7
  2032. package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +0 -8
  2033. package/dist/node_modules/date-fns/_lib/defaultOptions.cjs +0 -6
  2034. package/dist/node_modules/date-fns/_lib/defaultOptions.js +0 -7
  2035. package/dist/node_modules/date-fns/_lib/format/formatters.cjs +0 -652
  2036. package/dist/node_modules/date-fns/_lib/format/formatters.js +0 -653
  2037. package/dist/node_modules/date-fns/_lib/format/lightFormatters.cjs +0 -61
  2038. package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +0 -62
  2039. package/dist/node_modules/date-fns/_lib/format/longFormatters.cjs +0 -57
  2040. package/dist/node_modules/date-fns/_lib/format/longFormatters.js +0 -58
  2041. package/dist/node_modules/date-fns/_lib/getRoundingMethod.cjs +0 -9
  2042. package/dist/node_modules/date-fns/_lib/getRoundingMethod.js +0 -10
  2043. package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.cjs +0 -19
  2044. package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +0 -20
  2045. package/dist/node_modules/date-fns/_lib/protectedTokens.cjs +0 -22
  2046. package/dist/node_modules/date-fns/_lib/protectedTokens.js +0 -23
  2047. package/dist/node_modules/date-fns/compareAsc.cjs +0 -17
  2048. package/dist/node_modules/date-fns/compareAsc.js +0 -17
  2049. package/dist/node_modules/date-fns/constants.cjs +0 -9
  2050. package/dist/node_modules/date-fns/constants.js +0 -10
  2051. package/dist/node_modules/date-fns/constructFrom.cjs +0 -11
  2052. package/dist/node_modules/date-fns/constructFrom.js +0 -11
  2053. package/dist/node_modules/date-fns/constructNow.cjs +0 -8
  2054. package/dist/node_modules/date-fns/constructNow.js +0 -8
  2055. package/dist/node_modules/date-fns/differenceInCalendarDays.cjs +0 -14
  2056. package/dist/node_modules/date-fns/differenceInCalendarDays.js +0 -14
  2057. package/dist/node_modules/date-fns/differenceInCalendarMonths.cjs +0 -12
  2058. package/dist/node_modules/date-fns/differenceInCalendarMonths.js +0 -12
  2059. package/dist/node_modules/date-fns/differenceInMilliseconds.cjs +0 -8
  2060. package/dist/node_modules/date-fns/differenceInMilliseconds.js +0 -8
  2061. package/dist/node_modules/date-fns/differenceInMonths.cjs +0 -31
  2062. package/dist/node_modules/date-fns/differenceInMonths.js +0 -31
  2063. package/dist/node_modules/date-fns/differenceInSeconds.cjs +0 -10
  2064. package/dist/node_modules/date-fns/differenceInSeconds.js +0 -10
  2065. package/dist/node_modules/date-fns/endOfDay.cjs +0 -10
  2066. package/dist/node_modules/date-fns/endOfDay.js +0 -10
  2067. package/dist/node_modules/date-fns/endOfMonth.cjs +0 -12
  2068. package/dist/node_modules/date-fns/endOfMonth.js +0 -12
  2069. package/dist/node_modules/date-fns/format.cjs +0 -78
  2070. package/dist/node_modules/date-fns/format.js +0 -78
  2071. package/dist/node_modules/date-fns/formatDistance.cjs +0 -91
  2072. package/dist/node_modules/date-fns/formatDistance.js +0 -91
  2073. package/dist/node_modules/date-fns/formatDistanceToNow.cjs +0 -9
  2074. package/dist/node_modules/date-fns/formatDistanceToNow.js +0 -9
  2075. package/dist/node_modules/date-fns/getDayOfYear.cjs +0 -13
  2076. package/dist/node_modules/date-fns/getDayOfYear.js +0 -13
  2077. package/dist/node_modules/date-fns/getISOWeek.cjs +0 -13
  2078. package/dist/node_modules/date-fns/getISOWeek.js +0 -13
  2079. package/dist/node_modules/date-fns/getISOWeekYear.cjs +0 -26
  2080. package/dist/node_modules/date-fns/getISOWeekYear.js +0 -26
  2081. package/dist/node_modules/date-fns/getWeek.cjs +0 -13
  2082. package/dist/node_modules/date-fns/getWeek.js +0 -13
  2083. package/dist/node_modules/date-fns/getWeekYear.cjs +0 -29
  2084. package/dist/node_modules/date-fns/getWeekYear.js +0 -29
  2085. package/dist/node_modules/date-fns/isDate.cjs +0 -7
  2086. package/dist/node_modules/date-fns/isDate.js +0 -7
  2087. package/dist/node_modules/date-fns/isLastDayOfMonth.cjs +0 -11
  2088. package/dist/node_modules/date-fns/isLastDayOfMonth.js +0 -11
  2089. package/dist/node_modules/date-fns/isValid.cjs +0 -13
  2090. package/dist/node_modules/date-fns/isValid.js +0 -13
  2091. package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.cjs +0 -9
  2092. package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +0 -10
  2093. package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.cjs +0 -19
  2094. package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +0 -20
  2095. package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.cjs +0 -42
  2096. package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +0 -43
  2097. package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.cjs +0 -15
  2098. package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +0 -16
  2099. package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.cjs +0 -84
  2100. package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +0 -85
  2101. package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.cjs +0 -35
  2102. package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +0 -36
  2103. package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.cjs +0 -11
  2104. package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +0 -12
  2105. package/dist/node_modules/date-fns/locale/en-US/_lib/localize.cjs +0 -163
  2106. package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +0 -164
  2107. package/dist/node_modules/date-fns/locale/en-US/_lib/match.cjs +0 -121
  2108. package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +0 -122
  2109. package/dist/node_modules/date-fns/locale/en-US.cjs +0 -21
  2110. package/dist/node_modules/date-fns/locale/en-US.js +0 -21
  2111. package/dist/node_modules/date-fns/startOfDay.cjs +0 -10
  2112. package/dist/node_modules/date-fns/startOfDay.js +0 -10
  2113. package/dist/node_modules/date-fns/startOfISOWeek.cjs +0 -8
  2114. package/dist/node_modules/date-fns/startOfISOWeek.js +0 -8
  2115. package/dist/node_modules/date-fns/startOfISOWeekYear.cjs +0 -14
  2116. package/dist/node_modules/date-fns/startOfISOWeekYear.js +0 -14
  2117. package/dist/node_modules/date-fns/startOfWeek.cjs +0 -16
  2118. package/dist/node_modules/date-fns/startOfWeek.js +0 -16
  2119. package/dist/node_modules/date-fns/startOfWeekYear.cjs +0 -18
  2120. package/dist/node_modules/date-fns/startOfWeekYear.js +0 -18
  2121. package/dist/node_modules/date-fns/startOfYear.cjs +0 -13
  2122. package/dist/node_modules/date-fns/startOfYear.js +0 -13
  2123. package/dist/node_modules/date-fns/toDate.cjs +0 -14
  2124. package/dist/node_modules/date-fns/toDate.js +0 -14
  2125. package/dist/node_modules/dayjs/dayjs.min.cjs +0 -285
  2126. package/dist/node_modules/dayjs/dayjs.min.js +0 -286
  2127. package/dist/node_modules/dayjs/plugin/advancedFormat.cjs +0 -57
  2128. package/dist/node_modules/dayjs/plugin/advancedFormat.js +0 -58
  2129. package/dist/node_modules/dayjs/plugin/customParseFormat.cjs +0 -132
  2130. package/dist/node_modules/dayjs/plugin/customParseFormat.js +0 -133
  2131. package/dist/node_modules/dayjs/plugin/localeData.cjs +0 -85
  2132. package/dist/node_modules/dayjs/plugin/localeData.js +0 -86
  2133. package/dist/node_modules/dayjs/plugin/weekOfYear.cjs +0 -32
  2134. package/dist/node_modules/dayjs/plugin/weekOfYear.js +0 -33
  2135. package/dist/node_modules/dayjs/plugin/weekYear.cjs +0 -22
  2136. package/dist/node_modules/dayjs/plugin/weekYear.js +0 -23
  2137. package/dist/node_modules/dayjs/plugin/weekday.cjs +0 -22
  2138. package/dist/node_modules/dayjs/plugin/weekday.js +0 -23
  2139. package/dist/node_modules/decode-named-character-reference/index.dom.cjs +0 -16
  2140. package/dist/node_modules/decode-named-character-reference/index.dom.js +0 -17
  2141. package/dist/node_modules/devlop/lib/default.cjs +0 -7
  2142. package/dist/node_modules/devlop/lib/default.js +0 -8
  2143. package/dist/node_modules/engine.io-client/build/esm/contrib/has-cors.cjs +0 -8
  2144. package/dist/node_modules/engine.io-client/build/esm/contrib/has-cors.js +0 -9
  2145. package/dist/node_modules/engine.io-client/build/esm/contrib/parseqs.cjs +0 -23
  2146. package/dist/node_modules/engine.io-client/build/esm/contrib/parseqs.js +0 -24
  2147. package/dist/node_modules/engine.io-client/build/esm/contrib/parseuri.cjs +0 -60
  2148. package/dist/node_modules/engine.io-client/build/esm/contrib/parseuri.js +0 -61
  2149. package/dist/node_modules/engine.io-client/build/esm/globals.cjs +0 -25
  2150. package/dist/node_modules/engine.io-client/build/esm/globals.js +0 -26
  2151. package/dist/node_modules/engine.io-client/build/esm/socket.cjs +0 -575
  2152. package/dist/node_modules/engine.io-client/build/esm/socket.js +0 -576
  2153. package/dist/node_modules/engine.io-client/build/esm/transport.cjs +0 -137
  2154. package/dist/node_modules/engine.io-client/build/esm/transport.js +0 -138
  2155. package/dist/node_modules/engine.io-client/build/esm/transports/index.cjs +0 -10
  2156. package/dist/node_modules/engine.io-client/build/esm/transports/index.js +0 -11
  2157. package/dist/node_modules/engine.io-client/build/esm/transports/polling-xhr.cjs +0 -248
  2158. package/dist/node_modules/engine.io-client/build/esm/transports/polling-xhr.js +0 -249
  2159. package/dist/node_modules/engine.io-client/build/esm/transports/polling.cjs +0 -134
  2160. package/dist/node_modules/engine.io-client/build/esm/transports/polling.js +0 -135
  2161. package/dist/node_modules/engine.io-client/build/esm/transports/websocket.cjs +0 -101
  2162. package/dist/node_modules/engine.io-client/build/esm/transports/websocket.js +0 -102
  2163. package/dist/node_modules/engine.io-client/build/esm/transports/webtransport.cjs +0 -66
  2164. package/dist/node_modules/engine.io-client/build/esm/transports/webtransport.js +0 -67
  2165. package/dist/node_modules/engine.io-client/build/esm/util.cjs +0 -52
  2166. package/dist/node_modules/engine.io-client/build/esm/util.js +0 -53
  2167. package/dist/node_modules/engine.io-parser/build/esm/commons.cjs +0 -17
  2168. package/dist/node_modules/engine.io-parser/build/esm/commons.js +0 -18
  2169. package/dist/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.cjs +0 -27
  2170. package/dist/node_modules/engine.io-parser/build/esm/contrib/base64-arraybuffer.js +0 -28
  2171. package/dist/node_modules/engine.io-parser/build/esm/decodePacket.browser.cjs +0 -55
  2172. package/dist/node_modules/engine.io-parser/build/esm/decodePacket.browser.js +0 -56
  2173. package/dist/node_modules/engine.io-parser/build/esm/encodePacket.browser.cjs +0 -56
  2174. package/dist/node_modules/engine.io-parser/build/esm/encodePacket.browser.js +0 -57
  2175. package/dist/node_modules/engine.io-parser/build/esm/index.cjs +0 -151
  2176. package/dist/node_modules/engine.io-parser/build/esm/index.js +0 -152
  2177. package/dist/node_modules/estree-util-is-identifier-name/lib/index.cjs +0 -10
  2178. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +0 -11
  2179. package/dist/node_modules/extend/index.cjs +0 -93
  2180. package/dist/node_modules/extend/index.js +0 -94
  2181. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.cjs +0 -389
  2182. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +0 -390
  2183. package/dist/node_modules/hast-util-whitespace/lib/index.cjs +0 -9
  2184. package/dist/node_modules/hast-util-whitespace/lib/index.js +0 -10
  2185. package/dist/node_modules/html-url-attributes/lib/index.cjs +0 -25
  2186. package/dist/node_modules/html-url-attributes/lib/index.js +0 -26
  2187. package/dist/node_modules/inline-style-parser/index.cjs +0 -140
  2188. package/dist/node_modules/inline-style-parser/index.js +0 -141
  2189. package/dist/node_modules/internmap/src/index.cjs +0 -42
  2190. package/dist/node_modules/internmap/src/index.js +0 -43
  2191. package/dist/node_modules/is-plain-obj/index.cjs +0 -9
  2192. package/dist/node_modules/is-plain-obj/index.js +0 -10
  2193. package/dist/node_modules/mdast-util-from-markdown/lib/index.cjs +0 -718
  2194. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +0 -719
  2195. package/dist/node_modules/mdast-util-to-hast/lib/footer.cjs +0 -114
  2196. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +0 -115
  2197. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.cjs +0 -12
  2198. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +0 -13
  2199. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.cjs +0 -7
  2200. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +0 -8
  2201. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.cjs +0 -23
  2202. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +0 -24
  2203. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.cjs +0 -12
  2204. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +0 -13
  2205. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.cjs +0 -12
  2206. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +0 -13
  2207. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.cjs +0 -40
  2208. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +0 -41
  2209. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.cjs +0 -12
  2210. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +0 -13
  2211. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.cjs +0 -10
  2212. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +0 -11
  2213. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.cjs +0 -18
  2214. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +0 -19
  2215. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.cjs +0 -15
  2216. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +0 -16
  2217. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.cjs +0 -58
  2218. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +0 -59
  2219. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.cjs +0 -14
  2220. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +0 -15
  2221. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.cjs +0 -23
  2222. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +0 -24
  2223. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.cjs +0 -17
  2224. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +0 -18
  2225. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.cjs +0 -63
  2226. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +0 -64
  2227. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.cjs +0 -25
  2228. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +0 -26
  2229. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.cjs +0 -12
  2230. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +0 -13
  2231. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.cjs +0 -7
  2232. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +0 -8
  2233. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.cjs +0 -12
  2234. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +0 -13
  2235. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.cjs +0 -13
  2236. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +0 -14
  2237. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.cjs +0 -34
  2238. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +0 -35
  2239. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.cjs +0 -38
  2240. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +0 -39
  2241. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.cjs +0 -8
  2242. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +0 -9
  2243. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.cjs +0 -12
  2244. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +0 -13
  2245. package/dist/node_modules/mdast-util-to-hast/lib/index.cjs +0 -14
  2246. package/dist/node_modules/mdast-util-to-hast/lib/index.js +0 -15
  2247. package/dist/node_modules/mdast-util-to-hast/lib/revert.cjs +0 -28
  2248. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +0 -29
  2249. package/dist/node_modules/mdast-util-to-hast/lib/state.cjs +0 -147
  2250. package/dist/node_modules/mdast-util-to-hast/lib/state.js +0 -148
  2251. package/dist/node_modules/mdast-util-to-string/lib/index.cjs +0 -37
  2252. package/dist/node_modules/mdast-util-to-string/lib/index.js +0 -38
  2253. package/dist/node_modules/micromark/lib/constructs.cjs +0 -92
  2254. package/dist/node_modules/micromark/lib/constructs.js +0 -93
  2255. package/dist/node_modules/micromark/lib/create-tokenizer.cjs +0 -319
  2256. package/dist/node_modules/micromark/lib/create-tokenizer.js +0 -320
  2257. package/dist/node_modules/micromark/lib/initialize/content.cjs +0 -52
  2258. package/dist/node_modules/micromark/lib/initialize/content.js +0 -53
  2259. package/dist/node_modules/micromark/lib/initialize/document.cjs +0 -185
  2260. package/dist/node_modules/micromark/lib/initialize/document.js +0 -186
  2261. package/dist/node_modules/micromark/lib/initialize/flow.cjs +0 -41
  2262. package/dist/node_modules/micromark/lib/initialize/flow.js +0 -42
  2263. package/dist/node_modules/micromark/lib/initialize/text.cjs +0 -141
  2264. package/dist/node_modules/micromark/lib/initialize/text.js +0 -142
  2265. package/dist/node_modules/micromark/lib/parse.cjs +0 -33
  2266. package/dist/node_modules/micromark/lib/parse.js +0 -34
  2267. package/dist/node_modules/micromark/lib/postprocess.cjs +0 -8
  2268. package/dist/node_modules/micromark/lib/postprocess.js +0 -9
  2269. package/dist/node_modules/micromark/lib/preprocess.cjs +0 -79
  2270. package/dist/node_modules/micromark/lib/preprocess.js +0 -80
  2271. package/dist/node_modules/micromark-core-commonmark/lib/attention.cjs +0 -134
  2272. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +0 -135
  2273. package/dist/node_modules/micromark-core-commonmark/lib/autolink.cjs +0 -102
  2274. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +0 -103
  2275. package/dist/node_modules/micromark-core-commonmark/lib/blank-line.cjs +0 -17
  2276. package/dist/node_modules/micromark-core-commonmark/lib/blank-line.js +0 -18
  2277. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.cjs +0 -60
  2278. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +0 -61
  2279. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.cjs +0 -27
  2280. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +0 -28
  2281. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.cjs +0 -67
  2282. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +0 -68
  2283. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.cjs +0 -185
  2284. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +0 -186
  2285. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.cjs +0 -66
  2286. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +0 -67
  2287. package/dist/node_modules/micromark-core-commonmark/lib/code-text.cjs +0 -115
  2288. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +0 -116
  2289. package/dist/node_modules/micromark-core-commonmark/lib/content.cjs +0 -74
  2290. package/dist/node_modules/micromark-core-commonmark/lib/content.js +0 -75
  2291. package/dist/node_modules/micromark-core-commonmark/lib/definition.cjs +0 -93
  2292. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +0 -94
  2293. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.cjs +0 -22
  2294. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +0 -23
  2295. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.cjs +0 -94
  2296. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +0 -95
  2297. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.cjs +0 -382
  2298. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +0 -383
  2299. package/dist/node_modules/micromark-core-commonmark/lib/html-text.cjs +0 -308
  2300. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +0 -309
  2301. package/dist/node_modules/micromark-core-commonmark/lib/label-end.cjs +0 -234
  2302. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +0 -235
  2303. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.cjs +0 -32
  2304. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +0 -33
  2305. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.cjs +0 -23
  2306. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +0 -24
  2307. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.cjs +0 -16
  2308. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +0 -17
  2309. package/dist/node_modules/micromark-core-commonmark/lib/list.cjs +0 -134
  2310. package/dist/node_modules/micromark-core-commonmark/lib/list.js +0 -135
  2311. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.cjs +0 -94
  2312. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +0 -95
  2313. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.cjs +0 -41
  2314. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +0 -42
  2315. package/dist/node_modules/micromark-factory-destination/index.cjs +0 -93
  2316. package/dist/node_modules/micromark-factory-destination/index.js +0 -94
  2317. package/dist/node_modules/micromark-factory-label/index.cjs +0 -62
  2318. package/dist/node_modules/micromark-factory-label/index.js +0 -63
  2319. package/dist/node_modules/micromark-factory-space/index.cjs +0 -23
  2320. package/dist/node_modules/micromark-factory-space/index.js +0 -24
  2321. package/dist/node_modules/micromark-factory-title/index.cjs +0 -64
  2322. package/dist/node_modules/micromark-factory-title/index.js +0 -65
  2323. package/dist/node_modules/micromark-factory-whitespace/index.cjs +0 -21
  2324. package/dist/node_modules/micromark-factory-whitespace/index.js +0 -22
  2325. package/dist/node_modules/micromark-util-character/index.cjs +0 -43
  2326. package/dist/node_modules/micromark-util-character/index.js +0 -44
  2327. package/dist/node_modules/micromark-util-chunked/index.cjs +0 -35
  2328. package/dist/node_modules/micromark-util-chunked/index.js +0 -36
  2329. package/dist/node_modules/micromark-util-classify-character/index.cjs +0 -11
  2330. package/dist/node_modules/micromark-util-classify-character/index.js +0 -12
  2331. package/dist/node_modules/micromark-util-combine-extensions/index.cjs +0 -40
  2332. package/dist/node_modules/micromark-util-combine-extensions/index.js +0 -41
  2333. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.cjs +0 -18
  2334. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +0 -19
  2335. package/dist/node_modules/micromark-util-decode-string/index.cjs +0 -20
  2336. package/dist/node_modules/micromark-util-decode-string/index.js +0 -21
  2337. package/dist/node_modules/micromark-util-html-tag-name/index.cjs +0 -68
  2338. package/dist/node_modules/micromark-util-html-tag-name/index.js +0 -69
  2339. package/dist/node_modules/micromark-util-normalize-identifier/index.cjs +0 -5
  2340. package/dist/node_modules/micromark-util-normalize-identifier/index.js +0 -6
  2341. package/dist/node_modules/micromark-util-resolve-all/index.cjs +0 -14
  2342. package/dist/node_modules/micromark-util-resolve-all/index.js +0 -15
  2343. package/dist/node_modules/micromark-util-sanitize-uri/index.cjs +0 -40
  2344. package/dist/node_modules/micromark-util-sanitize-uri/index.js +0 -41
  2345. package/dist/node_modules/micromark-util-subtokenize/index.cjs +0 -156
  2346. package/dist/node_modules/micromark-util-subtokenize/index.js +0 -157
  2347. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.cjs +0 -193
  2348. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +0 -194
  2349. package/dist/node_modules/property-information/index.cjs +0 -12
  2350. package/dist/node_modules/property-information/index.js +0 -13
  2351. package/dist/node_modules/property-information/lib/aria.cjs +0 -60
  2352. package/dist/node_modules/property-information/lib/aria.js +0 -61
  2353. package/dist/node_modules/property-information/lib/find.cjs +0 -39
  2354. package/dist/node_modules/property-information/lib/find.js +0 -40
  2355. package/dist/node_modules/property-information/lib/hast-to-react.cjs +0 -21
  2356. package/dist/node_modules/property-information/lib/hast-to-react.js +0 -22
  2357. package/dist/node_modules/property-information/lib/html.cjs +0 -367
  2358. package/dist/node_modules/property-information/lib/html.js +0 -368
  2359. package/dist/node_modules/property-information/lib/normalize.cjs +0 -5
  2360. package/dist/node_modules/property-information/lib/normalize.js +0 -6
  2361. package/dist/node_modules/property-information/lib/svg.cjs +0 -565
  2362. package/dist/node_modules/property-information/lib/svg.js +0 -566
  2363. package/dist/node_modules/property-information/lib/util/case-insensitive-transform.cjs +0 -6
  2364. package/dist/node_modules/property-information/lib/util/case-insensitive-transform.js +0 -7
  2365. package/dist/node_modules/property-information/lib/util/case-sensitive-transform.cjs +0 -5
  2366. package/dist/node_modules/property-information/lib/util/case-sensitive-transform.js +0 -6
  2367. package/dist/node_modules/property-information/lib/util/create.cjs +0 -24
  2368. package/dist/node_modules/property-information/lib/util/create.js +0 -25
  2369. package/dist/node_modules/property-information/lib/util/defined-info.cjs +0 -40
  2370. package/dist/node_modules/property-information/lib/util/defined-info.js +0 -41
  2371. package/dist/node_modules/property-information/lib/util/info.cjs +0 -28
  2372. package/dist/node_modules/property-information/lib/util/info.js +0 -29
  2373. package/dist/node_modules/property-information/lib/util/merge.cjs +0 -12
  2374. package/dist/node_modules/property-information/lib/util/merge.js +0 -13
  2375. package/dist/node_modules/property-information/lib/util/schema.cjs +0 -24
  2376. package/dist/node_modules/property-information/lib/util/schema.js +0 -25
  2377. package/dist/node_modules/property-information/lib/util/types.cjs +0 -19
  2378. package/dist/node_modules/property-information/lib/util/types.js +0 -20
  2379. package/dist/node_modules/property-information/lib/xlink.cjs +0 -18
  2380. package/dist/node_modules/property-information/lib/xlink.js +0 -19
  2381. package/dist/node_modules/property-information/lib/xml.cjs +0 -10
  2382. package/dist/node_modules/property-information/lib/xml.js +0 -11
  2383. package/dist/node_modules/property-information/lib/xmlns.cjs +0 -10
  2384. package/dist/node_modules/property-information/lib/xmlns.js +0 -11
  2385. package/dist/node_modules/rc-checkbox/es/index.cjs +0 -91
  2386. package/dist/node_modules/rc-checkbox/es/index.js +0 -73
  2387. package/dist/node_modules/rc-dropdown/es/Dropdown.cjs +0 -102
  2388. package/dist/node_modules/rc-dropdown/es/Dropdown.js +0 -103
  2389. package/dist/node_modules/rc-dropdown/es/Overlay.cjs +0 -22
  2390. package/dist/node_modules/rc-dropdown/es/Overlay.js +0 -23
  2391. package/dist/node_modules/rc-dropdown/es/hooks/useAccessibility.cjs +0 -79
  2392. package/dist/node_modules/rc-dropdown/es/hooks/useAccessibility.js +0 -61
  2393. package/dist/node_modules/rc-dropdown/es/index.cjs +0 -3
  2394. package/dist/node_modules/rc-dropdown/es/index.js +0 -4
  2395. package/dist/node_modules/rc-dropdown/es/placements.cjs +0 -45
  2396. package/dist/node_modules/rc-dropdown/es/placements.js +0 -46
  2397. package/dist/node_modules/rc-field-form/es/Field.cjs +0 -510
  2398. package/dist/node_modules/rc-field-form/es/Field.js +0 -492
  2399. package/dist/node_modules/rc-field-form/es/FieldContext.cjs +0 -63
  2400. package/dist/node_modules/rc-field-form/es/FieldContext.js +0 -44
  2401. package/dist/node_modules/rc-field-form/es/Form.cjs +0 -128
  2402. package/dist/node_modules/rc-field-form/es/Form.js +0 -110
  2403. package/dist/node_modules/rc-field-form/es/FormContext.cjs +0 -79
  2404. package/dist/node_modules/rc-field-form/es/FormContext.js +0 -60
  2405. package/dist/node_modules/rc-field-form/es/List.cjs +0 -148
  2406. package/dist/node_modules/rc-field-form/es/List.js +0 -130
  2407. package/dist/node_modules/rc-field-form/es/ListContext.cjs +0 -23
  2408. package/dist/node_modules/rc-field-form/es/ListContext.js +0 -5
  2409. package/dist/node_modules/rc-field-form/es/index.cjs +0 -42
  2410. package/dist/node_modules/rc-field-form/es/index.js +0 -23
  2411. package/dist/node_modules/rc-field-form/es/useForm.cjs +0 -795
  2412. package/dist/node_modules/rc-field-form/es/useForm.js +0 -776
  2413. package/dist/node_modules/rc-field-form/es/useWatch.cjs +0 -80
  2414. package/dist/node_modules/rc-field-form/es/useWatch.js +0 -80
  2415. package/dist/node_modules/rc-field-form/es/utils/NameMap.cjs +0 -75
  2416. package/dist/node_modules/rc-field-form/es/utils/NameMap.js +0 -76
  2417. package/dist/node_modules/rc-field-form/es/utils/asyncUtil.cjs +0 -28
  2418. package/dist/node_modules/rc-field-form/es/utils/asyncUtil.js +0 -29
  2419. package/dist/node_modules/rc-field-form/es/utils/messages.cjs +0 -50
  2420. package/dist/node_modules/rc-field-form/es/utils/messages.js +0 -51
  2421. package/dist/node_modules/rc-field-form/es/utils/typeUtil.cjs +0 -12
  2422. package/dist/node_modules/rc-field-form/es/utils/typeUtil.js +0 -13
  2423. package/dist/node_modules/rc-field-form/es/utils/validateUtil.cjs +0 -290
  2424. package/dist/node_modules/rc-field-form/es/utils/validateUtil.js +0 -272
  2425. package/dist/node_modules/rc-field-form/es/utils/valueUtil.cjs +0 -88
  2426. package/dist/node_modules/rc-field-form/es/utils/valueUtil.js +0 -89
  2427. package/dist/node_modules/rc-input/es/BaseInput.cjs +0 -94
  2428. package/dist/node_modules/rc-input/es/BaseInput.js +0 -95
  2429. package/dist/node_modules/rc-input/es/Input.cjs +0 -202
  2430. package/dist/node_modules/rc-input/es/Input.js +0 -203
  2431. package/dist/node_modules/rc-input/es/hooks/useCount.cjs +0 -43
  2432. package/dist/node_modules/rc-input/es/hooks/useCount.js +0 -25
  2433. package/dist/node_modules/rc-input/es/index.cjs +0 -6
  2434. package/dist/node_modules/rc-input/es/index.js +0 -6
  2435. package/dist/node_modules/rc-input/es/utils/commonUtils.cjs +0 -66
  2436. package/dist/node_modules/rc-input/es/utils/commonUtils.js +0 -67
  2437. package/dist/node_modules/rc-menu/es/Divider.cjs +0 -38
  2438. package/dist/node_modules/rc-menu/es/Divider.js +0 -20
  2439. package/dist/node_modules/rc-menu/es/Icon.cjs +0 -36
  2440. package/dist/node_modules/rc-menu/es/Icon.js +0 -18
  2441. package/dist/node_modules/rc-menu/es/Menu.cjs +0 -322
  2442. package/dist/node_modules/rc-menu/es/Menu.js +0 -305
  2443. package/dist/node_modules/rc-menu/es/MenuItem.cjs +0 -166
  2444. package/dist/node_modules/rc-menu/es/MenuItem.js +0 -148
  2445. package/dist/node_modules/rc-menu/es/MenuItemGroup.cjs +0 -68
  2446. package/dist/node_modules/rc-menu/es/MenuItemGroup.js +0 -50
  2447. package/dist/node_modules/rc-menu/es/SubMenu/InlineSubMenuList.cjs +0 -75
  2448. package/dist/node_modules/rc-menu/es/SubMenu/InlineSubMenuList.js +0 -57
  2449. package/dist/node_modules/rc-menu/es/SubMenu/PopupTrigger.cjs +0 -84
  2450. package/dist/node_modules/rc-menu/es/SubMenu/PopupTrigger.js +0 -66
  2451. package/dist/node_modules/rc-menu/es/SubMenu/SubMenuList.cjs +0 -40
  2452. package/dist/node_modules/rc-menu/es/SubMenu/SubMenuList.js +0 -22
  2453. package/dist/node_modules/rc-menu/es/SubMenu/index.cjs +0 -232
  2454. package/dist/node_modules/rc-menu/es/SubMenu/index.js +0 -214
  2455. package/dist/node_modules/rc-menu/es/context/IdContext.cjs +0 -35
  2456. package/dist/node_modules/rc-menu/es/context/IdContext.js +0 -17
  2457. package/dist/node_modules/rc-menu/es/context/MenuContext.cjs +0 -52
  2458. package/dist/node_modules/rc-menu/es/context/MenuContext.js +0 -33
  2459. package/dist/node_modules/rc-menu/es/context/PathContext.cjs +0 -40
  2460. package/dist/node_modules/rc-menu/es/context/PathContext.js +0 -22
  2461. package/dist/node_modules/rc-menu/es/context/PrivateContext.cjs +0 -23
  2462. package/dist/node_modules/rc-menu/es/context/PrivateContext.js +0 -5
  2463. package/dist/node_modules/rc-menu/es/hooks/useAccessibility.cjs +0 -230
  2464. package/dist/node_modules/rc-menu/es/hooks/useAccessibility.js +0 -212
  2465. package/dist/node_modules/rc-menu/es/hooks/useActive.cjs +0 -46
  2466. package/dist/node_modules/rc-menu/es/hooks/useActive.js +0 -28
  2467. package/dist/node_modules/rc-menu/es/hooks/useDirectionStyle.cjs +0 -35
  2468. package/dist/node_modules/rc-menu/es/hooks/useDirectionStyle.js +0 -17
  2469. package/dist/node_modules/rc-menu/es/hooks/useKeyRecords.cjs +0 -121
  2470. package/dist/node_modules/rc-menu/es/hooks/useKeyRecords.js +0 -103
  2471. package/dist/node_modules/rc-menu/es/hooks/useMemoCallback.cjs +0 -34
  2472. package/dist/node_modules/rc-menu/es/hooks/useMemoCallback.js +0 -16
  2473. package/dist/node_modules/rc-menu/es/hooks/useUUID.cjs +0 -37
  2474. package/dist/node_modules/rc-menu/es/hooks/useUUID.js +0 -19
  2475. package/dist/node_modules/rc-menu/es/index.cjs +0 -20
  2476. package/dist/node_modules/rc-menu/es/index.js +0 -20
  2477. package/dist/node_modules/rc-menu/es/placements.cjs +0 -77
  2478. package/dist/node_modules/rc-menu/es/placements.js +0 -77
  2479. package/dist/node_modules/rc-menu/es/utils/commonUtil.cjs +0 -46
  2480. package/dist/node_modules/rc-menu/es/utils/commonUtil.js +0 -28
  2481. package/dist/node_modules/rc-menu/es/utils/motionUtil.cjs +0 -11
  2482. package/dist/node_modules/rc-menu/es/utils/motionUtil.js +0 -12
  2483. package/dist/node_modules/rc-menu/es/utils/nodeUtil.cjs +0 -83
  2484. package/dist/node_modules/rc-menu/es/utils/nodeUtil.js +0 -65
  2485. package/dist/node_modules/rc-menu/es/utils/timeUtil.cjs +0 -5
  2486. package/dist/node_modules/rc-menu/es/utils/timeUtil.js +0 -6
  2487. package/dist/node_modules/rc-menu/es/utils/warnUtil.cjs +0 -15
  2488. package/dist/node_modules/rc-menu/es/utils/warnUtil.js +0 -16
  2489. package/dist/node_modules/rc-motion/es/CSSMotion.cjs +0 -120
  2490. package/dist/node_modules/rc-motion/es/CSSMotion.js +0 -102
  2491. package/dist/node_modules/rc-motion/es/CSSMotionList.cjs +0 -143
  2492. package/dist/node_modules/rc-motion/es/CSSMotionList.js +0 -124
  2493. package/dist/node_modules/rc-motion/es/DomWrapper.cjs +0 -41
  2494. package/dist/node_modules/rc-motion/es/DomWrapper.js +0 -23
  2495. package/dist/node_modules/rc-motion/es/context.cjs +0 -33
  2496. package/dist/node_modules/rc-motion/es/context.js +0 -14
  2497. package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.cjs +0 -48
  2498. package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.js +0 -31
  2499. package/dist/node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.cjs +0 -5
  2500. package/dist/node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.js +0 -6
  2501. package/dist/node_modules/rc-motion/es/hooks/useNextFrame.cjs +0 -51
  2502. package/dist/node_modules/rc-motion/es/hooks/useNextFrame.js +0 -33
  2503. package/dist/node_modules/rc-motion/es/hooks/useStatus.cjs +0 -182
  2504. package/dist/node_modules/rc-motion/es/hooks/useStatus.js +0 -165
  2505. package/dist/node_modules/rc-motion/es/hooks/useStepQueue.cjs +0 -74
  2506. package/dist/node_modules/rc-motion/es/hooks/useStepQueue.js +0 -55
  2507. package/dist/node_modules/rc-motion/es/index.cjs +0 -7
  2508. package/dist/node_modules/rc-motion/es/index.js +0 -7
  2509. package/dist/node_modules/rc-motion/es/interface.cjs +0 -21
  2510. package/dist/node_modules/rc-motion/es/interface.js +0 -22
  2511. package/dist/node_modules/rc-motion/es/util/diff.cjs +0 -94
  2512. package/dist/node_modules/rc-motion/es/util/diff.js +0 -95
  2513. package/dist/node_modules/rc-motion/es/util/motion.cjs +0 -73
  2514. package/dist/node_modules/rc-motion/es/util/motion.js +0 -74
  2515. package/dist/node_modules/rc-overflow/es/Item.cjs +0 -77
  2516. package/dist/node_modules/rc-overflow/es/Item.js +0 -59
  2517. package/dist/node_modules/rc-overflow/es/Overflow.cjs +0 -240
  2518. package/dist/node_modules/rc-overflow/es/Overflow.js +0 -222
  2519. package/dist/node_modules/rc-overflow/es/RawItem.cjs +0 -47
  2520. package/dist/node_modules/rc-overflow/es/RawItem.js +0 -29
  2521. package/dist/node_modules/rc-overflow/es/context.cjs +0 -4
  2522. package/dist/node_modules/rc-overflow/es/context.js +0 -5
  2523. package/dist/node_modules/rc-overflow/es/hooks/channelUpdate.cjs +0 -14
  2524. package/dist/node_modules/rc-overflow/es/hooks/channelUpdate.js +0 -15
  2525. package/dist/node_modules/rc-overflow/es/hooks/useEffectState.cjs +0 -55
  2526. package/dist/node_modules/rc-overflow/es/hooks/useEffectState.js +0 -36
  2527. package/dist/node_modules/rc-overflow/es/index.cjs +0 -3
  2528. package/dist/node_modules/rc-overflow/es/index.js +0 -4
  2529. package/dist/node_modules/rc-pagination/es/Options.cjs +0 -105
  2530. package/dist/node_modules/rc-pagination/es/Options.js +0 -106
  2531. package/dist/node_modules/rc-pagination/es/Pager.cjs +0 -29
  2532. package/dist/node_modules/rc-pagination/es/Pager.js +0 -30
  2533. package/dist/node_modules/rc-pagination/es/Pagination.cjs +0 -384
  2534. package/dist/node_modules/rc-pagination/es/Pagination.js +0 -385
  2535. package/dist/node_modules/rc-pagination/es/locale/en_US.cjs +0 -17
  2536. package/dist/node_modules/rc-pagination/es/locale/en_US.js +0 -18
  2537. package/dist/node_modules/rc-pagination/es/locale/zh_CN.cjs +0 -17
  2538. package/dist/node_modules/rc-pagination/es/locale/zh_CN.js +0 -18
  2539. package/dist/node_modules/rc-picker/es/PickerInput/Popup/Footer.cjs +0 -68
  2540. package/dist/node_modules/rc-picker/es/PickerInput/Popup/Footer.js +0 -50
  2541. package/dist/node_modules/rc-picker/es/PickerInput/Popup/PopupPanel.cjs +0 -78
  2542. package/dist/node_modules/rc-picker/es/PickerInput/Popup/PopupPanel.js +0 -60
  2543. package/dist/node_modules/rc-picker/es/PickerInput/Popup/PresetPanel.cjs +0 -48
  2544. package/dist/node_modules/rc-picker/es/PickerInput/Popup/PresetPanel.js +0 -30
  2545. package/dist/node_modules/rc-picker/es/PickerInput/Popup/index.cjs +0 -154
  2546. package/dist/node_modules/rc-picker/es/PickerInput/Popup/index.js +0 -136
  2547. package/dist/node_modules/rc-picker/es/PickerInput/RangePicker.cjs +0 -399
  2548. package/dist/node_modules/rc-picker/es/PickerInput/RangePicker.js +0 -381
  2549. package/dist/node_modules/rc-picker/es/PickerInput/Selector/Icon.cjs +0 -49
  2550. package/dist/node_modules/rc-picker/es/PickerInput/Selector/Icon.js +0 -30
  2551. package/dist/node_modules/rc-picker/es/PickerInput/Selector/Input.cjs +0 -268
  2552. package/dist/node_modules/rc-picker/es/PickerInput/Selector/Input.js +0 -250
  2553. package/dist/node_modules/rc-picker/es/PickerInput/Selector/MaskFormat.cjs +0 -93
  2554. package/dist/node_modules/rc-picker/es/PickerInput/Selector/MaskFormat.js +0 -94
  2555. package/dist/node_modules/rc-picker/es/PickerInput/Selector/RangeSelector.cjs +0 -186
  2556. package/dist/node_modules/rc-picker/es/PickerInput/Selector/RangeSelector.js +0 -168
  2557. package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/MultipleDates.cjs +0 -70
  2558. package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/MultipleDates.js +0 -52
  2559. package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/index.cjs +0 -155
  2560. package/dist/node_modules/rc-picker/es/PickerInput/Selector/SingleSelector/index.js +0 -137
  2561. package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useClearIcon.cjs +0 -36
  2562. package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useClearIcon.js +0 -18
  2563. package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useInputProps.cjs +0 -149
  2564. package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useInputProps.js +0 -131
  2565. package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useRootProps.cjs +0 -29
  2566. package/dist/node_modules/rc-picker/es/PickerInput/Selector/hooks/useRootProps.js +0 -11
  2567. package/dist/node_modules/rc-picker/es/PickerInput/Selector/util.cjs +0 -14
  2568. package/dist/node_modules/rc-picker/es/PickerInput/Selector/util.js +0 -15
  2569. package/dist/node_modules/rc-picker/es/PickerInput/SinglePicker.cjs +0 -353
  2570. package/dist/node_modules/rc-picker/es/PickerInput/SinglePicker.js +0 -335
  2571. package/dist/node_modules/rc-picker/es/PickerInput/context.cjs +0 -23
  2572. package/dist/node_modules/rc-picker/es/PickerInput/context.js +0 -5
  2573. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useCellRender.cjs +0 -53
  2574. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useCellRender.js +0 -35
  2575. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDelayState.cjs +0 -38
  2576. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDelayState.js +0 -39
  2577. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDisabledBoundary.cjs +0 -23
  2578. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useDisabledBoundary.js +0 -24
  2579. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldFormat.cjs +0 -40
  2580. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldFormat.js +0 -22
  2581. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldsInvalidate.cjs +0 -54
  2582. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFieldsInvalidate.js +0 -36
  2583. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFilledProps.cjs +0 -100
  2584. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useFilledProps.js +0 -82
  2585. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInputReadOnly.cjs +0 -8
  2586. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInputReadOnly.js +0 -9
  2587. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInvalidate.cjs +0 -52
  2588. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useInvalidate.js +0 -53
  2589. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useLockEffect.cjs +0 -41
  2590. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useLockEffect.js +0 -23
  2591. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useOpen.cjs +0 -19
  2592. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useOpen.js +0 -20
  2593. package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePickerRef.cjs +0 -40
  2594. package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePickerRef.js +0 -22
  2595. package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePresets.cjs +0 -42
  2596. package/dist/node_modules/rc-picker/es/PickerInput/hooks/usePresets.js +0 -24
  2597. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeActive.cjs +0 -71
  2598. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeActive.js +0 -53
  2599. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeDisabledDate.cjs +0 -27
  2600. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeDisabledDate.js +0 -28
  2601. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangePickerValue.cjs +0 -155
  2602. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangePickerValue.js +0 -136
  2603. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeValue.cjs +0 -195
  2604. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useRangeValue.js +0 -176
  2605. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useShowNow.cjs +0 -14
  2606. package/dist/node_modules/rc-picker/es/PickerInput/hooks/useShowNow.js +0 -15
  2607. package/dist/node_modules/rc-picker/es/PickerPanel/DatePanel/index.cjs +0 -165
  2608. package/dist/node_modules/rc-picker/es/PickerPanel/DatePanel/index.js +0 -147
  2609. package/dist/node_modules/rc-picker/es/PickerPanel/DateTimePanel/index.cjs +0 -52
  2610. package/dist/node_modules/rc-picker/es/PickerPanel/DateTimePanel/index.js +0 -34
  2611. package/dist/node_modules/rc-picker/es/PickerPanel/DecadePanel/index.cjs +0 -102
  2612. package/dist/node_modules/rc-picker/es/PickerPanel/DecadePanel/index.js +0 -84
  2613. package/dist/node_modules/rc-picker/es/PickerPanel/MonthPanel/index.cjs +0 -95
  2614. package/dist/node_modules/rc-picker/es/PickerPanel/MonthPanel/index.js +0 -77
  2615. package/dist/node_modules/rc-picker/es/PickerPanel/PanelBody.cjs +0 -121
  2616. package/dist/node_modules/rc-picker/es/PickerPanel/PanelBody.js +0 -103
  2617. package/dist/node_modules/rc-picker/es/PickerPanel/PanelHeader.cjs +0 -124
  2618. package/dist/node_modules/rc-picker/es/PickerPanel/PanelHeader.js +0 -106
  2619. package/dist/node_modules/rc-picker/es/PickerPanel/QuarterPanel/index.cjs +0 -86
  2620. package/dist/node_modules/rc-picker/es/PickerPanel/QuarterPanel/index.js +0 -68
  2621. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/TimeColumn.cjs +0 -124
  2622. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/TimeColumn.js +0 -106
  2623. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/index.cjs +0 -238
  2624. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/index.js +0 -220
  2625. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/useScrollTo.cjs +0 -85
  2626. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/useScrollTo.js +0 -67
  2627. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/util.cjs +0 -31
  2628. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/TimePanelBody/util.js +0 -32
  2629. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/index.cjs +0 -43
  2630. package/dist/node_modules/rc-picker/es/PickerPanel/TimePanel/index.js +0 -25
  2631. package/dist/node_modules/rc-picker/es/PickerPanel/WeekPanel/index.cjs +0 -60
  2632. package/dist/node_modules/rc-picker/es/PickerPanel/WeekPanel/index.js +0 -42
  2633. package/dist/node_modules/rc-picker/es/PickerPanel/YearPanel/index.cjs +0 -104
  2634. package/dist/node_modules/rc-picker/es/PickerPanel/YearPanel/index.js +0 -86
  2635. package/dist/node_modules/rc-picker/es/PickerPanel/context.cjs +0 -60
  2636. package/dist/node_modules/rc-picker/es/PickerPanel/context.js +0 -42
  2637. package/dist/node_modules/rc-picker/es/PickerPanel/index.cjs +0 -227
  2638. package/dist/node_modules/rc-picker/es/PickerPanel/index.js +0 -209
  2639. package/dist/node_modules/rc-picker/es/PickerTrigger/index.cjs +0 -87
  2640. package/dist/node_modules/rc-picker/es/PickerTrigger/index.js +0 -69
  2641. package/dist/node_modules/rc-picker/es/PickerTrigger/util.cjs +0 -6
  2642. package/dist/node_modules/rc-picker/es/PickerTrigger/util.js +0 -7
  2643. package/dist/node_modules/rc-picker/es/generate/dayjs.cjs +0 -218
  2644. package/dist/node_modules/rc-picker/es/generate/dayjs.js +0 -219
  2645. package/dist/node_modules/rc-picker/es/hooks/useLocale.cjs +0 -50
  2646. package/dist/node_modules/rc-picker/es/hooks/useLocale.js +0 -50
  2647. package/dist/node_modules/rc-picker/es/hooks/useSyncState.cjs +0 -35
  2648. package/dist/node_modules/rc-picker/es/hooks/useSyncState.js +0 -17
  2649. package/dist/node_modules/rc-picker/es/hooks/useTimeConfig.cjs +0 -147
  2650. package/dist/node_modules/rc-picker/es/hooks/useTimeConfig.js +0 -148
  2651. package/dist/node_modules/rc-picker/es/hooks/useTimeInfo.cjs +0 -124
  2652. package/dist/node_modules/rc-picker/es/hooks/useTimeInfo.js +0 -106
  2653. package/dist/node_modules/rc-picker/es/hooks/useToggleDates.cjs +0 -18
  2654. package/dist/node_modules/rc-picker/es/hooks/useToggleDates.js +0 -19
  2655. package/dist/node_modules/rc-picker/es/index.cjs +0 -9
  2656. package/dist/node_modules/rc-picker/es/index.js +0 -9
  2657. package/dist/node_modules/rc-picker/es/locale/common.cjs +0 -8
  2658. package/dist/node_modules/rc-picker/es/locale/common.js +0 -9
  2659. package/dist/node_modules/rc-picker/es/locale/en_US.cjs +0 -31
  2660. package/dist/node_modules/rc-picker/es/locale/en_US.js +0 -32
  2661. package/dist/node_modules/rc-picker/es/utils/dateUtil.cjs +0 -137
  2662. package/dist/node_modules/rc-picker/es/utils/dateUtil.js +0 -138
  2663. package/dist/node_modules/rc-picker/es/utils/miscUtil.cjs +0 -66
  2664. package/dist/node_modules/rc-picker/es/utils/miscUtil.js +0 -67
  2665. package/dist/node_modules/rc-picker/es/utils/uiUtil.cjs +0 -8
  2666. package/dist/node_modules/rc-picker/es/utils/uiUtil.js +0 -9
  2667. package/dist/node_modules/rc-progress/es/Circle/PtgCircle.cjs +0 -83
  2668. package/dist/node_modules/rc-progress/es/Circle/PtgCircle.js +0 -65
  2669. package/dist/node_modules/rc-progress/es/Circle/index.cjs +0 -127
  2670. package/dist/node_modules/rc-progress/es/Circle/index.js +0 -109
  2671. package/dist/node_modules/rc-progress/es/Circle/util.cjs +0 -31
  2672. package/dist/node_modules/rc-progress/es/Circle/util.js +0 -32
  2673. package/dist/node_modules/rc-progress/es/Line.cjs +0 -4
  2674. package/dist/node_modules/rc-progress/es/Line.js +0 -3
  2675. package/dist/node_modules/rc-progress/es/common.cjs +0 -37
  2676. package/dist/node_modules/rc-progress/es/common.js +0 -38
  2677. package/dist/node_modules/rc-progress/es/hooks/useId.cjs +0 -45
  2678. package/dist/node_modules/rc-progress/es/hooks/useId.js +0 -26
  2679. package/dist/node_modules/rc-resize-observer/es/Collection.cjs +0 -49
  2680. package/dist/node_modules/rc-resize-observer/es/Collection.js +0 -31
  2681. package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.cjs +0 -41
  2682. package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.js +0 -23
  2683. package/dist/node_modules/rc-resize-observer/es/SingleObserver/index.cjs +0 -102
  2684. package/dist/node_modules/rc-resize-observer/es/SingleObserver/index.js +0 -84
  2685. package/dist/node_modules/rc-resize-observer/es/index.cjs +0 -52
  2686. package/dist/node_modules/rc-resize-observer/es/index.js +0 -34
  2687. package/dist/node_modules/rc-resize-observer/es/utils/observerUtil.cjs +0 -33
  2688. package/dist/node_modules/rc-resize-observer/es/utils/observerUtil.js +0 -34
  2689. package/dist/node_modules/rc-segmented/es/MotionThumb.cjs +0 -171
  2690. package/dist/node_modules/rc-segmented/es/MotionThumb.js +0 -153
  2691. package/dist/node_modules/rc-segmented/es/index.cjs +0 -195
  2692. package/dist/node_modules/rc-segmented/es/index.js +0 -177
  2693. package/dist/node_modules/rc-select/es/BaseSelect/Polite.cjs +0 -43
  2694. package/dist/node_modules/rc-select/es/BaseSelect/Polite.js +0 -25
  2695. package/dist/node_modules/rc-select/es/BaseSelect/index.cjs +0 -442
  2696. package/dist/node_modules/rc-select/es/BaseSelect/index.js +0 -423
  2697. package/dist/node_modules/rc-select/es/OptGroup.cjs +0 -6
  2698. package/dist/node_modules/rc-select/es/OptGroup.js +0 -7
  2699. package/dist/node_modules/rc-select/es/Option.cjs +0 -6
  2700. package/dist/node_modules/rc-select/es/Option.js +0 -7
  2701. package/dist/node_modules/rc-select/es/OptionList.cjs +0 -321
  2702. package/dist/node_modules/rc-select/es/OptionList.js +0 -304
  2703. package/dist/node_modules/rc-select/es/Select.cjs +0 -387
  2704. package/dist/node_modules/rc-select/es/Select.js +0 -369
  2705. package/dist/node_modules/rc-select/es/SelectContext.cjs +0 -23
  2706. package/dist/node_modules/rc-select/es/SelectContext.js +0 -5
  2707. package/dist/node_modules/rc-select/es/SelectTrigger.cjs +0 -130
  2708. package/dist/node_modules/rc-select/es/SelectTrigger.js +0 -112
  2709. package/dist/node_modules/rc-select/es/Selector/Input.cjs +0 -103
  2710. package/dist/node_modules/rc-select/es/Selector/Input.js +0 -85
  2711. package/dist/node_modules/rc-select/es/Selector/MultipleSelector.cjs +0 -162
  2712. package/dist/node_modules/rc-select/es/Selector/MultipleSelector.js +0 -145
  2713. package/dist/node_modules/rc-select/es/Selector/SingleSelector.cjs +0 -91
  2714. package/dist/node_modules/rc-select/es/Selector/SingleSelector.js +0 -73
  2715. package/dist/node_modules/rc-select/es/Selector/index.cjs +0 -144
  2716. package/dist/node_modules/rc-select/es/Selector/index.js +0 -127
  2717. package/dist/node_modules/rc-select/es/TransBtn.cjs +0 -45
  2718. package/dist/node_modules/rc-select/es/TransBtn.js +0 -27
  2719. package/dist/node_modules/rc-select/es/hooks/useAllowClear.cjs +0 -32
  2720. package/dist/node_modules/rc-select/es/hooks/useAllowClear.js +0 -33
  2721. package/dist/node_modules/rc-select/es/hooks/useBaseProps.cjs +0 -28
  2722. package/dist/node_modules/rc-select/es/hooks/useBaseProps.js +0 -9
  2723. package/dist/node_modules/rc-select/es/hooks/useCache.cjs +0 -54
  2724. package/dist/node_modules/rc-select/es/hooks/useCache.js +0 -36
  2725. package/dist/node_modules/rc-select/es/hooks/useDelayReset.cjs +0 -44
  2726. package/dist/node_modules/rc-select/es/hooks/useDelayReset.js +0 -26
  2727. package/dist/node_modules/rc-select/es/hooks/useFilterOptions.cjs +0 -74
  2728. package/dist/node_modules/rc-select/es/hooks/useFilterOptions.js +0 -56
  2729. package/dist/node_modules/rc-select/es/hooks/useId.cjs +0 -46
  2730. package/dist/node_modules/rc-select/es/hooks/useId.js +0 -27
  2731. package/dist/node_modules/rc-select/es/hooks/useLayoutEffect.cjs +0 -30
  2732. package/dist/node_modules/rc-select/es/hooks/useLayoutEffect.js +0 -12
  2733. package/dist/node_modules/rc-select/es/hooks/useLock.cjs +0 -44
  2734. package/dist/node_modules/rc-select/es/hooks/useLock.js +0 -26
  2735. package/dist/node_modules/rc-select/es/hooks/useOptions.cjs +0 -59
  2736. package/dist/node_modules/rc-select/es/hooks/useOptions.js +0 -41
  2737. package/dist/node_modules/rc-select/es/hooks/useRefFunc.cjs +0 -30
  2738. package/dist/node_modules/rc-select/es/hooks/useRefFunc.js +0 -12
  2739. package/dist/node_modules/rc-select/es/hooks/useSelectTriggerControl.cjs +0 -53
  2740. package/dist/node_modules/rc-select/es/hooks/useSelectTriggerControl.js +0 -35
  2741. package/dist/node_modules/rc-select/es/index.cjs +0 -11
  2742. package/dist/node_modules/rc-select/es/index.js +0 -11
  2743. package/dist/node_modules/rc-select/es/utils/commonUtil.cjs +0 -36
  2744. package/dist/node_modules/rc-select/es/utils/commonUtil.js +0 -37
  2745. package/dist/node_modules/rc-select/es/utils/keyUtil.cjs +0 -39
  2746. package/dist/node_modules/rc-select/es/utils/keyUtil.js +0 -40
  2747. package/dist/node_modules/rc-select/es/utils/legacyUtil.cjs +0 -54
  2748. package/dist/node_modules/rc-select/es/utils/legacyUtil.js +0 -36
  2749. package/dist/node_modules/rc-select/es/utils/platformUtil.cjs +0 -5
  2750. package/dist/node_modules/rc-select/es/utils/platformUtil.js +0 -6
  2751. package/dist/node_modules/rc-select/es/utils/valueUtil.cjs +0 -108
  2752. package/dist/node_modules/rc-select/es/utils/valueUtil.js +0 -109
  2753. package/dist/node_modules/rc-select/es/utils/warningPropsUtil.cjs +0 -114
  2754. package/dist/node_modules/rc-select/es/utils/warningPropsUtil.js +0 -95
  2755. package/dist/node_modules/rc-switch/es/index.cjs +0 -77
  2756. package/dist/node_modules/rc-switch/es/index.js +0 -59
  2757. package/dist/node_modules/rc-table/es/Body/BodyRow.cjs +0 -122
  2758. package/dist/node_modules/rc-table/es/Body/BodyRow.js +0 -103
  2759. package/dist/node_modules/rc-table/es/Body/ExpandedRow.cjs +0 -56
  2760. package/dist/node_modules/rc-table/es/Body/ExpandedRow.js +0 -38
  2761. package/dist/node_modules/rc-table/es/Body/MeasureCell.cjs +0 -47
  2762. package/dist/node_modules/rc-table/es/Body/MeasureCell.js +0 -29
  2763. package/dist/node_modules/rc-table/es/Body/MeasureRow.cjs +0 -48
  2764. package/dist/node_modules/rc-table/es/Body/MeasureRow.js +0 -30
  2765. package/dist/node_modules/rc-table/es/Body/index.cjs +0 -89
  2766. package/dist/node_modules/rc-table/es/Body/index.js +0 -71
  2767. package/dist/node_modules/rc-table/es/Cell/index.cjs +0 -124
  2768. package/dist/node_modules/rc-table/es/Cell/index.js +0 -106
  2769. package/dist/node_modules/rc-table/es/Cell/useCellRender.cjs +0 -81
  2770. package/dist/node_modules/rc-table/es/Cell/useCellRender.js +0 -63
  2771. package/dist/node_modules/rc-table/es/Cell/useHoverState.cjs +0 -16
  2772. package/dist/node_modules/rc-table/es/Cell/useHoverState.js +0 -17
  2773. package/dist/node_modules/rc-table/es/ColGroup.cjs +0 -62
  2774. package/dist/node_modules/rc-table/es/ColGroup.js +0 -44
  2775. package/dist/node_modules/rc-table/es/FixedHolder/index.cjs +0 -142
  2776. package/dist/node_modules/rc-table/es/FixedHolder/index.js +0 -125
  2777. package/dist/node_modules/rc-table/es/Footer/Cell.cjs +0 -51
  2778. package/dist/node_modules/rc-table/es/Footer/Cell.js +0 -33
  2779. package/dist/node_modules/rc-table/es/Footer/Row.cjs +0 -28
  2780. package/dist/node_modules/rc-table/es/Footer/Row.js +0 -10
  2781. package/dist/node_modules/rc-table/es/Footer/Summary.cjs +0 -10
  2782. package/dist/node_modules/rc-table/es/Footer/Summary.js +0 -11
  2783. package/dist/node_modules/rc-table/es/Footer/SummaryContext.cjs +0 -23
  2784. package/dist/node_modules/rc-table/es/Footer/SummaryContext.js +0 -5
  2785. package/dist/node_modules/rc-table/es/Footer/index.cjs +0 -53
  2786. package/dist/node_modules/rc-table/es/Footer/index.js +0 -34
  2787. package/dist/node_modules/rc-table/es/Header/Header.cjs +0 -106
  2788. package/dist/node_modules/rc-table/es/Header/Header.js +0 -88
  2789. package/dist/node_modules/rc-table/es/Header/HeaderRow.cjs +0 -64
  2790. package/dist/node_modules/rc-table/es/Header/HeaderRow.js +0 -46
  2791. package/dist/node_modules/rc-table/es/Panel/index.cjs +0 -28
  2792. package/dist/node_modules/rc-table/es/Panel/index.js +0 -10
  2793. package/dist/node_modules/rc-table/es/Table.cjs +0 -569
  2794. package/dist/node_modules/rc-table/es/Table.js +0 -550
  2795. package/dist/node_modules/rc-table/es/VirtualTable/BodyGrid.cjs +0 -230
  2796. package/dist/node_modules/rc-table/es/VirtualTable/BodyGrid.js +0 -212
  2797. package/dist/node_modules/rc-table/es/VirtualTable/BodyLine.cjs +0 -103
  2798. package/dist/node_modules/rc-table/es/VirtualTable/BodyLine.js +0 -85
  2799. package/dist/node_modules/rc-table/es/VirtualTable/VirtualCell.cjs +0 -92
  2800. package/dist/node_modules/rc-table/es/VirtualTable/VirtualCell.js +0 -73
  2801. package/dist/node_modules/rc-table/es/VirtualTable/context.cjs +0 -8
  2802. package/dist/node_modules/rc-table/es/VirtualTable/context.js +0 -9
  2803. package/dist/node_modules/rc-table/es/VirtualTable/index.cjs +0 -96
  2804. package/dist/node_modules/rc-table/es/VirtualTable/index.js +0 -78
  2805. package/dist/node_modules/rc-table/es/constant.cjs +0 -5
  2806. package/dist/node_modules/rc-table/es/constant.js +0 -6
  2807. package/dist/node_modules/rc-table/es/context/PerfContext.cjs +0 -25
  2808. package/dist/node_modules/rc-table/es/context/PerfContext.js +0 -7
  2809. package/dist/node_modules/rc-table/es/context/TableContext.cjs +0 -10
  2810. package/dist/node_modules/rc-table/es/context/TableContext.js +0 -10
  2811. package/dist/node_modules/rc-table/es/hooks/useColumns/index.cjs +0 -226
  2812. package/dist/node_modules/rc-table/es/hooks/useColumns/index.js +0 -207
  2813. package/dist/node_modules/rc-table/es/hooks/useColumns/useWidthColumns.cjs +0 -79
  2814. package/dist/node_modules/rc-table/es/hooks/useColumns/useWidthColumns.js +0 -61
  2815. package/dist/node_modules/rc-table/es/hooks/useExpand.cjs +0 -82
  2816. package/dist/node_modules/rc-table/es/hooks/useExpand.js +0 -64
  2817. package/dist/node_modules/rc-table/es/hooks/useFixedInfo.cjs +0 -15
  2818. package/dist/node_modules/rc-table/es/hooks/useFixedInfo.js +0 -16
  2819. package/dist/node_modules/rc-table/es/hooks/useFlattenRecords.cjs +0 -56
  2820. package/dist/node_modules/rc-table/es/hooks/useFlattenRecords.js +0 -38
  2821. package/dist/node_modules/rc-table/es/hooks/useFrame.cjs +0 -58
  2822. package/dist/node_modules/rc-table/es/hooks/useFrame.js +0 -59
  2823. package/dist/node_modules/rc-table/es/hooks/useHover.cjs +0 -32
  2824. package/dist/node_modules/rc-table/es/hooks/useHover.js +0 -14
  2825. package/dist/node_modules/rc-table/es/hooks/useRenderTimes.cjs +0 -56
  2826. package/dist/node_modules/rc-table/es/hooks/useRenderTimes.js +0 -37
  2827. package/dist/node_modules/rc-table/es/hooks/useRowInfo.cjs +0 -54
  2828. package/dist/node_modules/rc-table/es/hooks/useRowInfo.js +0 -55
  2829. package/dist/node_modules/rc-table/es/hooks/useSticky.cjs +0 -42
  2830. package/dist/node_modules/rc-table/es/hooks/useSticky.js +0 -24
  2831. package/dist/node_modules/rc-table/es/hooks/useStickyOffsets.cjs +0 -29
  2832. package/dist/node_modules/rc-table/es/hooks/useStickyOffsets.js +0 -30
  2833. package/dist/node_modules/rc-table/es/stickyScrollBar.cjs +0 -191
  2834. package/dist/node_modules/rc-table/es/stickyScrollBar.js +0 -173
  2835. package/dist/node_modules/rc-table/es/sugar/Column.cjs +0 -5
  2836. package/dist/node_modules/rc-table/es/sugar/Column.js +0 -6
  2837. package/dist/node_modules/rc-table/es/sugar/ColumnGroup.cjs +0 -5
  2838. package/dist/node_modules/rc-table/es/sugar/ColumnGroup.js +0 -6
  2839. package/dist/node_modules/rc-table/es/utils/expandUtil.cjs +0 -63
  2840. package/dist/node_modules/rc-table/es/utils/expandUtil.js +0 -45
  2841. package/dist/node_modules/rc-table/es/utils/fixUtil.cjs +0 -46
  2842. package/dist/node_modules/rc-table/es/utils/fixUtil.js +0 -47
  2843. package/dist/node_modules/rc-table/es/utils/legacyUtil.cjs +0 -26
  2844. package/dist/node_modules/rc-table/es/utils/legacyUtil.js +0 -27
  2845. package/dist/node_modules/rc-table/es/utils/offsetUtil.cjs +0 -12
  2846. package/dist/node_modules/rc-table/es/utils/offsetUtil.js +0 -13
  2847. package/dist/node_modules/rc-table/es/utils/valueUtil.cjs +0 -31
  2848. package/dist/node_modules/rc-table/es/utils/valueUtil.js +0 -32
  2849. package/dist/node_modules/rc-tabs/es/TabContext.cjs +0 -4
  2850. package/dist/node_modules/rc-tabs/es/TabContext.js +0 -5
  2851. package/dist/node_modules/rc-tabs/es/TabNavList/AddButton.cjs +0 -40
  2852. package/dist/node_modules/rc-tabs/es/TabNavList/AddButton.js +0 -22
  2853. package/dist/node_modules/rc-tabs/es/TabNavList/ExtraContent.cjs +0 -49
  2854. package/dist/node_modules/rc-tabs/es/TabNavList/ExtraContent.js +0 -31
  2855. package/dist/node_modules/rc-tabs/es/TabNavList/OperationNode.cjs +0 -181
  2856. package/dist/node_modules/rc-tabs/es/TabNavList/OperationNode.js +0 -164
  2857. package/dist/node_modules/rc-tabs/es/TabNavList/TabNode.cjs +0 -100
  2858. package/dist/node_modules/rc-tabs/es/TabNavList/TabNode.js +0 -82
  2859. package/dist/node_modules/rc-tabs/es/TabNavList/Wrapper.cjs +0 -51
  2860. package/dist/node_modules/rc-tabs/es/TabNavList/Wrapper.js +0 -33
  2861. package/dist/node_modules/rc-tabs/es/TabNavList/index.cjs +0 -486
  2862. package/dist/node_modules/rc-tabs/es/TabNavList/index.js +0 -469
  2863. package/dist/node_modules/rc-tabs/es/TabPanelList/TabPane.cjs +0 -39
  2864. package/dist/node_modules/rc-tabs/es/TabPanelList/TabPane.js +0 -21
  2865. package/dist/node_modules/rc-tabs/es/TabPanelList/index.cjs +0 -65
  2866. package/dist/node_modules/rc-tabs/es/TabPanelList/index.js +0 -47
  2867. package/dist/node_modules/rc-tabs/es/Tabs.cjs +0 -134
  2868. package/dist/node_modules/rc-tabs/es/Tabs.js +0 -117
  2869. package/dist/node_modules/rc-tabs/es/hooks/useAnimateConfig.cjs +0 -37
  2870. package/dist/node_modules/rc-tabs/es/hooks/useAnimateConfig.js +0 -38
  2871. package/dist/node_modules/rc-tabs/es/hooks/useIndicator.cjs +0 -64
  2872. package/dist/node_modules/rc-tabs/es/hooks/useIndicator.js +0 -65
  2873. package/dist/node_modules/rc-tabs/es/hooks/useOffsets.cjs +0 -32
  2874. package/dist/node_modules/rc-tabs/es/hooks/useOffsets.js +0 -33
  2875. package/dist/node_modules/rc-tabs/es/hooks/useSyncState.cjs +0 -36
  2876. package/dist/node_modules/rc-tabs/es/hooks/useSyncState.js +0 -18
  2877. package/dist/node_modules/rc-tabs/es/hooks/useTouchMove.cjs +0 -139
  2878. package/dist/node_modules/rc-tabs/es/hooks/useTouchMove.js +0 -122
  2879. package/dist/node_modules/rc-tabs/es/hooks/useUpdate.cjs +0 -43
  2880. package/dist/node_modules/rc-tabs/es/hooks/useUpdate.js +0 -43
  2881. package/dist/node_modules/rc-tabs/es/hooks/useVisibleRange.cjs +0 -50
  2882. package/dist/node_modules/rc-tabs/es/hooks/useVisibleRange.js +0 -51
  2883. package/dist/node_modules/rc-tabs/es/index.cjs +0 -3
  2884. package/dist/node_modules/rc-tabs/es/index.js +0 -4
  2885. package/dist/node_modules/rc-tabs/es/util.cjs +0 -32
  2886. package/dist/node_modules/rc-tabs/es/util.js +0 -33
  2887. package/dist/node_modules/rc-textarea/es/ResizableTextArea.cjs +0 -133
  2888. package/dist/node_modules/rc-textarea/es/ResizableTextArea.js +0 -115
  2889. package/dist/node_modules/rc-textarea/es/TextArea.cjs +0 -177
  2890. package/dist/node_modules/rc-textarea/es/TextArea.js +0 -178
  2891. package/dist/node_modules/rc-textarea/es/calculateNodeHeight.cjs +0 -92
  2892. package/dist/node_modules/rc-textarea/es/calculateNodeHeight.js +0 -92
  2893. package/dist/node_modules/rc-textarea/es/index.cjs +0 -9
  2894. package/dist/node_modules/rc-textarea/es/index.js +0 -9
  2895. package/dist/node_modules/rc-tooltip/es/Popup.cjs +0 -35
  2896. package/dist/node_modules/rc-tooltip/es/Popup.js +0 -17
  2897. package/dist/node_modules/rc-tooltip/es/Tooltip.cjs +0 -85
  2898. package/dist/node_modules/rc-tooltip/es/Tooltip.js +0 -68
  2899. package/dist/node_modules/rc-tooltip/es/index.cjs +0 -6
  2900. package/dist/node_modules/rc-tooltip/es/index.js +0 -6
  2901. package/dist/node_modules/rc-tooltip/es/placements.cjs +0 -87
  2902. package/dist/node_modules/rc-tooltip/es/placements.js +0 -87
  2903. package/dist/node_modules/rc-tree/es/DropIndicator.cjs +0 -33
  2904. package/dist/node_modules/rc-tree/es/DropIndicator.js +0 -34
  2905. package/dist/node_modules/rc-tree/es/Indent.cjs +0 -40
  2906. package/dist/node_modules/rc-tree/es/Indent.js +0 -22
  2907. package/dist/node_modules/rc-tree/es/MotionTreeNode.cjs +0 -104
  2908. package/dist/node_modules/rc-tree/es/MotionTreeNode.js +0 -86
  2909. package/dist/node_modules/rc-tree/es/NodeList.cjs +0 -247
  2910. package/dist/node_modules/rc-tree/es/NodeList.js +0 -228
  2911. package/dist/node_modules/rc-tree/es/Tree.cjs +0 -966
  2912. package/dist/node_modules/rc-tree/es/Tree.js +0 -948
  2913. package/dist/node_modules/rc-tree/es/TreeNode.cjs +0 -273
  2914. package/dist/node_modules/rc-tree/es/TreeNode.js +0 -274
  2915. package/dist/node_modules/rc-tree/es/contextTypes.cjs +0 -25
  2916. package/dist/node_modules/rc-tree/es/contextTypes.js +0 -7
  2917. package/dist/node_modules/rc-tree/es/index.cjs +0 -7
  2918. package/dist/node_modules/rc-tree/es/index.js +0 -7
  2919. package/dist/node_modules/rc-tree/es/useUnmount.cjs +0 -41
  2920. package/dist/node_modules/rc-tree/es/useUnmount.js +0 -23
  2921. package/dist/node_modules/rc-tree/es/util.cjs +0 -213
  2922. package/dist/node_modules/rc-tree/es/util.js +0 -214
  2923. package/dist/node_modules/rc-tree/es/utils/conductUtil.cjs +0 -170
  2924. package/dist/node_modules/rc-tree/es/utils/conductUtil.js +0 -171
  2925. package/dist/node_modules/rc-tree/es/utils/diffUtil.cjs +0 -51
  2926. package/dist/node_modules/rc-tree/es/utils/diffUtil.js +0 -52
  2927. package/dist/node_modules/rc-tree/es/utils/keyUtil.cjs +0 -5
  2928. package/dist/node_modules/rc-tree/es/utils/keyUtil.js +0 -6
  2929. package/dist/node_modules/rc-tree/es/utils/treeUtil.cjs +0 -271
  2930. package/dist/node_modules/rc-tree/es/utils/treeUtil.js +0 -272
  2931. package/dist/node_modules/rc-util/es/Children/toArray.cjs +0 -21
  2932. package/dist/node_modules/rc-util/es/Children/toArray.js +0 -22
  2933. package/dist/node_modules/rc-util/es/Dom/addEventListener.cjs +0 -18
  2934. package/dist/node_modules/rc-util/es/Dom/addEventListener.js +0 -19
  2935. package/dist/node_modules/rc-util/es/Dom/canUseDom.cjs +0 -5
  2936. package/dist/node_modules/rc-util/es/Dom/canUseDom.js +0 -6
  2937. package/dist/node_modules/rc-util/es/Dom/contains.cjs +0 -18
  2938. package/dist/node_modules/rc-util/es/Dom/contains.js +0 -19
  2939. package/dist/node_modules/rc-util/es/Dom/dynamicCSS.cjs +0 -123
  2940. package/dist/node_modules/rc-util/es/Dom/dynamicCSS.js +0 -124
  2941. package/dist/node_modules/rc-util/es/Dom/findDOMNode.cjs +0 -31
  2942. package/dist/node_modules/rc-util/es/Dom/findDOMNode.js +0 -31
  2943. package/dist/node_modules/rc-util/es/Dom/focus.cjs +0 -39
  2944. package/dist/node_modules/rc-util/es/Dom/focus.js +0 -40
  2945. package/dist/node_modules/rc-util/es/Dom/isVisible.cjs +0 -25
  2946. package/dist/node_modules/rc-util/es/Dom/isVisible.js +0 -26
  2947. package/dist/node_modules/rc-util/es/Dom/shadow.cjs +0 -13
  2948. package/dist/node_modules/rc-util/es/Dom/shadow.js +0 -14
  2949. package/dist/node_modules/rc-util/es/Dom/styleChecker.cjs +0 -28
  2950. package/dist/node_modules/rc-util/es/Dom/styleChecker.js +0 -29
  2951. package/dist/node_modules/rc-util/es/KeyCode.cjs +0 -154
  2952. package/dist/node_modules/rc-util/es/KeyCode.js +0 -155
  2953. package/dist/node_modules/rc-util/es/React/isFragment.cjs +0 -14
  2954. package/dist/node_modules/rc-util/es/React/isFragment.js +0 -15
  2955. package/dist/node_modules/rc-util/es/React/render.cjs +0 -108
  2956. package/dist/node_modules/rc-util/es/React/render.js +0 -90
  2957. package/dist/node_modules/rc-util/es/getScrollBarSize.cjs +0 -64
  2958. package/dist/node_modules/rc-util/es/getScrollBarSize.js +0 -64
  2959. package/dist/node_modules/rc-util/es/hooks/useEvent.cjs +0 -34
  2960. package/dist/node_modules/rc-util/es/hooks/useEvent.js +0 -16
  2961. package/dist/node_modules/rc-util/es/hooks/useId.cjs +0 -60
  2962. package/dist/node_modules/rc-util/es/hooks/useId.js +0 -42
  2963. package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.cjs +0 -45
  2964. package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.js +0 -26
  2965. package/dist/node_modules/rc-util/es/hooks/useMemo.cjs +0 -30
  2966. package/dist/node_modules/rc-util/es/hooks/useMemo.js +0 -12
  2967. package/dist/node_modules/rc-util/es/hooks/useMergedState.cjs +0 -41
  2968. package/dist/node_modules/rc-util/es/hooks/useMergedState.js +0 -42
  2969. package/dist/node_modules/rc-util/es/hooks/useState.cjs +0 -40
  2970. package/dist/node_modules/rc-util/es/hooks/useState.js +0 -22
  2971. package/dist/node_modules/rc-util/es/hooks/useSyncState.cjs +0 -38
  2972. package/dist/node_modules/rc-util/es/hooks/useSyncState.js +0 -20
  2973. package/dist/node_modules/rc-util/es/isEqual.cjs +0 -46
  2974. package/dist/node_modules/rc-util/es/isEqual.js +0 -47
  2975. package/dist/node_modules/rc-util/es/isMobile.cjs +0 -9
  2976. package/dist/node_modules/rc-util/es/isMobile.js +0 -10
  2977. package/dist/node_modules/rc-util/es/omit.cjs +0 -11
  2978. package/dist/node_modules/rc-util/es/omit.js +0 -12
  2979. package/dist/node_modules/rc-util/es/pickAttrs.cjs +0 -40
  2980. package/dist/node_modules/rc-util/es/pickAttrs.js +0 -41
  2981. package/dist/node_modules/rc-util/es/raf.cjs +0 -49
  2982. package/dist/node_modules/rc-util/es/raf.js +0 -50
  2983. package/dist/node_modules/rc-util/es/ref.cjs +0 -76
  2984. package/dist/node_modules/rc-util/es/ref.js +0 -77
  2985. package/dist/node_modules/rc-util/es/utils/get.cjs +0 -12
  2986. package/dist/node_modules/rc-util/es/utils/get.js +0 -13
  2987. package/dist/node_modules/rc-util/es/utils/set.cjs +0 -74
  2988. package/dist/node_modules/rc-util/es/utils/set.js +0 -74
  2989. package/dist/node_modules/rc-util/es/warning.cjs +0 -53
  2990. package/dist/node_modules/rc-util/es/warning.js +0 -53
  2991. package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.cjs +0 -192
  2992. package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.js +0 -193
  2993. package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.cjs +0 -108
  2994. package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.js +0 -109
  2995. package/dist/node_modules/rc-util/node_modules/react-is/index.cjs +0 -16
  2996. package/dist/node_modules/rc-util/node_modules/react-is/index.js +0 -17
  2997. package/dist/node_modules/rc-virtual-list/es/Filler.cjs +0 -60
  2998. package/dist/node_modules/rc-virtual-list/es/Filler.js +0 -42
  2999. package/dist/node_modules/rc-virtual-list/es/Item.cjs +0 -31
  3000. package/dist/node_modules/rc-virtual-list/es/Item.js +0 -13
  3001. package/dist/node_modules/rc-virtual-list/es/List.cjs +0 -451
  3002. package/dist/node_modules/rc-virtual-list/es/List.js +0 -433
  3003. package/dist/node_modules/rc-virtual-list/es/ScrollBar.cjs +0 -216
  3004. package/dist/node_modules/rc-virtual-list/es/ScrollBar.js +0 -198
  3005. package/dist/node_modules/rc-virtual-list/es/hooks/useChildren.cjs +0 -42
  3006. package/dist/node_modules/rc-virtual-list/es/hooks/useChildren.js +0 -24
  3007. package/dist/node_modules/rc-virtual-list/es/hooks/useDiffItem.cjs +0 -36
  3008. package/dist/node_modules/rc-virtual-list/es/hooks/useDiffItem.js +0 -18
  3009. package/dist/node_modules/rc-virtual-list/es/hooks/useFrameWheel.cjs +0 -71
  3010. package/dist/node_modules/rc-virtual-list/es/hooks/useFrameWheel.js +0 -72
  3011. package/dist/node_modules/rc-virtual-list/es/hooks/useGetSize.cjs +0 -58
  3012. package/dist/node_modules/rc-virtual-list/es/hooks/useGetSize.js +0 -40
  3013. package/dist/node_modules/rc-virtual-list/es/hooks/useHeights.cjs +0 -87
  3014. package/dist/node_modules/rc-virtual-list/es/hooks/useHeights.js +0 -70
  3015. package/dist/node_modules/rc-virtual-list/es/hooks/useMobileTouchMove.cjs +0 -83
  3016. package/dist/node_modules/rc-virtual-list/es/hooks/useMobileTouchMove.js +0 -84
  3017. package/dist/node_modules/rc-virtual-list/es/hooks/useOriginScroll.cjs +0 -40
  3018. package/dist/node_modules/rc-virtual-list/es/hooks/useOriginScroll.js +0 -41
  3019. package/dist/node_modules/rc-virtual-list/es/hooks/useScrollDrag.cjs +0 -92
  3020. package/dist/node_modules/rc-virtual-list/es/hooks/useScrollDrag.js +0 -73
  3021. package/dist/node_modules/rc-virtual-list/es/hooks/useScrollTo.cjs +0 -136
  3022. package/dist/node_modules/rc-virtual-list/es/hooks/useScrollTo.js +0 -118
  3023. package/dist/node_modules/rc-virtual-list/es/index.cjs +0 -3
  3024. package/dist/node_modules/rc-virtual-list/es/index.js +0 -4
  3025. package/dist/node_modules/rc-virtual-list/es/utils/CacheMap.cjs +0 -42
  3026. package/dist/node_modules/rc-virtual-list/es/utils/CacheMap.js +0 -43
  3027. package/dist/node_modules/rc-virtual-list/es/utils/algorithmUtil.cjs +0 -42
  3028. package/dist/node_modules/rc-virtual-list/es/utils/algorithmUtil.js +0 -43
  3029. package/dist/node_modules/rc-virtual-list/es/utils/isFirefox.cjs +0 -4
  3030. package/dist/node_modules/rc-virtual-list/es/utils/isFirefox.js +0 -5
  3031. package/dist/node_modules/rc-virtual-list/es/utils/scrollbarUtil.cjs +0 -13
  3032. package/dist/node_modules/rc-virtual-list/es/utils/scrollbarUtil.js +0 -14
  3033. package/dist/node_modules/react-icons/fa6/index.cjs +0 -7
  3034. package/dist/node_modules/react-icons/fa6/index.js +0 -8
  3035. package/dist/node_modules/react-icons/fi/index.cjs +0 -7
  3036. package/dist/node_modules/react-icons/fi/index.js +0 -8
  3037. package/dist/node_modules/react-icons/hi/index.cjs +0 -59
  3038. package/dist/node_modules/react-icons/hi/index.js +0 -60
  3039. package/dist/node_modules/react-icons/hi2/index.cjs +0 -7
  3040. package/dist/node_modules/react-icons/hi2/index.js +0 -8
  3041. package/dist/node_modules/react-icons/lib/iconBase.cjs +0 -127
  3042. package/dist/node_modules/react-icons/lib/iconBase.js +0 -128
  3043. package/dist/node_modules/react-icons/lib/iconContext.cjs +0 -12
  3044. package/dist/node_modules/react-icons/lib/iconContext.js +0 -13
  3045. package/dist/node_modules/react-icons/lu/index.cjs +0 -7
  3046. package/dist/node_modules/react-icons/lu/index.js +0 -8
  3047. package/dist/node_modules/react-icons/pi/index.cjs +0 -15
  3048. package/dist/node_modules/react-icons/pi/index.js +0 -16
  3049. package/dist/node_modules/react-icons/tb/index.cjs +0 -7
  3050. package/dist/node_modules/react-icons/tb/index.js +0 -8
  3051. package/dist/node_modules/react-markdown/lib/index.cjs +0 -148
  3052. package/dist/node_modules/react-markdown/lib/index.js +0 -149
  3053. package/dist/node_modules/react-toastify/dist/ReactToastify.css.cjs +0 -1
  3054. package/dist/node_modules/react-toastify/dist/ReactToastify.css.js +0 -1
  3055. package/dist/node_modules/react-toastify/dist/index.cjs +0 -392
  3056. package/dist/node_modules/react-toastify/dist/index.js +0 -393
  3057. package/dist/node_modules/react-toastify/node_modules/clsx/dist/clsx.cjs +0 -17
  3058. package/dist/node_modules/react-toastify/node_modules/clsx/dist/clsx.js +0 -17
  3059. package/dist/node_modules/remark-parse/lib/index.cjs +0 -18
  3060. package/dist/node_modules/remark-parse/lib/index.js +0 -19
  3061. package/dist/node_modules/remark-rehype/lib/index.cjs +0 -20
  3062. package/dist/node_modules/remark-rehype/lib/index.js +0 -21
  3063. package/dist/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.cjs +0 -494
  3064. package/dist/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js +0 -495
  3065. package/dist/node_modules/scroll-into-view-if-needed/dist/index.cjs +0 -24
  3066. package/dist/node_modules/scroll-into-view-if-needed/dist/index.js +0 -25
  3067. package/dist/node_modules/socket.io-client/build/esm/contrib/backo2.cjs +0 -31
  3068. package/dist/node_modules/socket.io-client/build/esm/contrib/backo2.js +0 -32
  3069. package/dist/node_modules/socket.io-client/build/esm/index.cjs +0 -58
  3070. package/dist/node_modules/socket.io-client/build/esm/index.js +0 -58
  3071. package/dist/node_modules/socket.io-client/build/esm/manager.cjs +0 -363
  3072. package/dist/node_modules/socket.io-client/build/esm/manager.js +0 -364
  3073. package/dist/node_modules/socket.io-client/build/esm/on.cjs +0 -8
  3074. package/dist/node_modules/socket.io-client/build/esm/on.js +0 -9
  3075. package/dist/node_modules/socket.io-client/build/esm/socket.cjs +0 -777
  3076. package/dist/node_modules/socket.io-client/build/esm/socket.js +0 -778
  3077. package/dist/node_modules/socket.io-client/build/esm/url.cjs +0 -48
  3078. package/dist/node_modules/socket.io-client/build/esm/url.js +0 -49
  3079. package/dist/node_modules/socket.io-parser/build/esm/binary.cjs +0 -64
  3080. package/dist/node_modules/socket.io-parser/build/esm/binary.js +0 -65
  3081. package/dist/node_modules/socket.io-parser/build/esm/index.cjs +0 -261
  3082. package/dist/node_modules/socket.io-parser/build/esm/index.js +0 -263
  3083. package/dist/node_modules/socket.io-parser/build/esm/is-binary.cjs +0 -38
  3084. package/dist/node_modules/socket.io-parser/build/esm/is-binary.js +0 -39
  3085. package/dist/node_modules/space-separated-tokens/index.cjs +0 -5
  3086. package/dist/node_modules/space-separated-tokens/index.js +0 -6
  3087. package/dist/node_modules/style-to-js/cjs/index.cjs +0 -30
  3088. package/dist/node_modules/style-to-js/cjs/index.js +0 -31
  3089. package/dist/node_modules/style-to-js/cjs/utilities.cjs +0 -41
  3090. package/dist/node_modules/style-to-js/cjs/utilities.js +0 -42
  3091. package/dist/node_modules/style-to-object/cjs/index.cjs +0 -37
  3092. package/dist/node_modules/style-to-object/cjs/index.js +0 -38
  3093. package/dist/node_modules/stylis/src/Enum.cjs +0 -15
  3094. package/dist/node_modules/stylis/src/Enum.js +0 -16
  3095. package/dist/node_modules/stylis/src/Parser.cjs +0 -163
  3096. package/dist/node_modules/stylis/src/Parser.js +0 -164
  3097. package/dist/node_modules/stylis/src/Serializer.cjs +0 -28
  3098. package/dist/node_modules/stylis/src/Serializer.js +0 -29
  3099. package/dist/node_modules/stylis/src/Tokenizer.cjs +0 -149
  3100. package/dist/node_modules/stylis/src/Tokenizer.js +0 -156
  3101. package/dist/node_modules/stylis/src/Utility.cjs +0 -37
  3102. package/dist/node_modules/stylis/src/Utility.js +0 -38
  3103. package/dist/node_modules/throttle-debounce/esm/index.cjs +0 -60
  3104. package/dist/node_modules/throttle-debounce/esm/index.js +0 -61
  3105. package/dist/node_modules/toggle-selection/index.cjs +0 -41
  3106. package/dist/node_modules/toggle-selection/index.js +0 -42
  3107. package/dist/node_modules/trim-lines/index.cjs +0 -40
  3108. package/dist/node_modules/trim-lines/index.js +0 -41
  3109. package/dist/node_modules/trough/lib/index.cjs +0 -85
  3110. package/dist/node_modules/trough/lib/index.js +0 -86
  3111. package/dist/node_modules/unified/lib/callable-instance.cjs +0 -29
  3112. package/dist/node_modules/unified/lib/callable-instance.js +0 -30
  3113. package/dist/node_modules/unified/lib/index.cjs +0 -635
  3114. package/dist/node_modules/unified/lib/index.js +0 -636
  3115. package/dist/node_modules/unist-util-is/lib/index.cjs +0 -92
  3116. package/dist/node_modules/unist-util-is/lib/index.js +0 -93
  3117. package/dist/node_modules/unist-util-position/lib/index.cjs +0 -26
  3118. package/dist/node_modules/unist-util-position/lib/index.js +0 -27
  3119. package/dist/node_modules/unist-util-stringify-position/lib/index.cjs +0 -26
  3120. package/dist/node_modules/unist-util-stringify-position/lib/index.js +0 -27
  3121. package/dist/node_modules/unist-util-visit/lib/index.cjs +0 -26
  3122. package/dist/node_modules/unist-util-visit/lib/index.js +0 -28
  3123. package/dist/node_modules/unist-util-visit-parents/lib/color.cjs +0 -5
  3124. package/dist/node_modules/unist-util-visit-parents/lib/color.js +0 -6
  3125. package/dist/node_modules/unist-util-visit-parents/lib/index.cjs +0 -82
  3126. package/dist/node_modules/unist-util-visit-parents/lib/index.js +0 -83
  3127. package/dist/node_modules/vfile/lib/index.cjs +0 -461
  3128. package/dist/node_modules/vfile/lib/index.js +0 -462
  3129. package/dist/node_modules/vfile/lib/minpath.browser.cjs +0 -213
  3130. package/dist/node_modules/vfile/lib/minpath.browser.js +0 -214
  3131. package/dist/node_modules/vfile/lib/minproc.browser.cjs +0 -6
  3132. package/dist/node_modules/vfile/lib/minproc.browser.js +0 -7
  3133. package/dist/node_modules/vfile/lib/minurl.browser.cjs +0 -45
  3134. package/dist/node_modules/vfile/lib/minurl.browser.js +0 -46
  3135. package/dist/node_modules/vfile/lib/minurl.shared.cjs +0 -8
  3136. package/dist/node_modules/vfile/lib/minurl.shared.js +0 -9
  3137. package/dist/node_modules/vfile-message/lib/index.cjs +0 -137
  3138. package/dist/node_modules/vfile-message/lib/index.js +0 -138
  3139. package/dist/providers/BreakpointProvider.cjs +0 -30
  3140. package/dist/providers/BreakpointProvider.d.ts +0 -7
  3141. package/dist/providers/BreakpointProvider.js +0 -31
  3142. package/dist/providers/GenesisProvider.cjs +0 -16
  3143. package/dist/providers/GenesisProvider.d.ts +0 -7
  3144. package/dist/providers/GenesisProvider.js +0 -16
  3145. package/dist/providers/ToastProvider.cjs +0 -72
  3146. package/dist/providers/ToastProvider.d.ts +0 -12
  3147. package/dist/providers/ToastProvider.js +0 -73
  3148. package/dist/providers/__stories__/GenesisProvider.stories.d.ts +0 -5
  3149. package/dist/providers/index.d.ts +0 -2
  3150. package/dist/providers/useGenesis.cjs +0 -15
  3151. package/dist/providers/useGenesis.d.ts +0 -7
  3152. package/dist/providers/useGenesis.js +0 -16
  3153. package/dist/styles/design-tokens/border-tokens/BorderTokenList.d.ts +0 -1
  3154. package/dist/styles/design-tokens/border-tokens/BorderTokens.stories.d.ts +0 -5
  3155. package/dist/styles/design-tokens/color-tokens/ColorTokens.stories.d.ts +0 -6
  3156. package/dist/styles/design-tokens/sizing-tokens/SizingTokenList.d.ts +0 -1
  3157. package/dist/styles/design-tokens/sizing-tokens/index.stories.d.ts +0 -5
  3158. package/dist/styles/design-tokens/typography-tokens/TypographyTokens.stories.d.ts +0 -7
  3159. package/dist/styles/design-tokens/variables.cjs +0 -395
  3160. package/dist/styles/global-styles.cjs +0 -24
  3161. package/dist/styles/global-styles.d.ts +0 -1
  3162. package/dist/styles/global-styles.js +0 -25
  3163. package/dist/styles/theme/genesis-theme.cjs +0 -1335
  3164. package/dist/styles/theme/genesis-theme.test.d.ts +0 -1
  3165. package/dist/styles/theme/theme-tree/ThemeTree.d.ts +0 -1
  3166. package/dist/styles/theme/theme-tree/ThemeTree.stories.d.ts +0 -5
  3167. package/dist/types/index.d.ts +0 -1
  3168. package/dist/utils/icon-util.cjs +0 -105
  3169. package/dist/utils/simple-markdown.d.ts +0 -4
  3170. package/dist/utils/user-util.cjs +0 -13
  3171. package/dist/utils/user-util.d.ts +0 -2
  3172. package/dist/utils/user-util.js +0 -14
  3173. /package/dist/{components/Avatar/__tests__/Avatar.test.d.ts → interface/address.js} +0 -0
  3174. /package/dist/{components/Badge/__tests__/Badge.test.d.ts → types/events.js} +0 -0
@@ -1,1336 +1,1512 @@
1
- import { Size4, Size3, Size2, Size1, Size25, Size025, Size15, Size05, Size64, Size50, Size43, Size39, Size35, Size34, Size32, Size30, Size28, Size27, Size24, Size20, Size18, Size16, Size14, Size13, Size12, Size10, Size8, Size7, Size6, Size5, Size2_5, Size1_5, ColorSky800, ColorGray400, ColorGray300, ColorGray200, ColorGray100, ColorGrayWhite, BorderRadiusMd, BorderRadiusSm, ColorGrayBlack, ColorGray900, ColorGray800, ColorGray700, ColorGray600, ColorGray500, ColorPurple900, ColorPurple800, ColorPurple700, ColorPurple600, ColorPurple500, ColorPurple400, ColorPurple300, ColorPurple200, ColorPurple100, ColorBlue900, ColorBlue800, ColorBlue700, ColorBlue600, ColorBlue500, ColorBlue400, ColorBlue300, ColorBlue200, ColorBlue100, ColorSky900, ColorSky700, ColorSky600, ColorSky500, ColorSky400, ColorSky300, ColorSky200, ColorSky100, ColorGreen900, ColorGreen800, ColorGreen700, ColorGreen600, ColorGreen500, ColorGreen400, ColorGreen300, ColorGreen200, ColorGreen100, ColorYellow900, ColorYellow800, ColorYellow700, ColorYellow600, ColorYellow500, ColorYellow400, ColorYellow300, ColorYellow200, ColorYellow100, ColorOrange900, ColorOrange800, ColorOrange700, ColorOrange600, ColorOrange500, ColorOrange400, ColorOrange300, ColorOrange200, ColorOrange100, ColorRed900, ColorRed800, ColorRed700, ColorRed600, ColorRed500, ColorRed400, ColorRed300, ColorRed200, ColorRed100, TypographyNarrowFontSizeDigits3, TypographyNarrowFontSizeDigits2, TypographyNarrowFontSizeDigits1, TypographyNarrowFontSizeLink3, TypographyNarrowFontSizeLink2, TypographyNarrowFontSizeLink1, TypographyNarrowFontSizeLabel3, TypographyNarrowFontSizeLabel2, TypographyNarrowFontSizeLabel1, TypographyNarrowFontSizeOverline3, TypographyNarrowFontSizeOverline2, TypographyNarrowFontSizeOverline1, TypographyNarrowFontSizeMessage, TypographyNarrowFontSizeBody5, TypographyNarrowFontSizeBody4, TypographyNarrowFontSizeBody3, TypographyNarrowFontSizeBody2, TypographyNarrowFontSizeBody1, TypographyNarrowFontSizeSubHeading3, TypographyNarrowFontSizeSubHeading2, TypographyNarrowFontSizeSubHeading1, TypographyNarrowFontSizeHeading3, TypographyNarrowFontSizeHeading2, TypographyNarrowFontSizeHeading1, TypographyNarrowFontSizeDisplay3, TypographyNarrowFontSizeDisplay2, TypographyNarrowFontSizeDisplay1, TypographyMediumFontSizeDigits3, TypographyMediumFontSizeDigits2, TypographyMediumFontSizeDigits1, TypographyMediumFontSizeLink3, TypographyMediumFontSizeLink2, TypographyMediumFontSizeLink1, TypographyMediumFontSizeLabel3, TypographyMediumFontSizeLabel2, TypographyMediumFontSizeLabel1, TypographyMediumFontSizeOverline3, TypographyMediumFontSizeOverline2, TypographyMediumFontSizeOverline1, TypographyMediumFontSizeMessage, TypographyMediumFontSizeBody5, TypographyMediumFontSizeBody4, TypographyMediumFontSizeBody3, TypographyMediumFontSizeBody2, TypographyMediumFontSizeBody1, TypographyMediumFontSizeSubHeading3, TypographyMediumFontSizeSubHeading2, TypographyMediumFontSizeSubHeading1, TypographyMediumFontSizeHeading3, TypographyMediumFontSizeHeading2, TypographyMediumFontSizeHeading1, TypographyMediumFontSizeDisplay3, TypographyMediumFontSizeDisplay2, TypographyMediumFontSizeDisplay1, TypographyWideFontSizeDigits3, TypographyWideFontSizeDigits2, TypographyWideFontSizeDigits1, TypographyWideFontSizeLink3, TypographyWideFontSizeLink2, TypographyWideFontSizeLink1, TypographyWideFontSizeLabel3, TypographyWideFontSizeLabel2, TypographyWideFontSizeLabel1, TypographyWideFontSizeOverline3, TypographyWideFontSizeOverline2, TypographyWideFontSizeOverline1, TypographyWideFontSizeMessage, TypographyWideFontSizeBody5, TypographyWideFontSizeBody4, TypographyWideFontSizeBody3, TypographyWideFontSizeBody2, TypographyWideFontSizeBody1, TypographyWideFontSizeSubHeading3, TypographyWideFontSizeSubHeading2, TypographyWideFontSizeSubHeading1, TypographyWideFontSizeHeading3, TypographyWideFontSizeHeading2, TypographyWideFontSizeHeading1, TypographyWideFontSizeDisplay3, TypographyWideFontSizeDisplay2, TypographyWideFontSizeDisplay1, TypographyPrimaryFontFamily, BorderRadiusRounded, BorderRadiusXxxl, BorderRadiusXxl, BorderRadiusXl, BorderRadiusLg, BorderRadiusXs, BorderRadiusNone } from "../design-tokens/variables.js";
2
- const breakpoints = {
3
- wide: 1280,
4
- medium: 1024,
5
- narrow: 480
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
- const borderRadius = {
8
- BorderRadiusNone,
9
- BorderRadiusXs,
10
- BorderRadiusSm,
11
- BorderRadiusMd,
12
- BorderRadiusLg,
13
- BorderRadiusXl,
14
- BorderRadiusXxl,
15
- BorderRadiusXxxl,
16
- BorderRadiusRounded
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
- const sizing = {
19
- Size1,
20
- // 4px
21
- Size1_5,
22
- // 6px
23
- Size2,
24
- // 8px
25
- Size2_5,
26
- // 10px
27
- Size3,
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
- const TypographySizeKey = {
96
- display1: "display1",
97
- display2: "display2",
98
- display3: "display3",
99
- heading1: "heading1",
100
- heading2: "heading2",
101
- heading3: "heading3",
102
- subHeading1: "subHeading1",
103
- subHeading2: "subHeading2",
104
- subHeading3: "subHeading3",
105
- body1: "body1",
106
- body2: "body2",
107
- body3: "body3",
108
- body4: "body4",
109
- body5: "body5",
110
- message: "message",
111
- overline1: "overline1",
112
- overline2: "overline2",
113
- overline3: "overline3",
114
- label1: "label1",
115
- label2: "label2",
116
- label3: "label3",
117
- link1: "link1",
118
- link2: "link2",
119
- link3: "link3",
120
- digits1: "digits1",
121
- digits2: "digits2",
122
- digits3: "digits3"
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
- const wideTypography = {
125
- display1: {
126
- fontSize: TypographyWideFontSizeDisplay1,
127
- lineHeight: "3.5rem",
128
- fontWeight: 700,
129
- letterSpacing: "0"
130
- },
131
- display2: {
132
- fontSize: TypographyWideFontSizeDisplay2,
133
- lineHeight: "3rem",
134
- fontWeight: 700,
135
- letterSpacing: "0"
136
- },
137
- display3: {
138
- fontSize: TypographyWideFontSizeDisplay3,
139
- lineHeight: "2.5rem",
140
- fontWeight: 700,
141
- letterSpacing: "0"
142
- },
143
- heading1: {
144
- fontSize: TypographyWideFontSizeHeading1,
145
- lineHeight: "2rem",
146
- fontWeight: 700,
147
- letterSpacing: "0"
148
- },
149
- heading2: {
150
- fontSize: TypographyWideFontSizeHeading2,
151
- lineHeight: "1.75rem",
152
- fontWeight: 700,
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
- const mediumTypography = {
289
- display1: {
290
- fontSize: TypographyMediumFontSizeDisplay1,
291
- lineHeight: "3.5rem",
292
- fontWeight: 700,
293
- letterSpacing: "0"
294
- },
295
- display2: {
296
- fontSize: TypographyMediumFontSizeDisplay2,
297
- lineHeight: "3rem",
298
- fontWeight: 700,
299
- letterSpacing: "0"
300
- },
301
- display3: {
302
- fontSize: TypographyMediumFontSizeDisplay3,
303
- lineHeight: "2.5rem",
304
- fontWeight: 700,
305
- letterSpacing: "0"
306
- },
307
- heading1: {
308
- fontSize: TypographyMediumFontSizeHeading1,
309
- lineHeight: "2rem",
310
- fontWeight: 700,
311
- letterSpacing: "0"
312
- },
313
- heading2: {
314
- fontSize: TypographyMediumFontSizeHeading2,
315
- lineHeight: "1.75rem",
316
- fontWeight: 700,
317
- letterSpacing: "0"
318
- },
319
- heading3: {
320
- fontSize: TypographyMediumFontSizeHeading3,
321
- lineHeight: "1.5rem",
322
- fontWeight: 700,
323
- letterSpacing: "0"
324
- },
325
- subHeading1: {
326
- fontSize: TypographyMediumFontSizeSubHeading1,
327
- lineHeight: "1.25rem",
328
- fontWeight: 600,
329
- letterSpacing: "0"
330
- },
331
- subHeading2: {
332
- fontSize: TypographyMediumFontSizeSubHeading2,
333
- lineHeight: "1.25rem",
334
- fontWeight: 600,
335
- letterSpacing: "0"
336
- },
337
- subHeading3: {
338
- fontSize: TypographyMediumFontSizeSubHeading3,
339
- lineHeight: "1rem",
340
- fontWeight: 600,
341
- letterSpacing: "0"
342
- },
343
- body1: {
344
- fontSize: TypographyMediumFontSizeBody1,
345
- lineHeight: "1.5rem",
346
- fontWeight: 400,
347
- letterSpacing: "0"
348
- },
349
- body2: {
350
- fontSize: TypographyMediumFontSizeBody2,
351
- lineHeight: "1.25rem",
352
- fontWeight: 400,
353
- letterSpacing: "0"
354
- },
355
- body3: {
356
- fontSize: TypographyMediumFontSizeBody3,
357
- lineHeight: "1rem",
358
- fontWeight: 400,
359
- letterSpacing: "0"
360
- },
361
- body4: {
362
- fontSize: TypographyMediumFontSizeBody4,
363
- lineHeight: "0.875rem",
364
- fontWeight: 400,
365
- letterSpacing: "0"
366
- },
367
- body5: {
368
- fontSize: TypographyMediumFontSizeBody5,
369
- lineHeight: "0.75rem",
370
- fontWeight: 400,
371
- letterSpacing: "0"
372
- },
373
- message: {
374
- fontSize: TypographyMediumFontSizeMessage,
375
- lineHeight: "23px",
376
- fontWeight: 400,
377
- letterSpacing: "0"
378
- },
379
- overline1: {
380
- fontSize: TypographyMediumFontSizeOverline1,
381
- lineHeight: "0.75rem",
382
- fontWeight: 500,
383
- letterSpacing: "0"
384
- },
385
- overline2: {
386
- fontSize: TypographyMediumFontSizeOverline2,
387
- lineHeight: "0.75rem",
388
- fontWeight: 500,
389
- letterSpacing: "0"
390
- },
391
- overline3: {
392
- fontSize: TypographyMediumFontSizeOverline3,
393
- lineHeight: "0.75rem",
394
- fontWeight: 500,
395
- letterSpacing: "0"
396
- },
397
- label1: {
398
- fontSize: TypographyMediumFontSizeLabel1,
399
- lineHeight: "1rem",
400
- fontWeight: 500,
401
- letterSpacing: "0"
402
- },
403
- label2: {
404
- fontSize: TypographyMediumFontSizeLabel2,
405
- lineHeight: "1rem",
406
- fontWeight: 500,
407
- letterSpacing: "0"
408
- },
409
- label3: {
410
- fontSize: TypographyMediumFontSizeLabel3,
411
- lineHeight: "1rem",
412
- fontWeight: 500,
413
- letterSpacing: "0"
414
- },
415
- link1: {
416
- fontSize: TypographyMediumFontSizeLink1,
417
- lineHeight: "1.5rem",
418
- fontWeight: 500,
419
- letterSpacing: "0"
420
- },
421
- link2: {
422
- fontSize: TypographyMediumFontSizeLink2,
423
- lineHeight: "1.25rem",
424
- fontWeight: 500,
425
- letterSpacing: "0"
426
- },
427
- link3: {
428
- fontSize: TypographyMediumFontSizeLink3,
429
- lineHeight: "1rem",
430
- fontWeight: 500,
431
- letterSpacing: "0"
432
- },
433
- digits1: {
434
- fontSize: TypographyMediumFontSizeDigits1,
435
- lineHeight: "3.5rem",
436
- fontWeight: 700,
437
- letterSpacing: "0"
438
- },
439
- digits2: {
440
- fontSize: TypographyMediumFontSizeDigits2,
441
- lineHeight: "3rem",
442
- fontWeight: 700,
443
- letterSpacing: "0"
444
- },
445
- digits3: {
446
- fontSize: TypographyMediumFontSizeDigits3,
447
- lineHeight: "2.5rem",
448
- fontWeight: 700,
449
- letterSpacing: "0"
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
- const narrowTypography = {
453
- display1: {
454
- fontSize: TypographyNarrowFontSizeDisplay1,
455
- lineHeight: "3.5rem",
456
- fontWeight: 700,
457
- letterSpacing: "0"
458
- },
459
- display2: {
460
- fontSize: TypographyNarrowFontSizeDisplay2,
461
- lineHeight: "3rem",
462
- fontWeight: 700,
463
- letterSpacing: "0"
464
- },
465
- display3: {
466
- fontSize: TypographyNarrowFontSizeDisplay3,
467
- lineHeight: "2.5rem",
468
- fontWeight: 700,
469
- letterSpacing: "0"
470
- },
471
- heading1: {
472
- fontSize: TypographyNarrowFontSizeHeading1,
473
- lineHeight: "2rem",
474
- fontWeight: 700,
475
- letterSpacing: "0"
476
- },
477
- heading2: {
478
- fontSize: TypographyNarrowFontSizeHeading2,
479
- lineHeight: "1.75rem",
480
- fontWeight: 700,
481
- letterSpacing: "0"
482
- },
483
- heading3: {
484
- fontSize: TypographyNarrowFontSizeHeading3,
485
- lineHeight: "1.5rem",
486
- fontWeight: 700,
487
- letterSpacing: "0"
488
- },
489
- subHeading1: {
490
- fontSize: TypographyNarrowFontSizeSubHeading1,
491
- lineHeight: "1.25rem",
492
- fontWeight: 600,
493
- letterSpacing: "0"
494
- },
495
- subHeading2: {
496
- fontSize: TypographyNarrowFontSizeSubHeading2,
497
- lineHeight: "1.25rem",
498
- fontWeight: 600,
499
- letterSpacing: "0"
500
- },
501
- subHeading3: {
502
- fontSize: TypographyNarrowFontSizeSubHeading3,
503
- lineHeight: "1rem",
504
- fontWeight: 600,
505
- letterSpacing: "0"
506
- },
507
- body1: {
508
- fontSize: TypographyNarrowFontSizeBody1,
509
- lineHeight: "1.5rem",
510
- fontWeight: 400,
511
- letterSpacing: "0"
512
- },
513
- body2: {
514
- fontSize: TypographyNarrowFontSizeBody2,
515
- lineHeight: "1.25rem",
516
- fontWeight: 400,
517
- letterSpacing: "0"
518
- },
519
- body3: {
520
- fontSize: TypographyNarrowFontSizeBody3,
521
- lineHeight: "1rem",
522
- fontWeight: 400,
523
- letterSpacing: "0"
524
- },
525
- body4: {
526
- fontSize: TypographyNarrowFontSizeBody4,
527
- lineHeight: "0.875rem",
528
- fontWeight: 400,
529
- letterSpacing: "0"
530
- },
531
- body5: {
532
- fontSize: TypographyNarrowFontSizeBody5,
533
- lineHeight: "0.75rem",
534
- fontWeight: 400,
535
- letterSpacing: "0"
536
- },
537
- message: {
538
- fontSize: TypographyNarrowFontSizeMessage,
539
- lineHeight: "23px",
540
- fontWeight: 400,
541
- letterSpacing: "0"
542
- },
543
- overline1: {
544
- fontSize: TypographyNarrowFontSizeOverline1,
545
- lineHeight: "0.75rem",
546
- fontWeight: 500,
547
- letterSpacing: "0"
548
- },
549
- overline2: {
550
- fontSize: TypographyNarrowFontSizeOverline2,
551
- lineHeight: "0.75rem",
552
- fontWeight: 500,
553
- letterSpacing: "0"
554
- },
555
- overline3: {
556
- fontSize: TypographyNarrowFontSizeOverline3,
557
- lineHeight: "0.75rem",
558
- fontWeight: 500,
559
- letterSpacing: "0"
560
- },
561
- label1: {
562
- fontSize: TypographyNarrowFontSizeLabel1,
563
- lineHeight: "1rem",
564
- fontWeight: 500,
565
- letterSpacing: "0"
566
- },
567
- label2: {
568
- fontSize: TypographyNarrowFontSizeLabel2,
569
- lineHeight: "1rem",
570
- fontWeight: 500,
571
- letterSpacing: "0"
572
- },
573
- label3: {
574
- fontSize: TypographyNarrowFontSizeLabel3,
575
- lineHeight: "1rem",
576
- fontWeight: 500,
577
- letterSpacing: "0"
578
- },
579
- link1: {
580
- fontSize: TypographyNarrowFontSizeLink1,
581
- lineHeight: "1.5rem",
582
- fontWeight: 500,
583
- letterSpacing: "0"
584
- },
585
- link2: {
586
- fontSize: TypographyNarrowFontSizeLink2,
587
- lineHeight: "1.25rem",
588
- fontWeight: 500,
589
- letterSpacing: "0"
590
- },
591
- link3: {
592
- fontSize: TypographyNarrowFontSizeLink3,
593
- lineHeight: "1rem",
594
- fontWeight: 500,
595
- letterSpacing: "0"
596
- },
597
- digits1: {
598
- fontSize: TypographyNarrowFontSizeDigits1,
599
- lineHeight: "3.5rem",
600
- fontWeight: 700,
601
- letterSpacing: "0"
602
- },
603
- digits2: {
604
- fontSize: TypographyNarrowFontSizeDigits2,
605
- lineHeight: "3rem",
606
- fontWeight: 700,
607
- letterSpacing: "0"
608
- },
609
- digits3: {
610
- fontSize: TypographyNarrowFontSizeDigits3,
611
- lineHeight: "2.5rem",
612
- fontWeight: 700,
613
- letterSpacing: "0"
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
- const typography = {
617
- fontFamily: TypographyPrimaryFontFamily,
618
- wide: wideTypography,
619
- medium: mediumTypography,
620
- narrow: narrowTypography
712
+ var typography = {
713
+ fontFamily: TypographyPrimaryFontFamily,
714
+ wide: wideTypography,
715
+ medium: mediumTypography,
716
+ narrow: narrowTypography,
621
717
  };
622
- const colors = {
623
- red: {
624
- 100: ColorRed100,
625
- 200: ColorRed200,
626
- 300: ColorRed300,
627
- 400: ColorRed400,
628
- 500: ColorRed500,
629
- 600: ColorRed600,
630
- 700: ColorRed700,
631
- 800: ColorRed800,
632
- 900: ColorRed900
633
- },
634
- orange: {
635
- 100: ColorOrange100,
636
- 200: ColorOrange200,
637
- 300: ColorOrange300,
638
- 400: ColorOrange400,
639
- 500: ColorOrange500,
640
- 600: ColorOrange600,
641
- 700: ColorOrange700,
642
- 800: ColorOrange800,
643
- 900: ColorOrange900
644
- },
645
- yellow: {
646
- 100: ColorYellow100,
647
- 200: ColorYellow200,
648
- 300: ColorYellow300,
649
- 400: ColorYellow400,
650
- 500: ColorYellow500,
651
- 600: ColorYellow600,
652
- 700: ColorYellow700,
653
- 800: ColorYellow800,
654
- 900: ColorYellow900
655
- },
656
- green: {
657
- 100: ColorGreen100,
658
- 200: ColorGreen200,
659
- 300: ColorGreen300,
660
- 400: ColorGreen400,
661
- 500: ColorGreen500,
662
- 600: ColorGreen600,
663
- 700: ColorGreen700,
664
- 800: ColorGreen800,
665
- 900: ColorGreen900
666
- },
667
- sky: {
668
- 100: ColorSky100,
669
- 200: ColorSky200,
670
- 300: ColorSky300,
671
- 400: ColorSky400,
672
- 500: ColorSky500,
673
- 600: ColorSky600,
674
- 700: ColorSky700,
675
- 800: ColorSky800,
676
- 900: ColorSky900
677
- },
678
- blue: {
679
- 100: ColorBlue100,
680
- 200: ColorBlue200,
681
- 300: ColorBlue300,
682
- 400: ColorBlue400,
683
- 500: ColorBlue500,
684
- 600: ColorBlue600,
685
- 700: ColorBlue700,
686
- 800: ColorBlue800,
687
- 900: ColorBlue900
688
- },
689
- purple: {
690
- 100: ColorPurple100,
691
- 200: ColorPurple200,
692
- 300: ColorPurple300,
693
- 400: ColorPurple400,
694
- 500: ColorPurple500,
695
- 600: ColorPurple600,
696
- 700: ColorPurple700,
697
- 800: ColorPurple800,
698
- 900: ColorPurple900
699
- },
700
- gray: {
701
- 100: ColorGray100,
702
- 200: ColorGray200,
703
- 300: ColorGray300,
704
- 400: ColorGray400,
705
- 500: ColorGray500,
706
- 600: ColorGray600,
707
- 700: ColorGray700,
708
- 800: ColorGray800,
709
- 900: ColorGray900,
710
- black: ColorGrayBlack,
711
- white: ColorGrayWhite
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
- const button = {
715
- padding: {
716
- verPadding: sizing.Size25,
717
- // 25px
718
- horPadding: sizing.Size6
719
- // 10px
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
- const utilityButton = {
727
- padding: {
728
- verPadding: 10,
729
- horPadding: 12
730
- },
731
- gap: sizing.Size2,
732
- // 8px
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
- const iconButton = {
737
- padding: {
738
- verPadding: 10,
739
- horPadding: 12
740
- },
741
- gap: sizing.Size2,
742
- // 8px
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
- const input = {
747
- suffixPrefixVerPadding: 11,
748
- // special case - see sizing in FIGMA
749
- suffixPrefixHorPadding: sizing.Size2
835
+ var input = {
836
+ suffixPrefixVerPadding: 11, // special case - see sizing in FIGMA
837
+ suffixPrefixHorPadding: sizing.Size2,
750
838
  };
751
- const disabled = {
752
- color: "#6C6C6C",
753
- backgroundColor: "#EEEEEE",
754
- borderColor: "#CBCBCB"
839
+ var white = "#FFFFFF";
840
+ var disabled = {
841
+ color: "#6C6C6C",
842
+ backgroundColor: "#EEEEEE",
843
+ borderColor: "#CBCBCB",
755
844
  };
756
- const error = {
757
- color: "#CF3237",
758
- backgroundColor: "#FFEBEE",
759
- borderColor: "#FFEBEE"
845
+ var error = {
846
+ color: "#CF3237",
847
+ backgroundColor: "#FFEBEE",
848
+ borderColor: "#FFEBEE",
760
849
  };
761
- const lightInteractive = {
762
- interactive: {
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
- active: "#30606B",
765
- hover: "#00282B",
766
- pressed: "#214148",
767
- onsurface: "#FFFFFF"
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
- active: "#9A9A9A",
771
- hover: "#222222",
772
- pressed: "#101010",
773
- onsurface: "#3E3E3E"
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
- active: "#FFCA7D",
777
- hover: "#E7A13C",
778
- pressed: "#B27330",
779
- onsurface: "#222222"
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
- active: "#CF3237",
783
- hover: "#AA292D",
784
- pressed: "#842023",
785
- onsurface: "#FFFFFF"
786
- },
787
- link: {
788
- active: "#30606B"
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
- active: "#FFF",
792
- onsurface: "#222222",
793
- border: "#CBCBCB",
794
- hover: "#DEEFF3",
795
- pressed: "#CBCBCB"
796
- }
797
- },
798
- inputs: {
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
- focus: "#384DF6"
801
- }
802
- },
803
- transparent: "transparent"
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
- const lightModeColors = {
816
- primary: {
817
- active: {
818
- color: lightInteractive.interactive.primary.onsurface,
819
- backgroundColor: lightInteractive.interactive.primary.active,
820
- borderColor: lightInteractive.interactive.primary.active
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
- active: "#30606B",
1082
- hover: "#00282B",
1083
- pressed: "#214148",
1084
- onsurface: "#FFFFFF"
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
- active: "#9A9A9A",
1088
- hover: "#222222",
1089
- pressed: "#101010",
1090
- onsurface: "#3E3E3E"
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
- active: "#FFCA7D",
1094
- hover: "#E7A13C",
1095
- pressed: "#B27330",
1096
- onsurface: "#222222"
1097
- },
1098
- link: {
1099
- active: ColorSky700,
1100
- hover: ColorSky900,
1101
- disabled: ColorGray100,
1102
- current: "#384DF6"
1103
- },
1104
- ...lightInteractive.interactive
1105
- },
1106
- inputs: {
1107
- surface: {
1108
- active: ColorGrayWhite,
1109
- border: ColorGray500,
1110
- disabled: ColorGray100,
1111
- checked: "#384DF6",
1112
- "checked-hover": "#24319D"
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
- onsurface: {
1115
- active: "#222222",
1116
- focus: "#384DF6",
1117
- placeholder: "#6C6C6C",
1118
- "icon-disabled": "#6C6C6C"
1119
- },
1120
- progress: {
1121
- empty: ColorGray300,
1122
- success: ColorGreen400,
1123
- error: ColorRed500,
1124
- info: ColorBlue400
1125
- }
1126
- },
1127
- surface: {
1128
- border: "#CBCBCB",
1129
- secondary: "#F4F4F4",
1130
- tertiary: "#EEEEEE",
1131
- "border-light": "#DFDFDF"
1132
- },
1133
- transparent: "transparent",
1134
- onsurface: {
1135
- copy: "#3E3E3E",
1136
- "copy-light": ColorGray700,
1137
- "copy-dark": "#222222",
1138
- "copy-disabled": "#6C6C6C"
1139
- }
1140
- };
1141
- const darkModeColors = lightModeColors;
1142
- ({
1143
- primary: {
1144
- active: {
1145
- color: colors.gray.white
1146
- },
1147
- hover: {
1148
- color: colors.gray.white
1149
- },
1150
- pressed: {
1151
- color: colors.gray.white
1152
- },
1153
- focussed: {
1154
- color: colors.gray.white
1155
- },
1156
- disabled: {
1157
- color: colors.gray[600]
1158
- }
1159
- },
1160
- secondary: {
1161
- active: {
1162
- color: colors.gray.white
1163
- },
1164
- hover: {
1165
- color: colors.gray.white
1166
- },
1167
- pressed: {
1168
- color: colors.gray.white
1169
- },
1170
- focussed: {
1171
- color: colors.gray.white
1172
- },
1173
- disabled: {
1174
- color: colors.gray[600]
1175
- }
1176
- },
1177
- tertiary: {
1178
- active: {
1179
- color: colors.gray.white
1180
- },
1181
- hover: {
1182
- color: colors.gray.white
1183
- },
1184
- pressed: {
1185
- color: colors.gray.white
1186
- },
1187
- focussed: {
1188
- color: colors.gray.white
1189
- },
1190
- disabled: {
1191
- color: colors.gray[600]
1192
- }
1193
- },
1194
- utility: {
1195
- active: {
1196
- color: darkInteractive.interactive.tertiary.onsurface,
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
- const badge = {
1269
- "ver-padding": 4,
1270
- "right-padding": 8,
1271
- "left-padding": 8,
1272
- radius: 50
1432
+ var colorModes = {
1433
+ light: lightModeColors,
1434
+ dark: darkModeColors,
1273
1435
  };
1274
- const popover = {
1275
- "ver-padding": sizing.Size1,
1276
- "hor-padding": sizing.Size2,
1277
- radius: borderRadius.BorderRadiusMd,
1278
- gap: sizing.Size1
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
- const row = {
1281
- "ver-padding": sizing.Size5,
1282
- "hor-padding": sizing.Size6,
1283
- gap: sizing.Size2
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
- const tableCell = {
1286
- surface: ColorGrayWhite,
1287
- hover: ColorGray100,
1288
- pressed: ColorGray200,
1289
- focussed: ColorGray300,
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
- const components = {
1296
- button,
1297
- utilityButton,
1298
- iconButton,
1299
- input,
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
- const getStatusColor = (colors2, status) => {
1306
- return colors2.status[status].default;
1471
+ var row = {
1472
+ "ver-padding": sizing.Size5,
1473
+ "hor-padding": sizing.Size6,
1474
+ gap: sizing.Size2,
1307
1475
  };
1308
- const baseTokens = {
1309
- breakpoints,
1310
- sizing,
1311
- borderRadius,
1312
- typography,
1313
- allColors: colors,
1314
- components,
1315
- motion,
1316
- shadows,
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
- const lightTheme = {
1320
- ...baseTokens,
1321
- colors: lightModeColors,
1322
- mode: "light"
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
- const darkTheme = {
1325
- ...baseTokens,
1326
- colors: darkModeColors,
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
- TypographySizeKey,
1331
- baseTokens,
1332
- breakpoints,
1333
- darkTheme,
1334
- lightTheme,
1335
- sizing
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" });