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,1765 @@
|
|
|
1
|
+
import * as Z from "react";
|
|
2
|
+
import Nr, { forwardRef as bt, useContext as gt } from "react";
|
|
3
|
+
var Ie = { exports: {} }, me = {};
|
|
4
|
+
/**
|
|
5
|
+
* @license React
|
|
6
|
+
* react-jsx-runtime.production.min.js
|
|
7
|
+
*
|
|
8
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
9
|
+
*
|
|
10
|
+
* This source code is licensed under the MIT license found in the
|
|
11
|
+
* LICENSE file in the root directory of this source tree.
|
|
12
|
+
*/
|
|
13
|
+
var xr;
|
|
14
|
+
function Et() {
|
|
15
|
+
if (xr) return me;
|
|
16
|
+
xr = 1;
|
|
17
|
+
var e = Nr, t = Symbol.for("react.element"), n = Symbol.for("react.fragment"), a = Object.prototype.hasOwnProperty, i = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, s = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
18
|
+
function u(v, d, y) {
|
|
19
|
+
var p, b = {}, I = null, k = null;
|
|
20
|
+
y !== void 0 && (I = "" + y), d.key !== void 0 && (I = "" + d.key), d.ref !== void 0 && (k = d.ref);
|
|
21
|
+
for (p in d) a.call(d, p) && !s.hasOwnProperty(p) && (b[p] = d[p]);
|
|
22
|
+
if (v && v.defaultProps) for (p in d = v.defaultProps, d) b[p] === void 0 && (b[p] = d[p]);
|
|
23
|
+
return { $$typeof: t, type: v, key: I, ref: k, props: b, _owner: i.current };
|
|
24
|
+
}
|
|
25
|
+
return me.Fragment = n, me.jsx = u, me.jsxs = u, me;
|
|
26
|
+
}
|
|
27
|
+
var be = {};
|
|
28
|
+
/**
|
|
29
|
+
* @license React
|
|
30
|
+
* react-jsx-runtime.development.js
|
|
31
|
+
*
|
|
32
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
33
|
+
*
|
|
34
|
+
* This source code is licensed under the MIT license found in the
|
|
35
|
+
* LICENSE file in the root directory of this source tree.
|
|
36
|
+
*/
|
|
37
|
+
var Tr;
|
|
38
|
+
function _t() {
|
|
39
|
+
return Tr || (Tr = 1, process.env.NODE_ENV !== "production" && function() {
|
|
40
|
+
var e = Nr, t = Symbol.for("react.element"), n = Symbol.for("react.portal"), a = Symbol.for("react.fragment"), i = Symbol.for("react.strict_mode"), s = Symbol.for("react.profiler"), u = Symbol.for("react.provider"), v = Symbol.for("react.context"), d = Symbol.for("react.forward_ref"), y = Symbol.for("react.suspense"), p = Symbol.for("react.suspense_list"), b = Symbol.for("react.memo"), I = Symbol.for("react.lazy"), k = Symbol.for("react.offscreen"), R = Symbol.iterator, E = "@@iterator";
|
|
41
|
+
function M(r) {
|
|
42
|
+
if (r === null || typeof r != "object")
|
|
43
|
+
return null;
|
|
44
|
+
var o = R && r[R] || r[E];
|
|
45
|
+
return typeof o == "function" ? o : null;
|
|
46
|
+
}
|
|
47
|
+
var _ = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
48
|
+
function m(r) {
|
|
49
|
+
{
|
|
50
|
+
for (var o = arguments.length, f = new Array(o > 1 ? o - 1 : 0), h = 1; h < o; h++)
|
|
51
|
+
f[h - 1] = arguments[h];
|
|
52
|
+
x("error", r, f);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
function x(r, o, f) {
|
|
56
|
+
{
|
|
57
|
+
var h = _.ReactDebugCurrentFrame, P = h.getStackAddendum();
|
|
58
|
+
P !== "" && (o += "%s", f = f.concat([P]));
|
|
59
|
+
var $ = f.map(function(S) {
|
|
60
|
+
return String(S);
|
|
61
|
+
});
|
|
62
|
+
$.unshift("Warning: " + o), Function.prototype.apply.call(console[r], console, $);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
var j = !1, c = !1, F = !1, T = !1, Te = !1, we;
|
|
66
|
+
we = Symbol.for("react.module.reference");
|
|
67
|
+
function Ge(r) {
|
|
68
|
+
return !!(typeof r == "string" || typeof r == "function" || r === a || r === s || Te || r === i || r === y || r === p || T || r === k || j || c || F || typeof r == "object" && r !== null && (r.$$typeof === I || r.$$typeof === b || r.$$typeof === u || r.$$typeof === v || r.$$typeof === d || // This needs to include all possible module reference object
|
|
69
|
+
// types supported by any Flight configuration anywhere since
|
|
70
|
+
// we don't know which Flight build this will end up being used
|
|
71
|
+
// with.
|
|
72
|
+
r.$$typeof === we || r.getModuleId !== void 0));
|
|
73
|
+
}
|
|
74
|
+
function Be(r, o, f) {
|
|
75
|
+
var h = r.displayName;
|
|
76
|
+
if (h)
|
|
77
|
+
return h;
|
|
78
|
+
var P = o.displayName || o.name || "";
|
|
79
|
+
return P !== "" ? f + "(" + P + ")" : f;
|
|
80
|
+
}
|
|
81
|
+
function Ce(r) {
|
|
82
|
+
return r.displayName || "Context";
|
|
83
|
+
}
|
|
84
|
+
function B(r) {
|
|
85
|
+
if (r == null)
|
|
86
|
+
return null;
|
|
87
|
+
if (typeof r.tag == "number" && m("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof r == "function")
|
|
88
|
+
return r.displayName || r.name || null;
|
|
89
|
+
if (typeof r == "string")
|
|
90
|
+
return r;
|
|
91
|
+
switch (r) {
|
|
92
|
+
case a:
|
|
93
|
+
return "Fragment";
|
|
94
|
+
case n:
|
|
95
|
+
return "Portal";
|
|
96
|
+
case s:
|
|
97
|
+
return "Profiler";
|
|
98
|
+
case i:
|
|
99
|
+
return "StrictMode";
|
|
100
|
+
case y:
|
|
101
|
+
return "Suspense";
|
|
102
|
+
case p:
|
|
103
|
+
return "SuspenseList";
|
|
104
|
+
}
|
|
105
|
+
if (typeof r == "object")
|
|
106
|
+
switch (r.$$typeof) {
|
|
107
|
+
case v:
|
|
108
|
+
var o = r;
|
|
109
|
+
return Ce(o) + ".Consumer";
|
|
110
|
+
case u:
|
|
111
|
+
var f = r;
|
|
112
|
+
return Ce(f._context) + ".Provider";
|
|
113
|
+
case d:
|
|
114
|
+
return Be(r, r.render, "ForwardRef");
|
|
115
|
+
case b:
|
|
116
|
+
var h = r.displayName || null;
|
|
117
|
+
return h !== null ? h : B(r.type) || "Memo";
|
|
118
|
+
case I: {
|
|
119
|
+
var P = r, $ = P._payload, S = P._init;
|
|
120
|
+
try {
|
|
121
|
+
return B(S($));
|
|
122
|
+
} catch {
|
|
123
|
+
return null;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
return null;
|
|
128
|
+
}
|
|
129
|
+
var X = Object.assign, Q = 0, Pe, Oe, ue, Ae, le, $e, ke;
|
|
130
|
+
function je() {
|
|
131
|
+
}
|
|
132
|
+
je.__reactDisabledLog = !0;
|
|
133
|
+
function Ke() {
|
|
134
|
+
{
|
|
135
|
+
if (Q === 0) {
|
|
136
|
+
Pe = console.log, Oe = console.info, ue = console.warn, Ae = console.error, le = console.group, $e = console.groupCollapsed, ke = console.groupEnd;
|
|
137
|
+
var r = {
|
|
138
|
+
configurable: !0,
|
|
139
|
+
enumerable: !0,
|
|
140
|
+
value: je,
|
|
141
|
+
writable: !0
|
|
142
|
+
};
|
|
143
|
+
Object.defineProperties(console, {
|
|
144
|
+
info: r,
|
|
145
|
+
log: r,
|
|
146
|
+
warn: r,
|
|
147
|
+
error: r,
|
|
148
|
+
group: r,
|
|
149
|
+
groupCollapsed: r,
|
|
150
|
+
groupEnd: r
|
|
151
|
+
});
|
|
152
|
+
}
|
|
153
|
+
Q++;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
function Je() {
|
|
157
|
+
{
|
|
158
|
+
if (Q--, Q === 0) {
|
|
159
|
+
var r = {
|
|
160
|
+
configurable: !0,
|
|
161
|
+
enumerable: !0,
|
|
162
|
+
writable: !0
|
|
163
|
+
};
|
|
164
|
+
Object.defineProperties(console, {
|
|
165
|
+
log: X({}, r, {
|
|
166
|
+
value: Pe
|
|
167
|
+
}),
|
|
168
|
+
info: X({}, r, {
|
|
169
|
+
value: Oe
|
|
170
|
+
}),
|
|
171
|
+
warn: X({}, r, {
|
|
172
|
+
value: ue
|
|
173
|
+
}),
|
|
174
|
+
error: X({}, r, {
|
|
175
|
+
value: Ae
|
|
176
|
+
}),
|
|
177
|
+
group: X({}, r, {
|
|
178
|
+
value: le
|
|
179
|
+
}),
|
|
180
|
+
groupCollapsed: X({}, r, {
|
|
181
|
+
value: $e
|
|
182
|
+
}),
|
|
183
|
+
groupEnd: X({}, r, {
|
|
184
|
+
value: ke
|
|
185
|
+
})
|
|
186
|
+
});
|
|
187
|
+
}
|
|
188
|
+
Q < 0 && m("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
var de = _.ReactCurrentDispatcher, ve;
|
|
192
|
+
function te(r, o, f) {
|
|
193
|
+
{
|
|
194
|
+
if (ve === void 0)
|
|
195
|
+
try {
|
|
196
|
+
throw Error();
|
|
197
|
+
} catch (P) {
|
|
198
|
+
var h = P.stack.trim().match(/\n( *(at )?)/);
|
|
199
|
+
ve = h && h[1] || "";
|
|
200
|
+
}
|
|
201
|
+
return `
|
|
202
|
+
` + ve + r;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
var pe = !1, ne;
|
|
206
|
+
{
|
|
207
|
+
var He = typeof WeakMap == "function" ? WeakMap : Map;
|
|
208
|
+
ne = new He();
|
|
209
|
+
}
|
|
210
|
+
function l(r, o) {
|
|
211
|
+
if (!r || pe)
|
|
212
|
+
return "";
|
|
213
|
+
{
|
|
214
|
+
var f = ne.get(r);
|
|
215
|
+
if (f !== void 0)
|
|
216
|
+
return f;
|
|
217
|
+
}
|
|
218
|
+
var h;
|
|
219
|
+
pe = !0;
|
|
220
|
+
var P = Error.prepareStackTrace;
|
|
221
|
+
Error.prepareStackTrace = void 0;
|
|
222
|
+
var $;
|
|
223
|
+
$ = de.current, de.current = null, Ke();
|
|
224
|
+
try {
|
|
225
|
+
if (o) {
|
|
226
|
+
var S = function() {
|
|
227
|
+
throw Error();
|
|
228
|
+
};
|
|
229
|
+
if (Object.defineProperty(S.prototype, "props", {
|
|
230
|
+
set: function() {
|
|
231
|
+
throw Error();
|
|
232
|
+
}
|
|
233
|
+
}), typeof Reflect == "object" && Reflect.construct) {
|
|
234
|
+
try {
|
|
235
|
+
Reflect.construct(S, []);
|
|
236
|
+
} catch (U) {
|
|
237
|
+
h = U;
|
|
238
|
+
}
|
|
239
|
+
Reflect.construct(r, [], S);
|
|
240
|
+
} else {
|
|
241
|
+
try {
|
|
242
|
+
S.call();
|
|
243
|
+
} catch (U) {
|
|
244
|
+
h = U;
|
|
245
|
+
}
|
|
246
|
+
r.call(S.prototype);
|
|
247
|
+
}
|
|
248
|
+
} else {
|
|
249
|
+
try {
|
|
250
|
+
throw Error();
|
|
251
|
+
} catch (U) {
|
|
252
|
+
h = U;
|
|
253
|
+
}
|
|
254
|
+
r();
|
|
255
|
+
}
|
|
256
|
+
} catch (U) {
|
|
257
|
+
if (U && h && typeof U.stack == "string") {
|
|
258
|
+
for (var g = U.stack.split(`
|
|
259
|
+
`), V = h.stack.split(`
|
|
260
|
+
`), N = g.length - 1, D = V.length - 1; N >= 1 && D >= 0 && g[N] !== V[D]; )
|
|
261
|
+
D--;
|
|
262
|
+
for (; N >= 1 && D >= 0; N--, D--)
|
|
263
|
+
if (g[N] !== V[D]) {
|
|
264
|
+
if (N !== 1 || D !== 1)
|
|
265
|
+
do
|
|
266
|
+
if (N--, D--, D < 0 || g[N] !== V[D]) {
|
|
267
|
+
var G = `
|
|
268
|
+
` + g[N].replace(" at new ", " at ");
|
|
269
|
+
return r.displayName && G.includes("<anonymous>") && (G = G.replace("<anonymous>", r.displayName)), typeof r == "function" && ne.set(r, G), G;
|
|
270
|
+
}
|
|
271
|
+
while (N >= 1 && D >= 0);
|
|
272
|
+
break;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
} finally {
|
|
276
|
+
pe = !1, de.current = $, Je(), Error.prepareStackTrace = P;
|
|
277
|
+
}
|
|
278
|
+
var oe = r ? r.displayName || r.name : "", re = oe ? te(oe) : "";
|
|
279
|
+
return typeof r == "function" && ne.set(r, re), re;
|
|
280
|
+
}
|
|
281
|
+
function he(r, o, f) {
|
|
282
|
+
return l(r, !1);
|
|
283
|
+
}
|
|
284
|
+
function ae(r) {
|
|
285
|
+
var o = r.prototype;
|
|
286
|
+
return !!(o && o.isReactComponent);
|
|
287
|
+
}
|
|
288
|
+
function ee(r, o, f) {
|
|
289
|
+
if (r == null)
|
|
290
|
+
return "";
|
|
291
|
+
if (typeof r == "function")
|
|
292
|
+
return l(r, ae(r));
|
|
293
|
+
if (typeof r == "string")
|
|
294
|
+
return te(r);
|
|
295
|
+
switch (r) {
|
|
296
|
+
case y:
|
|
297
|
+
return te("Suspense");
|
|
298
|
+
case p:
|
|
299
|
+
return te("SuspenseList");
|
|
300
|
+
}
|
|
301
|
+
if (typeof r == "object")
|
|
302
|
+
switch (r.$$typeof) {
|
|
303
|
+
case d:
|
|
304
|
+
return he(r.render);
|
|
305
|
+
case b:
|
|
306
|
+
return ee(r.type, o, f);
|
|
307
|
+
case I: {
|
|
308
|
+
var h = r, P = h._payload, $ = h._init;
|
|
309
|
+
try {
|
|
310
|
+
return ee($(P), o, f);
|
|
311
|
+
} catch {
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
return "";
|
|
316
|
+
}
|
|
317
|
+
var ye = Object.prototype.hasOwnProperty, ur = {}, lr = _.ReactDebugCurrentFrame;
|
|
318
|
+
function Fe(r) {
|
|
319
|
+
if (r) {
|
|
320
|
+
var o = r._owner, f = ee(r.type, r._source, o ? o.type : null);
|
|
321
|
+
lr.setExtraStackFrame(f);
|
|
322
|
+
} else
|
|
323
|
+
lr.setExtraStackFrame(null);
|
|
324
|
+
}
|
|
325
|
+
function Hr(r, o, f, h, P) {
|
|
326
|
+
{
|
|
327
|
+
var $ = Function.call.bind(ye);
|
|
328
|
+
for (var S in r)
|
|
329
|
+
if ($(r, S)) {
|
|
330
|
+
var g = void 0;
|
|
331
|
+
try {
|
|
332
|
+
if (typeof r[S] != "function") {
|
|
333
|
+
var V = Error((h || "React class") + ": " + f + " type `" + S + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof r[S] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
|
|
334
|
+
throw V.name = "Invariant Violation", V;
|
|
335
|
+
}
|
|
336
|
+
g = r[S](o, S, h, f, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
|
|
337
|
+
} catch (N) {
|
|
338
|
+
g = N;
|
|
339
|
+
}
|
|
340
|
+
g && !(g instanceof Error) && (Fe(P), m("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", h || "React class", f, S, typeof g), Fe(null)), g instanceof Error && !(g.message in ur) && (ur[g.message] = !0, Fe(P), m("Failed %s type: %s", f, g.message), Fe(null));
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
var Xr = Array.isArray;
|
|
345
|
+
function Xe(r) {
|
|
346
|
+
return Xr(r);
|
|
347
|
+
}
|
|
348
|
+
function Zr(r) {
|
|
349
|
+
{
|
|
350
|
+
var o = typeof Symbol == "function" && Symbol.toStringTag, f = o && r[Symbol.toStringTag] || r.constructor.name || "Object";
|
|
351
|
+
return f;
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
function Qr(r) {
|
|
355
|
+
try {
|
|
356
|
+
return dr(r), !1;
|
|
357
|
+
} catch {
|
|
358
|
+
return !0;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
function dr(r) {
|
|
362
|
+
return "" + r;
|
|
363
|
+
}
|
|
364
|
+
function vr(r) {
|
|
365
|
+
if (Qr(r))
|
|
366
|
+
return m("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", Zr(r)), dr(r);
|
|
367
|
+
}
|
|
368
|
+
var pr = _.ReactCurrentOwner, et = {
|
|
369
|
+
key: !0,
|
|
370
|
+
ref: !0,
|
|
371
|
+
__self: !0,
|
|
372
|
+
__source: !0
|
|
373
|
+
}, hr, yr;
|
|
374
|
+
function rt(r) {
|
|
375
|
+
if (ye.call(r, "ref")) {
|
|
376
|
+
var o = Object.getOwnPropertyDescriptor(r, "ref").get;
|
|
377
|
+
if (o && o.isReactWarning)
|
|
378
|
+
return !1;
|
|
379
|
+
}
|
|
380
|
+
return r.ref !== void 0;
|
|
381
|
+
}
|
|
382
|
+
function tt(r) {
|
|
383
|
+
if (ye.call(r, "key")) {
|
|
384
|
+
var o = Object.getOwnPropertyDescriptor(r, "key").get;
|
|
385
|
+
if (o && o.isReactWarning)
|
|
386
|
+
return !1;
|
|
387
|
+
}
|
|
388
|
+
return r.key !== void 0;
|
|
389
|
+
}
|
|
390
|
+
function nt(r, o) {
|
|
391
|
+
typeof r.ref == "string" && pr.current;
|
|
392
|
+
}
|
|
393
|
+
function at(r, o) {
|
|
394
|
+
{
|
|
395
|
+
var f = function() {
|
|
396
|
+
hr || (hr = !0, m("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", o));
|
|
397
|
+
};
|
|
398
|
+
f.isReactWarning = !0, Object.defineProperty(r, "key", {
|
|
399
|
+
get: f,
|
|
400
|
+
configurable: !0
|
|
401
|
+
});
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
function it(r, o) {
|
|
405
|
+
{
|
|
406
|
+
var f = function() {
|
|
407
|
+
yr || (yr = !0, m("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", o));
|
|
408
|
+
};
|
|
409
|
+
f.isReactWarning = !0, Object.defineProperty(r, "ref", {
|
|
410
|
+
get: f,
|
|
411
|
+
configurable: !0
|
|
412
|
+
});
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
var ot = function(r, o, f, h, P, $, S) {
|
|
416
|
+
var g = {
|
|
417
|
+
// This tag allows us to uniquely identify this as a React Element
|
|
418
|
+
$$typeof: t,
|
|
419
|
+
// Built-in properties that belong on the element
|
|
420
|
+
type: r,
|
|
421
|
+
key: o,
|
|
422
|
+
ref: f,
|
|
423
|
+
props: S,
|
|
424
|
+
// Record the component responsible for creating this element.
|
|
425
|
+
_owner: $
|
|
426
|
+
};
|
|
427
|
+
return g._store = {}, Object.defineProperty(g._store, "validated", {
|
|
428
|
+
configurable: !1,
|
|
429
|
+
enumerable: !1,
|
|
430
|
+
writable: !0,
|
|
431
|
+
value: !1
|
|
432
|
+
}), Object.defineProperty(g, "_self", {
|
|
433
|
+
configurable: !1,
|
|
434
|
+
enumerable: !1,
|
|
435
|
+
writable: !1,
|
|
436
|
+
value: h
|
|
437
|
+
}), Object.defineProperty(g, "_source", {
|
|
438
|
+
configurable: !1,
|
|
439
|
+
enumerable: !1,
|
|
440
|
+
writable: !1,
|
|
441
|
+
value: P
|
|
442
|
+
}), Object.freeze && (Object.freeze(g.props), Object.freeze(g)), g;
|
|
443
|
+
};
|
|
444
|
+
function st(r, o, f, h, P) {
|
|
445
|
+
{
|
|
446
|
+
var $, S = {}, g = null, V = null;
|
|
447
|
+
f !== void 0 && (vr(f), g = "" + f), tt(o) && (vr(o.key), g = "" + o.key), rt(o) && (V = o.ref, nt(o, P));
|
|
448
|
+
for ($ in o)
|
|
449
|
+
ye.call(o, $) && !et.hasOwnProperty($) && (S[$] = o[$]);
|
|
450
|
+
if (r && r.defaultProps) {
|
|
451
|
+
var N = r.defaultProps;
|
|
452
|
+
for ($ in N)
|
|
453
|
+
S[$] === void 0 && (S[$] = N[$]);
|
|
454
|
+
}
|
|
455
|
+
if (g || V) {
|
|
456
|
+
var D = typeof r == "function" ? r.displayName || r.name || "Unknown" : r;
|
|
457
|
+
g && at(S, D), V && it(S, D);
|
|
458
|
+
}
|
|
459
|
+
return ot(r, g, V, P, h, pr.current, S);
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
var Ze = _.ReactCurrentOwner, mr = _.ReactDebugCurrentFrame;
|
|
463
|
+
function ie(r) {
|
|
464
|
+
if (r) {
|
|
465
|
+
var o = r._owner, f = ee(r.type, r._source, o ? o.type : null);
|
|
466
|
+
mr.setExtraStackFrame(f);
|
|
467
|
+
} else
|
|
468
|
+
mr.setExtraStackFrame(null);
|
|
469
|
+
}
|
|
470
|
+
var Qe;
|
|
471
|
+
Qe = !1;
|
|
472
|
+
function er(r) {
|
|
473
|
+
return typeof r == "object" && r !== null && r.$$typeof === t;
|
|
474
|
+
}
|
|
475
|
+
function br() {
|
|
476
|
+
{
|
|
477
|
+
if (Ze.current) {
|
|
478
|
+
var r = B(Ze.current.type);
|
|
479
|
+
if (r)
|
|
480
|
+
return `
|
|
481
|
+
|
|
482
|
+
Check the render method of \`` + r + "`.";
|
|
483
|
+
}
|
|
484
|
+
return "";
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
function ct(r) {
|
|
488
|
+
return "";
|
|
489
|
+
}
|
|
490
|
+
var gr = {};
|
|
491
|
+
function ft(r) {
|
|
492
|
+
{
|
|
493
|
+
var o = br();
|
|
494
|
+
if (!o) {
|
|
495
|
+
var f = typeof r == "string" ? r : r.displayName || r.name;
|
|
496
|
+
f && (o = `
|
|
497
|
+
|
|
498
|
+
Check the top-level render call using <` + f + ">.");
|
|
499
|
+
}
|
|
500
|
+
return o;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
function Er(r, o) {
|
|
504
|
+
{
|
|
505
|
+
if (!r._store || r._store.validated || r.key != null)
|
|
506
|
+
return;
|
|
507
|
+
r._store.validated = !0;
|
|
508
|
+
var f = ft(o);
|
|
509
|
+
if (gr[f])
|
|
510
|
+
return;
|
|
511
|
+
gr[f] = !0;
|
|
512
|
+
var h = "";
|
|
513
|
+
r && r._owner && r._owner !== Ze.current && (h = " It was passed a child from " + B(r._owner.type) + "."), ie(r), m('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', f, h), ie(null);
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
function _r(r, o) {
|
|
517
|
+
{
|
|
518
|
+
if (typeof r != "object")
|
|
519
|
+
return;
|
|
520
|
+
if (Xe(r))
|
|
521
|
+
for (var f = 0; f < r.length; f++) {
|
|
522
|
+
var h = r[f];
|
|
523
|
+
er(h) && Er(h, o);
|
|
524
|
+
}
|
|
525
|
+
else if (er(r))
|
|
526
|
+
r._store && (r._store.validated = !0);
|
|
527
|
+
else if (r) {
|
|
528
|
+
var P = M(r);
|
|
529
|
+
if (typeof P == "function" && P !== r.entries)
|
|
530
|
+
for (var $ = P.call(r), S; !(S = $.next()).done; )
|
|
531
|
+
er(S.value) && Er(S.value, o);
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
function ut(r) {
|
|
536
|
+
{
|
|
537
|
+
var o = r.type;
|
|
538
|
+
if (o == null || typeof o == "string")
|
|
539
|
+
return;
|
|
540
|
+
var f;
|
|
541
|
+
if (typeof o == "function")
|
|
542
|
+
f = o.propTypes;
|
|
543
|
+
else if (typeof o == "object" && (o.$$typeof === d || // Note: Memo only checks outer props here.
|
|
544
|
+
// Inner props are checked in the reconciler.
|
|
545
|
+
o.$$typeof === b))
|
|
546
|
+
f = o.propTypes;
|
|
547
|
+
else
|
|
548
|
+
return;
|
|
549
|
+
if (f) {
|
|
550
|
+
var h = B(o);
|
|
551
|
+
Hr(f, r.props, "prop", h, r);
|
|
552
|
+
} else if (o.PropTypes !== void 0 && !Qe) {
|
|
553
|
+
Qe = !0;
|
|
554
|
+
var P = B(o);
|
|
555
|
+
m("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", P || "Unknown");
|
|
556
|
+
}
|
|
557
|
+
typeof o.getDefaultProps == "function" && !o.getDefaultProps.isReactClassApproved && m("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
function lt(r) {
|
|
561
|
+
{
|
|
562
|
+
for (var o = Object.keys(r.props), f = 0; f < o.length; f++) {
|
|
563
|
+
var h = o[f];
|
|
564
|
+
if (h !== "children" && h !== "key") {
|
|
565
|
+
ie(r), m("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", h), ie(null);
|
|
566
|
+
break;
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
r.ref !== null && (ie(r), m("Invalid attribute `ref` supplied to `React.Fragment`."), ie(null));
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
var Rr = {};
|
|
573
|
+
function Sr(r, o, f, h, P, $) {
|
|
574
|
+
{
|
|
575
|
+
var S = Ge(r);
|
|
576
|
+
if (!S) {
|
|
577
|
+
var g = "";
|
|
578
|
+
(r === void 0 || typeof r == "object" && r !== null && Object.keys(r).length === 0) && (g += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
|
|
579
|
+
var V = ct();
|
|
580
|
+
V ? g += V : g += br();
|
|
581
|
+
var N;
|
|
582
|
+
r === null ? N = "null" : Xe(r) ? N = "array" : r !== void 0 && r.$$typeof === t ? (N = "<" + (B(r.type) || "Unknown") + " />", g = " Did you accidentally export a JSX literal instead of a component?") : N = typeof r, m("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", N, g);
|
|
583
|
+
}
|
|
584
|
+
var D = st(r, o, f, P, $);
|
|
585
|
+
if (D == null)
|
|
586
|
+
return D;
|
|
587
|
+
if (S) {
|
|
588
|
+
var G = o.children;
|
|
589
|
+
if (G !== void 0)
|
|
590
|
+
if (h)
|
|
591
|
+
if (Xe(G)) {
|
|
592
|
+
for (var oe = 0; oe < G.length; oe++)
|
|
593
|
+
_r(G[oe], r);
|
|
594
|
+
Object.freeze && Object.freeze(G);
|
|
595
|
+
} else
|
|
596
|
+
m("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
597
|
+
else
|
|
598
|
+
_r(G, r);
|
|
599
|
+
}
|
|
600
|
+
if (ye.call(o, "key")) {
|
|
601
|
+
var re = B(r), U = Object.keys(o).filter(function(mt) {
|
|
602
|
+
return mt !== "key";
|
|
603
|
+
}), rr = U.length > 0 ? "{key: someKey, " + U.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
604
|
+
if (!Rr[re + rr]) {
|
|
605
|
+
var yt = U.length > 0 ? "{" + U.join(": ..., ") + ": ...}" : "{}";
|
|
606
|
+
m(`A props object containing a "key" prop is being spread into JSX:
|
|
607
|
+
let props = %s;
|
|
608
|
+
<%s {...props} />
|
|
609
|
+
React keys must be passed directly to JSX without using spread:
|
|
610
|
+
let props = %s;
|
|
611
|
+
<%s key={someKey} {...props} />`, rr, re, yt, re), Rr[re + rr] = !0;
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
return r === a ? lt(D) : ut(D), D;
|
|
615
|
+
}
|
|
616
|
+
}
|
|
617
|
+
function dt(r, o, f) {
|
|
618
|
+
return Sr(r, o, f, !0);
|
|
619
|
+
}
|
|
620
|
+
function vt(r, o, f) {
|
|
621
|
+
return Sr(r, o, f, !1);
|
|
622
|
+
}
|
|
623
|
+
var pt = vt, ht = dt;
|
|
624
|
+
be.Fragment = a, be.jsx = pt, be.jsxs = ht;
|
|
625
|
+
}()), be;
|
|
626
|
+
}
|
|
627
|
+
var wr;
|
|
628
|
+
function Rt() {
|
|
629
|
+
return wr || (wr = 1, process.env.NODE_ENV === "production" ? Ie.exports = Et() : Ie.exports = _t()), Ie.exports;
|
|
630
|
+
}
|
|
631
|
+
var Ee = Rt();
|
|
632
|
+
function St(e) {
|
|
633
|
+
if (e.sheet)
|
|
634
|
+
return e.sheet;
|
|
635
|
+
for (var t = 0; t < document.styleSheets.length; t++)
|
|
636
|
+
if (document.styleSheets[t].ownerNode === e)
|
|
637
|
+
return document.styleSheets[t];
|
|
638
|
+
}
|
|
639
|
+
function xt(e) {
|
|
640
|
+
var t = document.createElement("style");
|
|
641
|
+
return t.setAttribute("data-emotion", e.key), e.nonce !== void 0 && t.setAttribute("nonce", e.nonce), t.appendChild(document.createTextNode("")), t.setAttribute("data-s", ""), t;
|
|
642
|
+
}
|
|
643
|
+
var Tt = /* @__PURE__ */ function() {
|
|
644
|
+
function e(n) {
|
|
645
|
+
var a = this;
|
|
646
|
+
this._insertTag = function(i) {
|
|
647
|
+
var s;
|
|
648
|
+
a.tags.length === 0 ? a.insertionPoint ? s = a.insertionPoint.nextSibling : a.prepend ? s = a.container.firstChild : s = a.before : s = a.tags[a.tags.length - 1].nextSibling, a.container.insertBefore(i, s), a.tags.push(i);
|
|
649
|
+
}, this.isSpeedy = n.speedy === void 0 ? !0 : n.speedy, this.tags = [], this.ctr = 0, this.nonce = n.nonce, this.key = n.key, this.container = n.container, this.prepend = n.prepend, this.insertionPoint = n.insertionPoint, this.before = null;
|
|
650
|
+
}
|
|
651
|
+
var t = e.prototype;
|
|
652
|
+
return t.hydrate = function(a) {
|
|
653
|
+
a.forEach(this._insertTag);
|
|
654
|
+
}, t.insert = function(a) {
|
|
655
|
+
this.ctr % (this.isSpeedy ? 65e3 : 1) === 0 && this._insertTag(xt(this));
|
|
656
|
+
var i = this.tags[this.tags.length - 1];
|
|
657
|
+
if (this.isSpeedy) {
|
|
658
|
+
var s = St(i);
|
|
659
|
+
try {
|
|
660
|
+
s.insertRule(a, s.cssRules.length);
|
|
661
|
+
} catch {
|
|
662
|
+
}
|
|
663
|
+
} else
|
|
664
|
+
i.appendChild(document.createTextNode(a));
|
|
665
|
+
this.ctr++;
|
|
666
|
+
}, t.flush = function() {
|
|
667
|
+
this.tags.forEach(function(a) {
|
|
668
|
+
var i;
|
|
669
|
+
return (i = a.parentNode) == null ? void 0 : i.removeChild(a);
|
|
670
|
+
}), this.tags = [], this.ctr = 0;
|
|
671
|
+
}, e;
|
|
672
|
+
}(), W = "-ms-", We = "-moz-", w = "-webkit-", Dr = "comm", sr = "rule", cr = "decl", wt = "@import", Yr = "@keyframes", Ct = "@layer", Pt = Math.abs, Ve = String.fromCharCode, Ot = Object.assign;
|
|
673
|
+
function At(e, t) {
|
|
674
|
+
return L(e, 0) ^ 45 ? (((t << 2 ^ L(e, 0)) << 2 ^ L(e, 1)) << 2 ^ L(e, 2)) << 2 ^ L(e, 3) : 0;
|
|
675
|
+
}
|
|
676
|
+
function Lr(e) {
|
|
677
|
+
return e.trim();
|
|
678
|
+
}
|
|
679
|
+
function $t(e, t) {
|
|
680
|
+
return (e = t.exec(e)) ? e[0] : e;
|
|
681
|
+
}
|
|
682
|
+
function C(e, t, n) {
|
|
683
|
+
return e.replace(t, n);
|
|
684
|
+
}
|
|
685
|
+
function ar(e, t) {
|
|
686
|
+
return e.indexOf(t);
|
|
687
|
+
}
|
|
688
|
+
function L(e, t) {
|
|
689
|
+
return e.charCodeAt(t) | 0;
|
|
690
|
+
}
|
|
691
|
+
function _e(e, t, n) {
|
|
692
|
+
return e.slice(t, n);
|
|
693
|
+
}
|
|
694
|
+
function K(e) {
|
|
695
|
+
return e.length;
|
|
696
|
+
}
|
|
697
|
+
function fr(e) {
|
|
698
|
+
return e.length;
|
|
699
|
+
}
|
|
700
|
+
function Me(e, t) {
|
|
701
|
+
return t.push(e), e;
|
|
702
|
+
}
|
|
703
|
+
function kt(e, t) {
|
|
704
|
+
return e.map(t).join("");
|
|
705
|
+
}
|
|
706
|
+
var Ue = 1, ce = 1, Wr = 0, q = 0, Y = 0, fe = "";
|
|
707
|
+
function qe(e, t, n, a, i, s, u) {
|
|
708
|
+
return { value: e, root: t, parent: n, type: a, props: i, children: s, line: Ue, column: ce, length: u, return: "" };
|
|
709
|
+
}
|
|
710
|
+
function ge(e, t) {
|
|
711
|
+
return Ot(qe("", null, null, "", null, null, 0), e, { length: -e.length }, t);
|
|
712
|
+
}
|
|
713
|
+
function jt() {
|
|
714
|
+
return Y;
|
|
715
|
+
}
|
|
716
|
+
function Ft() {
|
|
717
|
+
return Y = q > 0 ? L(fe, --q) : 0, ce--, Y === 10 && (ce = 1, Ue--), Y;
|
|
718
|
+
}
|
|
719
|
+
function z() {
|
|
720
|
+
return Y = q < Wr ? L(fe, q++) : 0, ce++, Y === 10 && (ce = 1, Ue++), Y;
|
|
721
|
+
}
|
|
722
|
+
function H() {
|
|
723
|
+
return L(fe, q);
|
|
724
|
+
}
|
|
725
|
+
function De() {
|
|
726
|
+
return q;
|
|
727
|
+
}
|
|
728
|
+
function xe(e, t) {
|
|
729
|
+
return _e(fe, e, t);
|
|
730
|
+
}
|
|
731
|
+
function Re(e) {
|
|
732
|
+
switch (e) {
|
|
733
|
+
// \0 \t \n \r \s whitespace token
|
|
734
|
+
case 0:
|
|
735
|
+
case 9:
|
|
736
|
+
case 10:
|
|
737
|
+
case 13:
|
|
738
|
+
case 32:
|
|
739
|
+
return 5;
|
|
740
|
+
// ! + , / > @ ~ isolate token
|
|
741
|
+
case 33:
|
|
742
|
+
case 43:
|
|
743
|
+
case 44:
|
|
744
|
+
case 47:
|
|
745
|
+
case 62:
|
|
746
|
+
case 64:
|
|
747
|
+
case 126:
|
|
748
|
+
// ; { } breakpoint token
|
|
749
|
+
case 59:
|
|
750
|
+
case 123:
|
|
751
|
+
case 125:
|
|
752
|
+
return 4;
|
|
753
|
+
// : accompanied token
|
|
754
|
+
case 58:
|
|
755
|
+
return 3;
|
|
756
|
+
// " ' ( [ opening delimit token
|
|
757
|
+
case 34:
|
|
758
|
+
case 39:
|
|
759
|
+
case 40:
|
|
760
|
+
case 91:
|
|
761
|
+
return 2;
|
|
762
|
+
// ) ] closing delimit token
|
|
763
|
+
case 41:
|
|
764
|
+
case 93:
|
|
765
|
+
return 1;
|
|
766
|
+
}
|
|
767
|
+
return 0;
|
|
768
|
+
}
|
|
769
|
+
function Vr(e) {
|
|
770
|
+
return Ue = ce = 1, Wr = K(fe = e), q = 0, [];
|
|
771
|
+
}
|
|
772
|
+
function Ur(e) {
|
|
773
|
+
return fe = "", e;
|
|
774
|
+
}
|
|
775
|
+
function Ye(e) {
|
|
776
|
+
return Lr(xe(q - 1, ir(e === 91 ? e + 2 : e === 40 ? e + 1 : e)));
|
|
777
|
+
}
|
|
778
|
+
function It(e) {
|
|
779
|
+
for (; (Y = H()) && Y < 33; )
|
|
780
|
+
z();
|
|
781
|
+
return Re(e) > 2 || Re(Y) > 3 ? "" : " ";
|
|
782
|
+
}
|
|
783
|
+
function Mt(e, t) {
|
|
784
|
+
for (; --t && z() && !(Y < 48 || Y > 102 || Y > 57 && Y < 65 || Y > 70 && Y < 97); )
|
|
785
|
+
;
|
|
786
|
+
return xe(e, De() + (t < 6 && H() == 32 && z() == 32));
|
|
787
|
+
}
|
|
788
|
+
function ir(e) {
|
|
789
|
+
for (; z(); )
|
|
790
|
+
switch (Y) {
|
|
791
|
+
// ] ) " '
|
|
792
|
+
case e:
|
|
793
|
+
return q;
|
|
794
|
+
// " '
|
|
795
|
+
case 34:
|
|
796
|
+
case 39:
|
|
797
|
+
e !== 34 && e !== 39 && ir(Y);
|
|
798
|
+
break;
|
|
799
|
+
// (
|
|
800
|
+
case 40:
|
|
801
|
+
e === 41 && ir(e);
|
|
802
|
+
break;
|
|
803
|
+
// \
|
|
804
|
+
case 92:
|
|
805
|
+
z();
|
|
806
|
+
break;
|
|
807
|
+
}
|
|
808
|
+
return q;
|
|
809
|
+
}
|
|
810
|
+
function Nt(e, t) {
|
|
811
|
+
for (; z() && e + Y !== 57; )
|
|
812
|
+
if (e + Y === 84 && H() === 47)
|
|
813
|
+
break;
|
|
814
|
+
return "/*" + xe(t, q - 1) + "*" + Ve(e === 47 ? e : z());
|
|
815
|
+
}
|
|
816
|
+
function Dt(e) {
|
|
817
|
+
for (; !Re(H()); )
|
|
818
|
+
z();
|
|
819
|
+
return xe(e, q);
|
|
820
|
+
}
|
|
821
|
+
function Yt(e) {
|
|
822
|
+
return Ur(Le("", null, null, null, [""], e = Vr(e), 0, [0], e));
|
|
823
|
+
}
|
|
824
|
+
function Le(e, t, n, a, i, s, u, v, d) {
|
|
825
|
+
for (var y = 0, p = 0, b = u, I = 0, k = 0, R = 0, E = 1, M = 1, _ = 1, m = 0, x = "", j = i, c = s, F = a, T = x; M; )
|
|
826
|
+
switch (R = m, m = z()) {
|
|
827
|
+
// (
|
|
828
|
+
case 40:
|
|
829
|
+
if (R != 108 && L(T, b - 1) == 58) {
|
|
830
|
+
ar(T += C(Ye(m), "&", "&\f"), "&\f") != -1 && (_ = -1);
|
|
831
|
+
break;
|
|
832
|
+
}
|
|
833
|
+
// " ' [
|
|
834
|
+
case 34:
|
|
835
|
+
case 39:
|
|
836
|
+
case 91:
|
|
837
|
+
T += Ye(m);
|
|
838
|
+
break;
|
|
839
|
+
// \t \n \r \s
|
|
840
|
+
case 9:
|
|
841
|
+
case 10:
|
|
842
|
+
case 13:
|
|
843
|
+
case 32:
|
|
844
|
+
T += It(R);
|
|
845
|
+
break;
|
|
846
|
+
// \
|
|
847
|
+
case 92:
|
|
848
|
+
T += Mt(De() - 1, 7);
|
|
849
|
+
continue;
|
|
850
|
+
// /
|
|
851
|
+
case 47:
|
|
852
|
+
switch (H()) {
|
|
853
|
+
case 42:
|
|
854
|
+
case 47:
|
|
855
|
+
Me(Lt(Nt(z(), De()), t, n), d);
|
|
856
|
+
break;
|
|
857
|
+
default:
|
|
858
|
+
T += "/";
|
|
859
|
+
}
|
|
860
|
+
break;
|
|
861
|
+
// {
|
|
862
|
+
case 123 * E:
|
|
863
|
+
v[y++] = K(T) * _;
|
|
864
|
+
// } ; \0
|
|
865
|
+
case 125 * E:
|
|
866
|
+
case 59:
|
|
867
|
+
case 0:
|
|
868
|
+
switch (m) {
|
|
869
|
+
// \0 }
|
|
870
|
+
case 0:
|
|
871
|
+
case 125:
|
|
872
|
+
M = 0;
|
|
873
|
+
// ;
|
|
874
|
+
case 59 + p:
|
|
875
|
+
_ == -1 && (T = C(T, /\f/g, "")), k > 0 && K(T) - b && Me(k > 32 ? Pr(T + ";", a, n, b - 1) : Pr(C(T, " ", "") + ";", a, n, b - 2), d);
|
|
876
|
+
break;
|
|
877
|
+
// @ ;
|
|
878
|
+
case 59:
|
|
879
|
+
T += ";";
|
|
880
|
+
// { rule/at-rule
|
|
881
|
+
default:
|
|
882
|
+
if (Me(F = Cr(T, t, n, y, p, i, v, x, j = [], c = [], b), s), m === 123)
|
|
883
|
+
if (p === 0)
|
|
884
|
+
Le(T, t, F, F, j, s, b, v, c);
|
|
885
|
+
else
|
|
886
|
+
switch (I === 99 && L(T, 3) === 110 ? 100 : I) {
|
|
887
|
+
// d l m s
|
|
888
|
+
case 100:
|
|
889
|
+
case 108:
|
|
890
|
+
case 109:
|
|
891
|
+
case 115:
|
|
892
|
+
Le(e, F, F, a && Me(Cr(e, F, F, 0, 0, i, v, x, i, j = [], b), c), i, c, b, v, a ? j : c);
|
|
893
|
+
break;
|
|
894
|
+
default:
|
|
895
|
+
Le(T, F, F, F, [""], c, 0, v, c);
|
|
896
|
+
}
|
|
897
|
+
}
|
|
898
|
+
y = p = k = 0, E = _ = 1, x = T = "", b = u;
|
|
899
|
+
break;
|
|
900
|
+
// :
|
|
901
|
+
case 58:
|
|
902
|
+
b = 1 + K(T), k = R;
|
|
903
|
+
default:
|
|
904
|
+
if (E < 1) {
|
|
905
|
+
if (m == 123)
|
|
906
|
+
--E;
|
|
907
|
+
else if (m == 125 && E++ == 0 && Ft() == 125)
|
|
908
|
+
continue;
|
|
909
|
+
}
|
|
910
|
+
switch (T += Ve(m), m * E) {
|
|
911
|
+
// &
|
|
912
|
+
case 38:
|
|
913
|
+
_ = p > 0 ? 1 : (T += "\f", -1);
|
|
914
|
+
break;
|
|
915
|
+
// ,
|
|
916
|
+
case 44:
|
|
917
|
+
v[y++] = (K(T) - 1) * _, _ = 1;
|
|
918
|
+
break;
|
|
919
|
+
// @
|
|
920
|
+
case 64:
|
|
921
|
+
H() === 45 && (T += Ye(z())), I = H(), p = b = K(x = T += Dt(De())), m++;
|
|
922
|
+
break;
|
|
923
|
+
// -
|
|
924
|
+
case 45:
|
|
925
|
+
R === 45 && K(T) == 2 && (E = 0);
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
return s;
|
|
929
|
+
}
|
|
930
|
+
function Cr(e, t, n, a, i, s, u, v, d, y, p) {
|
|
931
|
+
for (var b = i - 1, I = i === 0 ? s : [""], k = fr(I), R = 0, E = 0, M = 0; R < a; ++R)
|
|
932
|
+
for (var _ = 0, m = _e(e, b + 1, b = Pt(E = u[R])), x = e; _ < k; ++_)
|
|
933
|
+
(x = Lr(E > 0 ? I[_] + " " + m : C(m, /&\f/g, I[_]))) && (d[M++] = x);
|
|
934
|
+
return qe(e, t, n, i === 0 ? sr : v, d, y, p);
|
|
935
|
+
}
|
|
936
|
+
function Lt(e, t, n) {
|
|
937
|
+
return qe(e, t, n, Dr, Ve(jt()), _e(e, 2, -2), 0);
|
|
938
|
+
}
|
|
939
|
+
function Pr(e, t, n, a) {
|
|
940
|
+
return qe(e, t, n, cr, _e(e, 0, a), _e(e, a + 1, -1), a);
|
|
941
|
+
}
|
|
942
|
+
function se(e, t) {
|
|
943
|
+
for (var n = "", a = fr(e), i = 0; i < a; i++)
|
|
944
|
+
n += t(e[i], i, e, t) || "";
|
|
945
|
+
return n;
|
|
946
|
+
}
|
|
947
|
+
function Wt(e, t, n, a) {
|
|
948
|
+
switch (e.type) {
|
|
949
|
+
case Ct:
|
|
950
|
+
if (e.children.length) break;
|
|
951
|
+
case wt:
|
|
952
|
+
case cr:
|
|
953
|
+
return e.return = e.return || e.value;
|
|
954
|
+
case Dr:
|
|
955
|
+
return "";
|
|
956
|
+
case Yr:
|
|
957
|
+
return e.return = e.value + "{" + se(e.children, a) + "}";
|
|
958
|
+
case sr:
|
|
959
|
+
e.value = e.props.join(",");
|
|
960
|
+
}
|
|
961
|
+
return K(n = se(e.children, a)) ? e.return = e.value + "{" + n + "}" : "";
|
|
962
|
+
}
|
|
963
|
+
function Vt(e) {
|
|
964
|
+
var t = fr(e);
|
|
965
|
+
return function(n, a, i, s) {
|
|
966
|
+
for (var u = "", v = 0; v < t; v++)
|
|
967
|
+
u += e[v](n, a, i, s) || "";
|
|
968
|
+
return u;
|
|
969
|
+
};
|
|
970
|
+
}
|
|
971
|
+
function Ut(e) {
|
|
972
|
+
return function(t) {
|
|
973
|
+
t.root || (t = t.return) && e(t);
|
|
974
|
+
};
|
|
975
|
+
}
|
|
976
|
+
function qt(e) {
|
|
977
|
+
var t = /* @__PURE__ */ Object.create(null);
|
|
978
|
+
return function(n) {
|
|
979
|
+
return t[n] === void 0 && (t[n] = e(n)), t[n];
|
|
980
|
+
};
|
|
981
|
+
}
|
|
982
|
+
var zt = function(t, n, a) {
|
|
983
|
+
for (var i = 0, s = 0; i = s, s = H(), i === 38 && s === 12 && (n[a] = 1), !Re(s); )
|
|
984
|
+
z();
|
|
985
|
+
return xe(t, q);
|
|
986
|
+
}, Gt = function(t, n) {
|
|
987
|
+
var a = -1, i = 44;
|
|
988
|
+
do
|
|
989
|
+
switch (Re(i)) {
|
|
990
|
+
case 0:
|
|
991
|
+
i === 38 && H() === 12 && (n[a] = 1), t[a] += zt(q - 1, n, a);
|
|
992
|
+
break;
|
|
993
|
+
case 2:
|
|
994
|
+
t[a] += Ye(i);
|
|
995
|
+
break;
|
|
996
|
+
case 4:
|
|
997
|
+
if (i === 44) {
|
|
998
|
+
t[++a] = H() === 58 ? "&\f" : "", n[a] = t[a].length;
|
|
999
|
+
break;
|
|
1000
|
+
}
|
|
1001
|
+
// fallthrough
|
|
1002
|
+
default:
|
|
1003
|
+
t[a] += Ve(i);
|
|
1004
|
+
}
|
|
1005
|
+
while (i = z());
|
|
1006
|
+
return t;
|
|
1007
|
+
}, Bt = function(t, n) {
|
|
1008
|
+
return Ur(Gt(Vr(t), n));
|
|
1009
|
+
}, Or = /* @__PURE__ */ new WeakMap(), Kt = function(t) {
|
|
1010
|
+
if (!(t.type !== "rule" || !t.parent || // positive .length indicates that this rule contains pseudo
|
|
1011
|
+
// negative .length indicates that this rule has been already prefixed
|
|
1012
|
+
t.length < 1)) {
|
|
1013
|
+
for (var n = t.value, a = t.parent, i = t.column === a.column && t.line === a.line; a.type !== "rule"; )
|
|
1014
|
+
if (a = a.parent, !a) return;
|
|
1015
|
+
if (!(t.props.length === 1 && n.charCodeAt(0) !== 58 && !Or.get(a)) && !i) {
|
|
1016
|
+
Or.set(t, !0);
|
|
1017
|
+
for (var s = [], u = Bt(n, s), v = a.props, d = 0, y = 0; d < u.length; d++)
|
|
1018
|
+
for (var p = 0; p < v.length; p++, y++)
|
|
1019
|
+
t.props[y] = s[d] ? u[d].replace(/&\f/g, v[p]) : v[p] + " " + u[d];
|
|
1020
|
+
}
|
|
1021
|
+
}
|
|
1022
|
+
}, Jt = function(t) {
|
|
1023
|
+
if (t.type === "decl") {
|
|
1024
|
+
var n = t.value;
|
|
1025
|
+
// charcode for l
|
|
1026
|
+
n.charCodeAt(0) === 108 && // charcode for b
|
|
1027
|
+
n.charCodeAt(2) === 98 && (t.return = "", t.value = "");
|
|
1028
|
+
}
|
|
1029
|
+
};
|
|
1030
|
+
function qr(e, t) {
|
|
1031
|
+
switch (At(e, t)) {
|
|
1032
|
+
// color-adjust
|
|
1033
|
+
case 5103:
|
|
1034
|
+
return w + "print-" + e + e;
|
|
1035
|
+
// animation, animation-(delay|direction|duration|fill-mode|iteration-count|name|play-state|timing-function)
|
|
1036
|
+
case 5737:
|
|
1037
|
+
case 4201:
|
|
1038
|
+
case 3177:
|
|
1039
|
+
case 3433:
|
|
1040
|
+
case 1641:
|
|
1041
|
+
case 4457:
|
|
1042
|
+
case 2921:
|
|
1043
|
+
// text-decoration, filter, clip-path, backface-visibility, column, box-decoration-break
|
|
1044
|
+
case 5572:
|
|
1045
|
+
case 6356:
|
|
1046
|
+
case 5844:
|
|
1047
|
+
case 3191:
|
|
1048
|
+
case 6645:
|
|
1049
|
+
case 3005:
|
|
1050
|
+
// mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position, mask-composite,
|
|
1051
|
+
case 6391:
|
|
1052
|
+
case 5879:
|
|
1053
|
+
case 5623:
|
|
1054
|
+
case 6135:
|
|
1055
|
+
case 4599:
|
|
1056
|
+
case 4855:
|
|
1057
|
+
// background-clip, columns, column-(count|fill|gap|rule|rule-color|rule-style|rule-width|span|width)
|
|
1058
|
+
case 4215:
|
|
1059
|
+
case 6389:
|
|
1060
|
+
case 5109:
|
|
1061
|
+
case 5365:
|
|
1062
|
+
case 5621:
|
|
1063
|
+
case 3829:
|
|
1064
|
+
return w + e + e;
|
|
1065
|
+
// appearance, user-select, transform, hyphens, text-size-adjust
|
|
1066
|
+
case 5349:
|
|
1067
|
+
case 4246:
|
|
1068
|
+
case 4810:
|
|
1069
|
+
case 6968:
|
|
1070
|
+
case 2756:
|
|
1071
|
+
return w + e + We + e + W + e + e;
|
|
1072
|
+
// flex, flex-direction
|
|
1073
|
+
case 6828:
|
|
1074
|
+
case 4268:
|
|
1075
|
+
return w + e + W + e + e;
|
|
1076
|
+
// order
|
|
1077
|
+
case 6165:
|
|
1078
|
+
return w + e + W + "flex-" + e + e;
|
|
1079
|
+
// align-items
|
|
1080
|
+
case 5187:
|
|
1081
|
+
return w + e + C(e, /(\w+).+(:[^]+)/, w + "box-$1$2" + W + "flex-$1$2") + e;
|
|
1082
|
+
// align-self
|
|
1083
|
+
case 5443:
|
|
1084
|
+
return w + e + W + "flex-item-" + C(e, /flex-|-self/, "") + e;
|
|
1085
|
+
// align-content
|
|
1086
|
+
case 4675:
|
|
1087
|
+
return w + e + W + "flex-line-pack" + C(e, /align-content|flex-|-self/, "") + e;
|
|
1088
|
+
// flex-shrink
|
|
1089
|
+
case 5548:
|
|
1090
|
+
return w + e + W + C(e, "shrink", "negative") + e;
|
|
1091
|
+
// flex-basis
|
|
1092
|
+
case 5292:
|
|
1093
|
+
return w + e + W + C(e, "basis", "preferred-size") + e;
|
|
1094
|
+
// flex-grow
|
|
1095
|
+
case 6060:
|
|
1096
|
+
return w + "box-" + C(e, "-grow", "") + w + e + W + C(e, "grow", "positive") + e;
|
|
1097
|
+
// transition
|
|
1098
|
+
case 4554:
|
|
1099
|
+
return w + C(e, /([^-])(transform)/g, "$1" + w + "$2") + e;
|
|
1100
|
+
// cursor
|
|
1101
|
+
case 6187:
|
|
1102
|
+
return C(C(C(e, /(zoom-|grab)/, w + "$1"), /(image-set)/, w + "$1"), e, "") + e;
|
|
1103
|
+
// background, background-image
|
|
1104
|
+
case 5495:
|
|
1105
|
+
case 3959:
|
|
1106
|
+
return C(e, /(image-set\([^]*)/, w + "$1$`$1");
|
|
1107
|
+
// justify-content
|
|
1108
|
+
case 4968:
|
|
1109
|
+
return C(C(e, /(.+:)(flex-)?(.*)/, w + "box-pack:$3" + W + "flex-pack:$3"), /s.+-b[^;]+/, "justify") + w + e + e;
|
|
1110
|
+
// (margin|padding)-inline-(start|end)
|
|
1111
|
+
case 4095:
|
|
1112
|
+
case 3583:
|
|
1113
|
+
case 4068:
|
|
1114
|
+
case 2532:
|
|
1115
|
+
return C(e, /(.+)-inline(.+)/, w + "$1$2") + e;
|
|
1116
|
+
// (min|max)?(width|height|inline-size|block-size)
|
|
1117
|
+
case 8116:
|
|
1118
|
+
case 7059:
|
|
1119
|
+
case 5753:
|
|
1120
|
+
case 5535:
|
|
1121
|
+
case 5445:
|
|
1122
|
+
case 5701:
|
|
1123
|
+
case 4933:
|
|
1124
|
+
case 4677:
|
|
1125
|
+
case 5533:
|
|
1126
|
+
case 5789:
|
|
1127
|
+
case 5021:
|
|
1128
|
+
case 4765:
|
|
1129
|
+
if (K(e) - 1 - t > 6) switch (L(e, t + 1)) {
|
|
1130
|
+
// (m)ax-content, (m)in-content
|
|
1131
|
+
case 109:
|
|
1132
|
+
if (L(e, t + 4) !== 45) break;
|
|
1133
|
+
// (f)ill-available, (f)it-content
|
|
1134
|
+
case 102:
|
|
1135
|
+
return C(e, /(.+:)(.+)-([^]+)/, "$1" + w + "$2-$3$1" + We + (L(e, t + 3) == 108 ? "$3" : "$2-$3")) + e;
|
|
1136
|
+
// (s)tretch
|
|
1137
|
+
case 115:
|
|
1138
|
+
return ~ar(e, "stretch") ? qr(C(e, "stretch", "fill-available"), t) + e : e;
|
|
1139
|
+
}
|
|
1140
|
+
break;
|
|
1141
|
+
// position: sticky
|
|
1142
|
+
case 4949:
|
|
1143
|
+
if (L(e, t + 1) !== 115) break;
|
|
1144
|
+
// display: (flex|inline-flex)
|
|
1145
|
+
case 6444:
|
|
1146
|
+
switch (L(e, K(e) - 3 - (~ar(e, "!important") && 10))) {
|
|
1147
|
+
// stic(k)y
|
|
1148
|
+
case 107:
|
|
1149
|
+
return C(e, ":", ":" + w) + e;
|
|
1150
|
+
// (inline-)?fl(e)x
|
|
1151
|
+
case 101:
|
|
1152
|
+
return C(e, /(.+:)([^;!]+)(;|!.+)?/, "$1" + w + (L(e, 14) === 45 ? "inline-" : "") + "box$3$1" + w + "$2$3$1" + W + "$2box$3") + e;
|
|
1153
|
+
}
|
|
1154
|
+
break;
|
|
1155
|
+
// writing-mode
|
|
1156
|
+
case 5936:
|
|
1157
|
+
switch (L(e, t + 11)) {
|
|
1158
|
+
// vertical-l(r)
|
|
1159
|
+
case 114:
|
|
1160
|
+
return w + e + W + C(e, /[svh]\w+-[tblr]{2}/, "tb") + e;
|
|
1161
|
+
// vertical-r(l)
|
|
1162
|
+
case 108:
|
|
1163
|
+
return w + e + W + C(e, /[svh]\w+-[tblr]{2}/, "tb-rl") + e;
|
|
1164
|
+
// horizontal(-)tb
|
|
1165
|
+
case 45:
|
|
1166
|
+
return w + e + W + C(e, /[svh]\w+-[tblr]{2}/, "lr") + e;
|
|
1167
|
+
}
|
|
1168
|
+
return w + e + W + e + e;
|
|
1169
|
+
}
|
|
1170
|
+
return e;
|
|
1171
|
+
}
|
|
1172
|
+
var Ht = function(t, n, a, i) {
|
|
1173
|
+
if (t.length > -1 && !t.return) switch (t.type) {
|
|
1174
|
+
case cr:
|
|
1175
|
+
t.return = qr(t.value, t.length);
|
|
1176
|
+
break;
|
|
1177
|
+
case Yr:
|
|
1178
|
+
return se([ge(t, {
|
|
1179
|
+
value: C(t.value, "@", "@" + w)
|
|
1180
|
+
})], i);
|
|
1181
|
+
case sr:
|
|
1182
|
+
if (t.length) return kt(t.props, function(s) {
|
|
1183
|
+
switch ($t(s, /(::plac\w+|:read-\w+)/)) {
|
|
1184
|
+
// :read-(only|write)
|
|
1185
|
+
case ":read-only":
|
|
1186
|
+
case ":read-write":
|
|
1187
|
+
return se([ge(t, {
|
|
1188
|
+
props: [C(s, /:(read-\w+)/, ":" + We + "$1")]
|
|
1189
|
+
})], i);
|
|
1190
|
+
// :placeholder
|
|
1191
|
+
case "::placeholder":
|
|
1192
|
+
return se([ge(t, {
|
|
1193
|
+
props: [C(s, /:(plac\w+)/, ":" + w + "input-$1")]
|
|
1194
|
+
}), ge(t, {
|
|
1195
|
+
props: [C(s, /:(plac\w+)/, ":" + We + "$1")]
|
|
1196
|
+
}), ge(t, {
|
|
1197
|
+
props: [C(s, /:(plac\w+)/, W + "input-$1")]
|
|
1198
|
+
})], i);
|
|
1199
|
+
}
|
|
1200
|
+
return "";
|
|
1201
|
+
});
|
|
1202
|
+
}
|
|
1203
|
+
}, Xt = [Ht], Zt = function(t) {
|
|
1204
|
+
var n = t.key;
|
|
1205
|
+
if (n === "css") {
|
|
1206
|
+
var a = document.querySelectorAll("style[data-emotion]:not([data-s])");
|
|
1207
|
+
Array.prototype.forEach.call(a, function(E) {
|
|
1208
|
+
var M = E.getAttribute("data-emotion");
|
|
1209
|
+
M.indexOf(" ") !== -1 && (document.head.appendChild(E), E.setAttribute("data-s", ""));
|
|
1210
|
+
});
|
|
1211
|
+
}
|
|
1212
|
+
var i = t.stylisPlugins || Xt, s = {}, u, v = [];
|
|
1213
|
+
u = t.container || document.head, Array.prototype.forEach.call(
|
|
1214
|
+
// this means we will ignore elements which don't have a space in them which
|
|
1215
|
+
// means that the style elements we're looking at are only Emotion 11 server-rendered style elements
|
|
1216
|
+
document.querySelectorAll('style[data-emotion^="' + n + ' "]'),
|
|
1217
|
+
function(E) {
|
|
1218
|
+
for (var M = E.getAttribute("data-emotion").split(" "), _ = 1; _ < M.length; _++)
|
|
1219
|
+
s[M[_]] = !0;
|
|
1220
|
+
v.push(E);
|
|
1221
|
+
}
|
|
1222
|
+
);
|
|
1223
|
+
var d, y = [Kt, Jt];
|
|
1224
|
+
{
|
|
1225
|
+
var p, b = [Wt, Ut(function(E) {
|
|
1226
|
+
p.insert(E);
|
|
1227
|
+
})], I = Vt(y.concat(i, b)), k = function(M) {
|
|
1228
|
+
return se(Yt(M), I);
|
|
1229
|
+
};
|
|
1230
|
+
d = function(M, _, m, x) {
|
|
1231
|
+
p = m, k(M ? M + "{" + _.styles + "}" : _.styles), x && (R.inserted[_.name] = !0);
|
|
1232
|
+
};
|
|
1233
|
+
}
|
|
1234
|
+
var R = {
|
|
1235
|
+
key: n,
|
|
1236
|
+
sheet: new Tt({
|
|
1237
|
+
key: n,
|
|
1238
|
+
container: u,
|
|
1239
|
+
nonce: t.nonce,
|
|
1240
|
+
speedy: t.speedy,
|
|
1241
|
+
prepend: t.prepend,
|
|
1242
|
+
insertionPoint: t.insertionPoint
|
|
1243
|
+
}),
|
|
1244
|
+
nonce: t.nonce,
|
|
1245
|
+
inserted: s,
|
|
1246
|
+
registered: {},
|
|
1247
|
+
insert: d
|
|
1248
|
+
};
|
|
1249
|
+
return R.sheet.hydrate(v), R;
|
|
1250
|
+
}, Ne = { exports: {} }, O = {};
|
|
1251
|
+
/** @license React v16.13.1
|
|
1252
|
+
* react-is.production.min.js
|
|
1253
|
+
*
|
|
1254
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
1255
|
+
*
|
|
1256
|
+
* This source code is licensed under the MIT license found in the
|
|
1257
|
+
* LICENSE file in the root directory of this source tree.
|
|
1258
|
+
*/
|
|
1259
|
+
var Ar;
|
|
1260
|
+
function Qt() {
|
|
1261
|
+
if (Ar) return O;
|
|
1262
|
+
Ar = 1;
|
|
1263
|
+
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, a = e ? Symbol.for("react.fragment") : 60107, i = e ? Symbol.for("react.strict_mode") : 60108, s = e ? Symbol.for("react.profiler") : 60114, u = e ? Symbol.for("react.provider") : 60109, v = e ? Symbol.for("react.context") : 60110, d = e ? Symbol.for("react.async_mode") : 60111, y = e ? Symbol.for("react.concurrent_mode") : 60111, p = e ? Symbol.for("react.forward_ref") : 60112, b = e ? Symbol.for("react.suspense") : 60113, I = e ? Symbol.for("react.suspense_list") : 60120, k = e ? Symbol.for("react.memo") : 60115, R = e ? Symbol.for("react.lazy") : 60116, E = e ? Symbol.for("react.block") : 60121, M = e ? Symbol.for("react.fundamental") : 60117, _ = e ? Symbol.for("react.responder") : 60118, m = e ? Symbol.for("react.scope") : 60119;
|
|
1264
|
+
function x(c) {
|
|
1265
|
+
if (typeof c == "object" && c !== null) {
|
|
1266
|
+
var F = c.$$typeof;
|
|
1267
|
+
switch (F) {
|
|
1268
|
+
case t:
|
|
1269
|
+
switch (c = c.type, c) {
|
|
1270
|
+
case d:
|
|
1271
|
+
case y:
|
|
1272
|
+
case a:
|
|
1273
|
+
case s:
|
|
1274
|
+
case i:
|
|
1275
|
+
case b:
|
|
1276
|
+
return c;
|
|
1277
|
+
default:
|
|
1278
|
+
switch (c = c && c.$$typeof, c) {
|
|
1279
|
+
case v:
|
|
1280
|
+
case p:
|
|
1281
|
+
case R:
|
|
1282
|
+
case k:
|
|
1283
|
+
case u:
|
|
1284
|
+
return c;
|
|
1285
|
+
default:
|
|
1286
|
+
return F;
|
|
1287
|
+
}
|
|
1288
|
+
}
|
|
1289
|
+
case n:
|
|
1290
|
+
return F;
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1294
|
+
function j(c) {
|
|
1295
|
+
return x(c) === y;
|
|
1296
|
+
}
|
|
1297
|
+
return O.AsyncMode = d, O.ConcurrentMode = y, O.ContextConsumer = v, O.ContextProvider = u, O.Element = t, O.ForwardRef = p, O.Fragment = a, O.Lazy = R, O.Memo = k, O.Portal = n, O.Profiler = s, O.StrictMode = i, O.Suspense = b, O.isAsyncMode = function(c) {
|
|
1298
|
+
return j(c) || x(c) === d;
|
|
1299
|
+
}, O.isConcurrentMode = j, O.isContextConsumer = function(c) {
|
|
1300
|
+
return x(c) === v;
|
|
1301
|
+
}, O.isContextProvider = function(c) {
|
|
1302
|
+
return x(c) === u;
|
|
1303
|
+
}, O.isElement = function(c) {
|
|
1304
|
+
return typeof c == "object" && c !== null && c.$$typeof === t;
|
|
1305
|
+
}, O.isForwardRef = function(c) {
|
|
1306
|
+
return x(c) === p;
|
|
1307
|
+
}, O.isFragment = function(c) {
|
|
1308
|
+
return x(c) === a;
|
|
1309
|
+
}, O.isLazy = function(c) {
|
|
1310
|
+
return x(c) === R;
|
|
1311
|
+
}, O.isMemo = function(c) {
|
|
1312
|
+
return x(c) === k;
|
|
1313
|
+
}, O.isPortal = function(c) {
|
|
1314
|
+
return x(c) === n;
|
|
1315
|
+
}, O.isProfiler = function(c) {
|
|
1316
|
+
return x(c) === s;
|
|
1317
|
+
}, O.isStrictMode = function(c) {
|
|
1318
|
+
return x(c) === i;
|
|
1319
|
+
}, O.isSuspense = function(c) {
|
|
1320
|
+
return x(c) === b;
|
|
1321
|
+
}, O.isValidElementType = function(c) {
|
|
1322
|
+
return typeof c == "string" || typeof c == "function" || c === a || c === y || c === s || c === i || c === b || c === I || typeof c == "object" && c !== null && (c.$$typeof === R || c.$$typeof === k || c.$$typeof === u || c.$$typeof === v || c.$$typeof === p || c.$$typeof === M || c.$$typeof === _ || c.$$typeof === m || c.$$typeof === E);
|
|
1323
|
+
}, O.typeOf = x, O;
|
|
1324
|
+
}
|
|
1325
|
+
var A = {};
|
|
1326
|
+
/** @license React v16.13.1
|
|
1327
|
+
* react-is.development.js
|
|
1328
|
+
*
|
|
1329
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
1330
|
+
*
|
|
1331
|
+
* This source code is licensed under the MIT license found in the
|
|
1332
|
+
* LICENSE file in the root directory of this source tree.
|
|
1333
|
+
*/
|
|
1334
|
+
var $r;
|
|
1335
|
+
function en() {
|
|
1336
|
+
return $r || ($r = 1, process.env.NODE_ENV !== "production" && function() {
|
|
1337
|
+
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, a = e ? Symbol.for("react.fragment") : 60107, i = e ? Symbol.for("react.strict_mode") : 60108, s = e ? Symbol.for("react.profiler") : 60114, u = e ? Symbol.for("react.provider") : 60109, v = e ? Symbol.for("react.context") : 60110, d = e ? Symbol.for("react.async_mode") : 60111, y = e ? Symbol.for("react.concurrent_mode") : 60111, p = e ? Symbol.for("react.forward_ref") : 60112, b = e ? Symbol.for("react.suspense") : 60113, I = e ? Symbol.for("react.suspense_list") : 60120, k = e ? Symbol.for("react.memo") : 60115, R = e ? Symbol.for("react.lazy") : 60116, E = e ? Symbol.for("react.block") : 60121, M = e ? Symbol.for("react.fundamental") : 60117, _ = e ? Symbol.for("react.responder") : 60118, m = e ? Symbol.for("react.scope") : 60119;
|
|
1338
|
+
function x(l) {
|
|
1339
|
+
return typeof l == "string" || typeof l == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
1340
|
+
l === a || l === y || l === s || l === i || l === b || l === I || typeof l == "object" && l !== null && (l.$$typeof === R || l.$$typeof === k || l.$$typeof === u || l.$$typeof === v || l.$$typeof === p || l.$$typeof === M || l.$$typeof === _ || l.$$typeof === m || l.$$typeof === E);
|
|
1341
|
+
}
|
|
1342
|
+
function j(l) {
|
|
1343
|
+
if (typeof l == "object" && l !== null) {
|
|
1344
|
+
var he = l.$$typeof;
|
|
1345
|
+
switch (he) {
|
|
1346
|
+
case t:
|
|
1347
|
+
var ae = l.type;
|
|
1348
|
+
switch (ae) {
|
|
1349
|
+
case d:
|
|
1350
|
+
case y:
|
|
1351
|
+
case a:
|
|
1352
|
+
case s:
|
|
1353
|
+
case i:
|
|
1354
|
+
case b:
|
|
1355
|
+
return ae;
|
|
1356
|
+
default:
|
|
1357
|
+
var ee = ae && ae.$$typeof;
|
|
1358
|
+
switch (ee) {
|
|
1359
|
+
case v:
|
|
1360
|
+
case p:
|
|
1361
|
+
case R:
|
|
1362
|
+
case k:
|
|
1363
|
+
case u:
|
|
1364
|
+
return ee;
|
|
1365
|
+
default:
|
|
1366
|
+
return he;
|
|
1367
|
+
}
|
|
1368
|
+
}
|
|
1369
|
+
case n:
|
|
1370
|
+
return he;
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
var c = d, F = y, T = v, Te = u, we = t, Ge = p, Be = a, Ce = R, B = k, X = n, Q = s, Pe = i, Oe = b, ue = !1;
|
|
1375
|
+
function Ae(l) {
|
|
1376
|
+
return ue || (ue = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), le(l) || j(l) === d;
|
|
1377
|
+
}
|
|
1378
|
+
function le(l) {
|
|
1379
|
+
return j(l) === y;
|
|
1380
|
+
}
|
|
1381
|
+
function $e(l) {
|
|
1382
|
+
return j(l) === v;
|
|
1383
|
+
}
|
|
1384
|
+
function ke(l) {
|
|
1385
|
+
return j(l) === u;
|
|
1386
|
+
}
|
|
1387
|
+
function je(l) {
|
|
1388
|
+
return typeof l == "object" && l !== null && l.$$typeof === t;
|
|
1389
|
+
}
|
|
1390
|
+
function Ke(l) {
|
|
1391
|
+
return j(l) === p;
|
|
1392
|
+
}
|
|
1393
|
+
function Je(l) {
|
|
1394
|
+
return j(l) === a;
|
|
1395
|
+
}
|
|
1396
|
+
function de(l) {
|
|
1397
|
+
return j(l) === R;
|
|
1398
|
+
}
|
|
1399
|
+
function ve(l) {
|
|
1400
|
+
return j(l) === k;
|
|
1401
|
+
}
|
|
1402
|
+
function te(l) {
|
|
1403
|
+
return j(l) === n;
|
|
1404
|
+
}
|
|
1405
|
+
function pe(l) {
|
|
1406
|
+
return j(l) === s;
|
|
1407
|
+
}
|
|
1408
|
+
function ne(l) {
|
|
1409
|
+
return j(l) === i;
|
|
1410
|
+
}
|
|
1411
|
+
function He(l) {
|
|
1412
|
+
return j(l) === b;
|
|
1413
|
+
}
|
|
1414
|
+
A.AsyncMode = c, A.ConcurrentMode = F, A.ContextConsumer = T, A.ContextProvider = Te, A.Element = we, A.ForwardRef = Ge, A.Fragment = Be, A.Lazy = Ce, A.Memo = B, A.Portal = X, A.Profiler = Q, A.StrictMode = Pe, A.Suspense = Oe, A.isAsyncMode = Ae, A.isConcurrentMode = le, A.isContextConsumer = $e, A.isContextProvider = ke, A.isElement = je, A.isForwardRef = Ke, A.isFragment = Je, A.isLazy = de, A.isMemo = ve, A.isPortal = te, A.isProfiler = pe, A.isStrictMode = ne, A.isSuspense = He, A.isValidElementType = x, A.typeOf = j;
|
|
1415
|
+
}()), A;
|
|
1416
|
+
}
|
|
1417
|
+
var kr;
|
|
1418
|
+
function rn() {
|
|
1419
|
+
return kr || (kr = 1, process.env.NODE_ENV === "production" ? Ne.exports = Qt() : Ne.exports = en()), Ne.exports;
|
|
1420
|
+
}
|
|
1421
|
+
var tr, jr;
|
|
1422
|
+
function tn() {
|
|
1423
|
+
if (jr) return tr;
|
|
1424
|
+
jr = 1;
|
|
1425
|
+
var e = rn(), t = {
|
|
1426
|
+
childContextTypes: !0,
|
|
1427
|
+
contextType: !0,
|
|
1428
|
+
contextTypes: !0,
|
|
1429
|
+
defaultProps: !0,
|
|
1430
|
+
displayName: !0,
|
|
1431
|
+
getDefaultProps: !0,
|
|
1432
|
+
getDerivedStateFromError: !0,
|
|
1433
|
+
getDerivedStateFromProps: !0,
|
|
1434
|
+
mixins: !0,
|
|
1435
|
+
propTypes: !0,
|
|
1436
|
+
type: !0
|
|
1437
|
+
}, n = {
|
|
1438
|
+
name: !0,
|
|
1439
|
+
length: !0,
|
|
1440
|
+
prototype: !0,
|
|
1441
|
+
caller: !0,
|
|
1442
|
+
callee: !0,
|
|
1443
|
+
arguments: !0,
|
|
1444
|
+
arity: !0
|
|
1445
|
+
}, a = {
|
|
1446
|
+
$$typeof: !0,
|
|
1447
|
+
render: !0,
|
|
1448
|
+
defaultProps: !0,
|
|
1449
|
+
displayName: !0,
|
|
1450
|
+
propTypes: !0
|
|
1451
|
+
}, i = {
|
|
1452
|
+
$$typeof: !0,
|
|
1453
|
+
compare: !0,
|
|
1454
|
+
defaultProps: !0,
|
|
1455
|
+
displayName: !0,
|
|
1456
|
+
propTypes: !0,
|
|
1457
|
+
type: !0
|
|
1458
|
+
}, s = {};
|
|
1459
|
+
s[e.ForwardRef] = a, s[e.Memo] = i;
|
|
1460
|
+
function u(R) {
|
|
1461
|
+
return e.isMemo(R) ? i : s[R.$$typeof] || t;
|
|
1462
|
+
}
|
|
1463
|
+
var v = Object.defineProperty, d = Object.getOwnPropertyNames, y = Object.getOwnPropertySymbols, p = Object.getOwnPropertyDescriptor, b = Object.getPrototypeOf, I = Object.prototype;
|
|
1464
|
+
function k(R, E, M) {
|
|
1465
|
+
if (typeof E != "string") {
|
|
1466
|
+
if (I) {
|
|
1467
|
+
var _ = b(E);
|
|
1468
|
+
_ && _ !== I && k(R, _, M);
|
|
1469
|
+
}
|
|
1470
|
+
var m = d(E);
|
|
1471
|
+
y && (m = m.concat(y(E)));
|
|
1472
|
+
for (var x = u(R), j = u(E), c = 0; c < m.length; ++c) {
|
|
1473
|
+
var F = m[c];
|
|
1474
|
+
if (!n[F] && !(M && M[F]) && !(j && j[F]) && !(x && x[F])) {
|
|
1475
|
+
var T = p(E, F);
|
|
1476
|
+
try {
|
|
1477
|
+
v(R, F, T);
|
|
1478
|
+
} catch {
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
}
|
|
1483
|
+
return R;
|
|
1484
|
+
}
|
|
1485
|
+
return tr = k, tr;
|
|
1486
|
+
}
|
|
1487
|
+
tn();
|
|
1488
|
+
var nn = !0;
|
|
1489
|
+
function an(e, t, n) {
|
|
1490
|
+
var a = "";
|
|
1491
|
+
return n.split(" ").forEach(function(i) {
|
|
1492
|
+
e[i] !== void 0 ? t.push(e[i] + ";") : i && (a += i + " ");
|
|
1493
|
+
}), a;
|
|
1494
|
+
}
|
|
1495
|
+
var zr = function(t, n, a) {
|
|
1496
|
+
var i = t.key + "-" + n.name;
|
|
1497
|
+
// we only need to add the styles to the registered cache if the
|
|
1498
|
+
// class name could be used further down
|
|
1499
|
+
// the tree but if it's a string tag, we know it won't
|
|
1500
|
+
// so we don't have to add it to registered cache.
|
|
1501
|
+
// this improves memory usage since we can avoid storing the whole style string
|
|
1502
|
+
(a === !1 || // we need to always store it if we're in compat mode and
|
|
1503
|
+
// in node since emotion-server relies on whether a style is in
|
|
1504
|
+
// the registered cache to know whether a style is global or not
|
|
1505
|
+
// also, note that this check will be dead code eliminated in the browser
|
|
1506
|
+
nn === !1) && t.registered[i] === void 0 && (t.registered[i] = n.styles);
|
|
1507
|
+
}, on = function(t, n, a) {
|
|
1508
|
+
zr(t, n, a);
|
|
1509
|
+
var i = t.key + "-" + n.name;
|
|
1510
|
+
if (t.inserted[n.name] === void 0) {
|
|
1511
|
+
var s = n;
|
|
1512
|
+
do
|
|
1513
|
+
t.insert(n === s ? "." + i : "", s, t.sheet, !0), s = s.next;
|
|
1514
|
+
while (s !== void 0);
|
|
1515
|
+
}
|
|
1516
|
+
};
|
|
1517
|
+
function sn(e) {
|
|
1518
|
+
for (var t = 0, n, a = 0, i = e.length; i >= 4; ++a, i -= 4)
|
|
1519
|
+
n = e.charCodeAt(a) & 255 | (e.charCodeAt(++a) & 255) << 8 | (e.charCodeAt(++a) & 255) << 16 | (e.charCodeAt(++a) & 255) << 24, n = /* Math.imul(k, m): */
|
|
1520
|
+
(n & 65535) * 1540483477 + ((n >>> 16) * 59797 << 16), n ^= /* k >>> r: */
|
|
1521
|
+
n >>> 24, t = /* Math.imul(k, m): */
|
|
1522
|
+
(n & 65535) * 1540483477 + ((n >>> 16) * 59797 << 16) ^ /* Math.imul(h, m): */
|
|
1523
|
+
(t & 65535) * 1540483477 + ((t >>> 16) * 59797 << 16);
|
|
1524
|
+
switch (i) {
|
|
1525
|
+
case 3:
|
|
1526
|
+
t ^= (e.charCodeAt(a + 2) & 255) << 16;
|
|
1527
|
+
case 2:
|
|
1528
|
+
t ^= (e.charCodeAt(a + 1) & 255) << 8;
|
|
1529
|
+
case 1:
|
|
1530
|
+
t ^= e.charCodeAt(a) & 255, t = /* Math.imul(h, m): */
|
|
1531
|
+
(t & 65535) * 1540483477 + ((t >>> 16) * 59797 << 16);
|
|
1532
|
+
}
|
|
1533
|
+
return t ^= t >>> 13, t = /* Math.imul(h, m): */
|
|
1534
|
+
(t & 65535) * 1540483477 + ((t >>> 16) * 59797 << 16), ((t ^ t >>> 15) >>> 0).toString(36);
|
|
1535
|
+
}
|
|
1536
|
+
var cn = {
|
|
1537
|
+
animationIterationCount: 1,
|
|
1538
|
+
aspectRatio: 1,
|
|
1539
|
+
borderImageOutset: 1,
|
|
1540
|
+
borderImageSlice: 1,
|
|
1541
|
+
borderImageWidth: 1,
|
|
1542
|
+
boxFlex: 1,
|
|
1543
|
+
boxFlexGroup: 1,
|
|
1544
|
+
boxOrdinalGroup: 1,
|
|
1545
|
+
columnCount: 1,
|
|
1546
|
+
columns: 1,
|
|
1547
|
+
flex: 1,
|
|
1548
|
+
flexGrow: 1,
|
|
1549
|
+
flexPositive: 1,
|
|
1550
|
+
flexShrink: 1,
|
|
1551
|
+
flexNegative: 1,
|
|
1552
|
+
flexOrder: 1,
|
|
1553
|
+
gridRow: 1,
|
|
1554
|
+
gridRowEnd: 1,
|
|
1555
|
+
gridRowSpan: 1,
|
|
1556
|
+
gridRowStart: 1,
|
|
1557
|
+
gridColumn: 1,
|
|
1558
|
+
gridColumnEnd: 1,
|
|
1559
|
+
gridColumnSpan: 1,
|
|
1560
|
+
gridColumnStart: 1,
|
|
1561
|
+
msGridRow: 1,
|
|
1562
|
+
msGridRowSpan: 1,
|
|
1563
|
+
msGridColumn: 1,
|
|
1564
|
+
msGridColumnSpan: 1,
|
|
1565
|
+
fontWeight: 1,
|
|
1566
|
+
lineHeight: 1,
|
|
1567
|
+
opacity: 1,
|
|
1568
|
+
order: 1,
|
|
1569
|
+
orphans: 1,
|
|
1570
|
+
scale: 1,
|
|
1571
|
+
tabSize: 1,
|
|
1572
|
+
widows: 1,
|
|
1573
|
+
zIndex: 1,
|
|
1574
|
+
zoom: 1,
|
|
1575
|
+
WebkitLineClamp: 1,
|
|
1576
|
+
// SVG-related properties
|
|
1577
|
+
fillOpacity: 1,
|
|
1578
|
+
floodOpacity: 1,
|
|
1579
|
+
stopOpacity: 1,
|
|
1580
|
+
strokeDasharray: 1,
|
|
1581
|
+
strokeDashoffset: 1,
|
|
1582
|
+
strokeMiterlimit: 1,
|
|
1583
|
+
strokeOpacity: 1,
|
|
1584
|
+
strokeWidth: 1
|
|
1585
|
+
}, fn = /[A-Z]|^ms/g, un = /_EMO_([^_]+?)_([^]*?)_EMO_/g, Gr = function(t) {
|
|
1586
|
+
return t.charCodeAt(1) === 45;
|
|
1587
|
+
}, Fr = function(t) {
|
|
1588
|
+
return t != null && typeof t != "boolean";
|
|
1589
|
+
}, nr = /* @__PURE__ */ qt(function(e) {
|
|
1590
|
+
return Gr(e) ? e : e.replace(fn, "-$&").toLowerCase();
|
|
1591
|
+
}), Ir = function(t, n) {
|
|
1592
|
+
switch (t) {
|
|
1593
|
+
case "animation":
|
|
1594
|
+
case "animationName":
|
|
1595
|
+
if (typeof n == "string")
|
|
1596
|
+
return n.replace(un, function(a, i, s) {
|
|
1597
|
+
return J = {
|
|
1598
|
+
name: i,
|
|
1599
|
+
styles: s,
|
|
1600
|
+
next: J
|
|
1601
|
+
}, i;
|
|
1602
|
+
});
|
|
1603
|
+
}
|
|
1604
|
+
return cn[t] !== 1 && !Gr(t) && typeof n == "number" && n !== 0 ? n + "px" : n;
|
|
1605
|
+
};
|
|
1606
|
+
function Se(e, t, n) {
|
|
1607
|
+
if (n == null)
|
|
1608
|
+
return "";
|
|
1609
|
+
var a = n;
|
|
1610
|
+
if (a.__emotion_styles !== void 0)
|
|
1611
|
+
return a;
|
|
1612
|
+
switch (typeof n) {
|
|
1613
|
+
case "boolean":
|
|
1614
|
+
return "";
|
|
1615
|
+
case "object": {
|
|
1616
|
+
var i = n;
|
|
1617
|
+
if (i.anim === 1)
|
|
1618
|
+
return J = {
|
|
1619
|
+
name: i.name,
|
|
1620
|
+
styles: i.styles,
|
|
1621
|
+
next: J
|
|
1622
|
+
}, i.name;
|
|
1623
|
+
var s = n;
|
|
1624
|
+
if (s.styles !== void 0) {
|
|
1625
|
+
var u = s.next;
|
|
1626
|
+
if (u !== void 0)
|
|
1627
|
+
for (; u !== void 0; )
|
|
1628
|
+
J = {
|
|
1629
|
+
name: u.name,
|
|
1630
|
+
styles: u.styles,
|
|
1631
|
+
next: J
|
|
1632
|
+
}, u = u.next;
|
|
1633
|
+
var v = s.styles + ";";
|
|
1634
|
+
return v;
|
|
1635
|
+
}
|
|
1636
|
+
return ln(e, t, n);
|
|
1637
|
+
}
|
|
1638
|
+
case "function": {
|
|
1639
|
+
if (e !== void 0) {
|
|
1640
|
+
var d = J, y = n(e);
|
|
1641
|
+
return J = d, Se(e, t, y);
|
|
1642
|
+
}
|
|
1643
|
+
break;
|
|
1644
|
+
}
|
|
1645
|
+
}
|
|
1646
|
+
var p = n;
|
|
1647
|
+
return p;
|
|
1648
|
+
}
|
|
1649
|
+
function ln(e, t, n) {
|
|
1650
|
+
var a = "";
|
|
1651
|
+
if (Array.isArray(n))
|
|
1652
|
+
for (var i = 0; i < n.length; i++)
|
|
1653
|
+
a += Se(e, t, n[i]) + ";";
|
|
1654
|
+
else
|
|
1655
|
+
for (var s in n) {
|
|
1656
|
+
var u = n[s];
|
|
1657
|
+
if (typeof u != "object") {
|
|
1658
|
+
var v = u;
|
|
1659
|
+
Fr(v) && (a += nr(s) + ":" + Ir(s, v) + ";");
|
|
1660
|
+
} else if (Array.isArray(u) && typeof u[0] == "string" && t == null)
|
|
1661
|
+
for (var d = 0; d < u.length; d++)
|
|
1662
|
+
Fr(u[d]) && (a += nr(s) + ":" + Ir(s, u[d]) + ";");
|
|
1663
|
+
else {
|
|
1664
|
+
var y = Se(e, t, u);
|
|
1665
|
+
switch (s) {
|
|
1666
|
+
case "animation":
|
|
1667
|
+
case "animationName": {
|
|
1668
|
+
a += nr(s) + ":" + y + ";";
|
|
1669
|
+
break;
|
|
1670
|
+
}
|
|
1671
|
+
default:
|
|
1672
|
+
a += s + "{" + y + "}";
|
|
1673
|
+
}
|
|
1674
|
+
}
|
|
1675
|
+
}
|
|
1676
|
+
return a;
|
|
1677
|
+
}
|
|
1678
|
+
var Mr = /label:\s*([^\s;{]+)\s*(;|$)/g, J;
|
|
1679
|
+
function dn(e, t, n) {
|
|
1680
|
+
if (e.length === 1 && typeof e[0] == "object" && e[0] !== null && e[0].styles !== void 0)
|
|
1681
|
+
return e[0];
|
|
1682
|
+
var a = !0, i = "";
|
|
1683
|
+
J = void 0;
|
|
1684
|
+
var s = e[0];
|
|
1685
|
+
if (s == null || s.raw === void 0)
|
|
1686
|
+
a = !1, i += Se(n, t, s);
|
|
1687
|
+
else {
|
|
1688
|
+
var u = s;
|
|
1689
|
+
i += u[0];
|
|
1690
|
+
}
|
|
1691
|
+
for (var v = 1; v < e.length; v++)
|
|
1692
|
+
if (i += Se(n, t, e[v]), a) {
|
|
1693
|
+
var d = s;
|
|
1694
|
+
i += d[v];
|
|
1695
|
+
}
|
|
1696
|
+
Mr.lastIndex = 0;
|
|
1697
|
+
for (var y = "", p; (p = Mr.exec(i)) !== null; )
|
|
1698
|
+
y += "-" + p[1];
|
|
1699
|
+
var b = sn(i) + y;
|
|
1700
|
+
return {
|
|
1701
|
+
name: b,
|
|
1702
|
+
styles: i,
|
|
1703
|
+
next: J
|
|
1704
|
+
};
|
|
1705
|
+
}
|
|
1706
|
+
var vn = function(t) {
|
|
1707
|
+
return t();
|
|
1708
|
+
}, pn = Z.useInsertionEffect ? Z.useInsertionEffect : !1, hn = pn || vn, Br = /* @__PURE__ */ Z.createContext(
|
|
1709
|
+
// we're doing this to avoid preconstruct's dead code elimination in this one case
|
|
1710
|
+
// because this module is primarily intended for the browser and node
|
|
1711
|
+
// but it's also required in react native and similar environments sometimes
|
|
1712
|
+
// and we could have a special build just for that
|
|
1713
|
+
// but this is much easier and the native packages
|
|
1714
|
+
// might use a different theme context in the future anyway
|
|
1715
|
+
typeof HTMLElement < "u" ? /* @__PURE__ */ Zt({
|
|
1716
|
+
key: "css"
|
|
1717
|
+
}) : null
|
|
1718
|
+
);
|
|
1719
|
+
Br.Provider;
|
|
1720
|
+
var yn = function(t) {
|
|
1721
|
+
return /* @__PURE__ */ bt(function(n, a) {
|
|
1722
|
+
var i = gt(Br);
|
|
1723
|
+
return t(n, i, a);
|
|
1724
|
+
});
|
|
1725
|
+
}, mn = /* @__PURE__ */ Z.createContext({}), ze = {}.hasOwnProperty, or = "__EMOTION_TYPE_PLEASE_DO_NOT_USE__", Kr = function(t, n) {
|
|
1726
|
+
var a = {};
|
|
1727
|
+
for (var i in n)
|
|
1728
|
+
ze.call(n, i) && (a[i] = n[i]);
|
|
1729
|
+
return a[or] = t, a;
|
|
1730
|
+
}, bn = function(t) {
|
|
1731
|
+
var n = t.cache, a = t.serialized, i = t.isStringTag;
|
|
1732
|
+
return zr(n, a, i), hn(function() {
|
|
1733
|
+
return on(n, a, i);
|
|
1734
|
+
}), null;
|
|
1735
|
+
}, gn = /* @__PURE__ */ yn(
|
|
1736
|
+
/* <any, any> */
|
|
1737
|
+
function(e, t, n) {
|
|
1738
|
+
var a = e.css;
|
|
1739
|
+
typeof a == "string" && t.registered[a] !== void 0 && (a = t.registered[a]);
|
|
1740
|
+
var i = e[or], s = [a], u = "";
|
|
1741
|
+
typeof e.className == "string" ? u = an(t.registered, s, e.className) : e.className != null && (u = e.className + " ");
|
|
1742
|
+
var v = dn(s, void 0, Z.useContext(mn));
|
|
1743
|
+
u += t.key + "-" + v.name;
|
|
1744
|
+
var d = {};
|
|
1745
|
+
for (var y in e)
|
|
1746
|
+
ze.call(e, y) && y !== "css" && y !== or && (d[y] = e[y]);
|
|
1747
|
+
return d.className = u, n && (d.ref = n), /* @__PURE__ */ Z.createElement(Z.Fragment, null, /* @__PURE__ */ Z.createElement(bn, {
|
|
1748
|
+
cache: t,
|
|
1749
|
+
serialized: v,
|
|
1750
|
+
isStringTag: typeof i == "string"
|
|
1751
|
+
}), /* @__PURE__ */ Z.createElement(i, d));
|
|
1752
|
+
}
|
|
1753
|
+
), Jr = gn, _n = Ee.Fragment;
|
|
1754
|
+
function Rn(e, t, n) {
|
|
1755
|
+
return ze.call(t, "css") ? Ee.jsx(Jr, Kr(e, t), n) : Ee.jsx(e, t, n);
|
|
1756
|
+
}
|
|
1757
|
+
function Sn(e, t, n) {
|
|
1758
|
+
return ze.call(t, "css") ? Ee.jsxs(Jr, Kr(e, t), n) : Ee.jsxs(e, t, n);
|
|
1759
|
+
}
|
|
1760
|
+
export {
|
|
1761
|
+
_n as F,
|
|
1762
|
+
Rn as a,
|
|
1763
|
+
Ee as b,
|
|
1764
|
+
Sn as j
|
|
1765
|
+
};
|