@membranehq/react 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1047) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +33 -0
  3. package/dist/cjs/_modules/awesome-debounce-promise.cjs +20 -0
  4. package/dist/cjs/components/AdvancedOptions.cjs +33 -0
  5. package/dist/cjs/components/Button/Button.cjs +109 -0
  6. package/dist/cjs/components/Button/Button.module.css.cjs +18 -0
  7. package/dist/cjs/components/ComboBox/Badges/ComboBoxFormulaBadge.cjs +33 -0
  8. package/dist/cjs/components/ComboBox/Badges/ComboBoxSchemaValueBadge.cjs +124 -0
  9. package/dist/cjs/components/ComboBox/Badges/ComboBoxValueBadge.cjs +76 -0
  10. package/dist/cjs/components/ComboBox/Badges/EditorTagBadge/NestedBadgeValue.cjs +93 -0
  11. package/dist/cjs/components/ComboBox/Badges/EditorTagBadge/index.cjs +194 -0
  12. package/dist/cjs/components/ComboBox/Badges/isDefinedValue.cjs +15 -0
  13. package/dist/cjs/components/ComboBox/ComboBox.cjs +83 -0
  14. package/dist/cjs/components/ComboBox/ComboboxTriggers/ComboboxEditorTrigger.cjs +130 -0
  15. package/dist/cjs/components/ComboBox/ComboboxTriggers/ComboboxTagTrigger.cjs +143 -0
  16. package/dist/cjs/components/ComboBox/Dropdown/ActiveCategoryContent.cjs +21 -0
  17. package/dist/cjs/components/ComboBox/Dropdown/Categories/CustomValue.cjs +19 -0
  18. package/dist/cjs/components/ComboBox/Dropdown/Categories/Formulas/DropdownPanelFormulaConfig.cjs +110 -0
  19. package/dist/cjs/components/ComboBox/Dropdown/Categories/Formulas/index.cjs +19 -0
  20. package/dist/cjs/components/ComboBox/Dropdown/Categories/Lookup.cjs +277 -0
  21. package/dist/cjs/components/ComboBox/Dropdown/Categories/LookupOptions/ParametersPanel.cjs +115 -0
  22. package/dist/cjs/components/ComboBox/Dropdown/Categories/LookupOptions/UiComponents.cjs +108 -0
  23. package/dist/cjs/components/ComboBox/Dropdown/Categories/LookupOptions/index.cjs +341 -0
  24. package/dist/cjs/components/ComboBox/Dropdown/Categories/Options.cjs +19 -0
  25. package/dist/cjs/components/ComboBox/Dropdown/Categories/Root.cjs +24 -0
  26. package/dist/cjs/components/ComboBox/Dropdown/Categories/Variables.cjs +19 -0
  27. package/dist/cjs/components/ComboBox/Dropdown/Categories/getLookupCollection.cjs +42 -0
  28. package/dist/cjs/components/ComboBox/Dropdown/DrillUpButton.cjs +40 -0
  29. package/dist/cjs/components/ComboBox/Dropdown/Dropdown.cjs +61 -0
  30. package/dist/cjs/components/ComboBox/Dropdown/KeyboardNavigation/NavigationContext.cjs +191 -0
  31. package/dist/cjs/components/ComboBox/Dropdown/KeyboardNavigation/useKeyboardBinding.cjs +60 -0
  32. package/dist/cjs/components/ComboBox/Dropdown/Option.cjs +55 -0
  33. package/dist/cjs/components/ComboBox/Dropdown/OptionsList.cjs +113 -0
  34. package/dist/cjs/components/ComboBox/Dropdown/SearchInput.cjs +71 -0
  35. package/dist/cjs/components/ComboBox/Dropdown/categoryContentMapping.cjs +31 -0
  36. package/dist/cjs/components/ComboBox/DropdownPopover/DropdownPositioner.cjs +57 -0
  37. package/dist/cjs/components/ComboBox/DropdownPopover/index.cjs +112 -0
  38. package/dist/cjs/components/ComboBox/FocusTrap/index.cjs +31 -0
  39. package/dist/cjs/components/ComboBox/context/combobox-context.cjs +102 -0
  40. package/dist/cjs/components/ComboBox/context/combobox-dropdown-context.cjs +322 -0
  41. package/dist/cjs/components/ComboBox/context/combobox-dropdown-search.cjs +53 -0
  42. package/dist/cjs/components/ComboBox/context/combobox-dropdown-stack.cjs +82 -0
  43. package/dist/cjs/components/ComboBox/context/helpers.cjs +143 -0
  44. package/dist/cjs/components/ComboBox/options-factories/boolean.cjs +33 -0
  45. package/dist/cjs/components/ComboBox/options-factories/constant.cjs +29 -0
  46. package/dist/cjs/components/ComboBox/options-factories/custom-field/constants.cjs +23 -0
  47. package/dist/cjs/components/ComboBox/options-factories/custom-field/index.cjs +45 -0
  48. package/dist/cjs/components/ComboBox/options-factories/enum.cjs +56 -0
  49. package/dist/cjs/components/ComboBox/options-factories/formula/config-mapping.cjs +106 -0
  50. package/dist/cjs/components/ComboBox/options-factories/formula/index.cjs +56 -0
  51. package/dist/cjs/components/ComboBox/options-factories/generate-schema-options.cjs +204 -0
  52. package/dist/cjs/components/ComboBox/options-factories/object-fields.cjs +96 -0
  53. package/dist/cjs/components/ComboBox/options-factories/reference-records.cjs +50 -0
  54. package/dist/cjs/components/ComboBox/options-factories/root.cjs +100 -0
  55. package/dist/cjs/components/ComboBox/options-factories/utils.cjs +25 -0
  56. package/dist/cjs/components/ComboBox/options-factories/variable.cjs +59 -0
  57. package/dist/cjs/components/ComboBox/shared.cjs +64 -0
  58. package/dist/cjs/components/ComboBox/value-spec.cjs +107 -0
  59. package/dist/cjs/components/ComboBoxElements/ComboBoxTag.cjs +71 -0
  60. package/dist/cjs/components/ComboBoxElements/ComboBoxTag.module.css.cjs +18 -0
  61. package/dist/cjs/components/ComboBoxElements/ComboboxContainer/index.cjs +84 -0
  62. package/dist/cjs/components/ComboBoxElements/Editor/LexicalEditor.cjs +118 -0
  63. package/dist/cjs/components/ComboBoxElements/Editor/helpers/clicks.cjs +39 -0
  64. package/dist/cjs/components/ComboBoxElements/Editor/helpers/common.cjs +114 -0
  65. package/dist/cjs/components/ComboBoxElements/Editor/helpers/tag-template-composition.cjs +22 -0
  66. package/dist/cjs/components/ComboBoxElements/Editor/helpers/transformEditorSchemaToValue.cjs +63 -0
  67. package/dist/cjs/components/ComboBoxElements/Editor/helpers/transformValueToEditorSchema.cjs +92 -0
  68. package/dist/cjs/components/ComboBoxElements/Editor/nodes/EditorTagBinding.cjs +58 -0
  69. package/dist/cjs/components/ComboBoxElements/Editor/nodes/EditorTagNode.cjs +88 -0
  70. package/dist/cjs/components/ComboBoxElements/Editor/plugins/ConfigPlugin.cjs +22 -0
  71. package/dist/cjs/components/ComboBoxElements/Editor/plugins/EditorTagPlugin.cjs +37 -0
  72. package/dist/cjs/components/ComboBoxElements/Editor/plugins/KeyboardPlugin.cjs +33 -0
  73. package/dist/cjs/components/ComboBoxElements/Editor/plugins/StateSyncPlugin.cjs +42 -0
  74. package/dist/cjs/components/ComboBoxElements/Editor/plugins/commands.cjs +15 -0
  75. package/dist/cjs/components/ComboBoxElements/Editor/useEditor.cjs +47 -0
  76. package/dist/cjs/components/DataBuilder/Condition/index.cjs +190 -0
  77. package/dist/cjs/components/DataBuilder/DataBuilderFormField.cjs +124 -0
  78. package/dist/cjs/components/DataBuilder/FieldDelete.cjs +31 -0
  79. package/dist/cjs/components/DataBuilder/FieldDescription.cjs +39 -0
  80. package/dist/cjs/components/DataBuilder/FieldList.cjs +46 -0
  81. package/dist/cjs/components/DataBuilder/FieldName/FieldNameInput.cjs +135 -0
  82. package/dist/cjs/components/DataBuilder/FieldName/index.cjs +89 -0
  83. package/dist/cjs/components/DataBuilder/FieldTypeSelector/convertableSchemaToSchema.cjs +21 -0
  84. package/dist/cjs/components/DataBuilder/FieldTypeSelector/index.cjs +190 -0
  85. package/dist/cjs/components/DataBuilder/FieldValue/Array.cjs +36 -0
  86. package/dist/cjs/components/DataBuilder/FieldValue/Default.cjs +53 -0
  87. package/dist/cjs/components/DataBuilder/FieldValue/ScalarArray.cjs +33 -0
  88. package/dist/cjs/components/DataBuilder/FieldValue/ScalarArray.module.css.cjs +18 -0
  89. package/dist/cjs/components/DataBuilder/FieldValue/index.cjs +52 -0
  90. package/dist/cjs/components/DataBuilder/FilterInput.cjs +34 -0
  91. package/dist/cjs/components/DataBuilder/Form.cjs +60 -0
  92. package/dist/cjs/components/DataBuilder/Formula/case-formula.cjs +180 -0
  93. package/dist/cjs/components/DataBuilder/Formula/concat.cjs +66 -0
  94. package/dist/cjs/components/DataBuilder/Formula/deprecatedFormula.cjs +32 -0
  95. package/dist/cjs/components/DataBuilder/Formula/domainFromEmail.cjs +49 -0
  96. package/dist/cjs/components/DataBuilder/Formula/extractDate.cjs +49 -0
  97. package/dist/cjs/components/DataBuilder/Formula/extractTime.cjs +49 -0
  98. package/dist/cjs/components/DataBuilder/Formula/findAppRecordId.cjs +114 -0
  99. package/dist/cjs/components/DataBuilder/Formula/findExternalRecordId.cjs +113 -0
  100. package/dist/cjs/components/DataBuilder/Formula/firstName.cjs +49 -0
  101. package/dist/cjs/components/DataBuilder/Formula/firstNotEmpty.cjs +61 -0
  102. package/dist/cjs/components/DataBuilder/Formula/index.cjs +126 -0
  103. package/dist/cjs/components/DataBuilder/Formula/iterate.cjs +104 -0
  104. package/dist/cjs/components/DataBuilder/Formula/jsonata.cjs +49 -0
  105. package/dist/cjs/components/DataBuilder/Formula/lastName.cjs +50 -0
  106. package/dist/cjs/components/DataBuilder/Formula/lookup.cjs +39 -0
  107. package/dist/cjs/components/DataBuilder/Formula/map.cjs +72 -0
  108. package/dist/cjs/components/DataBuilder/Formula/mergeObjects.cjs +52 -0
  109. package/dist/cjs/components/DataBuilder/Formula/noUi.cjs +19 -0
  110. package/dist/cjs/components/DataBuilder/Formula/tpl.cjs +22 -0
  111. package/dist/cjs/components/DataBuilder/Formula/var.cjs +35 -0
  112. package/dist/cjs/components/DataBuilder/Nested/ArrayItems.cjs +83 -0
  113. package/dist/cjs/components/DataBuilder/Nested/FieldControlPanel/AddingFieldSelector.cjs +62 -0
  114. package/dist/cjs/components/DataBuilder/Nested/FieldControlPanel/ControlPanel.cjs +112 -0
  115. package/dist/cjs/components/DataBuilder/Nested/FieldControlPanel/ControlPanelForNonObjectRootField.cjs +35 -0
  116. package/dist/cjs/components/DataBuilder/Nested/FieldControlPanel/index.cjs +73 -0
  117. package/dist/cjs/components/DataBuilder/Nested/FieldListWrapper/FieldListWrapper.module.css.cjs +18 -0
  118. package/dist/cjs/components/DataBuilder/Nested/FieldListWrapper/index.cjs +33 -0
  119. package/dist/cjs/components/DataBuilder/Nested/LevelKeysConflictProvider.cjs +18 -0
  120. package/dist/cjs/components/DataBuilder/Nested/NoSchema.cjs +31 -0
  121. package/dist/cjs/components/DataBuilder/Nested/ObjectFields.cjs +206 -0
  122. package/dist/cjs/components/DataBuilder/Nested/ValueMapping.cjs +198 -0
  123. package/dist/cjs/components/DataBuilder/Nested.cjs +32 -0
  124. package/dist/cjs/components/DataBuilder/data-builder-context.cjs +69 -0
  125. package/dist/cjs/components/DataBuilder/data-field.cjs +290 -0
  126. package/dist/cjs/components/DataBuilder/field-context.cjs +83 -0
  127. package/dist/cjs/components/DataBuilder/hooks.cjs +37 -0
  128. package/dist/cjs/components/DataBuilder/index.cjs +72 -0
  129. package/dist/cjs/components/DataBuilderUI/ActionBar.cjs +93 -0
  130. package/dist/cjs/components/DataBuilderUI/Cell.cjs +177 -0
  131. package/dist/cjs/components/DataBuilderUI/FieldControlPanel/index.cjs +124 -0
  132. package/dist/cjs/components/DataBuilderUI/NestedLevel.cjs +23 -0
  133. package/dist/cjs/components/DataBuilderUI/Row.cjs +48 -0
  134. package/dist/cjs/components/DataBuilderUI/Title.cjs +125 -0
  135. package/dist/cjs/components/DataBuilderUI/styles.module.css.cjs +18 -0
  136. package/dist/cjs/components/DataInput/index.cjs +57 -0
  137. package/dist/cjs/components/DataInput/useResolvedDataSchema.cjs +49 -0
  138. package/dist/cjs/components/DataLinks/data-link-tables-option-factory.cjs +48 -0
  139. package/dist/cjs/components/DropdownUI/BackButton.cjs +76 -0
  140. package/dist/cjs/components/DropdownUI/ClearSearchButton.cjs +59 -0
  141. package/dist/cjs/components/DropdownUI/Content.cjs +28 -0
  142. package/dist/cjs/components/DropdownUI/ErrorHeading.cjs +26 -0
  143. package/dist/cjs/components/DropdownUI/InfoHeading.cjs +26 -0
  144. package/dist/cjs/components/DropdownUI/Item.cjs +76 -0
  145. package/dist/cjs/components/DropdownUI/ItemHint.cjs +34 -0
  146. package/dist/cjs/components/DropdownUI/ItemIcon.cjs +69 -0
  147. package/dist/cjs/components/DropdownUI/ItemNestingIndicator.cjs +54 -0
  148. package/dist/cjs/components/DropdownUI/ItemTitle.cjs +33 -0
  149. package/dist/cjs/components/DropdownUI/List.cjs +30 -0
  150. package/dist/cjs/components/DropdownUI/ListHeader.cjs +23 -0
  151. package/dist/cjs/components/DropdownUI/LoadingItem.cjs +44 -0
  152. package/dist/cjs/components/DropdownUI/NoOptionsHeading.cjs +27 -0
  153. package/dist/cjs/components/DropdownUI/Panel.cjs +28 -0
  154. package/dist/cjs/components/DropdownUI/PopoverContainer.cjs +28 -0
  155. package/dist/cjs/components/DropdownUI/Search.cjs +50 -0
  156. package/dist/cjs/components/DropdownUI/constants.cjs +15 -0
  157. package/dist/cjs/components/DropdownUI/index.cjs +49 -0
  158. package/dist/cjs/components/DropdownUI/item-aria-context.cjs +20 -0
  159. package/dist/cjs/components/DropdownUI/sva-recipe.cjs +30 -0
  160. package/dist/cjs/components/DropdownUI/utils.cjs +15 -0
  161. package/dist/cjs/components/FloatingPortalBoundary/index.cjs +54 -0
  162. package/dist/cjs/components/IntegrationElements/DataSource/DataCollectionSelect.cjs +120 -0
  163. package/dist/cjs/components/IntegrationElements/DataSource/UdmSelect.cjs +36 -0
  164. package/dist/cjs/components/IntegrationElements/DataSource/index.cjs +95 -0
  165. package/dist/cjs/components/IntegrationElements/integration-element-context.cjs +45 -0
  166. package/dist/cjs/components/Integrations/IntegrationAvatar/index.cjs +50 -0
  167. package/dist/cjs/components/Integrations/IntegrationItem/index.cjs +53 -0
  168. package/dist/cjs/components/Integrations/IntegrationItemSkeleton.cjs +48 -0
  169. package/dist/cjs/components/Notification/Notification.module.css.cjs +18 -0
  170. package/dist/cjs/components/Notification/index.cjs +94 -0
  171. package/dist/cjs/components/Popover/index.cjs +56 -0
  172. package/dist/cjs/components/Portal/index.cjs +44 -0
  173. package/dist/cjs/components/Radio/Radio.module.css.cjs +18 -0
  174. package/dist/cjs/components/Radio/index.cjs +34 -0
  175. package/dist/cjs/components/SimpleInput/SimpleInput.cjs +46 -0
  176. package/dist/cjs/components/SimpleInput/SimpleTextarea.cjs +35 -0
  177. package/dist/cjs/components/SimpleInput/recipe.cjs +75 -0
  178. package/dist/cjs/components/SvgIcon/BasicEntities.cjs +223 -0
  179. package/dist/cjs/components/SvgIcon/index.cjs +335 -0
  180. package/dist/cjs/components/SvgIcon/svg-icon-type.cjs +98 -0
  181. package/dist/cjs/components/Tag/Components.cjs +38 -0
  182. package/dist/cjs/components/Tag/Tag.cjs +54 -0
  183. package/dist/cjs/components/Tag/TagPlaceholder.cjs +29 -0
  184. package/dist/cjs/components/Tag/styles.module.css.cjs +18 -0
  185. package/dist/cjs/components/Textarea/index.cjs +48 -0
  186. package/dist/cjs/components/Textarea/recipe.cjs +71 -0
  187. package/dist/cjs/components/Toggle/index.cjs +18 -0
  188. package/dist/cjs/components/Tooltip/index.cjs +116 -0
  189. package/dist/cjs/components/Truncate/index.cjs +53 -0
  190. package/dist/cjs/contexts/integration-app-client-context.cjs +28 -0
  191. package/dist/cjs/contexts/integration-app-connection-context.cjs +29 -0
  192. package/dist/cjs/contexts/integration-app-context.cjs +48 -0
  193. package/dist/cjs/contexts/integration-app-integration-context.cjs +29 -0
  194. package/dist/cjs/helpers/getRefElement.cjs +22 -0
  195. package/dist/cjs/helpers/hooks/keyboard-events.cjs +137 -0
  196. package/dist/cjs/helpers/hooks/useDeepEffect.cjs +37 -0
  197. package/dist/cjs/helpers/hooks/useEventStopPropagation.cjs +26 -0
  198. package/dist/cjs/helpers/hooks/useForwardedRef.cjs +26 -0
  199. package/dist/cjs/helpers/hooks/useIsTextTruncated.cjs +51 -0
  200. package/dist/cjs/helpers/hooks/useResizeObserver.cjs +51 -0
  201. package/dist/cjs/helpers/hooks/useThrottle.cjs +34 -0
  202. package/dist/cjs/helpers/hooks/useWindowEvent.cjs +25 -0
  203. package/dist/cjs/helpers/intersperse.cjs +15 -0
  204. package/dist/cjs/helpers/simple-unique-id.cjs +15 -0
  205. package/dist/cjs/hooks/actions/useAction.cjs +37 -0
  206. package/dist/cjs/hooks/actions/useActionInstance.cjs +51 -0
  207. package/dist/cjs/hooks/actions/useActionInstances.cjs +21 -0
  208. package/dist/cjs/hooks/actions/useActions.cjs +21 -0
  209. package/dist/cjs/hooks/app-data-schemas/useAppDataSchema.cjs +23 -0
  210. package/dist/cjs/hooks/app-data-schemas/useAppDataSchemaInstance.cjs +38 -0
  211. package/dist/cjs/hooks/app-data-schemas/useAppDataSchemaInstances.cjs +21 -0
  212. package/dist/cjs/hooks/app-data-schemas/useAppDataSchemas.cjs +21 -0
  213. package/dist/cjs/hooks/app-events/useAppEventSubscription.cjs +23 -0
  214. package/dist/cjs/hooks/app-events/useAppEventSubscriptions.cjs +21 -0
  215. package/dist/cjs/hooks/app-events/useAppEventType.cjs +23 -0
  216. package/dist/cjs/hooks/app-events/useAppEventTypes.cjs +21 -0
  217. package/dist/cjs/hooks/app-events/useAppEvents.cjs +21 -0
  218. package/dist/cjs/hooks/customers/useCustomer.cjs +23 -0
  219. package/dist/cjs/hooks/customers/useCustomers.cjs +21 -0
  220. package/dist/cjs/hooks/data-collections/useDataCollectionSpec.cjs +36 -0
  221. package/dist/cjs/hooks/data-links/useDataLinkTable.cjs +23 -0
  222. package/dist/cjs/hooks/data-links/useDataLinkTableInstance.cjs +36 -0
  223. package/dist/cjs/hooks/data-links/useDataLinkTableInstances.cjs +21 -0
  224. package/dist/cjs/hooks/data-links/useDataLinkTables.cjs +21 -0
  225. package/dist/cjs/hooks/data-sources/useDataSource.cjs +41 -0
  226. package/dist/cjs/hooks/data-sources/useDataSourceInstance.cjs +79 -0
  227. package/dist/cjs/hooks/data-sources/useDataSourceInstanceCollection.cjs +32 -0
  228. package/dist/cjs/hooks/data-sources/useDataSourceInstances.cjs +21 -0
  229. package/dist/cjs/hooks/data-sources/useDataSources.cjs +21 -0
  230. package/dist/cjs/hooks/external-events/useExternalEventSubscription.cjs +58 -0
  231. package/dist/cjs/hooks/external-events/useExternalEventSubscriptions.cjs +21 -0
  232. package/dist/cjs/hooks/field-mappings/useFieldMapping.cjs +41 -0
  233. package/dist/cjs/hooks/field-mappings/useFieldMappingInstance.cjs +47 -0
  234. package/dist/cjs/hooks/field-mappings/useFieldMappingInstances.cjs +21 -0
  235. package/dist/cjs/hooks/field-mappings/useFieldMappings.cjs +21 -0
  236. package/dist/cjs/hooks/flows/useFlow.cjs +37 -0
  237. package/dist/cjs/hooks/flows/useFlowInstance.cjs +69 -0
  238. package/dist/cjs/hooks/flows/useFlowInstances.cjs +21 -0
  239. package/dist/cjs/hooks/flows/useFlowRun.cjs +35 -0
  240. package/dist/cjs/hooks/flows/useFlowRuns.cjs +21 -0
  241. package/dist/cjs/hooks/flows/useFlows.cjs +21 -0
  242. package/dist/cjs/hooks/integrations/useConnection.cjs +22 -0
  243. package/dist/cjs/hooks/integrations/useConnections.cjs +21 -0
  244. package/dist/cjs/hooks/integrations/useConnectorSpec.cjs +23 -0
  245. package/dist/cjs/hooks/integrations/useIntegration.cjs +23 -0
  246. package/dist/cjs/hooks/integrations/useIntegrations.cjs +21 -0
  247. package/dist/cjs/hooks/scenarios/useScenario.cjs +23 -0
  248. package/dist/cjs/hooks/scenarios/useScenarios.cjs +21 -0
  249. package/dist/cjs/hooks/screens/useScreen.cjs +23 -0
  250. package/dist/cjs/hooks/useElement.cjs +122 -0
  251. package/dist/cjs/hooks/useElements.cjs +76 -0
  252. package/dist/cjs/hooks/useExportFieldsAsCode.cjs +26 -0
  253. package/dist/cjs/hooks/useIntegrationAppSWR.cjs +23 -0
  254. package/dist/cjs/hooks/usePromise.cjs +78 -0
  255. package/dist/cjs/index.cjs +287 -0
  256. package/dist/cjs/recipes/dropdown.cjs +234 -0
  257. package/dist/cjs/styled-system/css/conditions.cjs +49 -0
  258. package/dist/cjs/styled-system/css/css.cjs +57 -0
  259. package/dist/cjs/styled-system/css/cva.cjs +100 -0
  260. package/dist/cjs/styled-system/css/cx.cjs +24 -0
  261. package/dist/cjs/styled-system/css/sva.cjs +52 -0
  262. package/dist/cjs/styled-system/helpers.cjs +336 -0
  263. package/dist/cjs/styled-system/jsx/box.cjs +24 -0
  264. package/dist/cjs/styled-system/jsx/center.cjs +24 -0
  265. package/dist/cjs/styled-system/jsx/circle.cjs +24 -0
  266. package/dist/cjs/styled-system/jsx/divider.cjs +24 -0
  267. package/dist/cjs/styled-system/jsx/factory-helper.cjs +36 -0
  268. package/dist/cjs/styled-system/jsx/factory.cjs +93 -0
  269. package/dist/cjs/styled-system/jsx/flex.cjs +24 -0
  270. package/dist/cjs/styled-system/jsx/is-valid-prop.cjs +24 -0
  271. package/dist/cjs/styled-system/jsx/visually-hidden.cjs +24 -0
  272. package/dist/cjs/styled-system/patterns/box.cjs +23 -0
  273. package/dist/cjs/styled-system/patterns/center.cjs +29 -0
  274. package/dist/cjs/styled-system/patterns/circle.cjs +33 -0
  275. package/dist/cjs/styled-system/patterns/divider.cjs +33 -0
  276. package/dist/cjs/styled-system/patterns/flex.cjs +34 -0
  277. package/dist/cjs/styled-system/patterns/visually-hidden.cjs +30 -0
  278. package/dist/cjs/styled-system/recipes/alert.cjs +59 -0
  279. package/dist/cjs/styled-system/recipes/avatar.cjs +64 -0
  280. package/dist/cjs/styled-system/recipes/badge.cjs +49 -0
  281. package/dist/cjs/styled-system/recipes/button.cjs +54 -0
  282. package/dist/cjs/styled-system/recipes/create-recipe.cjs +94 -0
  283. package/dist/cjs/styled-system/recipes/icon.cjs +46 -0
  284. package/dist/cjs/styled-system/recipes/input.cjs +47 -0
  285. package/dist/cjs/styled-system/recipes/menu.cjs +106 -0
  286. package/dist/cjs/styled-system/recipes/popover.cjs +79 -0
  287. package/dist/cjs/styled-system/recipes/skeleton.cjs +35 -0
  288. package/dist/cjs/styled-system/recipes/spinner.cjs +45 -0
  289. package/dist/cjs/styled-system/recipes/switch-recipe.cjs +65 -0
  290. package/dist/cjs/styled-system/recipes/text.cjs +52 -0
  291. package/dist/cjs/styled-system/recipes/tooltip.cjs +59 -0
  292. package/dist/cjs/styled-system/tokens/index.cjs +4543 -0
  293. package/dist/cjs/ui-kit/avatar.cjs +30 -0
  294. package/dist/cjs/ui-kit/button.cjs +33 -0
  295. package/dist/cjs/ui-kit/spinner.cjs +26 -0
  296. package/dist/cjs/ui-kit/styled/alert.cjs +31 -0
  297. package/dist/cjs/ui-kit/styled/avatar.cjs +37 -0
  298. package/dist/cjs/ui-kit/styled/badge.cjs +23 -0
  299. package/dist/cjs/ui-kit/styled/button.cjs +23 -0
  300. package/dist/cjs/ui-kit/styled/icon-button.cjs +25 -0
  301. package/dist/cjs/ui-kit/styled/icon.cjs +25 -0
  302. package/dist/cjs/ui-kit/styled/input.cjs +23 -0
  303. package/dist/cjs/ui-kit/styled/menu.cjs +96 -0
  304. package/dist/cjs/ui-kit/styled/popover.cjs +75 -0
  305. package/dist/cjs/ui-kit/styled/skeleton.cjs +33 -0
  306. package/dist/cjs/ui-kit/styled/spinner.cjs +23 -0
  307. package/dist/cjs/ui-kit/styled/switch.cjs +46 -0
  308. package/dist/cjs/ui-kit/styled/text.cjs +22 -0
  309. package/dist/cjs/ui-kit/styled/tooltip.cjs +54 -0
  310. package/dist/cjs/ui-kit/styled/utils/create-style-context.cjs +63 -0
  311. package/dist/cjs/ui-kit/switch.cjs +42 -0
  312. package/dist/esm/_modules/awesome-debounce-promise.mjs +16 -0
  313. package/dist/esm/components/AdvancedOptions.mjs +31 -0
  314. package/dist/esm/components/Button/Button.mjs +106 -0
  315. package/dist/esm/components/Button/Button.module.css.mjs +14 -0
  316. package/dist/esm/components/ComboBox/Badges/ComboBoxFormulaBadge.mjs +31 -0
  317. package/dist/esm/components/ComboBox/Badges/ComboBoxSchemaValueBadge.mjs +122 -0
  318. package/dist/esm/components/ComboBox/Badges/ComboBoxValueBadge.mjs +74 -0
  319. package/dist/esm/components/ComboBox/Badges/EditorTagBadge/NestedBadgeValue.mjs +89 -0
  320. package/dist/esm/components/ComboBox/Badges/EditorTagBadge/index.mjs +190 -0
  321. package/dist/esm/components/ComboBox/Badges/isDefinedValue.mjs +13 -0
  322. package/dist/esm/components/ComboBox/ComboBox.mjs +81 -0
  323. package/dist/esm/components/ComboBox/ComboboxTriggers/ComboboxEditorTrigger.mjs +128 -0
  324. package/dist/esm/components/ComboBox/ComboboxTriggers/ComboboxTagTrigger.mjs +141 -0
  325. package/dist/esm/components/ComboBox/Dropdown/ActiveCategoryContent.mjs +19 -0
  326. package/dist/esm/components/ComboBox/Dropdown/Categories/CustomValue.mjs +17 -0
  327. package/dist/esm/components/ComboBox/Dropdown/Categories/Formulas/DropdownPanelFormulaConfig.mjs +108 -0
  328. package/dist/esm/components/ComboBox/Dropdown/Categories/Formulas/index.mjs +17 -0
  329. package/dist/esm/components/ComboBox/Dropdown/Categories/Lookup.mjs +275 -0
  330. package/dist/esm/components/ComboBox/Dropdown/Categories/LookupOptions/ParametersPanel.mjs +113 -0
  331. package/dist/esm/components/ComboBox/Dropdown/Categories/LookupOptions/UiComponents.mjs +101 -0
  332. package/dist/esm/components/ComboBox/Dropdown/Categories/LookupOptions/index.mjs +337 -0
  333. package/dist/esm/components/ComboBox/Dropdown/Categories/Options.mjs +17 -0
  334. package/dist/esm/components/ComboBox/Dropdown/Categories/Root.mjs +22 -0
  335. package/dist/esm/components/ComboBox/Dropdown/Categories/Variables.mjs +17 -0
  336. package/dist/esm/components/ComboBox/Dropdown/Categories/getLookupCollection.mjs +40 -0
  337. package/dist/esm/components/ComboBox/Dropdown/DrillUpButton.mjs +38 -0
  338. package/dist/esm/components/ComboBox/Dropdown/Dropdown.mjs +59 -0
  339. package/dist/esm/components/ComboBox/Dropdown/KeyboardNavigation/NavigationContext.mjs +188 -0
  340. package/dist/esm/components/ComboBox/Dropdown/KeyboardNavigation/useKeyboardBinding.mjs +58 -0
  341. package/dist/esm/components/ComboBox/Dropdown/Option.mjs +51 -0
  342. package/dist/esm/components/ComboBox/Dropdown/OptionsList.mjs +111 -0
  343. package/dist/esm/components/ComboBox/Dropdown/SearchInput.mjs +69 -0
  344. package/dist/esm/components/ComboBox/Dropdown/categoryContentMapping.mjs +29 -0
  345. package/dist/esm/components/ComboBox/DropdownPopover/DropdownPositioner.mjs +55 -0
  346. package/dist/esm/components/ComboBox/DropdownPopover/index.mjs +108 -0
  347. package/dist/esm/components/ComboBox/FocusTrap/index.mjs +29 -0
  348. package/dist/esm/components/ComboBox/context/combobox-context.mjs +99 -0
  349. package/dist/esm/components/ComboBox/context/combobox-dropdown-context.mjs +319 -0
  350. package/dist/esm/components/ComboBox/context/combobox-dropdown-search.mjs +50 -0
  351. package/dist/esm/components/ComboBox/context/combobox-dropdown-stack.mjs +79 -0
  352. package/dist/esm/components/ComboBox/context/helpers.mjs +138 -0
  353. package/dist/esm/components/ComboBox/options-factories/boolean.mjs +31 -0
  354. package/dist/esm/components/ComboBox/options-factories/constant.mjs +27 -0
  355. package/dist/esm/components/ComboBox/options-factories/custom-field/constants.mjs +17 -0
  356. package/dist/esm/components/ComboBox/options-factories/custom-field/index.mjs +43 -0
  357. package/dist/esm/components/ComboBox/options-factories/enum.mjs +54 -0
  358. package/dist/esm/components/ComboBox/options-factories/formula/config-mapping.mjs +104 -0
  359. package/dist/esm/components/ComboBox/options-factories/formula/index.mjs +54 -0
  360. package/dist/esm/components/ComboBox/options-factories/generate-schema-options.mjs +202 -0
  361. package/dist/esm/components/ComboBox/options-factories/object-fields.mjs +94 -0
  362. package/dist/esm/components/ComboBox/options-factories/reference-records.mjs +48 -0
  363. package/dist/esm/components/ComboBox/options-factories/root.mjs +98 -0
  364. package/dist/esm/components/ComboBox/options-factories/utils.mjs +23 -0
  365. package/dist/esm/components/ComboBox/options-factories/variable.mjs +57 -0
  366. package/dist/esm/components/ComboBox/shared.mjs +61 -0
  367. package/dist/esm/components/ComboBox/value-spec.mjs +103 -0
  368. package/dist/esm/components/ComboBoxElements/ComboBoxTag.mjs +69 -0
  369. package/dist/esm/components/ComboBoxElements/ComboBoxTag.module.css.mjs +14 -0
  370. package/dist/esm/components/ComboBoxElements/ComboboxContainer/index.mjs +81 -0
  371. package/dist/esm/components/ComboBoxElements/Editor/LexicalEditor.mjs +114 -0
  372. package/dist/esm/components/ComboBoxElements/Editor/helpers/clicks.mjs +36 -0
  373. package/dist/esm/components/ComboBoxElements/Editor/helpers/common.mjs +103 -0
  374. package/dist/esm/components/ComboBoxElements/Editor/helpers/tag-template-composition.mjs +17 -0
  375. package/dist/esm/components/ComboBoxElements/Editor/helpers/transformEditorSchemaToValue.mjs +61 -0
  376. package/dist/esm/components/ComboBoxElements/Editor/helpers/transformValueToEditorSchema.mjs +90 -0
  377. package/dist/esm/components/ComboBoxElements/Editor/nodes/EditorTagBinding.mjs +56 -0
  378. package/dist/esm/components/ComboBoxElements/Editor/nodes/EditorTagNode.mjs +83 -0
  379. package/dist/esm/components/ComboBoxElements/Editor/plugins/ConfigPlugin.mjs +20 -0
  380. package/dist/esm/components/ComboBoxElements/Editor/plugins/EditorTagPlugin.mjs +35 -0
  381. package/dist/esm/components/ComboBoxElements/Editor/plugins/KeyboardPlugin.mjs +31 -0
  382. package/dist/esm/components/ComboBoxElements/Editor/plugins/StateSyncPlugin.mjs +40 -0
  383. package/dist/esm/components/ComboBoxElements/Editor/plugins/commands.mjs +13 -0
  384. package/dist/esm/components/ComboBoxElements/Editor/useEditor.mjs +45 -0
  385. package/dist/esm/components/DataBuilder/Condition/index.mjs +186 -0
  386. package/dist/esm/components/DataBuilder/DataBuilderFormField.mjs +122 -0
  387. package/dist/esm/components/DataBuilder/FieldDelete.mjs +29 -0
  388. package/dist/esm/components/DataBuilder/FieldDescription.mjs +37 -0
  389. package/dist/esm/components/DataBuilder/FieldList.mjs +44 -0
  390. package/dist/esm/components/DataBuilder/FieldName/FieldNameInput.mjs +133 -0
  391. package/dist/esm/components/DataBuilder/FieldName/index.mjs +87 -0
  392. package/dist/esm/components/DataBuilder/FieldTypeSelector/convertableSchemaToSchema.mjs +19 -0
  393. package/dist/esm/components/DataBuilder/FieldTypeSelector/index.mjs +188 -0
  394. package/dist/esm/components/DataBuilder/FieldValue/Array.mjs +32 -0
  395. package/dist/esm/components/DataBuilder/FieldValue/Default.mjs +49 -0
  396. package/dist/esm/components/DataBuilder/FieldValue/ScalarArray.mjs +29 -0
  397. package/dist/esm/components/DataBuilder/FieldValue/ScalarArray.module.css.mjs +14 -0
  398. package/dist/esm/components/DataBuilder/FieldValue/index.mjs +48 -0
  399. package/dist/esm/components/DataBuilder/FilterInput.mjs +32 -0
  400. package/dist/esm/components/DataBuilder/Form.mjs +58 -0
  401. package/dist/esm/components/DataBuilder/Formula/case-formula.mjs +175 -0
  402. package/dist/esm/components/DataBuilder/Formula/concat.mjs +61 -0
  403. package/dist/esm/components/DataBuilder/Formula/deprecatedFormula.mjs +29 -0
  404. package/dist/esm/components/DataBuilder/Formula/domainFromEmail.mjs +44 -0
  405. package/dist/esm/components/DataBuilder/Formula/extractDate.mjs +44 -0
  406. package/dist/esm/components/DataBuilder/Formula/extractTime.mjs +44 -0
  407. package/dist/esm/components/DataBuilder/Formula/findAppRecordId.mjs +109 -0
  408. package/dist/esm/components/DataBuilder/Formula/findExternalRecordId.mjs +108 -0
  409. package/dist/esm/components/DataBuilder/Formula/firstName.mjs +44 -0
  410. package/dist/esm/components/DataBuilder/Formula/firstNotEmpty.mjs +56 -0
  411. package/dist/esm/components/DataBuilder/Formula/index.mjs +124 -0
  412. package/dist/esm/components/DataBuilder/Formula/iterate.mjs +99 -0
  413. package/dist/esm/components/DataBuilder/Formula/jsonata.mjs +44 -0
  414. package/dist/esm/components/DataBuilder/Formula/lastName.mjs +45 -0
  415. package/dist/esm/components/DataBuilder/Formula/lookup.mjs +35 -0
  416. package/dist/esm/components/DataBuilder/Formula/map.mjs +67 -0
  417. package/dist/esm/components/DataBuilder/Formula/mergeObjects.mjs +47 -0
  418. package/dist/esm/components/DataBuilder/Formula/noUi.mjs +15 -0
  419. package/dist/esm/components/DataBuilder/Formula/tpl.mjs +18 -0
  420. package/dist/esm/components/DataBuilder/Formula/var.mjs +31 -0
  421. package/dist/esm/components/DataBuilder/Nested/ArrayItems.mjs +79 -0
  422. package/dist/esm/components/DataBuilder/Nested/FieldControlPanel/AddingFieldSelector.mjs +60 -0
  423. package/dist/esm/components/DataBuilder/Nested/FieldControlPanel/ControlPanel.mjs +110 -0
  424. package/dist/esm/components/DataBuilder/Nested/FieldControlPanel/ControlPanelForNonObjectRootField.mjs +33 -0
  425. package/dist/esm/components/DataBuilder/Nested/FieldControlPanel/index.mjs +69 -0
  426. package/dist/esm/components/DataBuilder/Nested/FieldListWrapper/FieldListWrapper.module.css.mjs +14 -0
  427. package/dist/esm/components/DataBuilder/Nested/FieldListWrapper/index.mjs +31 -0
  428. package/dist/esm/components/DataBuilder/Nested/LevelKeysConflictProvider.mjs +15 -0
  429. package/dist/esm/components/DataBuilder/Nested/NoSchema.mjs +27 -0
  430. package/dist/esm/components/DataBuilder/Nested/ObjectFields.mjs +202 -0
  431. package/dist/esm/components/DataBuilder/Nested/ValueMapping.mjs +196 -0
  432. package/dist/esm/components/DataBuilder/Nested.mjs +28 -0
  433. package/dist/esm/components/DataBuilder/data-builder-context.mjs +64 -0
  434. package/dist/esm/components/DataBuilder/data-field.mjs +275 -0
  435. package/dist/esm/components/DataBuilder/field-context.mjs +78 -0
  436. package/dist/esm/components/DataBuilder/hooks.mjs +34 -0
  437. package/dist/esm/components/DataBuilder/index.mjs +70 -0
  438. package/dist/esm/components/DataBuilderUI/ActionBar.mjs +90 -0
  439. package/dist/esm/components/DataBuilderUI/Cell.mjs +172 -0
  440. package/dist/esm/components/DataBuilderUI/FieldControlPanel/index.mjs +121 -0
  441. package/dist/esm/components/DataBuilderUI/NestedLevel.mjs +21 -0
  442. package/dist/esm/components/DataBuilderUI/Row.mjs +45 -0
  443. package/dist/esm/components/DataBuilderUI/Title.mjs +120 -0
  444. package/dist/esm/components/DataBuilderUI/styles.module.css.mjs +14 -0
  445. package/dist/esm/components/DataInput/index.mjs +55 -0
  446. package/dist/esm/components/DataInput/useResolvedDataSchema.mjs +47 -0
  447. package/dist/esm/components/DataLinks/data-link-tables-option-factory.mjs +46 -0
  448. package/dist/esm/components/DropdownUI/BackButton.mjs +74 -0
  449. package/dist/esm/components/DropdownUI/ClearSearchButton.mjs +57 -0
  450. package/dist/esm/components/DropdownUI/Content.mjs +26 -0
  451. package/dist/esm/components/DropdownUI/ErrorHeading.mjs +24 -0
  452. package/dist/esm/components/DropdownUI/InfoHeading.mjs +24 -0
  453. package/dist/esm/components/DropdownUI/Item.mjs +74 -0
  454. package/dist/esm/components/DropdownUI/ItemHint.mjs +32 -0
  455. package/dist/esm/components/DropdownUI/ItemIcon.mjs +67 -0
  456. package/dist/esm/components/DropdownUI/ItemNestingIndicator.mjs +52 -0
  457. package/dist/esm/components/DropdownUI/ItemTitle.mjs +31 -0
  458. package/dist/esm/components/DropdownUI/List.mjs +28 -0
  459. package/dist/esm/components/DropdownUI/ListHeader.mjs +21 -0
  460. package/dist/esm/components/DropdownUI/LoadingItem.mjs +42 -0
  461. package/dist/esm/components/DropdownUI/NoOptionsHeading.mjs +25 -0
  462. package/dist/esm/components/DropdownUI/Panel.mjs +26 -0
  463. package/dist/esm/components/DropdownUI/PopoverContainer.mjs +26 -0
  464. package/dist/esm/components/DropdownUI/Search.mjs +47 -0
  465. package/dist/esm/components/DropdownUI/constants.mjs +12 -0
  466. package/dist/esm/components/DropdownUI/index.mjs +47 -0
  467. package/dist/esm/components/DropdownUI/item-aria-context.mjs +17 -0
  468. package/dist/esm/components/DropdownUI/sva-recipe.mjs +28 -0
  469. package/dist/esm/components/DropdownUI/utils.mjs +13 -0
  470. package/dist/esm/components/FloatingPortalBoundary/index.mjs +51 -0
  471. package/dist/esm/components/IntegrationElements/DataSource/DataCollectionSelect.mjs +118 -0
  472. package/dist/esm/components/IntegrationElements/DataSource/UdmSelect.mjs +34 -0
  473. package/dist/esm/components/IntegrationElements/DataSource/index.mjs +92 -0
  474. package/dist/esm/components/IntegrationElements/integration-element-context.mjs +42 -0
  475. package/dist/esm/components/Integrations/IntegrationAvatar/index.mjs +48 -0
  476. package/dist/esm/components/Integrations/IntegrationItem/index.mjs +51 -0
  477. package/dist/esm/components/Integrations/IntegrationItemSkeleton.mjs +46 -0
  478. package/dist/esm/components/Notification/Notification.module.css.mjs +14 -0
  479. package/dist/esm/components/Notification/index.mjs +92 -0
  480. package/dist/esm/components/Popover/index.mjs +54 -0
  481. package/dist/esm/components/Portal/index.mjs +42 -0
  482. package/dist/esm/components/Radio/Radio.module.css.mjs +14 -0
  483. package/dist/esm/components/Radio/index.mjs +32 -0
  484. package/dist/esm/components/SimpleInput/SimpleInput.mjs +44 -0
  485. package/dist/esm/components/SimpleInput/SimpleTextarea.mjs +33 -0
  486. package/dist/esm/components/SimpleInput/recipe.mjs +73 -0
  487. package/dist/esm/components/SvgIcon/BasicEntities.mjs +209 -0
  488. package/dist/esm/components/SvgIcon/index.mjs +333 -0
  489. package/dist/esm/components/SvgIcon/svg-icon-type.mjs +96 -0
  490. package/dist/esm/components/Tag/Components.mjs +34 -0
  491. package/dist/esm/components/Tag/Tag.mjs +51 -0
  492. package/dist/esm/components/Tag/TagPlaceholder.mjs +27 -0
  493. package/dist/esm/components/Tag/styles.module.css.mjs +14 -0
  494. package/dist/esm/components/Textarea/index.mjs +46 -0
  495. package/dist/esm/components/Textarea/recipe.mjs +68 -0
  496. package/dist/esm/components/Toggle/index.mjs +16 -0
  497. package/dist/esm/components/Tooltip/index.mjs +114 -0
  498. package/dist/esm/components/Truncate/index.mjs +51 -0
  499. package/dist/esm/contexts/integration-app-client-context.mjs +25 -0
  500. package/dist/esm/contexts/integration-app-connection-context.mjs +26 -0
  501. package/dist/esm/contexts/integration-app-context.mjs +45 -0
  502. package/dist/esm/contexts/integration-app-integration-context.mjs +26 -0
  503. package/dist/esm/helpers/getRefElement.mjs +20 -0
  504. package/dist/esm/helpers/hooks/keyboard-events.mjs +133 -0
  505. package/dist/esm/helpers/hooks/useDeepEffect.mjs +35 -0
  506. package/dist/esm/helpers/hooks/useEventStopPropagation.mjs +22 -0
  507. package/dist/esm/helpers/hooks/useForwardedRef.mjs +24 -0
  508. package/dist/esm/helpers/hooks/useIsTextTruncated.mjs +49 -0
  509. package/dist/esm/helpers/hooks/useResizeObserver.mjs +47 -0
  510. package/dist/esm/helpers/hooks/useThrottle.mjs +32 -0
  511. package/dist/esm/helpers/hooks/useWindowEvent.mjs +23 -0
  512. package/dist/esm/helpers/intersperse.mjs +13 -0
  513. package/dist/esm/helpers/simple-unique-id.mjs +13 -0
  514. package/dist/esm/hooks/actions/useAction.mjs +35 -0
  515. package/dist/esm/hooks/actions/useActionInstance.mjs +49 -0
  516. package/dist/esm/hooks/actions/useActionInstances.mjs +19 -0
  517. package/dist/esm/hooks/actions/useActions.mjs +19 -0
  518. package/dist/esm/hooks/app-data-schemas/useAppDataSchema.mjs +21 -0
  519. package/dist/esm/hooks/app-data-schemas/useAppDataSchemaInstance.mjs +36 -0
  520. package/dist/esm/hooks/app-data-schemas/useAppDataSchemaInstances.mjs +19 -0
  521. package/dist/esm/hooks/app-data-schemas/useAppDataSchemas.mjs +19 -0
  522. package/dist/esm/hooks/app-events/useAppEventSubscription.mjs +21 -0
  523. package/dist/esm/hooks/app-events/useAppEventSubscriptions.mjs +19 -0
  524. package/dist/esm/hooks/app-events/useAppEventType.mjs +21 -0
  525. package/dist/esm/hooks/app-events/useAppEventTypes.mjs +19 -0
  526. package/dist/esm/hooks/app-events/useAppEvents.mjs +19 -0
  527. package/dist/esm/hooks/customers/useCustomer.mjs +21 -0
  528. package/dist/esm/hooks/customers/useCustomers.mjs +19 -0
  529. package/dist/esm/hooks/data-collections/useDataCollectionSpec.mjs +34 -0
  530. package/dist/esm/hooks/data-links/useDataLinkTable.mjs +21 -0
  531. package/dist/esm/hooks/data-links/useDataLinkTableInstance.mjs +34 -0
  532. package/dist/esm/hooks/data-links/useDataLinkTableInstances.mjs +19 -0
  533. package/dist/esm/hooks/data-links/useDataLinkTables.mjs +19 -0
  534. package/dist/esm/hooks/data-sources/useDataSource.mjs +39 -0
  535. package/dist/esm/hooks/data-sources/useDataSourceInstance.mjs +77 -0
  536. package/dist/esm/hooks/data-sources/useDataSourceInstanceCollection.mjs +30 -0
  537. package/dist/esm/hooks/data-sources/useDataSourceInstances.mjs +19 -0
  538. package/dist/esm/hooks/data-sources/useDataSources.mjs +19 -0
  539. package/dist/esm/hooks/external-events/useExternalEventSubscription.mjs +56 -0
  540. package/dist/esm/hooks/external-events/useExternalEventSubscriptions.mjs +19 -0
  541. package/dist/esm/hooks/field-mappings/useFieldMapping.mjs +39 -0
  542. package/dist/esm/hooks/field-mappings/useFieldMappingInstance.mjs +45 -0
  543. package/dist/esm/hooks/field-mappings/useFieldMappingInstances.mjs +19 -0
  544. package/dist/esm/hooks/field-mappings/useFieldMappings.mjs +19 -0
  545. package/dist/esm/hooks/flows/useFlow.mjs +35 -0
  546. package/dist/esm/hooks/flows/useFlowInstance.mjs +67 -0
  547. package/dist/esm/hooks/flows/useFlowInstances.mjs +19 -0
  548. package/dist/esm/hooks/flows/useFlowRun.mjs +33 -0
  549. package/dist/esm/hooks/flows/useFlowRuns.mjs +19 -0
  550. package/dist/esm/hooks/flows/useFlows.mjs +19 -0
  551. package/dist/esm/hooks/integrations/useConnection.mjs +20 -0
  552. package/dist/esm/hooks/integrations/useConnections.mjs +19 -0
  553. package/dist/esm/hooks/integrations/useConnectorSpec.mjs +21 -0
  554. package/dist/esm/hooks/integrations/useIntegration.mjs +21 -0
  555. package/dist/esm/hooks/integrations/useIntegrations.mjs +19 -0
  556. package/dist/esm/hooks/scenarios/useScenario.mjs +21 -0
  557. package/dist/esm/hooks/scenarios/useScenarios.mjs +19 -0
  558. package/dist/esm/hooks/screens/useScreen.mjs +21 -0
  559. package/dist/esm/hooks/useElement.mjs +120 -0
  560. package/dist/esm/hooks/useElements.mjs +74 -0
  561. package/dist/esm/hooks/useExportFieldsAsCode.mjs +24 -0
  562. package/dist/esm/hooks/useIntegrationAppSWR.mjs +21 -0
  563. package/dist/esm/hooks/usePromise.mjs +76 -0
  564. package/dist/esm/index.mjs +120 -0
  565. package/dist/esm/recipes/dropdown.mjs +232 -0
  566. package/dist/esm/styled-system/css/conditions.mjs +45 -0
  567. package/dist/esm/styled-system/css/css.mjs +54 -0
  568. package/dist/esm/styled-system/css/cva.mjs +96 -0
  569. package/dist/esm/styled-system/css/cx.mjs +22 -0
  570. package/dist/esm/styled-system/css/sva.mjs +50 -0
  571. package/dist/esm/styled-system/helpers.mjs +315 -0
  572. package/dist/esm/styled-system/jsx/box.mjs +22 -0
  573. package/dist/esm/styled-system/jsx/center.mjs +22 -0
  574. package/dist/esm/styled-system/jsx/circle.mjs +22 -0
  575. package/dist/esm/styled-system/jsx/divider.mjs +22 -0
  576. package/dist/esm/styled-system/jsx/factory-helper.mjs +31 -0
  577. package/dist/esm/styled-system/jsx/factory.mjs +91 -0
  578. package/dist/esm/styled-system/jsx/flex.mjs +22 -0
  579. package/dist/esm/styled-system/jsx/is-valid-prop.mjs +21 -0
  580. package/dist/esm/styled-system/jsx/visually-hidden.mjs +22 -0
  581. package/dist/esm/styled-system/patterns/box.mjs +21 -0
  582. package/dist/esm/styled-system/patterns/center.mjs +27 -0
  583. package/dist/esm/styled-system/patterns/circle.mjs +31 -0
  584. package/dist/esm/styled-system/patterns/divider.mjs +31 -0
  585. package/dist/esm/styled-system/patterns/flex.mjs +32 -0
  586. package/dist/esm/styled-system/patterns/visually-hidden.mjs +27 -0
  587. package/dist/esm/styled-system/recipes/alert.mjs +57 -0
  588. package/dist/esm/styled-system/recipes/avatar.mjs +62 -0
  589. package/dist/esm/styled-system/recipes/badge.mjs +47 -0
  590. package/dist/esm/styled-system/recipes/button.mjs +52 -0
  591. package/dist/esm/styled-system/recipes/create-recipe.mjs +91 -0
  592. package/dist/esm/styled-system/recipes/icon.mjs +44 -0
  593. package/dist/esm/styled-system/recipes/input.mjs +45 -0
  594. package/dist/esm/styled-system/recipes/menu.mjs +104 -0
  595. package/dist/esm/styled-system/recipes/popover.mjs +77 -0
  596. package/dist/esm/styled-system/recipes/skeleton.mjs +33 -0
  597. package/dist/esm/styled-system/recipes/spinner.mjs +43 -0
  598. package/dist/esm/styled-system/recipes/switch-recipe.mjs +63 -0
  599. package/dist/esm/styled-system/recipes/text.mjs +50 -0
  600. package/dist/esm/styled-system/recipes/tooltip.mjs +57 -0
  601. package/dist/esm/styled-system/tokens/index.mjs +4541 -0
  602. package/dist/esm/ui-kit/avatar.mjs +28 -0
  603. package/dist/esm/ui-kit/button.mjs +31 -0
  604. package/dist/esm/ui-kit/spinner.mjs +24 -0
  605. package/dist/esm/ui-kit/styled/alert.mjs +27 -0
  606. package/dist/esm/ui-kit/styled/avatar.mjs +30 -0
  607. package/dist/esm/ui-kit/styled/badge.mjs +21 -0
  608. package/dist/esm/ui-kit/styled/button.mjs +21 -0
  609. package/dist/esm/ui-kit/styled/icon-button.mjs +23 -0
  610. package/dist/esm/ui-kit/styled/icon.mjs +23 -0
  611. package/dist/esm/ui-kit/styled/input.mjs +21 -0
  612. package/dist/esm/ui-kit/styled/menu.mjs +84 -0
  613. package/dist/esm/ui-kit/styled/popover.mjs +61 -0
  614. package/dist/esm/ui-kit/styled/skeleton.mjs +31 -0
  615. package/dist/esm/ui-kit/styled/spinner.mjs +21 -0
  616. package/dist/esm/ui-kit/styled/switch.mjs +34 -0
  617. package/dist/esm/ui-kit/styled/text.mjs +20 -0
  618. package/dist/esm/ui-kit/styled/tooltip.mjs +44 -0
  619. package/dist/esm/ui-kit/styled/utils/create-style-context.mjs +61 -0
  620. package/dist/esm/ui-kit/switch.mjs +40 -0
  621. package/dist/styles.css +4910 -0
  622. package/dist/types/_modules/awesome-debounce-promise.d.ts +2 -0
  623. package/dist/types/components/AdvancedOptions.d.ts +6 -0
  624. package/dist/types/components/Button/Button.d.ts +3 -0
  625. package/dist/types/components/Button/Button.types.d.ts +17 -0
  626. package/dist/types/components/Button/index.d.ts +2 -0
  627. package/dist/types/components/ComboBox/Badges/ComboBoxFormulaBadge.d.ts +6 -0
  628. package/dist/types/components/ComboBox/Badges/ComboBoxSchemaValueBadge.d.ts +11 -0
  629. package/dist/types/components/ComboBox/Badges/ComboBoxValueBadge.d.ts +10 -0
  630. package/dist/types/components/ComboBox/Badges/EditorTagBadge/NestedBadgeValue.d.ts +6 -0
  631. package/dist/types/components/ComboBox/Badges/EditorTagBadge/index.d.ts +66 -0
  632. package/dist/types/components/ComboBox/Badges/index.d.ts +3 -0
  633. package/dist/types/components/ComboBox/Badges/isDefinedValue.d.ts +1 -0
  634. package/dist/types/components/ComboBox/ComboBox.d.ts +4 -0
  635. package/dist/types/components/ComboBox/ComboboxTriggers/ComboboxEditorTrigger.d.ts +2 -0
  636. package/dist/types/components/ComboBox/ComboboxTriggers/ComboboxTagTrigger.d.ts +5 -0
  637. package/dist/types/components/ComboBox/Dropdown/ActiveCategoryContent.d.ts +4 -0
  638. package/dist/types/components/ComboBox/Dropdown/Categories/CustomValue.d.ts +4 -0
  639. package/dist/types/components/ComboBox/Dropdown/Categories/Formulas/DropdownPanelFormulaConfig.d.ts +4 -0
  640. package/dist/types/components/ComboBox/Dropdown/Categories/Formulas/index.d.ts +4 -0
  641. package/dist/types/components/ComboBox/Dropdown/Categories/Lookup.d.ts +4 -0
  642. package/dist/types/components/ComboBox/Dropdown/Categories/LookupOptions/ParametersPanel.d.ts +7 -0
  643. package/dist/types/components/ComboBox/Dropdown/Categories/LookupOptions/UiComponents.d.ts +14 -0
  644. package/dist/types/components/ComboBox/Dropdown/Categories/LookupOptions/index.d.ts +9 -0
  645. package/dist/types/components/ComboBox/Dropdown/Categories/Options.d.ts +4 -0
  646. package/dist/types/components/ComboBox/Dropdown/Categories/Root.d.ts +4 -0
  647. package/dist/types/components/ComboBox/Dropdown/Categories/Variables.d.ts +4 -0
  648. package/dist/types/components/ComboBox/Dropdown/Categories/getLookupCollection.d.ts +7 -0
  649. package/dist/types/components/ComboBox/Dropdown/DrillUpButton.d.ts +2 -0
  650. package/dist/types/components/ComboBox/Dropdown/Dropdown.d.ts +10 -0
  651. package/dist/types/components/ComboBox/Dropdown/KeyboardNavigation/NavigationContext.d.ts +9 -0
  652. package/dist/types/components/ComboBox/Dropdown/KeyboardNavigation/useKeyboardBinding.d.ts +6 -0
  653. package/dist/types/components/ComboBox/Dropdown/Option.d.ts +7 -0
  654. package/dist/types/components/ComboBox/Dropdown/OptionsList.d.ts +4 -0
  655. package/dist/types/components/ComboBox/Dropdown/SearchInput.d.ts +3 -0
  656. package/dist/types/components/ComboBox/Dropdown/categoryContentMapping.d.ts +6 -0
  657. package/dist/types/components/ComboBox/DropdownPopover/DropdownPositioner.d.ts +4 -0
  658. package/dist/types/components/ComboBox/DropdownPopover/index.d.ts +11 -0
  659. package/dist/types/components/ComboBox/FocusTrap/index.d.ts +4 -0
  660. package/dist/types/components/ComboBox/context/combobox-context.d.ts +12 -0
  661. package/dist/types/components/ComboBox/context/combobox-dropdown-context.d.ts +19 -0
  662. package/dist/types/components/ComboBox/context/combobox-dropdown-search.d.ts +14 -0
  663. package/dist/types/components/ComboBox/context/combobox-dropdown-stack.d.ts +7 -0
  664. package/dist/types/components/ComboBox/context/helpers.d.ts +15 -0
  665. package/dist/types/components/ComboBox/context/index.d.ts +5 -0
  666. package/dist/types/components/ComboBox/options-factories/boolean.d.ts +6 -0
  667. package/dist/types/components/ComboBox/options-factories/constant.d.ts +8 -0
  668. package/dist/types/components/ComboBox/options-factories/custom-field/constants.d.ts +6 -0
  669. package/dist/types/components/ComboBox/options-factories/custom-field/index.d.ts +5 -0
  670. package/dist/types/components/ComboBox/options-factories/enum.d.ts +15 -0
  671. package/dist/types/components/ComboBox/options-factories/formula/config-mapping.d.ts +8 -0
  672. package/dist/types/components/ComboBox/options-factories/formula/index.d.ts +7 -0
  673. package/dist/types/components/ComboBox/options-factories/generate-schema-options.d.ts +16 -0
  674. package/dist/types/components/ComboBox/options-factories/index.d.ts +9 -0
  675. package/dist/types/components/ComboBox/options-factories/object-fields.d.ts +18 -0
  676. package/dist/types/components/ComboBox/options-factories/reference-records.d.ts +13 -0
  677. package/dist/types/components/ComboBox/options-factories/root.d.ts +9 -0
  678. package/dist/types/components/ComboBox/options-factories/types.d.ts +9 -0
  679. package/dist/types/components/ComboBox/options-factories/utils.d.ts +2 -0
  680. package/dist/types/components/ComboBox/options-factories/variable.d.ts +17 -0
  681. package/dist/types/components/ComboBox/shared.d.ts +46 -0
  682. package/dist/types/components/ComboBox/tests/Combobox.stories.helpers.d.ts +38 -0
  683. package/dist/types/components/ComboBox/tests/presets.d.ts +4 -0
  684. package/dist/types/components/ComboBox/types.d.ts +79 -0
  685. package/dist/types/components/ComboBox/value-spec.d.ts +18 -0
  686. package/dist/types/components/ComboBoxElements/ComboBoxTag.d.ts +2 -0
  687. package/dist/types/components/ComboBoxElements/ComboboxContainer/index.d.ts +30 -0
  688. package/dist/types/components/ComboBoxElements/Editor/LexicalEditor.d.ts +16 -0
  689. package/dist/types/components/ComboBoxElements/Editor/helpers/clicks.d.ts +2 -0
  690. package/dist/types/components/ComboBoxElements/Editor/helpers/common.d.ts +17 -0
  691. package/dist/types/components/ComboBoxElements/Editor/helpers/tag-template-composition.d.ts +4 -0
  692. package/dist/types/components/ComboBoxElements/Editor/helpers/transformEditorSchemaToValue.d.ts +2 -0
  693. package/dist/types/components/ComboBoxElements/Editor/helpers/transformValueToEditorSchema.d.ts +4 -0
  694. package/dist/types/components/ComboBoxElements/Editor/nodes/EditorTagBinding.d.ts +5 -0
  695. package/dist/types/components/ComboBoxElements/Editor/nodes/EditorTagNode.d.ts +32 -0
  696. package/dist/types/components/ComboBoxElements/Editor/plugins/ConfigPlugin.d.ts +3 -0
  697. package/dist/types/components/ComboBoxElements/Editor/plugins/EditorTagPlugin.d.ts +1 -0
  698. package/dist/types/components/ComboBoxElements/Editor/plugins/KeyboardPlugin.d.ts +1 -0
  699. package/dist/types/components/ComboBoxElements/Editor/plugins/StateSyncPlugin.d.ts +6 -0
  700. package/dist/types/components/ComboBoxElements/Editor/plugins/commands.d.ts +2 -0
  701. package/dist/types/components/ComboBoxElements/Editor/useEditor.d.ts +8 -0
  702. package/dist/types/components/DataBuilder/Condition/index.d.ts +7 -0
  703. package/dist/types/components/DataBuilder/DataBuilderFormField.d.ts +2 -0
  704. package/dist/types/components/DataBuilder/FieldDelete.d.ts +3 -0
  705. package/dist/types/components/DataBuilder/FieldDescription.d.ts +3 -0
  706. package/dist/types/components/DataBuilder/FieldList.d.ts +11 -0
  707. package/dist/types/components/DataBuilder/FieldName/FieldNameInput.d.ts +14 -0
  708. package/dist/types/components/DataBuilder/FieldName/index.d.ts +9 -0
  709. package/dist/types/components/DataBuilder/FieldTypeSelector/convertableSchemaToSchema.d.ts +2 -0
  710. package/dist/types/components/DataBuilder/FieldTypeSelector/index.d.ts +7 -0
  711. package/dist/types/components/DataBuilder/FieldValue/Array.d.ts +2 -0
  712. package/dist/types/components/DataBuilder/FieldValue/Default.d.ts +2 -0
  713. package/dist/types/components/DataBuilder/FieldValue/ScalarArray.d.ts +2 -0
  714. package/dist/types/components/DataBuilder/FieldValue/index.d.ts +2 -0
  715. package/dist/types/components/DataBuilder/FieldValue/types.d.ts +9 -0
  716. package/dist/types/components/DataBuilder/FilterInput.d.ts +6 -0
  717. package/dist/types/components/DataBuilder/Form.d.ts +24 -0
  718. package/dist/types/components/DataBuilder/Formula/case-formula.d.ts +5 -0
  719. package/dist/types/components/DataBuilder/Formula/concat.d.ts +5 -0
  720. package/dist/types/components/DataBuilder/Formula/deprecatedFormula.d.ts +3 -0
  721. package/dist/types/components/DataBuilder/Formula/domainFromEmail.d.ts +5 -0
  722. package/dist/types/components/DataBuilder/Formula/extractDate.d.ts +5 -0
  723. package/dist/types/components/DataBuilder/Formula/extractTime.d.ts +5 -0
  724. package/dist/types/components/DataBuilder/Formula/findAppRecordId.d.ts +5 -0
  725. package/dist/types/components/DataBuilder/Formula/findExternalRecordId.d.ts +5 -0
  726. package/dist/types/components/DataBuilder/Formula/firstName.d.ts +5 -0
  727. package/dist/types/components/DataBuilder/Formula/firstNotEmpty.d.ts +5 -0
  728. package/dist/types/components/DataBuilder/Formula/index.d.ts +9 -0
  729. package/dist/types/components/DataBuilder/Formula/iterate.d.ts +5 -0
  730. package/dist/types/components/DataBuilder/Formula/jsonata.d.ts +5 -0
  731. package/dist/types/components/DataBuilder/Formula/lastName.d.ts +5 -0
  732. package/dist/types/components/DataBuilder/Formula/lookup.d.ts +4 -0
  733. package/dist/types/components/DataBuilder/Formula/map.d.ts +5 -0
  734. package/dist/types/components/DataBuilder/Formula/mergeObjects.d.ts +5 -0
  735. package/dist/types/components/DataBuilder/Formula/noUi.d.ts +1 -0
  736. package/dist/types/components/DataBuilder/Formula/tpl.d.ts +4 -0
  737. package/dist/types/components/DataBuilder/Formula/types.d.ts +15 -0
  738. package/dist/types/components/DataBuilder/Formula/var.d.ts +4 -0
  739. package/dist/types/components/DataBuilder/Nested/ArrayItems.d.ts +5 -0
  740. package/dist/types/components/DataBuilder/Nested/FieldControlPanel/AddingFieldSelector.d.ts +7 -0
  741. package/dist/types/components/DataBuilder/Nested/FieldControlPanel/ControlPanel.d.ts +7 -0
  742. package/dist/types/components/DataBuilder/Nested/FieldControlPanel/ControlPanelForNonObjectRootField.d.ts +4 -0
  743. package/dist/types/components/DataBuilder/Nested/FieldControlPanel/index.d.ts +10 -0
  744. package/dist/types/components/DataBuilder/Nested/FieldListWrapper/index.d.ts +6 -0
  745. package/dist/types/components/DataBuilder/Nested/LevelKeysConflictProvider.d.ts +3 -0
  746. package/dist/types/components/DataBuilder/Nested/NoSchema.d.ts +5 -0
  747. package/dist/types/components/DataBuilder/Nested/ObjectFields.d.ts +5 -0
  748. package/dist/types/components/DataBuilder/Nested/ValueMapping.d.ts +2 -0
  749. package/dist/types/components/DataBuilder/Nested.d.ts +5 -0
  750. package/dist/types/components/DataBuilder/data-builder-context.d.ts +18 -0
  751. package/dist/types/components/DataBuilder/data-field.d.ts +46 -0
  752. package/dist/types/components/DataBuilder/field-context.d.ts +18 -0
  753. package/dist/types/components/DataBuilder/hooks.d.ts +2 -0
  754. package/dist/types/components/DataBuilder/index.d.ts +17 -0
  755. package/dist/types/components/DataBuilder/stories/DataBuilder.test-formulas.helpers.d.ts +12 -0
  756. package/dist/types/components/DataBuilder/types.d.ts +25 -0
  757. package/dist/types/components/DataBuilderUI/ActionBar.d.ts +5 -0
  758. package/dist/types/components/DataBuilderUI/Cell.d.ts +94 -0
  759. package/dist/types/components/DataBuilderUI/FieldControlPanel/index.d.ts +24 -0
  760. package/dist/types/components/DataBuilderUI/NestedLevel.d.ts +4 -0
  761. package/dist/types/components/DataBuilderUI/Row.d.ts +15 -0
  762. package/dist/types/components/DataBuilderUI/Title.d.ts +18 -0
  763. package/dist/types/components/DataBuilderUI/index.d.ts +6 -0
  764. package/dist/types/components/DataInput/index.d.ts +15 -0
  765. package/dist/types/components/DataInput/useResolvedDataSchema.d.ts +5 -0
  766. package/dist/types/components/DataLinks/data-link-tables-option-factory.d.ts +16 -0
  767. package/dist/types/components/DataLinks/index.d.ts +1 -0
  768. package/dist/types/components/DropdownUI/BackButton.d.ts +4 -0
  769. package/dist/types/components/DropdownUI/ClearSearchButton.d.ts +2 -0
  770. package/dist/types/components/DropdownUI/Content.d.ts +2 -0
  771. package/dist/types/components/DropdownUI/ErrorHeading.d.ts +4 -0
  772. package/dist/types/components/DropdownUI/InfoHeading.d.ts +4 -0
  773. package/dist/types/components/DropdownUI/Item.d.ts +7 -0
  774. package/dist/types/components/DropdownUI/ItemHint.d.ts +4 -0
  775. package/dist/types/components/DropdownUI/ItemIcon.d.ts +10 -0
  776. package/dist/types/components/DropdownUI/ItemNestingIndicator.d.ts +4 -0
  777. package/dist/types/components/DropdownUI/ItemTitle.d.ts +2 -0
  778. package/dist/types/components/DropdownUI/List.d.ts +2 -0
  779. package/dist/types/components/DropdownUI/ListHeader.d.ts +2 -0
  780. package/dist/types/components/DropdownUI/LoadingItem.d.ts +4 -0
  781. package/dist/types/components/DropdownUI/NoOptionsHeading.d.ts +4 -0
  782. package/dist/types/components/DropdownUI/Panel.d.ts +2 -0
  783. package/dist/types/components/DropdownUI/PopoverContainer.d.ts +2 -0
  784. package/dist/types/components/DropdownUI/Search.d.ts +8 -0
  785. package/dist/types/components/DropdownUI/constants.d.ts +2 -0
  786. package/dist/types/components/DropdownUI/index.d.ts +43 -0
  787. package/dist/types/components/DropdownUI/item-aria-context.d.ts +6 -0
  788. package/dist/types/components/DropdownUI/sva-recipe.d.ts +1 -0
  789. package/dist/types/components/DropdownUI/utils.d.ts +2 -0
  790. package/dist/types/components/FloatingPortalBoundary/index.d.ts +9 -0
  791. package/dist/types/components/IntegrationElements/DataSource/DataCollectionSelect.d.ts +6 -0
  792. package/dist/types/components/IntegrationElements/DataSource/UdmSelect.d.ts +2 -0
  793. package/dist/types/components/IntegrationElements/DataSource/index.d.ts +7 -0
  794. package/dist/types/components/IntegrationElements/DataSource/types.d.ts +7 -0
  795. package/dist/types/components/IntegrationElements/index.d.ts +4 -0
  796. package/dist/types/components/IntegrationElements/integration-element-context.d.ts +11 -0
  797. package/dist/types/components/Integrations/IntegrationAvatar/index.d.ts +6 -0
  798. package/dist/types/components/Integrations/IntegrationItem/index.d.ts +8 -0
  799. package/dist/types/components/Integrations/IntegrationItemSkeleton.d.ts +4 -0
  800. package/dist/types/components/Integrations/index.d.ts +3 -0
  801. package/dist/types/components/Notification/index.d.ts +16 -0
  802. package/dist/types/components/Popover/index.d.ts +25 -0
  803. package/dist/types/components/Portal/index.d.ts +7 -0
  804. package/dist/types/components/Radio/Radio.stories.d.ts +9 -0
  805. package/dist/types/components/Radio/index.d.ts +6 -0
  806. package/dist/types/components/SimpleInput/SimpleInput.d.ts +9 -0
  807. package/dist/types/components/SimpleInput/SimpleTextarea.d.ts +12 -0
  808. package/dist/types/components/SimpleInput/index.d.ts +2 -0
  809. package/dist/types/components/SimpleInput/recipe.d.ts +11 -0
  810. package/dist/types/components/SvgIcon/BasicEntities.d.ts +35 -0
  811. package/dist/types/components/SvgIcon/index.d.ts +8 -0
  812. package/dist/types/components/SvgIcon/svg-icon-type.d.ts +85 -0
  813. package/dist/types/components/Tag/Components.d.ts +12 -0
  814. package/dist/types/components/Tag/Tag.d.ts +23 -0
  815. package/dist/types/components/Tag/TagPlaceholder.d.ts +5 -0
  816. package/dist/types/components/Tag/index.d.ts +4 -0
  817. package/dist/types/components/Textarea/index.d.ts +19 -0
  818. package/dist/types/components/Textarea/recipe.d.ts +2 -0
  819. package/dist/types/components/Toggle/index.d.ts +5 -0
  820. package/dist/types/components/Tooltip/index.d.ts +50 -0
  821. package/dist/types/components/Truncate/index.d.ts +11 -0
  822. package/dist/types/contexts/index.d.ts +2 -0
  823. package/dist/types/contexts/integration-app-client-context.d.ts +10 -0
  824. package/dist/types/contexts/integration-app-connection-context.d.ts +9 -0
  825. package/dist/types/contexts/integration-app-context.d.ts +14 -0
  826. package/dist/types/contexts/integration-app-integration-context.d.ts +9 -0
  827. package/dist/types/helpers/Debounce.d.ts +1 -0
  828. package/dist/types/helpers/getRefElement.d.ts +3 -0
  829. package/dist/types/helpers/hooks/keyboard-events.d.ts +18 -0
  830. package/dist/types/helpers/hooks/subscriptionStack.d.ts +4 -0
  831. package/dist/types/helpers/hooks/useAutofocus.d.ts +2 -0
  832. package/dist/types/helpers/hooks/useDeepEffect.d.ts +3 -0
  833. package/dist/types/helpers/hooks/useEventStopPropagation.d.ts +5 -0
  834. package/dist/types/helpers/hooks/useForwardedRef.d.ts +1 -0
  835. package/dist/types/helpers/hooks/useIsTextTruncated.d.ts +2 -0
  836. package/dist/types/helpers/hooks/useResizeObserver.d.ts +13 -0
  837. package/dist/types/helpers/hooks/useThrottle.d.ts +1 -0
  838. package/dist/types/helpers/hooks/useWindowEvent.d.ts +4 -0
  839. package/dist/types/helpers/intersperse.d.ts +1 -0
  840. package/dist/types/helpers/simple-unique-id.d.ts +1 -0
  841. package/dist/types/helpers/types.d.ts +8 -0
  842. package/dist/types/hooks/actions/useAction.d.ts +16 -0
  843. package/dist/types/hooks/actions/useActionInstance.d.ts +18 -0
  844. package/dist/types/hooks/actions/useActionInstances.d.ts +11 -0
  845. package/dist/types/hooks/actions/useActions.d.ts +11 -0
  846. package/dist/types/hooks/app-data-schemas/useAppDataSchema.d.ts +14 -0
  847. package/dist/types/hooks/app-data-schemas/useAppDataSchemaInstance.d.ts +15 -0
  848. package/dist/types/hooks/app-data-schemas/useAppDataSchemaInstances.d.ts +11 -0
  849. package/dist/types/hooks/app-data-schemas/useAppDataSchemas.d.ts +11 -0
  850. package/dist/types/hooks/app-events/useAppEventSubscription.d.ts +14 -0
  851. package/dist/types/hooks/app-events/useAppEventSubscriptions.d.ts +11 -0
  852. package/dist/types/hooks/app-events/useAppEventType.d.ts +14 -0
  853. package/dist/types/hooks/app-events/useAppEventTypes.d.ts +11 -0
  854. package/dist/types/hooks/app-events/useAppEvents.d.ts +11 -0
  855. package/dist/types/hooks/customers/useCustomer.d.ts +14 -0
  856. package/dist/types/hooks/customers/useCustomers.d.ts +11 -0
  857. package/dist/types/hooks/data-collections/useDataCollectionSpec.d.ts +11 -0
  858. package/dist/types/hooks/data-links/useDataLinkTable.d.ts +14 -0
  859. package/dist/types/hooks/data-links/useDataLinkTableInstance.d.ts +17 -0
  860. package/dist/types/hooks/data-links/useDataLinkTableInstances.d.ts +11 -0
  861. package/dist/types/hooks/data-links/useDataLinkTables.d.ts +11 -0
  862. package/dist/types/hooks/data-sources/useDataSource.d.ts +17 -0
  863. package/dist/types/hooks/data-sources/useDataSourceInstance.d.ts +25 -0
  864. package/dist/types/hooks/data-sources/useDataSourceInstanceCollection.d.ts +7 -0
  865. package/dist/types/hooks/data-sources/useDataSourceInstances.d.ts +11 -0
  866. package/dist/types/hooks/data-sources/useDataSources.d.ts +11 -0
  867. package/dist/types/hooks/external-events/useExternalEventSubscription.d.ts +19 -0
  868. package/dist/types/hooks/external-events/useExternalEventSubscriptions.d.ts +11 -0
  869. package/dist/types/hooks/field-mappings/useFieldMapping.d.ts +17 -0
  870. package/dist/types/hooks/field-mappings/useFieldMappingInstance.d.ts +17 -0
  871. package/dist/types/hooks/field-mappings/useFieldMappingInstances.d.ts +11 -0
  872. package/dist/types/hooks/field-mappings/useFieldMappings.d.ts +11 -0
  873. package/dist/types/hooks/flows/useFlow.d.ts +16 -0
  874. package/dist/types/hooks/flows/useFlowInstance.d.ts +96 -0
  875. package/dist/types/hooks/flows/useFlowInstances.d.ts +11 -0
  876. package/dist/types/hooks/flows/useFlowRun.d.ts +8 -0
  877. package/dist/types/hooks/flows/useFlowRuns.d.ts +11 -0
  878. package/dist/types/hooks/flows/useFlows.d.ts +11 -0
  879. package/dist/types/hooks/integrations/useConnection.d.ts +14 -0
  880. package/dist/types/hooks/integrations/useConnections.d.ts +11 -0
  881. package/dist/types/hooks/integrations/useConnectorSpec.d.ts +6 -0
  882. package/dist/types/hooks/integrations/useIntegration.d.ts +14 -0
  883. package/dist/types/hooks/integrations/useIntegrations.d.ts +11 -0
  884. package/dist/types/hooks/scenarios/useScenario.d.ts +14 -0
  885. package/dist/types/hooks/scenarios/useScenarios.d.ts +11 -0
  886. package/dist/types/hooks/screens/useScreen.d.ts +14 -0
  887. package/dist/types/hooks/useElement.d.ts +22 -0
  888. package/dist/types/hooks/useElements.d.ts +9 -0
  889. package/dist/types/hooks/useExportFieldsAsCode.d.ts +5 -0
  890. package/dist/types/hooks/useIntegrationAppSWR.d.ts +1 -0
  891. package/dist/types/hooks/usePromise.d.ts +8 -0
  892. package/dist/types/index.d.ts +89 -0
  893. package/dist/types/recipes/common.d.ts +10 -0
  894. package/dist/types/recipes/dropdown.d.ts +4 -0
  895. package/dist/types/recipes/index.d.ts +1 -0
  896. package/dist/types/styled-system/css/css.d.ts +22 -0
  897. package/dist/types/styled-system/css/cva.d.ts +6 -0
  898. package/dist/types/styled-system/css/cx.d.ts +5 -0
  899. package/dist/types/styled-system/css/index.d.ts +5 -0
  900. package/dist/types/styled-system/css/sva.d.ts +4 -0
  901. package/dist/types/styled-system/jsx/aspect-ratio.d.ts +10 -0
  902. package/dist/types/styled-system/jsx/bleed.d.ts +10 -0
  903. package/dist/types/styled-system/jsx/box.d.ts +10 -0
  904. package/dist/types/styled-system/jsx/center.d.ts +10 -0
  905. package/dist/types/styled-system/jsx/circle.d.ts +10 -0
  906. package/dist/types/styled-system/jsx/container.d.ts +10 -0
  907. package/dist/types/styled-system/jsx/cq.d.ts +10 -0
  908. package/dist/types/styled-system/jsx/divider.d.ts +10 -0
  909. package/dist/types/styled-system/jsx/factory.d.ts +3 -0
  910. package/dist/types/styled-system/jsx/flex.d.ts +10 -0
  911. package/dist/types/styled-system/jsx/float.d.ts +10 -0
  912. package/dist/types/styled-system/jsx/grid-item.d.ts +10 -0
  913. package/dist/types/styled-system/jsx/grid.d.ts +10 -0
  914. package/dist/types/styled-system/jsx/hstack.d.ts +10 -0
  915. package/dist/types/styled-system/jsx/index.d.ts +24 -0
  916. package/dist/types/styled-system/jsx/is-valid-prop.d.ts +11 -0
  917. package/dist/types/styled-system/jsx/link-overlay.d.ts +10 -0
  918. package/dist/types/styled-system/jsx/spacer.d.ts +10 -0
  919. package/dist/types/styled-system/jsx/square.d.ts +10 -0
  920. package/dist/types/styled-system/jsx/stack.d.ts +10 -0
  921. package/dist/types/styled-system/jsx/visually-hidden.d.ts +10 -0
  922. package/dist/types/styled-system/jsx/vstack.d.ts +10 -0
  923. package/dist/types/styled-system/jsx/wrap.d.ts +10 -0
  924. package/dist/types/styled-system/patterns/aspect-ratio.d.ts +20 -0
  925. package/dist/types/styled-system/patterns/bleed.d.ts +21 -0
  926. package/dist/types/styled-system/patterns/box.d.ts +20 -0
  927. package/dist/types/styled-system/patterns/center.d.ts +20 -0
  928. package/dist/types/styled-system/patterns/circle.d.ts +20 -0
  929. package/dist/types/styled-system/patterns/container.d.ts +20 -0
  930. package/dist/types/styled-system/patterns/cq.d.ts +21 -0
  931. package/dist/types/styled-system/patterns/divider.d.ts +22 -0
  932. package/dist/types/styled-system/patterns/flex.d.ts +26 -0
  933. package/dist/types/styled-system/patterns/float.d.ts +23 -0
  934. package/dist/types/styled-system/patterns/grid-item.d.ts +25 -0
  935. package/dist/types/styled-system/patterns/grid.d.ts +24 -0
  936. package/dist/types/styled-system/patterns/hstack.d.ts +21 -0
  937. package/dist/types/styled-system/patterns/index.d.ts +21 -0
  938. package/dist/types/styled-system/patterns/link-overlay.d.ts +20 -0
  939. package/dist/types/styled-system/patterns/spacer.d.ts +20 -0
  940. package/dist/types/styled-system/patterns/square.d.ts +20 -0
  941. package/dist/types/styled-system/patterns/stack.d.ts +23 -0
  942. package/dist/types/styled-system/patterns/visually-hidden.d.ts +20 -0
  943. package/dist/types/styled-system/patterns/vstack.d.ts +21 -0
  944. package/dist/types/styled-system/patterns/wrap.d.ts +24 -0
  945. package/dist/types/styled-system/recipes/accordion.d.ts +31 -0
  946. package/dist/types/styled-system/recipes/alert.d.ts +28 -0
  947. package/dist/types/styled-system/recipes/avatar.d.ts +31 -0
  948. package/dist/types/styled-system/recipes/badge.d.ts +35 -0
  949. package/dist/types/styled-system/recipes/button.d.ts +35 -0
  950. package/dist/types/styled-system/recipes/card.d.ts +28 -0
  951. package/dist/types/styled-system/recipes/carousel.d.ts +31 -0
  952. package/dist/types/styled-system/recipes/checkbox.d.ts +31 -0
  953. package/dist/types/styled-system/recipes/clipboard.d.ts +28 -0
  954. package/dist/types/styled-system/recipes/code.d.ts +35 -0
  955. package/dist/types/styled-system/recipes/collapsible.d.ts +28 -0
  956. package/dist/types/styled-system/recipes/color-picker.d.ts +28 -0
  957. package/dist/types/styled-system/recipes/combobox.d.ts +31 -0
  958. package/dist/types/styled-system/recipes/date-picker.d.ts +28 -0
  959. package/dist/types/styled-system/recipes/dialog.d.ts +28 -0
  960. package/dist/types/styled-system/recipes/drawer.d.ts +31 -0
  961. package/dist/types/styled-system/recipes/editable.d.ts +28 -0
  962. package/dist/types/styled-system/recipes/field.d.ts +28 -0
  963. package/dist/types/styled-system/recipes/fieldset.d.ts +28 -0
  964. package/dist/types/styled-system/recipes/file-upload.d.ts +28 -0
  965. package/dist/types/styled-system/recipes/form-label.d.ts +31 -0
  966. package/dist/types/styled-system/recipes/hover-card.d.ts +28 -0
  967. package/dist/types/styled-system/recipes/icon.d.ts +31 -0
  968. package/dist/types/styled-system/recipes/index.d.ts +54 -0
  969. package/dist/types/styled-system/recipes/input.d.ts +31 -0
  970. package/dist/types/styled-system/recipes/kbd.d.ts +31 -0
  971. package/dist/types/styled-system/recipes/link.d.ts +28 -0
  972. package/dist/types/styled-system/recipes/menu.d.ts +31 -0
  973. package/dist/types/styled-system/recipes/number-input.d.ts +31 -0
  974. package/dist/types/styled-system/recipes/pagination.d.ts +28 -0
  975. package/dist/types/styled-system/recipes/pin-input.d.ts +31 -0
  976. package/dist/types/styled-system/recipes/popover.d.ts +28 -0
  977. package/dist/types/styled-system/recipes/progress.d.ts +31 -0
  978. package/dist/types/styled-system/recipes/qr-code.d.ts +28 -0
  979. package/dist/types/styled-system/recipes/radio-button-group.d.ts +35 -0
  980. package/dist/types/styled-system/recipes/radio-group.d.ts +31 -0
  981. package/dist/types/styled-system/recipes/rating-group.d.ts +31 -0
  982. package/dist/types/styled-system/recipes/segment-group.d.ts +31 -0
  983. package/dist/types/styled-system/recipes/select.d.ts +35 -0
  984. package/dist/types/styled-system/recipes/signature-pad.d.ts +28 -0
  985. package/dist/types/styled-system/recipes/skeleton.d.ts +28 -0
  986. package/dist/types/styled-system/recipes/slider.d.ts +31 -0
  987. package/dist/types/styled-system/recipes/spinner.d.ts +31 -0
  988. package/dist/types/styled-system/recipes/splitter.d.ts +28 -0
  989. package/dist/types/styled-system/recipes/switch-recipe.d.ts +31 -0
  990. package/dist/types/styled-system/recipes/table.d.ts +35 -0
  991. package/dist/types/styled-system/recipes/tabs.d.ts +35 -0
  992. package/dist/types/styled-system/recipes/tags-input.d.ts +31 -0
  993. package/dist/types/styled-system/recipes/text.d.ts +29 -0
  994. package/dist/types/styled-system/recipes/textarea.d.ts +31 -0
  995. package/dist/types/styled-system/recipes/toast.d.ts +28 -0
  996. package/dist/types/styled-system/recipes/toggle-group.d.ts +35 -0
  997. package/dist/types/styled-system/recipes/tooltip.d.ts +28 -0
  998. package/dist/types/styled-system/recipes/tree-view.d.ts +28 -0
  999. package/dist/types/styled-system/tokens/index.d.ts +9 -0
  1000. package/dist/types/styled-system/tokens/tokens.d.ts +60 -0
  1001. package/dist/types/styled-system/types/composition.d.ts +164 -0
  1002. package/dist/types/styled-system/types/conditions.d.ts +288 -0
  1003. package/dist/types/styled-system/types/csstype.d.ts +21298 -0
  1004. package/dist/types/styled-system/types/global.d.ts +20 -0
  1005. package/dist/types/styled-system/types/index.d.ts +8 -0
  1006. package/dist/types/styled-system/types/jsx.d.ts +52 -0
  1007. package/dist/types/styled-system/types/parts.d.ts +8 -0
  1008. package/dist/types/styled-system/types/pattern.d.ts +78 -0
  1009. package/dist/types/styled-system/types/prop-type.d.ts +240 -0
  1010. package/dist/types/styled-system/types/recipe.d.ts +181 -0
  1011. package/dist/types/styled-system/types/selectors.d.ts +59 -0
  1012. package/dist/types/styled-system/types/static-css.d.ts +56 -0
  1013. package/dist/types/styled-system/types/style-props.d.ts +7491 -0
  1014. package/dist/types/styled-system/types/system-types.d.ts +193 -0
  1015. package/dist/types/typed.d.ts +7 -0
  1016. package/dist/types/ui-kit/alert.d.ts +1 -0
  1017. package/dist/types/ui-kit/avatar.d.ts +6 -0
  1018. package/dist/types/ui-kit/badge.d.ts +1 -0
  1019. package/dist/types/ui-kit/button.d.ts +9 -0
  1020. package/dist/types/ui-kit/icon-button.d.ts +1 -0
  1021. package/dist/types/ui-kit/icon.d.ts +1 -0
  1022. package/dist/types/ui-kit/input.d.ts +1 -0
  1023. package/dist/types/ui-kit/menu.d.ts +1 -0
  1024. package/dist/types/ui-kit/panda/color-palette-tokens.d.ts +2768 -0
  1025. package/dist/types/ui-kit/panda/preset.d.ts +2 -0
  1026. package/dist/types/ui-kit/popover.d.ts +1 -0
  1027. package/dist/types/ui-kit/skeleton.d.ts +1 -0
  1028. package/dist/types/ui-kit/spinner.d.ts +5 -0
  1029. package/dist/types/ui-kit/styled/alert.d.ts +8 -0
  1030. package/dist/types/ui-kit/styled/avatar.d.ts +12 -0
  1031. package/dist/types/ui-kit/styled/badge.d.ts +5 -0
  1032. package/dist/types/ui-kit/styled/button.d.ts +5 -0
  1033. package/dist/types/ui-kit/styled/icon-button.d.ts +6 -0
  1034. package/dist/types/ui-kit/styled/icon.d.ts +5 -0
  1035. package/dist/types/ui-kit/styled/input.d.ts +5 -0
  1036. package/dist/types/ui-kit/styled/menu.d.ts +26 -0
  1037. package/dist/types/ui-kit/styled/popover.d.ts +19 -0
  1038. package/dist/types/ui-kit/styled/skeleton.d.ts +7 -0
  1039. package/dist/types/ui-kit/styled/spinner.d.ts +5 -0
  1040. package/dist/types/ui-kit/styled/switch.d.ts +12 -0
  1041. package/dist/types/ui-kit/styled/text.d.ts +8 -0
  1042. package/dist/types/ui-kit/styled/tooltip.d.ts +14 -0
  1043. package/dist/types/ui-kit/styled/utils/create-style-context.d.ts +20 -0
  1044. package/dist/types/ui-kit/switch.d.ts +5 -0
  1045. package/dist/types/ui-kit/text.d.ts +1 -0
  1046. package/dist/types/ui-kit/tooltip.d.ts +1 -0
  1047. package/package.json +57 -0
