twenty-sdk 0.3.1 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1035) hide show
  1. package/README.md +139 -44
  2. package/dist/HtmlTagToRemoteComponent-Bd5sgek2.js +1 -0
  3. package/dist/HtmlTagToRemoteComponent-DlsAI7JU.mjs +146 -0
  4. package/dist/RatingValues-CT-y6O0b-CsGZSJKO.mjs +402 -0
  5. package/dist/RatingValues-CT-y6O0b-D7JSZAMu.js +1 -0
  6. package/dist/cli/commands/app/app-dev.d.ts +25 -0
  7. package/dist/cli/commands/{app-generate.command.d.ts → app/app-generate.d.ts} +1 -1
  8. package/dist/cli/commands/{app-uninstall.command.d.ts → app/app-uninstall.d.ts} +1 -1
  9. package/dist/cli/commands/app-command.d.ts +2 -0
  10. package/dist/cli/commands/auth/auth-list.d.ts +4 -0
  11. package/dist/cli/commands/auth/auth-login.d.ts +8 -0
  12. package/dist/cli/commands/auth/auth-logout.d.ts +4 -0
  13. package/dist/cli/commands/auth/auth-status.d.ts +5 -0
  14. package/dist/cli/commands/auth/auth-switch.d.ts +7 -0
  15. package/dist/cli/commands/entity/entity-add.d.ts +12 -0
  16. package/dist/cli/commands/logic-function/logic-function-execute.d.ts +10 -0
  17. package/dist/cli/commands/{app-logs.command.d.ts → logic-function/logic-function-logs.d.ts} +1 -1
  18. package/dist/cli/utilities/api/api-service.d.ts +51 -0
  19. package/dist/cli/utilities/build/common/cleanup-removed-files.d.ts +1 -0
  20. package/dist/cli/utilities/build/common/esbuild-result-processor.d.ts +11 -0
  21. package/dist/cli/utilities/build/common/esbuild-watcher.d.ts +37 -0
  22. package/dist/cli/utilities/build/common/file-upload-watcher.d.ts +24 -0
  23. package/dist/cli/utilities/build/common/front-component-build/jsx-transform-to-remote-dom-worker-format-plugin.d.ts +3 -0
  24. package/dist/cli/utilities/build/common/front-component-build/react-globals-plugin.d.ts +2 -0
  25. package/dist/cli/utilities/build/common/front-component-build/types/ParsedImportSpecifier.d.ts +4 -0
  26. package/dist/cli/utilities/build/common/front-component-build/utils/extract-names-from-import-specifier.d.ts +2 -0
  27. package/dist/cli/utilities/build/common/front-component-build/utils/replace-html-tags-with-remote-components.d.ts +1 -0
  28. package/dist/cli/utilities/build/common/front-component-build/utils/unwrap-define-front-component-to-direct-export.d.ts +1 -0
  29. package/dist/cli/utilities/build/common/restartable-watcher-interface.d.ts +25 -0
  30. package/dist/cli/utilities/build/manifest/manifest-build.d.ts +7 -0
  31. package/dist/cli/utilities/build/manifest/manifest-extract-config-from-file.d.ts +5 -0
  32. package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +20 -0
  33. package/dist/cli/utilities/build/manifest/manifest-types.d.ts +4 -0
  34. package/dist/cli/utilities/build/manifest/manifest-update-checksums.d.ts +17 -0
  35. package/dist/cli/utilities/build/manifest/manifest-validate.d.ts +6 -0
  36. package/dist/cli/utilities/build/manifest/manifest-watcher.d.ts +12 -0
  37. package/dist/cli/utilities/build/manifest/manifest-writer.d.ts +2 -0
  38. package/dist/cli/{services/generate.service.d.ts → utilities/client/client-service.d.ts} +2 -2
  39. package/dist/cli/{services/config.service.d.ts → utilities/config/config-service.d.ts} +4 -0
  40. package/dist/cli/utilities/dev/dev-mode-orchestrator.d.ts +42 -0
  41. package/dist/cli/utilities/dev/dev-ui-state-manager.d.ts +31 -0
  42. package/dist/cli/utilities/dev/dev-ui-state.d.ts +27 -0
  43. package/dist/cli/utilities/dev/dev-ui.d.ts +4 -0
  44. package/dist/cli/utilities/entity/entity-field-template.d.ts +11 -0
  45. package/dist/cli/utilities/entity/entity-front-component-template.d.ts +4 -0
  46. package/dist/cli/utilities/entity/entity-logic-function-template.d.ts +4 -0
  47. package/dist/cli/{utils/get-new-object-file-content.d.ts → utilities/entity/entity-object-template.d.ts} +1 -1
  48. package/dist/cli/{utils/jsonc-parser.d.ts → utilities/file/file-jsonc.d.ts} +1 -5
  49. package/dist/cli/utilities/file/file-tarball.d.ts +16 -0
  50. package/dist/cli/utilities/file/file-uploader.d.ts +14 -0
  51. package/dist/cli/{utils/get-ts-program-and-diagnostics.d.ts → utilities/typescript/typescript-program.d.ts} +1 -1
  52. package/dist/cli.cjs +280 -179
  53. package/dist/cli.mjs +11094 -9469
  54. package/dist/front-component/host/components/FrontComponentRenderer.d.ts +8 -0
  55. package/dist/front-component/host/generated/host-component-registry.d.ts +4 -0
  56. package/dist/front-component/host/generated/host-index.d.ts +1 -0
  57. package/dist/front-component/index.d.ts +10 -0
  58. package/dist/front-component/remote/components/FrontComponentWorkerEffect.d.ts +8 -0
  59. package/dist/front-component/remote/generated/remote-components.d.ts +44 -0
  60. package/dist/front-component/remote/generated/remote-elements.d.ts +195 -0
  61. package/dist/front-component/remote/generated/remote-index.d.ts +2 -0
  62. package/dist/front-component/remote/mock/mock-front-component.d.ts +3 -0
  63. package/dist/front-component/remote/worker/createRemoteWorker.d.ts +1 -0
  64. package/dist/front-component/remote/worker/remote-worker.d.ts +0 -0
  65. package/dist/front-component/types/HostToWorkerRenderContext.d.ts +3 -0
  66. package/dist/front-component/types/PropertySchema.d.ts +4 -0
  67. package/dist/front-component/types/WorkerExports.d.ts +5 -0
  68. package/dist/front-component-constants/AllowedHtmlElements.d.ts +11 -0
  69. package/dist/front-component-constants/AllowedUiComponents.d.ts +9 -0
  70. package/dist/front-component-constants/CommonHtmlEvents.d.ts +1 -0
  71. package/dist/front-component-constants/EventToReact.d.ts +1 -0
  72. package/dist/front-component-constants/HtmlCommonProperties.d.ts +2 -0
  73. package/dist/front-component-constants/HtmlTagToRemoteComponent.d.ts +1 -0
  74. package/dist/front-component-constants/index.d.ts +8 -0
  75. package/dist/front-component-constants.cjs +1 -0
  76. package/dist/front-component-constants.mjs +77 -0
  77. package/dist/front-component.cjs +155 -0
  78. package/dist/front-component.mjs +23453 -0
  79. package/dist/index.cjs +2 -2
  80. package/dist/index.d.ts +1 -1
  81. package/dist/index.mjs +2197 -242
  82. package/dist/jsx-runtime-C9ldtZbm.mjs +10472 -0
  83. package/dist/jsx-runtime-CfccAQK_.js +54 -0
  84. package/dist/sdk/application/application-config.d.ts +2 -0
  85. package/dist/sdk/application/define-application.d.ts +3 -0
  86. package/dist/sdk/common/types/define-entity.type.d.ts +11 -0
  87. package/dist/sdk/common/utils/create-validation-result.d.ts +5 -0
  88. package/dist/{application → sdk}/fields/composite-fields.d.ts +1 -1
  89. package/dist/sdk/fields/define-field.d.ts +3 -0
  90. package/dist/sdk/fields/validate-fields.d.ts +2 -0
  91. package/dist/sdk/front-components/define-front-component.d.ts +3 -0
  92. package/dist/sdk/front-components/front-component-config.d.ts +5 -0
  93. package/dist/sdk/index.d.ts +22 -0
  94. package/dist/sdk/logic-functions/define-logic-function.d.ts +3 -0
  95. package/dist/sdk/logic-functions/logic-function-config.d.ts +6 -0
  96. package/dist/sdk/logic-functions/triggers/route-payload-type.d.ts +1 -0
  97. package/dist/sdk/objects/define-object.d.ts +3 -0
  98. package/dist/sdk/objects/standard-object-ids.d.ts +1 -0
  99. package/dist/sdk/roles/define-role.d.ts +3 -0
  100. package/dist/sdk/roles/permission-flag-type.d.ts +1 -0
  101. package/dist/types-BSOjxfFi.mjs +7 -0
  102. package/dist/types-DqLnNRPE.js +1 -0
  103. package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BZ0Penru.js +1 -0
  104. package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-DmLx4uDl.mjs +263 -0
  105. package/dist/vendor/twenty-shared/RatingValues-Bd_cXQ5v.js +1 -0
  106. package/dist/vendor/twenty-shared/RatingValues-CT-y6O0b.mjs +388 -0
  107. package/dist/vendor/twenty-shared/application/applicationType.d.ts +17 -4
  108. package/dist/vendor/twenty-shared/application/applicationType.d.ts.map +1 -1
  109. package/dist/vendor/twenty-shared/application/assetManifestType.d.ts +7 -0
  110. package/dist/vendor/twenty-shared/application/assetManifestType.d.ts.map +1 -0
  111. package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts +2 -0
  112. package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts.map +1 -0
  113. package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts +2 -0
  114. package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts.map +1 -0
  115. package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts +2 -0
  116. package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts.map +1 -0
  117. package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts +8 -0
  118. package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts.map +1 -0
  119. package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts +12 -1
  120. package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts.map +1 -1
  121. package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts +10 -0
  122. package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts.map +1 -0
  123. package/dist/vendor/twenty-shared/application/index.d.ts +11 -5
  124. package/dist/vendor/twenty-shared/application/index.d.ts.map +1 -1
  125. package/dist/vendor/twenty-shared/application/{serverlessFunctionManifestType.d.ts → logicFunctionManifestType.d.ts} +9 -5
  126. package/dist/vendor/twenty-shared/application/logicFunctionManifestType.d.ts.map +1 -0
  127. package/dist/vendor/twenty-shared/application/manifestType.d.ts +20 -0
  128. package/dist/vendor/twenty-shared/application/manifestType.d.ts.map +1 -0
  129. package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts +5 -0
  130. package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts.map +1 -0
  131. package/dist/vendor/twenty-shared/application/objectManifestType.d.ts +2 -2
  132. package/dist/vendor/twenty-shared/application/objectManifestType.d.ts.map +1 -1
  133. package/dist/vendor/twenty-shared/application/roleManifestType.d.ts +3 -18
  134. package/dist/vendor/twenty-shared/application/roleManifestType.d.ts.map +1 -1
  135. package/dist/vendor/twenty-shared/application.cjs +1 -1
  136. package/dist/vendor/twenty-shared/application.mjs +8 -3
  137. package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts +2 -0
  138. package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts.map +1 -0
  139. package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts +2 -0
  140. package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts.map +1 -0
  141. package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts +2 -0
  142. package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts.map +1 -0
  143. package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts +165 -0
  144. package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts.map +1 -0
  145. package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts +3 -0
  146. package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts.map +1 -0
  147. package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts +2 -0
  148. package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts.map +1 -0
  149. package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts +1 -0
  150. package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts.map +1 -1
  151. package/dist/vendor/twenty-shared/constants/index.d.ts +8 -0
  152. package/dist/vendor/twenty-shared/constants/index.d.ts.map +1 -1
  153. package/dist/vendor/twenty-shared/constants.cjs +1 -1
  154. package/dist/vendor/twenty-shared/constants.mjs +56 -35
  155. package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts +1 -1
  156. package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts.map +1 -1
  157. package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts +4 -0
  158. package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts.map +1 -1
  159. package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts +4 -0
  160. package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts.map +1 -1
  161. package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts +3 -3
  162. package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts.map +1 -1
  163. package/dist/vendor/twenty-shared/isValidCountryCode-D-UqlXRW.js +4 -0
  164. package/dist/vendor/twenty-shared/{isValidCountryCode-E35rsxfD.mjs → isValidCountryCode-Dyji5s5r.mjs} +2351 -2320
  165. package/dist/vendor/twenty-shared/metadata/MetadataValidationError.d.ts.map +1 -1
  166. package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts +5 -4
  167. package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts.map +1 -1
  168. package/dist/vendor/twenty-shared/metadata/index.d.ts +1 -1
  169. package/dist/vendor/twenty-shared/metadata/index.d.ts.map +1 -1
  170. package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts +2206 -0
  171. package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts.map +1 -0
  172. package/dist/vendor/twenty-shared/metadata.cjs +1 -1
  173. package/dist/vendor/twenty-shared/metadata.mjs +2039 -69
  174. package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts +1 -0
  175. package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts.map +1 -1
  176. package/dist/vendor/twenty-shared/translations/index.d.ts +1 -0
  177. package/dist/vendor/twenty-shared/translations/index.d.ts.map +1 -1
  178. package/dist/vendor/twenty-shared/translations.cjs +1 -1
  179. package/dist/vendor/twenty-shared/translations.mjs +2 -2
  180. package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts +6 -0
  181. package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts.map +1 -0
  182. package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts +44 -88
  183. package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts.map +1 -1
  184. package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts +2 -1
  185. package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts.map +1 -1
  186. package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts +15 -9
  187. package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts.map +1 -1
  188. package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts +18 -17
  189. package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts.map +1 -1
  190. package/dist/vendor/twenty-shared/types/FileCategory.d.ts +12 -0
  191. package/dist/vendor/twenty-shared/types/FileCategory.d.ts.map +1 -0
  192. package/dist/vendor/twenty-shared/types/FileFolder.d.ts +15 -0
  193. package/dist/vendor/twenty-shared/types/FileFolder.d.ts.map +1 -0
  194. package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts +2 -0
  195. package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts.map +1 -0
  196. package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts +1 -1
  197. package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts.map +1 -1
  198. package/dist/vendor/twenty-shared/types/IsNever.type.d.ts +2 -0
  199. package/dist/vendor/twenty-shared/types/IsNever.type.d.ts.map +1 -0
  200. package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts +4 -0
  201. package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts.map +1 -0
  202. package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts +28 -0
  203. package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts.map +1 -0
  204. package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts +4 -0
  205. package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts.map +1 -1
  206. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts +15 -0
  207. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts.map +1 -0
  208. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts +11 -0
  209. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts.map +1 -0
  210. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts +5 -0
  211. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts.map +1 -0
  212. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts +19 -0
  213. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts.map +1 -0
  214. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts +6 -0
  215. package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts.map +1 -0
  216. package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts +5 -0
  217. package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts.map +1 -0
  218. package/dist/vendor/twenty-shared/types/SettingsPath.d.ts +5 -4
  219. package/dist/vendor/twenty-shared/types/SettingsPath.d.ts.map +1 -1
  220. package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts +2 -0
  221. package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts.map +1 -0
  222. package/dist/vendor/twenty-shared/types/index.d.ts +22 -4
  223. package/dist/vendor/twenty-shared/types/index.d.ts.map +1 -1
  224. package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts +6 -0
  225. package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts.map +1 -0
  226. package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts +2 -0
  227. package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts.map +1 -0
  228. package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts +18 -0
  229. package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts.map +1 -0
  230. package/dist/vendor/twenty-shared/types.cjs +1 -1
  231. package/dist/vendor/twenty-shared/types.mjs +85 -76
  232. package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts +2 -0
  233. package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts.map +1 -0
  234. package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts +6 -0
  235. package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts.map +1 -0
  236. package/dist/vendor/twenty-shared/utils/filter/index.d.ts +13 -0
  237. package/dist/vendor/twenty-shared/utils/filter/index.d.ts.map +1 -1
  238. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts +7 -0
  239. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts.map +1 -0
  240. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts +7 -0
  241. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts.map +1 -0
  242. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts +10 -0
  243. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts.map +1 -0
  244. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts +7 -0
  245. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts.map +1 -0
  246. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts +7 -0
  247. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts.map +1 -0
  248. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts +7 -0
  249. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts.map +1 -0
  250. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts +7 -0
  251. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts.map +1 -0
  252. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts +7 -0
  253. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts.map +1 -0
  254. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts +7 -0
  255. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts.map +1 -0
  256. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts +7 -0
  257. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts.map +1 -0
  258. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts +7 -0
  259. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts.map +1 -0
  260. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts +7 -0
  261. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts.map +1 -0
  262. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts +7 -0
  263. package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts.map +1 -0
  264. package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts +2 -0
  265. package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts.map +1 -0
  266. package/dist/vendor/twenty-shared/utils/index.d.ts +19 -0
  267. package/dist/vendor/twenty-shared/utils/index.d.ts.map +1 -1
  268. package/dist/vendor/twenty-shared/utils/strings/index.d.ts +1 -0
  269. package/dist/vendor/twenty-shared/utils/strings/index.d.ts.map +1 -1
  270. package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts +2 -0
  271. package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts.map +1 -0
  272. package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts +2 -0
  273. package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts.map +1 -0
  274. package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts +2 -0
  275. package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts.map +1 -0
  276. package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts +2 -2
  277. package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts.map +1 -1
  278. package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts +2 -5
  279. package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts.map +1 -1
  280. package/dist/vendor/twenty-shared/utils.cjs +2 -2
  281. package/dist/vendor/twenty-shared/utils.mjs +994 -522
  282. package/dist/vendor/twenty-shared/workflow/index.d.ts +4 -0
  283. package/dist/vendor/twenty-shared/workflow/index.d.ts.map +1 -1
  284. package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts +2 -3
  285. package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts.map +1 -1
  286. package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts +2 -3
  287. package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts.map +1 -1
  288. package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts +29 -0
  289. package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts.map +1 -0
  290. package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts +18 -0
  291. package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts.map +1 -0
  292. package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts +5 -1
  293. package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts.map +1 -1
  294. package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts +5 -1
  295. package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts.map +1 -1
  296. package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts +32 -4
  297. package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts.map +1 -1
  298. package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts +32 -4
  299. package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts.map +1 -1
  300. package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts +32 -4
  301. package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts.map +1 -1
  302. package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts +6 -0
  303. package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts.map +1 -0
  304. package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts +12 -0
  305. package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts.map +1 -0
  306. package/dist/vendor/twenty-shared/workflow.cjs +3 -3
  307. package/dist/vendor/twenty-shared/workflow.mjs +205 -166
  308. package/dist/vendor/twenty-ui/AllIcons-CGPKtPQS.js +4188 -0
  309. package/dist/vendor/twenty-ui/AllIcons-CcTQbSjc.cjs +1 -0
  310. package/dist/vendor/twenty-ui/Animation-Dqlz22Qp.cjs +1 -0
  311. package/dist/vendor/twenty-ui/Animation-W4Sjfu-g.js +11 -0
  312. package/dist/vendor/twenty-ui/Avatar-Cg4dvBA_.js +130 -0
  313. package/dist/vendor/twenty-ui/Avatar-zyamQwOj.cjs +1 -0
  314. package/dist/vendor/twenty-ui/Button-BChGSHVB.js +257 -0
  315. package/dist/vendor/twenty-ui/Button-PLd38fEI.cjs +24 -0
  316. package/dist/vendor/twenty-ui/ColorSample-BEUix7Ah.cjs +16 -0
  317. package/dist/vendor/twenty-ui/ColorSample-Bp-he5lO.js +28 -0
  318. package/dist/vendor/twenty-ui/HoverBackground-D630rSrX.cjs +1 -0
  319. package/dist/vendor/twenty-ui/HoverBackground-bYDC0iDZ.js +5 -0
  320. package/dist/vendor/twenty-ui/Loader-9V3BLpiM.cjs +2 -0
  321. package/dist/vendor/twenty-ui/Loader-BmJ693nz.js +43 -0
  322. package/dist/vendor/twenty-ui/MainColorNames-DNUaoKmR.cjs +1 -0
  323. package/dist/vendor/twenty-ui/MainColorNames-O_b9E7H3.js +5 -0
  324. package/dist/vendor/twenty-ui/MainColorsLight-GOpmobTe.cjs +1 -0
  325. package/dist/vendor/twenty-ui/MainColorsLight-x_vjLhiq.js +1682 -0
  326. package/dist/vendor/twenty-ui/MobileViewport-BcwxurOJ.cjs +1 -0
  327. package/dist/vendor/twenty-ui/MobileViewport-CDXq37n6.js +4 -0
  328. package/dist/vendor/twenty-ui/OverflowingTextWithTooltip-1P96Lw-o.cjs +1 -0
  329. package/dist/vendor/twenty-ui/OverflowingTextWithTooltip-F-KEqUMB.js +132 -0
  330. package/dist/vendor/twenty-ui/Pill-C3ErQi9y.js +16 -0
  331. package/dist/vendor/twenty-ui/Pill-D732nsLI.cjs +1 -0
  332. package/dist/vendor/twenty-ui/Tag-CfX8tARK.js +99 -0
  333. package/dist/vendor/twenty-ui/Tag-DIE1bmT7.cjs +1 -0
  334. package/dist/vendor/twenty-ui/ThemeCommon-BiQXECTo.cjs +1 -0
  335. package/dist/vendor/twenty-ui/ThemeCommon-CUpBXrDJ.js +867 -0
  336. package/dist/vendor/twenty-ui/ThemeContextProvider-DRVSWXAb.js +26 -0
  337. package/dist/vendor/twenty-ui/ThemeContextProvider-DZWArlAl.cjs +1 -0
  338. package/dist/vendor/twenty-ui/Toggle-8vjP6D_0.cjs +4 -0
  339. package/dist/vendor/twenty-ui/Toggle-Bd3-khQW.js +169 -0
  340. package/dist/vendor/twenty-ui/VisibilityHidden-Bkyg_zrv.cjs +1 -0
  341. package/dist/vendor/twenty-ui/VisibilityHidden-D9rwE91j.js +11 -0
  342. package/dist/vendor/twenty-ui/VisibilityHiddenInput-B3xu3qIM.cjs +1 -0
  343. package/dist/vendor/twenty-ui/VisibilityHiddenInput-CpO8FZey.js +8 -0
  344. package/dist/vendor/twenty-ui/accessibility/components/VisibilityHidden.d.ts +4 -0
  345. package/dist/vendor/twenty-ui/accessibility/components/VisibilityHidden.d.ts.map +1 -0
  346. package/dist/vendor/twenty-ui/accessibility/components/VisibilityHiddenInput.d.ts +5 -0
  347. package/dist/vendor/twenty-ui/accessibility/components/VisibilityHiddenInput.d.ts.map +1 -0
  348. package/dist/vendor/twenty-ui/accessibility/index.d.ts +4 -0
  349. package/dist/vendor/twenty-ui/accessibility/index.d.ts.map +1 -0
  350. package/dist/vendor/twenty-ui/accessibility/utils/visibility-hidden.d.ts +2 -0
  351. package/dist/vendor/twenty-ui/accessibility/utils/visibility-hidden.d.ts.map +1 -0
  352. package/dist/vendor/twenty-ui/accessibility.cjs +1 -0
  353. package/dist/vendor/twenty-ui/accessibility.mjs +8 -0
  354. package/dist/vendor/twenty-ui/assets/index.d.ts +1 -0
  355. package/dist/vendor/twenty-ui/assets/index.d.ts.map +1 -0
  356. package/dist/vendor/twenty-ui/assets.cjs +1 -0
  357. package/dist/vendor/twenty-ui/assets.mjs +1 -0
  358. package/dist/vendor/twenty-ui/components/Pill/Pill.d.ts +10 -0
  359. package/dist/vendor/twenty-ui/components/Pill/Pill.d.ts.map +1 -0
  360. package/dist/vendor/twenty-ui/components/avatar-chip/AvatarChip.d.ts +18 -0
  361. package/dist/vendor/twenty-ui/components/avatar-chip/AvatarChip.d.ts.map +1 -0
  362. package/dist/vendor/twenty-ui/components/avatar-chip/MultipleAvatarChip.d.ts +15 -0
  363. package/dist/vendor/twenty-ui/components/avatar-chip/MultipleAvatarChip.d.ts.map +1 -0
  364. package/dist/vendor/twenty-ui/components/chip/Chip.d.ts +34 -0
  365. package/dist/vendor/twenty-ui/components/chip/Chip.d.ts.map +1 -0
  366. package/dist/vendor/twenty-ui/components/chip/LinkChip.d.ts +13 -0
  367. package/dist/vendor/twenty-ui/components/chip/LinkChip.d.ts.map +1 -0
  368. package/dist/vendor/twenty-ui/components/chip/constants/LinkChipClickOutsideId.d.ts +2 -0
  369. package/dist/vendor/twenty-ui/components/chip/constants/LinkChipClickOutsideId.d.ts.map +1 -0
  370. package/dist/vendor/twenty-ui/components/index.d.ts +13 -0
  371. package/dist/vendor/twenty-ui/components/index.d.ts.map +1 -0
  372. package/dist/vendor/twenty-ui/components/tag/Tag.d.ts +20 -0
  373. package/dist/vendor/twenty-ui/components/tag/Tag.d.ts.map +1 -0
  374. package/dist/vendor/twenty-ui/components.cjs +1 -0
  375. package/dist/vendor/twenty-ui/components.mjs +235 -0
  376. package/dist/vendor/twenty-ui/config-D3RPmuwk.cjs +1 -0
  377. package/dist/vendor/twenty-ui/config-D9UgCg2c.js +18 -0
  378. package/dist/vendor/twenty-ui/createState---bO_WLW.cjs +1 -0
  379. package/dist/vendor/twenty-ui/createState-DvtGszbK.js +9 -0
  380. package/dist/vendor/twenty-ui/display/avatar/components/Avatar.d.ts +20 -0
  381. package/dist/vendor/twenty-ui/display/avatar/components/Avatar.d.ts.map +1 -0
  382. package/dist/vendor/twenty-ui/display/avatar/components/AvatarGroup.d.ts +7 -0
  383. package/dist/vendor/twenty-ui/display/avatar/components/AvatarGroup.d.ts.map +1 -0
  384. package/dist/vendor/twenty-ui/display/avatar/components/states/isInvalidAvatarUrlState.d.ts +2 -0
  385. package/dist/vendor/twenty-ui/display/avatar/components/states/isInvalidAvatarUrlState.d.ts.map +1 -0
  386. package/dist/vendor/twenty-ui/display/avatar/constants/AvatarPropertiesBySize.d.ts +23 -0
  387. package/dist/vendor/twenty-ui/display/avatar/constants/AvatarPropertiesBySize.d.ts.map +1 -0
  388. package/dist/vendor/twenty-ui/display/avatar/types/AvatarSize.d.ts +2 -0
  389. package/dist/vendor/twenty-ui/display/avatar/types/AvatarSize.d.ts.map +1 -0
  390. package/dist/vendor/twenty-ui/display/avatar/types/AvatarType.d.ts +2 -0
  391. package/dist/vendor/twenty-ui/display/avatar/types/AvatarType.d.ts.map +1 -0
  392. package/dist/vendor/twenty-ui/display/banner/components/Banner.d.ts +9 -0
  393. package/dist/vendor/twenty-ui/display/banner/components/Banner.d.ts.map +1 -0
  394. package/dist/vendor/twenty-ui/display/banner/components/SidePanelInformationBanner.d.ts +8 -0
  395. package/dist/vendor/twenty-ui/display/banner/components/SidePanelInformationBanner.d.ts.map +1 -0
  396. package/dist/vendor/twenty-ui/display/checkmark/components/AnimatedCheckmark.d.ts +10 -0
  397. package/dist/vendor/twenty-ui/display/checkmark/components/AnimatedCheckmark.d.ts.map +1 -0
  398. package/dist/vendor/twenty-ui/display/checkmark/components/Checkmark.d.ts +7 -0
  399. package/dist/vendor/twenty-ui/display/checkmark/components/Checkmark.d.ts.map +1 -0
  400. package/dist/vendor/twenty-ui/display/color/components/ColorSample.d.ts +14 -0
  401. package/dist/vendor/twenty-ui/display/color/components/ColorSample.d.ts.map +1 -0
  402. package/dist/vendor/twenty-ui/display/command-block/components/CommandBlock.d.ts +9 -0
  403. package/dist/vendor/twenty-ui/display/command-block/components/CommandBlock.d.ts.map +1 -0
  404. package/dist/vendor/twenty-ui/display/icon/components/IconAddressBook.d.ts +6 -0
  405. package/dist/vendor/twenty-ui/display/icon/components/IconAddressBook.d.ts.map +1 -0
  406. package/dist/vendor/twenty-ui/display/icon/components/IconChartBarHorizontal.d.ts +6 -0
  407. package/dist/vendor/twenty-ui/display/icon/components/IconChartBarHorizontal.d.ts.map +1 -0
  408. package/dist/vendor/twenty-ui/display/icon/components/IconGmail.d.ts +6 -0
  409. package/dist/vendor/twenty-ui/display/icon/components/IconGmail.d.ts.map +1 -0
  410. package/dist/vendor/twenty-ui/display/icon/components/IconGoogle.d.ts +6 -0
  411. package/dist/vendor/twenty-ui/display/icon/components/IconGoogle.d.ts.map +1 -0
  412. package/dist/vendor/twenty-ui/display/icon/components/IconGoogleCalendar.d.ts +6 -0
  413. package/dist/vendor/twenty-ui/display/icon/components/IconGoogleCalendar.d.ts.map +1 -0
  414. package/dist/vendor/twenty-ui/display/icon/components/IconLock.d.ts +6 -0
  415. package/dist/vendor/twenty-ui/display/icon/components/IconLock.d.ts.map +1 -0
  416. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoft.d.ts +6 -0
  417. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoft.d.ts.map +1 -0
  418. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftCalendar.d.ts +6 -0
  419. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftCalendar.d.ts.map +1 -0
  420. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftOutlook.d.ts +6 -0
  421. package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftOutlook.d.ts.map +1 -0
  422. package/dist/vendor/twenty-ui/display/icon/components/IconRelationManyToOne.d.ts +6 -0
  423. package/dist/vendor/twenty-ui/display/icon/components/IconRelationManyToOne.d.ts.map +1 -0
  424. package/dist/vendor/twenty-ui/display/icon/components/IconTrashXOff.d.ts +6 -0
  425. package/dist/vendor/twenty-ui/display/icon/components/IconTrashXOff.d.ts.map +1 -0
  426. package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStar.d.ts +6 -0
  427. package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStar.d.ts.map +1 -0
  428. package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStarFilled.d.ts +6 -0
  429. package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStarFilled.d.ts.map +1 -0
  430. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconArray.d.ts +6 -0
  431. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconArray.d.ts.map +1 -0
  432. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarEvent.d.ts +6 -0
  433. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarEvent.d.ts.map +1 -0
  434. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarTime.d.ts +6 -0
  435. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarTime.d.ts.map +1 -0
  436. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCurrency.d.ts +6 -0
  437. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCurrency.d.ts.map +1 -0
  438. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconFile.d.ts +6 -0
  439. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconFile.d.ts.map +1 -0
  440. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconJson.d.ts +6 -0
  441. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconJson.d.ts.map +1 -0
  442. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconLink.d.ts +6 -0
  443. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconLink.d.ts.map +1 -0
  444. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMail.d.ts +6 -0
  445. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMail.d.ts.map +1 -0
  446. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconManyToMany.d.ts +6 -0
  447. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconManyToMany.d.ts.map +1 -0
  448. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMap.d.ts +6 -0
  449. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMap.d.ts.map +1 -0
  450. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconNumbers.d.ts +6 -0
  451. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconNumbers.d.ts.map +1 -0
  452. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToMany.d.ts +6 -0
  453. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToMany.d.ts.map +1 -0
  454. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToOne.d.ts +6 -0
  455. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToOne.d.ts.map +1 -0
  456. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconPhone.d.ts +6 -0
  457. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconPhone.d.ts.map +1 -0
  458. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconSetting.d.ts +6 -0
  459. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconSetting.d.ts.map +1 -0
  460. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconStar.d.ts +6 -0
  461. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconStar.d.ts.map +1 -0
  462. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTag.d.ts +6 -0
  463. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTag.d.ts.map +1 -0
  464. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTags.d.ts +6 -0
  465. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTags.d.ts.map +1 -0
  466. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconText.d.ts +6 -0
  467. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconText.d.ts.map +1 -0
  468. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconToggle.d.ts +6 -0
  469. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconToggle.d.ts.map +1 -0
  470. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUid.d.ts +6 -0
  471. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUid.d.ts.map +1 -0
  472. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUser.d.ts +6 -0
  473. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUser.d.ts.map +1 -0
  474. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconWrapper.d.ts +5 -0
  475. package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconWrapper.d.ts.map +1 -0
  476. package/dist/vendor/twenty-ui/display/icon/components/TablerIcons.d.ts +3 -0
  477. package/dist/vendor/twenty-ui/display/icon/components/TablerIcons.d.ts.map +1 -0
  478. package/dist/vendor/twenty-ui/display/icon/hooks/useIcons.d.ts +5 -0
  479. package/dist/vendor/twenty-ui/display/icon/hooks/useIcons.d.ts.map +1 -0
  480. package/dist/vendor/twenty-ui/display/icon/providers/IconsProvider.d.ts +6 -0
  481. package/dist/vendor/twenty-ui/display/icon/providers/IconsProvider.d.ts.map +1 -0
  482. package/dist/vendor/twenty-ui/display/icon/providers/internal/AllIcons.d.ts +4185 -0
  483. package/dist/vendor/twenty-ui/display/icon/providers/internal/AllIcons.d.ts.map +1 -0
  484. package/dist/vendor/twenty-ui/display/icon/states/iconsState.d.ts +4 -0
  485. package/dist/vendor/twenty-ui/display/icon/states/iconsState.d.ts.map +1 -0
  486. package/dist/vendor/twenty-ui/display/icon/types/IconComponent.d.ts +11 -0
  487. package/dist/vendor/twenty-ui/display/icon/types/IconComponent.d.ts.map +1 -0
  488. package/dist/vendor/twenty-ui/display/index.d.ts +76 -0
  489. package/dist/vendor/twenty-ui/display/index.d.ts.map +1 -0
  490. package/dist/vendor/twenty-ui/display/info/components/Info.d.ts +12 -0
  491. package/dist/vendor/twenty-ui/display/info/components/Info.d.ts.map +1 -0
  492. package/dist/vendor/twenty-ui/display/status/components/Status.d.ts +13 -0
  493. package/dist/vendor/twenty-ui/display/status/components/Status.d.ts.map +1 -0
  494. package/dist/vendor/twenty-ui/display/text/components/HorizontalSeparator.d.ts +11 -0
  495. package/dist/vendor/twenty-ui/display/text/components/HorizontalSeparator.d.ts.map +1 -0
  496. package/dist/vendor/twenty-ui/display/text/components/SeparatorLineText.d.ts +6 -0
  497. package/dist/vendor/twenty-ui/display/text/components/SeparatorLineText.d.ts.map +1 -0
  498. package/dist/vendor/twenty-ui/display/tooltip/AppTooltip.d.ts +31 -0
  499. package/dist/vendor/twenty-ui/display/tooltip/AppTooltip.d.ts.map +1 -0
  500. package/dist/vendor/twenty-ui/display/tooltip/OverflowingTextWithTooltip.d.ts +16 -0
  501. package/dist/vendor/twenty-ui/display/tooltip/OverflowingTextWithTooltip.d.ts.map +1 -0
  502. package/dist/vendor/twenty-ui/display/typography/components/H1Title.d.ts +15 -0
  503. package/dist/vendor/twenty-ui/display/typography/components/H1Title.d.ts.map +1 -0
  504. package/dist/vendor/twenty-ui/display/typography/components/H2Title.d.ts +9 -0
  505. package/dist/vendor/twenty-ui/display/typography/components/H2Title.d.ts.map +1 -0
  506. package/dist/vendor/twenty-ui/display/typography/components/H3Title.d.ts +10 -0
  507. package/dist/vendor/twenty-ui/display/typography/components/H3Title.d.ts.map +1 -0
  508. package/dist/vendor/twenty-ui/display/typography/components/Label.d.ts +9 -0
  509. package/dist/vendor/twenty-ui/display/typography/components/Label.d.ts.map +1 -0
  510. package/dist/vendor/twenty-ui/display/typography/components/StyledText.d.ts +20 -0
  511. package/dist/vendor/twenty-ui/display/typography/components/StyledText.d.ts.map +1 -0
  512. package/dist/vendor/twenty-ui/display.cjs +8 -0
  513. package/dist/vendor/twenty-ui/display.mjs +1194 -0
  514. package/dist/vendor/twenty-ui/emotion-react-jsx-runtime.browser.esm-BUNawPtg.js +1765 -0
  515. package/dist/vendor/twenty-ui/emotion-react-jsx-runtime.browser.esm-pt_kQSCG.cjs +44 -0
  516. package/dist/vendor/twenty-ui/feedback/index.d.ts +6 -0
  517. package/dist/vendor/twenty-ui/feedback/index.d.ts.map +1 -0
  518. package/dist/vendor/twenty-ui/feedback/loader/components/Loader.d.ts +8 -0
  519. package/dist/vendor/twenty-ui/feedback/loader/components/Loader.d.ts.map +1 -0
  520. package/dist/vendor/twenty-ui/feedback/progress-bar/components/CircularProgressBar.d.ts +8 -0
  521. package/dist/vendor/twenty-ui/feedback/progress-bar/components/CircularProgressBar.d.ts.map +1 -0
  522. package/dist/vendor/twenty-ui/feedback/progress-bar/components/ProgressBar.d.ts +14 -0
  523. package/dist/vendor/twenty-ui/feedback/progress-bar/components/ProgressBar.d.ts.map +1 -0
  524. package/dist/vendor/twenty-ui/feedback/progress-bar/hooks/useProgressAnimation.d.ts +13 -0
  525. package/dist/vendor/twenty-ui/feedback/progress-bar/hooks/useProgressAnimation.d.ts.map +1 -0
  526. package/dist/vendor/twenty-ui/feedback.cjs +1 -0
  527. package/dist/vendor/twenty-ui/feedback.mjs +124 -0
  528. package/dist/vendor/twenty-ui/getDisplayValueByUrlType-BMzTxZmB.cjs +1 -0
  529. package/dist/vendor/twenty-ui/getDisplayValueByUrlType-BqPVhhu2.js +20 -0
  530. package/dist/vendor/twenty-ui/index.cjs +1 -0
  531. package/dist/vendor/twenty-ui/index.d.ts +3 -0
  532. package/dist/vendor/twenty-ui/index.d.ts.map +1 -0
  533. package/dist/vendor/twenty-ui/index.mjs +4 -0
  534. package/dist/vendor/twenty-ui/input/button/components/AnimatedButton.d.ts +9 -0
  535. package/dist/vendor/twenty-ui/input/button/components/AnimatedButton.d.ts.map +1 -0
  536. package/dist/vendor/twenty-ui/input/button/components/AnimatedLightIconButton.d.ts +19 -0
  537. package/dist/vendor/twenty-ui/input/button/components/AnimatedLightIconButton.d.ts.map +1 -0
  538. package/dist/vendor/twenty-ui/input/button/components/Button/Button.d.ts +32 -0
  539. package/dist/vendor/twenty-ui/input/button/components/Button/Button.d.ts.map +1 -0
  540. package/dist/vendor/twenty-ui/input/button/components/Button/constant.d.ts +2 -0
  541. package/dist/vendor/twenty-ui/input/button/components/Button/constant.d.ts.map +1 -0
  542. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonHotKeys.d.ts +9 -0
  543. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonHotKeys.d.ts.map +1 -0
  544. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonIcon.d.ts +7 -0
  545. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonIcon.d.ts.map +1 -0
  546. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonSoon.d.ts +6 -0
  547. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonSoon.d.ts.map +1 -0
  548. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonText.d.ts +6 -0
  549. package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonText.d.ts.map +1 -0
  550. package/dist/vendor/twenty-ui/input/button/components/ButtonGroup.d.ts +9 -0
  551. package/dist/vendor/twenty-ui/input/button/components/ButtonGroup.d.ts.map +1 -0
  552. package/dist/vendor/twenty-ui/input/button/components/ColorPickerButton.d.ts +9 -0
  553. package/dist/vendor/twenty-ui/input/button/components/ColorPickerButton.d.ts.map +1 -0
  554. package/dist/vendor/twenty-ui/input/button/components/FloatingButton.d.ts +18 -0
  555. package/dist/vendor/twenty-ui/input/button/components/FloatingButton.d.ts.map +1 -0
  556. package/dist/vendor/twenty-ui/input/button/components/FloatingButtonGroup.d.ts +9 -0
  557. package/dist/vendor/twenty-ui/input/button/components/FloatingButtonGroup.d.ts.map +1 -0
  558. package/dist/vendor/twenty-ui/input/button/components/FloatingIconButton.d.ts +19 -0
  559. package/dist/vendor/twenty-ui/input/button/components/FloatingIconButton.d.ts.map +1 -0
  560. package/dist/vendor/twenty-ui/input/button/components/FloatingIconButtonGroup.d.ts +13 -0
  561. package/dist/vendor/twenty-ui/input/button/components/FloatingIconButtonGroup.d.ts.map +1 -0
  562. package/dist/vendor/twenty-ui/input/button/components/IconButton.d.ts +23 -0
  563. package/dist/vendor/twenty-ui/input/button/components/IconButton.d.ts.map +1 -0
  564. package/dist/vendor/twenty-ui/input/button/components/IconButtonGroup.d.ts +13 -0
  565. package/dist/vendor/twenty-ui/input/button/components/IconButtonGroup.d.ts.map +1 -0
  566. package/dist/vendor/twenty-ui/input/button/components/InsideButton.d.ts +11 -0
  567. package/dist/vendor/twenty-ui/input/button/components/InsideButton.d.ts.map +1 -0
  568. package/dist/vendor/twenty-ui/input/button/components/LightButton.d.ts +17 -0
  569. package/dist/vendor/twenty-ui/input/button/components/LightButton.d.ts.map +1 -0
  570. package/dist/vendor/twenty-ui/input/button/components/LightIconButton.d.ts +19 -0
  571. package/dist/vendor/twenty-ui/input/button/components/LightIconButton.d.ts.map +1 -0
  572. package/dist/vendor/twenty-ui/input/button/components/LightIconButtonGroup.d.ts +19 -0
  573. package/dist/vendor/twenty-ui/input/button/components/LightIconButtonGroup.d.ts.map +1 -0
  574. package/dist/vendor/twenty-ui/input/button/components/MainButton.d.ts +19 -0
  575. package/dist/vendor/twenty-ui/input/button/components/MainButton.d.ts.map +1 -0
  576. package/dist/vendor/twenty-ui/input/button/components/RoundedIconButton.d.ts +8 -0
  577. package/dist/vendor/twenty-ui/input/button/components/RoundedIconButton.d.ts.map +1 -0
  578. package/dist/vendor/twenty-ui/input/button/components/TabButton/TabButton.d.ts +21 -0
  579. package/dist/vendor/twenty-ui/input/button/components/TabButton/TabButton.d.ts.map +1 -0
  580. package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/StyledTabBase.d.ts +22 -0
  581. package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/StyledTabBase.d.ts.map +1 -0
  582. package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/TabContent.d.ts +17 -0
  583. package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/TabContent.d.ts.map +1 -0
  584. package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditor.d.ts +14 -0
  585. package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditor.d.ts.map +1 -0
  586. package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditorHeader.d.ts +7 -0
  587. package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditorHeader.d.ts.map +1 -0
  588. package/dist/vendor/twenty-ui/input/code-editor/constants/BaseCodeEditorThemeId.d.ts +2 -0
  589. package/dist/vendor/twenty-ui/input/code-editor/constants/BaseCodeEditorThemeId.d.ts.map +1 -0
  590. package/dist/vendor/twenty-ui/input/code-editor/index.d.ts +4 -0
  591. package/dist/vendor/twenty-ui/input/code-editor/index.d.ts.map +1 -0
  592. package/dist/vendor/twenty-ui/input/code-editor/theme/utils/getBaseCodeEditorTheme.d.ts +7 -0
  593. package/dist/vendor/twenty-ui/input/code-editor/theme/utils/getBaseCodeEditorTheme.d.ts.map +1 -0
  594. package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemeCard.d.ts +15 -0
  595. package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemeCard.d.ts.map +1 -0
  596. package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemePicker.d.ts +12 -0
  597. package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemePicker.d.ts.map +1 -0
  598. package/dist/vendor/twenty-ui/input/components/CardPicker.d.ts +10 -0
  599. package/dist/vendor/twenty-ui/input/components/CardPicker.d.ts.map +1 -0
  600. package/dist/vendor/twenty-ui/input/components/Checkbox.d.ts +34 -0
  601. package/dist/vendor/twenty-ui/input/components/Checkbox.d.ts.map +1 -0
  602. package/dist/vendor/twenty-ui/input/components/IconListViewGrip.d.ts +6 -0
  603. package/dist/vendor/twenty-ui/input/components/IconListViewGrip.d.ts.map +1 -0
  604. package/dist/vendor/twenty-ui/input/components/Radio.d.ts +33 -0
  605. package/dist/vendor/twenty-ui/input/components/Radio.d.ts.map +1 -0
  606. package/dist/vendor/twenty-ui/input/components/RadioGroup.d.ts +10 -0
  607. package/dist/vendor/twenty-ui/input/components/RadioGroup.d.ts.map +1 -0
  608. package/dist/vendor/twenty-ui/input/components/SearchInput.d.ts +13 -0
  609. package/dist/vendor/twenty-ui/input/components/SearchInput.d.ts.map +1 -0
  610. package/dist/vendor/twenty-ui/input/components/Toggle.d.ts +12 -0
  611. package/dist/vendor/twenty-ui/input/components/Toggle.d.ts.map +1 -0
  612. package/dist/vendor/twenty-ui/input/index.d.ts +59 -0
  613. package/dist/vendor/twenty-ui/input/index.d.ts.map +1 -0
  614. package/dist/vendor/twenty-ui/input/types/ColorScheme.d.ts +2 -0
  615. package/dist/vendor/twenty-ui/input/types/ColorScheme.d.ts.map +1 -0
  616. package/dist/vendor/twenty-ui/input/types/SelectOption.d.ts +12 -0
  617. package/dist/vendor/twenty-ui/input/types/SelectOption.d.ts.map +1 -0
  618. package/dist/vendor/twenty-ui/input.cjs +179 -0
  619. package/dist/vendor/twenty-ui/input.mjs +1247 -0
  620. package/dist/vendor/twenty-ui/isValidCountryCode-Dyji5s5r-B7O5eJvP.js +10526 -0
  621. package/dist/vendor/twenty-ui/isValidCountryCode-Dyji5s5r-MH68p3NE.cjs +25 -0
  622. package/dist/vendor/twenty-ui/json-visualizer/components/JsonArrayNode.d.ts +11 -0
  623. package/dist/vendor/twenty-ui/json-visualizer/components/JsonArrayNode.d.ts.map +1 -0
  624. package/dist/vendor/twenty-ui/json-visualizer/components/JsonNestedNode.d.ts +19 -0
  625. package/dist/vendor/twenty-ui/json-visualizer/components/JsonNestedNode.d.ts.map +1 -0
  626. package/dist/vendor/twenty-ui/json-visualizer/components/JsonNode.d.ts +9 -0
  627. package/dist/vendor/twenty-ui/json-visualizer/components/JsonNode.d.ts.map +1 -0
  628. package/dist/vendor/twenty-ui/json-visualizer/components/JsonObjectNode.d.ts +11 -0
  629. package/dist/vendor/twenty-ui/json-visualizer/components/JsonObjectNode.d.ts.map +1 -0
  630. package/dist/vendor/twenty-ui/json-visualizer/components/JsonTree.d.ts +16 -0
  631. package/dist/vendor/twenty-ui/json-visualizer/components/JsonTree.d.ts.map +1 -0
  632. package/dist/vendor/twenty-ui/json-visualizer/components/JsonTreeContextProvider.d.ts +7 -0
  633. package/dist/vendor/twenty-ui/json-visualizer/components/JsonTreeContextProvider.d.ts.map +1 -0
  634. package/dist/vendor/twenty-ui/json-visualizer/components/JsonValueNode.d.ts +16 -0
  635. package/dist/vendor/twenty-ui/json-visualizer/components/JsonValueNode.d.ts.map +1 -0
  636. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonArrow.d.ts +6 -0
  637. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonArrow.d.ts.map +1 -0
  638. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonList.d.ts +8 -0
  639. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonList.d.ts.map +1 -0
  640. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonListItem.d.ts +6 -0
  641. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonListItem.d.ts.map +1 -0
  642. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeLabel.d.ts +9 -0
  643. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeLabel.d.ts.map +1 -0
  644. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeValue.d.ts +7 -0
  645. package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeValue.d.ts.map +1 -0
  646. package/dist/vendor/twenty-ui/json-visualizer/contexts/JsonTreeContext.d.ts +18 -0
  647. package/dist/vendor/twenty-ui/json-visualizer/contexts/JsonTreeContext.d.ts.map +1 -0
  648. package/dist/vendor/twenty-ui/json-visualizer/hooks/useJsonTreeContextOrThrow.d.ts +2 -0
  649. package/dist/vendor/twenty-ui/json-visualizer/hooks/useJsonTreeContextOrThrow.d.ts.map +1 -0
  650. package/dist/vendor/twenty-ui/json-visualizer/index.d.ts +15 -0
  651. package/dist/vendor/twenty-ui/json-visualizer/index.d.ts.map +1 -0
  652. package/dist/vendor/twenty-ui/json-visualizer/types/GetJsonNodeHighlighting.d.ts +4 -0
  653. package/dist/vendor/twenty-ui/json-visualizer/types/GetJsonNodeHighlighting.d.ts.map +1 -0
  654. package/dist/vendor/twenty-ui/json-visualizer/types/JsonNodeHighlighting.d.ts +4 -0
  655. package/dist/vendor/twenty-ui/json-visualizer/types/JsonNodeHighlighting.d.ts.map +1 -0
  656. package/dist/vendor/twenty-ui/json-visualizer/utils/isArray.d.ts +2 -0
  657. package/dist/vendor/twenty-ui/json-visualizer/utils/isArray.d.ts.map +1 -0
  658. package/dist/vendor/twenty-ui/json-visualizer/utils/isTwoFirstDepths.d.ts +4 -0
  659. package/dist/vendor/twenty-ui/json-visualizer/utils/isTwoFirstDepths.d.ts.map +1 -0
  660. package/dist/vendor/twenty-ui/json-visualizer.cjs +7 -0
  661. package/dist/vendor/twenty-ui/json-visualizer.mjs +271 -0
  662. package/dist/vendor/twenty-ui/layout/animated-expandable-container/components/AnimatedExpandableContainer.d.ts +17 -0
  663. package/dist/vendor/twenty-ui/layout/animated-expandable-container/components/AnimatedExpandableContainer.d.ts.map +1 -0
  664. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts +2 -0
  665. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts.map +1 -0
  666. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurationObject.d.ts +5 -0
  667. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurationObject.d.ts.map +1 -0
  668. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurations.d.ts +4 -0
  669. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurations.d.ts.map +1 -0
  670. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationMode.d.ts +2 -0
  671. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationMode.d.ts.map +1 -0
  672. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationSize.d.ts +2 -0
  673. package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationSize.d.ts.map +1 -0
  674. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getCommonStyles.d.ts +16 -0
  675. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getCommonStyles.d.ts.map +1 -0
  676. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getExpandableAnimationConfig.d.ts +45 -0
  677. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getExpandableAnimationConfig.d.ts.map +1 -0
  678. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getTransitionValues.d.ts +15 -0
  679. package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getTransitionValues.d.ts.map +1 -0
  680. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/AnimatedPlaceholder.d.ts +10 -0
  681. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/AnimatedPlaceholder.d.ts.map +1 -0
  682. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/EmptyPlaceholderStyled.d.ts +31 -0
  683. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/EmptyPlaceholderStyled.d.ts.map +1 -0
  684. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/ErrorPlaceholderStyled.d.ts +21 -0
  685. package/dist/vendor/twenty-ui/layout/animated-placeholder/components/ErrorPlaceholderStyled.d.ts.map +1 -0
  686. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/Background.d.ts +2 -0
  687. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/Background.d.ts.map +1 -0
  688. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkBackground.d.ts +2 -0
  689. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkBackground.d.ts.map +1 -0
  690. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkMovingImage.d.ts +2 -0
  691. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkMovingImage.d.ts.map +1 -0
  692. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/MovingImage.d.ts +2 -0
  693. package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/MovingImage.d.ts.map +1 -0
  694. package/dist/vendor/twenty-ui/layout/animated-placeholder/index.d.ts +8 -0
  695. package/dist/vendor/twenty-ui/layout/animated-placeholder/index.d.ts.map +1 -0
  696. package/dist/vendor/twenty-ui/layout/card/components/Card.d.ts +9 -0
  697. package/dist/vendor/twenty-ui/layout/card/components/Card.d.ts.map +1 -0
  698. package/dist/vendor/twenty-ui/layout/card/components/CardContent.d.ts +7 -0
  699. package/dist/vendor/twenty-ui/layout/card/components/CardContent.d.ts.map +1 -0
  700. package/dist/vendor/twenty-ui/layout/card/components/CardFooter.d.ts +8 -0
  701. package/dist/vendor/twenty-ui/layout/card/components/CardFooter.d.ts.map +1 -0
  702. package/dist/vendor/twenty-ui/layout/card/components/CardHeader.d.ts +6 -0
  703. package/dist/vendor/twenty-ui/layout/card/components/CardHeader.d.ts.map +1 -0
  704. package/dist/vendor/twenty-ui/layout/index.d.ts +23 -0
  705. package/dist/vendor/twenty-ui/layout/index.d.ts.map +1 -0
  706. package/dist/vendor/twenty-ui/layout/section/components/Section.d.ts +21 -0
  707. package/dist/vendor/twenty-ui/layout/section/components/Section.d.ts.map +1 -0
  708. package/dist/vendor/twenty-ui/layout.cjs +6 -0
  709. package/dist/vendor/twenty-ui/layout.mjs +266 -0
  710. package/dist/vendor/twenty-ui/navigation/index.d.ts +43 -0
  711. package/dist/vendor/twenty-ui/navigation/index.d.ts.map +1 -0
  712. package/dist/vendor/twenty-ui/navigation/link/components/AdvancedSettingsToggle.d.ts +8 -0
  713. package/dist/vendor/twenty-ui/navigation/link/components/AdvancedSettingsToggle.d.ts.map +1 -0
  714. package/dist/vendor/twenty-ui/navigation/link/components/ClickToActionLink.d.ts +8 -0
  715. package/dist/vendor/twenty-ui/navigation/link/components/ClickToActionLink.d.ts.map +1 -0
  716. package/dist/vendor/twenty-ui/navigation/link/components/ContactLink.d.ts +10 -0
  717. package/dist/vendor/twenty-ui/navigation/link/components/ContactLink.d.ts.map +1 -0
  718. package/dist/vendor/twenty-ui/navigation/link/components/GithubVersionLink.d.ts +6 -0
  719. package/dist/vendor/twenty-ui/navigation/link/components/GithubVersionLink.d.ts.map +1 -0
  720. package/dist/vendor/twenty-ui/navigation/link/components/RawLink.d.ts +10 -0
  721. package/dist/vendor/twenty-ui/navigation/link/components/RawLink.d.ts.map +1 -0
  722. package/dist/vendor/twenty-ui/navigation/link/components/RoundedLink.d.ts +9 -0
  723. package/dist/vendor/twenty-ui/navigation/link/components/RoundedLink.d.ts.map +1 -0
  724. package/dist/vendor/twenty-ui/navigation/link/components/SocialLink.d.ts +16 -0
  725. package/dist/vendor/twenty-ui/navigation/link/components/SocialLink.d.ts.map +1 -0
  726. package/dist/vendor/twenty-ui/navigation/link/components/UndecoratedLink.d.ts +12 -0
  727. package/dist/vendor/twenty-ui/navigation/link/components/UndecoratedLink.d.ts.map +1 -0
  728. package/dist/vendor/twenty-ui/navigation/link/components/index.d.ts +9 -0
  729. package/dist/vendor/twenty-ui/navigation/link/components/index.d.ts.map +1 -0
  730. package/dist/vendor/twenty-ui/navigation/link/constants/Cal.d.ts +2 -0
  731. package/dist/vendor/twenty-ui/navigation/link/constants/Cal.d.ts.map +1 -0
  732. package/dist/vendor/twenty-ui/navigation/link/constants/GithubLink.d.ts +2 -0
  733. package/dist/vendor/twenty-ui/navigation/link/constants/GithubLink.d.ts.map +1 -0
  734. package/dist/vendor/twenty-ui/navigation/link/constants/TwentyPricingLink.d.ts +2 -0
  735. package/dist/vendor/twenty-ui/navigation/link/constants/TwentyPricingLink.d.ts.map +1 -0
  736. package/dist/vendor/twenty-ui/navigation/link/index.d.ts +4 -0
  737. package/dist/vendor/twenty-ui/navigation/link/index.d.ts.map +1 -0
  738. package/dist/vendor/twenty-ui/navigation/menu/components/MenuPicker.d.ts +18 -0
  739. package/dist/vendor/twenty-ui/navigation/menu/components/MenuPicker.d.ts.map +1 -0
  740. package/dist/vendor/twenty-ui/navigation/menu/components/index.d.ts +2 -0
  741. package/dist/vendor/twenty-ui/navigation/menu/components/index.d.ts.map +1 -0
  742. package/dist/vendor/twenty-ui/navigation/menu/index.d.ts +3 -0
  743. package/dist/vendor/twenty-ui/navigation/menu/index.d.ts.map +1 -0
  744. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItem.d.ts +41 -0
  745. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItem.d.ts.map +1 -0
  746. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemAvatar.d.ts +22 -0
  747. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemAvatar.d.ts.map +1 -0
  748. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemDraggable.d.ts +21 -0
  749. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemDraggable.d.ts.map +1 -0
  750. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemHotKeys.d.ts +6 -0
  751. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemHotKeys.d.ts.map +1 -0
  752. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelect.d.ts +16 -0
  753. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelect.d.ts.map +1 -0
  754. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectAvatar.d.ts +14 -0
  755. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectAvatar.d.ts.map +1 -0
  756. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectTag.d.ts +15 -0
  757. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectTag.d.ts.map +1 -0
  758. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemNavigate.d.ts +11 -0
  759. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemNavigate.d.ts.map +1 -0
  760. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelect.d.ts +29 -0
  761. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelect.d.ts.map +1 -0
  762. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectAvatar.d.ts +16 -0
  763. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectAvatar.d.ts.map +1 -0
  764. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectColor.d.ts +17 -0
  765. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectColor.d.ts.map +1 -0
  766. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectTag.d.ts +17 -0
  767. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectTag.d.ts.map +1 -0
  768. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSuggestion.d.ts +13 -0
  769. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSuggestion.d.ts.map +1 -0
  770. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemToggle.d.ts +16 -0
  771. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemToggle.d.ts.map +1 -0
  772. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/index.d.ts +16 -0
  773. package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/index.d.ts.map +1 -0
  774. package/dist/vendor/twenty-ui/navigation/menu/menu-item/index.d.ts +5 -0
  775. package/dist/vendor/twenty-ui/navigation/menu/menu-item/index.d.ts.map +1 -0
  776. package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/MenuItemLeftContent.d.ts +17 -0
  777. package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/MenuItemLeftContent.d.ts.map +1 -0
  778. package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/StyledMenuItemBase.d.ts +64 -0
  779. package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/StyledMenuItemBase.d.ts.map +1 -0
  780. package/dist/vendor/twenty-ui/navigation/menu/menu-item/types/MenuItemAccent.d.ts +2 -0
  781. package/dist/vendor/twenty-ui/navigation/menu/menu-item/types/MenuItemAccent.d.ts.map +1 -0
  782. package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBar.d.ts +13 -0
  783. package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBar.d.ts.map +1 -0
  784. package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBarItem.d.ts +10 -0
  785. package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBarItem.d.ts.map +1 -0
  786. package/dist/vendor/twenty-ui/navigation/notification-counter/components/NotificationCounter.d.ts +8 -0
  787. package/dist/vendor/twenty-ui/navigation/notification-counter/components/NotificationCounter.d.ts.map +1 -0
  788. package/dist/vendor/twenty-ui/navigation.cjs +42 -0
  789. package/dist/vendor/twenty-ui/navigation.mjs +887 -0
  790. package/dist/vendor/twenty-ui/style.css +1 -0
  791. package/dist/vendor/twenty-ui/testing/ComponentStorybookLayout.d.ts +9 -0
  792. package/dist/vendor/twenty-ui/testing/ComponentStorybookLayout.d.ts.map +1 -0
  793. package/dist/vendor/twenty-ui/testing/decorators/CatalogDecorator.d.ts +18 -0
  794. package/dist/vendor/twenty-ui/testing/decorators/CatalogDecorator.d.ts.map +1 -0
  795. package/dist/vendor/twenty-ui/testing/decorators/ComponentDecorator.d.ts +4 -0
  796. package/dist/vendor/twenty-ui/testing/decorators/ComponentDecorator.d.ts.map +1 -0
  797. package/dist/vendor/twenty-ui/testing/decorators/ComponentWithRouterDecorator.d.ts +11 -0
  798. package/dist/vendor/twenty-ui/testing/decorators/ComponentWithRouterDecorator.d.ts.map +1 -0
  799. package/dist/vendor/twenty-ui/testing/decorators/RecoilRootDecorator.d.ts +4 -0
  800. package/dist/vendor/twenty-ui/testing/decorators/RecoilRootDecorator.d.ts.map +1 -0
  801. package/dist/vendor/twenty-ui/testing/decorators/RouterDecorator.d.ts +4 -0
  802. package/dist/vendor/twenty-ui/testing/decorators/RouterDecorator.d.ts.map +1 -0
  803. package/dist/vendor/twenty-ui/testing/index.d.ts +11 -0
  804. package/dist/vendor/twenty-ui/testing/index.d.ts.map +1 -0
  805. package/dist/vendor/twenty-ui/testing/mocks/avatarUrlMock.d.ts +2 -0
  806. package/dist/vendor/twenty-ui/testing/mocks/avatarUrlMock.d.ts.map +1 -0
  807. package/dist/vendor/twenty-ui/testing/types/CatalogStory.d.ts +18 -0
  808. package/dist/vendor/twenty-ui/testing/types/CatalogStory.d.ts.map +1 -0
  809. package/dist/vendor/twenty-ui/testing.cjs +3 -0
  810. package/dist/vendor/twenty-ui/testing.mjs +156 -0
  811. package/dist/vendor/twenty-ui/theme/constants/AccentDark.d.ts +21 -0
  812. package/dist/vendor/twenty-ui/theme/constants/AccentDark.d.ts.map +1 -0
  813. package/dist/vendor/twenty-ui/theme/constants/AccentLight.d.ts +21 -0
  814. package/dist/vendor/twenty-ui/theme/constants/AccentLight.d.ts.map +1 -0
  815. package/dist/vendor/twenty-ui/theme/constants/Animation.d.ts +10 -0
  816. package/dist/vendor/twenty-ui/theme/constants/Animation.d.ts.map +1 -0
  817. package/dist/vendor/twenty-ui/theme/constants/BackgroundDark.d.ts +30 -0
  818. package/dist/vendor/twenty-ui/theme/constants/BackgroundDark.d.ts.map +1 -0
  819. package/dist/vendor/twenty-ui/theme/constants/BackgroundLight.d.ts +30 -0
  820. package/dist/vendor/twenty-ui/theme/constants/BackgroundLight.d.ts.map +1 -0
  821. package/dist/vendor/twenty-ui/theme/constants/BlurDark.d.ts +6 -0
  822. package/dist/vendor/twenty-ui/theme/constants/BlurDark.d.ts.map +1 -0
  823. package/dist/vendor/twenty-ui/theme/constants/BlurLight.d.ts +6 -0
  824. package/dist/vendor/twenty-ui/theme/constants/BlurLight.d.ts.map +1 -0
  825. package/dist/vendor/twenty-ui/theme/constants/BorderCommon.d.ts +12 -0
  826. package/dist/vendor/twenty-ui/theme/constants/BorderCommon.d.ts.map +1 -0
  827. package/dist/vendor/twenty-ui/theme/constants/BorderDark.d.ts +22 -0
  828. package/dist/vendor/twenty-ui/theme/constants/BorderDark.d.ts.map +1 -0
  829. package/dist/vendor/twenty-ui/theme/constants/BorderLight.d.ts +22 -0
  830. package/dist/vendor/twenty-ui/theme/constants/BorderLight.d.ts.map +1 -0
  831. package/dist/vendor/twenty-ui/theme/constants/BoxShadowDark.d.ts +8 -0
  832. package/dist/vendor/twenty-ui/theme/constants/BoxShadowDark.d.ts.map +1 -0
  833. package/dist/vendor/twenty-ui/theme/constants/BoxShadowLight.d.ts +8 -0
  834. package/dist/vendor/twenty-ui/theme/constants/BoxShadowLight.d.ts.map +1 -0
  835. package/dist/vendor/twenty-ui/theme/constants/CodeDark.d.ts +13 -0
  836. package/dist/vendor/twenty-ui/theme/constants/CodeDark.d.ts.map +1 -0
  837. package/dist/vendor/twenty-ui/theme/constants/CodeLight.d.ts +13 -0
  838. package/dist/vendor/twenty-ui/theme/constants/CodeLight.d.ts.map +1 -0
  839. package/dist/vendor/twenty-ui/theme/constants/ColorsDark.d.ts +750 -0
  840. package/dist/vendor/twenty-ui/theme/constants/ColorsDark.d.ts.map +1 -0
  841. package/dist/vendor/twenty-ui/theme/constants/ColorsLight.d.ts +750 -0
  842. package/dist/vendor/twenty-ui/theme/constants/ColorsLight.d.ts.map +1 -0
  843. package/dist/vendor/twenty-ui/theme/constants/FontCommon.d.ts +18 -0
  844. package/dist/vendor/twenty-ui/theme/constants/FontCommon.d.ts.map +1 -0
  845. package/dist/vendor/twenty-ui/theme/constants/FontDark.d.ts +27 -0
  846. package/dist/vendor/twenty-ui/theme/constants/FontDark.d.ts.map +1 -0
  847. package/dist/vendor/twenty-ui/theme/constants/FontLight.d.ts +27 -0
  848. package/dist/vendor/twenty-ui/theme/constants/FontLight.d.ts.map +1 -0
  849. package/dist/vendor/twenty-ui/theme/constants/GrayScaleDark.d.ts +15 -0
  850. package/dist/vendor/twenty-ui/theme/constants/GrayScaleDark.d.ts.map +1 -0
  851. package/dist/vendor/twenty-ui/theme/constants/GrayScaleDarkAlpha.d.ts +15 -0
  852. package/dist/vendor/twenty-ui/theme/constants/GrayScaleDarkAlpha.d.ts.map +1 -0
  853. package/dist/vendor/twenty-ui/theme/constants/GrayScaleLight.d.ts +15 -0
  854. package/dist/vendor/twenty-ui/theme/constants/GrayScaleLight.d.ts.map +1 -0
  855. package/dist/vendor/twenty-ui/theme/constants/GrayScaleLightAlpha.d.ts +15 -0
  856. package/dist/vendor/twenty-ui/theme/constants/GrayScaleLightAlpha.d.ts.map +1 -0
  857. package/dist/vendor/twenty-ui/theme/constants/HoverBackground.d.ts +2 -0
  858. package/dist/vendor/twenty-ui/theme/constants/HoverBackground.d.ts.map +1 -0
  859. package/dist/vendor/twenty-ui/theme/constants/Icon.d.ts +14 -0
  860. package/dist/vendor/twenty-ui/theme/constants/Icon.d.ts.map +1 -0
  861. package/dist/vendor/twenty-ui/theme/constants/IllustrationIconDark.d.ts +11 -0
  862. package/dist/vendor/twenty-ui/theme/constants/IllustrationIconDark.d.ts.map +1 -0
  863. package/dist/vendor/twenty-ui/theme/constants/IllustrationIconLight.d.ts +11 -0
  864. package/dist/vendor/twenty-ui/theme/constants/IllustrationIconLight.d.ts.map +1 -0
  865. package/dist/vendor/twenty-ui/theme/constants/MainColorNames.d.ts +5 -0
  866. package/dist/vendor/twenty-ui/theme/constants/MainColorNames.d.ts.map +1 -0
  867. package/dist/vendor/twenty-ui/theme/constants/MainColorsDark.d.ts +28 -0
  868. package/dist/vendor/twenty-ui/theme/constants/MainColorsDark.d.ts.map +1 -0
  869. package/dist/vendor/twenty-ui/theme/constants/MainColorsLight.d.ts +28 -0
  870. package/dist/vendor/twenty-ui/theme/constants/MainColorsLight.d.ts.map +1 -0
  871. package/dist/vendor/twenty-ui/theme/constants/MobileViewport.d.ts +2 -0
  872. package/dist/vendor/twenty-ui/theme/constants/MobileViewport.d.ts.map +1 -0
  873. package/dist/vendor/twenty-ui/theme/constants/Modal.d.ts +9 -0
  874. package/dist/vendor/twenty-ui/theme/constants/Modal.d.ts.map +1 -0
  875. package/dist/vendor/twenty-ui/theme/constants/Rgba.d.ts +2 -0
  876. package/dist/vendor/twenty-ui/theme/constants/Rgba.d.ts.map +1 -0
  877. package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsDark.d.ts +363 -0
  878. package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsDark.d.ts.map +1 -0
  879. package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsLight.d.ts +363 -0
  880. package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsLight.d.ts.map +1 -0
  881. package/dist/vendor/twenty-ui/theme/constants/SnackBarDark.d.ts +23 -0
  882. package/dist/vendor/twenty-ui/theme/constants/SnackBarDark.d.ts.map +1 -0
  883. package/dist/vendor/twenty-ui/theme/constants/SnackBarLight.d.ts +23 -0
  884. package/dist/vendor/twenty-ui/theme/constants/SnackBarLight.d.ts.map +1 -0
  885. package/dist/vendor/twenty-ui/theme/constants/TagDark.d.ts +67 -0
  886. package/dist/vendor/twenty-ui/theme/constants/TagDark.d.ts.map +1 -0
  887. package/dist/vendor/twenty-ui/theme/constants/TagLight.d.ts +67 -0
  888. package/dist/vendor/twenty-ui/theme/constants/TagLight.d.ts.map +1 -0
  889. package/dist/vendor/twenty-ui/theme/constants/Text.d.ts +12 -0
  890. package/dist/vendor/twenty-ui/theme/constants/Text.d.ts.map +1 -0
  891. package/dist/vendor/twenty-ui/theme/constants/TextInputStyle.d.ts +6 -0
  892. package/dist/vendor/twenty-ui/theme/constants/TextInputStyle.d.ts.map +1 -0
  893. package/dist/vendor/twenty-ui/theme/constants/ThemeCommon.d.ts +57 -0
  894. package/dist/vendor/twenty-ui/theme/constants/ThemeCommon.d.ts.map +1 -0
  895. package/dist/vendor/twenty-ui/theme/constants/ThemeDark.d.ts +4 -0
  896. package/dist/vendor/twenty-ui/theme/constants/ThemeDark.d.ts.map +1 -0
  897. package/dist/vendor/twenty-ui/theme/constants/ThemeLight.d.ts +1039 -0
  898. package/dist/vendor/twenty-ui/theme/constants/ThemeLight.d.ts.map +1 -0
  899. package/dist/vendor/twenty-ui/theme/constants/TransparentColorsDark.d.ts +363 -0
  900. package/dist/vendor/twenty-ui/theme/constants/TransparentColorsDark.d.ts.map +1 -0
  901. package/dist/vendor/twenty-ui/theme/constants/TransparentColorsLight.d.ts +363 -0
  902. package/dist/vendor/twenty-ui/theme/constants/TransparentColorsLight.d.ts.map +1 -0
  903. package/dist/vendor/twenty-ui/theme/index.d.ts +54 -0
  904. package/dist/vendor/twenty-ui/theme/index.d.ts.map +1 -0
  905. package/dist/vendor/twenty-ui/theme/provider/ThemeContextProvider.d.ts +11 -0
  906. package/dist/vendor/twenty-ui/theme/provider/ThemeContextProvider.d.ts.map +1 -0
  907. package/dist/vendor/twenty-ui/theme/provider/ThemeProvider.d.ts +10 -0
  908. package/dist/vendor/twenty-ui/theme/provider/ThemeProvider.d.ts.map +1 -0
  909. package/dist/vendor/twenty-ui/theme/types/ThemeType.d.ts +4 -0
  910. package/dist/vendor/twenty-ui/theme/types/ThemeType.d.ts.map +1 -0
  911. package/dist/vendor/twenty-ui/theme/utils/getNextThemeColor.d.ts +4 -0
  912. package/dist/vendor/twenty-ui/theme/utils/getNextThemeColor.d.ts.map +1 -0
  913. package/dist/vendor/twenty-ui/theme/utils/themeColorSchema.d.ts +30 -0
  914. package/dist/vendor/twenty-ui/theme/utils/themeColorSchema.d.ts.map +1 -0
  915. package/dist/vendor/twenty-ui/theme.cjs +1 -0
  916. package/dist/vendor/twenty-ui/theme.mjs +1223 -0
  917. package/dist/vendor/twenty-ui/themeColorSchema-CgAr-Bzv.js +6 -0
  918. package/dist/vendor/twenty-ui/themeColorSchema-DSPsU2O5.cjs +1 -0
  919. package/dist/vendor/twenty-ui/useIsMobile-DqVdogVd.js +13 -0
  920. package/dist/vendor/twenty-ui/useIsMobile-p7nY1Vab.cjs +1 -0
  921. package/dist/vendor/twenty-ui/useMouseDownNavigation-C_8Q5KFZ.cjs +1 -0
  922. package/dist/vendor/twenty-ui/useMouseDownNavigation-qpLZC7wJ.js +29 -0
  923. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedCircleLoading.d.ts +6 -0
  924. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedCircleLoading.d.ts.map +1 -0
  925. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedContainer.d.ts +6 -0
  926. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedContainer.d.ts.map +1 -0
  927. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseIn.d.ts +9 -0
  928. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseIn.d.ts.map +1 -0
  929. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseInOut.d.ts +13 -0
  930. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseInOut.d.ts.map +1 -0
  931. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedFadeOut.d.ts +12 -0
  932. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedFadeOut.d.ts.map +1 -0
  933. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedRotate.d.ts +10 -0
  934. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedRotate.d.ts.map +1 -0
  935. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTextWord.d.ts +9 -0
  936. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTextWord.d.ts.map +1 -0
  937. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTranslation.d.ts +6 -0
  938. package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTranslation.d.ts.map +1 -0
  939. package/dist/vendor/twenty-ui/utilities/animation/index.d.ts +8 -0
  940. package/dist/vendor/twenty-ui/utilities/animation/index.d.ts.map +1 -0
  941. package/dist/vendor/twenty-ui/utilities/color/utils/getMainColorNameFromPaletteColorName.d.ts +4 -0
  942. package/dist/vendor/twenty-ui/utilities/color/utils/getMainColorNameFromPaletteColorName.d.ts.map +1 -0
  943. package/dist/vendor/twenty-ui/utilities/color/utils/stringToThemeColorP3String.d.ts +9 -0
  944. package/dist/vendor/twenty-ui/utilities/color/utils/stringToThemeColorP3String.d.ts.map +1 -0
  945. package/dist/vendor/twenty-ui/utilities/config.d.ts +2 -0
  946. package/dist/vendor/twenty-ui/utilities/config.d.ts.map +1 -0
  947. package/dist/vendor/twenty-ui/utilities/device/getOsControlSymbol.d.ts +2 -0
  948. package/dist/vendor/twenty-ui/utilities/device/getOsControlSymbol.d.ts.map +1 -0
  949. package/dist/vendor/twenty-ui/utilities/device/getOsShortcutSeparator.d.ts +2 -0
  950. package/dist/vendor/twenty-ui/utilities/device/getOsShortcutSeparator.d.ts.map +1 -0
  951. package/dist/vendor/twenty-ui/utilities/device/getUserDevice.d.ts +2 -0
  952. package/dist/vendor/twenty-ui/utilities/device/getUserDevice.d.ts.map +1 -0
  953. package/dist/vendor/twenty-ui/utilities/dimensions/components/AutogrowWrapper.d.ts +10 -0
  954. package/dist/vendor/twenty-ui/utilities/dimensions/components/AutogrowWrapper.d.ts.map +1 -0
  955. package/dist/vendor/twenty-ui/utilities/index.d.ts +26 -0
  956. package/dist/vendor/twenty-ui/utilities/index.d.ts.map +1 -0
  957. package/dist/vendor/twenty-ui/utilities/navigation/hooks/useMouseDownNavigation.d.ts +17 -0
  958. package/dist/vendor/twenty-ui/utilities/navigation/hooks/useMouseDownNavigation.d.ts.map +1 -0
  959. package/dist/vendor/twenty-ui/utilities/navigation/hooks/useResetLocationHash.d.ts +4 -0
  960. package/dist/vendor/twenty-ui/utilities/navigation/hooks/useResetLocationHash.d.ts.map +1 -0
  961. package/dist/vendor/twenty-ui/utilities/navigation/isNavigationModifierPressed.d.ts +4 -0
  962. package/dist/vendor/twenty-ui/utilities/navigation/isNavigationModifierPressed.d.ts.map +1 -0
  963. package/dist/vendor/twenty-ui/utilities/navigation/types/trigger-event.type.d.ts +2 -0
  964. package/dist/vendor/twenty-ui/utilities/navigation/types/trigger-event.type.d.ts.map +1 -0
  965. package/dist/vendor/twenty-ui/utilities/responsive/hooks/useIsMobile.d.ts +2 -0
  966. package/dist/vendor/twenty-ui/utilities/responsive/hooks/useIsMobile.d.ts.map +1 -0
  967. package/dist/vendor/twenty-ui/utilities/screen-size/hooks/useScreenSize.d.ts +5 -0
  968. package/dist/vendor/twenty-ui/utilities/screen-size/hooks/useScreenSize.d.ts.map +1 -0
  969. package/dist/vendor/twenty-ui/utilities/state/utils/createState.d.ts +8 -0
  970. package/dist/vendor/twenty-ui/utilities/state/utils/createState.d.ts.map +1 -0
  971. package/dist/vendor/twenty-ui/utilities/types/ClickOutsideAttributes.d.ts +5 -0
  972. package/dist/vendor/twenty-ui/utilities/types/ClickOutsideAttributes.d.ts.map +1 -0
  973. package/dist/vendor/twenty-ui/utilities/types/Nullable.d.ts +2 -0
  974. package/dist/vendor/twenty-ui/utilities/types/Nullable.d.ts.map +1 -0
  975. package/dist/vendor/twenty-ui/utilities/utils/getDisplayValueByUrlType.d.ts +9 -0
  976. package/dist/vendor/twenty-ui/utilities/utils/getDisplayValueByUrlType.d.ts.map +1 -0
  977. package/dist/vendor/twenty-ui/utilities.cjs +1 -0
  978. package/dist/vendor/twenty-ui/utilities.mjs +275 -0
  979. package/dist/vendor/twenty-ui/visibility-hidden-00WyuQUL.cjs +1 -0
  980. package/dist/vendor/twenty-ui/visibility-hidden-DANnDHvJ.js +5 -0
  981. package/package.json +42 -15
  982. package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Bft-VMSh.mjs +0 -3151
  983. package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Duv5iOeZ.js +0 -20
  984. package/dist/application/application-config.d.ts +0 -2
  985. package/dist/application/define-app.d.ts +0 -18
  986. package/dist/application/fields/field.decorator.d.ts +0 -3
  987. package/dist/application/fields/relation.decorator.d.ts +0 -28
  988. package/dist/application/functions/define-function.d.ts +0 -28
  989. package/dist/application/functions/function-config.d.ts +0 -9
  990. package/dist/application/index.d.ts +0 -19
  991. package/dist/application/objects/define-object.d.ts +0 -35
  992. package/dist/application/objects/object.decorator.d.ts +0 -4
  993. package/dist/application/objects/standard-object-ids.d.ts +0 -1
  994. package/dist/application/permission-flag-type.d.ts +0 -1
  995. package/dist/application/role-config.d.ts +0 -2
  996. package/dist/application/roles/define-role.d.ts +0 -26
  997. package/dist/cli/commands/app-add.command.d.ts +0 -13
  998. package/dist/cli/commands/app-dev.command.d.ts +0 -11
  999. package/dist/cli/commands/app-sync.command.d.ts +0 -7
  1000. package/dist/cli/commands/app.command.d.ts +0 -10
  1001. package/dist/cli/commands/auth.command.d.ts +0 -9
  1002. package/dist/cli/services/api.service.d.ts +0 -20
  1003. package/dist/cli/utils/config-loader.d.ts +0 -43
  1004. package/dist/cli/utils/display-entity-summary.d.ts +0 -2
  1005. package/dist/cli/utils/display-errors.d.ts +0 -2
  1006. package/dist/cli/utils/display-warnings.d.ts +0 -2
  1007. package/dist/cli/utils/get-function-base-file.d.ts +0 -4
  1008. package/dist/cli/utils/load-env-variables.d.ts +0 -2
  1009. package/dist/cli/utils/load-manifest.d.ts +0 -41
  1010. package/dist/cli/utils/validate-manifest.d.ts +0 -22
  1011. package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BwpmSE4s.js +0 -1
  1012. package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-CtpRADP1.mjs +0 -500
  1013. package/dist/vendor/twenty-shared/RatingValues-B_wgYyso.js +0 -1
  1014. package/dist/vendor/twenty-shared/RatingValues-DNSj7xKA.mjs +0 -224
  1015. package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts +0 -12
  1016. package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts.map +0 -1
  1017. package/dist/vendor/twenty-shared/application/packageJsonType.d.ts +0 -14
  1018. package/dist/vendor/twenty-shared/application/packageJsonType.d.ts.map +0 -1
  1019. package/dist/vendor/twenty-shared/application/serverlessFunctionManifestType.d.ts.map +0 -1
  1020. package/dist/vendor/twenty-shared/isValidCountryCode-WBKj_GIR.js +0 -4
  1021. package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts +0 -51
  1022. package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts.map +0 -1
  1023. /package/dist/cli/{types/api-response.types.d.ts → utilities/api/api-response-type.d.ts} +0 -0
  1024. /package/dist/cli/{constants → utilities/config}/current-execution-directory.d.ts +0 -0
  1025. /package/dist/cli/{utils/convert-to-label.d.ts → utilities/entity/entity-label.d.ts} +0 -0
  1026. /package/dist/cli/{utils/get-role-base-file.d.ts → utilities/entity/entity-role-template.d.ts} +0 -0
  1027. /package/dist/cli/{utils/find-path-file.d.ts → utilities/file/file-find.d.ts} +0 -0
  1028. /package/dist/cli/{utils/format-path.d.ts → utilities/file/file-path.d.ts} +0 -0
  1029. /package/dist/cli/{utils/format-and-warn-ts-diagnostics.d.ts → utilities/typescript/typescript-diagnostics.d.ts} +0 -0
  1030. /package/dist/{application → sdk/common/types}/syncable-entity-options.type.d.ts +0 -0
  1031. /package/dist/{application → sdk}/fields/field-type.d.ts +0 -0
  1032. /package/dist/{application → sdk}/fields/on-delete-action.d.ts +0 -0
  1033. /package/dist/{application → sdk}/fields/relation-type.d.ts +0 -0
  1034. /package/dist/{application/functions → sdk/logic-functions}/triggers/cron-payload-type.d.ts +0 -0
  1035. /package/dist/{application/functions → sdk/logic-functions}/triggers/database-event-payload-type.d.ts +0 -0
