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,1194 @@
1
+ import { a as he, A as Ce, i as me } from "./Avatar-Cg4dvBA_.js";
2
+ import { a as r, j as d, F as g } from "./emotion-react-jsx-runtime.browser.esm-BUNawPtg.js";
3
+ import c from "@emotion/styled";
4
+ import { T as L } from "./isValidCountryCode-Dyji5s5r-B7O5eJvP.js";
5
+ import "@sniptt/guards";
6
+ import { Link as w } from "react-router-dom";
7
+ import { A as E, O as u } from "./OverflowingTextWithTooltip-F-KEqUMB.js";
8
+ import { T as ge, a as ue } from "./OverflowingTextWithTooltip-F-KEqUMB.js";
9
+ import { IconInfoCircle as I, IconAlertTriangle as y, IconChartBar as k, IconNumber123 as v } from "@tabler/icons-react";
10
+ import { IconNumber123 as fe, IconAlertCircle as Le, IconAlertTriangle as we, IconAlignBoxLeftTop as Ee, IconAlignCenter as ye, IconAlignLeft as ke, IconAlignRight as ve, IconApi as Me, IconAppWindow as xe, IconApps as ze, IconArchive as Se, IconArchiveOff as Fe, IconArrowBackUp as be, IconArrowDown as Be, IconArrowLeft as De, IconArrowMerge as Ze, IconArrowRight as Te, IconArrowUp as Ae, IconArrowUpRight as Pe, IconArrowsDiagonal as Re, IconArrowsSort as He, IconArrowsVertical as _e, IconAt as Oe, IconAxisX as We, IconAxisY as Ve, IconBadge2k as je, IconBaselineDensitySmall as qe, IconBell as Ne, IconBlockquote as Ge, IconBold as Ue, IconBolt as Xe, IconBook2 as $e, IconBookmark as Ke, IconBookmarkPlus as Ye, IconBox as Je, IconBoxMultiple as Qe, IconBrackets as e5, IconBracketsAngle as t5, IconBracketsContain as n5, IconBrain as o5, IconBrandDaysCounter as r5, IconBrandGithub as c5, IconBrandGoogle as l5, IconBrandGraphql as i5, IconBrandLinkedin as a5, IconBrandX as s5, IconBriefcase as d5, IconBroadcast as h5, IconBrowserMaximize as C5, IconBuildingSkyscraper as m5, IconCalendar as p5, IconCalendarDue as g5, IconCalendarEvent as u5, IconCalendarMonth as I5, IconCalendarRepeat as f5, IconCalendarTime as L5, IconCalendarWeek as w5, IconCalendarX as E5, IconCancel as y5, IconCaretLeft as k5, IconCaretRight as v5, IconChartBar as M5, IconChartBarPopular as x5, IconChartCandle as z5, IconChartDots3 as S5, IconChartLine as F5, IconChartPie as b5, IconCheck as B5, IconCheckbox as D5, IconChevronDown as Z5, IconChevronLeft as T5, IconChevronRight as A5, IconChevronRightPipe as P5, IconChevronUp as R5, IconChevronsRight as H5, IconCircle as _5, IconCircleDashed as O5, IconCircleDot as W5, IconCircleOff as V5, IconCirclePlus as j5, IconCircleX as q5, IconClick as N5, IconClockHour8 as G5, IconClockPlay as U5, IconClockShare as X5, IconCode as $5, IconCodeCircle as K5, IconCoins as Y5, IconColorSwatch as J5, IconColumns as Q5, IconCommand as e4, IconMessageCircle as t4, IconCopy as n4, IconCopyPlus as o4, IconCpu as r4, IconCreativeCommonsSa as c4, IconCreditCard as l4, IconCsv as i4, IconCube as a4, IconCurrencyAfghani as s4, IconCurrencyBahraini as d4, IconCurrencyBaht as h4, IconCurrencyDinar as C4, IconCurrencyDirham as m4, IconCurrencyDollar as p4, IconCurrencyDollarAustralian as g4, IconCurrencyDollarBrunei as u4, IconCurrencyDollarCanadian as I4, IconCurrencyDollarGuyanese as f4, IconCurrencyDollarSingapore as L4, IconCurrencyDong as w4, IconCurrencyDram as E4, IconCurrencyEuro as y4, IconCurrencyFlorin as k4, IconCurrencyForint as v4, IconCurrencyFrank as M4, IconCurrencyGuarani as x4, IconCurrencyHryvnia as z4, IconCurrencyIranianRial as S4, IconCurrencyKip as F4, IconCurrencyKroneCzech as b4, IconCurrencyKroneDanish as B4, IconCurrencyKroneSwedish as D4, IconCurrencyLari as Z4, IconCurrencyLeu as T4, IconCurrencyLira as A4, IconCurrencyLyd as P4, IconCurrencyManat as R4, IconCurrencyNaira as H4, IconCurrencyPaanga as _4, IconCurrencyPeso as O4, IconCurrencyPound as W4, IconCurrencyQuetzal as V4, IconCurrencyReal as j4, IconCurrencyRenminbi as q4, IconCurrencyRiyal as N4, IconCurrencyRubel as G4, IconCurrencyRufiyaa as U4, IconCurrencyRupee as X4, IconCurrencyRupeeNepalese as $4, IconCurrencyShekel as K4, IconCurrencySom as Y4, IconCurrencyTaka as J4, IconCurrencyTenge as Q4, IconCurrencyTugrik as e8, IconCurrencyWon as t8, IconCurrencyYen as n8, IconCurrencyYuan as o8, IconCurrencyZloty as r8, IconDatabase as c8, IconDatabaseExport as l8, IconDecimal as i8, IconDeviceFloppy as a8, IconDoorEnter as s8, IconDotsVertical as d8, IconDownload as h8, IconEdit as C8, IconEditCircle as m8, IconEraser as p8, IconExclamationCircle as g8, IconExternalLink as u8, IconEye as I8, IconEyeOff as f8, IconEyeShare as L8, IconFile as w8, IconFileCheck as E8, IconFileExport as y8, IconFileImport as k8, IconFileInfo as v8, IconFilePencil as M8, IconFileText as x8, IconFileUpload as z8, IconFileZip as S8, IconFilter as F8, IconFilterCog as b8, IconFilterOff as B8, IconFilterPlus as D8, IconFilterX as Z8, IconFilters as T8, IconFlag as A8, IconFlask as P8, IconFocusCentered as R8, IconFolder as H8, IconFolderOpen as _8, IconFolderPlus as O8, IconFolderRoot as W8, IconForbid as V8, IconFrame as j8, IconFunction as q8, IconGauge as N8, IconGitBranchDeleted as G8, IconGitCommit as U8, IconGizmo as X8, IconGripVertical as $8, IconH1 as K8, IconH2 as Y8, IconH3 as J8, IconHandClick as Q8, IconHandMove as e3, IconHeadphones as t3, IconHeart as n3, IconHeartOff as o3, IconHeartRateMonitor as r3, IconHelpCircle as c3, IconHierarchy as l3, IconHierarchy2 as i3, IconHistory as a3, IconHistoryToggle as s3, IconHome as d3, IconHourglassHigh as h3, IconHours24 as C3, IconHttpGet as m3, IconHttpPost as p3, IconId as g3, IconInbox as u3, IconInfoCircle as I3, IconItalic as f3, IconJson as L3, IconKey as w3, IconLanguage as E3, IconLayersLinked as y3, IconLayout as k3, IconLayoutDashboard as v3, IconLayoutGrid as M3, IconLayoutKanban as x3, IconLayoutList as z3, IconLayoutNavbar as S3, IconLayoutSidebarLeftCollapse as F3, IconLayoutSidebarRight as b3, IconLayoutSidebarRightCollapse as B3, IconLayoutSidebarRightExpand as D3, IconLetterK as Z3, IconLibraryPlus as T3, IconLifebuoy as A3, IconLink as P3, IconLinkOff as R3, IconLinkPlus as H3, IconList as _3, IconListCheck as O3, IconListDetails as W3, IconListNumbers as V3, IconLoader as j3, IconLock as q3, IconLockOpen as N3, IconLogin2 as G3, IconLogout as U3, IconMail as X3, IconMailCog as $3, IconMailX as K3, IconMap as Y3, IconMathMax as J3, IconMathMin as Q3, IconMathXy as e0, IconMaximize as t0, IconMessage as n0, IconMessageCirclePlus as o0, IconMinus as r0, IconMoneybag as c0, IconMoodSmile as l0, IconMoon as i0, IconMouse2 as a0, IconNorthStar as s0, IconNoteOff as d0, IconNotes as h0, IconNumber as C0, IconNumber123 as m0, IconNumber9 as p0, IconNumbers as g0, IconPaperclip as u0, IconPassword as I0, IconPencil as f0, IconPencilOff as L0, IconPercentage as w0, IconPhone as E0, IconPhoto as y0, IconPhotoUp as k0, IconPilcrow as v0, IconPinned as M0, IconPinnedOff as x0, IconPlayerPause as z0, IconPlayerPlay as S0, IconPlayerStop as F0, IconPlaylistAdd as b0, IconPlaystationSquare as B0, IconPlug as D0, IconPlus as Z0, IconPoint as T0, IconPower as A0, IconPresentation as P0, IconPrinter as R0, IconProgressCheck as H0, IconPuzzle as _0, IconPuzzle2 as O0, IconQuestionMark as W0, IconRadiusBottomLeft as V0, IconRadiusBottomRight as j0, IconRadiusTopLeft as q0, IconRadiusTopRight as N0, IconRefresh as G0, IconRefreshAlert as U0, IconRefreshDot as X0, IconRelationManyToMany as $0, IconRelationOneToMany as K0, IconRelationOneToOne as Y0, IconReload as J0, IconReorder as Q0, IconRepeat as e9, IconRestore as t9, IconRobot as n9, IconRocket as o9, IconRotate as r9, IconRotate2 as c9, IconSearch as l9, IconSend as i9, IconServer as a9, IconServer2 as s9, IconSettings as d9, IconSettings2 as h9, IconSettingsAutomation as C9, IconShare as m9, IconShield as p9, IconSitemap as g9, IconSlash as u9, IconSortAZ as I9, IconSortAscending as f9, IconSortAscendingLetters as L9, IconSortAscendingNumbers as w9, IconSortDescending as E9, IconSortDescendingLetters as y9, IconSortDescendingNumbers as k9, IconSortZA as v9, IconSparkles as M9, IconSpy as x9, IconSql as z9, IconSquare as S9, IconSquareKey as F9, IconSquareNumber1 as b9, IconSquareNumber2 as B9, IconSquareNumber3 as D9, IconSquareNumber4 as Z9, IconSquareNumber5 as T9, IconSquareNumber6 as A9, IconSquareNumber7 as P9, IconSquareNumber8 as R9, IconSquareNumber9 as H9, IconSquareRoundedCheck as _9, IconSquareRoundedX as O9, IconStack2 as W9, IconStatusChange as V9, IconStepInto as j9, IconStrikethrough as q9, IconSum as N9, IconSun as G9, IconSunMoon as U9, IconSwitchHorizontal as X9, IconTable as $9, IconTag as K9, IconTags as Y9, IconTarget as J9, IconTargetArrow as Q9, IconTerminal as et, IconTestPipe as tt, IconTextCaption as nt, IconTextSize as ot, IconTextWrap as rt, IconTimeDuration30 as ct, IconTimeDuration60 as lt, IconTimelineEvent as it, IconTool as at, IconTransform as st, IconTrash as dt, IconTrashOff as ht, IconTrashX as Ct, IconTrendingDown as mt, IconTrendingUp as pt, IconTypography as gt, IconUnderline as ut, IconUnlink as It, IconUpload as ft, IconUser as Lt, IconUserCircle as wt, IconUserCog as Et, IconUserPin as yt, IconUserPlus as kt, IconUsers as vt, IconVariable as Mt, IconVariablePlus as xt, IconVersions as zt, IconVersionsOff as St, IconVideo as Ft, IconWand as bt, IconWebhook as Bt, IconWorld as Dt, IconX as Zt } from "@tabler/icons-react";
11
+ import { useTheme as l, css as C } from "@emotion/react";
12
+ import { motion as M } from "framer-motion";
13
+ import { B as m } from "./Button-BChGSHVB.js";
14
+ import { C as At } from "./Button-BChGSHVB.js";
15
+ import { S as Rt } from "./ColorSample-Bp-he5lO.js";
16
+ import * as t from "react";
17
+ import { useEffect as x } from "react";
18
+ import { T as z } from "./ThemeCommon-CUpBXrDJ.js";
19
+ import { useRecoilValue as S, useSetRecoilState as F } from "recoil";
20
+ import { c as b } from "./createState-DvtGszbK.js";
21
+ import { t as B } from "./themeColorSchema-CgAr-Bzv.js";
22
+ import { L as D } from "./Loader-BmJ693nz.js";
23
+ const Z = /* @__PURE__ */ c("div", {
24
+ target: "e4vcvo30"
25
+ })("align-items:center;display:flex;"), T = /* @__PURE__ */ c("div", {
26
+ target: "e4vcvo31"
27
+ })("margin-right:-3px;&:last-child{margin-right:0;}"), A = 4, C2 = ({ avatars: e }) => e.length ? /* @__PURE__ */ r(Z, {
28
+ children: e.slice(0, A).map((n, o) => /* @__PURE__ */ r(T, {
29
+ children: n
30
+ }, o))
31
+ }) : null, P = /* @__PURE__ */ c("div", {
32
+ target: "e17m3rfd0"
33
+ })("align-items:center;backdrop-filter:blur(5px);background:", ({ theme: e, variant: n }) => n === "danger" ? e.color.red : e.color.blue, ";display:flex;gap:", ({ theme: e }) => e.spacing(3), ";height:40px;justify-content:center;padding:", ({ theme: e }) => e.spacing(2) + " " + e.spacing(3), ";width:100%;color:", ({ theme: e }) => e.font.color.inverted, ";font-family:Inter;font-size:", ({ theme: e }) => e.font.size.md, ";font-style:normal;font-weight:", ({ theme: e }) => e.font.weight.medium, ";line-height:150%;box-sizing:border-box;"), m2 = ({ variant: e = "default", className: n, children: o }) => /* @__PURE__ */ r(P, {
34
+ variant: e,
35
+ className: n,
36
+ children: o
37
+ }), R = /* @__PURE__ */ c("div", {
38
+ target: "e128v3rf0"
39
+ })("align-items:center;background-color:", ({ theme: e }) => e.accent.secondary, ";border-radius:", ({ theme: e }) => e.border.radius.md, ";box-sizing:border-box;display:flex;gap:", ({ theme: e }) => e.spacing(2), ";padding:", ({ theme: e }) => e.spacing(2), ";width:100%;"), H = /* @__PURE__ */ c("div", {
40
+ target: "e128v3rf1"
41
+ })("align-items:center;color:", ({ theme: e }) => e.color.blue, ";display:flex;flex-shrink:0;height:16px;justify-content:center;width:16px;"), _ = /* @__PURE__ */ c("p", {
42
+ target: "e128v3rf2"
43
+ })("color:", ({ theme: e }) => e.color.blue, ";flex-grow:1;font-family:", ({ theme: e }) => e.font.family, ";font-size:", ({ theme: e }) => e.font.size.sm, ";font-style:normal;font-weight:", ({ theme: e }) => e.font.weight.medium, ";line-height:1.4;margin:0;min-width:0;"), p2 = ({ message: e, className: n, variant: o = "default", tooltipMessage: i }) => {
44
+ const s = "side-panel-information-banner-tooltip";
45
+ return /* @__PURE__ */ d(R, {
46
+ className: n,
47
+ "data-tooltip-id": i ? s : void 0,
48
+ children: [
49
+ /* @__PURE__ */ r(H, {
50
+ children: o === "default" ? /* @__PURE__ */ r(I, {
51
+ size: 16
52
+ }) : /* @__PURE__ */ r(y, {
53
+ size: 16
54
+ })
55
+ }),
56
+ /* @__PURE__ */ r(_, {
57
+ children: e
58
+ }),
59
+ L(i) && /* @__PURE__ */ r(E, {
60
+ anchorSelect: `[data-tooltip-id='${s}']`,
61
+ content: i,
62
+ place: "bottom"
63
+ })
64
+ ]
65
+ });
66
+ }, g2 = ({ isAnimating: e = !1, color: n, duration: o = 0.5, size: i = 28 }) => {
67
+ const s = l();
68
+ return /* @__PURE__ */ r("svg", {
69
+ xmlns: "http://www.w3.org/2000/svg",
70
+ viewBox: "0 0 52 52",
71
+ width: i,
72
+ height: i,
73
+ children: /* @__PURE__ */ r(M.path, {
74
+ fill: "none",
75
+ stroke: n ?? s.grayScale.gray1,
76
+ strokeWidth: 4,
77
+ d: "M14 27l7.8 7.8L38 14",
78
+ pathLength: "1",
79
+ strokeDasharray: "1",
80
+ strokeDashoffset: e ? "1" : "0",
81
+ animate: {
82
+ strokeDashoffset: e ? "0" : "1"
83
+ },
84
+ transition: {
85
+ duration: o
86
+ }
87
+ })
88
+ });
89
+ }, O = /* @__PURE__ */ c("div", {
90
+ target: "e145bq360"
91
+ })("border-radius:", ({ theme: e }) => e.border.radius.sm, ";border:1px solid ", ({ theme: e }) => e.border.color.medium, ";background:", ({ theme: e }) => e.background.transparent.secondary, ";display:flex;justify-content:space-between;padding:", ({ theme: e }) => e.spacing(3), ";gap:", ({ theme: e }) => e.spacing(3), ";"), W = /* @__PURE__ */ c("div", {
92
+ target: "e145bq361"
93
+ })("font-family:", ({ theme: e }) => e.code.font.family, ";"), V = /* @__PURE__ */ c("div", {
94
+ target: "e145bq362"
95
+ })("display:flex;"), j = /* @__PURE__ */ c("div", {
96
+ target: "e145bq363"
97
+ })(), q = /* @__PURE__ */ c("span", {
98
+ target: "e145bq364"
99
+ })("color:", ({ theme: e }) => e.code.text.orange, ";"), N = /* @__PURE__ */ c("span", {
100
+ target: "e145bq365"
101
+ })("color:", ({ theme: e }) => e.code.text.green, ";"), u2 = ({ commands: e, button: n }) => /* @__PURE__ */ d(O, {
102
+ children: [
103
+ /* @__PURE__ */ r(W, {
104
+ children: /* @__PURE__ */ r(g, {
105
+ children: e.map((o, i) => /* @__PURE__ */ d(j, {
106
+ children: [
107
+ /* @__PURE__ */ r(q, {
108
+ children: "> "
109
+ }),
110
+ /* @__PURE__ */ r(N, {
111
+ children: o
112
+ })
113
+ ]
114
+ }, i))
115
+ })
116
+ }),
117
+ n && /* @__PURE__ */ r(V, {
118
+ children: n
119
+ })
120
+ ]
121
+ }), G = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", className: "icon icon-tabler icon-tabler-address-book", width: 24, height: 24, viewBox: "0 0 24 24", strokeWidth: 2, stroke: "currentColor", fill: "none", strokeLinecap: "round", strokeLinejoin: "round", ...e }, /* @__PURE__ */ t.createElement("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M20 6v12a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2z" }), /* @__PURE__ */ t.createElement("path", { d: "M10 16h6" }), /* @__PURE__ */ t.createElement("path", { d: "M13 11m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" }), /* @__PURE__ */ t.createElement("path", { d: "M4 8h3" }), /* @__PURE__ */ t.createElement("path", { d: "M4 12h3" }), /* @__PURE__ */ t.createElement("path", { d: "M4 16h3" })), I2 = (e) => {
122
+ const n = l(), o = e.size ?? 24, i = e.stroke ?? n.icon.stroke.md;
123
+ return /* @__PURE__ */ r(G, {
124
+ height: o,
125
+ width: o,
126
+ stroke: e.color ?? "currentColor",
127
+ strokeWidth: i
128
+ });
129
+ }, U = /* @__PURE__ */ c("div", {
130
+ target: "e8aupvw0"
131
+ })("display:inline-flex;transform:rotate(90deg);"), f2 = (e) => {
132
+ const n = l(), o = e.size ?? n.icon.size.md, i = e.stroke ?? n.icon.stroke.sm;
133
+ return /* @__PURE__ */ r(U, {
134
+ children: /* @__PURE__ */ r(k, {
135
+ size: o,
136
+ stroke: i,
137
+ color: e.color
138
+ })
139
+ });
140
+ }, X = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 14, height: 12, fill: "none", viewBox: "0 0 14 12", ...e }, /* @__PURE__ */ t.createElement("path", { fill: "#4285F4", d: "M.955 11.252h2.227v-5.41L0 3.456v6.841c0 .528.428.954.955.954Z" }), /* @__PURE__ */ t.createElement("path", { fill: "#34A853", d: "M10.818 11.252h2.227a.954.954 0 0 0 .955-.955V3.456l-3.182 2.386" }), /* @__PURE__ */ t.createElement("path", { fill: "#FBBC04", d: "M10.818 1.706v4.136L14 3.456V2.183c0-1.18-1.348-1.853-2.291-1.145" }), /* @__PURE__ */ t.createElement("path", { fill: "#EA4335", d: "M3.182 5.842V1.706L7 4.57l3.818-2.864v4.136L7 8.706" }), /* @__PURE__ */ t.createElement("path", { fill: "#C5221F", d: "M0 2.183v1.273l3.182 2.386V1.706l-.891-.668C1.346.33 0 1.003 0 2.183Z" })), L2 = (e) => {
141
+ const n = l(), o = e.size ?? n.icon.size.lg;
142
+ return /* @__PURE__ */ r(X, {
143
+ height: o,
144
+ width: o
145
+ });
146
+ }, $ = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 14, height: 14, fill: "none", viewBox: "0 0 14 14", ...e }, /* @__PURE__ */ t.createElement("g", { clipPath: "url(#a)" }, /* @__PURE__ */ t.createElement("path", { fill: "#4285F4", d: "M7 5.727v2.711h3.767a3.228 3.228 0 0 1-1.406 2.107l2.272 1.762c1.323-1.221 2.087-3.016 2.087-5.148 0-.496-.045-.973-.127-1.432H7Z" }), /* @__PURE__ */ t.createElement("path", { fill: "#34A853", d: "m3.077 8.332-.512.393L.75 10.137C1.903 12.422 4.263 14 7 14c1.89 0 3.474-.624 4.633-1.693L9.36 10.544c-.624.42-1.42.675-2.361.675-1.82 0-3.366-1.228-3.92-2.883l-.003-.004Z" }), /* @__PURE__ */ t.createElement("path", { fill: "#FBBC05", d: "M.75 3.863A6.914 6.914 0 0 0 0 7c0 1.133.274 2.196.75 3.137 0 .007 2.33-1.807 2.33-1.807A4.195 4.195 0 0 1 2.857 7c0-.465.083-.91.223-1.33L.75 3.863Z" }), /* @__PURE__ */ t.createElement("path", { fill: "#EA4335", d: "M7 2.787c1.03 0 1.947.357 2.68 1.044l2.004-2.005C10.468.694 8.89 0 7 0A6.988 6.988 0 0 0 .75 3.863L3.08 5.67C3.634 4.015 5.18 2.787 7 2.787Z" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "a" }, /* @__PURE__ */ t.createElement("path", { fill: "#fff", d: "M0 0h13.72v14H0z" })))), w2 = (e) => {
147
+ const n = l(), o = e.size ?? n.icon.size.lg;
148
+ return /* @__PURE__ */ r($, {
149
+ height: o,
150
+ width: o
151
+ });
152
+ }, K = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 76 76", ...e }, /* @__PURE__ */ t.createElement("path", { fill: "#fff", d: "M58 18H18v40h40z" }), /* @__PURE__ */ t.createElement("path", { fill: "#4285f4", d: "M26.2 49.03c-1.495-1.01-2.53-2.485-3.095-4.435l3.47-1.43c.315 1.2.865 2.13 1.65 2.79.78.66 1.73.985 2.84.985 1.135 0 2.11-.345 2.925-1.035s1.225-1.57 1.225-2.635c0-1.09-.43-1.98-1.29-2.67s-1.94-1.035-3.23-1.035H28.69V36.13h1.8c1.11 0 2.045-.3 2.805-.9s1.14-1.42 1.14-2.465c0-.93-.34-1.67-1.02-2.225s-1.54-.835-2.585-.835c-1.02 0-1.83.27-2.43.815a4.784 4.784 0 0 0-1.31 2.005l-3.435-1.43c.455-1.29 1.29-2.43 2.515-3.415s2.79-1.48 4.69-1.48c1.405 0 2.67.27 3.79.815s2 1.3 2.635 2.26c.635.965.95 2.045.95 3.245 0 1.225-.295 2.26-.885 3.11s-1.315 1.5-2.175 1.955v.205a6.605 6.605 0 0 1 2.79 2.175c.725.975 1.09 2.14 1.09 3.5s-.345 2.575-1.035 3.64-1.645 1.905-2.855 2.515c-1.215.61-2.58.92-4.095.92-1.755.005-3.375-.5-4.87-1.51zm21.315-17.22-3.81 2.755-1.905-2.89 6.835-4.93h2.62V50h-3.74z" }), /* @__PURE__ */ t.createElement("path", { fill: "#34a853", d: "M58 58H18v18h40z" }), /* @__PURE__ */ t.createElement("path", { fill: "#4285f4", d: "M58 0H6C2.685 0 0 2.685 0 6v52h18V18h40z" }), /* @__PURE__ */ t.createElement("path", { fill: "#188038", d: "M0 58v12c0 3.315 2.685 6 6 6h12V58z" }), /* @__PURE__ */ t.createElement("path", { fill: "#fbbc04", d: "M76 18H58v40h18z" }), /* @__PURE__ */ t.createElement("path", { fill: "#1967d2", d: "M76 18V6c0-3.315-2.685-6-6-6H58v18z" }), /* @__PURE__ */ t.createElement("path", { fill: "#ea4335", d: "m58 76 18-18H58z" })), E2 = (e) => {
153
+ const n = l(), o = e.size ?? n.icon.size.lg;
154
+ return /* @__PURE__ */ r(K, {
155
+ height: o,
156
+ width: o
157
+ });
158
+ }, Y = (e) => /* @__PURE__ */ t.createElement("svg", { width: 42, height: 42, viewBox: "0 0 42 42", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("g", { filter: "url(#filter0_d_41725_330814)" }, /* @__PURE__ */ t.createElement("rect", { x: 2, width: 40, height: 40, rx: 20, fill: "white" }), /* @__PURE__ */ t.createElement("rect", { x: 3, y: 1, width: 38, height: 38, rx: 19, stroke: "#333333", strokeWidth: 2 }), /* @__PURE__ */ t.createElement("path", { d: "M18 19V15C18 13.9391 18.4214 12.9217 19.1716 12.1716C19.9217 11.4214 20.9391 11 22 11C23.0609 11 24.0783 11.4214 24.8284 12.1716C25.5786 12.9217 26 13.9391 26 15V19M15 21C15 20.4696 15.2107 19.9609 15.5858 19.5858C15.9609 19.2107 16.4696 19 17 19H27C27.5304 19 28.0391 19.2107 28.4142 19.5858C28.7893 19.9609 29 20.4696 29 21V27C29 27.5304 28.7893 28.0391 28.4142 28.4142C28.0391 28.7893 27.5304 29 27 29H17C16.4696 29 15.9609 28.7893 15.5858 28.4142C15.2107 28.0391 15 27.5304 15 27V21ZM21 24C21 24.2652 21.1054 24.5196 21.2929 24.7071C21.4804 24.8946 21.7348 25 22 25C22.2652 25 22.5196 24.8946 22.7071 24.7071C22.8946 24.5196 23 24.2652 23 24C23 23.7348 22.8946 23.4804 22.7071 23.2929C22.5196 23.1054 22.2652 23 22 23C21.7348 23 21.4804 23.1054 21.2929 23.2929C21.1054 23.4804 21 23.7348 21 24Z", stroke: "#333333", strokeWidth: 2.4, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("filter", { id: "filter0_d_41725_330814", x: 0, y: 0, width: 42, height: 42, filterUnits: "userSpaceOnUse", colorInterpolationFilters: "sRGB" }, /* @__PURE__ */ t.createElement("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }), /* @__PURE__ */ t.createElement("feColorMatrix", { in: "SourceAlpha", type: "matrix", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0", result: "hardAlpha" }), /* @__PURE__ */ t.createElement("feMorphology", { radius: 2, operator: "erode", in: "SourceAlpha", result: "effect1_dropShadow_41725_330814" }), /* @__PURE__ */ t.createElement("feOffset", { dx: -4, dy: 4 }), /* @__PURE__ */ t.createElement("feComposite", { in2: "hardAlpha", operator: "out" }), /* @__PURE__ */ t.createElement("feColorMatrix", { type: "matrix", values: "0 0 0 0 0.2 0 0 0 0 0.2 0 0 0 0 0.2 0 0 0 1 0" }), /* @__PURE__ */ t.createElement("feBlend", { mode: "normal", in2: "BackgroundImageFix", result: "effect1_dropShadow_41725_330814" }), /* @__PURE__ */ t.createElement("feBlend", { mode: "normal", in: "SourceGraphic", in2: "effect1_dropShadow_41725_330814", result: "shape" })))), y2 = (e) => {
159
+ const n = l(), o = e.size ?? n.icon.size.lg;
160
+ return /* @__PURE__ */ r(Y, {
161
+ height: o,
162
+ width: o
163
+ });
164
+ }, J = (e) => /* @__PURE__ */ t.createElement("svg", { width: "800px", height: "800px", viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", fill: "none", ...e }, /* @__PURE__ */ t.createElement("path", { fill: "#F35325", d: "M1 1h6.5v6.5H1V1z" }), /* @__PURE__ */ t.createElement("path", { fill: "#81BC06", d: "M8.5 1H15v6.5H8.5V1z" }), /* @__PURE__ */ t.createElement("path", { fill: "#05A6F0", d: "M1 8.5h6.5V15H1V8.5z" }), /* @__PURE__ */ t.createElement("path", { fill: "#FFBA08", d: "M8.5 8.5H15V15H8.5V8.5z" })), k2 = (e) => {
165
+ const n = l(), o = e.size ?? n.icon.size.lg;
166
+ return /* @__PURE__ */ r(J, {
167
+ height: o,
168
+ width: o
169
+ });
170
+ }, Q = (e) => /* @__PURE__ */ t.createElement("svg", { "xmlns:dc": "http://purl.org/dc/elements/1.1/", "xmlns:cc": "http://creativecommons.org/ns#", "xmlns:rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", "xmlns:svg": "http://www.w3.org/2000/svg", xmlns: "http://www.w3.org/2000/svg", "xmlns:sodipodi": "http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd", "xmlns:inkscape": "http://www.inkscape.org/namespaces/inkscape", width: "170mm", height: "173mm", viewBox: "0 0 170 173", id: "svg8", "inkscape:version": "1.0.2 (e86c870879, 2021-01-15, custom)", "sodipodi:docname": "cldrnw.svg", ...e }, /* @__PURE__ */ t.createElement("defs", { id: "defs2" }), /* @__PURE__ */ t.createElement("sodipodi:namedview", { id: "base", pagecolor: "#ffffff", bordercolor: "#666666", borderopacity: 1, "inkscape:pageopacity": 0, "inkscape:pageshadow": 2, "inkscape:zoom": 1, "inkscape:cx": 446.39757, "inkscape:cy": 364.37241, "inkscape:document-units": "mm", "inkscape:current-layer": "layer2", "inkscape:document-rotation": 0, showgrid: "false", "inkscape:window-width": 1920, "inkscape:window-height": 1017, "inkscape:window-x": 1912, "inkscape:window-y": -8, "inkscape:window-maximized": 1 }), /* @__PURE__ */ t.createElement("metadata", { id: "metadata5" }, /* @__PURE__ */ t.createElement("rdf:RDF", null, /* @__PURE__ */ t.createElement("cc:Work", { "rdf:about": "" }, /* @__PURE__ */ t.createElement("dc:format", null, "image/svg+xml"), /* @__PURE__ */ t.createElement("dc:type", { "rdf:resource": "http://purl.org/dc/dcmitype/StillImage" }), /* @__PURE__ */ t.createElement("dc:title", null)))), /* @__PURE__ */ t.createElement("g", { "inkscape:groupmode": "layer", id: "layer2", "inkscape:label": "Capa 2", style: {
171
+ opacity: 1
172
+ } }, /* @__PURE__ */ t.createElement("path", { id: "rect862", style: {
173
+ fill: "#1b64b6",
174
+ fillOpacity: 1,
175
+ fillRule: "evenodd",
176
+ strokeWidth: 6.46864,
177
+ strokeLinecap: "square",
178
+ paintOrder: "markers fill stroke"
179
+ }, d: "M 7.9243621,0.40426573 H 162.081 c 4.29879,0 7.75955,3.45686397 7.75955,7.75081597 V 36.958129 c 0,4.293952 -3.46076,7.750816 -7.75955,7.750816 H 7.9243621 c -4.29883,0 -7.75961003,-3.456864 -7.75961003,-7.750816 V 8.1550817 c 0,-4.293952 3.46078003,-7.75081597 7.75961003,-7.75081597 z" }), /* @__PURE__ */ t.createElement("rect", { style: {
180
+ fill: "#2179d2",
181
+ fillOpacity: 1,
182
+ fillRule: "evenodd",
183
+ stroke: "none",
184
+ strokeWidth: 6.46499,
185
+ strokeLinecap: "square",
186
+ paintOrder: "markers fill stroke"
187
+ }, id: "rect865", width: 53.482864, height: 47.625, x: 0.21232992, y: 30.049105, ry: 0 }), /* @__PURE__ */ t.createElement("rect", { style: {
188
+ fill: "#5edafe",
189
+ fillOpacity: 1,
190
+ fillRule: "evenodd",
191
+ strokeWidth: 6.46499,
192
+ strokeLinecap: "square",
193
+ paintOrder: "markers fill stroke"
194
+ }, id: "rect865-6", width: 53.483627, height: 47.625, x: 116.33598, y: 30.049105, ry: 0 }), /* @__PURE__ */ t.createElement("rect", { style: {
195
+ fill: "#3ca8e8",
196
+ fillOpacity: 1,
197
+ fillRule: "evenodd",
198
+ strokeWidth: 6.99654,
199
+ strokeLinecap: "square",
200
+ paintOrder: "markers fill stroke"
201
+ }, id: "rect865-5", width: 62.640022, height: 47.625, x: 53.695198, y: 30.049105, ry: 0 }), /* @__PURE__ */ t.createElement("rect", { style: {
202
+ fill: "#1b64b6",
203
+ fillOpacity: 1,
204
+ fillRule: "evenodd",
205
+ strokeWidth: 6.46499,
206
+ strokeLinecap: "square",
207
+ paintOrder: "markers fill stroke"
208
+ }, id: "rect865-1", width: 53.483627, height: 47.625, x: 0.21232992, y: 77.674103, ry: 0 }), /* @__PURE__ */ t.createElement("rect", { style: {
209
+ fill: "#3ca8e8",
210
+ fillOpacity: 1,
211
+ fillRule: "evenodd",
212
+ strokeWidth: 6.46499,
213
+ strokeLinecap: "square",
214
+ paintOrder: "markers fill stroke"
215
+ }, id: "rect865-6-7", width: 53.483627, height: 47.625, x: 116.33598, y: 77.674103, ry: 0 }), /* @__PURE__ */ t.createElement("rect", { style: {
216
+ fill: "#2179d2",
217
+ fillOpacity: 1,
218
+ fillRule: "evenodd",
219
+ strokeWidth: 6.99654,
220
+ strokeLinecap: "square",
221
+ paintOrder: "markers fill stroke"
222
+ }, id: "rect865-5-7", width: 62.640022, height: 47.625, x: 53.695198, y: 77.674103, ry: 0 }), /* @__PURE__ */ t.createElement("rect", { style: {
223
+ fill: "#154a8a",
224
+ fillOpacity: 1,
225
+ fillRule: "evenodd",
226
+ strokeWidth: 6.46499,
227
+ strokeLinecap: "square",
228
+ paintOrder: "markers fill stroke"
229
+ }, id: "rect865-1-1", width: 53.483627, height: 47.625, x: 0.21232992, y: 125.29911, ry: 7.7508163 }), /* @__PURE__ */ t.createElement("rect", { style: {
230
+ fill: "#1b64b6",
231
+ fillOpacity: 1,
232
+ fillRule: "evenodd",
233
+ strokeWidth: 6.99654,
234
+ strokeLinecap: "square",
235
+ paintOrder: "markers fill stroke"
236
+ }, id: "rect865-5-7-8", width: 62.639313, height: 47.624989, x: 53.695961, y: 125.29911, ry: 0 }), /* @__PURE__ */ t.createElement("rect", { style: {
237
+ fill: "#2179d2",
238
+ fillOpacity: 1,
239
+ fillRule: "evenodd",
240
+ strokeWidth: 6.46499,
241
+ strokeLinecap: "square",
242
+ paintOrder: "markers fill stroke"
243
+ }, id: "rect865-1-1-4", width: 53.483627, height: 47.625, x: 116.33598, y: 125.29911, ry: 7.7508163 }), /* @__PURE__ */ t.createElement("path", { style: {
244
+ fill: "#154a8a",
245
+ fillOpacity: 1,
246
+ stroke: "none",
247
+ strokeWidth: "0.264583px",
248
+ strokeLinecap: "butt",
249
+ strokeLinejoin: "miter",
250
+ strokeOpacity: 1
251
+ }, d: "m 0.21378207,125.2991 53.48140993,1e-5 0.003,47.62499 H 8.4247021 l -8.21573003,-8.21568 z", id: "path1012", "sodipodi:nodetypes": "cccccc" }), /* @__PURE__ */ t.createElement("path", { style: {
252
+ fill: "#2179d2",
253
+ fillOpacity: 1,
254
+ stroke: "none",
255
+ strokeWidth: "0.264583px",
256
+ strokeLinecap: "butt",
257
+ strokeLinejoin: "miter",
258
+ strokeOpacity: 1
259
+ }, d: "m 169.82154,125.29911 h -53.48556 l 0.002,47.625 h 45.27325 l 8.21568,-8.21568 z", id: "path1012-9", "sodipodi:nodetypes": "cccccc" }))), v2 = (e) => {
260
+ const n = l(), o = e.size ?? n.icon.size.lg;
261
+ return /* @__PURE__ */ r(Q, {
262
+ height: o,
263
+ width: o
264
+ });
265
+ }, e1 = (e) => /* @__PURE__ */ t.createElement("svg", { id: "Livello_1", "xmlns:x": "http://ns.adobe.com/Extensibility/1.0/", "xmlns:i": "http://ns.adobe.com/AdobeIllustrator/10.0/", "xmlns:graph": "http://ns.adobe.com/Graphs/1.0/", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", x: "0px", y: "0px", viewBox: "0 0 1831.085 1703.335", enableBackground: "new 0 0 1831.085 1703.335", xmlSpace: "preserve", ...e }, /* @__PURE__ */ t.createElement("path", { fill: "#0A2767", d: "M1831.083,894.25c0.1-14.318-7.298-27.644-19.503-35.131h-0.213l-0.767-0.426l-634.492-375.585 c-2.74-1.851-5.583-3.543-8.517-5.067c-24.498-12.639-53.599-12.639-78.098,0c-2.934,1.525-5.777,3.216-8.517,5.067L446.486,858.693 l-0.766,0.426c-19.392,12.059-25.337,37.556-13.278,56.948c3.553,5.714,8.447,10.474,14.257,13.868l634.492,375.585 c2.749,1.835,5.592,3.527,8.517,5.068c24.498,12.639,53.599,12.639,78.098,0c2.925-1.541,5.767-3.232,8.517-5.068l634.492-375.585 C1823.49,922.545,1831.228,908.923,1831.083,894.25z" }), /* @__PURE__ */ t.createElement("path", { fill: "#0364B8", d: "M520.453,643.477h416.38v381.674h-416.38V643.477z M1745.917,255.5V80.908 c1-43.652-33.552-79.862-77.203-80.908H588.204C544.552,1.046,510,37.256,511,80.908V255.5l638.75,170.333L1745.917,255.5z" }), /* @__PURE__ */ t.createElement("path", { fill: "#0078D4", d: "M511,255.5h425.833v383.25H511V255.5z" }), /* @__PURE__ */ t.createElement("path", { fill: "#28A8EA", d: "M1362.667,255.5H936.833v383.25L1362.667,1022h383.25V638.75L1362.667,255.5z" }), /* @__PURE__ */ t.createElement("path", { fill: "#0078D4", d: "M936.833,638.75h425.833V1022H936.833V638.75z" }), /* @__PURE__ */ t.createElement("path", { fill: "#0364B8", d: "M936.833,1022h425.833v383.25H936.833V1022z" }), /* @__PURE__ */ t.createElement("path", { fill: "#14447D", d: "M520.453,1025.151h416.38v346.969h-416.38V1025.151z" }), /* @__PURE__ */ t.createElement("path", { fill: "#0078D4", d: "M1362.667,1022h383.25v383.25h-383.25V1022z" }), /* @__PURE__ */ t.createElement("linearGradient", { id: "SVGID_1_", gradientUnits: "userSpaceOnUse", x1: 1128.4584, y1: 811.0833, x2: 1128.4584, y2: 1.9982, gradientTransform: "matrix(1 0 0 -1 0 1705.3334)" }, /* @__PURE__ */ t.createElement("stop", { offset: 0, style: {
266
+ stopColor: "#35B8F1"
267
+ } }), /* @__PURE__ */ t.createElement("stop", { offset: 1, style: {
268
+ stopColor: "#28A8EA"
269
+ } })), /* @__PURE__ */ t.createElement("path", { fill: "url(#SVGID_1_)", d: "M1811.58,927.593l-0.809,0.426l-634.492,356.848c-2.768,1.703-5.578,3.321-8.517,4.769 c-10.777,5.132-22.481,8.029-34.407,8.517l-34.663-20.27c-2.929-1.47-5.773-3.105-8.517-4.897L447.167,906.003h-0.298 l-21.036-11.753v722.384c0.328,48.196,39.653,87.006,87.849,86.7h1230.914c0.724,0,1.363-0.341,2.129-0.341 c10.18-0.651,20.216-2.745,29.808-6.217c4.145-1.756,8.146-3.835,11.966-6.217c2.853-1.618,7.75-5.152,7.75-5.152 c21.814-16.142,34.726-41.635,34.833-68.772V894.25C1831.068,908.067,1823.616,920.807,1811.58,927.593z" }), /* @__PURE__ */ t.createElement("path", { opacity: 0.5, fill: "#0A2767", enableBackground: "new ", d: "M1797.017,891.397v44.287l-663.448,456.791L446.699,906.301 c0-0.235-0.191-0.426-0.426-0.426l0,0l-63.023-37.899v-31.938l25.976-0.426l54.932,31.512l1.277,0.426l4.684,2.981 c0,0,645.563,368.346,647.267,369.197l24.698,14.478c2.129-0.852,4.258-1.703,6.813-2.555 c1.278-0.852,640.879-360.681,640.879-360.681L1797.017,891.397z" }), /* @__PURE__ */ t.createElement("path", { fill: "#1490DF", d: "M1811.58,927.593l-0.809,0.468l-634.492,356.848c-2.768,1.703-5.578,3.321-8.517,4.769 c-24.641,12.038-53.457,12.038-78.098,0c-2.918-1.445-5.76-3.037-8.517-4.769L446.657,928.061l-0.766-0.468 c-12.25-6.642-19.93-19.409-20.057-33.343v722.384c0.305,48.188,39.616,87.004,87.803,86.7c0.001,0,0.002,0,0.004,0h1229.636 c48.188,0.307,87.5-38.509,87.807-86.696c0-0.001,0-0.002,0-0.004V894.25C1831.068,908.067,1823.616,920.807,1811.58,927.593z" }), /* @__PURE__ */ t.createElement("path", { opacity: 0.1, enableBackground: "new ", d: "M1185.52,1279.629l-9.496,5.323c-2.752,1.752-5.595,3.359-8.517,4.812 c-10.462,5.135-21.838,8.146-33.47,8.857l241.405,285.479l421.107,101.476c11.539-8.716,20.717-20.178,26.7-33.343L1185.52,1279.629 z" }), /* @__PURE__ */ t.createElement("path", { opacity: 0.05, enableBackground: "new ", d: "M1228.529,1255.442l-52.505,29.51c-2.752,1.752-5.595,3.359-8.517,4.812 c-10.462,5.135-21.838,8.146-33.47,8.857l113.101,311.838l549.538,74.989c21.649-16.254,34.394-41.743,34.407-68.815v-9.326 L1228.529,1255.442z" }), /* @__PURE__ */ t.createElement("path", { fill: "#28A8EA", d: "M514.833,1703.333h1228.316c18.901,0.096,37.335-5.874,52.59-17.033l-697.089-408.331 c-2.929-1.47-5.773-3.105-8.517-4.897L447.125,906.088h-0.298l-20.993-11.838v719.914 C425.786,1663.364,465.632,1703.286,514.833,1703.333C514.832,1703.333,514.832,1703.333,514.833,1703.333z" }), /* @__PURE__ */ t.createElement("path", { opacity: 0.1, enableBackground: "new ", d: "M1022,418.722v908.303c-0.076,31.846-19.44,60.471-48.971,72.392 c-9.148,3.931-19,5.96-28.957,5.962H425.833V383.25H511v-42.583h433.073C987.092,340.83,1021.907,375.702,1022,418.722z" }), /* @__PURE__ */ t.createElement("path", { opacity: 0.2, enableBackground: "new ", d: "M979.417,461.305v908.302c0.107,10.287-2.074,20.469-6.388,29.808 c-11.826,29.149-40.083,48.273-71.54,48.417H425.833V383.25h475.656c12.356-0.124,24.533,2.958,35.344,8.943 C962.937,405.344,979.407,432.076,979.417,461.305z" }), /* @__PURE__ */ t.createElement("path", { opacity: 0.2, enableBackground: "new ", d: "M979.417,461.305v823.136c-0.208,43-34.928,77.853-77.927,78.225H425.833V383.25 h475.656c12.356-0.124,24.533,2.958,35.344,8.943C962.937,405.344,979.407,432.076,979.417,461.305z" }), /* @__PURE__ */ t.createElement("path", { opacity: 0.2, enableBackground: "new ", d: "M936.833,461.305v823.136c-0.046,43.067-34.861,78.015-77.927,78.225H425.833 V383.25h433.072c43.062,0.023,77.951,34.951,77.927,78.013C936.833,461.277,936.833,461.291,936.833,461.305z" }), /* @__PURE__ */ t.createElement("linearGradient", { id: "SVGID_2_", gradientUnits: "userSpaceOnUse", x1: 162.7469, y1: 1383.0741, x2: 774.0864, y2: 324.2592, gradientTransform: "matrix(1 0 0 -1 0 1705.3334)" }, /* @__PURE__ */ t.createElement("stop", { offset: 0, style: {
270
+ stopColor: "#1784D9"
271
+ } }), /* @__PURE__ */ t.createElement("stop", { offset: 0.5, style: {
272
+ stopColor: "#107AD5"
273
+ } }), /* @__PURE__ */ t.createElement("stop", { offset: 1, style: {
274
+ stopColor: "#0A63C9"
275
+ } })), /* @__PURE__ */ t.createElement("path", { fill: "url(#SVGID_2_)", d: "M78.055,383.25h780.723c43.109,0,78.055,34.947,78.055,78.055v780.723 c0,43.109-34.946,78.055-78.055,78.055H78.055c-43.109,0-78.055-34.947-78.055-78.055V461.305 C0,418.197,34.947,383.25,78.055,383.25z" }), /* @__PURE__ */ t.createElement("path", { fill: "#FFFFFF", d: "M243.96,710.631c19.238-40.988,50.29-75.289,89.17-98.495c43.057-24.651,92.081-36.94,141.675-35.515 c45.965-0.997,91.321,10.655,131.114,33.683c37.414,22.312,67.547,55.004,86.742,94.109c20.904,43.09,31.322,90.512,30.405,138.396 c1.013,50.043-9.706,99.628-31.299,144.783c-19.652,40.503-50.741,74.36-89.425,97.388c-41.327,23.734-88.367,35.692-136.011,34.578 c-46.947,1.133-93.303-10.651-134.01-34.067c-37.738-22.341-68.249-55.07-87.892-94.28c-21.028-42.467-31.57-89.355-30.745-136.735 C212.808,804.859,223.158,755.686,243.96,710.631z M339.006,941.858c10.257,25.912,27.651,48.385,50.163,64.812 c22.93,16.026,50.387,24.294,78.353,23.591c29.783,1.178,59.14-7.372,83.634-24.358c22.227-16.375,39.164-38.909,48.715-64.812 c10.677-28.928,15.946-59.572,15.543-90.404c0.33-31.127-4.623-62.084-14.649-91.554c-8.855-26.607-25.246-50.069-47.182-67.537 c-23.88-17.79-53.158-26.813-82.91-25.55c-28.572-0.74-56.644,7.593-80.184,23.804c-22.893,16.496-40.617,39.168-51.1,65.365 c-23.255,60.049-23.376,126.595-0.341,186.728L339.006,941.858z" }), /* @__PURE__ */ t.createElement("path", { fill: "#50D9FF", d: "M1362.667,255.5h383.25v383.25h-383.25V255.5z" })), M2 = (e) => {
276
+ const n = l(), o = e.size ?? n.icon.size.lg;
277
+ return /* @__PURE__ */ r(e1, {
278
+ height: o,
279
+ width: o
280
+ });
281
+ }, t1 = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M3 5m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" }), /* @__PURE__ */ t.createElement("path", { d: "M16 10h1v4" }), /* @__PURE__ */ t.createElement("path", { d: "M7 14v-4l3 4v-4" }), /* @__PURE__ */ t.createElement("path", { d: "M13 10.5l0 .01" }), /* @__PURE__ */ t.createElement("path", { d: "M13 13.5l0 .01" })), x2 = (e) => {
282
+ const n = l(), o = e.size ?? 24, i = e.stroke ?? n.icon.stroke.md;
283
+ return /* @__PURE__ */ r(t1, {
284
+ height: o,
285
+ width: o,
286
+ strokeWidth: i
287
+ });
288
+ }, n1 = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 14, height: 14, viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", className: "tabler-icon tabler-icon-trash-x ", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M3 3l18 18" }), /* @__PURE__ */ t.createElement("path", { d: "M4 7h16" }), /* @__PURE__ */ t.createElement("path", { d: "M5 7l1 12a2 2 0 0 0 2 2h8a2 2 0 0 0 2 -2l1 -12" }), /* @__PURE__ */ t.createElement("path", { d: "M9 7v-3a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v3" }), /* @__PURE__ */ t.createElement("path", { d: "M10 12l4 4m0 -4l-4 4" })), z2 = (e) => {
289
+ const n = l(), o = e.size ?? n.icon.size.lg, i = e.stroke ?? n.icon.stroke.md;
290
+ return /* @__PURE__ */ r(n1, {
291
+ height: o,
292
+ width: o,
293
+ strokeWidth: i
294
+ });
295
+ }, o1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M10.4673 3.06709C10.9938 1.64431 13.0062 1.6443 13.5327 3.06709L15.2708 7.76367C15.4364 8.21097 15.789 8.56364 16.2363 8.72917L20.9329 10.4673C22.3557 10.9938 22.3557 13.0062 20.9329 13.5327L16.2363 15.2708C15.789 15.4364 15.4364 15.789 15.2708 16.2363L13.5327 20.9329C13.0062 22.3557 10.9938 22.3557 10.4673 20.9329L8.72917 16.2363C8.56364 15.789 8.21097 15.4364 7.76367 15.2708L3.06709 13.5327C1.64431 13.0062 1.6443 10.9938 3.06709 10.4673L7.76367 8.72917C8.21097 8.56364 8.56364 8.21097 8.72917 7.76367L10.4673 3.06709Z", stroke: "currentColor" })), S2 = (e) => {
296
+ const n = l(), o = e.size ?? 24, i = e.stroke ?? n.icon.stroke.md;
297
+ return /* @__PURE__ */ r(o1, {
298
+ height: o,
299
+ width: o,
300
+ strokeWidth: i
301
+ });
302
+ }, r1 = (e) => /* @__PURE__ */ t.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 14, height: 14, viewBox: "0 0 14 14", fill: "none", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M6.06216 1.53416C6.38434 0.663593 7.61566 0.663591 7.93784 1.53416L9.00134 4.40789C9.10263 4.68158 9.31842 4.89737 9.59211 4.99866L12.4658 6.06216C13.3364 6.38434 13.3364 7.61566 12.4658 7.93784L9.59211 9.00134C9.31842 9.10263 9.10263 9.31842 9.00134 9.59211L7.93784 12.4658C7.61566 13.3364 6.38434 13.3364 6.06216 12.4658L4.99866 9.59211C4.89737 9.31842 4.68158 9.10263 4.40789 9.00134L1.53416 7.93784C0.663593 7.61566 0.663591 6.38434 1.53416 6.06216L4.40789 4.99866C4.68158 4.89737 4.89737 4.68158 4.99866 4.40789L6.06216 1.53416Z", fill: "currentColor" })), c1 = z.icon.stroke.md, F2 = (e) => {
303
+ const n = e.size ?? 24, o = e.stroke ?? c1;
304
+ return /* @__PURE__ */ r(r1, {
305
+ height: n,
306
+ width: n,
307
+ strokeWidth: o
308
+ });
309
+ }, l1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M7.84682 4.19127L4.10596 3.92969L3.05961 18.8931L6.80048 19.1547", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M17.199 4.84524L20.9399 5.10683L19.8935 20.0703L16.1526 19.8087", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M7.99728 15.4793L8.00663 15.4799L7.99728 15.4793Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M11.7381 15.7409L11.7475 15.7415L11.7381 15.7409Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M15.479 16.0024L15.4884 16.0031L15.479 16.0024Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M7.84682 4.19127L4.10596 3.92969L3.05961 18.8931L6.80048 19.1547M17.199 4.84524L20.9399 5.10683L19.8935 20.0703L16.1526 19.8087M7.99728 15.4793L8.00663 15.4799M11.7381 15.7409L11.7475 15.7415M15.479 16.0024L15.4884 16.0031", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), i1 = /* @__PURE__ */ c("div", {
310
+ target: "e1mkgkb00"
311
+ })("background-color:", ({ theme: e }) => e.background.primary, ";border:0.75px solid ", ({ theme: e }) => e.border.color.medium, ";border-radius:", ({ theme: e }) => e.border.radius.sm, ";display:flex;justify-content:center;"), a = i1, b2 = (e) => {
312
+ const n = l(), o = e.size ?? n.icon.size.lg;
313
+ return /* @__PURE__ */ r(a, {
314
+ children: /* @__PURE__ */ r(l1, {
315
+ fill: n.accent.accent3,
316
+ color: n.accent.accent8,
317
+ height: o,
318
+ width: o
319
+ })
320
+ });
321
+ }, a1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 26, height: 26, viewBox: "-1 0 26 26", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M5.66433 7.43347C5.72493 6.9399 5.97912 6.49062 6.37099 6.18446C6.76285 5.8783 7.26028 5.74035 7.75386 5.80095L18.92 7.17199C19.4136 7.23259 19.8629 7.48678 20.169 7.87864C20.4752 8.27051 20.6131 8.76794 20.5525 9.26151L19.1815 20.4277C19.1209 20.9212 18.8667 21.3705 18.4748 21.6767C18.083 21.9828 17.5855 22.1208 17.092 22.0602L5.92582 20.6891C5.43224 20.6285 4.98296 20.3744 4.6768 19.9825C4.37064 19.5906 4.23269 19.0932 4.2933 18.5996L5.66433 7.43347Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M17.2875 5.08246L16.8305 8.8045L17.2875 5.08246Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M9.84339 4.16844L9.38638 7.89048L9.84339 4.16844Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M5.20732 11.1555L20.0955 12.9836L5.20732 11.1555Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M8.47236 15.3346L10.3334 15.5631L10.1049 17.4241L8.24385 17.1956L8.47236 15.3346Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M17.2875 5.08246L16.8305 8.8045M9.84339 4.16844L9.38638 7.89048M5.20732 11.1555L20.0955 12.9836M5.66433 7.43347C5.72493 6.9399 5.97912 6.49062 6.37099 6.18446C6.76285 5.8783 7.26028 5.74035 7.75386 5.80095L18.92 7.17199C19.4136 7.23259 19.8629 7.48678 20.169 7.87864C20.4752 8.27051 20.6131 8.76794 20.5525 9.26151L19.1815 20.4277C19.1209 20.9212 18.8667 21.3705 18.4748 21.6767C18.083 21.9828 17.5855 22.1208 17.092 22.0602L5.92582 20.6891C5.43224 20.6285 4.98296 20.3744 4.6768 19.9825C4.37064 19.5906 4.23269 19.0932 4.2933 18.5996L5.66433 7.43347ZM8.47236 15.3346L10.3334 15.5631L10.1049 17.4241L8.24385 17.1956L8.47236 15.3346Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), B2 = (e) => {
322
+ const n = l(), o = e.size ?? n.icon.size.lg;
323
+ return /* @__PURE__ */ r(a, {
324
+ children: /* @__PURE__ */ r(a1, {
325
+ fill: n.accent.accent3,
326
+ color: n.accent.accent8,
327
+ height: o,
328
+ width: o
329
+ })
330
+ });
331
+ }, s1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 24, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M12.8968 20.4301L6.54196 20.8745C6.04589 20.9092 5.55636 20.7454 5.18105 20.4191C4.80575 20.0929 4.57542 19.6309 4.54073 19.1348L3.75597 7.91225C3.72128 7.41618 3.88508 6.92665 4.21132 6.55135C4.53757 6.17605 4.99954 5.94571 5.49561 5.91103L16.7182 5.12627C17.2143 5.09158 17.7038 5.25537 18.0791 5.58162C18.4544 5.90786 18.6847 6.36984 18.7194 6.8659L18.981 10.6068", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M14.7627 17.4803C14.8321 18.4724 15.2928 19.3964 16.0434 20.0488C16.794 20.7013 17.773 21.0289 18.7652 20.9595C19.7573 20.8902 20.6812 20.4295 21.3337 19.6789C21.9862 18.9283 22.3138 17.9492 22.2444 16.9571C22.1751 15.965 21.7144 15.041 20.9638 14.3885C20.2132 13.736 19.2341 13.4084 18.242 13.4778C17.2499 13.5472 16.3259 14.0079 15.6734 14.7585C15.0209 15.5091 14.6933 16.4881 14.7627 17.4803Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M14.717 3.38663L14.9786 7.12749L14.717 3.38663Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M7.23525 3.9098L7.49684 7.65067L7.23525 3.9098Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M4.01756 11.6531L18.981 10.6068L4.01756 11.6531Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M18.4052 15.8122L18.5036 17.2188L19.5042 18.0886", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M12.8968 20.4301L6.54196 20.8745C6.04589 20.9092 5.55636 20.7454 5.18105 20.4191C4.80575 20.0929 4.57542 19.6309 4.54073 19.1348L3.75597 7.91225C3.72128 7.41618 3.88508 6.92665 4.21132 6.55135C4.53757 6.17605 4.99954 5.94571 5.49561 5.91103L16.7182 5.12627C17.2143 5.09158 17.7038 5.25537 18.0791 5.58162C18.4544 5.90786 18.6847 6.36984 18.7194 6.8659L18.981 10.6068L4.01756 11.6531M14.717 3.38663L14.9786 7.12749M7.23525 3.9098L7.49684 7.65067M18.4052 15.8122L18.5036 17.2188L19.5042 18.0886M14.7627 17.4803C14.8321 18.4724 15.2928 19.3964 16.0434 20.0488C16.794 20.7013 17.773 21.0289 18.7652 20.9595C19.7573 20.8902 20.6812 20.4295 21.3337 19.6789C21.9862 18.9283 22.3138 17.9492 22.2444 16.9571C22.1751 15.965 21.7144 15.041 20.9638 14.3885C20.2132 13.736 19.2341 13.4084 18.242 13.4778C17.2499 13.5472 16.3259 14.0079 15.6734 14.7585C15.0209 15.5091 14.6933 16.4881 14.7627 17.4803Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), D2 = (e) => {
332
+ const n = l(), o = e.size ?? n.icon.size.lg;
333
+ return /* @__PURE__ */ r(a, {
334
+ children: /* @__PURE__ */ r(s1, {
335
+ height: o,
336
+ width: o,
337
+ fill: n.accent.accent3,
338
+ color: n.accent.accent8
339
+ })
340
+ });
341
+ }, d1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_39321_100611)" }, /* @__PURE__ */ t.createElement("path", { d: "M10.2501 3.41974L14.9262 3.74672C15.2983 3.77274 15.6447 3.94549 15.8894 4.22697C16.1341 4.50844 16.257 4.87559 16.2309 5.24764C16.1702 6.11577 15.7672 6.92422 15.1104 7.49515C14.4536 8.06608 13.5969 8.35272 12.7288 8.29201L11.7936 8.22662C10.9255 8.16591 10.117 7.76283 9.54608 7.10605C8.97515 6.44927 8.68851 5.59259 8.74922 4.72447C8.77523 4.35242 8.94798 4.00594 9.22946 3.76125C9.51093 3.51657 9.87808 3.39372 10.2501 3.41974Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M4.19089 16.1531L4.25629 15.2179C4.39504 13.2336 5.31637 11.3857 6.81758 10.0807C8.31879 8.77574 10.2769 8.12056 12.2612 8.25931C14.2455 8.39807 16.0934 9.31939 17.3983 10.8206C18.7033 12.3218 19.3585 14.2799 19.2197 16.2642L19.1544 17.1994C19.085 18.1916 18.6243 19.1155 17.8737 19.768C17.1231 20.4205 16.144 20.7481 15.1519 20.6787L7.67017 20.1555C6.67803 20.0862 5.75409 19.6255 5.1016 18.8749C4.4491 18.1243 4.12151 17.1452 4.19089 16.1531Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M10.2501 3.41974L14.9262 3.74672C15.2983 3.77274 15.6447 3.94549 15.8894 4.22697C16.1341 4.50844 16.257 4.87559 16.2309 5.24764C16.1702 6.11577 15.7672 6.92422 15.1104 7.49515C14.4536 8.06608 13.5969 8.35272 12.7288 8.29201L11.7936 8.22662C10.9255 8.16591 10.117 7.76283 9.54608 7.10605C8.97515 6.44927 8.68851 5.59259 8.74922 4.72447C8.77523 4.35242 8.94798 4.00594 9.22946 3.76125C9.51093 3.51657 9.87808 3.39372 10.2501 3.41974Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ t.createElement("path", { d: "M4.19089 16.1531L4.25629 15.2179C4.39504 13.2336 5.31637 11.3857 6.81758 10.0807C8.31879 8.77574 10.2769 8.12056 12.2612 8.25931C14.2455 8.39807 16.0934 9.31939 17.3983 10.8206C18.7033 12.3218 19.3585 14.2799 19.2197 16.2642L19.1544 17.1994C19.085 18.1916 18.6243 19.1155 17.8737 19.768C17.1231 20.4205 16.144 20.7481 15.1519 20.6787L7.67017 20.1555C6.67803 20.0862 5.75409 19.6255 5.1016 18.8749C4.4491 18.1243 4.12151 17.1452 4.19089 16.1531Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_39321_100611" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "white" })))), Z2 = (e) => {
342
+ const n = l(), o = e.size ?? n.icon.size.lg;
343
+ return /* @__PURE__ */ r(a, {
344
+ children: /* @__PURE__ */ r(d1, {
345
+ height: o,
346
+ width: o,
347
+ fill: n.accent.accent3,
348
+ color: n.accent.accent8
349
+ })
350
+ });
351
+ }, h1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M5.5 4.5C5.5 3.94772 5.94772 3.5 6.5 3.5H13.5L18.5 8.5V19.5C18.5 20.0523 18.0523 20.5 17.5 20.5H6.5C5.94772 20.5 5.5 20.0523 5.5 19.5V4.5Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M13.5 3.5V8.5H18.5M5.5 4.5C5.5 3.94772 5.94772 3.5 6.5 3.5H13.5L18.5 8.5V19.5C18.5 20.0523 18.0523 20.5 17.5 20.5H6.5C5.94772 20.5 5.5 20.0523 5.5 19.5V4.5Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), T2 = (e) => {
352
+ const n = l(), o = e.size ?? n.icon.size.lg;
353
+ return /* @__PURE__ */ r(a, {
354
+ children: /* @__PURE__ */ r(h1, {
355
+ height: o,
356
+ width: o,
357
+ fill: n.accent.accent3,
358
+ color: n.accent.accent8
359
+ })
360
+ });
361
+ }, C1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M6.80092 4.84535C6.30485 4.88004 5.84288 5.11037 5.51664 5.48567C5.19039 5.86097 5.0266 6.3505 5.06128 6.84657L5.25747 9.65222C5.30951 10.3963 5.16235 11.1237 4.84837 11.6744C4.53438 12.2251 4.0793 12.554 3.58323 12.5887C4.0793 12.554 4.57572 12.8163 4.96329 13.3179C5.35086 13.8196 5.59782 14.5194 5.64985 15.2635L5.84605 18.0692C5.88073 18.5652 6.11106 19.0272 6.48637 19.3535C6.86167 19.6797 7.3512 19.8435 7.84727 19.8088", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M16.1531 4.19138C16.6492 4.15669 17.1387 4.32049 17.514 4.64673C17.8893 4.97298 18.1196 5.43495 18.1543 5.93102L18.3505 8.73667C18.4025 9.48077 18.6495 10.1806 19.0371 10.6823C19.4246 11.1839 19.9211 11.4462 20.4171 11.4115C19.9211 11.4462 19.466 11.7751 19.152 12.3258C18.838 12.8765 18.6909 13.6039 18.7429 14.348L18.9391 17.1536C18.9738 17.6497 18.81 18.1392 18.4837 18.5145C18.1575 18.8898 17.6955 19.1202 17.1994 19.1548", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M6.80092 4.84535C6.30485 4.88004 5.84288 5.11037 5.51664 5.48567C5.19039 5.86097 5.0266 6.3505 5.06128 6.84657L5.25747 9.65222C5.30951 10.3963 5.16235 11.1237 4.84837 11.6744C4.53438 12.2251 4.0793 12.554 3.58323 12.5887C4.0793 12.554 4.57572 12.8163 4.96329 13.3179C5.35086 13.8196 5.59782 14.5194 5.64985 15.2635L5.84605 18.0692C5.88073 18.5652 6.11106 19.0272 6.48637 19.3535C6.86167 19.6797 7.3512 19.8435 7.84727 19.8088M16.1531 4.19138C16.6492 4.15669 17.1387 4.32049 17.514 4.64673C17.8893 4.97298 18.1196 5.43495 18.1543 5.93102L18.3505 8.73667C18.4025 9.48077 18.6495 10.1806 19.0371 10.6823C19.4246 11.1839 19.9211 11.4462 20.4171 11.4115C19.9211 11.4462 19.466 11.7751 19.152 12.3258C18.838 12.8765 18.6909 13.6039 18.7429 14.348L18.9391 17.1536C18.9738 17.6497 18.81 18.1392 18.4837 18.5145C18.1575 18.8898 17.6955 19.1202 17.1994 19.1548", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), A2 = (e) => {
362
+ const n = l(), o = e.size ?? n.icon.size.lg;
363
+ return /* @__PURE__ */ r(a, {
364
+ children: /* @__PURE__ */ r(C1, {
365
+ height: o,
366
+ width: o,
367
+ fill: n.accent.accent3,
368
+ color: n.accent.accent8
369
+ })
370
+ });
371
+ }, m1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("rect", { width: 24, height: 24, rx: 3, fill: "none" }), /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_36855_127168)" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M3.60925 11.1178C3.49343 12.2198 3.59579 13.3338 3.91049 14.3962C4.22519 15.4586 4.74606 16.4486 5.44336 17.3097C6.14067 18.1708 7.00075 18.8861 7.9745 19.4148C8.94826 19.9435 10.0166 20.2753 11.1186 20.3911C12.2205 20.5069 13.3345 20.4045 14.3969 20.0898C15.4593 19.7751 16.4493 19.2543 17.3104 18.557C18.1715 17.8597 18.8868 16.9996 19.4156 16.0258C19.9443 15.0521 20.276 13.9837 20.3918 12.8818C20.6257 10.6563 19.966 8.42898 18.5577 6.68991C17.1494 4.95084 15.108 3.84243 12.8825 3.60852C10.657 3.37461 8.42971 4.03436 6.69064 5.44263C4.95157 6.8509 3.84316 8.89234 3.60925 11.1178Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M4.46411 8.3797L20.1278 10.026L4.46411 8.3797Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M3.87614 13.9739L19.5399 15.6202L3.87614 13.9739Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M12.416 3.55949C10.5807 5.91142 9.44243 8.73125 9.1306 11.6982C8.81876 14.6651 9.34592 17.6599 10.6521 20.342", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M13.3487 3.65752C14.6548 6.33963 15.182 9.3345 14.8702 12.3014C14.5583 15.2683 13.42 18.0881 11.5848 20.4401", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M4.46411 8.3797L20.1278 10.026M3.87614 13.9739L19.5399 15.6202M12.416 3.55949C10.5807 5.91142 9.44243 8.73125 9.1306 11.6982C8.81876 14.6651 9.34592 17.6599 10.6521 20.342M13.3487 3.65752C14.6548 6.33963 15.182 9.3345 14.8702 12.3014C14.5583 15.2683 13.42 18.0881 11.5848 20.4401M3.60925 11.1178C3.49343 12.2198 3.59579 13.3338 3.91049 14.3962C4.22519 15.4586 4.74606 16.4486 5.44336 17.3097C6.14067 18.1708 7.00075 18.8861 7.9745 19.4148C8.94826 19.9435 10.0166 20.2753 11.1186 20.3911C12.2205 20.5069 13.3345 20.4045 14.3969 20.0898C15.4593 19.7751 16.4493 19.2543 17.3104 18.557C18.1715 17.8597 18.8868 16.9996 19.4156 16.0258C19.9443 15.0521 20.276 13.9837 20.3918 12.8818C20.6257 10.6563 19.966 8.42898 18.5577 6.68991C17.1494 4.95084 15.108 3.84243 12.8825 3.60852C10.657 3.37461 8.42971 4.03436 6.69064 5.44263C4.95157 6.8509 3.84316 8.89234 3.60925 11.1178Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_36855_127168" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "white" })))), P2 = (e) => {
372
+ const n = l(), o = e.size ?? n.icon.size.lg;
373
+ return /* @__PURE__ */ r(a, {
374
+ children: /* @__PURE__ */ r(m1, {
375
+ height: o,
376
+ width: o,
377
+ fill: n.accent.accent3,
378
+ color: n.accent.accent8
379
+ })
380
+ });
381
+ }, p1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("rect", { width: 24, height: 24, rx: 3, fill: "none" }), /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_36855_127259)" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M3.25579 7.91194C3.2211 7.41587 3.3849 6.92633 3.71115 6.55103C4.03739 6.17573 4.49936 5.9454 4.99543 5.91071L18.0885 4.99516C18.5845 4.96047 19.0741 5.12426 19.4494 5.45051C19.8247 5.77675 20.055 6.23873 20.0897 6.7348L20.7437 16.087C20.7783 16.583 20.6145 17.0726 20.2883 17.4479C19.9621 17.8232 19.5001 18.0535 19.004 18.0882L5.91099 19.0037C5.41492 19.0384 4.92538 18.8746 4.55008 18.5484C4.17478 18.2221 3.94445 17.7602 3.90976 17.2641L3.25579 7.91194Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M3.25579 7.91194L12.0651 12.9347L20.0897 6.7348", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M3.25579 7.91194C3.2211 7.41587 3.3849 6.92633 3.71115 6.55103C4.03739 6.17573 4.49936 5.9454 4.99543 5.91071L18.0885 4.99516C18.5845 4.96047 19.0741 5.12426 19.4494 5.45051C19.8247 5.77675 20.055 6.23873 20.0897 6.7348M3.25579 7.91194L3.90976 17.2641C3.94445 17.7602 4.17478 18.2221 4.55008 18.5484C4.92538 18.8746 5.41492 19.0384 5.91099 19.0037L19.004 18.0882C19.5001 18.0535 19.9621 17.8232 20.2883 17.4479C20.6145 17.0726 20.7783 16.583 20.7437 16.087L20.0897 6.7348M3.25579 7.91194L12.0651 12.9347L20.0897 6.7348", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_36855_127259" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "white" })))), R2 = (e) => {
382
+ const n = l(), o = e.size ?? n.icon.size.lg;
383
+ return /* @__PURE__ */ r(a, {
384
+ children: /* @__PURE__ */ r(p1, {
385
+ height: o,
386
+ width: o,
387
+ fill: n.accent.accent3,
388
+ color: n.accent.accent8
389
+ })
390
+ });
391
+ }, g1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M3.25628 7.91194C3.22159 7.41587 3.38539 6.92633 3.71163 6.55103C4.03788 6.17573 4.49985 5.9454 4.99592 5.91071L18.0889 4.99516C18.585 4.96047 19.0746 5.12426 19.4499 5.45051C19.8252 5.77675 20.0555 6.23873 20.0902 6.7348L20.7441 16.087C20.7788 16.583 20.615 17.0726 20.2888 17.4479C19.9625 17.8232 19.5006 18.0535 19.0045 18.0882L5.91147 19.0037C5.4154 19.0384 4.92587 18.8746 4.55057 18.5484C4.17527 18.2221 3.94494 17.7602 3.91025 17.2641L3.25628 7.91194Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M14.9367 13.6737L14.6751 9.93282L17.7423 13.4775L17.4807 9.73663", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M6.51971 14.2623L6.25812 10.5214L9.32536 14.0661L9.06377 10.3252", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M11.9021 10.5966L11.9028 10.606L11.9021 10.5966Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M12.0983 13.4023L12.099 13.4116L12.0983 13.4023Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M14.9367 13.6737L14.6751 9.93282L17.7423 13.4775L17.4807 9.73663M6.51971 14.2623L6.25812 10.5214L9.32536 14.0661L9.06377 10.3252M11.9021 10.5966L11.9028 10.606M12.0983 13.4023L12.099 13.4116M3.25628 7.91194C3.22159 7.41587 3.38539 6.92633 3.71163 6.55103C4.03788 6.17573 4.49985 5.9454 4.99592 5.91071L18.0889 4.99516C18.585 4.96047 19.0746 5.12426 19.4499 5.45051C19.8252 5.77675 20.0555 6.23873 20.0902 6.7348L20.7441 16.087C20.7788 16.583 20.615 17.0726 20.2888 17.4479C19.9625 17.8232 19.5006 18.0535 19.0045 18.0882L5.91147 19.0037C5.4154 19.0384 4.92587 18.8746 4.55057 18.5484C4.17527 18.2221 3.94494 17.7602 3.91025 17.2641L3.25628 7.91194Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), H2 = (e) => {
392
+ const n = l(), o = e.size ?? n.icon.size.lg;
393
+ return /* @__PURE__ */ r(a, {
394
+ children: /* @__PURE__ */ r(g1, {
395
+ height: o,
396
+ width: o,
397
+ fill: n.accent.accent3,
398
+ color: n.accent.accent8
399
+ })
400
+ });
401
+ }, u1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_39400_7686)" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M3.25625 7.91258L8.67136 4.71455L14.4788 7.12782L19.894 3.92979L20.7441 16.0876L15.329 19.2856L9.52151 16.8724L4.10641 20.0704L3.25625 7.91258Z" }), /* @__PURE__ */ t.createElement("path", { d: "M8.67136 4.71455L9.52151 16.8724L8.67136 4.71455Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M14.4788 7.12782L15.329 19.2856L14.4788 7.12782Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M8.67136 4.71455L3.25625 7.91258L4.10641 20.0704L9.52151 16.8724M8.67136 4.71455L14.4788 7.12782M8.67136 4.71455L9.52151 16.8724M14.4788 7.12782L19.894 3.92979L20.7441 16.0876L15.329 19.2856M14.4788 7.12782L15.329 19.2856M15.329 19.2856L9.52151 16.8724", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_39400_7686" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "white" })))), _2 = (e) => {
402
+ const n = l(), o = e.size ?? n.icon.size.lg;
403
+ return /* @__PURE__ */ r(a, {
404
+ children: /* @__PURE__ */ r(u1, {
405
+ height: o,
406
+ width: o,
407
+ fill: n.accent.accent3,
408
+ color: n.accent.accent8
409
+ })
410
+ });
411
+ }, I1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "currentFill", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("rect", { width: 24, height: 24, rx: 3, fill: "none" }), /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_36855_127138)" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M15.4792 7.99748C15.4098 7.00534 14.9491 6.08139 14.1985 5.4289C13.4479 4.77641 12.4688 4.44882 11.4767 4.5182C10.4846 4.58758 9.56062 5.04824 8.90813 5.79884C8.25564 6.54945 7.92805 7.52851 7.99743 8.52065L8.06282 9.45587C8.1322 10.448 8.59286 11.3719 9.34347 12.0244C10.0941 12.6769 11.0731 13.0045 12.0653 12.9351C13.0574 12.8658 13.9814 12.4051 14.6338 11.6545C15.2863 10.9039 15.6139 9.92483 15.5446 8.93269", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M8.5206 16.0024C8.58998 16.9945 9.05064 17.9185 9.80124 18.571C10.5518 19.2234 11.5309 19.551 12.5231 19.4817C13.5152 19.4123 14.4391 18.9516 15.0916 18.201C15.7441 17.4504 16.0717 16.4713 16.0023 15.4792L15.4792 7.99748", fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M15.5446 8.93269C15.6139 9.92483 15.2863 10.9039 14.6338 11.6545C13.9814 12.4051 13.0574 12.8658 12.0653 12.9351C11.0731 13.0045 10.0941 12.6769 9.34347 12.0244C8.59286 11.3719 8.1322 10.448 8.06282 9.45587L7.99743 8.52065C7.92805 7.52851 8.25564 6.54945 8.90813 5.79884C9.56062 5.04824 10.4846 4.58758 11.4767 4.5182C12.4688 4.44882 13.4479 4.77641 14.1985 5.4289C14.9491 6.08139 15.4098 7.00534 15.4792 7.99748L16.0023 15.4792C16.0717 16.4713 15.7441 17.4504 15.0916 18.201C14.4391 18.9516 13.5152 19.4123 12.5231 19.4817C11.5309 19.551 10.5518 19.2234 9.80124 18.571C9.05064 17.9185 8.58998 16.9945 8.5206 16.0024", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_36855_127138" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "white" })))), O2 = (e) => {
412
+ const n = l(), o = e.size ?? n.icon.size.lg;
413
+ return /* @__PURE__ */ r(a, {
414
+ children: /* @__PURE__ */ r(I1, {
415
+ height: o,
416
+ width: o,
417
+ fill: n.accent.accent3,
418
+ color: n.accent.accent8
419
+ })
420
+ });
421
+ }, f1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 24, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M3.75628 7.91194C3.72159 7.41587 3.88539 6.92633 4.21163 6.55103C4.53788 6.17573 4.99985 5.9454 5.49592 5.91071L18.5889 4.99516C19.085 4.96047 19.5746 5.12426 19.9499 5.45051C20.3252 5.77675 20.5555 6.23873 20.5902 6.7348L21.2441 16.087C21.2788 16.583 21.115 17.0726 20.7888 17.4479C20.4625 17.8232 20.0006 18.0535 19.5045 18.0882L6.41147 19.0037C5.9154 19.0384 5.42587 18.8746 5.05057 18.5484C4.67527 18.2221 4.44494 17.7602 4.41025 17.2641L3.75628 7.91194Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M7.69334 10.456L8.62855 10.3906L8.89014 14.1315", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M14.5014 13.7391L14.2399 9.99822L17.3071 13.5429L17.0455 9.80203", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M11.4669 10.662L11.4676 10.6714L11.4669 10.662Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M11.6631 13.4677L11.6637 13.477L11.6631 13.4677Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M7.69334 10.456L8.62855 10.3906L8.89014 14.1315M14.5014 13.7391L14.2399 9.99822L17.3071 13.5429L17.0455 9.80203M11.4669 10.662L11.4676 10.6714M11.6631 13.4677L11.6637 13.477M3.75628 7.91194C3.72159 7.41587 3.88539 6.92633 4.21163 6.55103C4.53788 6.17573 4.99985 5.9454 5.49592 5.91071L18.5889 4.99516C19.085 4.96047 19.5746 5.12426 19.9499 5.45051C20.3252 5.77675 20.5555 6.23873 20.5902 6.7348L21.2441 16.087C21.2788 16.583 21.115 17.0726 20.7888 17.4479C20.4625 17.8232 20.0006 18.0535 19.5045 18.0882L6.41147 19.0037C5.9154 19.0384 5.42587 18.8746 5.05057 18.5484C4.67527 18.2221 4.44494 17.7602 4.41025 17.2641L3.75628 7.91194Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), W2 = (e) => {
422
+ const n = l(), o = e.size ?? n.icon.size.lg;
423
+ return /* @__PURE__ */ r(a, {
424
+ children: /* @__PURE__ */ r(f1, {
425
+ height: o,
426
+ width: o,
427
+ fill: n.accent.accent3,
428
+ color: n.accent.accent8
429
+ })
430
+ });
431
+ }, L1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 24, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M3.75628 7.91194C3.72159 7.41587 3.88539 6.92633 4.21163 6.55103C4.53788 6.17573 4.99985 5.9454 5.49592 5.91071L18.5889 4.99516C19.085 4.96047 19.5746 5.12426 19.9499 5.45051C20.3252 5.77675 20.5555 6.23873 20.5902 6.7348L21.2441 16.087C21.2788 16.583 21.115 17.0726 20.7888 17.4479C20.4625 17.8232 20.0006 18.0535 19.5045 18.0882L6.41147 19.0037C5.9154 19.0384 5.42587 18.8746 5.05057 18.5484C4.67527 18.2221 4.44494 17.7602 4.41025 17.2641L3.75628 7.91194Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M8.62855 10.3906L9.56377 10.3252L9.82536 14.0661", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M15.1751 9.93282L16.1103 9.86743L16.3719 13.6083", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M12.4021 10.5966L12.4028 10.606L12.4021 10.5966Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M12.5983 13.4023L12.599 13.4116L12.5983 13.4023Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M8.62855 10.3906L9.56377 10.3252L9.82536 14.0661M15.1751 9.93282L16.1103 9.86743L16.3719 13.6083M12.4021 10.5966L12.4028 10.606M12.5983 13.4023L12.599 13.4116M3.75628 7.91194C3.72159 7.41587 3.88539 6.92633 4.21163 6.55103C4.53788 6.17573 4.99985 5.9454 5.49592 5.91071L18.5889 4.99516C19.085 4.96047 19.5746 5.12426 19.9499 5.45051C20.3252 5.77675 20.5555 6.23873 20.5902 6.7348L21.2441 16.087C21.2788 16.583 21.115 17.0726 20.7888 17.4479C20.4625 17.8232 20.0006 18.0535 19.5045 18.0882L6.41147 19.0037C5.9154 19.0384 5.42587 18.8746 5.05057 18.5484C4.67527 18.2221 4.44494 17.7602 4.41025 17.2641L3.75628 7.91194Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), V2 = (e) => {
432
+ const n = l(), o = e.size ?? n.icon.size.lg;
433
+ return /* @__PURE__ */ r(a, {
434
+ children: /* @__PURE__ */ r(L1, {
435
+ height: o,
436
+ width: o,
437
+ fill: n.accent.accent3,
438
+ color: n.accent.accent8
439
+ })
440
+ });
441
+ }, w1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("rect", { width: 24, height: 24, rx: 3, fill: "none" }), /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_36855_127302)" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M4.93049 4.97614L8.67136 4.71455L10.8688 9.25984L8.62883 10.8262C9.77242 12.787 11.531 14.3157 13.6319 15.1753L14.8712 12.7391L19.6781 14.2826L19.9397 18.0234C19.9744 18.5195 19.8106 19.009 19.4843 19.3843C19.1581 19.7596 18.6961 19.99 18.2 20.0247C14.5365 20.0581 10.9874 18.7495 8.2224 16.3459C5.45738 13.9423 3.66764 10.6099 3.19085 6.97737C3.15616 6.4813 3.31996 5.99176 3.6462 5.61646C3.97245 5.24116 4.43442 5.01083 4.93049 4.97614Z", fill: "currentFill", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_36855_127302" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "white" })))), j2 = (e) => {
442
+ const n = l(), o = e.size ?? n.icon.size.lg;
443
+ return /* @__PURE__ */ r(a, {
444
+ children: /* @__PURE__ */ r(w1, {
445
+ height: o,
446
+ width: o,
447
+ fill: n.accent.accent3,
448
+ color: n.accent.accent8
449
+ })
450
+ });
451
+ }, E1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M5.38754 12.4777C5.42223 11.9816 5.65256 11.5196 6.02786 11.1934C6.40316 10.8671 6.89269 10.7033 7.38876 10.738L16.7409 11.392C17.237 11.4267 17.699 11.657 18.0252 12.0323C18.3515 12.4076 18.5153 12.8971 18.4806 13.3932L18.0882 19.0045C18.0535 19.5006 17.8232 19.9625 17.4479 20.2888C17.0726 20.615 16.583 20.7788 16.087 20.7441L6.7348 20.0902C6.23873 20.0555 5.77675 19.8252 5.45051 19.4499C5.12426 19.0746 4.96047 18.585 4.99516 18.0889L5.38754 12.4777Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M10.8026 15.6757C10.7853 15.9237 10.8672 16.1685 11.0303 16.3561C11.1934 16.5438 11.4244 16.6589 11.6725 16.6763C11.9205 16.6936 12.1653 16.6117 12.3529 16.4486C12.5406 16.2855 12.6557 16.0545 12.6731 15.8065C12.6904 15.5584 12.6085 15.3137 12.4454 15.126C12.2823 14.9384 12.0513 14.8232 11.8033 14.8059C11.5552 14.7885 11.3105 14.8704 11.1228 15.0335C10.9352 15.1967 10.82 15.4276 10.8026 15.6757Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M8.32398 10.8034L8.58557 7.06254C8.65494 6.0704 9.1156 5.14646 9.86621 4.49397C10.6168 3.84148 11.5959 3.51389 12.588 3.58327C13.5802 3.65264 14.5041 4.1133 15.1566 4.86391C15.8091 5.61451 16.1367 6.59358 16.0673 7.58572L15.8057 11.3266", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M8.32398 10.8034L8.58557 7.06254C8.65494 6.0704 9.1156 5.14646 9.86621 4.49397C10.6168 3.84148 11.5959 3.51389 12.588 3.58327C13.5802 3.65264 14.5041 4.1133 15.1566 4.86391C15.8091 5.61451 16.1367 6.59358 16.0673 7.58572L15.8057 11.3266M5.38754 12.4777C5.42223 11.9816 5.65256 11.5196 6.02786 11.1934C6.40316 10.8671 6.89269 10.7033 7.38876 10.738L16.7409 11.392C17.237 11.4267 17.699 11.657 18.0252 12.0323C18.3515 12.4076 18.5153 12.8971 18.4806 13.3932L18.0882 19.0045C18.0535 19.5006 17.8232 19.9625 17.4479 20.2888C17.0726 20.615 16.583 20.7788 16.087 20.7441L6.7348 20.0902C6.23873 20.0555 5.77675 19.8252 5.45051 19.4499C5.12426 19.0746 4.96047 18.585 4.99516 18.0889L5.38754 12.4777ZM10.8026 15.6757C10.7853 15.9237 10.8672 16.1685 11.0303 16.3561C11.1934 16.5438 11.4244 16.6589 11.6725 16.6763C11.9205 16.6936 12.1653 16.6117 12.3529 16.4486C12.5406 16.2855 12.6557 16.0545 12.6731 15.8065C12.6904 15.5584 12.6085 15.3137 12.4454 15.126C12.2823 14.9384 12.0513 14.8232 11.8033 14.8059C11.5552 14.7885 11.3105 14.8704 11.1228 15.0335C10.9352 15.1967 10.82 15.4276 10.8026 15.6757Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), q2 = (e) => {
452
+ const n = l(), o = e.size ?? n.icon.size.lg;
453
+ return /* @__PURE__ */ r(a, {
454
+ children: /* @__PURE__ */ r(E1, {
455
+ height: o,
456
+ width: o,
457
+ fill: n.accent.accent3,
458
+ color: n.accent.accent8
459
+ })
460
+ });
461
+ }, y1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 24, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_39321_100605)" }, /* @__PURE__ */ t.createElement("path", { d: "M10.6518 4.4387C11.0177 3.18817 12.7418 3.06761 13.2782 4.25504L15.0487 8.17475C15.2173 8.54805 15.5406 8.82907 15.9337 8.9441L20.0617 10.1519C21.3122 10.5177 21.4328 12.2418 20.2453 12.7782L16.3256 14.5487C15.9523 14.7173 15.6713 15.0406 15.5563 15.4337L14.3485 19.5617C13.9826 20.8122 12.2585 20.9328 11.7222 19.7454L9.95166 15.8257C9.78304 15.4524 9.45976 15.1713 9.06662 15.0563L4.93866 13.8485C3.68814 13.4827 3.56757 11.7586 4.75501 11.2222L8.67471 9.4517C9.04801 9.28308 9.32903 8.9598 9.44406 8.56666L10.6518 4.4387Z", fill: "currentFill", stroke: "currentColor", strokeWidth: 1.5 })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_39321_100605" }, /* @__PURE__ */ t.createElement("rect", { width: 20.6124, height: 20.6124, fill: "white", transform: "translate(1.5 2.43799) rotate(-4)" })))), N2 = (e) => {
462
+ const n = l(), o = e.size ?? n.icon.size.lg;
463
+ return /* @__PURE__ */ r(a, {
464
+ children: /* @__PURE__ */ r(y1, {
465
+ height: o,
466
+ width: o,
467
+ fill: n.accent.accent3,
468
+ color: n.accent.accent8
469
+ })
470
+ });
471
+ }, k1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 24, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M9.06327 9.89091C9.57978 9.85479 9.96921 9.4068 9.93309 8.8903C9.89697 8.37379 9.44898 7.98436 8.93248 8.02048C8.41597 8.05659 8.02654 8.50458 8.06266 9.02109C8.09878 9.53759 8.54677 9.92703 9.06327 9.89091Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M4.69131 7.84715L4.94367 11.4562C4.97879 11.9584 5.21167 12.4261 5.5919 12.7566L13.7129 19.8161C13.901 19.9796 14.1196 20.1046 14.356 20.1837C14.5925 20.2628 14.8422 20.2946 15.0909 20.2772C15.3396 20.2598 15.5825 20.1936 15.8056 20.0823C16.0287 19.9711 16.2278 19.8169 16.3913 19.6288L20.596 14.7918C20.7596 14.6036 20.8846 14.3851 20.9637 14.1487C21.0428 13.9122 21.0746 13.6625 21.0572 13.4138C21.0398 13.1651 20.9736 12.9222 20.8623 12.6991C20.7511 12.4759 20.5969 12.2769 20.4088 12.1133L12.2868 5.05395C11.9071 4.72385 11.4117 4.55804 10.9098 4.59295L7.30077 4.84531C6.55666 4.89735 5.8637 5.24284 5.37434 5.8058C4.88497 6.36875 4.63927 7.10305 4.69131 7.84715Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M9.06327 9.89091C9.57978 9.85479 9.96921 9.4068 9.93309 8.8903C9.89697 8.37379 9.44898 7.98436 8.93248 8.02048C8.41597 8.05659 8.02654 8.50458 8.06266 9.02109C8.09878 9.53759 8.54677 9.92703 9.06327 9.89091Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ t.createElement("path", { d: "M4.69131 7.84715L4.94367 11.4562C4.97879 11.9584 5.21167 12.4261 5.5919 12.7566L13.7129 19.8161C13.901 19.9796 14.1196 20.1046 14.356 20.1837C14.5925 20.2628 14.8422 20.2946 15.0909 20.2772C15.3396 20.2598 15.5825 20.1936 15.8056 20.0823C16.0287 19.9711 16.2278 19.8169 16.3913 19.6288L20.596 14.7918C20.7596 14.6036 20.8846 14.3851 20.9637 14.1487C21.0428 13.9122 21.0746 13.6625 21.0572 13.4138C21.0398 13.1651 20.9736 12.9222 20.8623 12.6991C20.7511 12.4759 20.5969 12.2769 20.4088 12.1133L12.2868 5.05395C11.9071 4.72385 11.4117 4.55804 10.9098 4.59295L7.30077 4.84531C6.55666 4.89735 5.8637 5.24284 5.37434 5.8058C4.88497 6.36875 4.63927 7.10305 4.69131 7.84715Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round", fill: "none" })), G2 = (e) => {
472
+ const n = l(), o = e.size ?? n.icon.size.lg;
473
+ return /* @__PURE__ */ r(a, {
474
+ children: /* @__PURE__ */ r(k1, {
475
+ height: o,
476
+ width: o,
477
+ fill: n.accent.accent3,
478
+ color: n.accent.accent8
479
+ })
480
+ });
481
+ }, v1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 24, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M8.23485 6.65934L5.58444 6.84467C5.08217 6.87979 4.61443 7.113 4.2841 7.493C3.95378 7.87299 3.78794 8.36864 3.82306 8.87091L4.00839 11.5213C4.04351 12.0235 4.27639 12.4912 4.65662 12.8218L10.7764 18.1416C10.9645 18.3052 11.1831 18.4301 11.4195 18.5092C11.656 18.5883 11.9057 18.6201 12.1544 18.6027C12.4031 18.5853 12.646 18.5191 12.8691 18.4079C13.0922 18.2966 13.2913 18.1425 13.4548 17.9543L15.9199 15.1185C16.0835 14.9304 16.2084 14.7118 16.2875 14.4754C16.3667 14.239 16.3984 13.9892 16.381 13.7405C16.3636 13.4918 16.2974 13.2489 16.1862 13.0258C16.0749 12.8027 15.9208 12.6037 15.7326 12.4401L9.61192 7.12034C9.23213 6.79024 8.73683 6.62443 8.23485 6.65934Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M18.1301 17.6281L20.5952 14.7923C20.7587 14.6042 20.8837 14.3856 20.9628 14.1492C21.0419 13.9127 21.0737 13.663 21.0563 13.4143C21.0389 13.1656 20.9727 12.9227 20.8614 12.6996C20.7502 12.4765 20.596 12.2774 20.4079 12.1139L13.2866 5.9243", fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M6.69086 9.58667L6.68151 9.58732L6.69086 9.58667Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M18.1301 17.6281L20.5952 14.7923C20.7587 14.6042 20.8837 14.3856 20.9628 14.1492C21.0419 13.9127 21.0737 13.663 21.0563 13.4143C21.0389 13.1656 20.9727 12.9227 20.8614 12.6996C20.7502 12.4765 20.596 12.2774 20.4079 12.1139L13.2866 5.9243M6.69086 9.58667L6.68151 9.58732M8.23485 6.65934L5.58444 6.84467C5.08217 6.87979 4.61443 7.113 4.2841 7.493C3.95378 7.87299 3.78794 8.36864 3.82306 8.87091L4.00839 11.5213C4.04351 12.0235 4.27639 12.4912 4.65662 12.8218L10.7764 18.1416C10.9645 18.3052 11.1831 18.4301 11.4195 18.5092C11.656 18.5883 11.9057 18.6201 12.1544 18.6027C12.4031 18.5853 12.646 18.5191 12.8691 18.4079C13.0922 18.2966 13.2913 18.1425 13.4548 17.9543L15.9199 15.1185C16.0835 14.9304 16.2084 14.7118 16.2875 14.4754C16.3667 14.239 16.3984 13.9892 16.381 13.7405C16.3636 13.4918 16.2974 13.2489 16.1862 13.0258C16.0749 12.8027 15.9208 12.6037 15.7326 12.4401L9.61192 7.12034C9.23213 6.79024 8.73683 6.62443 8.23485 6.65934Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), U2 = (e) => {
482
+ const n = l(), o = e.size ?? n.icon.size.lg;
483
+ return /* @__PURE__ */ r(a, {
484
+ children: /* @__PURE__ */ r(v1, {
485
+ height: o,
486
+ width: o,
487
+ fill: n.accent.accent3,
488
+ color: n.accent.accent8
489
+ })
490
+ });
491
+ }, M1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("rect", { width: 24, height: 24, rx: 3, fill: "none" }), /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_36855_127272)" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M3.75727 18.6752L6.55436 18.9691L3.75727 18.6752Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M13.0809 19.6551L19.6075 20.3411L13.0809 19.6551Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M6.94965 14.2974L13.383 14.9735L6.94965 14.2974Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M10.8797 6.50999L14.9448 19.8518L10.8797 6.50999Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M4.68963 18.7731L11.8517 4.44329L13.7165 4.63928L18.6751 20.2431", fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M3.75727 18.6752L6.55436 18.9691M13.0809 19.6551L19.6075 20.3411M6.94965 14.2974L13.383 14.9735M10.8797 6.50999L14.9448 19.8518M4.68963 18.7731L11.8517 4.44329L13.7165 4.63928L18.6751 20.2431", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_36855_127272" }, /* @__PURE__ */ t.createElement("rect", { x: 0.75, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "white" })))), X2 = (e) => {
492
+ const n = l(), o = e.size ?? n.icon.size.lg;
493
+ return /* @__PURE__ */ r(a, {
494
+ children: /* @__PURE__ */ r(M1, {
495
+ height: o,
496
+ width: o,
497
+ fill: n.accent.accent3,
498
+ color: n.accent.accent8
499
+ })
500
+ });
501
+ }, x1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 24, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("g", { clipPath: "url(#clip0_39321_100602)" }, /* @__PURE__ */ t.createElement("path", { d: "M14.3703 11.869C14.405 12.3651 14.6354 12.8271 15.0107 13.1533C15.386 13.4796 15.8755 13.6433 16.3716 13.6087C16.8676 13.574 17.3296 13.3436 17.6559 12.9683C17.9821 12.593 18.1459 12.1035 18.1112 11.6074C18.0765 11.1114 17.8462 10.6494 17.4709 10.3231C17.0956 9.9969 16.6061 9.8331 16.11 9.86779C15.6139 9.90248 15.1519 10.1328 14.8257 10.5081C14.4995 10.8834 14.3357 11.3729 14.3703 11.869Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M3.14775 12.6538C3.04369 11.1656 3.53507 9.69697 4.51381 8.57107C5.49255 7.44516 6.87846 6.75417 8.36667 6.6501L15.8484 6.12693C17.3366 6.02286 18.8052 6.51425 19.9311 7.49298C21.057 8.47172 21.748 9.85764 21.8521 11.3458C21.9561 12.8341 21.4648 14.3026 20.486 15.4286C19.5073 16.5545 18.1214 17.2455 16.6332 17.3495L9.15143 17.8727C7.66322 17.9768 6.19463 17.4854 5.06872 16.5066C3.94281 15.5279 3.25182 14.142 3.14775 12.6538Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M14.3703 11.869C14.405 12.3651 14.6354 12.8271 15.0107 13.1533C15.386 13.4796 15.8755 13.6433 16.3716 13.6087C16.8676 13.574 17.3296 13.3436 17.6559 12.9683C17.9821 12.593 18.1459 12.1035 18.1112 11.6074C18.0765 11.1114 17.8462 10.6494 17.4709 10.3231C17.0956 9.9969 16.6061 9.8331 16.11 9.86779C15.6139 9.90248 15.1519 10.1328 14.8257 10.5081C14.4995 10.8834 14.3357 11.3729 14.3703 11.869Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ t.createElement("path", { d: "M3.14775 12.6538C3.04369 11.1656 3.53507 9.69697 4.51381 8.57107C5.49255 7.44516 6.87846 6.75417 8.36667 6.6501L15.8484 6.12693C17.3366 6.02286 18.8052 6.51425 19.9311 7.49298C21.057 8.47172 21.748 9.85764 21.8521 11.3458C21.9561 12.8341 21.4648 14.3026 20.486 15.4286C19.5073 16.5545 18.1214 17.2455 16.6332 17.3495L9.15143 17.8727C7.66322 17.9768 6.19463 17.4854 5.06872 16.5066C3.94281 15.5279 3.25182 14.142 3.14775 12.6538Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round", fill: "none" })), /* @__PURE__ */ t.createElement("defs", null, /* @__PURE__ */ t.createElement("clipPath", { id: "clip0_39321_100602" }, /* @__PURE__ */ t.createElement("rect", { x: 1.25, y: 0.75, width: 22.5, height: 22.5, rx: 2.25, fill: "white" })))), $2 = (e) => {
502
+ const n = l(), o = e.size ?? n.icon.size.lg;
503
+ return /* @__PURE__ */ r(a, {
504
+ children: /* @__PURE__ */ r(x1, {
505
+ height: o,
506
+ width: o,
507
+ fill: n.accent.accent3,
508
+ color: n.accent.accent8
509
+ })
510
+ });
511
+ }, z1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 26, viewBox: "0 0 25 26", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M4.50317 7.59525C4.56818 6.85217 4.92571 6.16535 5.49712 5.68588C6.06853 5.20641 6.80701 4.97357 7.55009 5.03858L18.7573 6.01908C19.5004 6.0841 20.1872 6.44163 20.6667 7.01304C21.1461 7.58445 21.379 8.32292 21.314 9.06601L20.4969 18.4053C20.4319 19.1484 20.0743 19.8352 19.5029 20.3147C18.9315 20.7942 18.193 21.027 17.4499 20.962L6.24275 19.9815C5.49967 19.9165 4.81285 19.559 4.33338 18.9875C3.85391 18.4161 3.62107 17.6777 3.68608 16.9346L4.50317 7.59525Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M7.99377 10.7239C7.95043 11.2193 8.10566 11.7116 8.4253 12.0925C8.74495 12.4735 9.20283 12.7118 9.69822 12.7552C10.1936 12.7985 10.6859 12.6433 11.0669 12.3236C11.4478 12.004 11.6862 11.5461 11.7295 11.0507C11.7728 10.5553 11.6176 10.063 11.298 9.68208C10.9783 9.30114 10.5204 9.06278 10.0251 9.01944C9.52966 8.9761 9.03735 9.13132 8.65641 9.45097C8.27547 9.77062 8.03711 10.2285 7.99377 10.7239Z", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M15.6286 9.50969L17.4965 9.67311L15.6286 9.50969Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M15.3018 13.2454L17.1697 13.4088L15.3018 13.2454Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M7.50352 16.3275L16.8428 17.1446L7.50352 16.3275Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M15.6286 9.50969L17.4965 9.67311M15.3018 13.2454L17.1697 13.4088M7.50352 16.3275L16.8428 17.1446M4.50317 7.59525C4.56818 6.85217 4.92571 6.16535 5.49712 5.68588C6.06853 5.20641 6.80701 4.97357 7.55009 5.03858L18.7573 6.01908C19.5004 6.0841 20.1872 6.44163 20.6667 7.01304C21.1461 7.58445 21.379 8.32292 21.314 9.06601L20.4969 18.4053C20.4319 19.1484 20.0743 19.8352 19.5029 20.3147C18.9315 20.7942 18.193 21.027 17.4499 20.962L6.24275 19.9815C5.49967 19.9165 4.81285 19.559 4.33338 18.9875C3.85391 18.4161 3.62107 17.6777 3.68608 16.9346L4.50317 7.59525ZM7.99377 10.7239C7.95043 11.2193 8.10566 11.7116 8.4253 12.0925C8.74495 12.4735 9.20283 12.7118 9.69822 12.7552C10.1936 12.7985 10.6859 12.6433 11.0669 12.3236C11.4478 12.004 11.6862 11.5461 11.7295 11.0507C11.7728 10.5553 11.6176 10.063 11.298 9.68208C10.9783 9.30114 10.5204 9.06278 10.0251 9.01944C9.52966 8.9761 9.03735 9.13132 8.65641 9.45097C8.27547 9.77062 8.03711 10.2285 7.99377 10.7239Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), K2 = (e) => {
512
+ const n = l(), o = e.size ?? n.icon.size.lg;
513
+ return /* @__PURE__ */ r(a, {
514
+ children: /* @__PURE__ */ r(z1, {
515
+ height: o,
516
+ width: o,
517
+ fill: n.accent.accent3,
518
+ color: n.accent.accent8
519
+ })
520
+ });
521
+ }, S1 = (e) => /* @__PURE__ */ t.createElement("svg", { width: 25, height: 24, viewBox: "0 0 25 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...e }, /* @__PURE__ */ t.createElement("path", { d: "M4.08295 12.5883C4.16025 13.6937 4.45449 14.7729 4.94889 15.7646C5.44329 16.7562 6.12816 17.6407 6.9644 18.3676C7.80064 19.0946 8.77187 19.6497 9.82264 20.0012C10.8734 20.3528 11.9831 20.494 13.0885 20.4167C14.1938 20.3394 15.2731 20.0452 16.2647 19.5508C17.2563 19.0564 18.1408 18.3715 18.8678 17.5353C19.5947 16.699 20.1498 15.7278 20.5014 14.677C20.853 13.6263 20.9941 12.5165 20.9168 11.4112C20.8396 10.3059 20.5453 9.22658 20.0509 8.23497C19.5565 7.24336 18.8716 6.35883 18.0354 5.6319C17.1992 4.90497 16.2279 4.34987 15.1772 3.99828C14.1264 3.6467 13.0167 3.50552 11.9113 3.58282C10.806 3.66011 9.72672 3.95435 8.73511 4.44875C7.74349 4.94315 6.85897 5.62803 6.13204 6.46427C5.40511 7.3005 4.85 8.27174 4.49842 9.32251C4.14684 10.3733 4.00566 11.483 4.08295 12.5883Z", fill: "none" }), /* @__PURE__ */ t.createElement("path", { d: "M9.56346 10.3255C9.61549 11.0696 9.96099 11.7626 10.5239 12.252C11.0869 12.7413 11.8212 12.987 12.5653 12.935C13.3094 12.8829 14.0024 12.5375 14.4917 11.9745C14.9811 11.4115 15.2268 10.6772 15.1748 9.93314C15.1227 9.18904 14.7772 8.49608 14.2143 8.00671C13.6513 7.51734 12.917 7.27165 12.1729 7.32368C11.4288 7.37571 10.7359 7.72121 10.2465 8.28416C9.75712 8.84712 9.51143 9.58142 9.56346 10.3255Z", fill: "#E8EFFD" }), /* @__PURE__ */ t.createElement("path", { d: "M7.49359 18.7865C7.6712 17.9999 8.09763 17.2915 8.70962 16.7664C9.32162 16.2413 10.0866 15.9274 10.891 15.8714L14.6319 15.6098C15.4373 15.5532 16.2395 15.7581 16.9192 16.194C17.5989 16.6299 18.1197 17.2735 18.4042 18.0291", fill: "currentFill" }), /* @__PURE__ */ t.createElement("path", { d: "M7.49359 18.7865C7.6712 17.9999 8.09763 17.2915 8.70962 16.7664C9.32162 16.2413 10.0866 15.9274 10.891 15.8714L14.6319 15.6098C15.4373 15.5532 16.2395 15.7581 16.9192 16.194C17.5989 16.6299 18.1197 17.2735 18.4042 18.0291M4.08295 12.5883C4.16025 13.6937 4.45449 14.7729 4.94889 15.7646C5.44329 16.7562 6.12816 17.6407 6.9644 18.3676C7.80064 19.0946 8.77187 19.6497 9.82264 20.0012C10.8734 20.3528 11.9831 20.494 13.0885 20.4167C14.1938 20.3394 15.2731 20.0452 16.2647 19.5508C17.2563 19.0564 18.1408 18.3715 18.8678 17.5353C19.5947 16.699 20.1498 15.7278 20.5014 14.677C20.853 13.6263 20.9941 12.5165 20.9168 11.4112C20.8396 10.3059 20.5453 9.22658 20.0509 8.23497C19.5565 7.24336 18.8716 6.35883 18.0354 5.6319C17.1992 4.90497 16.2279 4.34987 15.1772 3.99828C14.1264 3.6467 13.0167 3.50552 11.9113 3.58282C10.806 3.66011 9.72672 3.95435 8.73511 4.44875C7.7435 4.94315 6.85897 5.62803 6.13204 6.46427C5.40511 7.3005 4.85 8.27174 4.49842 9.32251C4.14684 10.3733 4.00566 11.483 4.08295 12.5883ZM9.56346 10.3255C9.61549 11.0696 9.96099 11.7626 10.5239 12.252C11.0869 12.7413 11.8212 12.987 12.5653 12.935C13.3094 12.8829 14.0024 12.5375 14.4917 11.9745C14.9811 11.4115 15.2268 10.6772 15.1748 9.93314C15.1227 9.18904 14.7772 8.49608 14.2143 8.00671C13.6513 7.51734 12.917 7.27165 12.1729 7.32368C11.4288 7.37571 10.7359 7.72121 10.2465 8.28416C9.75712 8.84712 9.51143 9.58142 9.56346 10.3255Z", stroke: "currentColor", strokeWidth: 1.49625, strokeLinecap: "round", strokeLinejoin: "round" })), Y2 = (e) => {
522
+ const n = l(), o = e.size ?? n.icon.size.lg;
523
+ return /* @__PURE__ */ r(a, {
524
+ children: /* @__PURE__ */ r(S1, {
525
+ height: o,
526
+ width: o,
527
+ fill: n.accent.accent3,
528
+ color: n.accent.accent8
529
+ })
530
+ });
531
+ }, f = b({
532
+ key: "iconsState",
533
+ defaultValue: {}
534
+ }), J2 = () => {
535
+ const e = S(f), n = v;
536
+ return {
537
+ getIcons: () => e,
538
+ getIcon: (s, h) => e[s ?? ""] || e[h ?? ""] || n
539
+ };
540
+ }, Q2 = ({ children: e }) => {
541
+ const n = F(f);
542
+ return x(() => {
543
+ import("./AllIcons-CGPKtPQS.js").then(({ ALL_ICONS: o }) => {
544
+ n(o);
545
+ });
546
+ }, [
547
+ n
548
+ ]), e;
549
+ }, F1 = /* @__PURE__ */ c("div", {
550
+ target: "e1wzg7500"
551
+ })("align-items:center;display:flex;gap:", ({ theme: e }) => e.spacing(2), ";"), b1 = /* @__PURE__ */ c(I, {
552
+ target: "e1wzg7501"
553
+ })("flex-shrink:0;"), B1 = /* @__PURE__ */ c("div", {
554
+ target: "e1wzg7502"
555
+ })("align-items:center;border-radius:", ({ theme: e }) => e.border.radius.md, ";display:flex;font-weight:", ({ theme: e }) => e.font.weight.medium, ";justify-content:space-between;max-width:512px;gap:", ({ theme: e }) => e.spacing(2), ";padding:", ({ theme: e }) => e.spacing(2), ";", ({ theme: e, accent: n }) => {
556
+ switch (n) {
557
+ case "blue":
558
+ return C`
559
+ background: ${e.color.blue5};
560
+ color: ${e.color.blue10};
561
+ `;
562
+ case "danger":
563
+ return C`
564
+ background: ${e.color.red3};
565
+ color: ${e.color.red};
566
+ `;
567
+ }
568
+ }), D1 = /* @__PURE__ */ c(w, {
569
+ target: "e1wzg7503"
570
+ })("text-decoration:none;"), ee = ({ accent: e = "blue", text: n, buttonTitle: o, onClick: i, to: s }) => {
571
+ const h = l();
572
+ return /* @__PURE__ */ d(B1, {
573
+ accent: e,
574
+ children: [
575
+ /* @__PURE__ */ d(F1, {
576
+ children: [
577
+ /* @__PURE__ */ r(b1, {
578
+ size: h.icon.size.md
579
+ }),
580
+ n
581
+ ]
582
+ }),
583
+ o && s && /* @__PURE__ */ r(D1, {
584
+ to: s,
585
+ children: /* @__PURE__ */ r(m, {
586
+ title: o,
587
+ size: "small",
588
+ variant: "secondary",
589
+ accent: e
590
+ })
591
+ }),
592
+ o && i && !s && /* @__PURE__ */ r(m, {
593
+ title: o,
594
+ onClick: i,
595
+ size: "small",
596
+ variant: "secondary",
597
+ accent: e
598
+ })
599
+ ]
600
+ });
601
+ }, Z1 = /* @__PURE__ */ c("h3", {
602
+ target: "e2d4w1t0"
603
+ })("align-items:center;background:", ({ color: e, theme: n }) => n.tag.background[e], ";border-radius:", ({ theme: e }) => e.border.radius.pill, ";color:", ({ color: e, theme: n }) => n.tag.text[e], ";display:inline-flex;font-size:", ({ theme: e }) => e.font.size.md, ";font-style:normal;font-weight:", ({ theme: e, weight: n }) => e.font.weight[n], ";gap:", ({ theme: e }) => e.spacing(1), ";height:", ({ theme: e }) => e.spacing(5), `;margin:0;overflow:hidden;padding:0
604
+ `, ({ theme: e, isLoaderVisible: n }) => n ? e.spacing(1) : e.spacing(2), " 0 ", ({ theme: e }) => e.spacing(2), ";&:before{background-color:", ({ color: e, theme: n }) => n.tag.text[e], ";border-radius:", ({ theme: e }) => e.border.radius.rounded, ";content:'';display:block;flex-shrink:0;height:", ({ theme: e }) => e.spacing(1), ";width:", ({ theme: e }) => e.spacing(1), ";}"), T1 = /* @__PURE__ */ c("span", {
605
+ target: "e2d4w1t1"
606
+ })("overflow:hidden;text-overflow:ellipsis;white-space:nowrap;"), te = ({ className: e, color: n, isLoaderVisible: o = !1, text: i, onClick: s, weight: h = "regular" }) => /* @__PURE__ */ d(Z1, {
607
+ className: e,
608
+ color: B.catch("gray").parse(n),
609
+ onClick: s,
610
+ weight: h,
611
+ isLoaderVisible: o,
612
+ children: [
613
+ /* @__PURE__ */ r(T1, {
614
+ children: i
615
+ }),
616
+ o ? /* @__PURE__ */ r(D, {
617
+ color: n
618
+ }) : null
619
+ ]
620
+ }), A1 = /* @__PURE__ */ c("div", {
621
+ target: "e2xr4rj0"
622
+ })("background-color:", ({ theme: e, color: n }) => n ?? e.border.color.medium, ";height:", ({ visible: e }) => e ? "1px" : 0, ";flex-shrink:0;margin-bottom:", ({ theme: e, noMargin: n }) => n ? 0 : e.spacing(3), ";margin-top:", ({ theme: e, noMargin: n }) => n ? 0 : e.spacing(3), ";width:100%;"), P1 = /* @__PURE__ */ c("div", {
623
+ target: "e2xr4rj1"
624
+ })("align-items:center;display:flex;margin-bottom:", ({ theme: e, noMargin: n }) => n ? 0 : e.spacing(3), ";margin-top:", ({ theme: e, noMargin: n }) => n ? 0 : e.spacing(3), ";width:100%;"), p = /* @__PURE__ */ c("div", {
625
+ target: "e2xr4rj2"
626
+ })("background-color:", ({ theme: e }) => e.border.color.medium, ";height:", ({ visible: e }) => e ? "1px" : 0, ";flex-grow:1;"), R1 = /* @__PURE__ */ c("span", {
627
+ target: "e2xr4rj3"
628
+ })("margin:0 ", ({ theme: e }) => e.spacing(2), ";"), ne = ({ visible: e = !0, text: n = "", noMargin: o = !1, color: i }) => /* @__PURE__ */ r(g, {
629
+ children: n ? /* @__PURE__ */ d(P1, {
630
+ noMargin: o,
631
+ children: [
632
+ /* @__PURE__ */ r(p, {
633
+ visible: e
634
+ }),
635
+ /* @__PURE__ */ r(U1, {
636
+ children: /* @__PURE__ */ r(R1, {
637
+ children: n
638
+ })
639
+ }),
640
+ /* @__PURE__ */ r(p, {
641
+ visible: e
642
+ })
643
+ ]
644
+ }) : /* @__PURE__ */ r(A1, {
645
+ visible: e,
646
+ noMargin: o,
647
+ color: i
648
+ })
649
+ }), H1 = /* @__PURE__ */ c("div", {
650
+ target: "e1g0psvn0"
651
+ })("display:flex;align-items:center;width:100%;font-size:", ({ theme: e }) => e.font.size.md, ";font-weight:", ({ theme: e }) => e.font.weight.semiBold, ";color:", ({ theme: e }) => e.font.color.extraLight, ";&:before,&:after{content:'';height:1px;flex-grow:1;background:", ({ theme: e }) => e.background.transparent.light, ";}&:before{margin:0 ", ({ theme: e }) => e.spacing(4), " 0 0;}&:after{margin:0 0 0 ", ({ theme: e }) => e.spacing(4), ";}"), oe = ({ children: e }) => /* @__PURE__ */ r(H1, {
652
+ children: e
653
+ });
654
+ var re = /* @__PURE__ */ function(e) {
655
+ return e.Primary = "primary", e.Secondary = "secondary", e.Tertiary = "tertiary", e;
656
+ }({});
657
+ const _1 = /* @__PURE__ */ c("h2", {
658
+ target: "e10phrr0"
659
+ })("color:", ({ theme: e, fontColor: n }) => e.font.color[n], ";font-size:", ({ theme: e }) => e.font.size.lg, ";font-weight:", ({ theme: e }) => e.font.weight.semiBold, ";line-height:", ({ theme: e }) => e.text.lineHeight.md, ";margin:0;margin-bottom:", ({ theme: e }) => e.spacing(4), ";"), ce = ({ title: e, fontColor: n = "tertiary", className: o }) => /* @__PURE__ */ r(_1, {
660
+ fontColor: n,
661
+ className: o,
662
+ children: e
663
+ }), O1 = /* @__PURE__ */ c("div", {
664
+ target: "e1vly8iu0"
665
+ })("display:flex;flex-direction:column;margin-bottom:", ({ theme: e }) => e.spacing(4), ";"), W1 = /* @__PURE__ */ c("div", {
666
+ target: "e1vly8iu1"
667
+ })("align-items:center;display:flex;justify-content:space-between;"), V1 = /* @__PURE__ */ c("h2", {
668
+ target: "e1vly8iu2"
669
+ })("color:", ({ theme: e }) => e.font.color.primary, ";font-size:", ({ theme: e }) => e.font.size.md, ";font-weight:", ({ theme: e }) => e.font.weight.semiBold, ";margin:0;"), j1 = /* @__PURE__ */ c("h3", {
670
+ target: "e1vly8iu3"
671
+ })("color:", ({ theme: e }) => e.font.color.tertiary, ";font-size:", ({ theme: e }) => e.font.size.md, ";font-weight:", ({ theme: e }) => e.font.weight.regular, ";margin:0;margin-top:", ({ theme: e }) => e.spacing(2), ";"), le = ({ title: e, description: n, adornment: o, className: i }) => /* @__PURE__ */ d(O1, {
672
+ className: i,
673
+ children: [
674
+ /* @__PURE__ */ d(W1, {
675
+ children: [
676
+ /* @__PURE__ */ r(V1, {
677
+ children: e
678
+ }),
679
+ o
680
+ ]
681
+ }),
682
+ n && /* @__PURE__ */ r(j1, {
683
+ children: /* @__PURE__ */ r(u, {
684
+ text: n,
685
+ displayedMaxRows: 5,
686
+ isTooltipMultiline: !0
687
+ })
688
+ })
689
+ ]
690
+ }), q1 = /* @__PURE__ */ c("div", {
691
+ target: "esy75w30"
692
+ })("display:flex;flex-direction:column;"), N1 = /* @__PURE__ */ c("h3", {
693
+ target: "esy75w31"
694
+ })("color:", ({ theme: e }) => e.font.color.primary, ";font-size:", ({ theme: e }) => e.font.size.lg, ";font-weight:", ({ theme: e }) => e.font.weight.semiBold, ";margin:0;"), G1 = /* @__PURE__ */ c("h4", {
695
+ target: "esy75w32"
696
+ })("color:", ({ theme: e }) => e.font.color.tertiary, ";font-size:", ({ theme: e }) => e.font.size.md, ";font-weight:", ({ theme: e }) => e.font.weight.regular, ";margin:0;margin-top:", ({ theme: e }) => e.spacing(2), ";"), ie = ({ title: e, description: n, className: o }) => /* @__PURE__ */ d(q1, {
697
+ className: o,
698
+ children: [
699
+ /* @__PURE__ */ r(N1, {
700
+ children: e
701
+ }),
702
+ n && // Design rule: Never set a description for H3 if there are any H2 in the page
703
+ // (in that case, each H2 must have its own description)
704
+ /* @__PURE__ */ r(G1, {
705
+ children: /* @__PURE__ */ r(u, {
706
+ text: n,
707
+ displayedMaxRows: 2,
708
+ isTooltipMultiline: !0
709
+ })
710
+ })
711
+ ]
712
+ }), U1 = /* @__PURE__ */ c("div", {
713
+ target: "er208yq0"
714
+ })("color:", ({ theme: e }) => e.font.color.light, ";font-size:", ({ variant: e = "default" }) => {
715
+ switch (e) {
716
+ case "default":
717
+ return "11px";
718
+ case "small":
719
+ return "9px";
720
+ }
721
+ }, ";font-weight:", ({ theme: e }) => e.font.weight.semiBold, ";"), X1 = /* @__PURE__ */ c("div", {
722
+ target: "esj5luy0"
723
+ })("font-size:", ({ theme: e }) => e.font.size.sm, ";font-weight:", ({ theme: e }) => e.font.weight.regular, ";overflow:hidden;padding-left:0;white-space:nowrap;"), $1 = /* @__PURE__ */ c("div", {
724
+ target: "esj5luy1"
725
+ })("--horizontal-padding:", ({ theme: e }) => e.spacing(1), ";--vertical-padding:", ({ theme: e }) => e.spacing(2), ";cursor:initial;display:flex;flex-direction:row;font-size:", ({ theme: e }) => e.font.size.sm, ";gap:", ({ theme: e }) => e.spacing(2), ";padding:var(--vertical-padding) 0;color:", ({ theme: e, color: n }) => n ?? e.font.color.primary, ";"), ae = ({ PrefixComponent: e, text: n, color: o }) => /* @__PURE__ */ d($1, {
726
+ color: o,
727
+ children: [
728
+ e || null,
729
+ /* @__PURE__ */ r(X1, {
730
+ children: n
731
+ })
732
+ ]
733
+ });
734
+ export {
735
+ he as AVATAR_PROPERTIES_BY_SIZE,
736
+ g2 as AnimatedCheckmark,
737
+ E as AppTooltip,
738
+ Ce as Avatar,
739
+ C2 as AvatarGroup,
740
+ m2 as Banner,
741
+ At as Checkmark,
742
+ Rt as ColorSample,
743
+ u2 as CommandBlock,
744
+ ce as H1Title,
745
+ re as H1TitleFontColor,
746
+ le as H2Title,
747
+ ie as H3Title,
748
+ ne as HorizontalSeparator,
749
+ fe as Icon123,
750
+ I2 as IconAddressBook,
751
+ Le as IconAlertCircle,
752
+ we as IconAlertTriangle,
753
+ Ee as IconAlignBoxLeftTop,
754
+ ye as IconAlignCenter,
755
+ ke as IconAlignLeft,
756
+ ve as IconAlignRight,
757
+ Me as IconApi,
758
+ xe as IconAppWindow,
759
+ ze as IconApps,
760
+ Se as IconArchive,
761
+ Fe as IconArchiveOff,
762
+ be as IconArrowBackUp,
763
+ Be as IconArrowDown,
764
+ De as IconArrowLeft,
765
+ Ze as IconArrowMerge,
766
+ Te as IconArrowRight,
767
+ Ae as IconArrowUp,
768
+ Pe as IconArrowUpRight,
769
+ Re as IconArrowsDiagonal,
770
+ He as IconArrowsSort,
771
+ _e as IconArrowsVertical,
772
+ Oe as IconAt,
773
+ We as IconAxisX,
774
+ Ve as IconAxisY,
775
+ je as IconBadge2k,
776
+ qe as IconBaselineDensitySmall,
777
+ Ne as IconBell,
778
+ Ge as IconBlockquote,
779
+ Ue as IconBold,
780
+ Xe as IconBolt,
781
+ $e as IconBook2,
782
+ Ke as IconBookmark,
783
+ Ye as IconBookmarkPlus,
784
+ Je as IconBox,
785
+ Qe as IconBoxMultiple,
786
+ e5 as IconBrackets,
787
+ t5 as IconBracketsAngle,
788
+ n5 as IconBracketsContain,
789
+ o5 as IconBrain,
790
+ r5 as IconBrandDaysCounter,
791
+ c5 as IconBrandGithub,
792
+ l5 as IconBrandGoogle,
793
+ i5 as IconBrandGraphql,
794
+ a5 as IconBrandLinkedin,
795
+ s5 as IconBrandX,
796
+ d5 as IconBriefcase,
797
+ h5 as IconBroadcast,
798
+ C5 as IconBrowserMaximize,
799
+ m5 as IconBuildingSkyscraper,
800
+ p5 as IconCalendar,
801
+ g5 as IconCalendarDue,
802
+ u5 as IconCalendarEvent,
803
+ I5 as IconCalendarMonth,
804
+ f5 as IconCalendarRepeat,
805
+ L5 as IconCalendarTime,
806
+ w5 as IconCalendarWeek,
807
+ E5 as IconCalendarX,
808
+ y5 as IconCancel,
809
+ k5 as IconCaretLeft,
810
+ v5 as IconCaretRight,
811
+ M5 as IconChartBar,
812
+ f2 as IconChartBarHorizontal,
813
+ x5 as IconChartBarPopular,
814
+ z5 as IconChartCandle,
815
+ S5 as IconChartDots3,
816
+ F5 as IconChartLine,
817
+ b5 as IconChartPie,
818
+ B5 as IconCheck,
819
+ D5 as IconCheckbox,
820
+ Z5 as IconChevronDown,
821
+ T5 as IconChevronLeft,
822
+ A5 as IconChevronRight,
823
+ P5 as IconChevronRightPipe,
824
+ R5 as IconChevronUp,
825
+ H5 as IconChevronsRight,
826
+ _5 as IconCircle,
827
+ O5 as IconCircleDashed,
828
+ W5 as IconCircleDot,
829
+ V5 as IconCircleOff,
830
+ j5 as IconCirclePlus,
831
+ q5 as IconCircleX,
832
+ N5 as IconClick,
833
+ G5 as IconClockHour8,
834
+ U5 as IconClockPlay,
835
+ X5 as IconClockShare,
836
+ $5 as IconCode,
837
+ K5 as IconCodeCircle,
838
+ Y5 as IconCoins,
839
+ J5 as IconColorSwatch,
840
+ Q5 as IconColumns,
841
+ e4 as IconCommand,
842
+ t4 as IconComment,
843
+ n4 as IconCopy,
844
+ o4 as IconCopyPlus,
845
+ r4 as IconCpu,
846
+ c4 as IconCreativeCommonsSa,
847
+ l4 as IconCreditCard,
848
+ i4 as IconCsv,
849
+ a4 as IconCube,
850
+ s4 as IconCurrencyAfghani,
851
+ d4 as IconCurrencyBahraini,
852
+ h4 as IconCurrencyBaht,
853
+ C4 as IconCurrencyDinar,
854
+ m4 as IconCurrencyDirham,
855
+ p4 as IconCurrencyDollar,
856
+ g4 as IconCurrencyDollarAustralian,
857
+ u4 as IconCurrencyDollarBrunei,
858
+ I4 as IconCurrencyDollarCanadian,
859
+ f4 as IconCurrencyDollarGuyanese,
860
+ L4 as IconCurrencyDollarSingapore,
861
+ w4 as IconCurrencyDong,
862
+ E4 as IconCurrencyDram,
863
+ y4 as IconCurrencyEuro,
864
+ k4 as IconCurrencyFlorin,
865
+ v4 as IconCurrencyForint,
866
+ M4 as IconCurrencyFrank,
867
+ x4 as IconCurrencyGuarani,
868
+ z4 as IconCurrencyHryvnia,
869
+ S4 as IconCurrencyIranianRial,
870
+ F4 as IconCurrencyKip,
871
+ b4 as IconCurrencyKroneCzech,
872
+ B4 as IconCurrencyKroneDanish,
873
+ D4 as IconCurrencyKroneSwedish,
874
+ Z4 as IconCurrencyLari,
875
+ T4 as IconCurrencyLeu,
876
+ A4 as IconCurrencyLira,
877
+ P4 as IconCurrencyLyd,
878
+ R4 as IconCurrencyManat,
879
+ H4 as IconCurrencyNaira,
880
+ _4 as IconCurrencyPaanga,
881
+ O4 as IconCurrencyPeso,
882
+ W4 as IconCurrencyPound,
883
+ V4 as IconCurrencyQuetzal,
884
+ j4 as IconCurrencyReal,
885
+ q4 as IconCurrencyRenminbi,
886
+ N4 as IconCurrencyRiyal,
887
+ G4 as IconCurrencyRubel,
888
+ U4 as IconCurrencyRufiyaa,
889
+ X4 as IconCurrencyRupee,
890
+ $4 as IconCurrencyRupeeNepalese,
891
+ K4 as IconCurrencyShekel,
892
+ Y4 as IconCurrencySom,
893
+ J4 as IconCurrencyTaka,
894
+ Q4 as IconCurrencyTenge,
895
+ e8 as IconCurrencyTugrik,
896
+ t8 as IconCurrencyWon,
897
+ n8 as IconCurrencyYen,
898
+ o8 as IconCurrencyYuan,
899
+ r8 as IconCurrencyZloty,
900
+ c8 as IconDatabase,
901
+ l8 as IconDatabaseExport,
902
+ i8 as IconDecimal,
903
+ a8 as IconDeviceFloppy,
904
+ s8 as IconDoorEnter,
905
+ d8 as IconDotsVertical,
906
+ h8 as IconDownload,
907
+ C8 as IconEdit,
908
+ m8 as IconEditCircle,
909
+ p8 as IconEraser,
910
+ g8 as IconExclamationCircle,
911
+ u8 as IconExternalLink,
912
+ I8 as IconEye,
913
+ f8 as IconEyeOff,
914
+ L8 as IconEyeShare,
915
+ w8 as IconFile,
916
+ E8 as IconFileCheck,
917
+ y8 as IconFileExport,
918
+ k8 as IconFileImport,
919
+ v8 as IconFileInfo,
920
+ M8 as IconFilePencil,
921
+ x8 as IconFileText,
922
+ z8 as IconFileUpload,
923
+ S8 as IconFileZip,
924
+ F8 as IconFilter,
925
+ b8 as IconFilterCog,
926
+ B8 as IconFilterOff,
927
+ D8 as IconFilterPlus,
928
+ Z8 as IconFilterX,
929
+ T8 as IconFilters,
930
+ A8 as IconFlag,
931
+ P8 as IconFlask,
932
+ R8 as IconFocusCentered,
933
+ H8 as IconFolder,
934
+ _8 as IconFolderOpen,
935
+ O8 as IconFolderPlus,
936
+ W8 as IconFolderRoot,
937
+ V8 as IconForbid,
938
+ j8 as IconFrame,
939
+ q8 as IconFunction,
940
+ N8 as IconGauge,
941
+ G8 as IconGitBranchDeleted,
942
+ U8 as IconGitCommit,
943
+ X8 as IconGizmo,
944
+ L2 as IconGmail,
945
+ w2 as IconGoogle,
946
+ E2 as IconGoogleCalendar,
947
+ $8 as IconGripVertical,
948
+ K8 as IconH1,
949
+ Y8 as IconH2,
950
+ J8 as IconH3,
951
+ Q8 as IconHandClick,
952
+ e3 as IconHandMove,
953
+ t3 as IconHeadphones,
954
+ n3 as IconHeart,
955
+ o3 as IconHeartOff,
956
+ r3 as IconHeartRateMonitor,
957
+ c3 as IconHelpCircle,
958
+ l3 as IconHierarchy,
959
+ i3 as IconHierarchy2,
960
+ a3 as IconHistory,
961
+ s3 as IconHistoryToggle,
962
+ d3 as IconHome,
963
+ h3 as IconHourglassHigh,
964
+ C3 as IconHours24,
965
+ m3 as IconHttpGet,
966
+ p3 as IconHttpPost,
967
+ g3 as IconId,
968
+ u3 as IconInbox,
969
+ I3 as IconInfoCircle,
970
+ f3 as IconItalic,
971
+ L3 as IconJson,
972
+ w3 as IconKey,
973
+ E3 as IconLanguage,
974
+ y3 as IconLayersLinked,
975
+ k3 as IconLayout,
976
+ v3 as IconLayoutDashboard,
977
+ M3 as IconLayoutGrid,
978
+ x3 as IconLayoutKanban,
979
+ z3 as IconLayoutList,
980
+ S3 as IconLayoutNavbar,
981
+ F3 as IconLayoutSidebarLeftCollapse,
982
+ b3 as IconLayoutSidebarRight,
983
+ B3 as IconLayoutSidebarRightCollapse,
984
+ D3 as IconLayoutSidebarRightExpand,
985
+ Z3 as IconLetterK,
986
+ T3 as IconLibraryPlus,
987
+ A3 as IconLifebuoy,
988
+ P3 as IconLink,
989
+ R3 as IconLinkOff,
990
+ H3 as IconLinkPlus,
991
+ _3 as IconList,
992
+ O3 as IconListCheck,
993
+ W3 as IconListDetails,
994
+ V3 as IconListNumbers,
995
+ j3 as IconLoader,
996
+ q3 as IconLock,
997
+ y2 as IconLockCustom,
998
+ N3 as IconLockOpen,
999
+ G3 as IconLogin2,
1000
+ U3 as IconLogout,
1001
+ X3 as IconMail,
1002
+ $3 as IconMailCog,
1003
+ K3 as IconMailX,
1004
+ Y3 as IconMap,
1005
+ J3 as IconMathMax,
1006
+ Q3 as IconMathMin,
1007
+ e0 as IconMathXy,
1008
+ t0 as IconMaximize,
1009
+ n0 as IconMessage,
1010
+ o0 as IconMessageCirclePlus,
1011
+ k2 as IconMicrosoft,
1012
+ v2 as IconMicrosoftCalendar,
1013
+ M2 as IconMicrosoftOutlook,
1014
+ r0 as IconMinus,
1015
+ c0 as IconMoneybag,
1016
+ l0 as IconMoodSmile,
1017
+ i0 as IconMoon,
1018
+ a0 as IconMouse2,
1019
+ s0 as IconNorthStar,
1020
+ d0 as IconNoteOff,
1021
+ h0 as IconNotes,
1022
+ C0 as IconNumber,
1023
+ m0 as IconNumber123,
1024
+ p0 as IconNumber9,
1025
+ g0 as IconNumbers,
1026
+ u0 as IconPaperclip,
1027
+ I0 as IconPassword,
1028
+ f0 as IconPencil,
1029
+ L0 as IconPencilOff,
1030
+ w0 as IconPercentage,
1031
+ E0 as IconPhone,
1032
+ y0 as IconPhoto,
1033
+ k0 as IconPhotoUp,
1034
+ v0 as IconPilcrow,
1035
+ M0 as IconPinned,
1036
+ x0 as IconPinnedOff,
1037
+ z0 as IconPlayerPause,
1038
+ S0 as IconPlayerPlay,
1039
+ F0 as IconPlayerStop,
1040
+ b0 as IconPlaylistAdd,
1041
+ B0 as IconPlaystationSquare,
1042
+ D0 as IconPlug,
1043
+ Z0 as IconPlus,
1044
+ T0 as IconPoint,
1045
+ A0 as IconPower,
1046
+ P0 as IconPresentation,
1047
+ R0 as IconPrinter,
1048
+ H0 as IconProgressCheck,
1049
+ _0 as IconPuzzle,
1050
+ O0 as IconPuzzle2,
1051
+ W0 as IconQuestionMark,
1052
+ V0 as IconRadiusBottomLeft,
1053
+ j0 as IconRadiusBottomRight,
1054
+ q0 as IconRadiusTopLeft,
1055
+ N0 as IconRadiusTopRight,
1056
+ G0 as IconRefresh,
1057
+ U0 as IconRefreshAlert,
1058
+ X0 as IconRefreshDot,
1059
+ $0 as IconRelationManyToMany,
1060
+ x2 as IconRelationManyToOne,
1061
+ K0 as IconRelationOneToMany,
1062
+ Y0 as IconRelationOneToOne,
1063
+ J0 as IconReload,
1064
+ Q0 as IconReorder,
1065
+ e9 as IconRepeat,
1066
+ t9 as IconRestore,
1067
+ n9 as IconRobot,
1068
+ o9 as IconRocket,
1069
+ r9 as IconRotate,
1070
+ c9 as IconRotate2,
1071
+ l9 as IconSearch,
1072
+ i9 as IconSend,
1073
+ a9 as IconServer,
1074
+ s9 as IconServer2,
1075
+ d9 as IconSettings,
1076
+ h9 as IconSettings2,
1077
+ C9 as IconSettingsAutomation,
1078
+ m9 as IconShare,
1079
+ p9 as IconShield,
1080
+ g9 as IconSitemap,
1081
+ u9 as IconSlash,
1082
+ I9 as IconSortAZ,
1083
+ f9 as IconSortAscending,
1084
+ L9 as IconSortAscendingLetters,
1085
+ w9 as IconSortAscendingNumbers,
1086
+ E9 as IconSortDescending,
1087
+ y9 as IconSortDescendingLetters,
1088
+ k9 as IconSortDescendingNumbers,
1089
+ v9 as IconSortZA,
1090
+ M9 as IconSparkles,
1091
+ x9 as IconSpy,
1092
+ z9 as IconSql,
1093
+ S9 as IconSquare,
1094
+ F9 as IconSquareKey,
1095
+ b9 as IconSquareNumber1,
1096
+ B9 as IconSquareNumber2,
1097
+ D9 as IconSquareNumber3,
1098
+ Z9 as IconSquareNumber4,
1099
+ T9 as IconSquareNumber5,
1100
+ A9 as IconSquareNumber6,
1101
+ P9 as IconSquareNumber7,
1102
+ R9 as IconSquareNumber8,
1103
+ H9 as IconSquareNumber9,
1104
+ _9 as IconSquareRoundedCheck,
1105
+ O9 as IconSquareRoundedX,
1106
+ W9 as IconStack2,
1107
+ V9 as IconStatusChange,
1108
+ j9 as IconStepInto,
1109
+ q9 as IconStrikethrough,
1110
+ N9 as IconSum,
1111
+ G9 as IconSun,
1112
+ U9 as IconSunMoon,
1113
+ X9 as IconSwitchHorizontal,
1114
+ $9 as IconTable,
1115
+ K9 as IconTag,
1116
+ Y9 as IconTags,
1117
+ J9 as IconTarget,
1118
+ Q9 as IconTargetArrow,
1119
+ et as IconTerminal,
1120
+ tt as IconTestPipe,
1121
+ nt as IconTextCaption,
1122
+ ot as IconTextSize,
1123
+ rt as IconTextWrap,
1124
+ ct as IconTimeDuration30,
1125
+ lt as IconTimeDuration60,
1126
+ it as IconTimelineEvent,
1127
+ at as IconTool,
1128
+ st as IconTransform,
1129
+ dt as IconTrash,
1130
+ ht as IconTrashOff,
1131
+ Ct as IconTrashX,
1132
+ z2 as IconTrashXOff,
1133
+ mt as IconTrendingDown,
1134
+ pt as IconTrendingUp,
1135
+ S2 as IconTwentyStar,
1136
+ F2 as IconTwentyStarFilled,
1137
+ gt as IconTypography,
1138
+ ut as IconUnderline,
1139
+ It as IconUnlink,
1140
+ ft as IconUpload,
1141
+ Lt as IconUser,
1142
+ wt as IconUserCircle,
1143
+ Et as IconUserCog,
1144
+ yt as IconUserPin,
1145
+ kt as IconUserPlus,
1146
+ vt as IconUsers,
1147
+ Mt as IconVariable,
1148
+ xt as IconVariablePlus,
1149
+ zt as IconVersions,
1150
+ St as IconVersionsOff,
1151
+ Ft as IconVideo,
1152
+ bt as IconWand,
1153
+ Bt as IconWebhook,
1154
+ Dt as IconWorld,
1155
+ Zt as IconX,
1156
+ Q2 as IconsProvider,
1157
+ b2 as IllustrationIconArray,
1158
+ B2 as IllustrationIconCalendarEvent,
1159
+ D2 as IllustrationIconCalendarTime,
1160
+ Z2 as IllustrationIconCurrency,
1161
+ T2 as IllustrationIconFile,
1162
+ A2 as IllustrationIconJson,
1163
+ P2 as IllustrationIconLink,
1164
+ R2 as IllustrationIconMail,
1165
+ H2 as IllustrationIconManyToMany,
1166
+ _2 as IllustrationIconMap,
1167
+ O2 as IllustrationIconNumbers,
1168
+ W2 as IllustrationIconOneToMany,
1169
+ V2 as IllustrationIconOneToOne,
1170
+ j2 as IllustrationIconPhone,
1171
+ q2 as IllustrationIconSetting,
1172
+ N2 as IllustrationIconStar,
1173
+ G2 as IllustrationIconTag,
1174
+ U2 as IllustrationIconTags,
1175
+ X2 as IllustrationIconText,
1176
+ $2 as IllustrationIconToggle,
1177
+ K2 as IllustrationIconUid,
1178
+ Y2 as IllustrationIconUser,
1179
+ a as IllustrationIconWrapper,
1180
+ ee as Info,
1181
+ U1 as Label,
1182
+ u as OverflowingTextWithTooltip,
1183
+ oe as SeparatorLineText,
1184
+ p2 as SidePanelInformationBanner,
1185
+ te as Status,
1186
+ ae as StyledText,
1187
+ X1 as StyledTextContent,
1188
+ $1 as StyledTextWrapper,
1189
+ ge as TooltipDelay,
1190
+ ue as TooltipPosition,
1191
+ f as iconsState,
1192
+ me as invalidAvatarUrlsState,
1193
+ J2 as useIcons
1194
+ };