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.
- package/README.md +139 -44
- package/dist/HtmlTagToRemoteComponent-Bd5sgek2.js +1 -0
- package/dist/HtmlTagToRemoteComponent-DlsAI7JU.mjs +146 -0
- package/dist/RatingValues-CT-y6O0b-CsGZSJKO.mjs +402 -0
- package/dist/RatingValues-CT-y6O0b-D7JSZAMu.js +1 -0
- package/dist/cli/commands/app/app-dev.d.ts +25 -0
- package/dist/cli/commands/{app-generate.command.d.ts → app/app-generate.d.ts} +1 -1
- package/dist/cli/commands/{app-uninstall.command.d.ts → app/app-uninstall.d.ts} +1 -1
- package/dist/cli/commands/app-command.d.ts +2 -0
- package/dist/cli/commands/auth/auth-list.d.ts +4 -0
- package/dist/cli/commands/auth/auth-login.d.ts +8 -0
- package/dist/cli/commands/auth/auth-logout.d.ts +4 -0
- package/dist/cli/commands/auth/auth-status.d.ts +5 -0
- package/dist/cli/commands/auth/auth-switch.d.ts +7 -0
- package/dist/cli/commands/entity/entity-add.d.ts +12 -0
- package/dist/cli/commands/logic-function/logic-function-execute.d.ts +10 -0
- package/dist/cli/commands/{app-logs.command.d.ts → logic-function/logic-function-logs.d.ts} +1 -1
- package/dist/cli/utilities/api/api-service.d.ts +51 -0
- package/dist/cli/utilities/build/common/cleanup-removed-files.d.ts +1 -0
- package/dist/cli/utilities/build/common/esbuild-result-processor.d.ts +11 -0
- package/dist/cli/utilities/build/common/esbuild-watcher.d.ts +37 -0
- package/dist/cli/utilities/build/common/file-upload-watcher.d.ts +24 -0
- package/dist/cli/utilities/build/common/front-component-build/jsx-transform-to-remote-dom-worker-format-plugin.d.ts +3 -0
- package/dist/cli/utilities/build/common/front-component-build/react-globals-plugin.d.ts +2 -0
- package/dist/cli/utilities/build/common/front-component-build/types/ParsedImportSpecifier.d.ts +4 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/extract-names-from-import-specifier.d.ts +2 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/replace-html-tags-with-remote-components.d.ts +1 -0
- package/dist/cli/utilities/build/common/front-component-build/utils/unwrap-define-front-component-to-direct-export.d.ts +1 -0
- package/dist/cli/utilities/build/common/restartable-watcher-interface.d.ts +25 -0
- package/dist/cli/utilities/build/manifest/manifest-build.d.ts +7 -0
- package/dist/cli/utilities/build/manifest/manifest-extract-config-from-file.d.ts +5 -0
- package/dist/cli/utilities/build/manifest/manifest-extract-config.d.ts +20 -0
- package/dist/cli/utilities/build/manifest/manifest-types.d.ts +4 -0
- package/dist/cli/utilities/build/manifest/manifest-update-checksums.d.ts +17 -0
- package/dist/cli/utilities/build/manifest/manifest-validate.d.ts +6 -0
- package/dist/cli/utilities/build/manifest/manifest-watcher.d.ts +12 -0
- package/dist/cli/utilities/build/manifest/manifest-writer.d.ts +2 -0
- package/dist/cli/{services/generate.service.d.ts → utilities/client/client-service.d.ts} +2 -2
- package/dist/cli/{services/config.service.d.ts → utilities/config/config-service.d.ts} +4 -0
- package/dist/cli/utilities/dev/dev-mode-orchestrator.d.ts +42 -0
- package/dist/cli/utilities/dev/dev-ui-state-manager.d.ts +31 -0
- package/dist/cli/utilities/dev/dev-ui-state.d.ts +27 -0
- package/dist/cli/utilities/dev/dev-ui.d.ts +4 -0
- package/dist/cli/utilities/entity/entity-field-template.d.ts +11 -0
- package/dist/cli/utilities/entity/entity-front-component-template.d.ts +4 -0
- package/dist/cli/utilities/entity/entity-logic-function-template.d.ts +4 -0
- package/dist/cli/{utils/get-new-object-file-content.d.ts → utilities/entity/entity-object-template.d.ts} +1 -1
- package/dist/cli/{utils/jsonc-parser.d.ts → utilities/file/file-jsonc.d.ts} +1 -5
- package/dist/cli/utilities/file/file-tarball.d.ts +16 -0
- package/dist/cli/utilities/file/file-uploader.d.ts +14 -0
- package/dist/cli/{utils/get-ts-program-and-diagnostics.d.ts → utilities/typescript/typescript-program.d.ts} +1 -1
- package/dist/cli.cjs +280 -179
- package/dist/cli.mjs +11094 -9469
- package/dist/front-component/host/components/FrontComponentRenderer.d.ts +8 -0
- package/dist/front-component/host/generated/host-component-registry.d.ts +4 -0
- package/dist/front-component/host/generated/host-index.d.ts +1 -0
- package/dist/front-component/index.d.ts +10 -0
- package/dist/front-component/remote/components/FrontComponentWorkerEffect.d.ts +8 -0
- package/dist/front-component/remote/generated/remote-components.d.ts +44 -0
- package/dist/front-component/remote/generated/remote-elements.d.ts +195 -0
- package/dist/front-component/remote/generated/remote-index.d.ts +2 -0
- package/dist/front-component/remote/mock/mock-front-component.d.ts +3 -0
- package/dist/front-component/remote/worker/createRemoteWorker.d.ts +1 -0
- package/dist/front-component/remote/worker/remote-worker.d.ts +0 -0
- package/dist/front-component/types/HostToWorkerRenderContext.d.ts +3 -0
- package/dist/front-component/types/PropertySchema.d.ts +4 -0
- package/dist/front-component/types/WorkerExports.d.ts +5 -0
- package/dist/front-component-constants/AllowedHtmlElements.d.ts +11 -0
- package/dist/front-component-constants/AllowedUiComponents.d.ts +9 -0
- package/dist/front-component-constants/CommonHtmlEvents.d.ts +1 -0
- package/dist/front-component-constants/EventToReact.d.ts +1 -0
- package/dist/front-component-constants/HtmlCommonProperties.d.ts +2 -0
- package/dist/front-component-constants/HtmlTagToRemoteComponent.d.ts +1 -0
- package/dist/front-component-constants/index.d.ts +8 -0
- package/dist/front-component-constants.cjs +1 -0
- package/dist/front-component-constants.mjs +77 -0
- package/dist/front-component.cjs +155 -0
- package/dist/front-component.mjs +23453 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +2197 -242
- package/dist/jsx-runtime-C9ldtZbm.mjs +10472 -0
- package/dist/jsx-runtime-CfccAQK_.js +54 -0
- package/dist/sdk/application/application-config.d.ts +2 -0
- package/dist/sdk/application/define-application.d.ts +3 -0
- package/dist/sdk/common/types/define-entity.type.d.ts +11 -0
- package/dist/sdk/common/utils/create-validation-result.d.ts +5 -0
- package/dist/{application → sdk}/fields/composite-fields.d.ts +1 -1
- package/dist/sdk/fields/define-field.d.ts +3 -0
- package/dist/sdk/fields/validate-fields.d.ts +2 -0
- package/dist/sdk/front-components/define-front-component.d.ts +3 -0
- package/dist/sdk/front-components/front-component-config.d.ts +5 -0
- package/dist/sdk/index.d.ts +22 -0
- package/dist/sdk/logic-functions/define-logic-function.d.ts +3 -0
- package/dist/sdk/logic-functions/logic-function-config.d.ts +6 -0
- package/dist/sdk/logic-functions/triggers/route-payload-type.d.ts +1 -0
- package/dist/sdk/objects/define-object.d.ts +3 -0
- package/dist/sdk/objects/standard-object-ids.d.ts +1 -0
- package/dist/sdk/roles/define-role.d.ts +3 -0
- package/dist/sdk/roles/permission-flag-type.d.ts +1 -0
- package/dist/types-BSOjxfFi.mjs +7 -0
- package/dist/types-DqLnNRPE.js +1 -0
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BZ0Penru.js +1 -0
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-DmLx4uDl.mjs +263 -0
- package/dist/vendor/twenty-shared/RatingValues-Bd_cXQ5v.js +1 -0
- package/dist/vendor/twenty-shared/RatingValues-CT-y6O0b.mjs +388 -0
- package/dist/vendor/twenty-shared/application/applicationType.d.ts +17 -4
- package/dist/vendor/twenty-shared/application/applicationType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/assetManifestType.d.ts +7 -0
- package/dist/vendor/twenty-shared/application/assetManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/AssetDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/GeneratedDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts +2 -0
- package/dist/vendor/twenty-shared/application/constants/OutputDirectory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts +8 -0
- package/dist/vendor/twenty-shared/application/enums/syncable-entities.enum.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts +12 -1
- package/dist/vendor/twenty-shared/application/fieldManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts +10 -0
- package/dist/vendor/twenty-shared/application/frontComponentManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/index.d.ts +11 -5
- package/dist/vendor/twenty-shared/application/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/{serverlessFunctionManifestType.d.ts → logicFunctionManifestType.d.ts} +9 -5
- package/dist/vendor/twenty-shared/application/logicFunctionManifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/manifestType.d.ts +20 -0
- package/dist/vendor/twenty-shared/application/manifestType.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts +5 -0
- package/dist/vendor/twenty-shared/application/objectFieldManifest.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/application/objectManifestType.d.ts +2 -2
- package/dist/vendor/twenty-shared/application/objectManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application/roleManifestType.d.ts +3 -18
- package/dist/vendor/twenty-shared/application/roleManifestType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/application.cjs +1 -1
- package/dist/vendor/twenty-shared/application.mjs +8 -3
- package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationBaseUrl.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultLanguage.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/DocumentationDefaultPath.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts +165 -0
- package/dist/vendor/twenty-shared/constants/DocumentationPaths.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts +3 -0
- package/dist/vendor/twenty-shared/constants/DocumentationSupportedLanguages.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts +2 -0
- package/dist/vendor/twenty-shared/constants/FilesFieldMaxNumberOfValues.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts +1 -0
- package/dist/vendor/twenty-shared/constants/PermissionFlagType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/constants/index.d.ts +8 -0
- package/dist/vendor/twenty-shared/constants/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/constants.cjs +1 -1
- package/dist/vendor/twenty-shared/constants.mjs +56 -35
- package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts +1 -1
- package/dist/vendor/twenty-shared/database-events/database-event-payload.type.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts +4 -0
- package/dist/vendor/twenty-shared/database-events/object-record-delete.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts +4 -0
- package/dist/vendor/twenty-shared/database-events/object-record-restore.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts +3 -3
- package/dist/vendor/twenty-shared/database-events/object-record-update.event.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/isValidCountryCode-D-UqlXRW.js +4 -0
- package/dist/vendor/twenty-shared/{isValidCountryCode-E35rsxfD.mjs → isValidCountryCode-Dyji5s5r.mjs} +2351 -2320
- package/dist/vendor/twenty-shared/metadata/MetadataValidationError.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts +5 -4
- package/dist/vendor/twenty-shared/metadata/all-metadata-name.constant.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/index.d.ts +1 -1
- package/dist/vendor/twenty-shared/metadata/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts +2206 -0
- package/dist/vendor/twenty-shared/metadata/standard-object.constant.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/metadata.cjs +1 -1
- package/dist/vendor/twenty-shared/metadata.mjs +2039 -69
- package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts +1 -0
- package/dist/vendor/twenty-shared/translations/constants/AppLocales.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/translations/index.d.ts +1 -0
- package/dist/vendor/twenty-shared/translations/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/translations.cjs +1 -1
- package/dist/vendor/twenty-shared/translations.mjs +2 -2
- package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/ExtractSerializedRelationProperties.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts +44 -88
- package/dist/vendor/twenty-shared/types/FieldMetadataDefaultValue.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts +2 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataOptions.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts +15 -9
- package/dist/vendor/twenty-shared/types/FieldMetadataSettings.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts +18 -17
- package/dist/vendor/twenty-shared/types/FieldMetadataType.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/FileCategory.d.ts +12 -0
- package/dist/vendor/twenty-shared/types/FileCategory.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/FileFolder.d.ts +15 -0
- package/dist/vendor/twenty-shared/types/FileFolder.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/IsEmptyObject.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts +1 -1
- package/dist/vendor/twenty-shared/types/IsEmptyRecord.type.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/IsNever.type.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/IsNever.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts +4 -0
- package/dist/vendor/twenty-shared/types/IsSerializedRelation.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts +28 -0
- package/dist/vendor/twenty-shared/types/LogicFunctionEvent.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts +4 -0
- package/dist/vendor/twenty-shared/types/ObjectPermissions.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts +15 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicate.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts +11 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts +5 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateGroupLogicalOperator.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts +19 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateOperand.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/RowLevelPermissionPredicateValue.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts +5 -0
- package/dist/vendor/twenty-shared/types/SerializedRelation.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/SettingsPath.d.ts +5 -4
- package/dist/vendor/twenty-shared/types/SettingsPath.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/__tests__/extract-serialized-relation-properties.type-test.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/index.d.ts +22 -4
- package/dist/vendor/twenty-shared/types/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts +6 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutTabLayoutMode.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts +2 -0
- package/dist/vendor/twenty-shared/types/page-layout/PageLayoutWidgetConditionalDisplay.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts +18 -0
- package/dist/vendor/twenty-shared/types/page-layout/page-layout-widget-position.type.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/types.cjs +1 -1
- package/dist/vendor/twenty-shared/types.mjs +85 -76
- package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/array/compareArraysOfObjectsByProperty.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts +6 -0
- package/dist/vendor/twenty-shared/utils/files/extractFolderPathFilenameAndTypeOrThrow.util.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/index.d.ts +13 -0
- package/dist/vendor/twenty-shared/utils/filter/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingArrayFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingBooleanFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts +10 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingCurrencyFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingDateFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingFloatFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingMultiSelectFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRatingFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRawJsonFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingRichTextV2Filter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingSelectFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingStringFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingTSVectorFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts +7 -0
- package/dist/vendor/twenty-shared/utils/filter/utils/isMatchingUUIDFilter.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/format/formatToShortNumber.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/index.d.ts +19 -0
- package/dist/vendor/twenty-shared/utils/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/strings/index.d.ts +1 -0
- package/dist/vendor/twenty-shared/utils/strings/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/strings/pascalCase.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/strings/stringifySafely.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts +2 -0
- package/dist/vendor/twenty-shared/utils/typeguard/isPlainObject.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts +2 -2
- package/dist/vendor/twenty-shared/utils/validation/isValidLocale.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts +2 -5
- package/dist/vendor/twenty-shared/utils/validation/normalizeLocale.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/utils.cjs +2 -2
- package/dist/vendor/twenty-shared/utils.mjs +994 -522
- package/dist/vendor/twenty-shared/workflow/index.d.ts +4 -0
- package/dist/vendor/twenty-shared/workflow/index.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts +2 -3
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts +2 -3
- package/dist/vendor/twenty-shared/workflow/schemas/code-action-settings-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts +29 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-schema.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts +18 -0
- package/dist/vendor/twenty-shared/workflow/schemas/logic-function-action-settings-schema.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts +5 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts +5 -1
- package/dist/vendor/twenty-shared/workflow/schemas/send-email-action-settings-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-action-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts +32 -4
- package/dist/vendor/twenty-shared/workflow/schemas/workflow-run-state-schema.d.ts.map +1 -1
- package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts +6 -0
- package/dist/vendor/twenty-shared/workflow/types/EmailRecipients.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts +12 -0
- package/dist/vendor/twenty-shared/workflow/utils/variable-path.util.d.ts.map +1 -0
- package/dist/vendor/twenty-shared/workflow.cjs +3 -3
- package/dist/vendor/twenty-shared/workflow.mjs +205 -166
- package/dist/vendor/twenty-ui/AllIcons-CGPKtPQS.js +4188 -0
- package/dist/vendor/twenty-ui/AllIcons-CcTQbSjc.cjs +1 -0
- package/dist/vendor/twenty-ui/Animation-Dqlz22Qp.cjs +1 -0
- package/dist/vendor/twenty-ui/Animation-W4Sjfu-g.js +11 -0
- package/dist/vendor/twenty-ui/Avatar-Cg4dvBA_.js +130 -0
- package/dist/vendor/twenty-ui/Avatar-zyamQwOj.cjs +1 -0
- package/dist/vendor/twenty-ui/Button-BChGSHVB.js +257 -0
- package/dist/vendor/twenty-ui/Button-PLd38fEI.cjs +24 -0
- package/dist/vendor/twenty-ui/ColorSample-BEUix7Ah.cjs +16 -0
- package/dist/vendor/twenty-ui/ColorSample-Bp-he5lO.js +28 -0
- package/dist/vendor/twenty-ui/HoverBackground-D630rSrX.cjs +1 -0
- package/dist/vendor/twenty-ui/HoverBackground-bYDC0iDZ.js +5 -0
- package/dist/vendor/twenty-ui/Loader-9V3BLpiM.cjs +2 -0
- package/dist/vendor/twenty-ui/Loader-BmJ693nz.js +43 -0
- package/dist/vendor/twenty-ui/MainColorNames-DNUaoKmR.cjs +1 -0
- package/dist/vendor/twenty-ui/MainColorNames-O_b9E7H3.js +5 -0
- package/dist/vendor/twenty-ui/MainColorsLight-GOpmobTe.cjs +1 -0
- package/dist/vendor/twenty-ui/MainColorsLight-x_vjLhiq.js +1682 -0
- package/dist/vendor/twenty-ui/MobileViewport-BcwxurOJ.cjs +1 -0
- package/dist/vendor/twenty-ui/MobileViewport-CDXq37n6.js +4 -0
- package/dist/vendor/twenty-ui/OverflowingTextWithTooltip-1P96Lw-o.cjs +1 -0
- package/dist/vendor/twenty-ui/OverflowingTextWithTooltip-F-KEqUMB.js +132 -0
- package/dist/vendor/twenty-ui/Pill-C3ErQi9y.js +16 -0
- package/dist/vendor/twenty-ui/Pill-D732nsLI.cjs +1 -0
- package/dist/vendor/twenty-ui/Tag-CfX8tARK.js +99 -0
- package/dist/vendor/twenty-ui/Tag-DIE1bmT7.cjs +1 -0
- package/dist/vendor/twenty-ui/ThemeCommon-BiQXECTo.cjs +1 -0
- package/dist/vendor/twenty-ui/ThemeCommon-CUpBXrDJ.js +867 -0
- package/dist/vendor/twenty-ui/ThemeContextProvider-DRVSWXAb.js +26 -0
- package/dist/vendor/twenty-ui/ThemeContextProvider-DZWArlAl.cjs +1 -0
- package/dist/vendor/twenty-ui/Toggle-8vjP6D_0.cjs +4 -0
- package/dist/vendor/twenty-ui/Toggle-Bd3-khQW.js +169 -0
- package/dist/vendor/twenty-ui/VisibilityHidden-Bkyg_zrv.cjs +1 -0
- package/dist/vendor/twenty-ui/VisibilityHidden-D9rwE91j.js +11 -0
- package/dist/vendor/twenty-ui/VisibilityHiddenInput-B3xu3qIM.cjs +1 -0
- package/dist/vendor/twenty-ui/VisibilityHiddenInput-CpO8FZey.js +8 -0
- package/dist/vendor/twenty-ui/accessibility/components/VisibilityHidden.d.ts +4 -0
- package/dist/vendor/twenty-ui/accessibility/components/VisibilityHidden.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/accessibility/components/VisibilityHiddenInput.d.ts +5 -0
- package/dist/vendor/twenty-ui/accessibility/components/VisibilityHiddenInput.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/accessibility/index.d.ts +4 -0
- package/dist/vendor/twenty-ui/accessibility/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/accessibility/utils/visibility-hidden.d.ts +2 -0
- package/dist/vendor/twenty-ui/accessibility/utils/visibility-hidden.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/accessibility.cjs +1 -0
- package/dist/vendor/twenty-ui/accessibility.mjs +8 -0
- package/dist/vendor/twenty-ui/assets/index.d.ts +1 -0
- package/dist/vendor/twenty-ui/assets/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/assets.cjs +1 -0
- package/dist/vendor/twenty-ui/assets.mjs +1 -0
- package/dist/vendor/twenty-ui/components/Pill/Pill.d.ts +10 -0
- package/dist/vendor/twenty-ui/components/Pill/Pill.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/avatar-chip/AvatarChip.d.ts +18 -0
- package/dist/vendor/twenty-ui/components/avatar-chip/AvatarChip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/avatar-chip/MultipleAvatarChip.d.ts +15 -0
- package/dist/vendor/twenty-ui/components/avatar-chip/MultipleAvatarChip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/chip/Chip.d.ts +34 -0
- package/dist/vendor/twenty-ui/components/chip/Chip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/chip/LinkChip.d.ts +13 -0
- package/dist/vendor/twenty-ui/components/chip/LinkChip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/chip/constants/LinkChipClickOutsideId.d.ts +2 -0
- package/dist/vendor/twenty-ui/components/chip/constants/LinkChipClickOutsideId.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/index.d.ts +13 -0
- package/dist/vendor/twenty-ui/components/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components/tag/Tag.d.ts +20 -0
- package/dist/vendor/twenty-ui/components/tag/Tag.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/components.cjs +1 -0
- package/dist/vendor/twenty-ui/components.mjs +235 -0
- package/dist/vendor/twenty-ui/config-D3RPmuwk.cjs +1 -0
- package/dist/vendor/twenty-ui/config-D9UgCg2c.js +18 -0
- package/dist/vendor/twenty-ui/createState---bO_WLW.cjs +1 -0
- package/dist/vendor/twenty-ui/createState-DvtGszbK.js +9 -0
- package/dist/vendor/twenty-ui/display/avatar/components/Avatar.d.ts +20 -0
- package/dist/vendor/twenty-ui/display/avatar/components/Avatar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/components/AvatarGroup.d.ts +7 -0
- package/dist/vendor/twenty-ui/display/avatar/components/AvatarGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/components/states/isInvalidAvatarUrlState.d.ts +2 -0
- package/dist/vendor/twenty-ui/display/avatar/components/states/isInvalidAvatarUrlState.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/constants/AvatarPropertiesBySize.d.ts +23 -0
- package/dist/vendor/twenty-ui/display/avatar/constants/AvatarPropertiesBySize.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/types/AvatarSize.d.ts +2 -0
- package/dist/vendor/twenty-ui/display/avatar/types/AvatarSize.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/avatar/types/AvatarType.d.ts +2 -0
- package/dist/vendor/twenty-ui/display/avatar/types/AvatarType.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/banner/components/Banner.d.ts +9 -0
- package/dist/vendor/twenty-ui/display/banner/components/Banner.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/banner/components/SidePanelInformationBanner.d.ts +8 -0
- package/dist/vendor/twenty-ui/display/banner/components/SidePanelInformationBanner.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/checkmark/components/AnimatedCheckmark.d.ts +10 -0
- package/dist/vendor/twenty-ui/display/checkmark/components/AnimatedCheckmark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/checkmark/components/Checkmark.d.ts +7 -0
- package/dist/vendor/twenty-ui/display/checkmark/components/Checkmark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/color/components/ColorSample.d.ts +14 -0
- package/dist/vendor/twenty-ui/display/color/components/ColorSample.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/command-block/components/CommandBlock.d.ts +9 -0
- package/dist/vendor/twenty-ui/display/command-block/components/CommandBlock.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconAddressBook.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconAddressBook.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconChartBarHorizontal.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconChartBarHorizontal.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGmail.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGmail.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGoogle.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGoogle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGoogleCalendar.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconGoogleCalendar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconLock.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconLock.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoft.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoft.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftCalendar.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftCalendar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftOutlook.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconMicrosoftOutlook.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconRelationManyToOne.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconRelationManyToOne.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTrashXOff.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTrashXOff.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStar.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStarFilled.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IconTwentyStarFilled.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconArray.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconArray.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarEvent.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarEvent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarTime.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCalendarTime.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCurrency.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconCurrency.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconFile.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconFile.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconJson.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconJson.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconLink.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMail.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMail.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconManyToMany.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconManyToMany.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMap.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconMap.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconNumbers.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconNumbers.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToMany.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToMany.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToOne.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconOneToOne.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconPhone.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconPhone.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconSetting.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconSetting.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconStar.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconStar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTag.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTag.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTags.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconTags.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconText.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconText.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconToggle.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconToggle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUid.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUid.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUser.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconUser.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconWrapper.d.ts +5 -0
- package/dist/vendor/twenty-ui/display/icon/components/IllustrationIconWrapper.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/components/TablerIcons.d.ts +3 -0
- package/dist/vendor/twenty-ui/display/icon/components/TablerIcons.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/hooks/useIcons.d.ts +5 -0
- package/dist/vendor/twenty-ui/display/icon/hooks/useIcons.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/providers/IconsProvider.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/icon/providers/IconsProvider.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/providers/internal/AllIcons.d.ts +4185 -0
- package/dist/vendor/twenty-ui/display/icon/providers/internal/AllIcons.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/states/iconsState.d.ts +4 -0
- package/dist/vendor/twenty-ui/display/icon/states/iconsState.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/icon/types/IconComponent.d.ts +11 -0
- package/dist/vendor/twenty-ui/display/icon/types/IconComponent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/index.d.ts +76 -0
- package/dist/vendor/twenty-ui/display/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/info/components/Info.d.ts +12 -0
- package/dist/vendor/twenty-ui/display/info/components/Info.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/status/components/Status.d.ts +13 -0
- package/dist/vendor/twenty-ui/display/status/components/Status.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/text/components/HorizontalSeparator.d.ts +11 -0
- package/dist/vendor/twenty-ui/display/text/components/HorizontalSeparator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/text/components/SeparatorLineText.d.ts +6 -0
- package/dist/vendor/twenty-ui/display/text/components/SeparatorLineText.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/tooltip/AppTooltip.d.ts +31 -0
- package/dist/vendor/twenty-ui/display/tooltip/AppTooltip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/tooltip/OverflowingTextWithTooltip.d.ts +16 -0
- package/dist/vendor/twenty-ui/display/tooltip/OverflowingTextWithTooltip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/H1Title.d.ts +15 -0
- package/dist/vendor/twenty-ui/display/typography/components/H1Title.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/H2Title.d.ts +9 -0
- package/dist/vendor/twenty-ui/display/typography/components/H2Title.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/H3Title.d.ts +10 -0
- package/dist/vendor/twenty-ui/display/typography/components/H3Title.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/Label.d.ts +9 -0
- package/dist/vendor/twenty-ui/display/typography/components/Label.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display/typography/components/StyledText.d.ts +20 -0
- package/dist/vendor/twenty-ui/display/typography/components/StyledText.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/display.cjs +8 -0
- package/dist/vendor/twenty-ui/display.mjs +1194 -0
- package/dist/vendor/twenty-ui/emotion-react-jsx-runtime.browser.esm-BUNawPtg.js +1765 -0
- package/dist/vendor/twenty-ui/emotion-react-jsx-runtime.browser.esm-pt_kQSCG.cjs +44 -0
- package/dist/vendor/twenty-ui/feedback/index.d.ts +6 -0
- package/dist/vendor/twenty-ui/feedback/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback/loader/components/Loader.d.ts +8 -0
- package/dist/vendor/twenty-ui/feedback/loader/components/Loader.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/components/CircularProgressBar.d.ts +8 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/components/CircularProgressBar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/components/ProgressBar.d.ts +14 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/components/ProgressBar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/hooks/useProgressAnimation.d.ts +13 -0
- package/dist/vendor/twenty-ui/feedback/progress-bar/hooks/useProgressAnimation.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/feedback.cjs +1 -0
- package/dist/vendor/twenty-ui/feedback.mjs +124 -0
- package/dist/vendor/twenty-ui/getDisplayValueByUrlType-BMzTxZmB.cjs +1 -0
- package/dist/vendor/twenty-ui/getDisplayValueByUrlType-BqPVhhu2.js +20 -0
- package/dist/vendor/twenty-ui/index.cjs +1 -0
- package/dist/vendor/twenty-ui/index.d.ts +3 -0
- package/dist/vendor/twenty-ui/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/index.mjs +4 -0
- package/dist/vendor/twenty-ui/input/button/components/AnimatedButton.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/AnimatedButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/AnimatedLightIconButton.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/AnimatedLightIconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/Button.d.ts +32 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/Button.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/constant.d.ts +2 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/constant.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonHotKeys.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonHotKeys.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonIcon.d.ts +7 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonIcon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonSoon.d.ts +6 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonSoon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonText.d.ts +6 -0
- package/dist/vendor/twenty-ui/input/button/components/Button/internal/ButtonText.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/ButtonGroup.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/ButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/ColorPickerButton.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/ColorPickerButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingButton.d.ts +18 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingButtonGroup.d.ts +9 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingIconButton.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingIconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingIconButtonGroup.d.ts +13 -0
- package/dist/vendor/twenty-ui/input/button/components/FloatingIconButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/IconButton.d.ts +23 -0
- package/dist/vendor/twenty-ui/input/button/components/IconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/IconButtonGroup.d.ts +13 -0
- package/dist/vendor/twenty-ui/input/button/components/IconButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/InsideButton.d.ts +11 -0
- package/dist/vendor/twenty-ui/input/button/components/InsideButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/LightButton.d.ts +17 -0
- package/dist/vendor/twenty-ui/input/button/components/LightButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/LightIconButton.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/LightIconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/LightIconButtonGroup.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/LightIconButtonGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/MainButton.d.ts +19 -0
- package/dist/vendor/twenty-ui/input/button/components/MainButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/RoundedIconButton.d.ts +8 -0
- package/dist/vendor/twenty-ui/input/button/components/RoundedIconButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/TabButton.d.ts +21 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/TabButton.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/StyledTabBase.d.ts +22 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/StyledTabBase.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/TabContent.d.ts +17 -0
- package/dist/vendor/twenty-ui/input/button/components/TabButton/internals/components/TabContent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditor.d.ts +14 -0
- package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditor.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditorHeader.d.ts +7 -0
- package/dist/vendor/twenty-ui/input/code-editor/components/CodeEditorHeader.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/constants/BaseCodeEditorThemeId.d.ts +2 -0
- package/dist/vendor/twenty-ui/input/code-editor/constants/BaseCodeEditorThemeId.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/index.d.ts +4 -0
- package/dist/vendor/twenty-ui/input/code-editor/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/code-editor/theme/utils/getBaseCodeEditorTheme.d.ts +7 -0
- package/dist/vendor/twenty-ui/input/code-editor/theme/utils/getBaseCodeEditorTheme.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemeCard.d.ts +15 -0
- package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemeCard.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemePicker.d.ts +12 -0
- package/dist/vendor/twenty-ui/input/color-scheme/components/ColorSchemePicker.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/CardPicker.d.ts +10 -0
- package/dist/vendor/twenty-ui/input/components/CardPicker.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/Checkbox.d.ts +34 -0
- package/dist/vendor/twenty-ui/input/components/Checkbox.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/IconListViewGrip.d.ts +6 -0
- package/dist/vendor/twenty-ui/input/components/IconListViewGrip.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/Radio.d.ts +33 -0
- package/dist/vendor/twenty-ui/input/components/Radio.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/RadioGroup.d.ts +10 -0
- package/dist/vendor/twenty-ui/input/components/RadioGroup.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/SearchInput.d.ts +13 -0
- package/dist/vendor/twenty-ui/input/components/SearchInput.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/components/Toggle.d.ts +12 -0
- package/dist/vendor/twenty-ui/input/components/Toggle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/index.d.ts +59 -0
- package/dist/vendor/twenty-ui/input/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/types/ColorScheme.d.ts +2 -0
- package/dist/vendor/twenty-ui/input/types/ColorScheme.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input/types/SelectOption.d.ts +12 -0
- package/dist/vendor/twenty-ui/input/types/SelectOption.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/input.cjs +179 -0
- package/dist/vendor/twenty-ui/input.mjs +1247 -0
- package/dist/vendor/twenty-ui/isValidCountryCode-Dyji5s5r-B7O5eJvP.js +10526 -0
- package/dist/vendor/twenty-ui/isValidCountryCode-Dyji5s5r-MH68p3NE.cjs +25 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonArrayNode.d.ts +11 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonArrayNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonNestedNode.d.ts +19 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonNestedNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonNode.d.ts +9 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonObjectNode.d.ts +11 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonObjectNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonTree.d.ts +16 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonTree.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonTreeContextProvider.d.ts +7 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonTreeContextProvider.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonValueNode.d.ts +16 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/JsonValueNode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonArrow.d.ts +6 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonArrow.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonList.d.ts +8 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonList.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonListItem.d.ts +6 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonListItem.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeLabel.d.ts +9 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeLabel.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeValue.d.ts +7 -0
- package/dist/vendor/twenty-ui/json-visualizer/components/internal/JsonNodeValue.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/contexts/JsonTreeContext.d.ts +18 -0
- package/dist/vendor/twenty-ui/json-visualizer/contexts/JsonTreeContext.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/hooks/useJsonTreeContextOrThrow.d.ts +2 -0
- package/dist/vendor/twenty-ui/json-visualizer/hooks/useJsonTreeContextOrThrow.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/index.d.ts +15 -0
- package/dist/vendor/twenty-ui/json-visualizer/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/types/GetJsonNodeHighlighting.d.ts +4 -0
- package/dist/vendor/twenty-ui/json-visualizer/types/GetJsonNodeHighlighting.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/types/JsonNodeHighlighting.d.ts +4 -0
- package/dist/vendor/twenty-ui/json-visualizer/types/JsonNodeHighlighting.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/utils/isArray.d.ts +2 -0
- package/dist/vendor/twenty-ui/json-visualizer/utils/isArray.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer/utils/isTwoFirstDepths.d.ts +4 -0
- package/dist/vendor/twenty-ui/json-visualizer/utils/isTwoFirstDepths.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/json-visualizer.cjs +7 -0
- package/dist/vendor/twenty-ui/json-visualizer.mjs +271 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/components/AnimatedExpandableContainer.d.ts +17 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/components/AnimatedExpandableContainer.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurationObject.d.ts +5 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurationObject.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurations.d.ts +4 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDurations.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationMode.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationMode.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationSize.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationSize.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getCommonStyles.d.ts +16 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getCommonStyles.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getExpandableAnimationConfig.d.ts +45 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getExpandableAnimationConfig.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getTransitionValues.d.ts +15 -0
- package/dist/vendor/twenty-ui/layout/animated-expandable-container/utils/getTransitionValues.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/AnimatedPlaceholder.d.ts +10 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/AnimatedPlaceholder.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/EmptyPlaceholderStyled.d.ts +31 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/EmptyPlaceholderStyled.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/ErrorPlaceholderStyled.d.ts +21 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/components/ErrorPlaceholderStyled.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/Background.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/Background.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkBackground.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkBackground.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkMovingImage.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/DarkMovingImage.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/MovingImage.d.ts +2 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/constants/MovingImage.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/index.d.ts +8 -0
- package/dist/vendor/twenty-ui/layout/animated-placeholder/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/card/components/Card.d.ts +9 -0
- package/dist/vendor/twenty-ui/layout/card/components/Card.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardContent.d.ts +7 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardContent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardFooter.d.ts +8 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardFooter.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardHeader.d.ts +6 -0
- package/dist/vendor/twenty-ui/layout/card/components/CardHeader.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/index.d.ts +23 -0
- package/dist/vendor/twenty-ui/layout/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout/section/components/Section.d.ts +21 -0
- package/dist/vendor/twenty-ui/layout/section/components/Section.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/layout.cjs +6 -0
- package/dist/vendor/twenty-ui/layout.mjs +266 -0
- package/dist/vendor/twenty-ui/navigation/index.d.ts +43 -0
- package/dist/vendor/twenty-ui/navigation/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/AdvancedSettingsToggle.d.ts +8 -0
- package/dist/vendor/twenty-ui/navigation/link/components/AdvancedSettingsToggle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/ClickToActionLink.d.ts +8 -0
- package/dist/vendor/twenty-ui/navigation/link/components/ClickToActionLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/ContactLink.d.ts +10 -0
- package/dist/vendor/twenty-ui/navigation/link/components/ContactLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/GithubVersionLink.d.ts +6 -0
- package/dist/vendor/twenty-ui/navigation/link/components/GithubVersionLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/RawLink.d.ts +10 -0
- package/dist/vendor/twenty-ui/navigation/link/components/RawLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/RoundedLink.d.ts +9 -0
- package/dist/vendor/twenty-ui/navigation/link/components/RoundedLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/SocialLink.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/link/components/SocialLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/UndecoratedLink.d.ts +12 -0
- package/dist/vendor/twenty-ui/navigation/link/components/UndecoratedLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/components/index.d.ts +9 -0
- package/dist/vendor/twenty-ui/navigation/link/components/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/Cal.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/Cal.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/GithubLink.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/GithubLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/TwentyPricingLink.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/link/constants/TwentyPricingLink.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/link/index.d.ts +4 -0
- package/dist/vendor/twenty-ui/navigation/link/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/components/MenuPicker.d.ts +18 -0
- package/dist/vendor/twenty-ui/navigation/menu/components/MenuPicker.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/components/index.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/menu/components/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/index.d.ts +3 -0
- package/dist/vendor/twenty-ui/navigation/menu/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItem.d.ts +41 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItem.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemAvatar.d.ts +22 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemAvatar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemDraggable.d.ts +21 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemDraggable.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemHotKeys.d.ts +6 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemHotKeys.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelect.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelect.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectAvatar.d.ts +14 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectAvatar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectTag.d.ts +15 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemMultiSelectTag.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemNavigate.d.ts +11 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemNavigate.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelect.d.ts +29 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelect.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectAvatar.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectAvatar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectColor.d.ts +17 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectColor.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectTag.d.ts +17 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSelectTag.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSuggestion.d.ts +13 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemSuggestion.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemToggle.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/MenuItemToggle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/index.d.ts +16 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/components/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/index.d.ts +5 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/MenuItemLeftContent.d.ts +17 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/MenuItemLeftContent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/StyledMenuItemBase.d.ts +64 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/internals/components/StyledMenuItemBase.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/types/MenuItemAccent.d.ts +2 -0
- package/dist/vendor/twenty-ui/navigation/menu/menu-item/types/MenuItemAccent.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBar.d.ts +13 -0
- package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBar.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBarItem.d.ts +10 -0
- package/dist/vendor/twenty-ui/navigation/navigation-bar/components/NavigationBarItem.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation/notification-counter/components/NotificationCounter.d.ts +8 -0
- package/dist/vendor/twenty-ui/navigation/notification-counter/components/NotificationCounter.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/navigation.cjs +42 -0
- package/dist/vendor/twenty-ui/navigation.mjs +887 -0
- package/dist/vendor/twenty-ui/style.css +1 -0
- package/dist/vendor/twenty-ui/testing/ComponentStorybookLayout.d.ts +9 -0
- package/dist/vendor/twenty-ui/testing/ComponentStorybookLayout.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/CatalogDecorator.d.ts +18 -0
- package/dist/vendor/twenty-ui/testing/decorators/CatalogDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/ComponentDecorator.d.ts +4 -0
- package/dist/vendor/twenty-ui/testing/decorators/ComponentDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/ComponentWithRouterDecorator.d.ts +11 -0
- package/dist/vendor/twenty-ui/testing/decorators/ComponentWithRouterDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/RecoilRootDecorator.d.ts +4 -0
- package/dist/vendor/twenty-ui/testing/decorators/RecoilRootDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/decorators/RouterDecorator.d.ts +4 -0
- package/dist/vendor/twenty-ui/testing/decorators/RouterDecorator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/index.d.ts +11 -0
- package/dist/vendor/twenty-ui/testing/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/mocks/avatarUrlMock.d.ts +2 -0
- package/dist/vendor/twenty-ui/testing/mocks/avatarUrlMock.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing/types/CatalogStory.d.ts +18 -0
- package/dist/vendor/twenty-ui/testing/types/CatalogStory.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/testing.cjs +3 -0
- package/dist/vendor/twenty-ui/testing.mjs +156 -0
- package/dist/vendor/twenty-ui/theme/constants/AccentDark.d.ts +21 -0
- package/dist/vendor/twenty-ui/theme/constants/AccentDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/AccentLight.d.ts +21 -0
- package/dist/vendor/twenty-ui/theme/constants/AccentLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Animation.d.ts +10 -0
- package/dist/vendor/twenty-ui/theme/constants/Animation.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BackgroundDark.d.ts +30 -0
- package/dist/vendor/twenty-ui/theme/constants/BackgroundDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BackgroundLight.d.ts +30 -0
- package/dist/vendor/twenty-ui/theme/constants/BackgroundLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BlurDark.d.ts +6 -0
- package/dist/vendor/twenty-ui/theme/constants/BlurDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BlurLight.d.ts +6 -0
- package/dist/vendor/twenty-ui/theme/constants/BlurLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderCommon.d.ts +12 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderCommon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderDark.d.ts +22 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderLight.d.ts +22 -0
- package/dist/vendor/twenty-ui/theme/constants/BorderLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BoxShadowDark.d.ts +8 -0
- package/dist/vendor/twenty-ui/theme/constants/BoxShadowDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/BoxShadowLight.d.ts +8 -0
- package/dist/vendor/twenty-ui/theme/constants/BoxShadowLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/CodeDark.d.ts +13 -0
- package/dist/vendor/twenty-ui/theme/constants/CodeDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/CodeLight.d.ts +13 -0
- package/dist/vendor/twenty-ui/theme/constants/CodeLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ColorsDark.d.ts +750 -0
- package/dist/vendor/twenty-ui/theme/constants/ColorsDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ColorsLight.d.ts +750 -0
- package/dist/vendor/twenty-ui/theme/constants/ColorsLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/FontCommon.d.ts +18 -0
- package/dist/vendor/twenty-ui/theme/constants/FontCommon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/FontDark.d.ts +27 -0
- package/dist/vendor/twenty-ui/theme/constants/FontDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/FontLight.d.ts +27 -0
- package/dist/vendor/twenty-ui/theme/constants/FontLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleDark.d.ts +15 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleDarkAlpha.d.ts +15 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleDarkAlpha.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleLight.d.ts +15 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleLightAlpha.d.ts +15 -0
- package/dist/vendor/twenty-ui/theme/constants/GrayScaleLightAlpha.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/HoverBackground.d.ts +2 -0
- package/dist/vendor/twenty-ui/theme/constants/HoverBackground.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Icon.d.ts +14 -0
- package/dist/vendor/twenty-ui/theme/constants/Icon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/IllustrationIconDark.d.ts +11 -0
- package/dist/vendor/twenty-ui/theme/constants/IllustrationIconDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/IllustrationIconLight.d.ts +11 -0
- package/dist/vendor/twenty-ui/theme/constants/IllustrationIconLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorNames.d.ts +5 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorNames.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorsDark.d.ts +28 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorsDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorsLight.d.ts +28 -0
- package/dist/vendor/twenty-ui/theme/constants/MainColorsLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/MobileViewport.d.ts +2 -0
- package/dist/vendor/twenty-ui/theme/constants/MobileViewport.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Modal.d.ts +9 -0
- package/dist/vendor/twenty-ui/theme/constants/Modal.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Rgba.d.ts +2 -0
- package/dist/vendor/twenty-ui/theme/constants/Rgba.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsDark.d.ts +363 -0
- package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsLight.d.ts +363 -0
- package/dist/vendor/twenty-ui/theme/constants/SecondaryColorsLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/SnackBarDark.d.ts +23 -0
- package/dist/vendor/twenty-ui/theme/constants/SnackBarDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/SnackBarLight.d.ts +23 -0
- package/dist/vendor/twenty-ui/theme/constants/SnackBarLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TagDark.d.ts +67 -0
- package/dist/vendor/twenty-ui/theme/constants/TagDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TagLight.d.ts +67 -0
- package/dist/vendor/twenty-ui/theme/constants/TagLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/Text.d.ts +12 -0
- package/dist/vendor/twenty-ui/theme/constants/Text.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TextInputStyle.d.ts +6 -0
- package/dist/vendor/twenty-ui/theme/constants/TextInputStyle.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeCommon.d.ts +57 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeCommon.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeDark.d.ts +4 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeLight.d.ts +1039 -0
- package/dist/vendor/twenty-ui/theme/constants/ThemeLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TransparentColorsDark.d.ts +363 -0
- package/dist/vendor/twenty-ui/theme/constants/TransparentColorsDark.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/constants/TransparentColorsLight.d.ts +363 -0
- package/dist/vendor/twenty-ui/theme/constants/TransparentColorsLight.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/index.d.ts +54 -0
- package/dist/vendor/twenty-ui/theme/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/provider/ThemeContextProvider.d.ts +11 -0
- package/dist/vendor/twenty-ui/theme/provider/ThemeContextProvider.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/provider/ThemeProvider.d.ts +10 -0
- package/dist/vendor/twenty-ui/theme/provider/ThemeProvider.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/types/ThemeType.d.ts +4 -0
- package/dist/vendor/twenty-ui/theme/types/ThemeType.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/utils/getNextThemeColor.d.ts +4 -0
- package/dist/vendor/twenty-ui/theme/utils/getNextThemeColor.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme/utils/themeColorSchema.d.ts +30 -0
- package/dist/vendor/twenty-ui/theme/utils/themeColorSchema.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/theme.cjs +1 -0
- package/dist/vendor/twenty-ui/theme.mjs +1223 -0
- package/dist/vendor/twenty-ui/themeColorSchema-CgAr-Bzv.js +6 -0
- package/dist/vendor/twenty-ui/themeColorSchema-DSPsU2O5.cjs +1 -0
- package/dist/vendor/twenty-ui/useIsMobile-DqVdogVd.js +13 -0
- package/dist/vendor/twenty-ui/useIsMobile-p7nY1Vab.cjs +1 -0
- package/dist/vendor/twenty-ui/useMouseDownNavigation-C_8Q5KFZ.cjs +1 -0
- package/dist/vendor/twenty-ui/useMouseDownNavigation-qpLZC7wJ.js +29 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedCircleLoading.d.ts +6 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedCircleLoading.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedContainer.d.ts +6 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedContainer.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseIn.d.ts +9 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseIn.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseInOut.d.ts +13 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedEaseInOut.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedFadeOut.d.ts +12 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedFadeOut.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedRotate.d.ts +10 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedRotate.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTextWord.d.ts +9 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTextWord.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTranslation.d.ts +6 -0
- package/dist/vendor/twenty-ui/utilities/animation/components/AnimatedTranslation.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/animation/index.d.ts +8 -0
- package/dist/vendor/twenty-ui/utilities/animation/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/color/utils/getMainColorNameFromPaletteColorName.d.ts +4 -0
- package/dist/vendor/twenty-ui/utilities/color/utils/getMainColorNameFromPaletteColorName.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/color/utils/stringToThemeColorP3String.d.ts +9 -0
- package/dist/vendor/twenty-ui/utilities/color/utils/stringToThemeColorP3String.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/config.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/config.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/device/getOsControlSymbol.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/device/getOsControlSymbol.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/device/getOsShortcutSeparator.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/device/getOsShortcutSeparator.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/device/getUserDevice.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/device/getUserDevice.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/dimensions/components/AutogrowWrapper.d.ts +10 -0
- package/dist/vendor/twenty-ui/utilities/dimensions/components/AutogrowWrapper.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/index.d.ts +26 -0
- package/dist/vendor/twenty-ui/utilities/index.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/navigation/hooks/useMouseDownNavigation.d.ts +17 -0
- package/dist/vendor/twenty-ui/utilities/navigation/hooks/useMouseDownNavigation.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/navigation/hooks/useResetLocationHash.d.ts +4 -0
- package/dist/vendor/twenty-ui/utilities/navigation/hooks/useResetLocationHash.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/navigation/isNavigationModifierPressed.d.ts +4 -0
- package/dist/vendor/twenty-ui/utilities/navigation/isNavigationModifierPressed.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/navigation/types/trigger-event.type.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/navigation/types/trigger-event.type.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/responsive/hooks/useIsMobile.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/responsive/hooks/useIsMobile.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/screen-size/hooks/useScreenSize.d.ts +5 -0
- package/dist/vendor/twenty-ui/utilities/screen-size/hooks/useScreenSize.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/state/utils/createState.d.ts +8 -0
- package/dist/vendor/twenty-ui/utilities/state/utils/createState.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/types/ClickOutsideAttributes.d.ts +5 -0
- package/dist/vendor/twenty-ui/utilities/types/ClickOutsideAttributes.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/types/Nullable.d.ts +2 -0
- package/dist/vendor/twenty-ui/utilities/types/Nullable.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities/utils/getDisplayValueByUrlType.d.ts +9 -0
- package/dist/vendor/twenty-ui/utilities/utils/getDisplayValueByUrlType.d.ts.map +1 -0
- package/dist/vendor/twenty-ui/utilities.cjs +1 -0
- package/dist/vendor/twenty-ui/utilities.mjs +275 -0
- package/dist/vendor/twenty-ui/visibility-hidden-00WyuQUL.cjs +1 -0
- package/dist/vendor/twenty-ui/visibility-hidden-DANnDHvJ.js +5 -0
- package/package.json +42 -15
- package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Bft-VMSh.mjs +0 -3151
- package/dist/ObjectRecordGroupByDateGranularity-CtpRADP1-Duv5iOeZ.js +0 -20
- package/dist/application/application-config.d.ts +0 -2
- package/dist/application/define-app.d.ts +0 -18
- package/dist/application/fields/field.decorator.d.ts +0 -3
- package/dist/application/fields/relation.decorator.d.ts +0 -28
- package/dist/application/functions/define-function.d.ts +0 -28
- package/dist/application/functions/function-config.d.ts +0 -9
- package/dist/application/index.d.ts +0 -19
- package/dist/application/objects/define-object.d.ts +0 -35
- package/dist/application/objects/object.decorator.d.ts +0 -4
- package/dist/application/objects/standard-object-ids.d.ts +0 -1
- package/dist/application/permission-flag-type.d.ts +0 -1
- package/dist/application/role-config.d.ts +0 -2
- package/dist/application/roles/define-role.d.ts +0 -26
- package/dist/cli/commands/app-add.command.d.ts +0 -13
- package/dist/cli/commands/app-dev.command.d.ts +0 -11
- package/dist/cli/commands/app-sync.command.d.ts +0 -7
- package/dist/cli/commands/app.command.d.ts +0 -10
- package/dist/cli/commands/auth.command.d.ts +0 -9
- package/dist/cli/services/api.service.d.ts +0 -20
- package/dist/cli/utils/config-loader.d.ts +0 -43
- package/dist/cli/utils/display-entity-summary.d.ts +0 -2
- package/dist/cli/utils/display-errors.d.ts +0 -2
- package/dist/cli/utils/display-warnings.d.ts +0 -2
- package/dist/cli/utils/get-function-base-file.d.ts +0 -4
- package/dist/cli/utils/load-env-variables.d.ts +0 -2
- package/dist/cli/utils/load-manifest.d.ts +0 -41
- package/dist/cli/utils/validate-manifest.d.ts +0 -22
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-BwpmSE4s.js +0 -1
- package/dist/vendor/twenty-shared/ObjectRecordGroupByDateGranularity-CtpRADP1.mjs +0 -500
- package/dist/vendor/twenty-shared/RatingValues-B_wgYyso.js +0 -1
- package/dist/vendor/twenty-shared/RatingValues-DNSj7xKA.mjs +0 -224
- package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts +0 -12
- package/dist/vendor/twenty-shared/application/applicationManifestType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/application/packageJsonType.d.ts +0 -14
- package/dist/vendor/twenty-shared/application/packageJsonType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/application/serverlessFunctionManifestType.d.ts.map +0 -1
- package/dist/vendor/twenty-shared/isValidCountryCode-WBKj_GIR.js +0 -4
- package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts +0 -51
- package/dist/vendor/twenty-shared/metadata/standard-object-ids.d.ts.map +0 -1
- /package/dist/cli/{types/api-response.types.d.ts → utilities/api/api-response-type.d.ts} +0 -0
- /package/dist/cli/{constants → utilities/config}/current-execution-directory.d.ts +0 -0
- /package/dist/cli/{utils/convert-to-label.d.ts → utilities/entity/entity-label.d.ts} +0 -0
- /package/dist/cli/{utils/get-role-base-file.d.ts → utilities/entity/entity-role-template.d.ts} +0 -0
- /package/dist/cli/{utils/find-path-file.d.ts → utilities/file/file-find.d.ts} +0 -0
- /package/dist/cli/{utils/format-path.d.ts → utilities/file/file-path.d.ts} +0 -0
- /package/dist/cli/{utils/format-and-warn-ts-diagnostics.d.ts → utilities/typescript/typescript-diagnostics.d.ts} +0 -0
- /package/dist/{application → sdk/common/types}/syncable-entity-options.type.d.ts +0 -0
- /package/dist/{application → sdk}/fields/field-type.d.ts +0 -0
- /package/dist/{application → sdk}/fields/on-delete-action.d.ts +0 -0
- /package/dist/{application → sdk}/fields/relation-type.d.ts +0 -0
- /package/dist/{application/functions → sdk/logic-functions}/triggers/cron-payload-type.d.ts +0 -0
- /package/dist/{application/functions → sdk/logic-functions}/triggers/database-event-payload-type.d.ts +0 -0
|
@@ -0,0 +1,887 @@
|
|
|
1
|
+
import { j as h, a as t, F as z } from "./emotion-react-jsx-runtime.browser.esm-BUNawPtg.js";
|
|
2
|
+
import { useTheme as m, withTheme as te, css as f } from "@emotion/react";
|
|
3
|
+
import l from "@emotion/styled";
|
|
4
|
+
import { T as F, a as _, e as N, b as ne, c as re } from "./Toggle-Bd3-khQW.js";
|
|
5
|
+
import oe, { useId as ie, useContext as ae } from "react";
|
|
6
|
+
import { IconPoint as le, IconBrandGithub as ce, IconCheck as q, IconGripVertical as se, IconChevronRight as $ } from "@tabler/icons-react";
|
|
7
|
+
import { styled as H } from "@linaria/react";
|
|
8
|
+
import { Link as V } from "react-router-dom";
|
|
9
|
+
import { isNonEmptyString as B, isUndefined as E, isString as M } from "@sniptt/guards";
|
|
10
|
+
import { T as de } from "./ThemeContextProvider-DRVSWXAb.js";
|
|
11
|
+
import { g as ge } from "./getDisplayValueByUrlType-BqPVhhu2.js";
|
|
12
|
+
import { T as he, a as ue, A as fe, O as k } from "./OverflowingTextWithTooltip-F-KEqUMB.js";
|
|
13
|
+
import { T as W } from "./isValidCountryCode-Dyji5s5r-B7O5eJvP.js";
|
|
14
|
+
import { motion as pe } from "framer-motion";
|
|
15
|
+
import { H as K } from "./HoverBackground-bYDC0iDZ.js";
|
|
16
|
+
import { A as me } from "./Avatar-Cg4dvBA_.js";
|
|
17
|
+
import { T as R } from "./Tag-CfX8tARK.js";
|
|
18
|
+
import { S as ye } from "./ColorSample-Bp-he5lO.js";
|
|
19
|
+
const be = /* @__PURE__ */ l("div", {
|
|
20
|
+
target: "eoxui2t0"
|
|
21
|
+
})("align-items:center;display:flex;gap:", ({ theme: e }) => e.spacing(2), ";position:relative;height:", ({ theme: e }) => e.spacing(5), ";padding:", ({ theme: e }) => e.spacing(1), ";"), ke = /* @__PURE__ */ l("div", {
|
|
22
|
+
target: "eoxui2t1"
|
|
23
|
+
})("color:", ({ theme: e }) => e.font.color.secondary, ";font-size:", ({ theme: e }) => e.font.size.sm, ";font-weight:", ({ theme: e }) => e.font.weight.medium, ";"), ve = /* @__PURE__ */ l("div", {
|
|
24
|
+
target: "eoxui2t2"
|
|
25
|
+
})("align-items:center;display:flex;left:", ({ theme: e }) => e.spacing(-5), ";position:absolute;"), xe = /* @__PURE__ */ l("label", {
|
|
26
|
+
target: "eoxui2t3"
|
|
27
|
+
})("align-items:center;cursor:pointer;display:flex;justify-content:space-between;width:100%;"), It = ({ isAdvancedModeEnabled: e, setIsAdvancedModeEnabled: n, label: r = "Advanced:" }) => {
|
|
28
|
+
const o = (c) => {
|
|
29
|
+
n(c);
|
|
30
|
+
}, i = ie(), a = m();
|
|
31
|
+
return /* @__PURE__ */ h(be, {
|
|
32
|
+
children: [
|
|
33
|
+
/* @__PURE__ */ t(ve, {
|
|
34
|
+
children: /* @__PURE__ */ t(le, {
|
|
35
|
+
size: 12,
|
|
36
|
+
color: a.color.yellow,
|
|
37
|
+
fill: a.color.yellow
|
|
38
|
+
})
|
|
39
|
+
}),
|
|
40
|
+
/* @__PURE__ */ h(xe, {
|
|
41
|
+
htmlFor: i,
|
|
42
|
+
children: [
|
|
43
|
+
/* @__PURE__ */ t(ke, {
|
|
44
|
+
children: r
|
|
45
|
+
}),
|
|
46
|
+
/* @__PURE__ */ t(F, {
|
|
47
|
+
id: i,
|
|
48
|
+
onChange: o,
|
|
49
|
+
color: a.color.yellow,
|
|
50
|
+
value: e
|
|
51
|
+
})
|
|
52
|
+
]
|
|
53
|
+
})
|
|
54
|
+
]
|
|
55
|
+
});
|
|
56
|
+
}, we = /* @__PURE__ */ l("a", {
|
|
57
|
+
target: "e12cg47g0"
|
|
58
|
+
})("align-items:center;color:", ({ theme: e }) => e.font.color.light, ";display:flex;font-size:", ({ theme: e }) => e.font.size.sm, ";font-weight:", ({ theme: e }) => e.font.weight.medium, ";gap:", ({ theme: e }) => e.spacing(1), ";padding:0 ", ({ theme: e }) => e.spacing(1), ";text-decoration:none;:hover{color:", ({ theme: e }) => e.font.color.tertiary, ";cursor:pointer;}"), Se = (e) => /* @__PURE__ */ t(we, {
|
|
59
|
+
className: e.className,
|
|
60
|
+
href: e.href,
|
|
61
|
+
onClick: e.onClick,
|
|
62
|
+
target: e.target,
|
|
63
|
+
rel: e.rel,
|
|
64
|
+
children: e.children
|
|
65
|
+
}), Ce = () => ({
|
|
66
|
+
theme: e
|
|
67
|
+
}) => e.border.color.strong, ze = () => ({
|
|
68
|
+
maxWidth: e
|
|
69
|
+
}) => e ?? "100%", Ie = () => ({
|
|
70
|
+
theme: e
|
|
71
|
+
}) => e.font.color.primary, Me = te(/* @__PURE__ */ H("a")({
|
|
72
|
+
name: "StyledClickableLink",
|
|
73
|
+
class: "s1dd08x",
|
|
74
|
+
propsAsIs: !1,
|
|
75
|
+
vars: {
|
|
76
|
+
"s1dd08x-0": [Ce()],
|
|
77
|
+
"s1dd08x-1": [ze()],
|
|
78
|
+
"s1dd08x-2": [Ie()]
|
|
79
|
+
}
|
|
80
|
+
})), Mt = ({
|
|
81
|
+
href: e,
|
|
82
|
+
children: n,
|
|
83
|
+
onClick: r,
|
|
84
|
+
maxWidth: o
|
|
85
|
+
}) => /* @__PURE__ */ t(Me, {
|
|
86
|
+
maxWidth: o,
|
|
87
|
+
target: "_blank",
|
|
88
|
+
onClick: r,
|
|
89
|
+
href: e,
|
|
90
|
+
children: n
|
|
91
|
+
}), Le = "https://github.com/twentyhq/twenty", Lt = ({ version: e }) => {
|
|
92
|
+
const n = m();
|
|
93
|
+
return /* @__PURE__ */ h(Se, {
|
|
94
|
+
href: Le,
|
|
95
|
+
target: "_blank",
|
|
96
|
+
rel: "noreferrer",
|
|
97
|
+
children: [
|
|
98
|
+
/* @__PURE__ */ t(ce, {
|
|
99
|
+
size: n.icon.size.md
|
|
100
|
+
}),
|
|
101
|
+
e
|
|
102
|
+
]
|
|
103
|
+
});
|
|
104
|
+
}, $e = /* @__PURE__ */ l("div", {
|
|
105
|
+
target: "e13qyhgc0"
|
|
106
|
+
})("display:flex;overflow:hidden;white-space:nowrap;a{color:inherit;overflow:hidden;text-overflow:ellipsis;}"), $t = ({ className: e, href: n, children: r, onClick: o }) => /* @__PURE__ */ t("div", {
|
|
107
|
+
children: /* @__PURE__ */ t($e, {
|
|
108
|
+
className: e,
|
|
109
|
+
children: /* @__PURE__ */ t(V, {
|
|
110
|
+
target: "_blank",
|
|
111
|
+
onClick: o,
|
|
112
|
+
to: n,
|
|
113
|
+
children: r
|
|
114
|
+
})
|
|
115
|
+
})
|
|
116
|
+
}), je = () => ({
|
|
117
|
+
background: e
|
|
118
|
+
}) => e, Ae = () => ({
|
|
119
|
+
border: e
|
|
120
|
+
}) => e, Te = () => ({
|
|
121
|
+
color: e
|
|
122
|
+
}) => e, _e = () => ({
|
|
123
|
+
backgroundHover: e
|
|
124
|
+
}) => e, Ne = () => ({
|
|
125
|
+
backgroundActive: e
|
|
126
|
+
}) => e, Be = /* @__PURE__ */ H("a")({
|
|
127
|
+
name: "StyledLink",
|
|
128
|
+
class: "srl6h1l",
|
|
129
|
+
propsAsIs: !1,
|
|
130
|
+
vars: {
|
|
131
|
+
"srl6h1l-0": [je()],
|
|
132
|
+
"srl6h1l-1": [Ae()],
|
|
133
|
+
"srl6h1l-2": [Te()],
|
|
134
|
+
"srl6h1l-3": [_e()],
|
|
135
|
+
"srl6h1l-4": [Ne()]
|
|
136
|
+
}
|
|
137
|
+
}), Re = ({
|
|
138
|
+
label: e,
|
|
139
|
+
href: n,
|
|
140
|
+
onClick: r,
|
|
141
|
+
className: o
|
|
142
|
+
}) => {
|
|
143
|
+
const {
|
|
144
|
+
theme: i
|
|
145
|
+
} = ae(de), a = i.background.transparent.lighter, c = i.background.transparent.light, d = i.background.transparent.medium, s = i.border.color.strong, g = i.font.color.primary;
|
|
146
|
+
return B(e) ? /* @__PURE__ */ t(Be, {
|
|
147
|
+
href: n,
|
|
148
|
+
target: "_blank",
|
|
149
|
+
rel: "noreferrer",
|
|
150
|
+
onClick: (p) => {
|
|
151
|
+
p.stopPropagation(), r?.(p);
|
|
152
|
+
},
|
|
153
|
+
color: g,
|
|
154
|
+
background: a,
|
|
155
|
+
backgroundHover: c,
|
|
156
|
+
backgroundActive: d,
|
|
157
|
+
border: s,
|
|
158
|
+
className: o,
|
|
159
|
+
children: e
|
|
160
|
+
}) : /* @__PURE__ */ t(z, {});
|
|
161
|
+
};
|
|
162
|
+
var jt = /* @__PURE__ */ function(e) {
|
|
163
|
+
return e.Url = "url", e.LinkedIn = "linkedin", e.Twitter = "twitter", e.Facebook = "facebook", e;
|
|
164
|
+
}({});
|
|
165
|
+
const At = ({ label: e, href: n, onClick: r, type: o }) => {
|
|
166
|
+
const i = ge({
|
|
167
|
+
type: o,
|
|
168
|
+
href: n
|
|
169
|
+
}) ?? e;
|
|
170
|
+
return /* @__PURE__ */ t(Re, {
|
|
171
|
+
href: n,
|
|
172
|
+
onClick: r,
|
|
173
|
+
label: i
|
|
174
|
+
});
|
|
175
|
+
}, Oe = /* @__PURE__ */ l(
|
|
176
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
177
|
+
({ fullWidth: e, ...n }) => /* @__PURE__ */ t(V, {
|
|
178
|
+
...n
|
|
179
|
+
}),
|
|
180
|
+
{
|
|
181
|
+
target: "eqso5ta0"
|
|
182
|
+
}
|
|
183
|
+
)("text-decoration:none;width:", ({ fullWidth: e }) => e ? "100%" : "auto", ";"), Tt = ({ children: e, to: n, replace: r = !1, onClick: o, fullWidth: i = !1 }) => /* @__PURE__ */ t(Oe, {
|
|
184
|
+
to: n,
|
|
185
|
+
replace: r,
|
|
186
|
+
onClick: o,
|
|
187
|
+
fullWidth: i,
|
|
188
|
+
children: e
|
|
189
|
+
}), _t = "https://cal.com/team/twenty/talk-to-us", Nt = "https://twenty.com/pricing", Pe = /* @__PURE__ */ l("button", {
|
|
190
|
+
target: "e1goopyw0"
|
|
191
|
+
})("box-sizing:border-box;background:none;font:inherit;outline:inherit;color:inherit;align-items:center;border:1px solid ", ({ theme: e }) => e.border.color.medium, ";border-radius:", ({ theme: e }) => e.border.radius.sm, ";cursor:pointer;display:flex;flex-direction:column;gap:", ({ theme: e }) => e.spacing(1), ";justify-content:center;min-height:", ({ theme: e }) => e.spacing(8), ";padding:", ({ theme: e }) => `${e.spacing(1.5)} ${e.spacing(1)}`, ";transition:all ", ({ theme: e }) => e.animation.duration.instant, "s ease;user-select:none;width:100%;", ({ theme: e, selected: n, disabled: r }) => r ? f`
|
|
192
|
+
background: ${e.background.secondary};
|
|
193
|
+
border-color: ${e.border.color.medium};
|
|
194
|
+
color: ${e.font.color.extraLight};
|
|
195
|
+
cursor: default;
|
|
196
|
+
` : n ? f`
|
|
197
|
+
background: transparent;
|
|
198
|
+
border-color: ${e.color.blue};
|
|
199
|
+
color: ${e.color.blue};
|
|
200
|
+
|
|
201
|
+
&:hover {
|
|
202
|
+
background: ${e.background.transparent.primary};
|
|
203
|
+
}
|
|
204
|
+
` : f`
|
|
205
|
+
background: transparent;
|
|
206
|
+
border-color: ${e.border.color.medium};
|
|
207
|
+
color: ${e.font.color.tertiary};
|
|
208
|
+
|
|
209
|
+
&:hover {
|
|
210
|
+
background: ${e.background.transparent.light};
|
|
211
|
+
}
|
|
212
|
+
`), Ge = /* @__PURE__ */ l("div", {
|
|
213
|
+
target: "e1goopyw1"
|
|
214
|
+
})("align-items:center;display:flex;flex-shrink:0;height:", ({ theme: e }) => e.icon.size.md, "px;justify-content:center;width:", ({ theme: e }) => e.icon.size.md, "px;"), Ue = /* @__PURE__ */ l("div", {
|
|
215
|
+
target: "e1goopyw2"
|
|
216
|
+
})("font-family:", ({ theme: e }) => e.font.family, ";font-size:", ({ theme: e }) => e.font.size.xs, ";font-weight:", ({ theme: e }) => e.font.weight.semiBold, ";max-width:100%;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap;", ({ theme: e, selected: n, disabled: r }) => r ? f`
|
|
217
|
+
color: ${e.font.color.extraLight};
|
|
218
|
+
` : n ? f`
|
|
219
|
+
color: ${e.color.blue};
|
|
220
|
+
` : f`
|
|
221
|
+
color: ${e.font.color.tertiary};
|
|
222
|
+
`), Bt = ({ id: e, icon: n, label: r, selected: o = !1, disabled: i = !1, showLabel: a = !0, onClick: c, className: d, testId: s, tooltipContent: g, tooltipDelay: u = he.noDelay, tooltipOffset: p = 5 }) => {
|
|
223
|
+
const y = m();
|
|
224
|
+
return /* @__PURE__ */ h(z, {
|
|
225
|
+
children: [
|
|
226
|
+
/* @__PURE__ */ h(Pe, {
|
|
227
|
+
id: e,
|
|
228
|
+
selected: o,
|
|
229
|
+
disabled: i,
|
|
230
|
+
onClick: c,
|
|
231
|
+
className: d,
|
|
232
|
+
"data-testid": s,
|
|
233
|
+
"aria-pressed": o,
|
|
234
|
+
"aria-disabled": i,
|
|
235
|
+
"aria-label": r,
|
|
236
|
+
children: [
|
|
237
|
+
/* @__PURE__ */ t(Ge, {
|
|
238
|
+
children: /* @__PURE__ */ t(n, {
|
|
239
|
+
size: y.icon.size.md,
|
|
240
|
+
stroke: y.icon.stroke.sm
|
|
241
|
+
})
|
|
242
|
+
}),
|
|
243
|
+
W(r) && a && /* @__PURE__ */ t(Ue, {
|
|
244
|
+
selected: o,
|
|
245
|
+
disabled: i,
|
|
246
|
+
children: r
|
|
247
|
+
})
|
|
248
|
+
]
|
|
249
|
+
}),
|
|
250
|
+
B(g) && /* @__PURE__ */ t(fe, {
|
|
251
|
+
anchorSelect: `#${e}`,
|
|
252
|
+
offset: p,
|
|
253
|
+
content: g,
|
|
254
|
+
place: ue.Bottom,
|
|
255
|
+
positionStrategy: "fixed",
|
|
256
|
+
delay: u,
|
|
257
|
+
noArrow: !0
|
|
258
|
+
})
|
|
259
|
+
]
|
|
260
|
+
});
|
|
261
|
+
}, De = /* @__PURE__ */ l("div", {
|
|
262
|
+
target: "e1ge2mj0"
|
|
263
|
+
})("align-items:center;display:flex;flex-direction:row;gap:", ({ theme: e }) => e.spacing(1), ";justify-content:center;"), Fe = /* @__PURE__ */ l("div", {
|
|
264
|
+
target: "e1ge2mj1"
|
|
265
|
+
})("color:", ({ theme: e }) => e.font.color.light, ";vertical-align:middle;white-space:nowrap;"), qe = /* @__PURE__ */ l("div", {
|
|
266
|
+
target: "e1ge2mj2"
|
|
267
|
+
})("align-items:center;background-color:", ({ theme: e }) => e.background.secondary, ";border:1px solid ", ({ theme: e }) => e.border.color.strong, ";border-radius:", ({ theme: e }) => e.border.radius.sm, ";box-shadow:", ({ theme: e }) => e.boxShadow.underline, ";display:flex;flex-direction:column;height:18px;justify-content:center;text-align:center;width:", ({ theme: e }) => e.spacing(4), ";"), He = ({ hotKeys: e, joinLabel: n = "then" }) => /* @__PURE__ */ t(Fe, {
|
|
268
|
+
children: e && /* @__PURE__ */ t(De, {
|
|
269
|
+
children: e.map((r, o) => /* @__PURE__ */ h(oe.Fragment, {
|
|
270
|
+
children: [
|
|
271
|
+
/* @__PURE__ */ t(qe, {
|
|
272
|
+
children: r
|
|
273
|
+
}),
|
|
274
|
+
o < e.length - 1 && n
|
|
275
|
+
]
|
|
276
|
+
}, o))
|
|
277
|
+
})
|
|
278
|
+
}), x = /* @__PURE__ */ l("div", {
|
|
279
|
+
target: "e134tjdh0"
|
|
280
|
+
})("--horizontal-padding:", ({ theme: e }) => e.spacing(1), ";--vertical-padding:", ({ theme: e }) => e.spacing(2), ";align-items:center;border-radius:", ({ theme: e }) => e.border.radius.sm, ";cursor:pointer;display:flex;flex-direction:row;font-size:", ({ theme: e }) => e.font.size.sm, ";gap:", ({ theme: e }) => e.spacing(2), ";height:calc(32px - 2 * var(--vertical-padding));justify-content:space-between;padding:var(--vertical-padding) var(--horizontal-padding);", ({ theme: e, isKeySelected: n }) => n ? `background: ${e.background.transparent.light};` : "", " ", ({ isHoverBackgroundDisabled: e, disabled: n }) => (n || e) ?? K, ";", ({ theme: e, accent: n, disabled: r }) => {
|
|
281
|
+
if (!E(r) && r !== !1)
|
|
282
|
+
return f`
|
|
283
|
+
color: ${e.font.color.tertiary};
|
|
284
|
+
`;
|
|
285
|
+
switch (n) {
|
|
286
|
+
case "danger":
|
|
287
|
+
return f`
|
|
288
|
+
color: ${e.font.color.danger};
|
|
289
|
+
&:hover {
|
|
290
|
+
background: ${e.background.transparent.danger};
|
|
291
|
+
}
|
|
292
|
+
`;
|
|
293
|
+
case "placeholder":
|
|
294
|
+
return f`
|
|
295
|
+
color: ${e.font.color.tertiary};
|
|
296
|
+
`;
|
|
297
|
+
case "default":
|
|
298
|
+
default:
|
|
299
|
+
return f`
|
|
300
|
+
color: ${e.font.color.secondary};
|
|
301
|
+
`;
|
|
302
|
+
}
|
|
303
|
+
}, " ", ({ focused: e, theme: n }) => e && f`
|
|
304
|
+
background: ${n.background.transparent.light};
|
|
305
|
+
`, ";position:relative;user-select:none;width:calc(100% - 2 * var(--horizontal-padding));"), w = /* @__PURE__ */ l("div", {
|
|
306
|
+
target: "e134tjdh1"
|
|
307
|
+
})("display:flex;flex-direction:row;font-size:", ({ theme: e }) => e.font.size.md, ";font-weight:", ({ theme: e }) => e.font.weight.regular, ";overflow:hidden;white-space:nowrap;"), L = /* @__PURE__ */ l(w, {
|
|
308
|
+
target: "e134tjdh2"
|
|
309
|
+
})("color:", ({ theme: e }) => e.font.color.light, ";"), Rt = /* @__PURE__ */ l("div", {
|
|
310
|
+
target: "e134tjdh3"
|
|
311
|
+
})("width:", ({ theme: e }) => e.spacing(1), ";"), b = /* @__PURE__ */ l("div", {
|
|
312
|
+
target: "e134tjdh4"
|
|
313
|
+
})("align-items:center;display:flex;flex-direction:row;gap:", ({ theme: e }) => e.spacing(2), ";min-width:0;width:100%;& svg{flex-shrink:0;}"), O = /* @__PURE__ */ l("div", {
|
|
314
|
+
target: "e134tjdh5"
|
|
315
|
+
})("align-items:center;display:flex;flex-direction:row;gap:", ({ theme: e }) => e.spacing(2), ";& svg{flex-shrink:0;}"), Ve = /* @__PURE__ */ l("div", {
|
|
316
|
+
target: "e134tjdh6"
|
|
317
|
+
})("cursor:grab;align-items:center;display:flex;"), P = /* @__PURE__ */ l(x, {
|
|
318
|
+
target: "e134tjdh7"
|
|
319
|
+
})(({ isIconDisplayedOnHoverOnly: e, theme: n }) => e && /* @__PURE__ */ f("& .hoverable-buttons{opacity:0;right:", n.spacing(2), ";}&:hover{& .hoverable-buttons{opacity:1;}}"), ";& .hoverable-buttons{transition:opacity ", ({ theme: e }) => e.animation.duration.instant, "s ease;}cursor:", ({ cursor: e, disabled: n }) => {
|
|
320
|
+
if (!E(n) && n !== !1)
|
|
321
|
+
return "default";
|
|
322
|
+
switch (e) {
|
|
323
|
+
case "drag":
|
|
324
|
+
return "grab";
|
|
325
|
+
default:
|
|
326
|
+
return "pointer";
|
|
327
|
+
}
|
|
328
|
+
}, ";"), G = /* @__PURE__ */ l(q, {
|
|
329
|
+
target: "e134tjdh8"
|
|
330
|
+
})("flex-shrink:0;margin-right:", ({ theme: e }) => e.spacing(1), ";"), Y = /* @__PURE__ */ l("div", {
|
|
331
|
+
target: "e134tjdh9"
|
|
332
|
+
})("color:", ({ theme: e }) => e.font.color.light, ";font-family:inherit;font-size:inherit;font-weight:inherit;padding-left:", ({ theme: e }) => e.spacing(1), ";flex-shrink:1;overflow:hidden;"), J = /* @__PURE__ */ l(Y, {
|
|
333
|
+
target: "e134tjdh10"
|
|
334
|
+
})("text-align:right;"), Ee = /* @__PURE__ */ l("div", {
|
|
335
|
+
target: "etfsebm0"
|
|
336
|
+
})("flex-shrink:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%;"), We = /* @__PURE__ */ l("div", {
|
|
337
|
+
target: "etfsebm1"
|
|
338
|
+
})("align-items:flex-start;background:", ({ theme: e }) => e.background.transparent.light, ";border-radius:", ({ theme: e }) => e.border.radius.sm, ";display:flex;flex-direction:column;padding:", ({ theme: e }) => e.spacing(1), ";"), Ke = /* @__PURE__ */ l(w, {
|
|
339
|
+
target: "etfsebm2"
|
|
340
|
+
})("margin-left:auto;"), v = ({ className: e, LeftComponent: n, LeftIcon: r, withIconContainer: o = !1, text: i, contextualText: a, contextualTextPosition: c = "left", showGrip: d = !1, disabled: s = !1 }) => {
|
|
341
|
+
const g = m();
|
|
342
|
+
return /* @__PURE__ */ h(b, {
|
|
343
|
+
className: e,
|
|
344
|
+
children: [
|
|
345
|
+
d && /* @__PURE__ */ t(Ve, {
|
|
346
|
+
children: /* @__PURE__ */ t(se, {
|
|
347
|
+
size: g.icon.size.md,
|
|
348
|
+
stroke: g.icon.stroke.sm,
|
|
349
|
+
color: o ? g.font.color.tertiary : s ? g.font.color.extraLight : g.font.color.light
|
|
350
|
+
})
|
|
351
|
+
}),
|
|
352
|
+
r && (o ? /* @__PURE__ */ t(We, {
|
|
353
|
+
children: /* @__PURE__ */ t(r, {
|
|
354
|
+
size: g.icon.size.md,
|
|
355
|
+
stroke: g.icon.stroke.sm
|
|
356
|
+
})
|
|
357
|
+
}) : /* @__PURE__ */ t(r, {
|
|
358
|
+
size: g.icon.size.md,
|
|
359
|
+
stroke: g.icon.stroke.sm
|
|
360
|
+
})),
|
|
361
|
+
n,
|
|
362
|
+
/* @__PURE__ */ h(w, {
|
|
363
|
+
children: [
|
|
364
|
+
M(i) ? /* @__PURE__ */ t(Ee, {
|
|
365
|
+
children: /* @__PURE__ */ t(k, {
|
|
366
|
+
text: i
|
|
367
|
+
})
|
|
368
|
+
}) : i,
|
|
369
|
+
c === "left" && /* @__PURE__ */ t(z, {
|
|
370
|
+
children: M(a) ? B(a) && /* @__PURE__ */ t(Y, {
|
|
371
|
+
children: /* @__PURE__ */ t(k, {
|
|
372
|
+
text: `· ${a}`
|
|
373
|
+
})
|
|
374
|
+
}) : a
|
|
375
|
+
})
|
|
376
|
+
]
|
|
377
|
+
}),
|
|
378
|
+
c === "right" && /* @__PURE__ */ t(Ke, {
|
|
379
|
+
children: /* @__PURE__ */ t(J, {
|
|
380
|
+
children: M(a) ? /* @__PURE__ */ t(k, {
|
|
381
|
+
text: a
|
|
382
|
+
}) : a
|
|
383
|
+
})
|
|
384
|
+
})
|
|
385
|
+
]
|
|
386
|
+
});
|
|
387
|
+
}, Ye = /* @__PURE__ */ l(pe.div, {
|
|
388
|
+
target: "e1ydxzu70"
|
|
389
|
+
})("display:flex;align-items:center;justify-content:center;"), Ot = ({ accent: e = "default", className: n, withIconContainer: r = !1, iconButtons: o, isIconDisplayedOnHoverOnly: i = !0, LeftIcon: a, LeftComponent: c, RightIcon: d, RightComponent: s, onClick: g, onMouseEnter: u, onMouseLeave: p, testId: y, text: A, contextualTextPosition: U = "left", contextualText: S, hasSubMenu: Q = !1, disabled: I = !1, focused: X = !1, hotKeys: D, isSubMenuOpened: Z = !1 }) => {
|
|
390
|
+
const C = m(), ee = Array.isArray(o) && o.length > 0;
|
|
391
|
+
return /* @__PURE__ */ h(P, {
|
|
392
|
+
"data-testid": y ?? void 0,
|
|
393
|
+
onClick: I ? void 0 : (T) => {
|
|
394
|
+
g && (T.preventDefault(), T.stopPropagation(), g?.(T));
|
|
395
|
+
},
|
|
396
|
+
disabled: I,
|
|
397
|
+
className: n,
|
|
398
|
+
accent: e,
|
|
399
|
+
isIconDisplayedOnHoverOnly: i,
|
|
400
|
+
onMouseEnter: u,
|
|
401
|
+
onMouseLeave: p,
|
|
402
|
+
focused: X,
|
|
403
|
+
children: [
|
|
404
|
+
/* @__PURE__ */ t(v, {
|
|
405
|
+
LeftIcon: a ?? void 0,
|
|
406
|
+
LeftComponent: c,
|
|
407
|
+
withIconContainer: r,
|
|
408
|
+
text: A,
|
|
409
|
+
contextualText: S,
|
|
410
|
+
contextualTextPosition: U,
|
|
411
|
+
disabled: I
|
|
412
|
+
}),
|
|
413
|
+
/* @__PURE__ */ h(O, {
|
|
414
|
+
children: [
|
|
415
|
+
o && /* @__PURE__ */ t("div", {
|
|
416
|
+
className: "hoverable-buttons",
|
|
417
|
+
children: ee && /* @__PURE__ */ t(_, {
|
|
418
|
+
iconButtons: o,
|
|
419
|
+
size: "small"
|
|
420
|
+
})
|
|
421
|
+
}),
|
|
422
|
+
D && /* @__PURE__ */ t(He, {
|
|
423
|
+
hotKeys: D
|
|
424
|
+
}),
|
|
425
|
+
d && /* @__PURE__ */ t(d, {
|
|
426
|
+
size: C.icon.size.md,
|
|
427
|
+
stroke: C.icon.stroke.sm
|
|
428
|
+
}),
|
|
429
|
+
s,
|
|
430
|
+
Q && !I && /* @__PURE__ */ t(Ye, {
|
|
431
|
+
animate: {
|
|
432
|
+
rotate: Z ? 90 : 0
|
|
433
|
+
},
|
|
434
|
+
transition: {
|
|
435
|
+
duration: C.animation.duration.normal
|
|
436
|
+
},
|
|
437
|
+
children: /* @__PURE__ */ t($, {
|
|
438
|
+
size: C.icon.size.sm,
|
|
439
|
+
color: C.font.color.light
|
|
440
|
+
})
|
|
441
|
+
})
|
|
442
|
+
]
|
|
443
|
+
})
|
|
444
|
+
]
|
|
445
|
+
});
|
|
446
|
+
}, Pt = ({ accent: e = "default", className: n, iconButtons: r, isIconDisplayedOnHoverOnly: o = !0, onClick: i, onMouseEnter: a, onMouseLeave: c, testId: d, avatar: s, hasSubMenu: g = !1, text: u, contextualText: p }) => {
|
|
447
|
+
const y = m(), A = Array.isArray(r) && r.length > 0;
|
|
448
|
+
return /* @__PURE__ */ h(P, {
|
|
449
|
+
"data-testid": d ?? void 0,
|
|
450
|
+
onClick: (S) => {
|
|
451
|
+
i && (S.preventDefault(), S.stopPropagation(), i?.(S));
|
|
452
|
+
},
|
|
453
|
+
className: n,
|
|
454
|
+
accent: e,
|
|
455
|
+
isIconDisplayedOnHoverOnly: o,
|
|
456
|
+
onMouseEnter: a,
|
|
457
|
+
onMouseLeave: c,
|
|
458
|
+
children: [
|
|
459
|
+
/* @__PURE__ */ t(b, {
|
|
460
|
+
children: /* @__PURE__ */ t(v, {
|
|
461
|
+
LeftIcon: void 0,
|
|
462
|
+
LeftComponent: W(s) ? /* @__PURE__ */ t(me, {
|
|
463
|
+
placeholder: s.placeholder,
|
|
464
|
+
avatarUrl: s.avatarUrl,
|
|
465
|
+
placeholderColorSeed: s.placeholderColorSeed,
|
|
466
|
+
size: s.size,
|
|
467
|
+
type: s.type
|
|
468
|
+
}) : void 0,
|
|
469
|
+
text: u,
|
|
470
|
+
contextualText: p
|
|
471
|
+
})
|
|
472
|
+
}),
|
|
473
|
+
/* @__PURE__ */ t("div", {
|
|
474
|
+
className: "hoverable-buttons",
|
|
475
|
+
children: A && /* @__PURE__ */ t(_, {
|
|
476
|
+
iconButtons: r,
|
|
477
|
+
size: "small"
|
|
478
|
+
})
|
|
479
|
+
}),
|
|
480
|
+
g && /* @__PURE__ */ t($, {
|
|
481
|
+
size: y.icon.size.sm,
|
|
482
|
+
color: y.font.color.tertiary
|
|
483
|
+
})
|
|
484
|
+
]
|
|
485
|
+
});
|
|
486
|
+
}, Gt = ({ LeftIcon: e, withIconContainer: n = !1, accent: r = "default", iconButtons: o, onClick: i, text: a, isDragDisabled: c = !1, className: d, isIconDisplayedOnHoverOnly: s = !0, showGrip: g = !1 }) => {
|
|
487
|
+
const u = Array.isArray(o) && o.length > 0;
|
|
488
|
+
return /* @__PURE__ */ h(P, {
|
|
489
|
+
onClick: i,
|
|
490
|
+
accent: r,
|
|
491
|
+
className: d,
|
|
492
|
+
isIconDisplayedOnHoverOnly: s,
|
|
493
|
+
cursor: g ? c ? "default" : "drag" : "default",
|
|
494
|
+
children: [
|
|
495
|
+
/* @__PURE__ */ t(v, {
|
|
496
|
+
LeftIcon: e,
|
|
497
|
+
text: a,
|
|
498
|
+
withIconContainer: n,
|
|
499
|
+
disabled: c,
|
|
500
|
+
showGrip: g
|
|
501
|
+
}),
|
|
502
|
+
u && /* @__PURE__ */ t(_, {
|
|
503
|
+
className: "hoverable-buttons",
|
|
504
|
+
iconButtons: o
|
|
505
|
+
})
|
|
506
|
+
]
|
|
507
|
+
});
|
|
508
|
+
}, Je = /* @__PURE__ */ l("div", {
|
|
509
|
+
target: "e9aoect0"
|
|
510
|
+
})("align-items:center;display:flex;flex-direction:row;gap:", ({ theme: e }) => e.spacing(2), ";min-width:0;overflow:hidden;"), Ut = ({ color: e, LeftIcon: n, withIconContainer: r = !1, text: o, selected: i, isKeySelected: a, className: c, onSelectChange: d }) => /* @__PURE__ */ t(x, {
|
|
511
|
+
isKeySelected: a,
|
|
512
|
+
className: c,
|
|
513
|
+
onClick: () => {
|
|
514
|
+
d?.(!i);
|
|
515
|
+
},
|
|
516
|
+
children: /* @__PURE__ */ h(Je, {
|
|
517
|
+
children: [
|
|
518
|
+
/* @__PURE__ */ t(N, {
|
|
519
|
+
checked: i
|
|
520
|
+
}),
|
|
521
|
+
e ? /* @__PURE__ */ t(R, {
|
|
522
|
+
color: e,
|
|
523
|
+
text: o,
|
|
524
|
+
Icon: n
|
|
525
|
+
}) : /* @__PURE__ */ t(v, {
|
|
526
|
+
LeftIcon: n,
|
|
527
|
+
text: o,
|
|
528
|
+
withIconContainer: r
|
|
529
|
+
})
|
|
530
|
+
]
|
|
531
|
+
})
|
|
532
|
+
}), Qe = /* @__PURE__ */ l("div", {
|
|
533
|
+
target: "e1308dg30"
|
|
534
|
+
})("align-items:center;display:flex;flex-direction:row;gap:", ({ theme: e }) => e.spacing(2), ";width:100%;"), Xe = /* @__PURE__ */ l("div", {
|
|
535
|
+
target: "e1308dg31"
|
|
536
|
+
})("display:flex;align-items:center;flex:1 0 0;gap:", ({ theme: e }) => e.spacing(1), ";max-width:100%;text-overflow:ellipsis;overflow:hidden;"), Dt = ({ avatar: e, text: n, selected: r, contextualText: o, className: i, isKeySelected: a, onSelectChange: c }) => /* @__PURE__ */ t(x, {
|
|
537
|
+
className: i,
|
|
538
|
+
onClick: () => {
|
|
539
|
+
c?.(!r);
|
|
540
|
+
},
|
|
541
|
+
isKeySelected: a,
|
|
542
|
+
children: /* @__PURE__ */ h(Qe, {
|
|
543
|
+
children: [
|
|
544
|
+
/* @__PURE__ */ t(N, {
|
|
545
|
+
checked: r
|
|
546
|
+
}),
|
|
547
|
+
/* @__PURE__ */ h(b, {
|
|
548
|
+
children: [
|
|
549
|
+
e,
|
|
550
|
+
/* @__PURE__ */ h(Xe, {
|
|
551
|
+
children: [
|
|
552
|
+
/* @__PURE__ */ t(w, {
|
|
553
|
+
children: /* @__PURE__ */ t(k, {
|
|
554
|
+
text: n
|
|
555
|
+
})
|
|
556
|
+
}),
|
|
557
|
+
o && /* @__PURE__ */ h(z, {
|
|
558
|
+
children: [
|
|
559
|
+
/* @__PURE__ */ t(L, {
|
|
560
|
+
children: "·"
|
|
561
|
+
}),
|
|
562
|
+
/* @__PURE__ */ t(L, {
|
|
563
|
+
children: /* @__PURE__ */ t(k, {
|
|
564
|
+
text: o
|
|
565
|
+
})
|
|
566
|
+
})
|
|
567
|
+
]
|
|
568
|
+
})
|
|
569
|
+
]
|
|
570
|
+
})
|
|
571
|
+
]
|
|
572
|
+
})
|
|
573
|
+
]
|
|
574
|
+
})
|
|
575
|
+
}), Ft = ({ color: e, selected: n, className: r, onClick: o, isKeySelected: i, text: a, Icon: c }) => /* @__PURE__ */ t(x, {
|
|
576
|
+
isKeySelected: i,
|
|
577
|
+
onClick: o,
|
|
578
|
+
className: r,
|
|
579
|
+
children: /* @__PURE__ */ h(b, {
|
|
580
|
+
children: [
|
|
581
|
+
/* @__PURE__ */ t(N, {
|
|
582
|
+
size: re.Small,
|
|
583
|
+
shape: ne.Squared,
|
|
584
|
+
checked: n
|
|
585
|
+
}),
|
|
586
|
+
/* @__PURE__ */ t(R, {
|
|
587
|
+
color: e,
|
|
588
|
+
text: a,
|
|
589
|
+
Icon: c
|
|
590
|
+
})
|
|
591
|
+
]
|
|
592
|
+
})
|
|
593
|
+
}), qt = ({ LeftIcon: e, withIconContainer: n = !1, text: r, className: o, onClick: i }) => {
|
|
594
|
+
const a = m();
|
|
595
|
+
return /* @__PURE__ */ h(x, {
|
|
596
|
+
onClick: i,
|
|
597
|
+
className: o,
|
|
598
|
+
children: [
|
|
599
|
+
/* @__PURE__ */ t(b, {
|
|
600
|
+
children: /* @__PURE__ */ t(v, {
|
|
601
|
+
LeftIcon: e,
|
|
602
|
+
text: r,
|
|
603
|
+
withIconContainer: n
|
|
604
|
+
})
|
|
605
|
+
}),
|
|
606
|
+
/* @__PURE__ */ t($, {
|
|
607
|
+
size: a.icon.size.sm,
|
|
608
|
+
color: a.font.color.tertiary
|
|
609
|
+
})
|
|
610
|
+
]
|
|
611
|
+
});
|
|
612
|
+
}, j = /* @__PURE__ */ l(x, {
|
|
613
|
+
target: "esndde70"
|
|
614
|
+
})(({ theme: e, disabled: n, focused: r }) => {
|
|
615
|
+
if (n === !0)
|
|
616
|
+
return /* @__PURE__ */ f("background:inherit;&:hover{background:inherit;}color:", e.font.color.tertiary, ";cursor:default;");
|
|
617
|
+
if (r === !0)
|
|
618
|
+
return /* @__PURE__ */ f("background:", e.background.transparent.light, ";");
|
|
619
|
+
}), Ht = ({ LeftIcon: e, withIconContainer: n = !1, text: r, selected: o, needIconCheck: i = !0, className: a, onClick: c, disabled: d, focused: s, hasSubMenu: g = !1, contextualText: u, contextualTextPosition: p = "left" }) => {
|
|
620
|
+
const y = m();
|
|
621
|
+
return /* @__PURE__ */ h(j, {
|
|
622
|
+
onClick: c,
|
|
623
|
+
className: a,
|
|
624
|
+
disabled: d,
|
|
625
|
+
focused: s,
|
|
626
|
+
role: "option",
|
|
627
|
+
"aria-selected": o,
|
|
628
|
+
"aria-disabled": d,
|
|
629
|
+
children: [
|
|
630
|
+
/* @__PURE__ */ t(v, {
|
|
631
|
+
LeftIcon: e,
|
|
632
|
+
text: r,
|
|
633
|
+
contextualText: p === "left" ? u : null,
|
|
634
|
+
withIconContainer: n
|
|
635
|
+
}),
|
|
636
|
+
/* @__PURE__ */ h(O, {
|
|
637
|
+
children: [
|
|
638
|
+
p === "right" && /* @__PURE__ */ t(w, {
|
|
639
|
+
children: M(u) ? /* @__PURE__ */ t(J, {
|
|
640
|
+
children: /* @__PURE__ */ t(k, {
|
|
641
|
+
text: u
|
|
642
|
+
})
|
|
643
|
+
}) : u
|
|
644
|
+
}),
|
|
645
|
+
o && i && /* @__PURE__ */ t(q, {
|
|
646
|
+
size: y.icon.size.md
|
|
647
|
+
}),
|
|
648
|
+
g && /* @__PURE__ */ t($, {
|
|
649
|
+
size: y.icon.size.sm,
|
|
650
|
+
color: y.font.color.tertiary
|
|
651
|
+
})
|
|
652
|
+
]
|
|
653
|
+
})
|
|
654
|
+
]
|
|
655
|
+
});
|
|
656
|
+
}, Ze = /* @__PURE__ */ l("div", {
|
|
657
|
+
target: "e1uepgjk0"
|
|
658
|
+
})("display:flex;align-items:center;flex:1 0 0;gap:", ({ theme: e }) => e.spacing(1), ";max-width:100%;text-overflow:ellipsis;overflow:hidden;"), Vt = ({ avatar: e, text: n, contextualText: r, selected: o, className: i, onClick: a, disabled: c, focused: d, testId: s }) => {
|
|
659
|
+
const g = m();
|
|
660
|
+
return /* @__PURE__ */ h(j, {
|
|
661
|
+
onClick: a,
|
|
662
|
+
className: i,
|
|
663
|
+
disabled: c,
|
|
664
|
+
focused: d,
|
|
665
|
+
"data-testid": s,
|
|
666
|
+
role: "option",
|
|
667
|
+
"aria-selected": o,
|
|
668
|
+
"aria-disabled": c,
|
|
669
|
+
children: [
|
|
670
|
+
/* @__PURE__ */ h(b, {
|
|
671
|
+
children: [
|
|
672
|
+
e,
|
|
673
|
+
/* @__PURE__ */ h(Ze, {
|
|
674
|
+
children: [
|
|
675
|
+
/* @__PURE__ */ t(w, {
|
|
676
|
+
children: /* @__PURE__ */ t(k, {
|
|
677
|
+
text: n
|
|
678
|
+
})
|
|
679
|
+
}),
|
|
680
|
+
r && /* @__PURE__ */ h(z, {
|
|
681
|
+
children: [
|
|
682
|
+
/* @__PURE__ */ t(L, {
|
|
683
|
+
children: "·"
|
|
684
|
+
}),
|
|
685
|
+
/* @__PURE__ */ t(L, {
|
|
686
|
+
children: /* @__PURE__ */ t(k, {
|
|
687
|
+
text: r
|
|
688
|
+
})
|
|
689
|
+
})
|
|
690
|
+
]
|
|
691
|
+
})
|
|
692
|
+
]
|
|
693
|
+
})
|
|
694
|
+
]
|
|
695
|
+
}),
|
|
696
|
+
o && /* @__PURE__ */ t(G, {
|
|
697
|
+
size: g.icon.size.md
|
|
698
|
+
})
|
|
699
|
+
]
|
|
700
|
+
});
|
|
701
|
+
}, et = {
|
|
702
|
+
gray: "Gray",
|
|
703
|
+
tomato: "Tomato",
|
|
704
|
+
red: "Red",
|
|
705
|
+
ruby: "Ruby",
|
|
706
|
+
crimson: "Crimson",
|
|
707
|
+
pink: "Pink",
|
|
708
|
+
plum: "Plum",
|
|
709
|
+
purple: "Purple",
|
|
710
|
+
violet: "Violet",
|
|
711
|
+
iris: "Iris",
|
|
712
|
+
cyan: "Cyan",
|
|
713
|
+
turquoise: "Turquoise",
|
|
714
|
+
sky: "Sky",
|
|
715
|
+
blue: "Blue",
|
|
716
|
+
jade: "Jade",
|
|
717
|
+
green: "Green",
|
|
718
|
+
grass: "Grass",
|
|
719
|
+
mint: "Mint",
|
|
720
|
+
lime: "Lime",
|
|
721
|
+
bronze: "Bronze",
|
|
722
|
+
gold: "Gold",
|
|
723
|
+
brown: "Brown",
|
|
724
|
+
orange: "Orange",
|
|
725
|
+
amber: "Amber",
|
|
726
|
+
yellow: "Yellow"
|
|
727
|
+
}, Et = ({ color: e, selected: n, className: r, onClick: o, disabled: i, focused: a, variant: c = "default", colorLabels: d = et }) => {
|
|
728
|
+
const s = m();
|
|
729
|
+
return /* @__PURE__ */ h(j, {
|
|
730
|
+
onClick: o,
|
|
731
|
+
className: r,
|
|
732
|
+
disabled: i,
|
|
733
|
+
focused: a,
|
|
734
|
+
children: [
|
|
735
|
+
/* @__PURE__ */ h(b, {
|
|
736
|
+
children: [
|
|
737
|
+
/* @__PURE__ */ t(ye, {
|
|
738
|
+
colorName: e,
|
|
739
|
+
variant: c
|
|
740
|
+
}),
|
|
741
|
+
/* @__PURE__ */ t(w, {
|
|
742
|
+
children: d[e]
|
|
743
|
+
})
|
|
744
|
+
]
|
|
745
|
+
}),
|
|
746
|
+
n && /* @__PURE__ */ t(G, {
|
|
747
|
+
size: s.icon.size.md
|
|
748
|
+
})
|
|
749
|
+
]
|
|
750
|
+
});
|
|
751
|
+
}, Wt = ({ color: e, selected: n, focused: r, isKeySelected: o, className: i, onClick: a, text: c, variant: d = "solid", LeftIcon: s }) => {
|
|
752
|
+
const g = m();
|
|
753
|
+
return /* @__PURE__ */ h(j, {
|
|
754
|
+
onClick: a,
|
|
755
|
+
className: i,
|
|
756
|
+
focused: r,
|
|
757
|
+
isKeySelected: o,
|
|
758
|
+
children: [
|
|
759
|
+
/* @__PURE__ */ t(b, {
|
|
760
|
+
children: /* @__PURE__ */ t(R, {
|
|
761
|
+
variant: d,
|
|
762
|
+
color: e,
|
|
763
|
+
text: c,
|
|
764
|
+
Icon: s ?? void 0
|
|
765
|
+
})
|
|
766
|
+
}),
|
|
767
|
+
n && /* @__PURE__ */ t(G, {
|
|
768
|
+
size: g.icon.size.md
|
|
769
|
+
})
|
|
770
|
+
]
|
|
771
|
+
});
|
|
772
|
+
}, tt = /* @__PURE__ */ l("li", {
|
|
773
|
+
target: "e152fctu0"
|
|
774
|
+
})("--horizontal-padding:", ({ theme: e }) => e.spacing(1), ";--vertical-padding:", ({ theme: e }) => e.spacing(2), ";align-items:center;border-radius:", ({ theme: e }) => e.border.radius.sm, ";cursor:pointer;display:flex;flex-direction:row;font-size:", ({ theme: e }) => e.font.size.sm, ";gap:", ({ theme: e }) => e.spacing(2), ";height:calc(32px - 2 * var(--vertical-padding));justify-content:space-between;padding:var(--vertical-padding) var(--horizontal-padding);background:", ({ selected: e, theme: n }) => e ? n.background.transparent.medium : "", ";color:", ({ theme: e }) => e.font.color.secondary, ";", K, ";position:relative;user-select:none;width:calc(100% - 2 * var(--horizontal-padding));"), Kt = ({ LeftIcon: e, withIconContainer: n = !1, text: r, className: o, selected: i, onClick: a }) => /* @__PURE__ */ t(tt, {
|
|
775
|
+
onClick: (d) => {
|
|
776
|
+
a && (d.preventDefault(), d.stopPropagation(), a?.(d));
|
|
777
|
+
},
|
|
778
|
+
className: o,
|
|
779
|
+
selected: i,
|
|
780
|
+
children: /* @__PURE__ */ t(b, {
|
|
781
|
+
children: /* @__PURE__ */ t(v, {
|
|
782
|
+
LeftIcon: e ?? void 0,
|
|
783
|
+
text: r,
|
|
784
|
+
withIconContainer: n
|
|
785
|
+
})
|
|
786
|
+
})
|
|
787
|
+
}), nt = /* @__PURE__ */ l("div", {
|
|
788
|
+
target: "e1gzux200"
|
|
789
|
+
})("align-items:center;cursor:pointer;display:flex;justify-content:space-between;width:100%;"), Yt = ({ focused: e, LeftIcon: n, withIconContainer: r = !1, text: o, toggled: i, className: a, onToggleChange: c, toggleSize: d, disabled: s = !1 }) => /* @__PURE__ */ t(x, {
|
|
790
|
+
className: a,
|
|
791
|
+
focused: e,
|
|
792
|
+
disabled: s,
|
|
793
|
+
onClick: () => {
|
|
794
|
+
s || c?.(!i);
|
|
795
|
+
},
|
|
796
|
+
children: /* @__PURE__ */ h(nt, {
|
|
797
|
+
children: [
|
|
798
|
+
/* @__PURE__ */ t(v, {
|
|
799
|
+
LeftIcon: n,
|
|
800
|
+
text: o,
|
|
801
|
+
withIconContainer: r,
|
|
802
|
+
disabled: s
|
|
803
|
+
}),
|
|
804
|
+
/* @__PURE__ */ t(O, {
|
|
805
|
+
onClick: (u) => u.stopPropagation(),
|
|
806
|
+
children: /* @__PURE__ */ t(F, {
|
|
807
|
+
value: i,
|
|
808
|
+
onChange: s ? void 0 : c,
|
|
809
|
+
toggleSize: d,
|
|
810
|
+
disabled: s
|
|
811
|
+
})
|
|
812
|
+
})
|
|
813
|
+
]
|
|
814
|
+
})
|
|
815
|
+
}), rt = /* @__PURE__ */ l("div", {
|
|
816
|
+
target: "e1n2xjx60"
|
|
817
|
+
})("align-items:center;background-color:", ({ isActive: e, theme: n }) => e ? n.background.transparent.light : "none", ";border-radius:", ({ theme: e }) => e.spacing(1), ";cursor:pointer;display:flex;height:", ({ theme: e }) => e.spacing(10), ";justify-content:center;transition:background-color ", ({ theme: e }) => e.animation.duration.fast, `s
|
|
818
|
+
ease;width:`, ({ theme: e }) => e.spacing(10), ";&:hover{background-color:", ({ theme: e }) => e.background.transparent.light, ";}"), ot = ({ Icon: e, isActive: n, onClick: r }) => {
|
|
819
|
+
const o = m();
|
|
820
|
+
return /* @__PURE__ */ t(rt, {
|
|
821
|
+
isActive: n,
|
|
822
|
+
onClick: r,
|
|
823
|
+
children: /* @__PURE__ */ t(e, {
|
|
824
|
+
color: o.color.gray10,
|
|
825
|
+
size: o.icon.size.lg
|
|
826
|
+
})
|
|
827
|
+
});
|
|
828
|
+
}, it = /* @__PURE__ */ l("div", {
|
|
829
|
+
target: "edbv6n30"
|
|
830
|
+
})("display:flex;gap:", ({ theme: e }) => e.spacing(4), ";justify-content:center;padding:", ({ theme: e }) => e.spacing(3), ";z-index:1001;"), Jt = ({ activeItemName: e, items: n }) => /* @__PURE__ */ t(it, {
|
|
831
|
+
children: n.map(({ Icon: r, name: o, onClick: i }) => /* @__PURE__ */ t(ot, {
|
|
832
|
+
Icon: r,
|
|
833
|
+
isActive: e === o,
|
|
834
|
+
onClick: i
|
|
835
|
+
}, o))
|
|
836
|
+
}), at = /* @__PURE__ */ l("div", {
|
|
837
|
+
target: "ecyksfv0"
|
|
838
|
+
})("width:14px;height:14px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:", ({ theme: e }) => e.font.size.xxs, ";font-weight:", ({ theme: e }) => e.font.weight.semiBold, ";background:", ({ theme: e, variant: n }) => n === "primary" ? e.color.blue : e.background.transparent.light, ";color:", ({ theme: e, variant: n }) => n === "primary" ? "white" : e.font.color.secondary, ";"), Qt = ({ count: e, variant: n = "primary", className: r }) => /* @__PURE__ */ t(at, {
|
|
839
|
+
variant: n,
|
|
840
|
+
className: r,
|
|
841
|
+
children: e
|
|
842
|
+
});
|
|
843
|
+
export {
|
|
844
|
+
It as AdvancedSettingsToggle,
|
|
845
|
+
_t as CAL_LINK,
|
|
846
|
+
Se as ClickToActionLink,
|
|
847
|
+
Mt as ContactLink,
|
|
848
|
+
Le as GITHUB_LINK,
|
|
849
|
+
Lt as GithubVersionLink,
|
|
850
|
+
jt as LinkType,
|
|
851
|
+
Ot as MenuItem,
|
|
852
|
+
Pt as MenuItemAvatar,
|
|
853
|
+
Gt as MenuItemDraggable,
|
|
854
|
+
He as MenuItemHotKeys,
|
|
855
|
+
v as MenuItemLeftContent,
|
|
856
|
+
Ut as MenuItemMultiSelect,
|
|
857
|
+
Dt as MenuItemMultiSelectAvatar,
|
|
858
|
+
Ft as MenuItemMultiSelectTag,
|
|
859
|
+
qt as MenuItemNavigate,
|
|
860
|
+
Ht as MenuItemSelect,
|
|
861
|
+
Vt as MenuItemSelectAvatar,
|
|
862
|
+
Et as MenuItemSelectColor,
|
|
863
|
+
Wt as MenuItemSelectTag,
|
|
864
|
+
Kt as MenuItemSuggestion,
|
|
865
|
+
Yt as MenuItemToggle,
|
|
866
|
+
Bt as MenuPicker,
|
|
867
|
+
Jt as NavigationBar,
|
|
868
|
+
ot as NavigationBarItem,
|
|
869
|
+
Qt as NotificationCounter,
|
|
870
|
+
$t as RawLink,
|
|
871
|
+
Re as RoundedLink,
|
|
872
|
+
At as SocialLink,
|
|
873
|
+
Ve as StyledDraggableItem,
|
|
874
|
+
P as StyledHoverableMenuItemBase,
|
|
875
|
+
x as StyledMenuItemBase,
|
|
876
|
+
Y as StyledMenuItemContextualText,
|
|
877
|
+
G as StyledMenuItemIconCheck,
|
|
878
|
+
w as StyledMenuItemLabel,
|
|
879
|
+
L as StyledMenuItemLabelLight,
|
|
880
|
+
b as StyledMenuItemLeftContent,
|
|
881
|
+
O as StyledMenuItemRightContent,
|
|
882
|
+
j as StyledMenuItemSelect,
|
|
883
|
+
Rt as StyledNoIconFiller,
|
|
884
|
+
J as StyledRightMenuItemContextualText,
|
|
885
|
+
Nt as TWENTY_PRICING_LINK,
|
|
886
|
+
Tt as UndecoratedLink
|
|
887
|
+
};
|