@@ -0,0 +1,257 @@
1
+ import { a as c, j as e, F as W } from "./emotion-react-jsx-runtime.browser.esm-BUNawPtg.js";
2
+ import { useTheme as $, css as l } from "@emotion/react";
3
+ import i from "@emotion/styled";
4
+ import { IconCheck as A } from "@tabler/icons-react";
5
+ import E from "@emotion/is-prop-valid";
6
+ import { g as H, u as M } from "./useIsMobile-DqVdogVd.js";
7
+ import { L as _ } from "./Loader-BmJ693nz.js";
8
+ import { P as q } from "./Pill-C3ErQi9y.js";
9
+ import { G as p } from "./MainColorsLight-x_vjLhiq.js";
10
+ import { useState as O } from "react";
11
+ import { Link as R } from "react-router-dom";
12
+ import { T as V } from "./isValidCountryCode-Dyji5s5r-B7O5eJvP.js";
13
+ import "@sniptt/guards";
14
+ const X = /* @__PURE__ */ i("div", {
15
+ target: "e1sfho010"
16
+ })("align-items:center;background-color:", ({ theme: r }) => r.color.blue, ";border-radius:50%;display:flex;height:20px;justify-content:center;width:20px;"), fr = ({ className: r }) => {
17
+ const a = $();
18
+ return /* @__PURE__ */ c(X, {
19
+ className: r,
20
+ children: /* @__PURE__ */ c(A, {
21
+ color: a.grayScale.gray1,
22
+ size: 14
23
+ })
24
+ });
25
+ }, Y = /* @__PURE__ */ i("div", {
26
+ target: "e1k560790"
27
+ })("background:", ({ theme: r, accent: a }) => {
28
+ switch (a) {
29
+ case "blue":
30
+ return r.buttons.secondaryTextColor;
31
+ case "danger":
32
+ return r.border.color.danger;
33
+ default:
34
+ return r.font.color.light;
35
+ }
36
+ }, ";height:", ({ theme: r, buttonSize: a }) => r.spacing(a === "small" ? 2 : 4), ";margin:0;width:1px;"), D = /* @__PURE__ */ i("div", {
37
+ target: "e1k560791"
38
+ })("color:", ({ theme: r, variant: a, accent: o }) => {
39
+ switch (o) {
40
+ case "blue":
41
+ return r.buttons.secondaryTextColor;
42
+ case "danger":
43
+ return a === "primary" ? r.border.color.danger : r.color.red8;
44
+ default:
45
+ return r.font.color.light;
46
+ }
47
+ }, ";font-weight:", ({ theme: r }) => r.font.weight.medium, ";"), J = ({ size: r, accent: a, variant: o, hotkeys: s }) => /* @__PURE__ */ e(W, {
48
+ children: [
49
+ /* @__PURE__ */ c(Y, {
50
+ buttonSize: r,
51
+ accent: a
52
+ }),
53
+ /* @__PURE__ */ c(D, {
54
+ variant: o,
55
+ accent: a,
56
+ children: s.join(H())
57
+ })
58
+ ]
59
+ }), d = 300, K = /* @__PURE__ */ i("div", {
60
+ target: "e2ptv8c0"
61
+ })("align-items:center;display:flex;height:calc(100% - ", ({ theme: r }) => r.spacing(4), ");color:var(--tw-button-color);opacity:", ({ isLoading: r }) => r ? 0 : 1, ";transition:opacity ", d / 2, "ms ease;transition-delay:", ({ isLoading: r }) => r ? "0ms" : `${d / 2}ms`, ";"), N = /* @__PURE__ */ i("div", {
62
+ target: "e2ptv8c1"
63
+ })("align-items:center;display:flex;pointer-events:none;"), Q = /* @__PURE__ */ i("div", {
64
+ target: "e2ptv8c2"
65
+ })("left:", ({ theme: r }) => r.spacing(2), ";opacity:1;position:absolute;transition:opacity ", d / 2, "ms ease;transition-delay:", d / 2, "ms;width:", ({ theme: r }) => r.spacing(6), ";"), U = ({ Icon: r, isLoading: a }) => {
66
+ const o = $();
67
+ return /* @__PURE__ */ e(N, {
68
+ children: [
69
+ a && /* @__PURE__ */ c(Q, {
70
+ children: /* @__PURE__ */ c(_, {})
71
+ }),
72
+ r && /* @__PURE__ */ c(K, {
73
+ isLoading: !!a,
74
+ children: /* @__PURE__ */ c(r, {
75
+ size: o.icon.size.sm
76
+ })
77
+ })
78
+ ]
79
+ });
80
+ }, Z = /* @__PURE__ */ i(q, {
81
+ target: "eiobxmn0"
82
+ })("margin-left:auto;"), v = ({ label: r = "Soon" }) => /* @__PURE__ */ c(Z, {
83
+ label: r
84
+ }), h = /* @__PURE__ */ i("div", {
85
+ target: "eiaij500"
86
+ })("right:0;clip-path:", ({ theme: r, isLoading: a }) => a ? "inset(0 0 0 0)" : `inset(0 0 0 ${r.spacing(6)})`, ";overflow:hidden;position:absolute;transition:clip-path ", d, "ms ease;"), rr = /* @__PURE__ */ i("div", {
87
+ target: "eiaij501"
88
+ })("align-items:center;display:flex;height:100%;justify-content:center;position:relative;"), or = /* @__PURE__ */ i("div", {
89
+ target: "eiaij502"
90
+ })("clip-path:", ({ isLoading: r, theme: a, hasIcon: o }) => r ? ` inset(0 ${o ? a.spacing(6) : a.spacing(12)} 0 0)` : " inset(0 0 0 0)", ";overflow:hidden;transform:", ({ theme: r, isLoading: a, hasIcon: o }) => a ? `translateX(${o ? r.spacing(3) : r.spacing(7)})` : "none", ";transition:transform ", d, "ms ease,clip-path ", d, "ms ease;transition-delay:", ({ isLoading: r }) => r ? "0ms" : `${d / 4}ms`, ";white-space:nowrap;"), ar = ({ hasIcon: r = !1, isLoading: a, title: o }) => /* @__PURE__ */ e(rr, {
91
+ children: [
92
+ /* @__PURE__ */ c(or, {
93
+ isLoading: a,
94
+ hasIcon: r,
95
+ children: o
96
+ }),
97
+ /* @__PURE__ */ c(h, {
98
+ isLoading: a,
99
+ children: "..."
100
+ })
101
+ ]
102
+ }), nr = /* @__PURE__ */ i("button", {
103
+ shouldForwardProp: (r) => ![
104
+ "fullWidth"
105
+ ].includes(r) && E(r),
106
+ target: "ej47vz10"
107
+ })("align-items:center;", ({ theme: r, variant: a, inverted: o, accent: s, disabled: n, focus: t }) => {
108
+ switch (a) {
109
+ case "primary":
110
+ switch (s) {
111
+ case "default":
112
+ return /* @__PURE__ */ l("background:", o ? r.background.primary : r.background.secondary, ";border-color:", o ? r.background.transparent.light : !n && t ? r.color.blue : r.background.transparent.light, ";border-width:1px 1px 1px 1px !important;box-shadow:", !n && t ? `0 0 0 3px ${o ? r.background.transparent.medium : r.accent.tertiary}` : "none", ";color:", o ? r.font.color.secondary : n ? r.font.color.extraLight : r.font.color.secondary, ";", n ? "" : l`
113
+ &:hover {
114
+ background: ${o ? r.background.secondary : r.background.tertiary};
115
+ }
116
+ &:active {
117
+ background: ${o ? r.background.tertiary : r.background.quaternary};
118
+ }
119
+ `);
120
+ case "blue":
121
+ return /* @__PURE__ */ l("background:", o ? r.background.primary : n ? r.accent.accent4060 : r.color.blue, ";border-color:", o ? r.background.transparent.light : t ? r.color.blue : r.background.transparent.light, ";border-width:1px 1px 1px 1px !important;box-shadow:", !n && t ? `0 0 0 3px ${o ? r.background.transparent.medium : r.accent.tertiary}` : "none", ";color:", o ? r.color.blue : p.gray1, ";", n ? "" : l`
122
+ &:hover {
123
+ background: ${o ? r.background.secondary : r.color.blue10};
124
+ }
125
+ &:active {
126
+ background: ${o ? r.background.tertiary : r.color.blue12};
127
+ }
128
+ `);
129
+ case "danger":
130
+ return /* @__PURE__ */ l("background:", o ? r.background.primary : r.color.red, ";border-color:", o ? r.background.transparent.light : t ? r.color.red : r.background.transparent.light, ";border-width:1px 1px !important;box-shadow:", !n && t ? `0 0 0 3px ${o ? r.background.transparent.medium : r.color.red3}` : "none", ";color:", o ? r.color.red : r.background.primary, ";", n ? "" : l`
131
+ &:hover {
132
+ background: ${o ? r.background.secondary : r.color.red8};
133
+ }
134
+ &:active {
135
+ background: ${o ? r.background.tertiary : r.color.red10};
136
+ }
137
+ `);
138
+ }
139
+ break;
140
+ case "secondary":
141
+ case "tertiary":
142
+ switch (s) {
143
+ case "default":
144
+ return /* @__PURE__ */ l("background:transparent;border-color:", o ? a === "secondary" ? t || n ? p.gray1 : r.background.transparent.primary : t ? p.gray1 : "transparent" : a === "secondary" ? !n && t ? r.color.blue : r.background.transparent.medium : t ? r.color.blue : "transparent", ";border-width:1px 1px 1px 1px !important;box-shadow:", !n && t ? `0 0 0 3px ${o ? r.background.transparent.medium : r.accent.tertiary}` : "none", ";color:", o ? r.font.color.inverted : n ? r.font.color.extraLight : r.font.color.secondary, ";&:hover{background:", o ? r.background.transparent.light : n ? "transparent" : r.background.transparent.light, ";}&:active{background:", o ? r.background.transparent.medium : n ? "transparent" : r.background.transparent.light, ";}");
145
+ case "blue":
146
+ return /* @__PURE__ */ l("background:transparent;border-color:", o ? a === "secondary" ? t || n ? p.gray1 : r.background.transparent.primary : t ? p.gray1 : "transparent" : a === "secondary" ? t ? r.color.blue : r.accent.primary : t ? r.color.blue : "transparent", ";border-width:1px 1px 1px 1px !important;box-shadow:", !n && t ? `0 0 0 3px ${o ? r.background.transparent.medium : r.accent.tertiary}` : "none", ";color:", o ? r.font.color.inverted : n ? r.accent.accent4060 : r.color.blue, ";&:hover{background:", o ? r.background.transparent.light : n ? "transparent" : r.accent.tertiary, ";}&:active{background:", o ? r.background.transparent.medium : n ? "transparent" : r.accent.secondary, ";}");
147
+ case "danger":
148
+ return /* @__PURE__ */ l("background:transparent;border-color:", o ? a === "secondary" ? t || n ? p.gray1 : r.background.transparent.primary : t ? p.gray1 : "transparent" : a === "secondary" ? t ? r.color.red : r.border.color.danger : t ? r.color.red : "transparent", ";border-width:1px 1px 1px 1px !important;box-shadow:", !n && t ? `0 0 0 3px ${o ? r.background.transparent.medium : r.color.red3}` : "none", ";color:", o ? r.font.color.inverted : n ? r.color.red5 : r.font.color.danger, ";&:hover{background:", o ? r.background.transparent.light : n ? "transparent" : r.background.danger, ";}&:active{background:", o ? r.background.transparent.medium : n ? "transparent" : r.background.danger, ";}");
149
+ }
150
+ }
151
+ }, " text-decoration:none;border-radius:", ({ position: r, theme: a }) => {
152
+ switch (r) {
153
+ case "left":
154
+ return `${a.border.radius.sm} 0px 0px ${a.border.radius.sm}`;
155
+ case "right":
156
+ return `0px ${a.border.radius.sm} ${a.border.radius.sm} 0px`;
157
+ case "middle":
158
+ return "0px";
159
+ case "standalone":
160
+ return a.border.radius.sm;
161
+ }
162
+ }, ";border-style:solid;border-width:", ({ variant: r, position: a }) => {
163
+ switch (r) {
164
+ case "primary":
165
+ case "secondary":
166
+ return a === "middle" ? "1px 0px" : "1px";
167
+ case "tertiary":
168
+ return "0";
169
+ }
170
+ }, ";cursor:", ({ disabled: r }) => r ? "not-allowed" : "pointer", ";display:flex;flex-direction:row;font-family:", ({ theme: r }) => r.font.family, ";font-weight:500;font-size:", ({ theme: r }) => r.font.size.md, ";gap:", ({ theme: r }) => r.spacing(1), ";height:", ({ size: r }) => r === "small" ? "24px" : "32px", ";justify-content:", ({ justify: r }) => r, ";padding:", ({ theme: r }) => `0 ${r.spacing(2)} 0 ${r.spacing(2)}`, ";box-sizing:border-box;transition:background 0.1s ease;white-space:nowrap;width:", ({ fullWidth: r }) => r ? "100%" : "auto", ";&:focus{outline:none;}"), tr = /* @__PURE__ */ i("div", {
171
+ target: "ej47vz11"
172
+ })(({ theme: r, variant: a, accent: o, inverted: s, disabled: n }) => l`
173
+ --tw-button-color: ${(() => {
174
+ switch (a) {
175
+ case "primary":
176
+ switch (o) {
177
+ case "default":
178
+ return s ? r.font.color.secondary : n ? r.font.color.extraLight : r.font.color.secondary;
179
+ case "blue":
180
+ return s ? r.color.blue : p.gray1;
181
+ case "danger":
182
+ return s ? r.color.red : r.background.primary;
183
+ }
184
+ break;
185
+ case "secondary":
186
+ case "tertiary":
187
+ switch (o) {
188
+ case "default":
189
+ return s ? r.font.color.inverted : n ? r.font.color.extraLight : r.font.color.secondary;
190
+ case "blue":
191
+ return s ? r.font.color.inverted : n ? r.accent.accent4060 : r.color.blue;
192
+ case "danger":
193
+ return s ? r.font.color.inverted : r.font.color.danger;
194
+ }
195
+ break;
196
+ }
197
+ return r.font.color.secondary;
198
+ })()};
199
+ `, " max-width:", ({ isLoading: r, theme: a }) => r ? `calc(100% - ${a.spacing(8)})` : "none", ";position:relative;width:", ({ fullWidth: r }) => r ? "100%" : "auto", ";"), wr = ({ className: r, Icon: a, title: o, fullWidth: s = !1, variant: n = "primary", inverted: t = !1, size: y = "medium", accent: g = "default", position: S = "standalone", soon: b = !1, disabled: k = !1, justify: j = "flex-start", focus: T = !1, onClick: B, to: x, target: z, dataTestId: L, dataClickOutsideId: C, dataGloballyPreventClickOutside: F, hotkeys: f, ariaLabel: m, type: I, isLoading: u = !1 }) => {
200
+ const P = M(), [G, w] = O(T);
201
+ return /* @__PURE__ */ c(tr, {
202
+ isLoading: !!u,
203
+ variant: n,
204
+ accent: g,
205
+ inverted: t,
206
+ disabled: b || k,
207
+ fullWidth: s,
208
+ children: /* @__PURE__ */ e(nr, {
209
+ fullWidth: s,
210
+ variant: n,
211
+ inverted: t,
212
+ position: S,
213
+ disabled: b || k,
214
+ hasIcon: !!a,
215
+ focus: G,
216
+ justify: j,
217
+ accent: g,
218
+ className: r,
219
+ onClick: B,
220
+ to: x,
221
+ as: x ? R : "button",
222
+ target: z,
223
+ "data-testid": L,
224
+ "data-click-outside-id": C,
225
+ "data-globally-prevent-click-outside": F,
226
+ "aria-label": m,
227
+ type: I,
228
+ isLoading: u,
229
+ onFocus: () => w(!0),
230
+ onBlur: () => w(!1),
231
+ size: y,
232
+ children: [
233
+ (u || a) && /* @__PURE__ */ c(U, {
234
+ Icon: a,
235
+ isLoading: !!u
236
+ }),
237
+ V(o) && /* @__PURE__ */ c(ar, {
238
+ hasIcon: !!a,
239
+ title: o,
240
+ isLoading: u
241
+ }),
242
+ f && !P && /* @__PURE__ */ c(J, {
243
+ hotkeys: f,
244
+ variant: n,
245
+ accent: g,
246
+ size: y
247
+ }),
248
+ b && /* @__PURE__ */ c(v, {})
249
+ ]
250
+ })
251
+ });
252
+ };
253
+ export {
254
+ wr as B,
255
+ fr as C,
256
+ d as b
257
+ };
@@ -0,0 +1,24 @@
1
+ "use strict";const c=require("./emotion-react-jsx-runtime.browser.esm-pt_kQSCG.cjs"),e=require("@emotion/react"),E=require("@emotion/styled"),H=require("@tabler/icons-react"),z=require("@emotion/is-prop-valid"),w=require("./useIsMobile-p7nY1Vab.cjs"),Y=require("./Loader-9V3BLpiM.cjs"),P=require("./Pill-D732nsLI.cjs"),u=require("./MainColorsLight-GOpmobTe.cjs"),F=require("react"),M=require("react-router-dom"),D=require("./isValidCountryCode-Dyji5s5r-MH68p3NE.cjs");require("@sniptt/guards");const j=r=>r&&r.__esModule?r:{default:r},i=j(E),V=j(z),W=i.default("div",{target:"e1sfho010"})("align-items:center;background-color:",({theme:r})=>r.color.blue,";border-radius:50%;display:flex;height:20px;justify-content:center;width:20px;"),J=({className:r})=>{const a=e.useTheme();return c.jsx(W,{className:r,children:c.jsx(H.IconCheck,{color:a.grayScale.gray1,size:14})})},O=i.default("div",{target:"e1k560790"})("background:",({theme:r,accent:a})=>{switch(a){case"blue":return r.buttons.secondaryTextColor;case"danger":return r.border.color.danger;default:return r.font.color.light}},";height:",({theme:r,buttonSize:a})=>r.spacing(a==="small"?2:4),";margin:0;width:1px;"),X=i.default("div",{target:"e1k560791"})("color:",({theme:r,variant:a,accent:o})=>{switch(o){case"blue":return r.buttons.secondaryTextColor;case"danger":return a==="primary"?r.border.color.danger:r.color.red8;default:return r.font.color.light}},";font-weight:",({theme:r})=>r.font.weight.medium,";"),K=({size:r,accent:a,variant:o,hotkeys:s})=>c.jsxs(c.Fragment,{children:[c.jsx(O,{buttonSize:r,accent:a}),c.jsx(X,{variant:o,accent:a,children:s.join(w.getOsShortcutSeparator())})]}),l=300,N=i.default("div",{target:"e2ptv8c0"})("align-items:center;display:flex;height:calc(100% - ",({theme:r})=>r.spacing(4),");color:var(--tw-button-color);opacity:",({isLoading:r})=>r?0:1,";transition:opacity ",l/2,"ms ease;transition-delay:",({isLoading:r})=>r?"0ms":`${l/2}ms`,";"),Q=i.default("div",{target:"e2ptv8c1"})("align-items:center;display:flex;pointer-events:none;"),U=i.default("div",{target:"e2ptv8c2"})("left:",({theme:r})=>r.spacing(2),";opacity:1;position:absolute;transition:opacity ",l/2,"ms ease;transition-delay:",l/2,"ms;width:",({theme:r})=>r.spacing(6),";"),Z=({Icon:r,isLoading:a})=>{const o=e.useTheme();return c.jsxs(Q,{children:[a&&c.jsx(U,{children:c.jsx(Y.Loader,{})}),r&&c.jsx(N,{isLoading:!!a,children:c.jsx(r,{size:o.icon.size.sm})})]})},h=i.default(P.Pill,{target:"eiobxmn0"})("margin-left:auto;"),v=({label:r="Soon"})=>c.jsx(h,{label:r}),m=i.default("div",{target:"eiaij500"})("right:0;clip-path:",({theme:r,isLoading:a})=>a?"inset(0 0 0 0)":`inset(0 0 0 ${r.spacing(6)})`,";overflow:hidden;position:absolute;transition:clip-path ",l,"ms ease;"),rr=i.default("div",{target:"eiaij501"})("align-items:center;display:flex;height:100%;justify-content:center;position:relative;"),or=i.default("div",{target:"eiaij502"})("clip-path:",({isLoading:r,theme:a,hasIcon:o})=>r?` inset(0 ${o?a.spacing(6):a.spacing(12)} 0 0)`:" inset(0 0 0 0)",";overflow:hidden;transform:",({theme:r,isLoading:a,hasIcon:o})=>a?`translateX(${o?r.spacing(3):r.spacing(7)})`:"none",";transition:transform ",l,"ms ease,clip-path ",l,"ms ease;transition-delay:",({isLoading:r})=>r?"0ms":`${l/4}ms`,";white-space:nowrap;"),ar=({hasIcon:r=!1,isLoading:a,title:o})=>c.jsxs(rr,{children:[c.jsx(or,{isLoading:a,hasIcon:r,children:o}),c.jsx(m,{isLoading:a,children:"..."})]}),nr=i.default("button",{shouldForwardProp:r=>!["fullWidth"].includes(r)&&V.default(r),target:"ej47vz10"})("align-items:center;",({theme:r,variant:a,inverted:o,accent:s,disabled:n,focus:t})=>{switch(a){case"primary":switch(s){case"default":return e.css("background:",o?r.background.primary:r.background.secondary,";border-color:",o?r.background.transparent.light:!n&&t?r.color.blue:r.background.transparent.light,";border-width:1px 1px 1px 1px !important;box-shadow:",!n&&t?`0 0 0 3px ${o?r.background.transparent.medium:r.accent.tertiary}`:"none",";color:",o?r.font.color.secondary:n?r.font.color.extraLight:r.font.color.secondary,";",n?"":e.css`
2
+ &:hover {
3
+ background: ${o?r.background.secondary:r.background.tertiary};
4
+ }
5
+ &:active {
6
+ background: ${o?r.background.tertiary:r.background.quaternary};
7
+ }
8
+ `);case"blue":return e.css("background:",o?r.background.primary:n?r.accent.accent4060:r.color.blue,";border-color:",o?r.background.transparent.light:t?r.color.blue:r.background.transparent.light,";border-width:1px 1px 1px 1px !important;box-shadow:",!n&&t?`0 0 0 3px ${o?r.background.transparent.medium:r.accent.tertiary}`:"none",";color:",o?r.color.blue:u.GRAY_SCALE_LIGHT.gray1,";",n?"":e.css`
9
+ &:hover {
10
+ background: ${o?r.background.secondary:r.color.blue10};
11
+ }
12
+ &:active {
13
+ background: ${o?r.background.tertiary:r.color.blue12};
14
+ }
15
+ `);case"danger":return e.css("background:",o?r.background.primary:r.color.red,";border-color:",o?r.background.transparent.light:t?r.color.red:r.background.transparent.light,";border-width:1px 1px !important;box-shadow:",!n&&t?`0 0 0 3px ${o?r.background.transparent.medium:r.color.red3}`:"none",";color:",o?r.color.red:r.background.primary,";",n?"":e.css`
16
+ &:hover {
17
+ background: ${o?r.background.secondary:r.color.red8};
18
+ }
19
+ &:active {
20
+ background: ${o?r.background.tertiary:r.color.red10};
21
+ }
22
+ `)}break;case"secondary":case"tertiary":switch(s){case"default":return e.css("background:transparent;border-color:",o?a==="secondary"?t||n?u.GRAY_SCALE_LIGHT.gray1:r.background.transparent.primary:t?u.GRAY_SCALE_LIGHT.gray1:"transparent":a==="secondary"?!n&&t?r.color.blue:r.background.transparent.medium:t?r.color.blue:"transparent",";border-width:1px 1px 1px 1px !important;box-shadow:",!n&&t?`0 0 0 3px ${o?r.background.transparent.medium:r.accent.tertiary}`:"none",";color:",o?r.font.color.inverted:n?r.font.color.extraLight:r.font.color.secondary,";&:hover{background:",o?r.background.transparent.light:n?"transparent":r.background.transparent.light,";}&:active{background:",o?r.background.transparent.medium:n?"transparent":r.background.transparent.light,";}");case"blue":return e.css("background:transparent;border-color:",o?a==="secondary"?t||n?u.GRAY_SCALE_LIGHT.gray1:r.background.transparent.primary:t?u.GRAY_SCALE_LIGHT.gray1:"transparent":a==="secondary"?t?r.color.blue:r.accent.primary:t?r.color.blue:"transparent",";border-width:1px 1px 1px 1px !important;box-shadow:",!n&&t?`0 0 0 3px ${o?r.background.transparent.medium:r.accent.tertiary}`:"none",";color:",o?r.font.color.inverted:n?r.accent.accent4060:r.color.blue,";&:hover{background:",o?r.background.transparent.light:n?"transparent":r.accent.tertiary,";}&:active{background:",o?r.background.transparent.medium:n?"transparent":r.accent.secondary,";}");case"danger":return e.css("background:transparent;border-color:",o?a==="secondary"?t||n?u.GRAY_SCALE_LIGHT.gray1:r.background.transparent.primary:t?u.GRAY_SCALE_LIGHT.gray1:"transparent":a==="secondary"?t?r.color.red:r.border.color.danger:t?r.color.red:"transparent",";border-width:1px 1px 1px 1px !important;box-shadow:",!n&&t?`0 0 0 3px ${o?r.background.transparent.medium:r.color.red3}`:"none",";color:",o?r.font.color.inverted:n?r.color.red5:r.font.color.danger,";&:hover{background:",o?r.background.transparent.light:n?"transparent":r.background.danger,";}&:active{background:",o?r.background.transparent.medium:n?"transparent":r.background.danger,";}")}}}," text-decoration:none;border-radius:",({position:r,theme:a})=>{switch(r){case"left":return`${a.border.radius.sm} 0px 0px ${a.border.radius.sm}`;case"right":return`0px ${a.border.radius.sm} ${a.border.radius.sm} 0px`;case"middle":return"0px";case"standalone":return a.border.radius.sm}},";border-style:solid;border-width:",({variant:r,position:a})=>{switch(r){case"primary":case"secondary":return a==="middle"?"1px 0px":"1px";case"tertiary":return"0"}},";cursor:",({disabled:r})=>r?"not-allowed":"pointer",";display:flex;flex-direction:row;font-family:",({theme:r})=>r.font.family,";font-weight:500;font-size:",({theme:r})=>r.font.size.md,";gap:",({theme:r})=>r.spacing(1),";height:",({size:r})=>r==="small"?"24px":"32px",";justify-content:",({justify:r})=>r,";padding:",({theme:r})=>`0 ${r.spacing(2)} 0 ${r.spacing(2)}`,";box-sizing:border-box;transition:background 0.1s ease;white-space:nowrap;width:",({fullWidth:r})=>r?"100%":"auto",";&:focus{outline:none;}"),tr=i.default("div",{target:"ej47vz11"})(({theme:r,variant:a,accent:o,inverted:s,disabled:n})=>e.css`
23
+ --tw-button-color: ${(()=>{switch(a){case"primary":switch(o){case"default":return s?r.font.color.secondary:n?r.font.color.extraLight:r.font.color.secondary;case"blue":return s?r.color.blue:u.GRAY_SCALE_LIGHT.gray1;case"danger":return s?r.color.red:r.background.primary}break;case"secondary":case"tertiary":switch(o){case"default":return s?r.font.color.inverted:n?r.font.color.extraLight:r.font.color.secondary;case"blue":return s?r.font.color.inverted:n?r.accent.accent4060:r.color.blue;case"danger":return s?r.font.color.inverted:r.font.color.danger}break}return r.font.color.secondary})()};
24
+ `," max-width:",({isLoading:r,theme:a})=>r?`calc(100% - ${a.spacing(8)})`:"none",";position:relative;width:",({fullWidth:r})=>r?"100%":"auto",";"),cr=({className:r,Icon:a,title:o,fullWidth:s=!1,variant:n="primary",inverted:t=!1,size:b="medium",accent:p="default",position:S="standalone",soon:g=!1,disabled:y=!1,justify:_="flex-start",focus:$=!1,onClick:L,to:x,target:T,dataTestId:C,dataClickOutsideId:A,dataGloballyPreventClickOutside:G,hotkeys:k,ariaLabel:q,type:I,isLoading:d=!1})=>{const R=w.useIsMobile(),[B,f]=F.useState($);return c.jsx(tr,{isLoading:!!d,variant:n,accent:p,inverted:t,disabled:g||y,fullWidth:s,children:c.jsxs(nr,{fullWidth:s,variant:n,inverted:t,position:S,disabled:g||y,hasIcon:!!a,focus:B,justify:_,accent:p,className:r,onClick:L,to:x,as:x?M.Link:"button",target:T,"data-testid":C,"data-click-outside-id":A,"data-globally-prevent-click-outside":G,"aria-label":q,type:I,isLoading:d,onFocus:()=>f(!0),onBlur:()=>f(!1),size:b,children:[(d||a)&&c.jsx(Z,{Icon:a,isLoading:!!d}),D.Tr(o)&&c.jsx(ar,{hasIcon:!!a,title:o,isLoading:d}),k&&!R&&c.jsx(K,{hotkeys:k,variant:n,accent:p,size:b}),g&&c.jsx(v,{})]})})};exports.Button=cr;exports.Checkmark=J;exports.baseTransitionTiming=l;
@@ -0,0 +1,16 @@
1
+ "use strict";const n=require("@emotion/react"),d=require("@emotion/styled"),s=require("./isValidCountryCode-Dyji5s5r-MH68p3NE.cjs");require("@sniptt/guards");require("react-router-dom");const a=r=>r&&r.__esModule?r:{default:r},c=a(d),o=(r,e,t)=>s.Tr(t)?t:r.tag.background[e],l=(r,e)=>r.tag.text[e],u=c.default("div",{target:"e6c054e0"})("background-color:",({theme:r,colorName:e,color:t})=>o(r,e,t),`;border:1px solid
2
+ `,({theme:r,colorName:e})=>l(r,e),";border-radius:60px;height:",({theme:r})=>r.spacing(4),";width:",({theme:r})=>r.spacing(3),";",({colorName:r,color:e,theme:t,variant:i})=>{if(i==="pipeline")return n.css`
3
+ align-items: center;
4
+ border: 0;
5
+ display: flex;
6
+ justify-content: center;
7
+
8
+ &:after {
9
+ background-color: ${o(t,r,e)};
10
+ border-radius: ${t.border.radius.rounded};
11
+ content: '';
12
+ display: block;
13
+ height: ${t.spacing(1)};
14
+ width: ${t.spacing(1)};
15
+ }
16
+ `});exports.StyledColorSample=u;
@@ -0,0 +1,28 @@
1
+ import { css as n } from "@emotion/react";
2
+ import d from "@emotion/styled";
3
+ import { T as a } from "./isValidCountryCode-Dyji5s5r-B7O5eJvP.js";
4
+ import "@sniptt/guards";
5
+ import "react-router-dom";
6
+ const e = (r, o, t) => a(t) ? t : r.tag.background[o], s = (r, o) => r.tag.text[o], b = /* @__PURE__ */ d("div", {
7
+ target: "e6c054e0"
8
+ })("background-color:", ({ theme: r, colorName: o, color: t }) => e(r, o, t), `;border:1px solid
9
+ `, ({ theme: r, colorName: o }) => s(r, o), ";border-radius:60px;height:", ({ theme: r }) => r.spacing(4), ";width:", ({ theme: r }) => r.spacing(3), ";", ({ colorName: r, color: o, theme: t, variant: i }) => {
10
+ if (i === "pipeline") return n`
11
+ align-items: center;
12
+ border: 0;
13
+ display: flex;
14
+ justify-content: center;
15
+
16
+ &:after {
17
+ background-color: ${e(t, r, o)};
18
+ border-radius: ${t.border.radius.rounded};
19
+ content: '';
20
+ display: block;
21
+ height: ${t.spacing(1)};
22
+ width: ${t.spacing(1)};
23
+ }
24
+ `;
25
+ });
26
+ export {
27
+ b as S
28
+ };
@@ -0,0 +1 @@
1
+ "use strict";const t=require("@emotion/react"),e=r=>t.css("transition:background 0.1s ease;&:hover{background:",r.theme.background.transparent.light,";}");exports.HOVER_BACKGROUND=e;
@@ -0,0 +1,5 @@
1
+ import { css as o } from "@emotion/react";
2
+ const a = (r) => /* @__PURE__ */ o("transition:background 0.1s ease;&:hover{background:", r.theme.background.transparent.light, ";}");
3
+ export {
4
+ a as H
5
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";const r=require("./emotion-react-jsx-runtime.browser.esm-pt_kQSCG.cjs"),o=require("@emotion/styled"),n=require("framer-motion"),a=t=>t&&t.__esModule?t:{default:t},i=a(o),d=i.default("div",{target:"e1ufih1z0"})("box-sizing:border-box;justify-content:center;align-items:center;display:flex;gap:",({theme:t})=>t.spacing(2),";width:",({theme:t})=>t.spacing(6),";height:",({theme:t})=>t.spacing(3),";border-radius:",({theme:t})=>t.border.radius.pill,`;border:1px solid
2
+ `,({color:t,theme:e})=>t?e.tag.text[t]:`var(--tw-button-color, ${e.font.color.tertiary})`,";overflow:hidden;"),s=i.default(n.motion.div,{target:"e1ufih1z1"})("background-color:",({color:t,theme:e})=>t?e.tag.text[t]:`var(--tw-button-color, ${e.font.color.tertiary})`,";border-radius:",({theme:t})=>t.border.radius.pill,";height:8px;width:8px;"),l=({color:t})=>r.jsx(d,{color:t,children:r.jsx(s,{color:t,animate:{x:[-16,0,16],width:[8,12,8],height:[8,2,8]},transition:{duration:.8,times:[0,.15,.3],repeat:1/0}})});exports.Loader=l;
@@ -0,0 +1,43 @@
1
+ import { a as i } from "./emotion-react-jsx-runtime.browser.esm-BUNawPtg.js";
2
+ import o from "@emotion/styled";
3
+ import { motion as e } from "framer-motion";
4
+ const a = /* @__PURE__ */ o("div", {
5
+ target: "e1ufih1z0"
6
+ })("box-sizing:border-box;justify-content:center;align-items:center;display:flex;gap:", ({ theme: t }) => t.spacing(2), ";width:", ({ theme: t }) => t.spacing(6), ";height:", ({ theme: t }) => t.spacing(3), ";border-radius:", ({ theme: t }) => t.border.radius.pill, `;border:1px solid
7
+ `, ({ color: t, theme: r }) => t ? r.tag.text[t] : `var(--tw-button-color, ${r.font.color.tertiary})`, ";overflow:hidden;"), n = /* @__PURE__ */ o(e.div, {
8
+ target: "e1ufih1z1"
9
+ })("background-color:", ({ color: t, theme: r }) => t ? r.tag.text[t] : `var(--tw-button-color, ${r.font.color.tertiary})`, ";border-radius:", ({ theme: t }) => t.border.radius.pill, ";height:8px;width:8px;"), p = ({ color: t }) => /* @__PURE__ */ i(a, {
10
+ color: t,
11
+ children: /* @__PURE__ */ i(n, {
12
+ color: t,
13
+ animate: {
14
+ x: [
15
+ -16,
16
+ 0,
17
+ 16
18
+ ],
19
+ width: [
20
+ 8,
21
+ 12,
22
+ 8
23
+ ],
24
+ height: [
25
+ 8,
26
+ 2,
27
+ 8
28
+ ]
29
+ },
30
+ transition: {
31
+ duration: 0.8,
32
+ times: [
33
+ 0,
34
+ 0.15,
35
+ 0.3
36
+ ],
37
+ repeat: 1 / 0
38
+ }
39
+ })
40
+ });
41
+ export {
42
+ p as L
43
+ };
@@ -0,0 +1 @@
1
+ "use strict";const O=require("./MainColorsLight-GOpmobTe.cjs"),s=Object.keys(O.MAIN_COLORS_LIGHT);exports.MAIN_COLOR_NAMES=s;
@@ -0,0 +1,5 @@
1
+ import { M } from "./MainColorsLight-x_vjLhiq.js";
2
+ const o = Object.keys(M);
3
+ export {
4
+ o as M
5
+ };
@@ -0,0 +1 @@
1
+ "use strict";const z={mauveA1:"#00000000",mauveA2:"#f5f4f609",mauveA3:"#ebeaf814",mauveA4:"#eee5f81d",mauveA5:"#efe6fe25",mauveA6:"#f1e6fd30",mauveA7:"#eee9ff40",mauveA8:"#eee7ff5d",mauveA9:"#eae6fd6e",mauveA10:"#ece9fd7c",mauveA11:"#f5f1ffb7",mauveA12:"#fdfdffef"},L={mauve1:"color(display-p3 0.07 0.067 0.074)",mauve2:"color(display-p3 0.101 0.098 0.105)",mauve3:"color(display-p3 0.138 0.134 0.144)",mauve4:"color(display-p3 0.167 0.161 0.175)",mauve5:"color(display-p3 0.196 0.189 0.206)",mauve6:"color(display-p3 0.232 0.225 0.245)",mauve7:"color(display-p3 0.286 0.277 0.302)",mauve8:"color(display-p3 0.383 0.373 0.408)",mauve9:"color(display-p3 0.434 0.428 0.467)",mauve10:"color(display-p3 0.487 0.48 0.519)",mauve11:"color(display-p3 0.707 0.7 0.735)",mauve12:"color(display-p3 0.933 0.933 0.94)"},_={slateA1:"#00000000",slateA2:"#d8f4f609",slateA3:"#ddeaf814",slateA4:"#d3edf81d",slateA5:"#d9edfe25",slateA6:"#d6ebfd30",slateA7:"#d9edff40",slateA8:"#d9edff5d",slateA9:"#dfebfd6d",slateA10:"#e5edfd7b",slateA11:"#f1f7feb5",slateA12:"#fcfdffef"},G={slate1:"color(display-p3 0.067 0.067 0.074)",slate2:"color(display-p3 0.095 0.098 0.105)",slate3:"color(display-p3 0.13 0.135 0.145)",slate4:"color(display-p3 0.156 0.163 0.176)",slate5:"color(display-p3 0.183 0.191 0.206)",slate6:"color(display-p3 0.215 0.226 0.244)",slate7:"color(display-p3 0.265 0.28 0.302)",slate8:"color(display-p3 0.357 0.381 0.409)",slate9:"color(display-p3 0.415 0.431 0.463)",slate10:"color(display-p3 0.469 0.483 0.514)",slate11:"color(display-p3 0.692 0.704 0.728)",slate12:"color(display-p3 0.93 0.933 0.94)"},I={sageA1:"#00000000",sageA2:"#f0f2f108",sageA3:"#f3f5f412",sageA4:"#f2fefd1a",sageA5:"#f1fbfa22",sageA6:"#edfbf42d",sageA7:"#edfcf73c",sageA8:"#ebfdf657",sageA9:"#dffdf266",sageA10:"#e5fdf674",sageA11:"#f4fefbb0",sageA12:"#fdfffeed"},h={sage1:"color(display-p3 0.064 0.07 0.067)",sage2:"color(display-p3 0.092 0.098 0.094)",sage3:"color(display-p3 0.128 0.135 0.131)",sage4:"color(display-p3 0.155 0.164 0.159)",sage5:"color(display-p3 0.183 0.193 0.188)",sage6:"color(display-p3 0.218 0.23 0.224)",sage7:"color(display-p3 0.269 0.285 0.277)",sage8:"color(display-p3 0.362 0.382 0.373)",sage9:"color(display-p3 0.398 0.438 0.421)",sage10:"color(display-p3 0.453 0.49 0.474)",sage11:"color(display-p3 0.685 0.709 0.697)",sage12:"color(display-p3 0.927 0.933 0.93)"},C={oliveA1:"#00000000",oliveA2:"#f1f2f008",oliveA3:"#f4f5f312",oliveA4:"#f3fef21a",oliveA5:"#f2fbf122",oliveA6:"#f4faed2c",oliveA7:"#f2fced3b",oliveA8:"#edfdeb57",oliveA9:"#ebfde766",oliveA10:"#f0fdec74",oliveA11:"#f6fef4b0",oliveA12:"#fdfffded"},H={olive1:"color(display-p3 0.067 0.07 0.063)",olive2:"color(display-p3 0.095 0.098 0.091)",olive3:"color(display-p3 0.131 0.135 0.126)",olive4:"color(display-p3 0.158 0.163 0.153)",olive5:"color(display-p3 0.186 0.192 0.18)",olive6:"color(display-p3 0.221 0.229 0.215)",olive7:"color(display-p3 0.273 0.284 0.266)",olive8:"color(display-p3 0.365 0.382 0.359)",olive9:"color(display-p3 0.414 0.438 0.404)",olive10:"color(display-p3 0.467 0.49 0.458)",olive11:"color(display-p3 0.69 0.709 0.682)",olive12:"color(display-p3 0.927 0.933 0.926)"},O={sandA1:"#00000000",sandA2:"#f4f4f309",sandA3:"#f6f6f513",sandA4:"#fefef31b",sandA5:"#fbfbeb23",sandA6:"#fffaed2d",sandA7:"#fffbed3c",sandA8:"#fff9eb57",sandA9:"#fffae965",sandA10:"#fffdee73",sandA11:"#fffcf4b0",sandA12:"#fffffded"},R={sand1:"color(display-p3 0.067 0.067 0.063)",sand2:"color(display-p3 0.098 0.098 0.094)",sand3:"color(display-p3 0.135 0.135 0.129)",sand4:"color(display-p3 0.164 0.163 0.156)",sand5:"color(display-p3 0.193 0.192 0.183)",sand6:"color(display-p3 0.23 0.229 0.217)",sand7:"color(display-p3 0.285 0.282 0.267)",sand8:"color(display-p3 0.384 0.378 0.357)",sand9:"color(display-p3 0.434 0.428 0.403)",sand10:"color(display-p3 0.487 0.481 0.456)",sand11:"color(display-p3 0.707 0.703 0.68)",sand12:"color(display-p3 0.933 0.933 0.926)"},S={tomatoA1:"#f1121208",tomatoA2:"#ff55330f",tomatoA3:"#ff35232b",tomatoA4:"#fd201142",tomatoA5:"#fe332153",tomatoA6:"#ff4f3864",tomatoA7:"#fd644a7d",tomatoA8:"#fe6d4ea7",tomatoA9:"#fe5431e4",tomatoA10:"#ff6847eb",tomatoA11:"#ff977d",tomatoA12:"#ffd6cefb"},T={tomato1:"color(display-p3 0.09 0.068 0.067)",tomato2:"color(display-p3 0.115 0.084 0.076)",tomato3:"color(display-p3 0.205 0.097 0.083)",tomato4:"color(display-p3 0.282 0.099 0.077)",tomato5:"color(display-p3 0.339 0.129 0.101)",tomato6:"color(display-p3 0.398 0.179 0.141)",tomato7:"color(display-p3 0.487 0.245 0.194)",tomato8:"color(display-p3 0.629 0.322 0.248)",tomato9:"color(display-p3 0.831 0.345 0.231)",tomato10:"color(display-p3 0.862 0.415 0.298)",tomato11:"color(display-p3 1 0.585 0.455)",tomato12:"color(display-p3 0.959 0.833 0.802)"},E={redA1:"#f4121209",redA2:"#f22f3e11",redA3:"#ff173f2d",redA4:"#fe0a3b44",redA5:"#ff204756",redA6:"#ff3e5668",redA7:"#ff536184",redA8:"#ff5d61b0",redA9:"#fe4e54e4",redA10:"#ff6465eb",redA11:"#ff9592",redA12:"#ffd1d9"},M={red1:"color(display-p3 0.093 0.068 0.067)",red2:"color(display-p3 0.118 0.077 0.079)",red3:"color(display-p3 0.211 0.081 0.099)",red4:"color(display-p3 0.287 0.079 0.113)",red5:"color(display-p3 0.348 0.11 0.142)",red6:"color(display-p3 0.414 0.16 0.183)",red7:"color(display-p3 0.508 0.224 0.236)",red8:"color(display-p3 0.659 0.298 0.297)",red9:"color(display-p3 0.83 0.329 0.324)",red10:"color(display-p3 0.861 0.403 0.387)",red11:"color(display-p3 1 0.57 0.55)",red12:"color(display-p3 0.971 0.826 0.852)"},N={rubyA1:"#f4124a09",rubyA2:"#fe5a7f0e",rubyA3:"#ff235d2c",rubyA4:"#fd195e42",rubyA5:"#fe2d6b53",rubyA6:"#ff447665",rubyA7:"#ff577d80",rubyA8:"#ff5c7cae",rubyA9:"#fe4c70e4",rubyA10:"#ff617beb",rubyA11:"#ff949d",rubyA12:"#ffd3e2fe"},Y={ruby1:"color(display-p3 0.093 0.068 0.074)",ruby2:"color(display-p3 0.113 0.083 0.089)",ruby3:"color(display-p3 0.208 0.088 0.117)",ruby4:"color(display-p3 0.279 0.092 0.147)",ruby5:"color(display-p3 0.337 0.12 0.18)",ruby6:"color(display-p3 0.401 0.166 0.223)",ruby7:"color(display-p3 0.495 0.224 0.281)",ruby8:"color(display-p3 0.652 0.295 0.359)",ruby9:"color(display-p3 0.83 0.323 0.408)",ruby10:"color(display-p3 0.857 0.392 0.455)",ruby11:"color(display-p3 1 0.57 0.59)",ruby12:"color(display-p3 0.968 0.83 0.88)"},q={crimsonA1:"#f4126709",crimsonA2:"#f22f7a11",crimsonA3:"#fe2a8b2a",crimsonA4:"#fd158741",crimsonA5:"#fd278f51",crimsonA6:"#fe459763",crimsonA7:"#fd559b7f",crimsonA8:"#fe5b9bab",crimsonA9:"#fe418de8",crimsonA10:"#ff5693ed",crimsonA11:"#ff92ad",crimsonA12:"#ffd5eafd"},x={crimson1:"color(display-p3 0.093 0.068 0.078)",crimson2:"color(display-p3 0.117 0.078 0.095)",crimson3:"color(display-p3 0.203 0.091 0.143)",crimson4:"color(display-p3 0.277 0.087 0.182)",crimson5:"color(display-p3 0.332 0.115 0.22)",crimson6:"color(display-p3 0.394 0.162 0.268)",crimson7:"color(display-p3 0.489 0.222 0.336)",crimson8:"color(display-p3 0.638 0.289 0.429)",crimson9:"color(display-p3 0.843 0.298 0.507)",crimson10:"color(display-p3 0.864 0.364 0.539)",crimson11:"color(display-p3 1 0.56 0.66)",crimson12:"color(display-p3 0.966 0.834 0.906)"},B={pinkA1:"#f412bc09",pinkA2:"#f420bb12",pinkA3:"#fe37cc29",pinkA4:"#fc1ec43f",pinkA5:"#fd35c24e",pinkA6:"#fd51c75f",pinkA7:"#fd62c87b",pinkA8:"#ff68c8a2",pinkA9:"#fe49bcd4",pinkA10:"#ff5cc0dc",pinkA11:"#ff8dcc",pinkA12:"#ffd3ecfd"},F={pink1:"color(display-p3 0.093 0.068 0.089)",pink2:"color(display-p3 0.121 0.073 0.11)",pink3:"color(display-p3 0.198 0.098 0.179)",pink4:"color(display-p3 0.271 0.095 0.231)",pink5:"color(display-p3 0.32 0.127 0.273)",pink6:"color(display-p3 0.382 0.177 0.326)",pink7:"color(display-p3 0.477 0.238 0.405)",pink8:"color(display-p3 0.612 0.304 0.51)",pink9:"color(display-p3 0.775 0.297 0.61)",pink10:"color(display-p3 0.808 0.356 0.645)",pink11:"color(display-p3 1 0.535 0.78)",pink12:"color(display-p3 0.964 0.826 0.912)"},J={plumA1:"#f112f108",plumA2:"#f22ff211",plumA3:"#fd4cfd27",plumA4:"#f646ff3a",plumA5:"#f455ff48",plumA6:"#f66dff56",plumA7:"#f07cfd70",plumA8:"#ee84ff95",plumA9:"#e961feb6",plumA10:"#ed70ffc0",plumA11:"#f19cfef3",plumA12:"#feddfef4"},K={plum1:"color(display-p3 0.09 0.068 0.092)",plum2:"color(display-p3 0.118 0.077 0.121)",plum3:"color(display-p3 0.192 0.105 0.202)",plum4:"color(display-p3 0.25 0.121 0.271)",plum5:"color(display-p3 0.293 0.152 0.319)",plum6:"color(display-p3 0.343 0.198 0.372)",plum7:"color(display-p3 0.424 0.262 0.461)",plum8:"color(display-p3 0.54 0.341 0.595)",plum9:"color(display-p3 0.624 0.313 0.708)",plum10:"color(display-p3 0.666 0.365 0.748)",plum11:"color(display-p3 0.86 0.602 0.933)",plum12:"color(display-p3 0.936 0.836 0.949)"},Q={purpleA1:"#b412f90b",purpleA2:"#b744f714",purpleA3:"#c150ff2d",purpleA4:"#bb53fd42",purpleA5:"#be5cfd51",purpleA6:"#c16dfd61",purpleA7:"#c378fd7a",purpleA8:"#c47effa4",purpleA9:"#b661ffc2",purpleA10:"#bc6fffcd",purpleA11:"#d19dff",purpleA12:"#f1ddfffa"},U={purple1:"color(display-p3 0.09 0.068 0.103)",purple2:"color(display-p3 0.113 0.082 0.134)",purple3:"color(display-p3 0.175 0.112 0.224)",purple4:"color(display-p3 0.224 0.137 0.297)",purple5:"color(display-p3 0.264 0.167 0.349)",purple6:"color(display-p3 0.311 0.208 0.406)",purple7:"color(display-p3 0.381 0.266 0.496)",purple8:"color(display-p3 0.49 0.349 0.649)",purple9:"color(display-p3 0.523 0.318 0.751)",purple10:"color(display-p3 0.57 0.373 0.791)",purple11:"color(display-p3 0.8 0.62 1)",purple12:"color(display-p3 0.913 0.854 0.971)"},V={violetA1:"#4422ff0f",violetA2:"#853ff916",violetA3:"#8354fe36",violetA4:"#7d51fd50",violetA5:"#845ffd5f",violetA6:"#8f6cfd6d",violetA7:"#9879ff83",violetA8:"#977dfea8",violetA9:"#8668ffcc",violetA10:"#9176fed7",violetA11:"#baa7ff",violetA12:"#e3defffe"},W={violet1:"color(display-p3 0.077 0.071 0.118)",violet2:"color(display-p3 0.101 0.084 0.141)",violet3:"color(display-p3 0.154 0.123 0.256)",violet4:"color(display-p3 0.191 0.148 0.345)",violet5:"color(display-p3 0.226 0.182 0.396)",violet6:"color(display-p3 0.269 0.223 0.449)",violet7:"color(display-p3 0.326 0.277 0.53)",violet8:"color(display-p3 0.399 0.346 0.656)",violet9:"color(display-p3 0.417 0.341 0.784)",violet10:"color(display-p3 0.477 0.402 0.823)",violet11:"color(display-p3 0.72 0.65 1)",violet12:"color(display-p3 0.883 0.867 0.986)"},X={irisA1:"#3636fe0e",irisA2:"#564bf916",irisA3:"#525bff3b",irisA4:"#4d58ff5a",irisA5:"#5b62fd6b",irisA6:"#6d6ffd7a",irisA7:"#7777fe8e",irisA8:"#7b7afeac",irisA9:"#6a6afed4",irisA10:"#7d79ffdc",irisA11:"#b1a9ff",irisA12:"#e1e0fffe"},Z={iris1:"color(display-p3 0.075 0.075 0.114)",iris2:"color(display-p3 0.089 0.086 0.14)",iris3:"color(display-p3 0.128 0.134 0.272)",iris4:"color(display-p3 0.153 0.165 0.382)",iris5:"color(display-p3 0.192 0.201 0.44)",iris6:"color(display-p3 0.239 0.241 0.491)",iris7:"color(display-p3 0.291 0.289 0.565)",iris8:"color(display-p3 0.35 0.345 0.673)",iris9:"color(display-p3 0.357 0.357 0.81)",iris10:"color(display-p3 0.428 0.416 0.843)",iris11:"color(display-p3 0.685 0.662 1)",iris12:"color(display-p3 0.878 0.875 0.986)"},$={indigoA1:"#1133ff0f",indigoA2:"#3354fa17",indigoA3:"#2f62ff3c",indigoA4:"#3566ff57",indigoA5:"#4171fd6b",indigoA6:"#5178fd7c",indigoA7:"#5a7fff90",indigoA8:"#5b81feac",indigoA9:"#4671ffdb",indigoA10:"#5c7efee3",indigoA11:"#9eb1ff",indigoA12:"#d6e1ff"},o0={indigo1:"color(display-p3 0.068 0.074 0.118)",indigo2:"color(display-p3 0.081 0.089 0.144)",indigo3:"color(display-p3 0.105 0.141 0.275)",indigo4:"color(display-p3 0.129 0.18 0.369)",indigo5:"color(display-p3 0.163 0.22 0.439)",indigo6:"color(display-p3 0.203 0.262 0.5)",indigo7:"color(display-p3 0.245 0.309 0.575)",indigo8:"color(display-p3 0.285 0.362 0.674)",indigo9:"color(display-p3 0.276 0.384 0.837)",indigo10:"color(display-p3 0.354 0.445 0.866)",indigo11:"color(display-p3 0.63 0.69 1)",indigo12:"color(display-p3 0.848 0.881 0.99)"},l0={cyanA1:"#0091f70a",cyanA2:"#02a7f211",cyanA3:"#00befd28",cyanA4:"#00baff3b",cyanA5:"#00befd4d",cyanA6:"#00c7fd5e",cyanA7:"#14cdff75",cyanA8:"#11cfff95",cyanA9:"#00cfffc3",cyanA10:"#28d6ffcd",cyanA11:"#52e1fee5",cyanA12:"#bbf3fef7"},a0={cyan1:"color(display-p3 0.053 0.085 0.098)",cyan2:"color(display-p3 0.072 0.105 0.122)",cyan3:"color(display-p3 0.073 0.168 0.209)",cyan4:"color(display-p3 0.063 0.216 0.277)",cyan5:"color(display-p3 0.091 0.267 0.336)",cyan6:"color(display-p3 0.137 0.324 0.4)",cyan7:"color(display-p3 0.186 0.398 0.484)",cyan8:"color(display-p3 0.23 0.496 0.6)",cyan9:"color(display-p3 0.282 0.627 0.765)",cyan10:"color(display-p3 0.331 0.675 0.801)",cyan11:"color(display-p3 0.446 0.79 0.887)",cyan12:"color(display-p3 0.757 0.919 0.962)"},p0={tealA1:"#00deab05",tealA2:"#12fbe60c",tealA3:"#00ffe61e",tealA4:"#00ffe92d",tealA5:"#00ffea3b",tealA6:"#1cffe84b",tealA7:"#2efde85f",tealA8:"#32ffe775",tealA9:"#13ffe49f",tealA10:"#0dffe0ae",tealA11:"#0afed5d6",tealA12:"#b8ffebef"},r0={teal1:"color(display-p3 0.059 0.083 0.079)",teal2:"color(display-p3 0.075 0.11 0.107)",teal3:"color(display-p3 0.087 0.175 0.165)",teal4:"color(display-p3 0.087 0.227 0.214)",teal5:"color(display-p3 0.12 0.277 0.261)",teal6:"color(display-p3 0.162 0.335 0.314)",teal7:"color(display-p3 0.205 0.406 0.379)",teal8:"color(display-p3 0.245 0.489 0.453)",teal9:"color(display-p3 0.297 0.637 0.581)",teal10:"color(display-p3 0.319 0.69 0.62)",teal11:"color(display-p3 0.388 0.835 0.719)",teal12:"color(display-p3 0.734 0.934 0.87)"},d0={jadeA1:"#00de4505",jadeA2:"#27fba60c",jadeA3:"#02f99920",jadeA4:"#00ffaa2d",jadeA5:"#11ffb63b",jadeA6:"#34ffc24b",jadeA7:"#45fdc75e",jadeA8:"#48ffcf75",jadeA9:"#38feca9d",jadeA10:"#31fec7ab",jadeA11:"#21fec0d6",jadeA12:"#b8ffe1ef"},i0={jade1:"color(display-p3 0.059 0.083 0.071)",jade2:"color(display-p3 0.078 0.11 0.094)",jade3:"color(display-p3 0.091 0.176 0.138)",jade4:"color(display-p3 0.102 0.228 0.177)",jade5:"color(display-p3 0.133 0.279 0.221)",jade6:"color(display-p3 0.174 0.334 0.273)",jade7:"color(display-p3 0.219 0.402 0.335)",jade8:"color(display-p3 0.263 0.488 0.411)",jade9:"color(display-p3 0.319 0.63 0.521)",jade10:"color(display-p3 0.338 0.68 0.555)",jade11:"color(display-p3 0.4 0.835 0.656)",jade12:"color(display-p3 0.734 0.934 0.838)"},s0={greenA1:"#00de4505",greenA2:"#29f99d0b",greenA3:"#22ff991e",greenA4:"#11ff992d",greenA5:"#2bffa23c",greenA6:"#44ffaa4b",greenA7:"#50fdac5e",greenA8:"#54ffad73",greenA9:"#44ffa49e",greenA10:"#43fea4ab",greenA11:"#46fea5d4",greenA12:"#bbffd7f0"},e0={green1:"color(display-p3 0.062 0.083 0.071)",green2:"color(display-p3 0.079 0.106 0.09)",green3:"color(display-p3 0.1 0.173 0.133)",green4:"color(display-p3 0.115 0.229 0.166)",green5:"color(display-p3 0.147 0.282 0.206)",green6:"color(display-p3 0.185 0.338 0.25)",green7:"color(display-p3 0.227 0.403 0.298)",green8:"color(display-p3 0.27 0.479 0.351)",green9:"color(display-p3 0.332 0.634 0.442)",green10:"color(display-p3 0.357 0.682 0.474)",green11:"color(display-p3 0.434 0.828 0.573)",green12:"color(display-p3 0.747 0.938 0.807)"},c0={grassA1:"#00de1205",grassA2:"#5ef7780a",grassA3:"#70fe8c1b",grassA4:"#57ff802c",grassA5:"#68ff8b3b",grassA6:"#71ff8f4b",grassA7:"#77fd925d",grassA8:"#77fd9070",grassA9:"#65ff82a1",grassA10:"#72ff8dae",grassA11:"#89ff9fcd",grassA12:"#ceffceef"},y0={grass1:"color(display-p3 0.062 0.083 0.067)",grass2:"color(display-p3 0.083 0.103 0.085)",grass3:"color(display-p3 0.118 0.163 0.122)",grass4:"color(display-p3 0.142 0.225 0.15)",grass5:"color(display-p3 0.178 0.279 0.186)",grass6:"color(display-p3 0.217 0.337 0.224)",grass7:"color(display-p3 0.258 0.4 0.264)",grass8:"color(display-p3 0.302 0.47 0.305)",grass9:"color(display-p3 0.38 0.647 0.378)",grass10:"color(display-p3 0.426 0.694 0.426)",grass11:"color(display-p3 0.535 0.807 0.542)",grass12:"color(display-p3 0.797 0.936 0.776)"},A0={brownA1:"#91110002",brownA2:"#fba67c0c",brownA3:"#fcb58c19",brownA4:"#fbbb8a24",brownA5:"#fcb88931",brownA6:"#fdba8741",brownA7:"#ffbb8856",brownA8:"#ffbe8773",brownA9:"#feb87da8",brownA10:"#ffc18cb3",brownA11:"#fed1aad9",brownA12:"#feecd4f2"},f0={brown1:"color(display-p3 0.071 0.067 0.059)",brown2:"color(display-p3 0.107 0.095 0.087)",brown3:"color(display-p3 0.151 0.13 0.115)",brown4:"color(display-p3 0.191 0.161 0.138)",brown5:"color(display-p3 0.235 0.194 0.162)",brown6:"color(display-p3 0.291 0.237 0.192)",brown7:"color(display-p3 0.365 0.295 0.232)",brown8:"color(display-p3 0.469 0.377 0.287)",brown9:"color(display-p3 0.651 0.505 0.368)",brown10:"color(display-p3 0.697 0.557 0.423)",brown11:"color(display-p3 0.835 0.715 0.597)",brown12:"color(display-p3 0.938 0.885 0.802)"},n0={bronzeA1:"#d1110004",bronzeA2:"#fbbc910c",bronzeA3:"#faceb817",bronzeA4:"#facdb622",bronzeA5:"#ffd2c12d",bronzeA6:"#ffd1c03c",bronzeA7:"#fdd0c04f",bronzeA8:"#ffd6c565",bronzeA9:"#fec7b09b",bronzeA10:"#fecab5a9",bronzeA11:"#ffd7c6d1",bronzeA12:"#fff1e9ec"},t0={bronze1:"color(display-p3 0.076 0.067 0.063)",bronze2:"color(display-p3 0.106 0.097 0.093)",bronze3:"color(display-p3 0.147 0.132 0.125)",bronze4:"color(display-p3 0.185 0.166 0.156)",bronze5:"color(display-p3 0.227 0.202 0.19)",bronze6:"color(display-p3 0.278 0.246 0.23)",bronze7:"color(display-p3 0.343 0.302 0.281)",bronze8:"color(display-p3 0.426 0.374 0.347)",bronze9:"color(display-p3 0.611 0.507 0.455)",bronze10:"color(display-p3 0.66 0.556 0.504)",bronze11:"color(display-p3 0.81 0.707 0.655)",bronze12:"color(display-p3 0.921 0.88 0.854)"},b0={goldA1:"#91911102",goldA2:"#f9e29d0b",goldA3:"#f8ecbb15",goldA4:"#ffeec41e",goldA5:"#feecc22a",goldA6:"#feebcb37",goldA7:"#ffedcd48",goldA8:"#fdeaca5f",goldA9:"#ffdba690",goldA10:"#fedfb09d",goldA11:"#fee7c6c8",goldA12:"#fef7ede7"},m0={gold1:"color(display-p3 0.071 0.071 0.067)",gold2:"color(display-p3 0.104 0.101 0.09)",gold3:"color(display-p3 0.141 0.136 0.122)",gold4:"color(display-p3 0.177 0.17 0.152)",gold5:"color(display-p3 0.217 0.207 0.185)",gold6:"color(display-p3 0.265 0.252 0.225)",gold7:"color(display-p3 0.327 0.31 0.277)",gold8:"color(display-p3 0.407 0.384 0.342)",gold9:"color(display-p3 0.579 0.517 0.41)",gold10:"color(display-p3 0.628 0.566 0.463)",gold11:"color(display-p3 0.784 0.728 0.635)",gold12:"color(display-p3 0.906 0.887 0.855)"},g0={skyA1:"#0044ff0f",skyA2:"#1171fb18",skyA3:"#1184fc33",skyA4:"#128fff49",skyA5:"#1c9dfd5d",skyA6:"#28a5ff72",skyA7:"#2badfe8b",skyA8:"#1db2fea9",skyA9:"#7ce3fffe",skyA10:"#a8eeff",skyA11:"#7cd3ffef",skyA12:"#c2f3ff"},k0={sky1:"color(display-p3 0.056 0.078 0.116)",sky2:"color(display-p3 0.075 0.101 0.149)",sky3:"color(display-p3 0.089 0.154 0.244)",sky4:"color(display-p3 0.106 0.207 0.323)",sky5:"color(display-p3 0.135 0.261 0.394)",sky6:"color(display-p3 0.17 0.322 0.469)",sky7:"color(display-p3 0.205 0.394 0.557)",sky8:"color(display-p3 0.232 0.48 0.665)",sky9:"color(display-p3 0.585 0.877 0.983)",sky10:"color(display-p3 0.718 0.925 0.991)",sky11:"color(display-p3 0.536 0.772 0.924)",sky12:"color(display-p3 0.799 0.947 0.993)"},u0={mintA1:"#00dede05",mintA2:"#00f9f90b",mintA3:"#00fff61d",mintA4:"#00fff42c",mintA5:"#00fff23a",mintA6:"#0effeb4a",mintA7:"#34fde55e",mintA8:"#41ffdf76",mintA9:"#92ffe7e9",mintA10:"#aefeedf5",mintA11:"#67ffded2",mintA12:"#cbfee9f5"},v0={mint1:"color(display-p3 0.059 0.082 0.081)",mint2:"color(display-p3 0.068 0.104 0.105)",mint3:"color(display-p3 0.077 0.17 0.168)",mint4:"color(display-p3 0.068 0.224 0.22)",mint5:"color(display-p3 0.104 0.275 0.264)",mint6:"color(display-p3 0.154 0.332 0.313)",mint7:"color(display-p3 0.207 0.403 0.373)",mint8:"color(display-p3 0.258 0.49 0.441)",mint9:"color(display-p3 0.62 0.908 0.834)",mint10:"color(display-p3 0.725 0.954 0.898)",mint11:"color(display-p3 0.482 0.825 0.733)",mint12:"color(display-p3 0.807 0.955 0.887)"},w0={limeA1:"#11bb0003",limeA2:"#78f7000a",limeA3:"#9bfd4c1a",limeA4:"#a7fe5c29",limeA5:"#affe6537",limeA6:"#b2fe6d46",limeA7:"#b6ff6f57",limeA8:"#b6fd6d6c",limeA9:"#caff69ed",limeA10:"#d4ff70",limeA11:"#d1fe77e4",limeA12:"#e9febff7"},P0={lime1:"color(display-p3 0.067 0.073 0.048)",lime2:"color(display-p3 0.086 0.1 0.067)",lime3:"color(display-p3 0.13 0.16 0.099)",lime4:"color(display-p3 0.172 0.214 0.126)",lime5:"color(display-p3 0.213 0.266 0.153)",lime6:"color(display-p3 0.257 0.321 0.182)",lime7:"color(display-p3 0.307 0.383 0.215)",lime8:"color(display-p3 0.365 0.456 0.25)",lime9:"color(display-p3 0.78 0.928 0.466)",lime10:"color(display-p3 0.865 0.995 0.519)",lime11:"color(display-p3 0.771 0.893 0.485)",lime12:"color(display-p3 0.905 0.966 0.753)"},D0={yellowA1:"#d1510004",yellowA2:"#f9b4000b",yellowA3:"#ffaa001e",yellowA4:"#fdb70028",yellowA5:"#febb0036",yellowA6:"#fec40046",yellowA7:"#fdcb225c",yellowA8:"#fdca327b",yellowA9:"#ffe629",yellowA10:"#ffff57",yellowA11:"#fee949f5",yellowA12:"#fef6baf6"},j0={yellow1:"color(display-p3 0.078 0.069 0.047)",yellow2:"color(display-p3 0.103 0.094 0.063)",yellow3:"color(display-p3 0.168 0.137 0.039)",yellow4:"color(display-p3 0.209 0.169 0)",yellow5:"color(display-p3 0.255 0.209 0)",yellow6:"color(display-p3 0.31 0.261 0.07)",yellow7:"color(display-p3 0.389 0.331 0.135)",yellow8:"color(display-p3 0.497 0.42 0.182)",yellow9:"color(display-p3 1 0.92 0.22)",yellow10:"color(display-p3 1 1 0.456)",yellow11:"color(display-p3 0.948 0.885 0.392)",yellow12:"color(display-p3 0.959 0.934 0.731)"},z0={amberA1:"#e63c0006",amberA2:"#fd9b000d",amberA3:"#fa820022",amberA4:"#fc820032",amberA5:"#fd8b0041",amberA6:"#fd9b0051",amberA7:"#ffab2567",amberA8:"#ffae3587",amberA9:"#ffc53d",amberA10:"#ffd60a",amberA11:"#ffca16",amberA12:"#ffe7b3"},L0={amber1:"color(display-p3 0.082 0.07 0.05)",amber2:"color(display-p3 0.111 0.094 0.064)",amber3:"color(display-p3 0.178 0.128 0.049)",amber4:"color(display-p3 0.239 0.156 0)",amber5:"color(display-p3 0.29 0.193 0)",amber6:"color(display-p3 0.344 0.245 0.076)",amber7:"color(display-p3 0.422 0.314 0.141)",amber8:"color(display-p3 0.535 0.399 0.189)",amber9:"color(display-p3 1 0.77 0.26)",amber10:"color(display-p3 1 0.87 0.15)",amber11:"color(display-p3 1 0.8 0.29)",amber12:"color(display-p3 0.984 0.909 0.726)"},_0={orangeA1:"#ec360007",orangeA2:"#fe6d000e",orangeA3:"#fb6a0025",orangeA4:"#ff590039",orangeA5:"#ff61004a",orangeA6:"#fd75045c",orangeA7:"#ff832c75",orangeA8:"#fe84389d",orangeA9:"#fe6d15f7",orangeA10:"#ff801f",orangeA11:"#ffa057",orangeA12:"#ffe0c2"},G0={orange1:"color(display-p3 0.088 0.07 0.057)",orange2:"color(display-p3 0.113 0.089 0.061)",orange3:"color(display-p3 0.189 0.12 0.056)",orange4:"color(display-p3 0.262 0.132 0)",orange5:"color(display-p3 0.315 0.168 0.016)",orange6:"color(display-p3 0.376 0.219 0.088)",orange7:"color(display-p3 0.465 0.283 0.147)",orange8:"color(display-p3 0.601 0.359 0.201)",orange9:"color(display-p3 0.9 0.45 0.2)",orange10:"color(display-p3 0.98 0.51 0.23)",orange11:"color(display-p3 1 0.63 0.38)",orange12:"color(display-p3 0.98 0.883 0.775)"},I0={mauveA1:"#55005503",mauveA2:"#2b005506",mauveA3:"#30004010",mauveA4:"#20003618",mauveA5:"#20003820",mauveA6:"#14003527",mauveA7:"#10003332",mauveA8:"#08003145",mauveA9:"#05001d73",mauveA10:"#0500197d",mauveA11:"#0400119c",mauveA12:"#020008e0"},h0={mauve1:"color(display-p3 0.991 0.988 0.992)",mauve2:"color(display-p3 0.98 0.976 0.984)",mauve3:"color(display-p3 0.946 0.938 0.952)",mauve4:"color(display-p3 0.915 0.906 0.925)",mauve5:"color(display-p3 0.886 0.876 0.901)",mauve6:"color(display-p3 0.856 0.846 0.875)",mauve7:"color(display-p3 0.814 0.804 0.84)",mauve8:"color(display-p3 0.735 0.728 0.777)",mauve9:"color(display-p3 0.555 0.549 0.596)",mauve10:"color(display-p3 0.514 0.508 0.552)",mauve11:"color(display-p3 0.395 0.388 0.424)",mauve12:"color(display-p3 0.128 0.122 0.147)"},C0={slateA1:"#00005503",slateA2:"#00005506",slateA3:"#0000330f",slateA4:"#00002d17",slateA5:"#0009321f",slateA6:"#00002f26",slateA7:"#00062e32",slateA8:"#00083046",slateA9:"#00051d74",slateA10:"#00071b7f",slateA11:"#0007149f",slateA12:"#000509e3"},H0={slate1:"color(display-p3 0.988 0.988 0.992)",slate2:"color(display-p3 0.976 0.976 0.984)",slate3:"color(display-p3 0.94 0.941 0.953)",slate4:"color(display-p3 0.908 0.909 0.925)",slate5:"color(display-p3 0.88 0.881 0.901)",slate6:"color(display-p3 0.85 0.852 0.876)",slate7:"color(display-p3 0.805 0.808 0.838)",slate8:"color(display-p3 0.727 0.733 0.773)",slate9:"color(display-p3 0.547 0.553 0.592)",slate10:"color(display-p3 0.503 0.512 0.549)",slate11:"color(display-p3 0.379 0.392 0.421)",slate12:"color(display-p3 0.113 0.125 0.14)"},O0={sageA1:"#00804004",sageA2:"#00402008",sageA3:"#002d1e11",sageA4:"#001f1519",sageA5:"#00180820",sageA6:"#00140d28",sageA7:"#00140a34",sageA8:"#000f0847",sageA9:"#00110b79",sageA10:"#00100a83",sageA11:"#000a07a0",sageA12:"#000805e5"},R0={sage1:"color(display-p3 0.986 0.992 0.988)",sage2:"color(display-p3 0.97 0.977 0.974)",sage3:"color(display-p3 0.935 0.944 0.94)",sage4:"color(display-p3 0.904 0.913 0.909)",sage5:"color(display-p3 0.875 0.885 0.88)",sage6:"color(display-p3 0.844 0.854 0.849)",sage7:"color(display-p3 0.8 0.811 0.806)",sage8:"color(display-p3 0.725 0.738 0.732)",sage9:"color(display-p3 0.531 0.556 0.546)",sage10:"color(display-p3 0.492 0.515 0.506)",sage11:"color(display-p3 0.377 0.395 0.389)",sage12:"color(display-p3 0.107 0.129 0.118)"},S0={oliveA1:"#00550003",oliveA2:"#00490007",oliveA3:"#00200010",oliveA4:"#00160018",oliveA5:"#00180020",oliveA6:"#00140028",oliveA7:"#000f0033",oliveA8:"#040f0047",oliveA9:"#050f0078",oliveA10:"#040e0082",oliveA11:"#020a00a0",oliveA12:"#010600e3"},T0={olive1:"color(display-p3 0.989 0.992 0.989)",olive2:"color(display-p3 0.974 0.98 0.973)",olive3:"color(display-p3 0.939 0.945 0.937)",olive4:"color(display-p3 0.907 0.914 0.905)",olive5:"color(display-p3 0.878 0.885 0.875)",olive6:"color(display-p3 0.846 0.855 0.843)",olive7:"color(display-p3 0.803 0.812 0.8)",olive8:"color(display-p3 0.727 0.738 0.723)",olive9:"color(display-p3 0.541 0.556 0.532)",olive10:"color(display-p3 0.5 0.515 0.491)",olive11:"color(display-p3 0.38 0.395 0.374)",olive12:"color(display-p3 0.117 0.129 0.111)"},E0={sandA1:"#55550003",sandA2:"#25250007",sandA3:"#20100010",sandA4:"#1f150019",sandA5:"#1f180021",sandA6:"#19130029",sandA7:"#19140035",sandA8:"#1915014a",sandA9:"#0f0f0079",sandA10:"#0c0c0083",sandA11:"#080800a1",sandA12:"#060500e3"},M0={sand1:"color(display-p3 0.992 0.992 0.989)",sand2:"color(display-p3 0.977 0.977 0.973)",sand3:"color(display-p3 0.943 0.942 0.936)",sand4:"color(display-p3 0.913 0.912 0.903)",sand5:"color(display-p3 0.885 0.883 0.873)",sand6:"color(display-p3 0.854 0.852 0.839)",sand7:"color(display-p3 0.813 0.81 0.794)",sand8:"color(display-p3 0.738 0.734 0.713)",sand9:"color(display-p3 0.553 0.553 0.528)",sand10:"color(display-p3 0.511 0.511 0.488)",sand11:"color(display-p3 0.388 0.388 0.37)",sand12:"color(display-p3 0.129 0.126 0.111)"},N0={tomatoA1:"#ff000003",tomatoA2:"#ff200008",tomatoA3:"#f52b0018",tomatoA4:"#ff35002c",tomatoA5:"#ff2e003d",tomatoA6:"#f92d0050",tomatoA7:"#e7280067",tomatoA8:"#db250084",tomatoA9:"#df2600d1",tomatoA10:"#d72400da",tomatoA11:"#cd2200ea",tomatoA12:"#460900e0"},o={tomato1:"color(display-p3 0.998 0.989 0.988)",tomato2:"color(display-p3 0.994 0.974 0.969)",tomato3:"color(display-p3 0.985 0.924 0.909)",tomato4:"color(display-p3 0.996 0.868 0.835)",tomato5:"color(display-p3 0.98 0.812 0.77)",tomato6:"color(display-p3 0.953 0.75 0.698)",tomato7:"color(display-p3 0.917 0.673 0.611)",tomato8:"color(display-p3 0.875 0.575 0.502)",tomato9:"color(display-p3 0.831 0.345 0.231)",tomato10:"color(display-p3 0.802 0.313 0.2)",tomato11:"color(display-p3 0.755 0.259 0.152)",tomato12:"color(display-p3 0.335 0.165 0.132)"},Y0={redA1:"#ff000003",redA2:"#ff000008",redA3:"#f3000d14",redA4:"#ff000824",redA5:"#ff000632",redA6:"#f8000442",redA7:"#df000356",redA8:"#d2000571",redA9:"#db0007b7",redA10:"#d10005c1",redA11:"#c40006d3",redA12:"#55000de8"},l={red1:"color(display-p3 0.998 0.989 0.988)",red2:"color(display-p3 0.995 0.971 0.971)",red3:"color(display-p3 0.985 0.925 0.925)",red4:"color(display-p3 0.999 0.866 0.866)",red5:"color(display-p3 0.984 0.812 0.811)",red6:"color(display-p3 0.955 0.751 0.749)",red7:"color(display-p3 0.915 0.675 0.672)",red8:"color(display-p3 0.872 0.575 0.572)",red9:"color(display-p3 0.83 0.329 0.324)",red10:"color(display-p3 0.798 0.294 0.285)",red11:"color(display-p3 0.744 0.234 0.222)",red12:"color(display-p3 0.36 0.115 0.143)"},q0={rubyA1:"#ff005503",rubyA2:"#ff002008",rubyA3:"#f3002515",rubyA4:"#ff002523",rubyA5:"#ff002a31",rubyA6:"#e4002440",rubyA7:"#ce002553",rubyA8:"#c300286d",rubyA9:"#db002cb9",rubyA10:"#d2002cc4",rubyA11:"#c10030db",rubyA12:"#550016e8"},a={ruby1:"color(display-p3 0.998 0.989 0.992)",ruby2:"color(display-p3 0.995 0.971 0.974)",ruby3:"color(display-p3 0.983 0.92 0.928)",ruby4:"color(display-p3 0.987 0.869 0.885)",ruby5:"color(display-p3 0.968 0.817 0.839)",ruby6:"color(display-p3 0.937 0.758 0.786)",ruby7:"color(display-p3 0.897 0.685 0.721)",ruby8:"color(display-p3 0.851 0.588 0.639)",ruby9:"color(display-p3 0.83 0.323 0.408)",ruby10:"color(display-p3 0.795 0.286 0.375)",ruby11:"color(display-p3 0.728 0.211 0.311)",ruby12:"color(display-p3 0.36 0.115 0.171)"},x0={crimsonA1:"#ff005503",crimsonA2:"#e0004008",crimsonA3:"#ff005216",crimsonA4:"#f8005123",crimsonA5:"#e5004f31",crimsonA6:"#d0004b41",crimsonA7:"#bf004753",crimsonA8:"#b6004a6c",crimsonA9:"#e2005bc2",crimsonA10:"#d70056cb",crimsonA11:"#c4004fe2",crimsonA12:"#530026e9"},p={crimson1:"color(display-p3 0.998 0.989 0.992)",crimson2:"color(display-p3 0.991 0.969 0.976)",crimson3:"color(display-p3 0.987 0.917 0.941)",crimson4:"color(display-p3 0.975 0.866 0.904)",crimson5:"color(display-p3 0.953 0.813 0.864)",crimson6:"color(display-p3 0.921 0.755 0.817)",crimson7:"color(display-p3 0.88 0.683 0.761)",crimson8:"color(display-p3 0.834 0.592 0.694)",crimson9:"color(display-p3 0.843 0.298 0.507)",crimson10:"color(display-p3 0.807 0.266 0.468)",crimson11:"color(display-p3 0.731 0.195 0.388)",crimson12:"color(display-p3 0.352 0.111 0.221)"},B0={pinkA1:"#ff00aa03",pinkA2:"#e0008008",pinkA3:"#f4008c16",pinkA4:"#e2008b23",pinkA5:"#d1008331",pinkA6:"#c0007840",pinkA7:"#b6006f53",pinkA8:"#af006f6c",pinkA9:"#c8007fbf",pinkA10:"#c2007ac7",pinkA11:"#b60074d6",pinkA12:"#59003bed"},r={pink1:"color(display-p3 0.998 0.989 0.996)",pink2:"color(display-p3 0.992 0.97 0.985)",pink3:"color(display-p3 0.981 0.917 0.96)",pink4:"color(display-p3 0.963 0.867 0.932)",pink5:"color(display-p3 0.939 0.815 0.899)",pink6:"color(display-p3 0.907 0.756 0.859)",pink7:"color(display-p3 0.869 0.683 0.81)",pink8:"color(display-p3 0.825 0.59 0.751)",pink9:"color(display-p3 0.775 0.297 0.61)",pink10:"color(display-p3 0.748 0.27 0.581)",pink11:"color(display-p3 0.698 0.219 0.528)",pink12:"color(display-p3 0.363 0.101 0.279)"},F0={plumA1:"#aa00ff03",plumA2:"#c000c008",plumA3:"#cc00cc14",plumA4:"#c200c921",plumA5:"#b700bd2e",plumA6:"#a400b03d",plumA7:"#9900a852",plumA8:"#9000a56e",plumA9:"#89009eb5",plumA10:"#7f0092bb",plumA11:"#730086c1",plumA12:"#40004be6"},d={plum1:"color(display-p3 0.995 0.988 0.999)",plum2:"color(display-p3 0.988 0.971 0.99)",plum3:"color(display-p3 0.973 0.923 0.98)",plum4:"color(display-p3 0.953 0.875 0.966)",plum5:"color(display-p3 0.926 0.825 0.945)",plum6:"color(display-p3 0.89 0.765 0.916)",plum7:"color(display-p3 0.84 0.686 0.877)",plum8:"color(display-p3 0.775 0.58 0.832)",plum9:"color(display-p3 0.624 0.313 0.708)",plum10:"color(display-p3 0.587 0.29 0.667)",plum11:"color(display-p3 0.543 0.263 0.619)",plum12:"color(display-p3 0.299 0.114 0.352)"},J0={purpleA1:"#aa00aa03",purpleA2:"#8000e008",purpleA3:"#8e00f112",purpleA4:"#8d00e51d",purpleA5:"#8000db2a",purpleA6:"#7a01d03b",purpleA7:"#6d00c350",purpleA8:"#6600c06c",purpleA9:"#5c00adb1",purpleA10:"#53009eb8",purpleA11:"#52009aba",purpleA12:"#250049df"},i={purple1:"color(display-p3 0.995 0.988 0.996)",purple2:"color(display-p3 0.983 0.971 0.993)",purple3:"color(display-p3 0.963 0.931 0.989)",purple4:"color(display-p3 0.937 0.888 0.981)",purple5:"color(display-p3 0.904 0.837 0.966)",purple6:"color(display-p3 0.86 0.774 0.942)",purple7:"color(display-p3 0.799 0.69 0.91)",purple8:"color(display-p3 0.719 0.583 0.874)",purple9:"color(display-p3 0.523 0.318 0.751)",purple10:"color(display-p3 0.483 0.289 0.7)",purple11:"color(display-p3 0.473 0.281 0.687)",purple12:"color(display-p3 0.234 0.132 0.363)"},K0={violetA1:"#5500aa03",violetA2:"#4900ff07",violetA3:"#4400ee0f",violetA4:"#4300ff1b",violetA5:"#3600ff26",violetA6:"#3100fb35",violetA7:"#2d01dd4a",violetA8:"#2b00d066",violetA9:"#2400b7a9",violetA10:"#2300abb2",violetA11:"#1f0099af",violetA12:"#0b0043d9"},s={violet1:"color(display-p3 0.991 0.988 0.995)",violet2:"color(display-p3 0.978 0.974 0.998)",violet3:"color(display-p3 0.953 0.943 0.993)",violet4:"color(display-p3 0.916 0.897 1)",violet5:"color(display-p3 0.876 0.851 1)",violet6:"color(display-p3 0.825 0.793 0.981)",violet7:"color(display-p3 0.752 0.712 0.943)",violet8:"color(display-p3 0.654 0.602 0.902)",violet9:"color(display-p3 0.417 0.341 0.784)",violet10:"color(display-p3 0.381 0.306 0.741)",violet11:"color(display-p3 0.383 0.317 0.702)",violet12:"color(display-p3 0.179 0.15 0.359)"},Q0={irisA1:"#0000ff02",irisA2:"#0000ff07",irisA3:"#0011ee0f",irisA4:"#000bff19",irisA5:"#000eff25",irisA6:"#000aff34",irisA7:"#0008e647",irisA8:"#0008d964",irisA9:"#0000c0a4",irisA10:"#0000b6ae",irisA11:"#0600abac",irisA12:"#000246d8"},e={iris1:"color(display-p3 0.992 0.992 0.999)",iris2:"color(display-p3 0.972 0.973 0.998)",iris3:"color(display-p3 0.943 0.945 0.992)",iris4:"color(display-p3 0.902 0.906 1)",iris5:"color(display-p3 0.857 0.861 1)",iris6:"color(display-p3 0.799 0.805 0.987)",iris7:"color(display-p3 0.721 0.727 0.955)",iris8:"color(display-p3 0.61 0.619 0.918)",iris9:"color(display-p3 0.357 0.357 0.81)",iris10:"color(display-p3 0.318 0.318 0.774)",iris11:"color(display-p3 0.337 0.326 0.748)",iris12:"color(display-p3 0.154 0.161 0.371)"},U0={indigoA1:"#00008002",indigoA2:"#0040ff08",indigoA3:"#0047f112",indigoA4:"#0044ff1e",indigoA5:"#0044ff2d",indigoA6:"#003eff3e",indigoA7:"#0037ed54",indigoA8:"#0034dc72",indigoA9:"#0031d2c1",indigoA10:"#002ec9cc",indigoA11:"#002bb7c5",indigoA12:"#001046e0"},c={indigo1:"color(display-p3 0.992 0.992 0.996)",indigo2:"color(display-p3 0.971 0.977 0.998)",indigo3:"color(display-p3 0.933 0.948 0.992)",indigo4:"color(display-p3 0.885 0.914 1)",indigo5:"color(display-p3 0.831 0.87 1)",indigo6:"color(display-p3 0.767 0.814 0.995)",indigo7:"color(display-p3 0.685 0.74 0.957)",indigo8:"color(display-p3 0.569 0.639 0.916)",indigo9:"color(display-p3 0.276 0.384 0.837)",indigo10:"color(display-p3 0.234 0.343 0.801)",indigo11:"color(display-p3 0.256 0.354 0.755)",indigo12:"color(display-p3 0.133 0.175 0.348)"},V0={cyanA1:"#0099cc05",cyanA2:"#009db10d",cyanA3:"#00c2d121",cyanA4:"#00bcd435",cyanA5:"#01b4cc4a",cyanA6:"#00a7c162",cyanA7:"#009fbb82",cyanA8:"#00a3c0c2",cyanA9:"#00a2c7",cyanA10:"#0094b7f8",cyanA11:"#007491ef",cyanA12:"#00323ef2"},y={cyan1:"color(display-p3 0.982 0.992 0.996)",cyan2:"color(display-p3 0.955 0.981 0.984)",cyan3:"color(display-p3 0.888 0.965 0.975)",cyan4:"color(display-p3 0.821 0.941 0.959)",cyan5:"color(display-p3 0.751 0.907 0.935)",cyan6:"color(display-p3 0.671 0.862 0.9)",cyan7:"color(display-p3 0.564 0.8 0.854)",cyan8:"color(display-p3 0.388 0.715 0.798)",cyan9:"color(display-p3 0.282 0.627 0.765)",cyan10:"color(display-p3 0.264 0.583 0.71)",cyan11:"color(display-p3 0.08 0.48 0.63)",cyan12:"color(display-p3 0.108 0.232 0.277)"},W0={tealA1:"#00cc9905",tealA2:"#00aa800c",tealA3:"#00c69d1f",tealA4:"#00c39633",tealA5:"#00b49047",tealA6:"#00a6855e",tealA7:"#0099807c",tealA8:"#009783ac",tealA9:"#009e8ced",tealA10:"#009684f2",tealA11:"#008573",tealA12:"#00332df2"},A={teal1:"color(display-p3 0.983 0.996 0.992)",teal2:"color(display-p3 0.958 0.983 0.976)",teal3:"color(display-p3 0.895 0.971 0.952)",teal4:"color(display-p3 0.831 0.949 0.92)",teal5:"color(display-p3 0.761 0.914 0.878)",teal6:"color(display-p3 0.682 0.864 0.825)",teal7:"color(display-p3 0.581 0.798 0.756)",teal8:"color(display-p3 0.433 0.716 0.671)",teal9:"color(display-p3 0.297 0.637 0.581)",teal10:"color(display-p3 0.275 0.599 0.542)",teal11:"color(display-p3 0.08 0.5 0.43)",teal12:"color(display-p3 0.11 0.235 0.219)"},X0={jadeA1:"#00c08004",jadeA2:"#00a3460b",jadeA3:"#00ae4819",jadeA4:"#00a85129",jadeA5:"#00a2553c",jadeA6:"#009a5753",jadeA7:"#00945f74",jadeA8:"#00976ea9",jadeA9:"#00916bd6",jadeA10:"#008764d9",jadeA11:"#007152df",jadeA12:"#002217e2"},f={jade1:"color(display-p3 0.986 0.996 0.992)",jade2:"color(display-p3 0.962 0.983 0.969)",jade3:"color(display-p3 0.912 0.965 0.932)",jade4:"color(display-p3 0.858 0.941 0.893)",jade5:"color(display-p3 0.795 0.909 0.847)",jade6:"color(display-p3 0.715 0.864 0.791)",jade7:"color(display-p3 0.603 0.802 0.718)",jade8:"color(display-p3 0.44 0.72 0.629)",jade9:"color(display-p3 0.319 0.63 0.521)",jade10:"color(display-p3 0.299 0.592 0.488)",jade11:"color(display-p3 0.15 0.5 0.37)",jade12:"color(display-p3 0.142 0.229 0.194)"},Z0={greenA1:"#00c04004",greenA2:"#00a32f0b",greenA3:"#00a43319",greenA4:"#00a83829",greenA5:"#019c393b",greenA6:"#00963c52",greenA7:"#00914071",greenA8:"#00924ba4",greenA9:"#008f4acf",greenA10:"#008647d4",greenA11:"#00713fde",greenA12:"#002616e6"},n={green1:"color(display-p3 0.986 0.996 0.989)",green2:"color(display-p3 0.963 0.983 0.967)",green3:"color(display-p3 0.913 0.964 0.925)",green4:"color(display-p3 0.859 0.94 0.879)",green5:"color(display-p3 0.796 0.907 0.826)",green6:"color(display-p3 0.718 0.863 0.761)",green7:"color(display-p3 0.61 0.801 0.675)",green8:"color(display-p3 0.451 0.715 0.559)",green9:"color(display-p3 0.332 0.634 0.442)",green10:"color(display-p3 0.308 0.595 0.417)",green11:"color(display-p3 0.19 0.5 0.32)",green12:"color(display-p3 0.132 0.228 0.18)"},$0={grassA1:"#00c00004",grassA2:"#0099000a",grassA3:"#00970016",grassA4:"#009f0725",grassA5:"#00930536",grassA6:"#008f0a4d",grassA7:"#018b0f6b",grassA8:"#008d199a",grassA9:"#008619b9",grassA10:"#007b17c1",grassA11:"#006514d5",grassA12:"#002006df"},t={grass1:"color(display-p3 0.986 0.996 0.985)",grass2:"color(display-p3 0.966 0.983 0.964)",grass3:"color(display-p3 0.923 0.965 0.917)",grass4:"color(display-p3 0.872 0.94 0.865)",grass5:"color(display-p3 0.811 0.908 0.802)",grass6:"color(display-p3 0.733 0.864 0.724)",grass7:"color(display-p3 0.628 0.803 0.622)",grass8:"color(display-p3 0.477 0.72 0.482)",grass9:"color(display-p3 0.38 0.647 0.378)",grass10:"color(display-p3 0.344 0.598 0.342)",grass11:"color(display-p3 0.263 0.488 0.261)",grass12:"color(display-p3 0.151 0.233 0.153)"},oo={brownA1:"#aa550003",brownA2:"#aa550009",brownA3:"#a04b0018",brownA4:"#9b4a0026",brownA5:"#9f4d0035",brownA6:"#a04e0048",brownA7:"#a34e0060",brownA8:"#9f4a0081",brownA9:"#823c00a7",brownA10:"#723300ac",brownA11:"#522100b9",brownA12:"#140600d1"},b={brown1:"color(display-p3 0.995 0.992 0.989)",brown2:"color(display-p3 0.987 0.976 0.964)",brown3:"color(display-p3 0.959 0.936 0.909)",brown4:"color(display-p3 0.934 0.897 0.855)",brown5:"color(display-p3 0.909 0.856 0.798)",brown6:"color(display-p3 0.88 0.808 0.73)",brown7:"color(display-p3 0.841 0.742 0.639)",brown8:"color(display-p3 0.782 0.647 0.514)",brown9:"color(display-p3 0.651 0.505 0.368)",brown10:"color(display-p3 0.601 0.465 0.344)",brown11:"color(display-p3 0.485 0.374 0.288)",brown12:"color(display-p3 0.236 0.202 0.183)"},lo={bronzeA1:"#55000003",bronzeA2:"#cc33000a",bronzeA3:"#92250015",bronzeA4:"#80280020",bronzeA5:"#7423002c",bronzeA6:"#7324003a",bronzeA7:"#6c1f004c",bronzeA8:"#671c0066",bronzeA9:"#551a008d",bronzeA10:"#4c150097",bronzeA11:"#3d0f00ab",bronzeA12:"#1d0600d4"},m={bronze1:"color(display-p3 0.991 0.988 0.988)",bronze2:"color(display-p3 0.989 0.97 0.961)",bronze3:"color(display-p3 0.958 0.932 0.919)",bronze4:"color(display-p3 0.929 0.894 0.877)",bronze5:"color(display-p3 0.898 0.853 0.832)",bronze6:"color(display-p3 0.861 0.805 0.778)",bronze7:"color(display-p3 0.812 0.739 0.706)",bronze8:"color(display-p3 0.741 0.647 0.606)",bronze9:"color(display-p3 0.611 0.507 0.455)",bronze10:"color(display-p3 0.563 0.461 0.414)",bronze11:"color(display-p3 0.471 0.373 0.336)",bronze12:"color(display-p3 0.251 0.191 0.172)"},ao={goldA1:"#55550003",goldA2:"#9d8a000d",goldA3:"#75600018",goldA4:"#6b4e0024",goldA5:"#60460030",goldA6:"#64440040",goldA7:"#63420055",goldA8:"#633d0072",goldA9:"#5332009a",goldA10:"#492d00a1",goldA11:"#362100b4",goldA12:"#130c00d4"},g={gold1:"color(display-p3 0.992 0.992 0.989)",gold2:"color(display-p3 0.98 0.976 0.953)",gold3:"color(display-p3 0.947 0.94 0.909)",gold4:"color(display-p3 0.914 0.904 0.865)",gold5:"color(display-p3 0.88 0.865 0.816)",gold6:"color(display-p3 0.84 0.818 0.756)",gold7:"color(display-p3 0.788 0.753 0.677)",gold8:"color(display-p3 0.715 0.66 0.565)",gold9:"color(display-p3 0.579 0.517 0.41)",gold10:"color(display-p3 0.538 0.479 0.38)",gold11:"color(display-p3 0.433 0.386 0.305)",gold12:"color(display-p3 0.227 0.209 0.173)"},po={skyA1:"#00d5ff06",skyA2:"#00a4db0e",skyA3:"#00b3ee1e",skyA4:"#00ace42e",skyA5:"#00a1d841",skyA6:"#0092ca56",skyA7:"#0089c172",skyA8:"#0085bf9f",skyA9:"#00c7fe83",skyA10:"#00bcf38b",skyA11:"#00749e",skyA12:"#002540e2"},k={sky1:"color(display-p3 0.98 0.995 0.999)",sky2:"color(display-p3 0.953 0.98 0.99)",sky3:"color(display-p3 0.899 0.963 0.989)",sky4:"color(display-p3 0.842 0.937 0.977)",sky5:"color(display-p3 0.777 0.9 0.954)",sky6:"color(display-p3 0.701 0.851 0.921)",sky7:"color(display-p3 0.604 0.785 0.879)",sky8:"color(display-p3 0.457 0.696 0.829)",sky9:"color(display-p3 0.585 0.877 0.983)",sky10:"color(display-p3 0.555 0.845 0.959)",sky11:"color(display-p3 0.193 0.448 0.605)",sky12:"color(display-p3 0.145 0.241 0.329)"},ro={mintA1:"#00d5aa06",mintA2:"#00b18a0d",mintA3:"#00d29e22",mintA4:"#00cc9937",mintA5:"#00c0914c",mintA6:"#00b08663",mintA7:"#00a17d81",mintA8:"#009e7fb3",mintA9:"#00d3a579",mintA10:"#00c39982",mintA11:"#007763fd",mintA12:"#00312ae9"},u={mint1:"color(display-p3 0.98 0.995 0.992)",mint2:"color(display-p3 0.957 0.985 0.977)",mint3:"color(display-p3 0.888 0.972 0.95)",mint4:"color(display-p3 0.819 0.951 0.916)",mint5:"color(display-p3 0.747 0.918 0.873)",mint6:"color(display-p3 0.668 0.87 0.818)",mint7:"color(display-p3 0.567 0.805 0.744)",mint8:"color(display-p3 0.42 0.724 0.649)",mint9:"color(display-p3 0.62 0.908 0.834)",mint10:"color(display-p3 0.585 0.871 0.797)",mint11:"color(display-p3 0.203 0.463 0.397)",mint12:"color(display-p3 0.136 0.259 0.236)"},io={limeA1:"#66990005",limeA2:"#6b95000c",limeA3:"#96c80029",limeA4:"#8fc60042",limeA5:"#81bb0059",limeA6:"#72aa006e",limeA7:"#61990087",limeA8:"#559200ab",limeA9:"#93e4009c",limeA10:"#8fdc00b3",limeA11:"#375f00d0",limeA12:"#1e2900e3"},v={lime1:"color(display-p3 0.989 0.992 0.981)",lime2:"color(display-p3 0.975 0.98 0.954)",lime3:"color(display-p3 0.939 0.965 0.851)",lime4:"color(display-p3 0.896 0.94 0.76)",lime5:"color(display-p3 0.843 0.903 0.678)",lime6:"color(display-p3 0.778 0.852 0.599)",lime7:"color(display-p3 0.694 0.784 0.508)",lime8:"color(display-p3 0.585 0.707 0.378)",lime9:"color(display-p3 0.78 0.928 0.466)",lime10:"color(display-p3 0.734 0.896 0.397)",lime11:"color(display-p3 0.386 0.482 0.227)",lime12:"color(display-p3 0.222 0.25 0.128)"},so={yellowA1:"#aaaa0006",yellowA2:"#f4dd0016",yellowA3:"#ffee0047",yellowA4:"#ffe3016b",yellowA5:"#ffd5008f",yellowA6:"#ebbc0097",yellowA7:"#d2a10098",yellowA8:"#c99700c6",yellowA9:"#ffe100d6",yellowA10:"#ffdc00",yellowA11:"#9e6c00",yellowA12:"#2e2000e0"},w={yellow1:"color(display-p3 0.992 0.992 0.978)",yellow2:"color(display-p3 0.995 0.99 0.922)",yellow3:"color(display-p3 0.997 0.982 0.749)",yellow4:"color(display-p3 0.992 0.953 0.627)",yellow5:"color(display-p3 0.984 0.91 0.51)",yellow6:"color(display-p3 0.934 0.847 0.474)",yellow7:"color(display-p3 0.876 0.785 0.46)",yellow8:"color(display-p3 0.811 0.689 0.313)",yellow9:"color(display-p3 1 0.92 0.22)",yellow10:"color(display-p3 0.977 0.868 0.291)",yellow11:"color(display-p3 0.6 0.44 0)",yellow12:"color(display-p3 0.271 0.233 0.137)"},eo={amberA1:"#c0800004",amberA2:"#f4d10016",amberA3:"#ffde003d",amberA4:"#ffd40063",amberA5:"#f8cf0088",amberA6:"#eab5008c",amberA7:"#dc9b009d",amberA8:"#da8a00c9",amberA9:"#ffb300c2",amberA10:"#ffb300e7",amberA11:"#ab6400",amberA12:"#341500dd"},P={amber1:"color(display-p3 0.995 0.992 0.985)",amber2:"color(display-p3 0.994 0.986 0.921)",amber3:"color(display-p3 0.994 0.969 0.782)",amber4:"color(display-p3 0.989 0.937 0.65)",amber5:"color(display-p3 0.97 0.902 0.527)",amber6:"color(display-p3 0.936 0.844 0.506)",amber7:"color(display-p3 0.89 0.762 0.443)",amber8:"color(display-p3 0.85 0.65 0.3)",amber9:"color(display-p3 1 0.77 0.26)",amber10:"color(display-p3 0.959 0.741 0.274)",amber11:"color(display-p3 0.64 0.4 0)",amber12:"color(display-p3 0.294 0.208 0.145)"},co={orangeA1:"#c0400004",orangeA2:"#ff8e0012",orangeA3:"#ff9c0029",orangeA4:"#ff91014a",orangeA5:"#ff8b0065",orangeA6:"#ff81007d",orangeA7:"#ed6c008c",orangeA8:"#e35f00aa",orangeA9:"#f65e00ea",orangeA10:"#ef5f00",orangeA11:"#cc4e00",orangeA12:"#431200e2"},D={orange1:"color(display-p3 0.995 0.988 0.985)",orange2:"color(display-p3 0.994 0.968 0.934)",orange3:"color(display-p3 0.989 0.938 0.85)",orange4:"color(display-p3 1 0.874 0.687)",orange5:"color(display-p3 1 0.821 0.583)",orange6:"color(display-p3 0.975 0.767 0.545)",orange7:"color(display-p3 0.919 0.693 0.486)",orange8:"color(display-p3 0.877 0.597 0.379)",orange9:"color(display-p3 0.9 0.45 0.2)",orange10:"color(display-p3 0.87 0.409 0.164)",orange11:"color(display-p3 0.76 0.34 0)",orange12:"color(display-p3 0.323 0.185 0.127)"},yo={blackA6:"color(display-p3 0 0 0 / 0.4)",blackA7:"color(display-p3 0 0 0 / 0.5)"},Ao={whiteA6:"color(display-p3 1 1 1 / 0.4)",whiteA7:"color(display-p3 1 1 1 / 0.5)"},j={gray1:"color(display-p3 1 1 1)",gray2:"color(display-p3 0.988 0.988 0.988)",gray3:"color(display-p3 0.976 0.976 0.976)",gray4:"color(display-p3 0.945 0.945 0.945)",gray5:"color(display-p3 0.922 0.922 0.922)",gray6:"color(display-p3 0.839 0.839 0.839)",gray7:"color(display-p3 0.8 0.8 0.8)",gray8:"color(display-p3 0.702 0.702 0.702)",gray9:"color(display-p3 0.6 0.6 0.6)",gray10:"color(display-p3 0.514 0.514 0.514)",gray11:"color(display-p3 0.4 0.4 0.4)",gray12:"color(display-p3 0.2 0.2 0.2)"},fo={red:l.red9,ruby:a.ruby9,crimson:p.crimson9,tomato:o.tomato9,orange:D.orange9,amber:P.amber9,yellow:w.yellow9,lime:v.lime9,grass:t.grass9,green:n.green9,jade:f.jade9,mint:u.mint9,turquoise:A.teal9,cyan:y.cyan9,sky:k.sky9,blue:c.indigo9,iris:e.iris9,violet:s.violet9,purple:i.purple9,plum:d.plum9,pink:r.pink9,bronze:m.bronze9,gold:g.gold9,brown:b.brown9,gray:j.gray7};exports.GRAY_SCALE_LIGHT=j;exports.MAIN_COLORS_LIGHT=fo;exports.amberA=eo;exports.amberDarkA=z0;exports.amberDarkP3=L0;exports.amberP3=P;exports.blackP3A=yo;exports.bronzeA=lo;exports.bronzeDarkA=n0;exports.bronzeDarkP3=t0;exports.bronzeP3=m;exports.brownA=oo;exports.brownDarkA=A0;exports.brownDarkP3=f0;exports.brownP3=b;exports.crimsonA=x0;exports.crimsonDarkA=q;exports.crimsonDarkP3=x;exports.crimsonP3=p;exports.cyanA=V0;exports.cyanDarkA=l0;exports.cyanDarkP3=a0;exports.cyanP3=y;exports.goldA=ao;exports.goldDarkA=b0;exports.goldDarkP3=m0;exports.goldP3=g;exports.grassA=$0;exports.grassDarkA=c0;exports.grassDarkP3=y0;exports.grassP3=t;exports.greenA=Z0;exports.greenDarkA=s0;exports.greenDarkP3=e0;exports.greenP3=n;exports.indigoA=U0;exports.indigoDarkA=$;exports.indigoDarkP3=o0;exports.indigoP3=c;exports.irisA=Q0;exports.irisDarkA=X;exports.irisDarkP3=Z;exports.irisP3=e;exports.jadeA=X0;exports.jadeDarkA=d0;exports.jadeDarkP3=i0;exports.jadeP3=f;exports.limeA=io;exports.limeDarkA=w0;exports.limeDarkP3=P0;exports.limeP3=v;exports.mauveA=I0;exports.mauveDarkA=z;exports.mauveDarkP3=L;exports.mauveP3=h0;exports.mintA=ro;exports.mintDarkA=u0;exports.mintDarkP3=v0;exports.mintP3=u;exports.oliveA=S0;exports.oliveDarkA=C;exports.oliveDarkP3=H;exports.oliveP3=T0;exports.orangeA=co;exports.orangeDarkA=_0;exports.orangeDarkP3=G0;exports.orangeP3=D;exports.pinkA=B0;exports.pinkDarkA=B;exports.pinkDarkP3=F;exports.pinkP3=r;exports.plumA=F0;exports.plumDarkA=J;exports.plumDarkP3=K;exports.plumP3=d;exports.purpleA=J0;exports.purpleDarkA=Q;exports.purpleDarkP3=U;exports.purpleP3=i;exports.redA=Y0;exports.redDarkA=E;exports.redDarkP3=M;exports.redP3=l;exports.rubyA=q0;exports.rubyDarkA=N;exports.rubyDarkP3=Y;exports.rubyP3=a;exports.sageA=O0;exports.sageDarkA=I;exports.sageDarkP3=h;exports.sageP3=R0;exports.sandA=E0;exports.sandDarkA=O;exports.sandDarkP3=R;exports.sandP3=M0;exports.skyA=po;exports.skyDarkA=g0;exports.skyDarkP3=k0;exports.skyP3=k;exports.slateA=C0;exports.slateDarkA=_;exports.slateDarkP3=G;exports.slateP3=H0;exports.tealA=W0;exports.tealDarkA=p0;exports.tealDarkP3=r0;exports.tealP3=A;exports.tomatoA=N0;exports.tomatoDarkA=S;exports.tomatoDarkP3=T;exports.tomatoP3=o;exports.violetA=K0;exports.violetDarkA=V;exports.violetDarkP3=W;exports.violetP3=s;exports.whiteP3A=Ao;exports.yellowA=so;exports.yellowDarkA=D0;exports.yellowDarkP3=j0;exports.yellowP3=w;