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,11 @@
|
|
|
1
|
+
import { JsonArray } from 'type-fest';
|
|
2
|
+
import { JsonNodeHighlighting } from '../types/JsonNodeHighlighting';
|
|
3
|
+
|
|
4
|
+
export declare const JsonArrayNode: ({ label, value, depth, keyPath, highlighting, }: {
|
|
5
|
+
label?: string;
|
|
6
|
+
value: JsonArray;
|
|
7
|
+
depth: number;
|
|
8
|
+
keyPath: string;
|
|
9
|
+
highlighting: JsonNodeHighlighting | undefined;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
//# sourceMappingURL=JsonArrayNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonArrayNode.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/components/JsonArrayNode.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AAC3F,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,WAAW,CAAC;AAE3C,eAAO,MAAM,aAAa,GAAI,iDAM3B;IACD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,SAAS,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,oBAAoB,GAAG,SAAS,CAAC;CAChD,4CAmBA,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { JsonValue } from 'type-fest';
|
|
2
|
+
import { JsonNodeHighlighting } from '../types/JsonNodeHighlighting';
|
|
3
|
+
import { IconComponent } from '../../display';
|
|
4
|
+
|
|
5
|
+
export declare const JsonNestedNode: ({ label, Icon, elements, renderElementsCount, emptyElementsText, depth, keyPath, highlighting, }: {
|
|
6
|
+
label?: string;
|
|
7
|
+
Icon: IconComponent;
|
|
8
|
+
elements: Array<{
|
|
9
|
+
id: string | number;
|
|
10
|
+
label: string;
|
|
11
|
+
value: JsonValue;
|
|
12
|
+
}>;
|
|
13
|
+
renderElementsCount?: (count: number) => string;
|
|
14
|
+
emptyElementsText: string;
|
|
15
|
+
depth: number;
|
|
16
|
+
keyPath: string;
|
|
17
|
+
highlighting?: JsonNodeHighlighting | undefined;
|
|
18
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
//# sourceMappingURL=JsonNestedNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonNestedNode.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/components/JsonNestedNode.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,aAAa,CAAC;AAOjD,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AAK3F,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,WAAW,CAAC;AAoB3C,eAAO,MAAM,cAAc,GAAI,kGAS5B;IACD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,aAAa,CAAC;IACpB,QAAQ,EAAE,KAAK,CAAC;QAAE,EAAE,EAAE,MAAM,GAAG,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,SAAS,CAAA;KAAE,CAAC,CAAC;IAC1E,mBAAmB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;IAChD,iBAAiB,EAAE,MAAM,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,oBAAoB,GAAG,SAAS,CAAC;CACjD,4CAkGA,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { JsonValue } from 'type-fest';
|
|
2
|
+
|
|
3
|
+
export declare const JsonNode: ({ label, value, depth, keyPath, }: {
|
|
4
|
+
label?: string;
|
|
5
|
+
value: JsonValue;
|
|
6
|
+
depth: number;
|
|
7
|
+
keyPath: string;
|
|
8
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
//# sourceMappingURL=JsonNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonNode.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/components/JsonNode.tsx"],"names":[],"mappings":"AAkBA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,WAAW,CAAC;AAE3C,eAAO,MAAM,QAAQ,GAAI,mCAKtB;IACD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,SAAS,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;CACjB,4CAsEA,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { JsonObject } from 'type-fest';
|
|
2
|
+
import { JsonNodeHighlighting } from '../types/JsonNodeHighlighting';
|
|
3
|
+
|
|
4
|
+
export declare const JsonObjectNode: ({ label, value, depth, keyPath, highlighting, }: {
|
|
5
|
+
label?: string;
|
|
6
|
+
value: JsonObject;
|
|
7
|
+
depth: number;
|
|
8
|
+
keyPath: string;
|
|
9
|
+
highlighting: JsonNodeHighlighting | undefined;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
//# sourceMappingURL=JsonObjectNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonObjectNode.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/components/JsonObjectNode.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AAC3F,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,WAAW,CAAC;AAE5C,eAAO,MAAM,cAAc,GAAI,iDAM5B;IACD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,UAAU,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,oBAAoB,GAAG,SAAS,CAAC;CAChD,4CAmBA,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { JsonValue } from 'type-fest';
|
|
2
|
+
import { GetJsonNodeHighlighting } from '../types/GetJsonNodeHighlighting';
|
|
3
|
+
import { ShouldExpandNodeInitiallyProps } from '../contexts/JsonTreeContext';
|
|
4
|
+
|
|
5
|
+
export declare const JsonTree: ({ value, getNodeHighlighting, shouldExpandNodeInitially, emptyArrayLabel, emptyObjectLabel, emptyStringLabel, arrowButtonCollapsedLabel, arrowButtonExpandedLabel, onNodeValueClick, }: {
|
|
6
|
+
value: JsonValue;
|
|
7
|
+
getNodeHighlighting?: GetJsonNodeHighlighting;
|
|
8
|
+
shouldExpandNodeInitially: (params: ShouldExpandNodeInitiallyProps) => boolean;
|
|
9
|
+
emptyArrayLabel: string;
|
|
10
|
+
emptyObjectLabel: string;
|
|
11
|
+
emptyStringLabel: string;
|
|
12
|
+
arrowButtonCollapsedLabel: string;
|
|
13
|
+
arrowButtonExpandedLabel: string;
|
|
14
|
+
onNodeValueClick?: (valueAsString: string) => void;
|
|
15
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
//# sourceMappingURL=JsonTree.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonTree.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/components/JsonTree.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,KAAK,8BAA8B,EAAE,MAAM,8CAA8C,CAAC;AACnG,OAAO,EAAE,KAAK,uBAAuB,EAAE,MAAM,mDAAmD,CAAC;AACjG,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,WAAW,CAAC;AAE3C,eAAO,MAAM,QAAQ,GAAI,wLAUtB;IACD,KAAK,EAAE,SAAS,CAAC;IACjB,mBAAmB,CAAC,EAAE,uBAAuB,CAAC;IAC9C,yBAAyB,EAAE,CACzB,MAAM,EAAE,8BAA8B,KACnC,OAAO,CAAC;IACb,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IACzB,yBAAyB,EAAE,MAAM,CAAC;IAClC,wBAAwB,EAAE,MAAM,CAAC;IACjC,gBAAgB,CAAC,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,IAAI,CAAC;CACpD,4CAmBA,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { JsonTreeContextType } from '../contexts/JsonTreeContext';
|
|
2
|
+
|
|
3
|
+
export declare const JsonTreeContextProvider: ({ value, children, }: {
|
|
4
|
+
value: JsonTreeContextType;
|
|
5
|
+
children: React.ReactNode;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
//# sourceMappingURL=JsonTreeContextProvider.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonTreeContextProvider.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/components/JsonTreeContextProvider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,mBAAmB,EACzB,MAAM,8CAA8C,CAAC;AAEtD,eAAO,MAAM,uBAAuB,GAAI,sBAGrC;IACD,KAAK,EAAE,mBAAmB,CAAC;IAC3B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,4CAMA,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { JsonNodeHighlighting } from '../types/JsonNodeHighlighting';
|
|
2
|
+
import { IconComponent } from '../../display';
|
|
3
|
+
|
|
4
|
+
type JsonValueNodeProps = {
|
|
5
|
+
valueAsString: string;
|
|
6
|
+
highlighting: JsonNodeHighlighting | undefined;
|
|
7
|
+
} & ({
|
|
8
|
+
label: string;
|
|
9
|
+
Icon: IconComponent;
|
|
10
|
+
} | {
|
|
11
|
+
label?: never;
|
|
12
|
+
Icon?: unknown;
|
|
13
|
+
});
|
|
14
|
+
export declare const JsonValueNode: (props: JsonValueNodeProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export {};
|
|
16
|
+
//# sourceMappingURL=JsonValueNode.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonValueNode.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/components/JsonValueNode.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,aAAa,CAAC;AAIjD,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AAM3F,KAAK,kBAAkB,GAAG;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,EAAE,oBAAoB,GAAG,SAAS,CAAC;CAChD,GAAG,CACA;IACE,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,aAAa,CAAC;CACrB,GACD;IACE,KAAK,CAAC,EAAE,KAAK,CAAC;IACd,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB,CACJ,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,OAAO,kBAAkB,4CAiBtD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonArrow.d.ts","sourceRoot":"","sources":["../../../../src/json-visualizer/components/internal/JsonArrow.tsx"],"names":[],"mappings":"AA8BA,eAAO,MAAM,SAAS,GAAI,+BAIvB;IACD,MAAM,EAAE,OAAO,CAAC;IAChB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,GAAG,KAAK,CAAC;CAC1B,4CA2BA,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const StyledList: import('@emotion/styled').StyledComponent<{
|
|
2
|
+
theme?: import("@emotion/react").Theme;
|
|
3
|
+
as?: React.ElementType;
|
|
4
|
+
} & {
|
|
5
|
+
depth: number;
|
|
6
|
+
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLUListElement>, HTMLUListElement>, {}>;
|
|
7
|
+
export { StyledList as JsonList };
|
|
8
|
+
//# sourceMappingURL=JsonList.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonList.d.ts","sourceRoot":"","sources":["../../../../src/json-visualizer/components/internal/JsonList.tsx"],"names":[],"mappings":"AAGA,QAAA,MAAM,UAAU;;;;WAAsB,MAAM;6GAgB3C,CAAC;AAEF,OAAO,EAAE,UAAU,IAAI,QAAQ,EAAE,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const StyledListItem: import('@emotion/styled').StyledComponent<{
|
|
2
|
+
theme?: import("@emotion/react").Theme;
|
|
3
|
+
as?: React.ElementType;
|
|
4
|
+
}, import("react").DetailedHTMLProps<import("react").LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, {}>;
|
|
5
|
+
export { StyledListItem as JsonListItem };
|
|
6
|
+
//# sourceMappingURL=JsonListItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonListItem.d.ts","sourceRoot":"","sources":["../../../../src/json-visualizer/components/internal/JsonListItem.tsx"],"names":[],"mappings":"AAEA,QAAA,MAAM,cAAc;;;yGAKnB,CAAC;AAEF,OAAO,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { JsonNodeHighlighting } from '../../types/JsonNodeHighlighting';
|
|
2
|
+
import { IconComponent } from '../../../display';
|
|
3
|
+
|
|
4
|
+
export declare const JsonNodeLabel: ({ label, Icon, highlighting, }: {
|
|
5
|
+
label: string;
|
|
6
|
+
Icon: IconComponent;
|
|
7
|
+
highlighting?: JsonNodeHighlighting | undefined;
|
|
8
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
//# sourceMappingURL=JsonNodeLabel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonNodeLabel.d.ts","sourceRoot":"","sources":["../../../../src/json-visualizer/components/internal/JsonNodeLabel.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,aAAa,CAAC;AACjD,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AAsC3F,eAAO,MAAM,aAAa,GAAI,gCAI3B;IACD,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,aAAa,CAAC;IACpB,YAAY,CAAC,EAAE,oBAAoB,GAAG,SAAS,CAAC;CACjD,4CAmBA,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { JsonNodeHighlighting } from '../../types/JsonNodeHighlighting';
|
|
2
|
+
|
|
3
|
+
export declare const JsonNodeValue: ({ valueAsString, highlighting, }: {
|
|
4
|
+
valueAsString: string;
|
|
5
|
+
highlighting?: JsonNodeHighlighting | undefined;
|
|
6
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
//# sourceMappingURL=JsonNodeValue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonNodeValue.d.ts","sourceRoot":"","sources":["../../../../src/json-visualizer/components/internal/JsonNodeValue.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AAiB3F,eAAO,MAAM,aAAa,GAAI,kCAG3B;IACD,aAAa,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,oBAAoB,GAAG,SAAS,CAAC;CACjD,4CAYA,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { GetJsonNodeHighlighting } from '../types/GetJsonNodeHighlighting';
|
|
2
|
+
|
|
3
|
+
export type ShouldExpandNodeInitiallyProps = {
|
|
4
|
+
keyPath: string;
|
|
5
|
+
depth: number;
|
|
6
|
+
};
|
|
7
|
+
export type JsonTreeContextType = {
|
|
8
|
+
getNodeHighlighting?: GetJsonNodeHighlighting;
|
|
9
|
+
shouldExpandNodeInitially: (params: ShouldExpandNodeInitiallyProps) => boolean;
|
|
10
|
+
emptyStringLabel: string;
|
|
11
|
+
emptyArrayLabel: string;
|
|
12
|
+
emptyObjectLabel: string;
|
|
13
|
+
arrowButtonCollapsedLabel: string;
|
|
14
|
+
arrowButtonExpandedLabel: string;
|
|
15
|
+
onNodeValueClick?: (valueAsString: string) => void;
|
|
16
|
+
};
|
|
17
|
+
export declare const JsonTreeContext: import('react').Context<JsonTreeContextType | undefined>;
|
|
18
|
+
//# sourceMappingURL=JsonTreeContext.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonTreeContext.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/contexts/JsonTreeContext.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,uBAAuB,EAAE,MAAM,mDAAmD,CAAC;AAGjG,MAAM,MAAM,8BAA8B,GAAG;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,CAAC;AAEhF,MAAM,MAAM,mBAAmB,GAAG;IAChC,mBAAmB,CAAC,EAAE,uBAAuB,CAAC;IAC9C,yBAAyB,EAAE,CACzB,MAAM,EAAE,8BAA8B,KACnC,OAAO,CAAC;IACb,gBAAgB,EAAE,MAAM,CAAC;IACzB,eAAe,EAAE,MAAM,CAAC;IACxB,gBAAgB,EAAE,MAAM,CAAC;IACzB,yBAAyB,EAAE,MAAM,CAAC;IAClC,wBAAwB,EAAE,MAAM,CAAC;IACjC,gBAAgB,CAAC,EAAE,CAAC,aAAa,EAAE,MAAM,KAAK,IAAI,CAAC;CACpD,CAAC;AAEF,eAAO,MAAM,eAAe,0DAE3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useJsonTreeContextOrThrow.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/hooks/useJsonTreeContextOrThrow.tsx"],"names":[],"mappings":"AAIA,eAAO,MAAM,yBAAyB,kFAUrC,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export { JsonArrayNode } from './components/JsonArrayNode';
|
|
2
|
+
export { JsonNestedNode } from './components/JsonNestedNode';
|
|
3
|
+
export { JsonNode } from './components/JsonNode';
|
|
4
|
+
export { JsonObjectNode } from './components/JsonObjectNode';
|
|
5
|
+
export { JsonTree } from './components/JsonTree';
|
|
6
|
+
export { JsonTreeContextProvider } from './components/JsonTreeContextProvider';
|
|
7
|
+
export { JsonValueNode } from './components/JsonValueNode';
|
|
8
|
+
export type { ShouldExpandNodeInitiallyProps, JsonTreeContextType, } from './contexts/JsonTreeContext';
|
|
9
|
+
export { JsonTreeContext } from './contexts/JsonTreeContext';
|
|
10
|
+
export { useJsonTreeContextOrThrow } from './hooks/useJsonTreeContextOrThrow';
|
|
11
|
+
export type { GetJsonNodeHighlighting } from './types/GetJsonNodeHighlighting';
|
|
12
|
+
export type { JsonNodeHighlighting } from './types/JsonNodeHighlighting';
|
|
13
|
+
export { isArray } from './utils/isArray';
|
|
14
|
+
export { isTwoFirstDepths } from './utils/isTwoFirstDepths';
|
|
15
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/json-visualizer/index.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC/E,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,YAAY,EACV,8BAA8B,EAC9B,mBAAmB,GACpB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAC7D,OAAO,EAAE,yBAAyB,EAAE,MAAM,mCAAmC,CAAC;AAC9E,YAAY,EAAE,uBAAuB,EAAE,MAAM,iCAAiC,CAAC;AAC/E,YAAY,EAAE,oBAAoB,EAAE,MAAM,8BAA8B,CAAC;AACzE,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetJsonNodeHighlighting.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/types/GetJsonNodeHighlighting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,gDAAgD,CAAC;AAE3F,MAAM,MAAM,uBAAuB,GAAG,CACpC,OAAO,EAAE,MAAM,KACZ,oBAAoB,GAAG,SAAS,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JsonNodeHighlighting.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/types/JsonNodeHighlighting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,WAAW,CAAC;AAE5C,MAAM,MAAM,oBAAoB,GAC5B,OAAO,CAAC,UAAU,EAAE,MAAM,GAAG,KAAK,CAAC,GACnC,cAAc,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isArray.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/utils/isArray.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO,GAClB,OAAO,OAAO,KACb,KAAK,IAAI,OAAO,EAAE,GAAG,SAAS,OAAO,EAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isTwoFirstDepths.d.ts","sourceRoot":"","sources":["../../../src/json-visualizer/utils/isTwoFirstDepths.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,8BAA8B,EAAE,MAAM,8CAA8C,CAAC;AAEnG,eAAO,MAAM,gBAAgB,GAAI,WAAW,8BAA8B,YAC9D,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const o=require("./emotion-react-jsx-runtime.browser.esm-pt_kQSCG.cjs"),D=require("@emotion/styled"),b=require("@sniptt/guards"),m=require("@emotion/react"),P=require("./VisibilityHidden-Bkyg_zrv.cjs"),j=require("react"),h=require("./isValidCountryCode-Dyji5s5r-MH68p3NE.cjs");require("react-router-dom");const N=require("./Animation-Dqlz22Qp.cjs"),x=require("framer-motion"),a=require("@tabler/icons-react"),B=e=>e&&e.__esModule?e:{default:e},d=B(D),C=j.createContext(void 0),u=()=>{const e=j.useContext(C);if(!h.Tr(e))throw new Error("useJsonTreeContextOrThrow must be used within a JsonTreeContextProvider");return e},R=d.default(x.motion.button,{target:"e1a5m94p0"})("align-items:center;background-color:",({theme:e,variant:r})=>r==="red"?e.background.danger:e.background.transparent.lighter,";border-color:",({theme:e,variant:r})=>r==="red"?e.border.color.danger:e.border.color.medium,";border-radius:",({theme:e})=>e.border.radius.sm,";border-style:solid;border-width:1px;display:flex;justify-content:center;padding-inline:",({theme:e})=>e.spacing(1),";height:24px;width:24px;box-sizing:border-box;cursor:pointer;"),H=x.motion.create(a.IconChevronDown),Y=({isOpen:e,onClick:r,variant:t})=>{const n=m.useTheme(),{arrowButtonCollapsedLabel:c,arrowButtonExpandedLabel:i}=u();return o.jsxs(R,{variant:t,onClick:r,children:[o.jsx(P.VisibilityHidden,{children:e?i:c}),o.jsx(H,{size:n.icon.size.md,color:t==="blue"?n.color.blue:t==="red"?n.font.color.danger:n.font.color.secondary,initial:!1,animate:{rotate:e?0:-90},transition:{duration:N.ANIMATION.duration.normal}})]})},I=d.default("ul",{target:"eayxlfb0"})("margin:0;padding:0;display:grid;row-gap:",({theme:e})=>e.spacing(2),";",({theme:e,depth:r})=>r>0&&m.css`
|
|
2
|
+
padding-left: ${e.spacing(8)};
|
|
3
|
+
|
|
4
|
+
> :first-of-type {
|
|
5
|
+
margin-top: ${e.spacing(2)};
|
|
6
|
+
}
|
|
7
|
+
`),F=d.default("span",{target:"e1c1vyj80"})("align-items:center;background-color:",({theme:e,highlighting:r})=>r==="blue"?e.color.blue3:r==="red"?e.background.danger:e.background.transparent.lighter,";border-color:",({theme:e,highlighting:r})=>r==="blue"?e.color.blue5:r==="red"?e.border.color.danger:e.border.color.medium,";color:",({theme:e,highlighting:r})=>r==="blue"?e.color.blue:r==="red"?e.font.color.danger:e.font.color.primary,";border-radius:",({theme:e})=>e.border.radius.sm,";border-style:solid;border-width:1px;height:24px;box-sizing:border-box;column-gap:",({theme:e})=>e.spacing(2),";display:grid;grid-template-columns:auto 1fr;align-items:center;white-space:nowrap;padding-block:",({theme:e})=>e.spacing(1),";padding-inline:",({theme:e})=>e.spacing(2),";"),A=({label:e,Icon:r,highlighting:t})=>{const n=m.useTheme();return o.jsxs(F,{highlighting:t,children:[o.jsx(r,{size:n.icon.size.md,color:t==="blue"?n.color.blue:t==="red"?n.font.color.danger:n.font.color.tertiary}),o.jsx("span",{children:e})]})},K=d.default("span",{target:"e1uq32gh0"})("align-items:center;box-sizing:border-box;color:",({theme:e,highlighting:r})=>r==="blue"?e.color.blue8:r==="red"?e.color.red8:e.font.color.tertiary,";display:inline-flex;height:24px;"),v=({valueAsString:e,highlighting:r})=>{const{onNodeValueClick:t}=u(),n=()=>{t?.(e)};return o.jsx(K,{highlighting:r,onClick:n,children:e})},q=({label:e,value:r,depth:t,keyPath:n,highlighting:c})=>{const{emptyObjectLabel:i}=u();return o.jsx(S,{elements:Object.entries(r).map(([s,l])=>({id:s,label:s,value:l})),renderElementsCount:s=>`{${s}}`,label:e,Icon:a.IconCube,depth:t,emptyElementsText:i,keyPath:n,highlighting:c})},G=d.default("li",{target:"e18nb3wl0"})("align-items:center;display:flex;list-style-type:none;white-space:nowrap;"),Q=d.default(G,{target:"e16o44ib0"})("column-gap:",({theme:e})=>e.spacing(2),";"),g=e=>o.jsxs(Q,{children:[e.label&&o.jsx(A,{label:e.label,Icon:e.Icon,highlighting:e.highlighting}),o.jsx(v,{valueAsString:e.valueAsString,highlighting:e.highlighting})]}),L=e=>b.isArray(e),w=({label:e,value:r,depth:t,keyPath:n})=>{const{getNodeHighlighting:c,emptyStringLabel:i}=u(),s=c?.(n);return h.Tr(r)?b.isString(r)?o.jsx(g,{label:e,valueAsString:b.isNonEmptyString(r)?r:i,Icon:a.IconTypography,highlighting:s}):b.isNumber(r)?o.jsx(g,{label:e,valueAsString:String(r),Icon:a.IconNumber9,highlighting:s}):b.isBoolean(r)?o.jsx(g,{label:e,valueAsString:String(r),Icon:a.IconCheckbox,highlighting:s}):L(r)?o.jsx(O,{label:e,value:r,depth:t,keyPath:n,highlighting:s}):o.jsx(q,{label:e,value:r,depth:t,keyPath:n,highlighting:s}):o.jsx(g,{label:e,valueAsString:"null",Icon:a.IconCircleOff,highlighting:s})},J=d.default("li",{target:"ele0b3h0"})("display:grid;list-style-type:none;"),U=d.default("div",{target:"ele0b3h1"})("display:flex;align-items:center;gap:",({theme:e})=>e.spacing(2),";"),W=d.default("span",{target:"ele0b3h2"})("color:",({theme:e,variant:r})=>r==="red"?e.font.color.danger:e.font.color.tertiary,";"),X=d.default(I)``.withComponent(x.motion.ul),S=({label:e,Icon:r,elements:t,renderElementsCount:n,emptyElementsText:c,depth:i,keyPath:s,highlighting:l})=>{const{shouldExpandNodeInitially:p}=u(),E=!h.Tr(e),[y,_]=j.useState(p({keyPath:s,depth:i})),T=o.jsx(X,{initial:{height:0,opacity:0,overflowY:"clip"},animate:{height:"auto",opacity:1,overflowY:"clip"},exit:{height:0,opacity:0,overflowY:"clip"},transition:{duration:N.ANIMATION.duration.normal},depth:i,children:t.length===0?o.jsx(v,{valueAsString:c}):t.map(({id:f,label:z,value:M})=>{const V=b.isNonEmptyString(s)?`${s}.${f}`:String(f);return o.jsx(w,{label:z,value:M,depth:i+1,keyPath:V},f)})}),$=()=>{_(!y)};return E?o.jsx(J,{children:o.jsx(x.AnimatePresence,{initial:!1,children:T})}):o.jsxs(J,{children:[o.jsxs(U,{children:[o.jsx(Y,{isOpen:y,onClick:$,variant:l==="partial-blue"?"blue":l==="red"?l:void 0}),o.jsx(A,{label:e,Icon:r,highlighting:l==="red"?l:void 0}),n&&o.jsx(W,{variant:l==="red"?"red":void 0,children:n(t.length)})]}),o.jsx(x.AnimatePresence,{initial:!1,children:y&&T})]})},O=({label:e,value:r,depth:t,keyPath:n,highlighting:c})=>{const{emptyArrayLabel:i}=u();return o.jsx(S,{elements:[...r.entries()].map(([s,l])=>({id:s,label:String(s),value:l})),renderElementsCount:s=>`[${s}]`,label:e,Icon:a.IconBrackets,depth:t,emptyElementsText:i,keyPath:n,highlighting:c})},k=({value:e,children:r})=>o.jsx(C.Provider,{value:e,children:r}),Z=({value:e,getNodeHighlighting:r,shouldExpandNodeInitially:t,emptyArrayLabel:n,emptyObjectLabel:c,emptyStringLabel:i,arrowButtonCollapsedLabel:s,arrowButtonExpandedLabel:l,onNodeValueClick:p})=>o.jsx(k,{value:{getNodeHighlighting:r,shouldExpandNodeInitially:t,emptyArrayLabel:n,emptyObjectLabel:c,emptyStringLabel:i,arrowButtonCollapsedLabel:s,arrowButtonExpandedLabel:l,onNodeValueClick:p},children:o.jsx(I,{depth:0,children:o.jsx(w,{value:e,depth:0,keyPath:""})})}),ee=({depth:e})=>e<=1;exports.JsonArrayNode=O;exports.JsonNestedNode=S;exports.JsonNode=w;exports.JsonObjectNode=q;exports.JsonTree=Z;exports.JsonTreeContext=C;exports.JsonTreeContextProvider=k;exports.JsonValueNode=g;exports.isArray=L;exports.isTwoFirstDepths=ee;exports.useJsonTreeContextOrThrow=u;
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
import { j as u, a as o } from "./emotion-react-jsx-runtime.browser.esm-BUNawPtg.js";
|
|
2
|
+
import a from "@emotion/styled";
|
|
3
|
+
import { isArray as B, isString as V, isNonEmptyString as w, isNumber as D, isBoolean as P } from "@sniptt/guards";
|
|
4
|
+
import { useTheme as S, css as Y } from "@emotion/react";
|
|
5
|
+
import { V as H } from "./VisibilityHidden-D9rwE91j.js";
|
|
6
|
+
import { createContext as M, useContext as q, useState as F } from "react";
|
|
7
|
+
import { T as y } from "./isValidCountryCode-Dyji5s5r-B7O5eJvP.js";
|
|
8
|
+
import "react-router-dom";
|
|
9
|
+
import { A as I } from "./Animation-W4Sjfu-g.js";
|
|
10
|
+
import { motion as f, AnimatePresence as h } from "framer-motion";
|
|
11
|
+
import { IconChevronDown as K, IconCube as R, IconCircleOff as G, IconTypography as Q, IconNumber9 as U, IconCheckbox as W, IconBrackets as X } from "@tabler/icons-react";
|
|
12
|
+
const A = /* @__PURE__ */ M(void 0), d = () => {
|
|
13
|
+
const e = q(A);
|
|
14
|
+
if (!y(e))
|
|
15
|
+
throw new Error("useJsonTreeContextOrThrow must be used within a JsonTreeContextProvider");
|
|
16
|
+
return e;
|
|
17
|
+
}, Z = /* @__PURE__ */ a(f.button, {
|
|
18
|
+
target: "e1a5m94p0"
|
|
19
|
+
})("align-items:center;background-color:", ({ theme: e, variant: r }) => r === "red" ? e.background.danger : e.background.transparent.lighter, ";border-color:", ({ theme: e, variant: r }) => r === "red" ? e.border.color.danger : e.border.color.medium, ";border-radius:", ({ theme: e }) => e.border.radius.sm, ";border-style:solid;border-width:1px;display:flex;justify-content:center;padding-inline:", ({ theme: e }) => e.spacing(1), ";height:24px;width:24px;box-sizing:border-box;cursor:pointer;"), _ = f.create(K), ee = ({ isOpen: e, onClick: r, variant: t }) => {
|
|
20
|
+
const n = S(), { arrowButtonCollapsedLabel: c, arrowButtonExpandedLabel: l } = d();
|
|
21
|
+
return /* @__PURE__ */ u(Z, {
|
|
22
|
+
variant: t,
|
|
23
|
+
onClick: r,
|
|
24
|
+
children: [
|
|
25
|
+
/* @__PURE__ */ o(H, {
|
|
26
|
+
children: e ? l : c
|
|
27
|
+
}),
|
|
28
|
+
/* @__PURE__ */ o(_, {
|
|
29
|
+
size: n.icon.size.md,
|
|
30
|
+
color: t === "blue" ? n.color.blue : t === "red" ? n.font.color.danger : n.font.color.secondary,
|
|
31
|
+
initial: !1,
|
|
32
|
+
animate: {
|
|
33
|
+
rotate: e ? 0 : -90
|
|
34
|
+
},
|
|
35
|
+
transition: {
|
|
36
|
+
duration: I.duration.normal
|
|
37
|
+
}
|
|
38
|
+
})
|
|
39
|
+
]
|
|
40
|
+
});
|
|
41
|
+
}, T = /* @__PURE__ */ a("ul", {
|
|
42
|
+
target: "eayxlfb0"
|
|
43
|
+
})("margin:0;padding:0;display:grid;row-gap:", ({ theme: e }) => e.spacing(2), ";", ({ theme: e, depth: r }) => r > 0 && Y`
|
|
44
|
+
padding-left: ${e.spacing(8)};
|
|
45
|
+
|
|
46
|
+
> :first-of-type {
|
|
47
|
+
margin-top: ${e.spacing(2)};
|
|
48
|
+
}
|
|
49
|
+
`), re = /* @__PURE__ */ a("span", {
|
|
50
|
+
target: "e1c1vyj80"
|
|
51
|
+
})("align-items:center;background-color:", ({ theme: e, highlighting: r }) => r === "blue" ? e.color.blue3 : r === "red" ? e.background.danger : e.background.transparent.lighter, ";border-color:", ({ theme: e, highlighting: r }) => r === "blue" ? e.color.blue5 : r === "red" ? e.border.color.danger : e.border.color.medium, ";color:", ({ theme: e, highlighting: r }) => r === "blue" ? e.color.blue : r === "red" ? e.font.color.danger : e.font.color.primary, ";border-radius:", ({ theme: e }) => e.border.radius.sm, ";border-style:solid;border-width:1px;height:24px;box-sizing:border-box;column-gap:", ({ theme: e }) => e.spacing(2), ";display:grid;grid-template-columns:auto 1fr;align-items:center;white-space:nowrap;padding-block:", ({ theme: e }) => e.spacing(1), ";padding-inline:", ({ theme: e }) => e.spacing(2), ";"), N = ({ label: e, Icon: r, highlighting: t }) => {
|
|
52
|
+
const n = S();
|
|
53
|
+
return /* @__PURE__ */ u(re, {
|
|
54
|
+
highlighting: t,
|
|
55
|
+
children: [
|
|
56
|
+
/* @__PURE__ */ o(r, {
|
|
57
|
+
size: n.icon.size.md,
|
|
58
|
+
color: t === "blue" ? n.color.blue : t === "red" ? n.font.color.danger : n.font.color.tertiary
|
|
59
|
+
}),
|
|
60
|
+
/* @__PURE__ */ o("span", {
|
|
61
|
+
children: e
|
|
62
|
+
})
|
|
63
|
+
]
|
|
64
|
+
});
|
|
65
|
+
}, oe = /* @__PURE__ */ a("span", {
|
|
66
|
+
target: "e1uq32gh0"
|
|
67
|
+
})("align-items:center;box-sizing:border-box;color:", ({ theme: e, highlighting: r }) => r === "blue" ? e.color.blue8 : r === "red" ? e.color.red8 : e.font.color.tertiary, ";display:inline-flex;height:24px;"), J = ({ valueAsString: e, highlighting: r }) => {
|
|
68
|
+
const { onNodeValueClick: t } = d();
|
|
69
|
+
return /* @__PURE__ */ o(oe, {
|
|
70
|
+
highlighting: r,
|
|
71
|
+
onClick: () => {
|
|
72
|
+
t?.(e);
|
|
73
|
+
},
|
|
74
|
+
children: e
|
|
75
|
+
});
|
|
76
|
+
}, ne = ({ label: e, value: r, depth: t, keyPath: n, highlighting: c }) => {
|
|
77
|
+
const { emptyObjectLabel: l } = d();
|
|
78
|
+
return /* @__PURE__ */ o(L, {
|
|
79
|
+
elements: Object.entries(r).map(([i, s]) => ({
|
|
80
|
+
id: i,
|
|
81
|
+
label: i,
|
|
82
|
+
value: s
|
|
83
|
+
})),
|
|
84
|
+
renderElementsCount: (i) => `{${i}}`,
|
|
85
|
+
label: e,
|
|
86
|
+
Icon: R,
|
|
87
|
+
depth: t,
|
|
88
|
+
emptyElementsText: l,
|
|
89
|
+
keyPath: n,
|
|
90
|
+
highlighting: c
|
|
91
|
+
});
|
|
92
|
+
}, te = /* @__PURE__ */ a("li", {
|
|
93
|
+
target: "e18nb3wl0"
|
|
94
|
+
})("align-items:center;display:flex;list-style-type:none;white-space:nowrap;"), ie = /* @__PURE__ */ a(te, {
|
|
95
|
+
target: "e16o44ib0"
|
|
96
|
+
})("column-gap:", ({ theme: e }) => e.spacing(2), ";"), p = (e) => /* @__PURE__ */ u(ie, {
|
|
97
|
+
children: [
|
|
98
|
+
e.label && /* @__PURE__ */ o(N, {
|
|
99
|
+
label: e.label,
|
|
100
|
+
Icon: e.Icon,
|
|
101
|
+
highlighting: e.highlighting
|
|
102
|
+
}),
|
|
103
|
+
/* @__PURE__ */ o(J, {
|
|
104
|
+
valueAsString: e.valueAsString,
|
|
105
|
+
highlighting: e.highlighting
|
|
106
|
+
})
|
|
107
|
+
]
|
|
108
|
+
}), le = (e) => B(e), v = ({ label: e, value: r, depth: t, keyPath: n }) => {
|
|
109
|
+
const { getNodeHighlighting: c, emptyStringLabel: l } = d(), i = c?.(n);
|
|
110
|
+
return y(r) ? V(r) ? /* @__PURE__ */ o(p, {
|
|
111
|
+
label: e,
|
|
112
|
+
valueAsString: w(r) ? r : l,
|
|
113
|
+
Icon: Q,
|
|
114
|
+
highlighting: i
|
|
115
|
+
}) : D(r) ? /* @__PURE__ */ o(p, {
|
|
116
|
+
label: e,
|
|
117
|
+
valueAsString: String(r),
|
|
118
|
+
Icon: U,
|
|
119
|
+
highlighting: i
|
|
120
|
+
}) : P(r) ? /* @__PURE__ */ o(p, {
|
|
121
|
+
label: e,
|
|
122
|
+
valueAsString: String(r),
|
|
123
|
+
Icon: W,
|
|
124
|
+
highlighting: i
|
|
125
|
+
}) : le(r) ? /* @__PURE__ */ o(de, {
|
|
126
|
+
label: e,
|
|
127
|
+
value: r,
|
|
128
|
+
depth: t,
|
|
129
|
+
keyPath: n,
|
|
130
|
+
highlighting: i
|
|
131
|
+
}) : /* @__PURE__ */ o(ne, {
|
|
132
|
+
label: e,
|
|
133
|
+
value: r,
|
|
134
|
+
depth: t,
|
|
135
|
+
keyPath: n,
|
|
136
|
+
highlighting: i
|
|
137
|
+
}) : /* @__PURE__ */ o(p, {
|
|
138
|
+
label: e,
|
|
139
|
+
valueAsString: "null",
|
|
140
|
+
Icon: G,
|
|
141
|
+
highlighting: i
|
|
142
|
+
});
|
|
143
|
+
}, C = /* @__PURE__ */ a("li", {
|
|
144
|
+
target: "ele0b3h0"
|
|
145
|
+
})("display:grid;list-style-type:none;"), se = /* @__PURE__ */ a("div", {
|
|
146
|
+
target: "ele0b3h1"
|
|
147
|
+
})("display:flex;align-items:center;gap:", ({ theme: e }) => e.spacing(2), ";"), ce = /* @__PURE__ */ a("span", {
|
|
148
|
+
target: "ele0b3h2"
|
|
149
|
+
})("color:", ({ theme: e, variant: r }) => r === "red" ? e.font.color.danger : e.font.color.tertiary, ";"), ae = a(T)``.withComponent(f.ul), L = ({ label: e, Icon: r, elements: t, renderElementsCount: n, emptyElementsText: c, depth: l, keyPath: i, highlighting: s }) => {
|
|
150
|
+
const { shouldExpandNodeInitially: g } = d(), k = !y(e), [b, $] = F(g({
|
|
151
|
+
keyPath: i,
|
|
152
|
+
depth: l
|
|
153
|
+
})), x = /* @__PURE__ */ o(ae, {
|
|
154
|
+
initial: {
|
|
155
|
+
height: 0,
|
|
156
|
+
opacity: 0,
|
|
157
|
+
overflowY: "clip"
|
|
158
|
+
},
|
|
159
|
+
animate: {
|
|
160
|
+
height: "auto",
|
|
161
|
+
opacity: 1,
|
|
162
|
+
overflowY: "clip"
|
|
163
|
+
},
|
|
164
|
+
exit: {
|
|
165
|
+
height: 0,
|
|
166
|
+
opacity: 0,
|
|
167
|
+
overflowY: "clip"
|
|
168
|
+
},
|
|
169
|
+
transition: {
|
|
170
|
+
duration: I.duration.normal
|
|
171
|
+
},
|
|
172
|
+
depth: l,
|
|
173
|
+
children: t.length === 0 ? /* @__PURE__ */ o(J, {
|
|
174
|
+
valueAsString: c
|
|
175
|
+
}) : t.map(({ id: m, label: E, value: O }) => {
|
|
176
|
+
const z = w(i) ? `${i}.${m}` : String(m);
|
|
177
|
+
return /* @__PURE__ */ o(v, {
|
|
178
|
+
label: E,
|
|
179
|
+
value: O,
|
|
180
|
+
depth: l + 1,
|
|
181
|
+
keyPath: z
|
|
182
|
+
}, m);
|
|
183
|
+
})
|
|
184
|
+
}), j = () => {
|
|
185
|
+
$(!b);
|
|
186
|
+
};
|
|
187
|
+
return k ? /* @__PURE__ */ o(C, {
|
|
188
|
+
children: /* @__PURE__ */ o(h, {
|
|
189
|
+
initial: !1,
|
|
190
|
+
children: x
|
|
191
|
+
})
|
|
192
|
+
}) : /* @__PURE__ */ u(C, {
|
|
193
|
+
children: [
|
|
194
|
+
/* @__PURE__ */ u(se, {
|
|
195
|
+
children: [
|
|
196
|
+
/* @__PURE__ */ o(ee, {
|
|
197
|
+
isOpen: b,
|
|
198
|
+
onClick: j,
|
|
199
|
+
variant: s === "partial-blue" ? "blue" : s === "red" ? s : void 0
|
|
200
|
+
}),
|
|
201
|
+
/* @__PURE__ */ o(N, {
|
|
202
|
+
label: e,
|
|
203
|
+
Icon: r,
|
|
204
|
+
highlighting: s === "red" ? s : void 0
|
|
205
|
+
}),
|
|
206
|
+
n && /* @__PURE__ */ o(ce, {
|
|
207
|
+
variant: s === "red" ? "red" : void 0,
|
|
208
|
+
children: n(t.length)
|
|
209
|
+
})
|
|
210
|
+
]
|
|
211
|
+
}),
|
|
212
|
+
/* @__PURE__ */ o(h, {
|
|
213
|
+
initial: !1,
|
|
214
|
+
children: b && x
|
|
215
|
+
})
|
|
216
|
+
]
|
|
217
|
+
});
|
|
218
|
+
}, de = ({ label: e, value: r, depth: t, keyPath: n, highlighting: c }) => {
|
|
219
|
+
const { emptyArrayLabel: l } = d();
|
|
220
|
+
return /* @__PURE__ */ o(L, {
|
|
221
|
+
elements: [
|
|
222
|
+
...r.entries()
|
|
223
|
+
].map(([i, s]) => ({
|
|
224
|
+
id: i,
|
|
225
|
+
label: String(i),
|
|
226
|
+
value: s
|
|
227
|
+
})),
|
|
228
|
+
renderElementsCount: (i) => `[${i}]`,
|
|
229
|
+
label: e,
|
|
230
|
+
Icon: X,
|
|
231
|
+
depth: t,
|
|
232
|
+
emptyElementsText: l,
|
|
233
|
+
keyPath: n,
|
|
234
|
+
highlighting: c
|
|
235
|
+
});
|
|
236
|
+
}, ue = ({ value: e, children: r }) => /* @__PURE__ */ o(A.Provider, {
|
|
237
|
+
value: e,
|
|
238
|
+
children: r
|
|
239
|
+
}), Ie = ({ value: e, getNodeHighlighting: r, shouldExpandNodeInitially: t, emptyArrayLabel: n, emptyObjectLabel: c, emptyStringLabel: l, arrowButtonCollapsedLabel: i, arrowButtonExpandedLabel: s, onNodeValueClick: g }) => /* @__PURE__ */ o(ue, {
|
|
240
|
+
value: {
|
|
241
|
+
getNodeHighlighting: r,
|
|
242
|
+
shouldExpandNodeInitially: t,
|
|
243
|
+
emptyArrayLabel: n,
|
|
244
|
+
emptyObjectLabel: c,
|
|
245
|
+
emptyStringLabel: l,
|
|
246
|
+
arrowButtonCollapsedLabel: i,
|
|
247
|
+
arrowButtonExpandedLabel: s,
|
|
248
|
+
onNodeValueClick: g
|
|
249
|
+
},
|
|
250
|
+
children: /* @__PURE__ */ o(T, {
|
|
251
|
+
depth: 0,
|
|
252
|
+
children: /* @__PURE__ */ o(v, {
|
|
253
|
+
value: e,
|
|
254
|
+
depth: 0,
|
|
255
|
+
keyPath: ""
|
|
256
|
+
})
|
|
257
|
+
})
|
|
258
|
+
}), Ae = ({ depth: e }) => e <= 1;
|
|
259
|
+
export {
|
|
260
|
+
de as JsonArrayNode,
|
|
261
|
+
L as JsonNestedNode,
|
|
262
|
+
v as JsonNode,
|
|
263
|
+
ne as JsonObjectNode,
|
|
264
|
+
Ie as JsonTree,
|
|
265
|
+
A as JsonTreeContext,
|
|
266
|
+
ue as JsonTreeContextProvider,
|
|
267
|
+
p as JsonValueNode,
|
|
268
|
+
le as isArray,
|
|
269
|
+
Ae as isTwoFirstDepths,
|
|
270
|
+
d as useJsonTreeContextOrThrow
|
|
271
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { AnimationMode } from '../types/AnimationMode';
|
|
3
|
+
import { AnimationDurations } from '../types/AnimationDurations';
|
|
4
|
+
import { AnimationDimension } from '../types/AnimationDimension';
|
|
5
|
+
|
|
6
|
+
type AnimatedExpandableContainerProps = {
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
isExpanded: boolean;
|
|
9
|
+
dimension?: AnimationDimension;
|
|
10
|
+
animationDurations?: AnimationDurations;
|
|
11
|
+
mode?: AnimationMode;
|
|
12
|
+
containAnimation?: boolean;
|
|
13
|
+
initial?: boolean;
|
|
14
|
+
};
|
|
15
|
+
export declare const AnimatedExpandableContainer: ({ children, isExpanded, dimension, animationDurations, mode, containAnimation, initial, }: AnimatedExpandableContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=AnimatedExpandableContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnimatedExpandableContainer.d.ts","sourceRoot":"","sources":["../../../../src/layout/animated-expandable-container/components/AnimatedExpandableContainer.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,mEAAmE,CAAC;AAE5G,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,mEAAmE,CAAC;AAC5G,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,8DAA8D,CAAC;AAIlG,OAAO,EAAE,KAAK,SAAS,EAAoB,MAAM,OAAO,CAAC;AAgBzD,KAAK,gCAAgC,GAAG;IACtC,QAAQ,EAAE,SAAS,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,SAAS,CAAC,EAAE,kBAAkB,CAAC;IAC/B,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IACxC,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,2BAA2B,GAAI,2FAQzC,gCAAgC,4CAgDlC,CAAC"}
|
package/dist/vendor/twenty-ui/layout/animated-expandable-container/types/AnimationDimension.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnimationDimension.d.ts","sourceRoot":"","sources":["../../../../src/layout/animated-expandable-container/types/AnimationDimension.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,kBAAkB,GAAG,OAAO,GAAG,QAAQ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnimationDurationObject.d.ts","sourceRoot":"","sources":["../../../../src/layout/animated-expandable-container/types/AnimationDurationObject.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uBAAuB,GAAG;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;CACd,CAAC"}
|