@@ -0,0 +1,2768 @@
1
+ export declare const colorPaletteTokens: {
2
+ colors: {
3
+ neutral: {
4
+ light: {
5
+ '1': {
6
+ value: string;
7
+ };
8
+ '2': {
9
+ value: string;
10
+ };
11
+ '3': {
12
+ value: string;
13
+ };
14
+ '4': {
15
+ value: string;
16
+ };
17
+ '5': {
18
+ value: string;
19
+ };
20
+ '6': {
21
+ value: string;
22
+ };
23
+ '7': {
24
+ value: string;
25
+ };
26
+ '8': {
27
+ value: string;
28
+ };
29
+ '9': {
30
+ value: string;
31
+ };
32
+ '10': {
33
+ value: string;
34
+ };
35
+ '11': {
36
+ value: string;
37
+ };
38
+ '12': {
39
+ value: string;
40
+ };
41
+ a1: {
42
+ value: string;
43
+ };
44
+ a2: {
45
+ value: string;
46
+ };
47
+ a3: {
48
+ value: string;
49
+ };
50
+ a4: {
51
+ value: string;
52
+ };
53
+ a5: {
54
+ value: string;
55
+ };
56
+ a6: {
57
+ value: string;
58
+ };
59
+ a7: {
60
+ value: string;
61
+ };
62
+ a8: {
63
+ value: string;
64
+ };
65
+ a9: {
66
+ value: string;
67
+ };
68
+ a10: {
69
+ value: string;
70
+ };
71
+ a11: {
72
+ value: string;
73
+ };
74
+ a12: {
75
+ value: string;
76
+ };
77
+ };
78
+ dark: {
79
+ '1': {
80
+ value: string;
81
+ };
82
+ '2': {
83
+ value: string;
84
+ };
85
+ '3': {
86
+ value: string;
87
+ };
88
+ '4': {
89
+ value: string;
90
+ };
91
+ '5': {
92
+ value: string;
93
+ };
94
+ '6': {
95
+ value: string;
96
+ };
97
+ '7': {
98
+ value: string;
99
+ };
100
+ '8': {
101
+ value: string;
102
+ };
103
+ '9': {
104
+ value: string;
105
+ };
106
+ '10': {
107
+ value: string;
108
+ };
109
+ '11': {
110
+ value: string;
111
+ };
112
+ '12': {
113
+ value: string;
114
+ };
115
+ a1: {
116
+ value: string;
117
+ };
118
+ a2: {
119
+ value: string;
120
+ };
121
+ a3: {
122
+ value: string;
123
+ };
124
+ a4: {
125
+ value: string;
126
+ };
127
+ a5: {
128
+ value: string;
129
+ };
130
+ a6: {
131
+ value: string;
132
+ };
133
+ a7: {
134
+ value: string;
135
+ };
136
+ a8: {
137
+ value: string;
138
+ };
139
+ a9: {
140
+ value: string;
141
+ };
142
+ a10: {
143
+ value: string;
144
+ };
145
+ a11: {
146
+ value: string;
147
+ };
148
+ a12: {
149
+ value: string;
150
+ };
151
+ };
152
+ };
153
+ slate: {
154
+ light: {
155
+ '1': {
156
+ value: string;
157
+ };
158
+ '2': {
159
+ value: string;
160
+ };
161
+ '3': {
162
+ value: string;
163
+ };
164
+ '4': {
165
+ value: string;
166
+ };
167
+ '5': {
168
+ value: string;
169
+ };
170
+ '6': {
171
+ value: string;
172
+ };
173
+ '7': {
174
+ value: string;
175
+ };
176
+ '8': {
177
+ value: string;
178
+ };
179
+ '9': {
180
+ value: string;
181
+ };
182
+ '10': {
183
+ value: string;
184
+ };
185
+ '11': {
186
+ value: string;
187
+ };
188
+ '12': {
189
+ value: string;
190
+ };
191
+ a1: {
192
+ value: string;
193
+ };
194
+ a2: {
195
+ value: string;
196
+ };
197
+ a3: {
198
+ value: string;
199
+ };
200
+ a4: {
201
+ value: string;
202
+ };
203
+ a5: {
204
+ value: string;
205
+ };
206
+ a6: {
207
+ value: string;
208
+ };
209
+ a7: {
210
+ value: string;
211
+ };
212
+ a8: {
213
+ value: string;
214
+ };
215
+ a9: {
216
+ value: string;
217
+ };
218
+ a10: {
219
+ value: string;
220
+ };
221
+ a11: {
222
+ value: string;
223
+ };
224
+ a12: {
225
+ value: string;
226
+ };
227
+ };
228
+ dark: {
229
+ '1': {
230
+ value: string;
231
+ };
232
+ '2': {
233
+ value: string;
234
+ };
235
+ '3': {
236
+ value: string;
237
+ };
238
+ '4': {
239
+ value: string;
240
+ };
241
+ '5': {
242
+ value: string;
243
+ };
244
+ '6': {
245
+ value: string;
246
+ };
247
+ '7': {
248
+ value: string;
249
+ };
250
+ '8': {
251
+ value: string;
252
+ };
253
+ '9': {
254
+ value: string;
255
+ };
256
+ '10': {
257
+ value: string;
258
+ };
259
+ '11': {
260
+ value: string;
261
+ };
262
+ '12': {
263
+ value: string;
264
+ };
265
+ a1: {
266
+ value: string;
267
+ };
268
+ a2: {
269
+ value: string;
270
+ };
271
+ a3: {
272
+ value: string;
273
+ };
274
+ a4: {
275
+ value: string;
276
+ };
277
+ a5: {
278
+ value: string;
279
+ };
280
+ a6: {
281
+ value: string;
282
+ };
283
+ a7: {
284
+ value: string;
285
+ };
286
+ a8: {
287
+ value: string;
288
+ };
289
+ a9: {
290
+ value: string;
291
+ };
292
+ a10: {
293
+ value: string;
294
+ };
295
+ a11: {
296
+ value: string;
297
+ };
298
+ a12: {
299
+ value: string;
300
+ };
301
+ };
302
+ };
303
+ blue: {
304
+ light: {
305
+ '1': {
306
+ value: string;
307
+ };
308
+ '2': {
309
+ value: string;
310
+ };
311
+ '3': {
312
+ value: string;
313
+ };
314
+ '4': {
315
+ value: string;
316
+ };
317
+ '5': {
318
+ value: string;
319
+ };
320
+ '6': {
321
+ value: string;
322
+ };
323
+ '7': {
324
+ value: string;
325
+ };
326
+ '8': {
327
+ value: string;
328
+ };
329
+ '9': {
330
+ value: string;
331
+ };
332
+ '10': {
333
+ value: string;
334
+ };
335
+ '11': {
336
+ value: string;
337
+ };
338
+ '12': {
339
+ value: string;
340
+ };
341
+ a1: {
342
+ value: string;
343
+ };
344
+ a2: {
345
+ value: string;
346
+ };
347
+ a3: {
348
+ value: string;
349
+ };
350
+ a4: {
351
+ value: string;
352
+ };
353
+ a5: {
354
+ value: string;
355
+ };
356
+ a6: {
357
+ value: string;
358
+ };
359
+ a7: {
360
+ value: string;
361
+ };
362
+ a8: {
363
+ value: string;
364
+ };
365
+ a9: {
366
+ value: string;
367
+ };
368
+ a10: {
369
+ value: string;
370
+ };
371
+ a11: {
372
+ value: string;
373
+ };
374
+ a12: {
375
+ value: string;
376
+ };
377
+ };
378
+ dark: {
379
+ '1': {
380
+ value: string;
381
+ };
382
+ '2': {
383
+ value: string;
384
+ };
385
+ '3': {
386
+ value: string;
387
+ };
388
+ '4': {
389
+ value: string;
390
+ };
391
+ '5': {
392
+ value: string;
393
+ };
394
+ '6': {
395
+ value: string;
396
+ };
397
+ '7': {
398
+ value: string;
399
+ };
400
+ '8': {
401
+ value: string;
402
+ };
403
+ '9': {
404
+ value: string;
405
+ };
406
+ '10': {
407
+ value: string;
408
+ };
409
+ '11': {
410
+ value: string;
411
+ };
412
+ '12': {
413
+ value: string;
414
+ };
415
+ a1: {
416
+ value: string;
417
+ };
418
+ a2: {
419
+ value: string;
420
+ };
421
+ a3: {
422
+ value: string;
423
+ };
424
+ a4: {
425
+ value: string;
426
+ };
427
+ a5: {
428
+ value: string;
429
+ };
430
+ a6: {
431
+ value: string;
432
+ };
433
+ a7: {
434
+ value: string;
435
+ };
436
+ a8: {
437
+ value: string;
438
+ };
439
+ a9: {
440
+ value: string;
441
+ };
442
+ a10: {
443
+ value: string;
444
+ };
445
+ a11: {
446
+ value: string;
447
+ };
448
+ a12: {
449
+ value: string;
450
+ };
451
+ };
452
+ };
453
+ grass: {
454
+ light: {
455
+ '1': {
456
+ value: string;
457
+ };
458
+ '2': {
459
+ value: string;
460
+ };
461
+ '3': {
462
+ value: string;
463
+ };
464
+ '4': {
465
+ value: string;
466
+ };
467
+ '5': {
468
+ value: string;
469
+ };
470
+ '6': {
471
+ value: string;
472
+ };
473
+ '7': {
474
+ value: string;
475
+ };
476
+ '8': {
477
+ value: string;
478
+ };
479
+ '9': {
480
+ value: string;
481
+ };
482
+ '10': {
483
+ value: string;
484
+ };
485
+ '11': {
486
+ value: string;
487
+ };
488
+ '12': {
489
+ value: string;
490
+ };
491
+ a1: {
492
+ value: string;
493
+ };
494
+ a2: {
495
+ value: string;
496
+ };
497
+ a3: {
498
+ value: string;
499
+ };
500
+ a4: {
501
+ value: string;
502
+ };
503
+ a5: {
504
+ value: string;
505
+ };
506
+ a6: {
507
+ value: string;
508
+ };
509
+ a7: {
510
+ value: string;
511
+ };
512
+ a8: {
513
+ value: string;
514
+ };
515
+ a9: {
516
+ value: string;
517
+ };
518
+ a10: {
519
+ value: string;
520
+ };
521
+ a11: {
522
+ value: string;
523
+ };
524
+ a12: {
525
+ value: string;
526
+ };
527
+ };
528
+ dark: {
529
+ '1': {
530
+ value: string;
531
+ };
532
+ '2': {
533
+ value: string;
534
+ };
535
+ '3': {
536
+ value: string;
537
+ };
538
+ '4': {
539
+ value: string;
540
+ };
541
+ '5': {
542
+ value: string;
543
+ };
544
+ '6': {
545
+ value: string;
546
+ };
547
+ '7': {
548
+ value: string;
549
+ };
550
+ '8': {
551
+ value: string;
552
+ };
553
+ '9': {
554
+ value: string;
555
+ };
556
+ '10': {
557
+ value: string;
558
+ };
559
+ '11': {
560
+ value: string;
561
+ };
562
+ '12': {
563
+ value: string;
564
+ };
565
+ a1: {
566
+ value: string;
567
+ };
568
+ a2: {
569
+ value: string;
570
+ };
571
+ a3: {
572
+ value: string;
573
+ };
574
+ a4: {
575
+ value: string;
576
+ };
577
+ a5: {
578
+ value: string;
579
+ };
580
+ a6: {
581
+ value: string;
582
+ };
583
+ a7: {
584
+ value: string;
585
+ };
586
+ a8: {
587
+ value: string;
588
+ };
589
+ a9: {
590
+ value: string;
591
+ };
592
+ a10: {
593
+ value: string;
594
+ };
595
+ a11: {
596
+ value: string;
597
+ };
598
+ a12: {
599
+ value: string;
600
+ };
601
+ };
602
+ };
603
+ tomato: {
604
+ light: {
605
+ '1': {
606
+ value: string;
607
+ };
608
+ '2': {
609
+ value: string;
610
+ };
611
+ '3': {
612
+ value: string;
613
+ };
614
+ '4': {
615
+ value: string;
616
+ };
617
+ '5': {
618
+ value: string;
619
+ };
620
+ '6': {
621
+ value: string;
622
+ };
623
+ '7': {
624
+ value: string;
625
+ };
626
+ '8': {
627
+ value: string;
628
+ };
629
+ '9': {
630
+ value: string;
631
+ };
632
+ '10': {
633
+ value: string;
634
+ };
635
+ '11': {
636
+ value: string;
637
+ };
638
+ '12': {
639
+ value: string;
640
+ };
641
+ a1: {
642
+ value: string;
643
+ };
644
+ a2: {
645
+ value: string;
646
+ };
647
+ a3: {
648
+ value: string;
649
+ };
650
+ a4: {
651
+ value: string;
652
+ };
653
+ a5: {
654
+ value: string;
655
+ };
656
+ a6: {
657
+ value: string;
658
+ };
659
+ a7: {
660
+ value: string;
661
+ };
662
+ a8: {
663
+ value: string;
664
+ };
665
+ a9: {
666
+ value: string;
667
+ };
668
+ a10: {
669
+ value: string;
670
+ };
671
+ a11: {
672
+ value: string;
673
+ };
674
+ a12: {
675
+ value: string;
676
+ };
677
+ };
678
+ dark: {
679
+ '1': {
680
+ value: string;
681
+ };
682
+ '2': {
683
+ value: string;
684
+ };
685
+ '3': {
686
+ value: string;
687
+ };
688
+ '4': {
689
+ value: string;
690
+ };
691
+ '5': {
692
+ value: string;
693
+ };
694
+ '6': {
695
+ value: string;
696
+ };
697
+ '7': {
698
+ value: string;
699
+ };
700
+ '8': {
701
+ value: string;
702
+ };
703
+ '9': {
704
+ value: string;
705
+ };
706
+ '10': {
707
+ value: string;
708
+ };
709
+ '11': {
710
+ value: string;
711
+ };
712
+ '12': {
713
+ value: string;
714
+ };
715
+ a1: {
716
+ value: string;
717
+ };
718
+ a2: {
719
+ value: string;
720
+ };
721
+ a3: {
722
+ value: string;
723
+ };
724
+ a4: {
725
+ value: string;
726
+ };
727
+ a5: {
728
+ value: string;
729
+ };
730
+ a6: {
731
+ value: string;
732
+ };
733
+ a7: {
734
+ value: string;
735
+ };
736
+ a8: {
737
+ value: string;
738
+ };
739
+ a9: {
740
+ value: string;
741
+ };
742
+ a10: {
743
+ value: string;
744
+ };
745
+ a11: {
746
+ value: string;
747
+ };
748
+ a12: {
749
+ value: string;
750
+ };
751
+ };
752
+ };
753
+ indigo: {
754
+ light: {
755
+ '1': {
756
+ value: string;
757
+ };
758
+ '2': {
759
+ value: string;
760
+ };
761
+ '3': {
762
+ value: string;
763
+ };
764
+ '4': {
765
+ value: string;
766
+ };
767
+ '5': {
768
+ value: string;
769
+ };
770
+ '6': {
771
+ value: string;
772
+ };
773
+ '7': {
774
+ value: string;
775
+ };
776
+ '8': {
777
+ value: string;
778
+ };
779
+ '9': {
780
+ value: string;
781
+ };
782
+ '10': {
783
+ value: string;
784
+ };
785
+ '11': {
786
+ value: string;
787
+ };
788
+ '12': {
789
+ value: string;
790
+ };
791
+ a1: {
792
+ value: string;
793
+ };
794
+ a2: {
795
+ value: string;
796
+ };
797
+ a3: {
798
+ value: string;
799
+ };
800
+ a4: {
801
+ value: string;
802
+ };
803
+ a5: {
804
+ value: string;
805
+ };
806
+ a6: {
807
+ value: string;
808
+ };
809
+ a7: {
810
+ value: string;
811
+ };
812
+ a8: {
813
+ value: string;
814
+ };
815
+ a9: {
816
+ value: string;
817
+ };
818
+ a10: {
819
+ value: string;
820
+ };
821
+ a11: {
822
+ value: string;
823
+ };
824
+ a12: {
825
+ value: string;
826
+ };
827
+ };
828
+ dark: {
829
+ '1': {
830
+ value: string;
831
+ };
832
+ '2': {
833
+ value: string;
834
+ };
835
+ '3': {
836
+ value: string;
837
+ };
838
+ '4': {
839
+ value: string;
840
+ };
841
+ '5': {
842
+ value: string;
843
+ };
844
+ '6': {
845
+ value: string;
846
+ };
847
+ '7': {
848
+ value: string;
849
+ };
850
+ '8': {
851
+ value: string;
852
+ };
853
+ '9': {
854
+ value: string;
855
+ };
856
+ '10': {
857
+ value: string;
858
+ };
859
+ '11': {
860
+ value: string;
861
+ };
862
+ '12': {
863
+ value: string;
864
+ };
865
+ a1: {
866
+ value: string;
867
+ };
868
+ a2: {
869
+ value: string;
870
+ };
871
+ a3: {
872
+ value: string;
873
+ };
874
+ a4: {
875
+ value: string;
876
+ };
877
+ a5: {
878
+ value: string;
879
+ };
880
+ a6: {
881
+ value: string;
882
+ };
883
+ a7: {
884
+ value: string;
885
+ };
886
+ a8: {
887
+ value: string;
888
+ };
889
+ a9: {
890
+ value: string;
891
+ };
892
+ a10: {
893
+ value: string;
894
+ };
895
+ a11: {
896
+ value: string;
897
+ };
898
+ a12: {
899
+ value: string;
900
+ };
901
+ };
902
+ };
903
+ amber: {
904
+ light: {
905
+ '1': {
906
+ value: string;
907
+ };
908
+ '2': {
909
+ value: string;
910
+ };
911
+ '3': {
912
+ value: string;
913
+ };
914
+ '4': {
915
+ value: string;
916
+ };
917
+ '5': {
918
+ value: string;
919
+ };
920
+ '6': {
921
+ value: string;
922
+ };
923
+ '7': {
924
+ value: string;
925
+ };
926
+ '8': {
927
+ value: string;
928
+ };
929
+ '9': {
930
+ value: string;
931
+ };
932
+ '10': {
933
+ value: string;
934
+ };
935
+ '11': {
936
+ value: string;
937
+ };
938
+ '12': {
939
+ value: string;
940
+ };
941
+ a1: {
942
+ value: string;
943
+ };
944
+ a2: {
945
+ value: string;
946
+ };
947
+ a3: {
948
+ value: string;
949
+ };
950
+ a4: {
951
+ value: string;
952
+ };
953
+ a5: {
954
+ value: string;
955
+ };
956
+ a6: {
957
+ value: string;
958
+ };
959
+ a7: {
960
+ value: string;
961
+ };
962
+ a8: {
963
+ value: string;
964
+ };
965
+ a9: {
966
+ value: string;
967
+ };
968
+ a10: {
969
+ value: string;
970
+ };
971
+ a11: {
972
+ value: string;
973
+ };
974
+ a12: {
975
+ value: string;
976
+ };
977
+ };
978
+ dark: {
979
+ '1': {
980
+ value: string;
981
+ };
982
+ '2': {
983
+ value: string;
984
+ };
985
+ '3': {
986
+ value: string;
987
+ };
988
+ '4': {
989
+ value: string;
990
+ };
991
+ '5': {
992
+ value: string;
993
+ };
994
+ '6': {
995
+ value: string;
996
+ };
997
+ '7': {
998
+ value: string;
999
+ };
1000
+ '8': {
1001
+ value: string;
1002
+ };
1003
+ '9': {
1004
+ value: string;
1005
+ };
1006
+ '10': {
1007
+ value: string;
1008
+ };
1009
+ '11': {
1010
+ value: string;
1011
+ };
1012
+ '12': {
1013
+ value: string;
1014
+ };
1015
+ a1: {
1016
+ value: string;
1017
+ };
1018
+ a2: {
1019
+ value: string;
1020
+ };
1021
+ a3: {
1022
+ value: string;
1023
+ };
1024
+ a4: {
1025
+ value: string;
1026
+ };
1027
+ a5: {
1028
+ value: string;
1029
+ };
1030
+ a6: {
1031
+ value: string;
1032
+ };
1033
+ a7: {
1034
+ value: string;
1035
+ };
1036
+ a8: {
1037
+ value: string;
1038
+ };
1039
+ a9: {
1040
+ value: string;
1041
+ };
1042
+ a10: {
1043
+ value: string;
1044
+ };
1045
+ a11: {
1046
+ value: string;
1047
+ };
1048
+ a12: {
1049
+ value: string;
1050
+ };
1051
+ };
1052
+ };
1053
+ };
1054
+ };
1055
+ export declare const colorPaletteSemanticTokens: {
1056
+ colors: {
1057
+ success: {
1058
+ '1': {
1059
+ value: {
1060
+ _light: string;
1061
+ _dark: string;
1062
+ };
1063
+ };
1064
+ '2': {
1065
+ value: {
1066
+ _light: string;
1067
+ _dark: string;
1068
+ };
1069
+ };
1070
+ '3': {
1071
+ value: {
1072
+ _light: string;
1073
+ _dark: string;
1074
+ };
1075
+ };
1076
+ '4': {
1077
+ value: {
1078
+ _light: string;
1079
+ _dark: string;
1080
+ };
1081
+ };
1082
+ '5': {
1083
+ value: {
1084
+ _light: string;
1085
+ _dark: string;
1086
+ };
1087
+ };
1088
+ '6': {
1089
+ value: {
1090
+ _light: string;
1091
+ _dark: string;
1092
+ };
1093
+ };
1094
+ '7': {
1095
+ value: {
1096
+ _light: string;
1097
+ _dark: string;
1098
+ };
1099
+ };
1100
+ '8': {
1101
+ value: {
1102
+ _light: string;
1103
+ _dark: string;
1104
+ };
1105
+ };
1106
+ '9': {
1107
+ value: {
1108
+ _light: string;
1109
+ _dark: string;
1110
+ };
1111
+ };
1112
+ '10': {
1113
+ value: {
1114
+ _light: string;
1115
+ _dark: string;
1116
+ };
1117
+ };
1118
+ '11': {
1119
+ value: {
1120
+ _light: string;
1121
+ _dark: string;
1122
+ };
1123
+ };
1124
+ '12': {
1125
+ value: {
1126
+ _light: string;
1127
+ _dark: string;
1128
+ };
1129
+ };
1130
+ a1: {
1131
+ value: {
1132
+ _light: string;
1133
+ _dark: string;
1134
+ };
1135
+ };
1136
+ a2: {
1137
+ value: {
1138
+ _light: string;
1139
+ _dark: string;
1140
+ };
1141
+ };
1142
+ a3: {
1143
+ value: {
1144
+ _light: string;
1145
+ _dark: string;
1146
+ };
1147
+ };
1148
+ a4: {
1149
+ value: {
1150
+ _light: string;
1151
+ _dark: string;
1152
+ };
1153
+ };
1154
+ a5: {
1155
+ value: {
1156
+ _light: string;
1157
+ _dark: string;
1158
+ };
1159
+ };
1160
+ a6: {
1161
+ value: {
1162
+ _light: string;
1163
+ _dark: string;
1164
+ };
1165
+ };
1166
+ a7: {
1167
+ value: {
1168
+ _light: string;
1169
+ _dark: string;
1170
+ };
1171
+ };
1172
+ a8: {
1173
+ value: {
1174
+ _light: string;
1175
+ _dark: string;
1176
+ };
1177
+ };
1178
+ a9: {
1179
+ value: {
1180
+ _light: string;
1181
+ _dark: string;
1182
+ };
1183
+ };
1184
+ a10: {
1185
+ value: {
1186
+ _light: string;
1187
+ _dark: string;
1188
+ };
1189
+ };
1190
+ a11: {
1191
+ value: {
1192
+ _light: string;
1193
+ _dark: string;
1194
+ };
1195
+ };
1196
+ a12: {
1197
+ value: {
1198
+ _light: string;
1199
+ _dark: string;
1200
+ };
1201
+ };
1202
+ default: {
1203
+ value: {
1204
+ _light: string;
1205
+ _dark: string;
1206
+ };
1207
+ };
1208
+ emphasized: {
1209
+ value: {
1210
+ _light: string;
1211
+ _dark: string;
1212
+ };
1213
+ };
1214
+ fg: {
1215
+ value: {
1216
+ _light: string;
1217
+ _dark: string;
1218
+ };
1219
+ };
1220
+ text: {
1221
+ value: {
1222
+ _light: string;
1223
+ _dark: string;
1224
+ };
1225
+ };
1226
+ };
1227
+ warning: {
1228
+ '1': {
1229
+ value: {
1230
+ _light: string;
1231
+ _dark: string;
1232
+ };
1233
+ };
1234
+ '2': {
1235
+ value: {
1236
+ _light: string;
1237
+ _dark: string;
1238
+ };
1239
+ };
1240
+ '3': {
1241
+ value: {
1242
+ _light: string;
1243
+ _dark: string;
1244
+ };
1245
+ };
1246
+ '4': {
1247
+ value: {
1248
+ _light: string;
1249
+ _dark: string;
1250
+ };
1251
+ };
1252
+ '5': {
1253
+ value: {
1254
+ _light: string;
1255
+ _dark: string;
1256
+ };
1257
+ };
1258
+ '6': {
1259
+ value: {
1260
+ _light: string;
1261
+ _dark: string;
1262
+ };
1263
+ };
1264
+ '7': {
1265
+ value: {
1266
+ _light: string;
1267
+ _dark: string;
1268
+ };
1269
+ };
1270
+ '8': {
1271
+ value: {
1272
+ _light: string;
1273
+ _dark: string;
1274
+ };
1275
+ };
1276
+ '9': {
1277
+ value: {
1278
+ _light: string;
1279
+ _dark: string;
1280
+ };
1281
+ };
1282
+ '10': {
1283
+ value: {
1284
+ _light: string;
1285
+ _dark: string;
1286
+ };
1287
+ };
1288
+ '11': {
1289
+ value: {
1290
+ _light: string;
1291
+ _dark: string;
1292
+ };
1293
+ };
1294
+ '12': {
1295
+ value: {
1296
+ _light: string;
1297
+ _dark: string;
1298
+ };
1299
+ };
1300
+ a1: {
1301
+ value: {
1302
+ _light: string;
1303
+ _dark: string;
1304
+ };
1305
+ };
1306
+ a2: {
1307
+ value: {
1308
+ _light: string;
1309
+ _dark: string;
1310
+ };
1311
+ };
1312
+ a3: {
1313
+ value: {
1314
+ _light: string;
1315
+ _dark: string;
1316
+ };
1317
+ };
1318
+ a4: {
1319
+ value: {
1320
+ _light: string;
1321
+ _dark: string;
1322
+ };
1323
+ };
1324
+ a5: {
1325
+ value: {
1326
+ _light: string;
1327
+ _dark: string;
1328
+ };
1329
+ };
1330
+ a6: {
1331
+ value: {
1332
+ _light: string;
1333
+ _dark: string;
1334
+ };
1335
+ };
1336
+ a7: {
1337
+ value: {
1338
+ _light: string;
1339
+ _dark: string;
1340
+ };
1341
+ };
1342
+ a8: {
1343
+ value: {
1344
+ _light: string;
1345
+ _dark: string;
1346
+ };
1347
+ };
1348
+ a9: {
1349
+ value: {
1350
+ _light: string;
1351
+ _dark: string;
1352
+ };
1353
+ };
1354
+ a10: {
1355
+ value: {
1356
+ _light: string;
1357
+ _dark: string;
1358
+ };
1359
+ };
1360
+ a11: {
1361
+ value: {
1362
+ _light: string;
1363
+ _dark: string;
1364
+ };
1365
+ };
1366
+ a12: {
1367
+ value: {
1368
+ _light: string;
1369
+ _dark: string;
1370
+ };
1371
+ };
1372
+ default: {
1373
+ value: {
1374
+ _light: string;
1375
+ _dark: string;
1376
+ };
1377
+ };
1378
+ emphasized: {
1379
+ value: {
1380
+ _light: string;
1381
+ _dark: string;
1382
+ };
1383
+ };
1384
+ fg: {
1385
+ value: {
1386
+ _light: string;
1387
+ _dark: string;
1388
+ };
1389
+ };
1390
+ text: {
1391
+ value: {
1392
+ _light: string;
1393
+ _dark: string;
1394
+ };
1395
+ };
1396
+ };
1397
+ error: {
1398
+ '1': {
1399
+ value: {
1400
+ _light: string;
1401
+ _dark: string;
1402
+ };
1403
+ };
1404
+ '2': {
1405
+ value: {
1406
+ _light: string;
1407
+ _dark: string;
1408
+ };
1409
+ };
1410
+ '3': {
1411
+ value: {
1412
+ _light: string;
1413
+ _dark: string;
1414
+ };
1415
+ };
1416
+ '4': {
1417
+ value: {
1418
+ _light: string;
1419
+ _dark: string;
1420
+ };
1421
+ };
1422
+ '5': {
1423
+ value: {
1424
+ _light: string;
1425
+ _dark: string;
1426
+ };
1427
+ };
1428
+ '6': {
1429
+ value: {
1430
+ _light: string;
1431
+ _dark: string;
1432
+ };
1433
+ };
1434
+ '7': {
1435
+ value: {
1436
+ _light: string;
1437
+ _dark: string;
1438
+ };
1439
+ };
1440
+ '8': {
1441
+ value: {
1442
+ _light: string;
1443
+ _dark: string;
1444
+ };
1445
+ };
1446
+ '9': {
1447
+ value: {
1448
+ _light: string;
1449
+ _dark: string;
1450
+ };
1451
+ };
1452
+ '10': {
1453
+ value: {
1454
+ _light: string;
1455
+ _dark: string;
1456
+ };
1457
+ };
1458
+ '11': {
1459
+ value: {
1460
+ _light: string;
1461
+ _dark: string;
1462
+ };
1463
+ };
1464
+ '12': {
1465
+ value: {
1466
+ _light: string;
1467
+ _dark: string;
1468
+ };
1469
+ };
1470
+ a1: {
1471
+ value: {
1472
+ _light: string;
1473
+ _dark: string;
1474
+ };
1475
+ };
1476
+ a2: {
1477
+ value: {
1478
+ _light: string;
1479
+ _dark: string;
1480
+ };
1481
+ };
1482
+ a3: {
1483
+ value: {
1484
+ _light: string;
1485
+ _dark: string;
1486
+ };
1487
+ };
1488
+ a4: {
1489
+ value: {
1490
+ _light: string;
1491
+ _dark: string;
1492
+ };
1493
+ };
1494
+ a5: {
1495
+ value: {
1496
+ _light: string;
1497
+ _dark: string;
1498
+ };
1499
+ };
1500
+ a6: {
1501
+ value: {
1502
+ _light: string;
1503
+ _dark: string;
1504
+ };
1505
+ };
1506
+ a7: {
1507
+ value: {
1508
+ _light: string;
1509
+ _dark: string;
1510
+ };
1511
+ };
1512
+ a8: {
1513
+ value: {
1514
+ _light: string;
1515
+ _dark: string;
1516
+ };
1517
+ };
1518
+ a9: {
1519
+ value: {
1520
+ _light: string;
1521
+ _dark: string;
1522
+ };
1523
+ };
1524
+ a10: {
1525
+ value: {
1526
+ _light: string;
1527
+ _dark: string;
1528
+ };
1529
+ };
1530
+ a11: {
1531
+ value: {
1532
+ _light: string;
1533
+ _dark: string;
1534
+ };
1535
+ };
1536
+ a12: {
1537
+ value: {
1538
+ _light: string;
1539
+ _dark: string;
1540
+ };
1541
+ };
1542
+ default: {
1543
+ value: {
1544
+ _light: string;
1545
+ _dark: string;
1546
+ };
1547
+ };
1548
+ emphasized: {
1549
+ value: {
1550
+ _light: string;
1551
+ _dark: string;
1552
+ };
1553
+ };
1554
+ fg: {
1555
+ value: {
1556
+ _light: string;
1557
+ _dark: string;
1558
+ };
1559
+ };
1560
+ text: {
1561
+ value: {
1562
+ _light: string;
1563
+ _dark: string;
1564
+ };
1565
+ };
1566
+ };
1567
+ blue: {
1568
+ '1': {
1569
+ value: {
1570
+ _light: string;
1571
+ _dark: string;
1572
+ };
1573
+ };
1574
+ '2': {
1575
+ value: {
1576
+ _light: string;
1577
+ _dark: string;
1578
+ };
1579
+ };
1580
+ '3': {
1581
+ value: {
1582
+ _light: string;
1583
+ _dark: string;
1584
+ };
1585
+ };
1586
+ '4': {
1587
+ value: {
1588
+ _light: string;
1589
+ _dark: string;
1590
+ };
1591
+ };
1592
+ '5': {
1593
+ value: {
1594
+ _light: string;
1595
+ _dark: string;
1596
+ };
1597
+ };
1598
+ '6': {
1599
+ value: {
1600
+ _light: string;
1601
+ _dark: string;
1602
+ };
1603
+ };
1604
+ '7': {
1605
+ value: {
1606
+ _light: string;
1607
+ _dark: string;
1608
+ };
1609
+ };
1610
+ '8': {
1611
+ value: {
1612
+ _light: string;
1613
+ _dark: string;
1614
+ };
1615
+ };
1616
+ '9': {
1617
+ value: {
1618
+ _light: string;
1619
+ _dark: string;
1620
+ };
1621
+ };
1622
+ '10': {
1623
+ value: {
1624
+ _light: string;
1625
+ _dark: string;
1626
+ };
1627
+ };
1628
+ '11': {
1629
+ value: {
1630
+ _light: string;
1631
+ _dark: string;
1632
+ };
1633
+ };
1634
+ '12': {
1635
+ value: {
1636
+ _light: string;
1637
+ _dark: string;
1638
+ };
1639
+ };
1640
+ a1: {
1641
+ value: {
1642
+ _light: string;
1643
+ _dark: string;
1644
+ };
1645
+ };
1646
+ a2: {
1647
+ value: {
1648
+ _light: string;
1649
+ _dark: string;
1650
+ };
1651
+ };
1652
+ a3: {
1653
+ value: {
1654
+ _light: string;
1655
+ _dark: string;
1656
+ };
1657
+ };
1658
+ a4: {
1659
+ value: {
1660
+ _light: string;
1661
+ _dark: string;
1662
+ };
1663
+ };
1664
+ a5: {
1665
+ value: {
1666
+ _light: string;
1667
+ _dark: string;
1668
+ };
1669
+ };
1670
+ a6: {
1671
+ value: {
1672
+ _light: string;
1673
+ _dark: string;
1674
+ };
1675
+ };
1676
+ a7: {
1677
+ value: {
1678
+ _light: string;
1679
+ _dark: string;
1680
+ };
1681
+ };
1682
+ a8: {
1683
+ value: {
1684
+ _light: string;
1685
+ _dark: string;
1686
+ };
1687
+ };
1688
+ a9: {
1689
+ value: {
1690
+ _light: string;
1691
+ _dark: string;
1692
+ };
1693
+ };
1694
+ a10: {
1695
+ value: {
1696
+ _light: string;
1697
+ _dark: string;
1698
+ };
1699
+ };
1700
+ a11: {
1701
+ value: {
1702
+ _light: string;
1703
+ _dark: string;
1704
+ };
1705
+ };
1706
+ a12: {
1707
+ value: {
1708
+ _light: string;
1709
+ _dark: string;
1710
+ };
1711
+ };
1712
+ default: {
1713
+ value: {
1714
+ _light: string;
1715
+ _dark: string;
1716
+ };
1717
+ };
1718
+ emphasized: {
1719
+ value: {
1720
+ _light: string;
1721
+ _dark: string;
1722
+ };
1723
+ };
1724
+ fg: {
1725
+ value: {
1726
+ _light: string;
1727
+ _dark: string;
1728
+ };
1729
+ };
1730
+ text: {
1731
+ value: {
1732
+ _light: string;
1733
+ _dark: string;
1734
+ };
1735
+ };
1736
+ };
1737
+ grass: {
1738
+ '1': {
1739
+ value: {
1740
+ _light: string;
1741
+ _dark: string;
1742
+ };
1743
+ };
1744
+ '2': {
1745
+ value: {
1746
+ _light: string;
1747
+ _dark: string;
1748
+ };
1749
+ };
1750
+ '3': {
1751
+ value: {
1752
+ _light: string;
1753
+ _dark: string;
1754
+ };
1755
+ };
1756
+ '4': {
1757
+ value: {
1758
+ _light: string;
1759
+ _dark: string;
1760
+ };
1761
+ };
1762
+ '5': {
1763
+ value: {
1764
+ _light: string;
1765
+ _dark: string;
1766
+ };
1767
+ };
1768
+ '6': {
1769
+ value: {
1770
+ _light: string;
1771
+ _dark: string;
1772
+ };
1773
+ };
1774
+ '7': {
1775
+ value: {
1776
+ _light: string;
1777
+ _dark: string;
1778
+ };
1779
+ };
1780
+ '8': {
1781
+ value: {
1782
+ _light: string;
1783
+ _dark: string;
1784
+ };
1785
+ };
1786
+ '9': {
1787
+ value: {
1788
+ _light: string;
1789
+ _dark: string;
1790
+ };
1791
+ };
1792
+ '10': {
1793
+ value: {
1794
+ _light: string;
1795
+ _dark: string;
1796
+ };
1797
+ };
1798
+ '11': {
1799
+ value: {
1800
+ _light: string;
1801
+ _dark: string;
1802
+ };
1803
+ };
1804
+ '12': {
1805
+ value: {
1806
+ _light: string;
1807
+ _dark: string;
1808
+ };
1809
+ };
1810
+ a1: {
1811
+ value: {
1812
+ _light: string;
1813
+ _dark: string;
1814
+ };
1815
+ };
1816
+ a2: {
1817
+ value: {
1818
+ _light: string;
1819
+ _dark: string;
1820
+ };
1821
+ };
1822
+ a3: {
1823
+ value: {
1824
+ _light: string;
1825
+ _dark: string;
1826
+ };
1827
+ };
1828
+ a4: {
1829
+ value: {
1830
+ _light: string;
1831
+ _dark: string;
1832
+ };
1833
+ };
1834
+ a5: {
1835
+ value: {
1836
+ _light: string;
1837
+ _dark: string;
1838
+ };
1839
+ };
1840
+ a6: {
1841
+ value: {
1842
+ _light: string;
1843
+ _dark: string;
1844
+ };
1845
+ };
1846
+ a7: {
1847
+ value: {
1848
+ _light: string;
1849
+ _dark: string;
1850
+ };
1851
+ };
1852
+ a8: {
1853
+ value: {
1854
+ _light: string;
1855
+ _dark: string;
1856
+ };
1857
+ };
1858
+ a9: {
1859
+ value: {
1860
+ _light: string;
1861
+ _dark: string;
1862
+ };
1863
+ };
1864
+ a10: {
1865
+ value: {
1866
+ _light: string;
1867
+ _dark: string;
1868
+ };
1869
+ };
1870
+ a11: {
1871
+ value: {
1872
+ _light: string;
1873
+ _dark: string;
1874
+ };
1875
+ };
1876
+ a12: {
1877
+ value: {
1878
+ _light: string;
1879
+ _dark: string;
1880
+ };
1881
+ };
1882
+ default: {
1883
+ value: {
1884
+ _light: string;
1885
+ _dark: string;
1886
+ };
1887
+ };
1888
+ emphasized: {
1889
+ value: {
1890
+ _light: string;
1891
+ _dark: string;
1892
+ };
1893
+ };
1894
+ fg: {
1895
+ value: {
1896
+ _light: string;
1897
+ _dark: string;
1898
+ };
1899
+ };
1900
+ text: {
1901
+ value: {
1902
+ _light: string;
1903
+ _dark: string;
1904
+ };
1905
+ };
1906
+ };
1907
+ amber: {
1908
+ '1': {
1909
+ value: {
1910
+ _light: string;
1911
+ _dark: string;
1912
+ };
1913
+ };
1914
+ '2': {
1915
+ value: {
1916
+ _light: string;
1917
+ _dark: string;
1918
+ };
1919
+ };
1920
+ '3': {
1921
+ value: {
1922
+ _light: string;
1923
+ _dark: string;
1924
+ };
1925
+ };
1926
+ '4': {
1927
+ value: {
1928
+ _light: string;
1929
+ _dark: string;
1930
+ };
1931
+ };
1932
+ '5': {
1933
+ value: {
1934
+ _light: string;
1935
+ _dark: string;
1936
+ };
1937
+ };
1938
+ '6': {
1939
+ value: {
1940
+ _light: string;
1941
+ _dark: string;
1942
+ };
1943
+ };
1944
+ '7': {
1945
+ value: {
1946
+ _light: string;
1947
+ _dark: string;
1948
+ };
1949
+ };
1950
+ '8': {
1951
+ value: {
1952
+ _light: string;
1953
+ _dark: string;
1954
+ };
1955
+ };
1956
+ '9': {
1957
+ value: {
1958
+ _light: string;
1959
+ _dark: string;
1960
+ };
1961
+ };
1962
+ '10': {
1963
+ value: {
1964
+ _light: string;
1965
+ _dark: string;
1966
+ };
1967
+ };
1968
+ '11': {
1969
+ value: {
1970
+ _light: string;
1971
+ _dark: string;
1972
+ };
1973
+ };
1974
+ '12': {
1975
+ value: {
1976
+ _light: string;
1977
+ _dark: string;
1978
+ };
1979
+ };
1980
+ a1: {
1981
+ value: {
1982
+ _light: string;
1983
+ _dark: string;
1984
+ };
1985
+ };
1986
+ a2: {
1987
+ value: {
1988
+ _light: string;
1989
+ _dark: string;
1990
+ };
1991
+ };
1992
+ a3: {
1993
+ value: {
1994
+ _light: string;
1995
+ _dark: string;
1996
+ };
1997
+ };
1998
+ a4: {
1999
+ value: {
2000
+ _light: string;
2001
+ _dark: string;
2002
+ };
2003
+ };
2004
+ a5: {
2005
+ value: {
2006
+ _light: string;
2007
+ _dark: string;
2008
+ };
2009
+ };
2010
+ a6: {
2011
+ value: {
2012
+ _light: string;
2013
+ _dark: string;
2014
+ };
2015
+ };
2016
+ a7: {
2017
+ value: {
2018
+ _light: string;
2019
+ _dark: string;
2020
+ };
2021
+ };
2022
+ a8: {
2023
+ value: {
2024
+ _light: string;
2025
+ _dark: string;
2026
+ };
2027
+ };
2028
+ a9: {
2029
+ value: {
2030
+ _light: string;
2031
+ _dark: string;
2032
+ };
2033
+ };
2034
+ a10: {
2035
+ value: {
2036
+ _light: string;
2037
+ _dark: string;
2038
+ };
2039
+ };
2040
+ a11: {
2041
+ value: {
2042
+ _light: string;
2043
+ _dark: string;
2044
+ };
2045
+ };
2046
+ a12: {
2047
+ value: {
2048
+ _light: string;
2049
+ _dark: string;
2050
+ };
2051
+ };
2052
+ default: {
2053
+ value: {
2054
+ _light: string;
2055
+ _dark: string;
2056
+ };
2057
+ };
2058
+ emphasized: {
2059
+ value: {
2060
+ _light: string;
2061
+ _dark: string;
2062
+ };
2063
+ };
2064
+ fg: {
2065
+ value: {
2066
+ _light: string;
2067
+ _dark: string;
2068
+ };
2069
+ };
2070
+ text: {
2071
+ value: {
2072
+ _light: string;
2073
+ _dark: string;
2074
+ };
2075
+ };
2076
+ };
2077
+ tomato: {
2078
+ '1': {
2079
+ value: {
2080
+ _light: string;
2081
+ _dark: string;
2082
+ };
2083
+ };
2084
+ '2': {
2085
+ value: {
2086
+ _light: string;
2087
+ _dark: string;
2088
+ };
2089
+ };
2090
+ '3': {
2091
+ value: {
2092
+ _light: string;
2093
+ _dark: string;
2094
+ };
2095
+ };
2096
+ '4': {
2097
+ value: {
2098
+ _light: string;
2099
+ _dark: string;
2100
+ };
2101
+ };
2102
+ '5': {
2103
+ value: {
2104
+ _light: string;
2105
+ _dark: string;
2106
+ };
2107
+ };
2108
+ '6': {
2109
+ value: {
2110
+ _light: string;
2111
+ _dark: string;
2112
+ };
2113
+ };
2114
+ '7': {
2115
+ value: {
2116
+ _light: string;
2117
+ _dark: string;
2118
+ };
2119
+ };
2120
+ '8': {
2121
+ value: {
2122
+ _light: string;
2123
+ _dark: string;
2124
+ };
2125
+ };
2126
+ '9': {
2127
+ value: {
2128
+ _light: string;
2129
+ _dark: string;
2130
+ };
2131
+ };
2132
+ '10': {
2133
+ value: {
2134
+ _light: string;
2135
+ _dark: string;
2136
+ };
2137
+ };
2138
+ '11': {
2139
+ value: {
2140
+ _light: string;
2141
+ _dark: string;
2142
+ };
2143
+ };
2144
+ '12': {
2145
+ value: {
2146
+ _light: string;
2147
+ _dark: string;
2148
+ };
2149
+ };
2150
+ a1: {
2151
+ value: {
2152
+ _light: string;
2153
+ _dark: string;
2154
+ };
2155
+ };
2156
+ a2: {
2157
+ value: {
2158
+ _light: string;
2159
+ _dark: string;
2160
+ };
2161
+ };
2162
+ a3: {
2163
+ value: {
2164
+ _light: string;
2165
+ _dark: string;
2166
+ };
2167
+ };
2168
+ a4: {
2169
+ value: {
2170
+ _light: string;
2171
+ _dark: string;
2172
+ };
2173
+ };
2174
+ a5: {
2175
+ value: {
2176
+ _light: string;
2177
+ _dark: string;
2178
+ };
2179
+ };
2180
+ a6: {
2181
+ value: {
2182
+ _light: string;
2183
+ _dark: string;
2184
+ };
2185
+ };
2186
+ a7: {
2187
+ value: {
2188
+ _light: string;
2189
+ _dark: string;
2190
+ };
2191
+ };
2192
+ a8: {
2193
+ value: {
2194
+ _light: string;
2195
+ _dark: string;
2196
+ };
2197
+ };
2198
+ a9: {
2199
+ value: {
2200
+ _light: string;
2201
+ _dark: string;
2202
+ };
2203
+ };
2204
+ a10: {
2205
+ value: {
2206
+ _light: string;
2207
+ _dark: string;
2208
+ };
2209
+ };
2210
+ a11: {
2211
+ value: {
2212
+ _light: string;
2213
+ _dark: string;
2214
+ };
2215
+ };
2216
+ a12: {
2217
+ value: {
2218
+ _light: string;
2219
+ _dark: string;
2220
+ };
2221
+ };
2222
+ default: {
2223
+ value: {
2224
+ _light: string;
2225
+ _dark: string;
2226
+ };
2227
+ };
2228
+ emphasized: {
2229
+ value: {
2230
+ _light: string;
2231
+ _dark: string;
2232
+ };
2233
+ };
2234
+ fg: {
2235
+ value: {
2236
+ _light: string;
2237
+ _dark: string;
2238
+ };
2239
+ };
2240
+ text: {
2241
+ value: {
2242
+ _light: string;
2243
+ _dark: string;
2244
+ };
2245
+ };
2246
+ };
2247
+ indigo: {
2248
+ '1': {
2249
+ value: {
2250
+ _light: string;
2251
+ _dark: string;
2252
+ };
2253
+ };
2254
+ '2': {
2255
+ value: {
2256
+ _light: string;
2257
+ _dark: string;
2258
+ };
2259
+ };
2260
+ '3': {
2261
+ value: {
2262
+ _light: string;
2263
+ _dark: string;
2264
+ };
2265
+ };
2266
+ '4': {
2267
+ value: {
2268
+ _light: string;
2269
+ _dark: string;
2270
+ };
2271
+ };
2272
+ '5': {
2273
+ value: {
2274
+ _light: string;
2275
+ _dark: string;
2276
+ };
2277
+ };
2278
+ '6': {
2279
+ value: {
2280
+ _light: string;
2281
+ _dark: string;
2282
+ };
2283
+ };
2284
+ '7': {
2285
+ value: {
2286
+ _light: string;
2287
+ _dark: string;
2288
+ };
2289
+ };
2290
+ '8': {
2291
+ value: {
2292
+ _light: string;
2293
+ _dark: string;
2294
+ };
2295
+ };
2296
+ '9': {
2297
+ value: {
2298
+ _light: string;
2299
+ _dark: string;
2300
+ };
2301
+ };
2302
+ '10': {
2303
+ value: {
2304
+ _light: string;
2305
+ _dark: string;
2306
+ };
2307
+ };
2308
+ '11': {
2309
+ value: {
2310
+ _light: string;
2311
+ _dark: string;
2312
+ };
2313
+ };
2314
+ '12': {
2315
+ value: {
2316
+ _light: string;
2317
+ _dark: string;
2318
+ };
2319
+ };
2320
+ a1: {
2321
+ value: {
2322
+ _light: string;
2323
+ _dark: string;
2324
+ };
2325
+ };
2326
+ a2: {
2327
+ value: {
2328
+ _light: string;
2329
+ _dark: string;
2330
+ };
2331
+ };
2332
+ a3: {
2333
+ value: {
2334
+ _light: string;
2335
+ _dark: string;
2336
+ };
2337
+ };
2338
+ a4: {
2339
+ value: {
2340
+ _light: string;
2341
+ _dark: string;
2342
+ };
2343
+ };
2344
+ a5: {
2345
+ value: {
2346
+ _light: string;
2347
+ _dark: string;
2348
+ };
2349
+ };
2350
+ a6: {
2351
+ value: {
2352
+ _light: string;
2353
+ _dark: string;
2354
+ };
2355
+ };
2356
+ a7: {
2357
+ value: {
2358
+ _light: string;
2359
+ _dark: string;
2360
+ };
2361
+ };
2362
+ a8: {
2363
+ value: {
2364
+ _light: string;
2365
+ _dark: string;
2366
+ };
2367
+ };
2368
+ a9: {
2369
+ value: {
2370
+ _light: string;
2371
+ _dark: string;
2372
+ };
2373
+ };
2374
+ a10: {
2375
+ value: {
2376
+ _light: string;
2377
+ _dark: string;
2378
+ };
2379
+ };
2380
+ a11: {
2381
+ value: {
2382
+ _light: string;
2383
+ _dark: string;
2384
+ };
2385
+ };
2386
+ a12: {
2387
+ value: {
2388
+ _light: string;
2389
+ _dark: string;
2390
+ };
2391
+ };
2392
+ default: {
2393
+ value: {
2394
+ _light: string;
2395
+ _dark: string;
2396
+ };
2397
+ };
2398
+ emphasized: {
2399
+ value: {
2400
+ _light: string;
2401
+ _dark: string;
2402
+ };
2403
+ };
2404
+ fg: {
2405
+ value: {
2406
+ _light: string;
2407
+ _dark: string;
2408
+ };
2409
+ };
2410
+ text: {
2411
+ value: {
2412
+ _light: string;
2413
+ _dark: string;
2414
+ };
2415
+ };
2416
+ };
2417
+ slate: {
2418
+ '1': {
2419
+ value: {
2420
+ _light: string;
2421
+ _dark: string;
2422
+ };
2423
+ };
2424
+ '2': {
2425
+ value: {
2426
+ _light: string;
2427
+ _dark: string;
2428
+ };
2429
+ };
2430
+ '3': {
2431
+ value: {
2432
+ _light: string;
2433
+ _dark: string;
2434
+ };
2435
+ };
2436
+ '4': {
2437
+ value: {
2438
+ _light: string;
2439
+ _dark: string;
2440
+ };
2441
+ };
2442
+ '5': {
2443
+ value: {
2444
+ _light: string;
2445
+ _dark: string;
2446
+ };
2447
+ };
2448
+ '6': {
2449
+ value: {
2450
+ _light: string;
2451
+ _dark: string;
2452
+ };
2453
+ };
2454
+ '7': {
2455
+ value: {
2456
+ _light: string;
2457
+ _dark: string;
2458
+ };
2459
+ };
2460
+ '8': {
2461
+ value: {
2462
+ _light: string;
2463
+ _dark: string;
2464
+ };
2465
+ };
2466
+ '9': {
2467
+ value: {
2468
+ _light: string;
2469
+ _dark: string;
2470
+ };
2471
+ };
2472
+ '10': {
2473
+ value: {
2474
+ _light: string;
2475
+ _dark: string;
2476
+ };
2477
+ };
2478
+ '11': {
2479
+ value: {
2480
+ _light: string;
2481
+ _dark: string;
2482
+ };
2483
+ };
2484
+ '12': {
2485
+ value: {
2486
+ _light: string;
2487
+ _dark: string;
2488
+ };
2489
+ };
2490
+ a1: {
2491
+ value: {
2492
+ _light: string;
2493
+ _dark: string;
2494
+ };
2495
+ };
2496
+ a2: {
2497
+ value: {
2498
+ _light: string;
2499
+ _dark: string;
2500
+ };
2501
+ };
2502
+ a3: {
2503
+ value: {
2504
+ _light: string;
2505
+ _dark: string;
2506
+ };
2507
+ };
2508
+ a4: {
2509
+ value: {
2510
+ _light: string;
2511
+ _dark: string;
2512
+ };
2513
+ };
2514
+ a5: {
2515
+ value: {
2516
+ _light: string;
2517
+ _dark: string;
2518
+ };
2519
+ };
2520
+ a6: {
2521
+ value: {
2522
+ _light: string;
2523
+ _dark: string;
2524
+ };
2525
+ };
2526
+ a7: {
2527
+ value: {
2528
+ _light: string;
2529
+ _dark: string;
2530
+ };
2531
+ };
2532
+ a8: {
2533
+ value: {
2534
+ _light: string;
2535
+ _dark: string;
2536
+ };
2537
+ };
2538
+ a9: {
2539
+ value: {
2540
+ _light: string;
2541
+ _dark: string;
2542
+ };
2543
+ };
2544
+ a10: {
2545
+ value: {
2546
+ _light: string;
2547
+ _dark: string;
2548
+ };
2549
+ };
2550
+ a11: {
2551
+ value: {
2552
+ _light: string;
2553
+ _dark: string;
2554
+ };
2555
+ };
2556
+ a12: {
2557
+ value: {
2558
+ _light: string;
2559
+ _dark: string;
2560
+ };
2561
+ };
2562
+ default: {
2563
+ value: {
2564
+ _light: string;
2565
+ _dark: string;
2566
+ };
2567
+ };
2568
+ emphasized: {
2569
+ value: {
2570
+ _light: string;
2571
+ _dark: string;
2572
+ };
2573
+ };
2574
+ fg: {
2575
+ value: {
2576
+ _light: string;
2577
+ _dark: string;
2578
+ };
2579
+ };
2580
+ text: {
2581
+ value: {
2582
+ _light: string;
2583
+ _dark: string;
2584
+ };
2585
+ };
2586
+ };
2587
+ neutral: {
2588
+ '1': {
2589
+ value: {
2590
+ _light: string;
2591
+ _dark: string;
2592
+ };
2593
+ };
2594
+ '2': {
2595
+ value: {
2596
+ _light: string;
2597
+ _dark: string;
2598
+ };
2599
+ };
2600
+ '3': {
2601
+ value: {
2602
+ _light: string;
2603
+ _dark: string;
2604
+ };
2605
+ };
2606
+ '4': {
2607
+ value: {
2608
+ _light: string;
2609
+ _dark: string;
2610
+ };
2611
+ };
2612
+ '5': {
2613
+ value: {
2614
+ _light: string;
2615
+ _dark: string;
2616
+ };
2617
+ };
2618
+ '6': {
2619
+ value: {
2620
+ _light: string;
2621
+ _dark: string;
2622
+ };
2623
+ };
2624
+ '7': {
2625
+ value: {
2626
+ _light: string;
2627
+ _dark: string;
2628
+ };
2629
+ };
2630
+ '8': {
2631
+ value: {
2632
+ _light: string;
2633
+ _dark: string;
2634
+ };
2635
+ };
2636
+ '9': {
2637
+ value: {
2638
+ _light: string;
2639
+ _dark: string;
2640
+ };
2641
+ };
2642
+ '10': {
2643
+ value: {
2644
+ _light: string;
2645
+ _dark: string;
2646
+ };
2647
+ };
2648
+ '11': {
2649
+ value: {
2650
+ _light: string;
2651
+ _dark: string;
2652
+ };
2653
+ };
2654
+ '12': {
2655
+ value: {
2656
+ _light: string;
2657
+ _dark: string;
2658
+ };
2659
+ };
2660
+ a1: {
2661
+ value: {
2662
+ _light: string;
2663
+ _dark: string;
2664
+ };
2665
+ };
2666
+ a2: {
2667
+ value: {
2668
+ _light: string;
2669
+ _dark: string;
2670
+ };
2671
+ };
2672
+ a3: {
2673
+ value: {
2674
+ _light: string;
2675
+ _dark: string;
2676
+ };
2677
+ };
2678
+ a4: {
2679
+ value: {
2680
+ _light: string;
2681
+ _dark: string;
2682
+ };
2683
+ };
2684
+ a5: {
2685
+ value: {
2686
+ _light: string;
2687
+ _dark: string;
2688
+ };
2689
+ };
2690
+ a6: {
2691
+ value: {
2692
+ _light: string;
2693
+ _dark: string;
2694
+ };
2695
+ };
2696
+ a7: {
2697
+ value: {
2698
+ _light: string;
2699
+ _dark: string;
2700
+ };
2701
+ };
2702
+ a8: {
2703
+ value: {
2704
+ _light: string;
2705
+ _dark: string;
2706
+ };
2707
+ };
2708
+ a9: {
2709
+ value: {
2710
+ _light: string;
2711
+ _dark: string;
2712
+ };
2713
+ };
2714
+ a10: {
2715
+ value: {
2716
+ _light: string;
2717
+ _dark: string;
2718
+ };
2719
+ };
2720
+ a11: {
2721
+ value: {
2722
+ _light: string;
2723
+ _dark: string;
2724
+ };
2725
+ };
2726
+ a12: {
2727
+ value: {
2728
+ _light: string;
2729
+ _dark: string;
2730
+ };
2731
+ };
2732
+ default: {
2733
+ value: {
2734
+ _light: string;
2735
+ _dark: string;
2736
+ };
2737
+ };
2738
+ emphasized: {
2739
+ value: {
2740
+ _light: string;
2741
+ _dark: string;
2742
+ };
2743
+ };
2744
+ fg: {
2745
+ value: {
2746
+ _light: string;
2747
+ _dark: string;
2748
+ };
2749
+ };
2750
+ text: {
2751
+ value: {
2752
+ _light: string;
2753
+ _dark: string;
2754
+ };
2755
+ };
2756
+ };
2757
+ surface: {
2758
+ default: {
2759
+ value: string;
2760
+ };
2761
+ };
2762
+ touchable: {
2763
+ hover: {
2764
+ value: string;
2765
+ };
2766
+ };
2767
+ };
2768
+ };