@uxf/cms 11.74.0 → 11.74.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (333) hide show
  1. package/api/index.d.ts +165 -0
  2. package/api/index.js +100 -0
  3. package/api/swr.d.ts +76 -0
  4. package/api/swr.js +43 -0
  5. package/config/container.d.ts +29 -0
  6. package/config/container.js +24 -0
  7. package/config/index.d.ts +2 -0
  8. package/config/index.js +6 -0
  9. package/content-builder/content-builder-body.d.ts +6 -0
  10. package/content-builder/content-builder-body.js +10 -0
  11. package/content-builder/content-builder-header.d.ts +7 -0
  12. package/content-builder/content-builder-header.js +15 -0
  13. package/content-builder/content-builder-root.d.ts +11 -0
  14. package/content-builder/content-builder-root.js +13 -0
  15. package/content-builder/content-builder-sidebar.d.ts +7 -0
  16. package/content-builder/content-builder-sidebar.js +12 -0
  17. package/content-builder/content-builder.d.ts +14 -0
  18. package/content-builder/content-builder.js +57 -0
  19. package/content-builder/forms/content-builder-basic-form.d.ts +10 -0
  20. package/content-builder/forms/content-builder-basic-form.js +49 -0
  21. package/content-builder/forms/content-builder-seo-form.d.ts +10 -0
  22. package/content-builder/forms/content-builder-seo-form.js +22 -0
  23. package/content-builder/index.d.ts +4 -0
  24. package/content-builder/index.js +20 -0
  25. package/content-builder/map-content-response-to-form-data.d.ts +3 -0
  26. package/content-builder/map-content-response-to-form-data.js +44 -0
  27. package/content-builder/map-form-data-to-content-request.d.ts +2 -0
  28. package/content-builder/map-form-data-to-content-request.js +28 -0
  29. package/content-builder/translations.d.ts +127 -0
  30. package/content-builder/translations.js +128 -0
  31. package/content-builder/types.d.ts +186 -0
  32. package/content-builder/types.js +2 -0
  33. package/content-builder/use-content-builder-form-api.d.ts +3 -0
  34. package/content-builder/use-content-builder-form-api.js +7 -0
  35. package/context/cms-provider.d.ts +7 -0
  36. package/context/cms-provider.js +18 -0
  37. package/deprecated/api/api-client.d.ts +15 -0
  38. package/deprecated/api/api-client.js +86 -0
  39. package/deprecated/hoc/with-authenticate.d.ts +6 -0
  40. package/deprecated/hoc/with-authenticate.js +61 -0
  41. package/deprecated/redux/configure-store.d.ts +3 -0
  42. package/deprecated/redux/configure-store.js +16 -0
  43. package/deprecated/redux/entities/actions.d.ts +30 -0
  44. package/deprecated/redux/entities/actions.js +15 -0
  45. package/deprecated/redux/entities/index.d.ts +2 -0
  46. package/deprecated/redux/entities/index.js +18 -0
  47. package/deprecated/redux/entities/reducer.d.ts +3 -0
  48. package/deprecated/redux/entities/reducer.js +36 -0
  49. package/deprecated/redux/entities/selectors.d.ts +10 -0
  50. package/deprecated/redux/entities/selectors.js +16 -0
  51. package/deprecated/redux/index.d.ts +3 -0
  52. package/deprecated/redux/index.js +22 -0
  53. package/deprecated/redux/redux-helper.d.ts +15 -0
  54. package/deprecated/redux/redux-helper.js +6 -0
  55. package/deprecated/redux/types.d.ts +7 -0
  56. package/deprecated/redux/types.js +2 -0
  57. package/deprecated/redux/user/actions.d.ts +19 -0
  58. package/deprecated/redux/user/actions.js +14 -0
  59. package/deprecated/redux/user/index.d.ts +2 -0
  60. package/deprecated/redux/user/index.js +18 -0
  61. package/deprecated/redux/user/reducer.d.ts +3 -0
  62. package/deprecated/redux/user/reducer.js +21 -0
  63. package/deprecated/redux/user/selectors.d.ts +3 -0
  64. package/deprecated/redux/user/selectors.js +5 -0
  65. package/deprecated/redux/with-redux-store.d.ts +1 -0
  66. package/deprecated/redux/with-redux-store.js +70 -0
  67. package/deprecated/security/cms-authorizator.d.ts +3 -0
  68. package/deprecated/security/cms-authorizator.js +8 -0
  69. package/deprecated/types/app.d.ts +6 -0
  70. package/deprecated/types/app.js +2 -0
  71. package/deprecated/types/form.d.ts +25 -0
  72. package/deprecated/types/form.js +16 -0
  73. package/errors/BadRequestError.d.ts +18 -0
  74. package/errors/BadRequestError.js +14 -0
  75. package/errors/ForbiddenError.d.ts +4 -0
  76. package/errors/ForbiddenError.js +13 -0
  77. package/errors/NetworkError.d.ts +4 -0
  78. package/errors/NetworkError.js +13 -0
  79. package/errors/UnauthorizedError.d.ts +4 -0
  80. package/errors/UnauthorizedError.js +13 -0
  81. package/errors/ValidationError.d.ts +7 -0
  82. package/errors/ValidationError.js +17 -0
  83. package/form-renderer/field/content-dynamic.d.ts +8 -0
  84. package/form-renderer/field/content-dynamic.js +15 -0
  85. package/form-renderer/field/content.d.ts +5 -0
  86. package/form-renderer/field/content.js +38 -0
  87. package/forms/change-password-form/change-password-form.d.ts +3 -0
  88. package/forms/change-password-form/change-password-form.js +31 -0
  89. package/forms/change-password-form/index.d.ts +2 -0
  90. package/forms/change-password-form/index.js +18 -0
  91. package/forms/change-password-form/translations.d.ts +35 -0
  92. package/forms/change-password-form/translations.js +36 -0
  93. package/forms/change-password-form/types.d.ts +13 -0
  94. package/forms/change-password-form/types.js +2 -0
  95. package/forms/components/wysiwyg-input/index.d.ts +1 -0
  96. package/forms/components/wysiwyg-input/index.js +17 -0
  97. package/forms/components/wysiwyg-input/wysiwyg-input.d.ts +26 -0
  98. package/forms/components/wysiwyg-input/wysiwyg-input.js +83 -0
  99. package/forms/forgotten-password-form/forgotten-password-form.d.ts +3 -0
  100. package/forms/forgotten-password-form/forgotten-password-form.js +52 -0
  101. package/forms/forgotten-password-form/index.d.ts +2 -0
  102. package/forms/forgotten-password-form/index.js +18 -0
  103. package/forms/forgotten-password-form/translations.d.ts +17 -0
  104. package/forms/forgotten-password-form/translations.js +18 -0
  105. package/forms/forgotten-password-form/types.d.ts +10 -0
  106. package/forms/forgotten-password-form/types.js +2 -0
  107. package/forms/invite-user-form/index.d.ts +2 -0
  108. package/forms/invite-user-form/index.js +18 -0
  109. package/forms/invite-user-form/invite-user-form.d.ts +3 -0
  110. package/forms/invite-user-form/invite-user-form.js +33 -0
  111. package/forms/invite-user-form/translations.d.ts +35 -0
  112. package/forms/invite-user-form/translations.js +36 -0
  113. package/forms/invite-user-form/types.d.ts +15 -0
  114. package/forms/invite-user-form/types.js +2 -0
  115. package/forms/login-form/index.d.ts +2 -0
  116. package/forms/login-form/index.js +18 -0
  117. package/forms/login-form/login-form.d.ts +3 -0
  118. package/forms/login-form/login-form.js +51 -0
  119. package/forms/login-form/translations.d.ts +23 -0
  120. package/forms/login-form/translations.js +24 -0
  121. package/forms/login-form/types.d.ts +11 -0
  122. package/forms/login-form/types.js +2 -0
  123. package/forms/renew-password-form/index.d.ts +2 -0
  124. package/forms/renew-password-form/index.js +18 -0
  125. package/forms/renew-password-form/renew-password-form.d.ts +3 -0
  126. package/forms/renew-password-form/renew-password-form.js +53 -0
  127. package/forms/renew-password-form/translations.d.ts +29 -0
  128. package/forms/renew-password-form/translations.js +30 -0
  129. package/forms/renew-password-form/types.d.ts +11 -0
  130. package/forms/renew-password-form/types.js +2 -0
  131. package/lib/api/create-axios-instance.d.ts +6 -0
  132. package/lib/api/create-axios-instance.js +17 -0
  133. package/lib/api/create-axios-request.d.ts +3 -0
  134. package/lib/api/create-axios-request.js +39 -0
  135. package/lib/api/create-use-axios-request.d.ts +5 -0
  136. package/lib/api/create-use-axios-request.js +35 -0
  137. package/lib/api/index.d.ts +2 -0
  138. package/lib/api/index.js +19 -0
  139. package/lib/api/types.d.ts +18 -0
  140. package/lib/api/types.js +2 -0
  141. package/lib/layout/breadcrumbs.d.ts +9 -0
  142. package/lib/layout/breadcrumbs.js +21 -0
  143. package/lib/layout/index.d.ts +3 -0
  144. package/lib/layout/index.js +19 -0
  145. package/lib/layout/layout-container.d.ts +3 -0
  146. package/lib/layout/layout-container.js +22 -0
  147. package/lib/layout/layout.d.ts +3 -0
  148. package/lib/layout/layout.js +47 -0
  149. package/lib/layout/sidebar.d.ts +3 -0
  150. package/lib/layout/sidebar.js +77 -0
  151. package/lib/layout/styles.d.ts +1 -0
  152. package/lib/layout/styles.js +4 -0
  153. package/lib/layout/types.d.ts +36 -0
  154. package/lib/layout/types.js +2 -0
  155. package/lib/login-layout/index.d.ts +2 -0
  156. package/lib/login-layout/index.js +18 -0
  157. package/lib/login-layout/login-layout.d.ts +3 -0
  158. package/lib/login-layout/login-layout.js +19 -0
  159. package/lib/login-layout/types.d.ts +9 -0
  160. package/lib/login-layout/types.js +2 -0
  161. package/lib/menu/active-item-resolver.d.ts +7 -0
  162. package/lib/menu/active-item-resolver.js +42 -0
  163. package/lib/menu/factory.d.ts +10 -0
  164. package/lib/menu/factory.js +40 -0
  165. package/lib/menu/index.d.ts +5 -0
  166. package/lib/menu/index.js +21 -0
  167. package/lib/menu/mobile-bar.d.ts +8 -0
  168. package/lib/menu/mobile-bar.js +54 -0
  169. package/lib/menu/model.d.ts +56 -0
  170. package/lib/menu/model.js +112 -0
  171. package/lib/menu/types.d.ts +5 -0
  172. package/lib/menu/types.js +2 -0
  173. package/lib/menu/ui/list-item/index.d.ts +2 -0
  174. package/lib/menu/ui/list-item/index.js +18 -0
  175. package/lib/menu/ui/list-item/list-item.d.ts +3 -0
  176. package/lib/menu/ui/list-item/list-item.js +37 -0
  177. package/lib/menu/ui/list-item/types.d.ts +19 -0
  178. package/lib/menu/ui/list-item/types.js +2 -0
  179. package/lib/menu/ui/menu-custom-item.d.ts +6 -0
  180. package/lib/menu/ui/menu-custom-item.js +17 -0
  181. package/lib/menu/ui/menu-item.d.ts +6 -0
  182. package/lib/menu/ui/menu-item.js +55 -0
  183. package/lib/menu/ui/menu-super-section-item.d.ts +6 -0
  184. package/lib/menu/ui/menu-super-section-item.js +40 -0
  185. package/lib/menu/ui/menu.d.ts +6 -0
  186. package/lib/menu/ui/menu.js +37 -0
  187. package/lib/menu/ui/sub-menu/sub-menu-item.d.ts +7 -0
  188. package/lib/menu/ui/sub-menu/sub-menu-item.js +23 -0
  189. package/lib/menu/ui/sub-menu/sub-menu-mobile.d.ts +8 -0
  190. package/lib/menu/ui/sub-menu/sub-menu-mobile.js +48 -0
  191. package/lib/menu/ui/sub-menu/sub-menu.d.ts +7 -0
  192. package/lib/menu/ui/sub-menu/sub-menu.js +46 -0
  193. package/lib/menu/ui/sub-menu/use-sub-menu.d.ts +49 -0
  194. package/lib/menu/ui/sub-menu/use-sub-menu.js +45 -0
  195. package/lib/menu/ui/translations.d.ts +17 -0
  196. package/lib/menu/ui/translations.js +18 -0
  197. package/lib/menu/ui/user-menu.d.ts +6 -0
  198. package/lib/menu/ui/user-menu.js +55 -0
  199. package/package.json +6 -6
  200. package/pages/content-builder/components/form-content.d.ts +12 -0
  201. package/pages/content-builder/components/form-content.js +64 -0
  202. package/pages/content-builder/components/form-root-fields.d.ts +16 -0
  203. package/pages/content-builder/components/form-root-fields.js +62 -0
  204. package/pages/content-builder/components/form.d.ts +12 -0
  205. package/pages/content-builder/components/form.js +83 -0
  206. package/pages/content-builder/components/header.d.ts +6 -0
  207. package/pages/content-builder/components/header.js +18 -0
  208. package/pages/content-builder/constants.d.ts +6 -0
  209. package/pages/content-builder/constants.js +10 -0
  210. package/pages/content-builder/content/feature-section.d.ts +17 -0
  211. package/pages/content-builder/content/feature-section.js +62 -0
  212. package/pages/content-builder/content/gallery.d.ts +9 -0
  213. package/pages/content-builder/content/gallery.js +29 -0
  214. package/pages/content-builder/content/hero-section.d.ts +12 -0
  215. package/pages/content-builder/content/hero-section.js +35 -0
  216. package/pages/content-builder/content/people.d.ts +17 -0
  217. package/pages/content-builder/content/people.js +61 -0
  218. package/pages/content-builder/content/wysiwyg.d.ts +15 -0
  219. package/pages/content-builder/content/wysiwyg.js +32 -0
  220. package/pages/content-builder/content-builder-page.d.ts +3 -0
  221. package/pages/content-builder/content-builder-page.js +107 -0
  222. package/pages/content-builder/content-field.d.ts +10 -0
  223. package/pages/content-builder/content-field.js +62 -0
  224. package/pages/content-builder/content-header.d.ts +3 -0
  225. package/pages/content-builder/content-header.js +55 -0
  226. package/pages/content-builder/context/details-visibility-context.d.ts +4 -0
  227. package/pages/content-builder/context/details-visibility-context.js +58 -0
  228. package/pages/content-builder/hooks/use-sortable.d.ts +15 -0
  229. package/pages/content-builder/hooks/use-sortable.js +57 -0
  230. package/pages/content-builder/index.d.ts +5 -0
  231. package/pages/content-builder/index.js +21 -0
  232. package/pages/content-builder/mapper.d.ts +4 -0
  233. package/pages/content-builder/mapper.js +69 -0
  234. package/pages/content-builder/types.d.ts +94 -0
  235. package/pages/content-builder/types.js +2 -0
  236. package/pages/forgotten-password-page/forgotten-password-page.d.ts +5 -0
  237. package/pages/forgotten-password-page/forgotten-password-page.js +49 -0
  238. package/pages/forgotten-password-page/index.d.ts +2 -0
  239. package/pages/forgotten-password-page/index.js +18 -0
  240. package/pages/forgotten-password-page/types.d.ts +11 -0
  241. package/pages/forgotten-password-page/types.js +2 -0
  242. package/pages/grid-page/get-initial-props-helper.d.ts +4 -0
  243. package/pages/grid-page/get-initial-props-helper.js +20 -0
  244. package/pages/grid-page/grid-page.d.ts +6 -0
  245. package/pages/grid-page/grid-page.js +161 -0
  246. package/pages/grid-page/index.d.ts +1 -0
  247. package/pages/grid-page/index.js +5 -0
  248. package/pages/grid-page/types.d.ts +65 -0
  249. package/pages/grid-page/types.js +2 -0
  250. package/pages/grid-page/use-hidden-columns.d.ts +4 -0
  251. package/pages/grid-page/use-hidden-columns.js +17 -0
  252. package/pages/invite-user-page/index.d.ts +2 -0
  253. package/pages/invite-user-page/index.js +18 -0
  254. package/pages/invite-user-page/invite-user-page.d.ts +2 -0
  255. package/pages/invite-user-page/invite-user-page.js +57 -0
  256. package/pages/invite-user-page/types.d.ts +12 -0
  257. package/pages/invite-user-page/types.js +2 -0
  258. package/pages/login-page/index.d.ts +2 -0
  259. package/pages/login-page/index.js +18 -0
  260. package/pages/login-page/login-page.d.ts +5 -0
  261. package/pages/login-page/login-page.js +80 -0
  262. package/pages/login-page/types.d.ts +21 -0
  263. package/pages/login-page/types.js +2 -0
  264. package/pages/renew-password-page/index.d.ts +2 -0
  265. package/pages/renew-password-page/index.js +18 -0
  266. package/pages/renew-password-page/renew-password-page.d.ts +9 -0
  267. package/pages/renew-password-page/renew-password-page.js +53 -0
  268. package/pages/renew-password-page/types.d.ts +14 -0
  269. package/pages/renew-password-page/types.js +2 -0
  270. package/pages/translations.d.ts +93 -0
  271. package/pages/translations.js +94 -0
  272. package/security/restricted-page.d.ts +10 -0
  273. package/security/restricted-page.js +40 -0
  274. package/security/translations.d.ts +29 -0
  275. package/security/translations.js +30 -0
  276. package/security/use-logged-user.d.ts +5 -0
  277. package/security/use-logged-user.js +17 -0
  278. package/ui/avatar/avatar.d.ts +11 -0
  279. package/ui/avatar/avatar.js +47 -0
  280. package/ui/avatar/get-avatar-user-letters.d.ts +1 -0
  281. package/ui/avatar/get-avatar-user-letters.js +18 -0
  282. package/ui/avatar/index.d.ts +3 -0
  283. package/ui/avatar/index.js +5 -0
  284. package/ui/avatar/theme.d.ts +11 -0
  285. package/ui/avatar/theme.js +2 -0
  286. package/ui/copy-to-clipboard/copy-to-clipboard.d.ts +3 -0
  287. package/ui/copy-to-clipboard/copy-to-clipboard.js +47 -0
  288. package/ui/copy-to-clipboard/index.d.ts +2 -0
  289. package/ui/copy-to-clipboard/index.js +18 -0
  290. package/ui/copy-to-clipboard/translations.d.ts +17 -0
  291. package/ui/copy-to-clipboard/translations.js +18 -0
  292. package/ui/copy-to-clipboard/types.d.ts +7 -0
  293. package/ui/copy-to-clipboard/types.js +2 -0
  294. package/ui/copy-to-clipboard-button/copy-to-clipboard-button.d.ts +3 -0
  295. package/ui/copy-to-clipboard-button/copy-to-clipboard-button.js +48 -0
  296. package/ui/copy-to-clipboard-button/index.d.ts +2 -0
  297. package/ui/copy-to-clipboard-button/index.js +18 -0
  298. package/ui/copy-to-clipboard-button/translations.d.ts +17 -0
  299. package/ui/copy-to-clipboard-button/translations.js +18 -0
  300. package/ui/copy-to-clipboard-button/types.d.ts +6 -0
  301. package/ui/copy-to-clipboard-button/types.js +2 -0
  302. package/ui/index.d.ts +1 -0
  303. package/ui/index.js +6 -0
  304. package/ui/tw-tokens/tw-box-shadow.d.ts +12 -0
  305. package/ui/tw-tokens/tw-box-shadow.js +15 -0
  306. package/ui/tw-tokens/tw-colors.d.ts +475 -0
  307. package/ui/tw-tokens/tw-colors.js +474 -0
  308. package/ui/tw-tokens/tw-containers.d.ts +8 -0
  309. package/ui/tw-tokens/tw-containers.js +5 -0
  310. package/ui/tw-tokens/tw-font-size.d.ts +55 -0
  311. package/ui/tw-tokens/tw-font-size.js +32 -0
  312. package/ui/tw-tokens/tw-font-weight.d.ts +12 -0
  313. package/ui/tw-tokens/tw-font-weight.js +15 -0
  314. package/ui/tw-tokens/tw-line-height.d.ts +17 -0
  315. package/ui/tw-tokens/tw-line-height.js +20 -0
  316. package/ui/tw-tokens/tw-screens.d.ts +8 -0
  317. package/ui/tw-tokens/tw-screens.js +5 -0
  318. package/ui/tw-tokens/tw-spacing.d.ts +39 -0
  319. package/ui/tw-tokens/tw-spacing.js +42 -0
  320. package/ui/tw-tokens/tw-z-index.d.ts +21 -0
  321. package/ui/tw-tokens/tw-z-index.js +24 -0
  322. package/ui/widget/index.d.ts +2 -0
  323. package/ui/widget/index.js +18 -0
  324. package/ui/widget/types.d.ts +6 -0
  325. package/ui/widget/types.js +2 -0
  326. package/ui/widget/widget.d.ts +3 -0
  327. package/ui/widget/widget.js +15 -0
  328. package/utils/remove-confirm-handler.d.ts +1 -0
  329. package/utils/remove-confirm-handler.js +31 -0
  330. package/utils/translations.d.ts +23 -0
  331. package/utils/translations.js +24 -0
  332. package/utils/use-viewport-height.d.ts +3 -0
  333. package/utils/use-viewport-height.js +28 -0
@@ -0,0 +1,475 @@
1
+ export declare const twColors: {
2
+ inherit: string;
3
+ current: string;
4
+ transparent: string;
5
+ black: string;
6
+ white: string;
7
+ slate: {
8
+ "50": string;
9
+ "100": string;
10
+ "200": string;
11
+ "300": string;
12
+ "400": string;
13
+ "500": string;
14
+ "600": string;
15
+ "700": string;
16
+ "800": string;
17
+ "900": string;
18
+ "950": string;
19
+ };
20
+ gray: {
21
+ "50": string;
22
+ "100": string;
23
+ "200": string;
24
+ "300": string;
25
+ "400": string;
26
+ "500": string;
27
+ "600": string;
28
+ "700": string;
29
+ "800": string;
30
+ "900": string;
31
+ "950": string;
32
+ };
33
+ zinc: {
34
+ "50": string;
35
+ "100": string;
36
+ "200": string;
37
+ "300": string;
38
+ "400": string;
39
+ "500": string;
40
+ "600": string;
41
+ "700": string;
42
+ "800": string;
43
+ "900": string;
44
+ "950": string;
45
+ };
46
+ neutral: {
47
+ "50": string;
48
+ "100": string;
49
+ "200": string;
50
+ "300": string;
51
+ "400": string;
52
+ "500": string;
53
+ "600": string;
54
+ "700": string;
55
+ "800": string;
56
+ "900": string;
57
+ "950": string;
58
+ };
59
+ stone: {
60
+ "50": string;
61
+ "100": string;
62
+ "200": string;
63
+ "300": string;
64
+ "400": string;
65
+ "500": string;
66
+ "600": string;
67
+ "700": string;
68
+ "800": string;
69
+ "900": string;
70
+ "950": string;
71
+ };
72
+ red: {
73
+ "50": string;
74
+ "100": string;
75
+ "200": string;
76
+ "300": string;
77
+ "400": string;
78
+ "500": string;
79
+ "600": string;
80
+ "700": string;
81
+ "800": string;
82
+ "900": string;
83
+ "950": string;
84
+ };
85
+ orange: {
86
+ "50": string;
87
+ "100": string;
88
+ "200": string;
89
+ "300": string;
90
+ "400": string;
91
+ "500": string;
92
+ "600": string;
93
+ "700": string;
94
+ "800": string;
95
+ "900": string;
96
+ "950": string;
97
+ };
98
+ amber: {
99
+ "50": string;
100
+ "100": string;
101
+ "200": string;
102
+ "300": string;
103
+ "400": string;
104
+ "500": string;
105
+ "600": string;
106
+ "700": string;
107
+ "800": string;
108
+ "900": string;
109
+ "950": string;
110
+ };
111
+ yellow: {
112
+ "50": string;
113
+ "100": string;
114
+ "200": string;
115
+ "300": string;
116
+ "400": string;
117
+ "500": string;
118
+ "600": string;
119
+ "700": string;
120
+ "800": string;
121
+ "900": string;
122
+ "950": string;
123
+ };
124
+ lime: {
125
+ "50": string;
126
+ "100": string;
127
+ "200": string;
128
+ "300": string;
129
+ "400": string;
130
+ "500": string;
131
+ "600": string;
132
+ "700": string;
133
+ "800": string;
134
+ "900": string;
135
+ "950": string;
136
+ };
137
+ green: {
138
+ "50": string;
139
+ "100": string;
140
+ "200": string;
141
+ "300": string;
142
+ "400": string;
143
+ "500": string;
144
+ "600": string;
145
+ "700": string;
146
+ "800": string;
147
+ "900": string;
148
+ "950": string;
149
+ };
150
+ emerald: {
151
+ "50": string;
152
+ "100": string;
153
+ "200": string;
154
+ "300": string;
155
+ "400": string;
156
+ "500": string;
157
+ "600": string;
158
+ "700": string;
159
+ "800": string;
160
+ "900": string;
161
+ "950": string;
162
+ };
163
+ teal: {
164
+ "50": string;
165
+ "100": string;
166
+ "200": string;
167
+ "300": string;
168
+ "400": string;
169
+ "500": string;
170
+ "600": string;
171
+ "700": string;
172
+ "800": string;
173
+ "900": string;
174
+ "950": string;
175
+ };
176
+ cyan: {
177
+ "50": string;
178
+ "100": string;
179
+ "200": string;
180
+ "300": string;
181
+ "400": string;
182
+ "500": string;
183
+ "600": string;
184
+ "700": string;
185
+ "800": string;
186
+ "900": string;
187
+ "950": string;
188
+ };
189
+ sky: {
190
+ "50": string;
191
+ "100": string;
192
+ "200": string;
193
+ "300": string;
194
+ "400": string;
195
+ "500": string;
196
+ "600": string;
197
+ "700": string;
198
+ "800": string;
199
+ "900": string;
200
+ "950": string;
201
+ };
202
+ blue: {
203
+ "50": string;
204
+ "100": string;
205
+ "200": string;
206
+ "300": string;
207
+ "400": string;
208
+ "500": string;
209
+ "600": string;
210
+ "700": string;
211
+ "800": string;
212
+ "900": string;
213
+ "950": string;
214
+ };
215
+ indigo: {
216
+ "50": string;
217
+ "100": string;
218
+ "200": string;
219
+ "300": string;
220
+ "400": string;
221
+ "500": string;
222
+ "600": string;
223
+ "700": string;
224
+ "800": string;
225
+ "900": string;
226
+ "950": string;
227
+ };
228
+ violet: {
229
+ "50": string;
230
+ "100": string;
231
+ "200": string;
232
+ "300": string;
233
+ "400": string;
234
+ "500": string;
235
+ "600": string;
236
+ "700": string;
237
+ "800": string;
238
+ "900": string;
239
+ "950": string;
240
+ };
241
+ purple: {
242
+ "50": string;
243
+ "100": string;
244
+ "200": string;
245
+ "300": string;
246
+ "400": string;
247
+ "500": string;
248
+ "600": string;
249
+ "700": string;
250
+ "800": string;
251
+ "900": string;
252
+ "950": string;
253
+ };
254
+ fuchsia: {
255
+ "50": string;
256
+ "100": string;
257
+ "200": string;
258
+ "300": string;
259
+ "400": string;
260
+ "500": string;
261
+ "600": string;
262
+ "700": string;
263
+ "800": string;
264
+ "900": string;
265
+ "950": string;
266
+ };
267
+ pink: {
268
+ "50": string;
269
+ "100": string;
270
+ "200": string;
271
+ "300": string;
272
+ "400": string;
273
+ "500": string;
274
+ "600": string;
275
+ "700": string;
276
+ "800": string;
277
+ "900": string;
278
+ "950": string;
279
+ };
280
+ rose: {
281
+ "50": string;
282
+ "100": string;
283
+ "200": string;
284
+ "300": string;
285
+ "400": string;
286
+ "500": string;
287
+ "600": string;
288
+ "700": string;
289
+ "800": string;
290
+ "900": string;
291
+ "950": string;
292
+ };
293
+ lightHigh: string;
294
+ lightMedium: string;
295
+ lightLow: string;
296
+ darkHigh: string;
297
+ darkMedium: string;
298
+ darkLow: string;
299
+ lightBorder: string;
300
+ darkBorder: string;
301
+ primary: {
302
+ "50": string;
303
+ "100": string;
304
+ "200": string;
305
+ "300": string;
306
+ "400": string;
307
+ "500": string;
308
+ "600": string;
309
+ "700": string;
310
+ "800": string;
311
+ "900": string;
312
+ DEFAULT: string;
313
+ };
314
+ success: {
315
+ "50": string;
316
+ "100": string;
317
+ "200": string;
318
+ "300": string;
319
+ "400": string;
320
+ "500": string;
321
+ "600": string;
322
+ "700": string;
323
+ "800": string;
324
+ "900": string;
325
+ DEFAULT: string;
326
+ };
327
+ warning: {
328
+ "50": string;
329
+ "100": string;
330
+ "200": string;
331
+ "300": string;
332
+ "400": string;
333
+ "500": string;
334
+ "600": string;
335
+ "700": string;
336
+ "800": string;
337
+ "900": string;
338
+ DEFAULT: string;
339
+ };
340
+ error: {
341
+ "50": string;
342
+ "100": string;
343
+ "200": string;
344
+ "300": string;
345
+ "400": string;
346
+ "500": string;
347
+ "600": string;
348
+ "700": string;
349
+ "800": string;
350
+ "900": string;
351
+ DEFAULT: string;
352
+ };
353
+ test: string;
354
+ base_border_border: string;
355
+ base_border_input: string;
356
+ base_border_inverted_border: string;
357
+ base_border_inverted_input: string;
358
+ base_icon_disabled: string;
359
+ base_icon_high_emphasis: string;
360
+ base_icon_low_emphasis: string;
361
+ base_icon_medium_emphasis: string;
362
+ base_icon_inverted_low_emphasis: string;
363
+ base_icon_inverted_disabled: string;
364
+ base_icon_inverted_high_emphasis: string;
365
+ base_shadow_shadow_md: string;
366
+ base_shadow_shadow_sm: string;
367
+ base_surface_background: string;
368
+ base_surface_disabled: string;
369
+ base_surface_input: string;
370
+ base_surface_input_disabled: string;
371
+ base_surface_input_hover: string;
372
+ base_surface_main: string;
373
+ base_surface_main_hover: string;
374
+ base_surface_popup: string;
375
+ base_surface_tooltip: string;
376
+ base_surface_inverted_default: string;
377
+ base_surface_inverted_default_hover: string;
378
+ base_surface_inverted_disabled: string;
379
+ base_surface_inverted_main: string;
380
+ base_surface_inverted_main_hover: string;
381
+ base_text_disabled: string;
382
+ base_text_high_emphasis: string;
383
+ base_text_link: string;
384
+ base_text_link_pressed: string;
385
+ base_text_low_emphasis: string;
386
+ base_text_inverted_disabled: string;
387
+ base_text_inverted_high_emphasis: string;
388
+ base_text_inverted_link: string;
389
+ base_text_inverted_low_emphasis: string;
390
+ brand_border: string;
391
+ brand_icon: string;
392
+ brand_icon_on_muted: string;
393
+ brand_text: string;
394
+ brand_text_on_muted: string;
395
+ brand_surface_bolder: string;
396
+ brand_surface_bolder_hover: string;
397
+ brand_surface_default: string;
398
+ brand_surface_default_hover: string;
399
+ brand_surface_muted: string;
400
+ brand_surface_muted_hover: string;
401
+ brand_surface_subtle: string;
402
+ brand_surface_subtle_hover: string;
403
+ info_border: string;
404
+ info_icon: string;
405
+ info_icon_on_muted: string;
406
+ info_text: string;
407
+ info_text_on_muted: string;
408
+ info_surface_default: string;
409
+ info_surface_default_hover: string;
410
+ info_surface_muted: string;
411
+ info_surface_muted_hover: string;
412
+ info_surface_subtle: string;
413
+ info_surface_subtle_hover: string;
414
+ inverted_border: string;
415
+ inverted_icon: string;
416
+ inverted_icon_on_muted: string;
417
+ inverted_text_default: string;
418
+ inverted_text_disabled: string;
419
+ inverted_text_muted: string;
420
+ inverted_text_on_muted: string;
421
+ negative_border: string;
422
+ negative_icon: string;
423
+ negative_icon_on_muted: string;
424
+ negative_text: string;
425
+ negative_text_on_muted: string;
426
+ negative_surface_default: string;
427
+ negative_surface_default_hover: string;
428
+ negative_surface_muted: string;
429
+ negative_surface_muted_hover: string;
430
+ negative_surface_subtle: string;
431
+ negative_surface_subtle_hover: string;
432
+ neutral_border: string;
433
+ neutral_icon: string;
434
+ neutral_icon_on_muted: string;
435
+ neutral_text: string;
436
+ neutral_text_on_muted: string;
437
+ neutral_surface_bolder: string;
438
+ neutral_surface_bolder_hover: string;
439
+ neutral_surface_default: string;
440
+ neutral_surface_default_hover: string;
441
+ neutral_surface_muted: string;
442
+ neutral_surface_muted_hover: string;
443
+ neutral_surface_subtle: string;
444
+ neutral_surface_subtle_hover: string;
445
+ positive_border: string;
446
+ positive_icon: string;
447
+ positive_icon_on_muted: string;
448
+ positive_text: string;
449
+ positive_text_on_muted: string;
450
+ positive_surface_default: string;
451
+ positive_surface_default_hover: string;
452
+ positive_surface_muted: string;
453
+ positive_surface_muted_hover: string;
454
+ positive_surface_subtle: string;
455
+ positive_surface_subtle_hover: string;
456
+ warning_border: string;
457
+ warning_icon: string;
458
+ warning_icon_on_muted: string;
459
+ warning_text: string;
460
+ warning_text_on_muted: string;
461
+ warning_surface_default: string;
462
+ warning_surface_default_hover: string;
463
+ warning_surface_muted: string;
464
+ warning_surface_muted_hover: string;
465
+ warning_surface_subtle: string;
466
+ warning_surface_subtle_hover: string;
467
+ dataGridPrimary: string;
468
+ dataGridSecondary: string;
469
+ sidebar: {
470
+ background: string;
471
+ highlight: string;
472
+ hover: string;
473
+ };
474
+ };
475
+ export type TwColors = typeof twColors;