@pitcher/js-api 1.19.0 → 1.20.0-beta.14
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/js-api.esm.d.ts +1 -0
- package/js-api.esm.js +3643 -0
- package/js-api.esm.js.map +1 -0
- package/js-api.umd.min.js +10 -10
- package/js-api.umd.min.js.map +1 -1
- package/lib/api/apps/apps.queries.d.ts +3 -0
- package/lib/api/canvases/canvases.queries.d.ts +15 -0
- package/lib/api/events/events.helpers.d.ts +29 -0
- package/lib/api/events/events.queries.d.ts +10 -0
- package/lib/api/users/users.queries.d.ts +5 -0
- package/lib/apps/browser/composables/useAppEmit.d.ts +3 -0
- package/lib/apps/browser/stores/api.d.ts +646 -0
- package/lib/apps/browser/stores/api.test.d.ts +1 -0
- package/lib/apps/browser/stores/app.d.ts +94 -0
- package/lib/apps/browser/stores/app.test.d.ts +1 -0
- package/lib/apps/browser/stores/upload.d.ts +111 -0
- package/lib/apps/browser/stores/upload.types.d.ts +18 -0
- package/lib/apps/browser/util/file.d.ts +3 -0
- package/lib/apps/canvas-builder/App.helpers.d.ts +12 -0
- package/lib/apps/canvas-builder/components/ui/Link/Link.util.d.ts +13 -0
- package/lib/apps/canvas-builder/composables/useCanvas.d.ts +12724 -0
- package/lib/apps/canvas-builder/composables/useCanvasDnd.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useCanvasExit.d.ts +3 -0
- package/lib/apps/canvas-builder/composables/useCanvasHistory.d.ts +1782 -0
- package/lib/apps/canvas-builder/composables/useCanvasHooks.d.ts +25 -0
- package/lib/apps/canvas-builder/composables/useCanvasPages.d.ts +35 -0
- package/lib/apps/canvas-builder/composables/useCanvasPages.spec.d.ts +1 -0
- package/lib/apps/canvas-builder/composables/useCanvasSectionOverrides.d.ts +30 -0
- package/lib/apps/canvas-builder/composables/useCanvasTheme.d.ts +85 -0
- package/lib/apps/canvas-builder/composables/useCanvasVisibility.d.ts +9 -0
- package/lib/apps/canvas-builder/composables/useCollapsibles.d.ts +14 -0
- package/lib/apps/canvas-builder/composables/useComponentPermissions.d.ts +14 -0
- package/lib/apps/canvas-builder/composables/useContentSelector.d.ts +51 -0
- package/lib/apps/canvas-builder/composables/useFetchSectionAnalytics.d.ts +3 -0
- package/lib/apps/canvas-builder/composables/useInstalledEmbeddables.d.ts +12 -0
- package/lib/apps/canvas-builder/composables/useNavigatorDrawer.d.ts +6 -0
- package/lib/apps/canvas-builder/composables/usePitcherEvents.d.ts +5 -0
- package/lib/apps/canvas-builder/composables/useRecommendations.d.ts +53 -0
- package/lib/apps/canvas-builder/composables/useReorderComponent.d.ts +16 -0
- package/lib/apps/canvas-builder/composables/useSectionNavigation.d.ts +16 -0
- package/lib/apps/canvas-builder/composables/useSectionPopularity.d.ts +34 -0
- package/lib/apps/canvas-builder/constants/canvas.const.d.ts +15 -0
- package/lib/apps/canvas-builder/constants/defaults.const.d.ts +1 -0
- package/lib/apps/canvas-builder/constants/index.d.ts +3 -0
- package/lib/apps/canvas-builder/constants/sizes.d.ts +2 -0
- package/lib/apps/canvas-builder/types/canvas.d.ts +467 -0
- package/lib/apps/canvas-builder/types/font-awesome.types.d.ts +2 -0
- package/lib/apps/canvas-builder/types/recommendations.types.d.ts +28 -0
- package/lib/apps/canvas-builder/util/canvas.util.d.ts +44 -0
- package/lib/apps/canvas-builder/util/canvas.util.test.d.ts +1 -0
- package/lib/apps/canvas-builder/util/clone.d.ts +1 -0
- package/lib/apps/canvas-builder/util/file.util.d.ts +6 -0
- package/lib/apps/canvas-builder/util/tree.d.ts +25 -0
- package/lib/apps/canvas-builder/util/tree.test.d.ts +1 -0
- package/lib/apps/canvas-builder/util/url.d.ts +5 -0
- package/lib/apps/canvas-builder/util/url.test.d.ts +1 -0
- package/lib/apps/content-selector/appTypes.d.ts +44 -0
- package/lib/apps/content-selector/stores/app.d.ts +83 -0
- package/lib/apps/content-selector/util/file.d.ts +3 -0
- package/lib/apps/content-selector/util/media-type.util.d.ts +1 -0
- package/lib/apps/notes/composables/useFullscreenNotesHeartbeat.d.ts +3 -0
- package/lib/apps/notes/composables/useNotesApp.d.ts +3 -0
- package/lib/components/CCatalogIqSwitcher/CCatalogIqSwitcher.types.d.ts +7 -0
- package/lib/components/CConfigEditor/CConfigEditor.types.d.ts +7 -0
- package/lib/components/CConfigEditor/CConfigEditor.validators.d.ts +4 -0
- package/lib/components/CContactSelector/CContactSelector.types.d.ts +4 -0
- package/lib/components/CDataTable/CDataTableEdit.use.d.ts +22 -0
- package/lib/components/CFileViewer/CFileViewer.types.d.ts +7 -0
- package/lib/components/CFileViewer/CFileViewer.use.d.ts +47 -0
- package/lib/components/CFileViewer/CFileViewerFullScreen.use.d.ts +16 -0
- package/lib/components/CFileViewer/pageThumbnailFavorite.use.d.ts +10 -0
- package/lib/components/CFileViewer/pdfEvents.use.d.ts +4 -0
- package/lib/components/CGlobalSearch/CGlobalSearch.types.d.ts +23 -0
- package/lib/components/CGlobalSearch/GlobalSearch.use.d.ts +24 -0
- package/lib/components/CGlobalSearch/Shortcuts.use.d.ts +11 -0
- package/lib/components/CMultiSelect/CMultiSelect.test.d.ts +1 -0
- package/lib/components/CQuickFilters/CQuickFilters.types.d.ts +4 -0
- package/lib/components/CRichTextEditor/constants.d.ts +1 -0
- package/lib/components/CRichTextEditor/extensions/bulletListExtended.d.ts +16 -0
- package/lib/components/CRichTextEditor/extensions/headingExtended.d.ts +10 -0
- package/lib/components/CRichTextEditor/extensions/mentionSuggestions.d.ts +11 -0
- package/lib/components/CRichTextEditor/extensions/paragraphExtended.d.ts +26 -0
- package/lib/components/CRichTextEditor/extensions/textStyleExtended.d.ts +10 -0
- package/lib/components/CSingleSelect/CSingleSelect.test.d.ts +1 -0
- package/lib/components/CUsersGroupsAccessManage/CUsersGroupsAccessManage.types.d.ts +56 -0
- package/lib/components/CVirtualTable/CVirtualTable.test.d.ts +1 -0
- package/lib/components/CVirtualTable/CVirtualTableRow.test.d.ts +1 -0
- package/lib/components/canvases/CanvasesManagementBulk.use.d.ts +40 -0
- package/lib/components/canvases/CanvasesManagementFilters.use.d.ts +7 -0
- package/lib/components/canvases/CanvasesManagementToolbarFilters.use.d.ts +20 -0
- package/lib/components/filters/CDateRangeFilter.test.d.ts +1 -0
- package/lib/components/filters/CSelectFilter.test.d.ts +1 -0
- package/lib/components/filters/filter.const.d.ts +1 -0
- package/lib/components/filters/filter.util.d.ts +2 -0
- package/lib/components/filters/filter.util.spec.d.ts +1 -0
- package/lib/components/savedCanvases/CSavedCanvasesManagement.use.d.ts +11 -0
- package/lib/components/savedCanvases/CSavedCanvasesManagementShareCanvas.use.d.ts +9 -0
- package/lib/composables/appEmit.use.d.ts +3 -0
- package/lib/composables/bulkActions.use.d.ts +12 -0
- package/lib/composables/fileViewerSettings.use.d.ts +8 -0
- package/lib/composables/recentFiles.use.d.ts +12 -0
- package/lib/composables/useAssetUpload.d.ts +6 -0
- package/lib/composables/useBindValidation.d.ts +206 -0
- package/lib/composables/useCanvasOverlay.d.ts +20 -0
- package/lib/composables/useCanvasTablesPagination.d.ts +13 -0
- package/lib/composables/useConfirmation.d.ts +23 -0
- package/lib/composables/useConnectUpload.d.ts +5 -0
- package/lib/composables/useDetailsView.d.ts +19 -0
- package/lib/composables/useFetchUsers.d.ts +18 -0
- package/lib/composables/useInfiniteScroll.d.ts +13 -0
- package/lib/composables/useInstalledApps.d.ts +3 -0
- package/lib/composables/useLocation.d.ts +26 -0
- package/lib/composables/useLocationAPI.d.ts +39 -0
- package/lib/composables/useLocationListeners.d.ts +8 -0
- package/lib/composables/useLocationManipulation.d.ts +37 -0
- package/lib/composables/usePdfInterpolation.d.ts +9 -0
- package/lib/composables/useTheme.d.ts +9 -0
- package/lib/composables/useThemeVars.d.ts +30 -0
- package/lib/composables/useToast.d.ts +14 -0
- package/lib/composables/useWindowEvents.d.ts +20 -0
- package/lib/constants/cdp.const.d.ts +41 -0
- package/lib/constants/config.const.d.ts +1 -0
- package/lib/constants/conventions.const.d.ts +3 -0
- package/lib/constants/i18n.const.d.ts +13 -0
- package/lib/constants/modal.const.d.ts +9 -0
- package/lib/constants/more.const.d.ts +1 -0
- package/lib/constants/recentFiles.const.d.ts +4 -0
- package/lib/constants/tables.const.d.ts +4 -0
- package/lib/constants/timers.const.d.ts +1 -0
- package/lib/constants/uploads.const.d.ts +8 -0
- package/lib/constants/url.const.d.ts +2 -0
- package/lib/custom-naive-locales/el.d.ts +124 -0
- package/lib/directives/autofocus.d.ts +4 -0
- package/lib/directives/clickOutside.d.ts +8 -0
- package/lib/directives/draggable.d.ts +4 -0
- package/lib/directives/tooltip.d.ts +4 -0
- package/lib/main.lib.d.ts +182 -0
- package/lib/plugins/vueQuery.d.ts +3 -0
- package/lib/sdk/api/HighLevelApi.d.ts +130 -0
- package/lib/sdk/api/HighLevelApi.spec.d.ts +1 -0
- package/lib/sdk/api/LowLevelApi.d.ts +18 -0
- package/lib/sdk/api/LowLevelApi.spec.d.ts +1 -0
- package/lib/sdk/api/modules/admin/canvas.admin.d.ts +89 -0
- package/lib/sdk/api/modules/admin/env.admin.d.ts +10 -0
- package/lib/sdk/api/modules/admin/files.admin.d.ts +49 -0
- package/lib/sdk/api/modules/admin/index.d.ts +40 -0
- package/lib/sdk/api/modules/admin/metadataTemplates.admin.d.ts +11 -0
- package/lib/sdk/api/modules/admin/types.admin.d.ts +67 -0
- package/lib/sdk/api/modules/canvas.d.ts +56 -0
- package/lib/sdk/api/modules/dsr/env.dsr.d.ts +10 -0
- package/lib/sdk/api/modules/dsr/index.d.ts +9 -0
- package/lib/sdk/api/modules/dsr/loading.dsr.d.ts +1 -0
- package/lib/sdk/api/modules/dsr/types.dsr.d.ts +39 -0
- package/lib/sdk/api/modules/env.d.ts +7 -0
- package/lib/sdk/api/modules/events.d.ts +7 -0
- package/lib/sdk/api/modules/favorites.d.ts +8 -0
- package/lib/sdk/api/modules/feedback.d.ts +3 -0
- package/lib/sdk/api/modules/files.d.ts +35 -0
- package/lib/sdk/api/modules/folders.d.ts +21 -0
- package/lib/sdk/api/modules/index.d.ts +19 -0
- package/lib/sdk/api/modules/languages.d.ts +8 -0
- package/lib/sdk/api/modules/metadataTemplates.d.ts +4 -0
- package/lib/sdk/api/modules/notifications.d.ts +3 -0
- package/lib/sdk/api/modules/open.d.ts +4 -0
- package/lib/sdk/api/modules/pspdfkit.d.ts +23 -0
- package/lib/sdk/api/modules/query.d.ts +3 -0
- package/lib/sdk/api/modules/search.d.ts +4 -0
- package/lib/sdk/api/modules/sync.d.ts +9 -0
- package/lib/sdk/api/modules/toast.d.ts +4 -0
- package/lib/sdk/api/modules/track.d.ts +4 -0
- package/lib/sdk/api/modules/ui/app-errors.ui.d.ts +3 -0
- package/lib/sdk/api/modules/ui/canvas.ui.d.ts +29 -0
- package/lib/sdk/api/modules/ui/content.ui.d.ts +24 -0
- package/lib/sdk/api/modules/ui/index.d.ts +44 -0
- package/lib/sdk/api/modules/ui/loading.ui.d.ts +1 -0
- package/lib/sdk/api/modules/ui/location.ui.d.ts +3 -0
- package/lib/sdk/api/modules/ui/post-call.ui.d.ts +6 -0
- package/lib/sdk/api/modules/ui/types.ui.d.ts +115 -0
- package/lib/sdk/api/modules/users.d.ts +7 -0
- package/lib/sdk/api/modules/webView.d.ts +4 -0
- package/lib/sdk/api/onlineRestApiHandlers.d.ts +4 -0
- package/lib/sdk/interfaces.d.ts +232 -0
- package/lib/sdk/main.d.ts +564 -0
- package/lib/sdk/main.spec.d.ts +1 -0
- package/lib/sdk/main.umd-esm.d.ts +1 -0
- package/lib/sdk/payload.types.d.ts +56 -0
- package/lib/sdk/utils/assert.d.ts +3 -0
- package/lib/sdk/utils/assert.spec.d.ts +1 -0
- package/lib/sdk/utils/cleanUrl.d.ts +1 -0
- package/lib/sdk/utils/eventEmitter.d.ts +17 -0
- package/lib/sdk/utils/eventEmitter.spec.d.ts +1 -0
- package/lib/sdk/utils/httpFetch.d.ts +15 -0
- package/lib/sdk/utils/isodate.d.ts +1 -0
- package/lib/sdk/utils/isodate.spec.d.ts +1 -0
- package/lib/sdk/utils/object.d.ts +1 -0
- package/lib/sdk/utils/object.spec.d.ts +1 -0
- package/lib/sdk/utils/postrobot.d.ts +1 -0
- package/lib/theme/canvasUiUnoPreset.d.ts +4 -0
- package/lib/theme/daisyUi.d.ts +1 -0
- package/lib/theme/light.const.d.ts +4 -0
- package/lib/theme/light.d.ts +2185 -0
- package/lib/theme/main.d.ts +3 -0
- package/lib/theme/theme-overrides.d.ts +1 -0
- package/lib/theme/theme.types.d.ts +29 -0
- package/lib/theme/theme.utils.d.ts +3 -0
- package/lib/types/app.d.ts +59 -0
- package/lib/types/call.d.ts +43 -0
- package/lib/types/canvasActions.d.ts +12 -0
- package/lib/types/canvases.d.ts +23 -0
- package/lib/types/dataTable.d.ts +6 -0
- package/lib/types/favorites.d.ts +5 -0
- package/lib/types/fileViewerSettings.types.d.ts +3 -0
- package/lib/types/files.d.ts +38 -0
- package/lib/types/i18n.types.d.ts +1 -0
- package/lib/types/iframes.d.ts +24 -0
- package/lib/types/instance.types.d.ts +18 -0
- package/lib/types/instanceSettings.types.d.ts +23 -0
- package/lib/types/launchDarkly.types.d.ts +40 -0
- package/lib/types/organization.types.d.ts +14 -0
- package/lib/types/organizationMetadata.types.d.ts +4 -0
- package/lib/types/organizationSettings.types.d.ts +3 -0
- package/lib/types/paginatedData.d.ts +6 -0
- package/lib/types/recentFiles.types.d.ts +4 -0
- package/lib/types/sectionPopularity.d.ts +30 -0
- package/lib/types/sfdc.d.ts +125 -0
- package/lib/types/toast.d.ts +4 -0
- package/lib/types/translations.d.ts +5 -0
- package/lib/types/ts.d.ts +10 -0
- package/lib/types/users.d.ts +12 -0
- package/lib/types/vueVirtualScroller.d.ts +4 -0
- package/lib/util/anchor.d.ts +2 -0
- package/lib/util/array.d.ts +5 -0
- package/lib/util/array.spec.d.ts +1 -0
- package/lib/util/canvas-manager.util.d.ts +4 -0
- package/lib/util/casing.d.ts +4 -0
- package/lib/util/casing.spec.d.ts +1 -0
- package/lib/util/color.d.ts +4 -0
- package/lib/util/date.d.ts +12 -0
- package/lib/util/date.spec.d.ts +1 -0
- package/lib/util/dev.util.d.ts +2 -0
- package/lib/util/dom.d.ts +15 -0
- package/lib/util/font.spec.d.ts +1 -0
- package/lib/util/font.util.d.ts +7 -0
- package/lib/util/fullscreen.util.d.ts +16 -0
- package/lib/util/handlebars.d.ts +1 -0
- package/lib/util/image.d.ts +1 -0
- package/lib/util/location.spec.d.ts +1 -0
- package/lib/util/location.util.d.ts +1 -0
- package/lib/util/message-event.d.ts +1 -0
- package/lib/util/message-event.spec.d.ts +1 -0
- package/lib/util/navigation.util.d.ts +7 -0
- package/lib/util/network.d.ts +16 -0
- package/lib/util/network.spec.d.ts +1 -0
- package/lib/util/number.d.ts +4 -0
- package/lib/util/number.spec.d.ts +1 -0
- package/lib/util/object.d.ts +1 -0
- package/lib/util/object.spec.d.ts +1 -0
- package/lib/util/query.d.ts +6 -0
- package/lib/util/reactive.d.ts +4 -0
- package/lib/util/reactive.spec.d.ts +1 -0
- package/lib/util/string.d.ts +4 -0
- package/lib/util/timer.d.ts +2 -0
- package/lib/util/timer.spec.d.ts +1 -0
- package/lib/util/translations.d.ts +8 -0
- package/lib/util/translations.spec.d.ts +1 -0
- package/lib/util/tsHelpers.d.ts +14 -0
- package/lib/util/user.d.ts +4 -0
- package/lib/util/userAgents.d.ts +8 -0
- package/package.json +7 -2
- package/types/openapi/index.d.ts +255 -0
- package/types/openapi/models/AccessTypeEnum.d.ts +8 -0
- package/types/openapi/models/Account.d.ts +4 -0
- package/types/openapi/models/AccountRequest.d.ts +4 -0
- package/types/openapi/models/App.d.ts +21 -0
- package/types/openapi/models/AppInstallationRequest.d.ts +4 -0
- package/types/openapi/models/AppOrganization.d.ts +4 -0
- package/types/openapi/models/AppOrganizationRequest.d.ts +4 -0
- package/types/openapi/models/AppPublish.d.ts +8 -0
- package/types/openapi/models/AppRelease.d.ts +10 -0
- package/types/openapi/models/AppRequest.d.ts +9 -0
- package/types/openapi/models/AppTypeEnum.d.ts +8 -0
- package/types/openapi/models/AppsDBEntry.d.ts +4 -0
- package/types/openapi/models/AppsDBEntryRequest.d.ts +3 -0
- package/types/openapi/models/AuthToken.d.ts +7 -0
- package/types/openapi/models/AuthTokenRequest.d.ts +7 -0
- package/types/openapi/models/BulkDeleteErrorDetail.d.ts +5 -0
- package/types/openapi/models/BulkDeleteRequest.d.ts +6 -0
- package/types/openapi/models/BulkDeleteResponse.d.ts +6 -0
- package/types/openapi/models/BulkUpdateMetadata.d.ts +6 -0
- package/types/openapi/models/BulkUpdateMetadataOperationEnum.d.ts +8 -0
- package/types/openapi/models/BulkUpdateMetadataRequest.d.ts +9 -0
- package/types/openapi/models/BulkUpdateMetadataResult.d.ts +4 -0
- package/types/openapi/models/BulkUpdateTags.d.ts +6 -0
- package/types/openapi/models/BulkUpdateTagsOperationEnum.d.ts +8 -0
- package/types/openapi/models/BulkUpdateTagsRequest.d.ts +9 -0
- package/types/openapi/models/BulkUpdateTagsResult.d.ts +4 -0
- package/types/openapi/models/Canvas.d.ts +29 -0
- package/types/openapi/models/CanvasCreate.d.ts +36 -0
- package/types/openapi/models/CanvasCreateRequest.d.ts +25 -0
- package/types/openapi/models/CanvasRecommendedFile.d.ts +46 -0
- package/types/openapi/models/CanvasRecommendedFiles.d.ts +5 -0
- package/types/openapi/models/CanvasRetrieve.d.ts +36 -0
- package/types/openapi/models/CanvasSection.d.ts +10 -0
- package/types/openapi/models/CanvasUpdate.d.ts +36 -0
- package/types/openapi/models/CanvasUpdateRequest.d.ts +22 -0
- package/types/openapi/models/Collaboration.d.ts +16 -0
- package/types/openapi/models/CollaborationCreate.d.ts +16 -0
- package/types/openapi/models/CollaborationCreateRequest.d.ts +10 -0
- package/types/openapi/models/CollaborationRequest.d.ts +5 -0
- package/types/openapi/models/CollaborationRoleEnum.d.ts +4 -0
- package/types/openapi/models/ConnectedService.d.ts +9 -0
- package/types/openapi/models/ContentDistributionGroup.d.ts +12 -0
- package/types/openapi/models/ContentDistributionGroupCreate.d.ts +13 -0
- package/types/openapi/models/ContentDistributionGroupCreateRequest.d.ts +5 -0
- package/types/openapi/models/ContentDistributionGroupMembership.d.ts +8 -0
- package/types/openapi/models/ContentDistributionGroupMembershipCreate.d.ts +8 -0
- package/types/openapi/models/ContentDistributionGroupMembershipCreateRequest.d.ts +4 -0
- package/types/openapi/models/ContentDistributionGroupRequest.d.ts +4 -0
- package/types/openapi/models/DefaultExpiresAtEnum.d.ts +16 -0
- package/types/openapi/models/DeletedApp.d.ts +23 -0
- package/types/openapi/models/DeletedCanvas.d.ts +31 -0
- package/types/openapi/models/DeletedContentDistributionGroup.d.ts +15 -0
- package/types/openapi/models/DeletedEnvironment.d.ts +15 -0
- package/types/openapi/models/DeletedFavorite.d.ts +20 -0
- package/types/openapi/models/DeletedFile.d.ts +48 -0
- package/types/openapi/models/DeletedFolder.d.ts +18 -0
- package/types/openapi/models/DeletedInstance.d.ts +25 -0
- package/types/openapi/models/DeletedInstanceAssignmentGroup.d.ts +15 -0
- package/types/openapi/models/DeletedMetadataTemplate.d.ts +18 -0
- package/types/openapi/models/DeletedRegion.d.ts +13 -0
- package/types/openapi/models/DownloadTypeEnum.d.ts +10 -0
- package/types/openapi/models/Environment.d.ts +13 -0
- package/types/openapi/models/EnvironmentRequest.d.ts +5 -0
- package/types/openapi/models/Event.d.ts +18 -0
- package/types/openapi/models/EventAttendee.d.ts +5 -0
- package/types/openapi/models/EventAttendeeRequest.d.ts +5 -0
- package/types/openapi/models/EventExternalObject.d.ts +10 -0
- package/types/openapi/models/EventExternalObjectContentTypeEnum.d.ts +12 -0
- package/types/openapi/models/EventExternalObjectRequest.d.ts +10 -0
- package/types/openapi/models/EventRequest.d.ts +17 -0
- package/types/openapi/models/EventStatusEnum.d.ts +10 -0
- package/types/openapi/models/Favorite.d.ts +18 -0
- package/types/openapi/models/FavoriteCreate.d.ts +12 -0
- package/types/openapi/models/FavoriteCreateRequest.d.ts +7 -0
- package/types/openapi/models/FavoriteFile.d.ts +6 -0
- package/types/openapi/models/FavoriteFileRequest.d.ts +3 -0
- package/types/openapi/models/FavoriteUpdate.d.ts +12 -0
- package/types/openapi/models/FavoriteUpdateRequest.d.ts +6 -0
- package/types/openapi/models/File.d.ts +46 -0
- package/types/openapi/models/FileAnalytics.d.ts +16 -0
- package/types/openapi/models/FileAnalyticsResult.d.ts +9 -0
- package/types/openapi/models/FileContentTypeEnum.d.ts +16 -0
- package/types/openapi/models/FileCreate.d.ts +51 -0
- package/types/openapi/models/FileCreateRequest.d.ts +27 -0
- package/types/openapi/models/FilePermission.d.ts +4 -0
- package/types/openapi/models/FilePermissionRequest.d.ts +4 -0
- package/types/openapi/models/FileRequest.d.ts +16 -0
- package/types/openapi/models/FileRetrieve.d.ts +51 -0
- package/types/openapi/models/FileRevision.d.ts +8 -0
- package/types/openapi/models/FileRevisionRequest.d.ts +3 -0
- package/types/openapi/models/FileStatusEnum.d.ts +8 -0
- package/types/openapi/models/FileTypeEnum.d.ts +10 -0
- package/types/openapi/models/FileUpdate.d.ts +51 -0
- package/types/openapi/models/FileUpdateRequest.d.ts +20 -0
- package/types/openapi/models/FileVersion.d.ts +5 -0
- package/types/openapi/models/Folder.d.ts +16 -0
- package/types/openapi/models/FolderCreate.d.ts +32 -0
- package/types/openapi/models/FolderCreateRequest.d.ts +19 -0
- package/types/openapi/models/FolderFile.d.ts +15 -0
- package/types/openapi/models/FolderFolder.d.ts +8 -0
- package/types/openapi/models/FolderRetrieve.d.ts +25 -0
- package/types/openapi/models/FolderUpdate.d.ts +32 -0
- package/types/openapi/models/FolderUpdateRequest.d.ts +16 -0
- package/types/openapi/models/Instance.d.ts +23 -0
- package/types/openapi/models/InstanceAnalytics.d.ts +18 -0
- package/types/openapi/models/InstanceAnalyticsChangePercentages.d.ts +5 -0
- package/types/openapi/models/InstanceAnalyticsCurrentPeriod.d.ts +13 -0
- package/types/openapi/models/InstanceAnalyticsFile.d.ts +5 -0
- package/types/openapi/models/InstanceAnalyticsFileActivity.d.ts +5 -0
- package/types/openapi/models/InstanceAnalyticsFileRequest.d.ts +3 -0
- package/types/openapi/models/InstanceAnalyticsInactiveUsers.d.ts +5 -0
- package/types/openapi/models/InstanceAnalyticsInactiveUsersRequest.d.ts +4 -0
- package/types/openapi/models/InstanceAnalyticsLoginResult.d.ts +5 -0
- package/types/openapi/models/InstanceAssignmentGroup.d.ts +12 -0
- package/types/openapi/models/InstanceAssignmentGroupMembership.d.ts +8 -0
- package/types/openapi/models/InstanceAssignmentGroupMembershipCreate.d.ts +8 -0
- package/types/openapi/models/InstanceAssignmentGroupMembershipCreateRequest.d.ts +4 -0
- package/types/openapi/models/InstanceAssignmentGroupRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembership.d.ts +12 -0
- package/types/openapi/models/InstanceMembershipCreate.d.ts +12 -0
- package/types/openapi/models/InstanceMembershipCreateRequest.d.ts +8 -0
- package/types/openapi/models/InstanceMembershipGroup.d.ts +11 -0
- package/types/openapi/models/InstanceMembershipGroupRequest.d.ts +3 -0
- package/types/openapi/models/InstanceMembershipRequest.d.ts +5 -0
- package/types/openapi/models/InstanceMembershipRoleEnum.d.ts +8 -0
- package/types/openapi/models/InstanceMembershipUser.d.ts +10 -0
- package/types/openapi/models/InstanceMembershipUserRequest.d.ts +4 -0
- package/types/openapi/models/InstanceMembershipUserStatusEnum.d.ts +6 -0
- package/types/openapi/models/InstanceRequest.d.ts +11 -0
- package/types/openapi/models/InstanceUpdate.d.ts +19 -0
- package/types/openapi/models/InstanceUpdateRequest.d.ts +8 -0
- package/types/openapi/models/Invitation.d.ts +11 -0
- package/types/openapi/models/InvitationRequest.d.ts +3 -0
- package/types/openapi/models/InvitationStatusEnum.d.ts +4 -0
- package/types/openapi/models/LanguageEnum.d.ts +12 -0
- package/types/openapi/models/MetadataTemplate.d.ts +16 -0
- package/types/openapi/models/MetadataTemplateField.d.ts +14 -0
- package/types/openapi/models/MetadataTemplateFieldRequest.d.ts +14 -0
- package/types/openapi/models/MetadataTemplateFieldTypeEnum.d.ts +16 -0
- package/types/openapi/models/MetadataTemplateOption.d.ts +4 -0
- package/types/openapi/models/MetadataTemplateOptionRequest.d.ts +4 -0
- package/types/openapi/models/MetadataTemplateRequest.d.ts +7 -0
- package/types/openapi/models/MetadataTemplateSection.d.ts +6 -0
- package/types/openapi/models/MetadataTemplateSectionRequest.d.ts +6 -0
- package/types/openapi/models/MiniCanvas.d.ts +4 -0
- package/types/openapi/models/MiniCanvasRequest.d.ts +3 -0
- package/types/openapi/models/MiniContentDistributionGroup.d.ts +5 -0
- package/types/openapi/models/MiniContentDistributionGroupRequest.d.ts +3 -0
- package/types/openapi/models/MiniEnvironment.d.ts +5 -0
- package/types/openapi/models/MiniEnvironmentRequest.d.ts +4 -0
- package/types/openapi/models/MiniEvent.d.ts +5 -0
- package/types/openapi/models/MiniEventRequest.d.ts +4 -0
- package/types/openapi/models/MiniFile.d.ts +4 -0
- package/types/openapi/models/MiniFileRequest.d.ts +3 -0
- package/types/openapi/models/MiniFolder.d.ts +4 -0
- package/types/openapi/models/MiniFolderRequest.d.ts +3 -0
- package/types/openapi/models/MiniInstance.d.ts +4 -0
- package/types/openapi/models/MiniInstanceRequest.d.ts +3 -0
- package/types/openapi/models/MiniPage.d.ts +4 -0
- package/types/openapi/models/MiniPageRequest.d.ts +3 -0
- package/types/openapi/models/MiniRegion.d.ts +4 -0
- package/types/openapi/models/MiniRegionRequest.d.ts +3 -0
- package/types/openapi/models/MiniSharedLink.d.ts +4 -0
- package/types/openapi/models/MiniSharedLinkRequest.d.ts +3 -0
- package/types/openapi/models/MiniUser.d.ts +5 -0
- package/types/openapi/models/MiniUserRequest.d.ts +3 -0
- package/types/openapi/models/MostActiveUser.d.ts +7 -0
- package/types/openapi/models/OfflineSyncFolder.d.ts +17 -0
- package/types/openapi/models/Organization.d.ts +10 -0
- package/types/openapi/models/OrganizationAnalytics.d.ts +16 -0
- package/types/openapi/models/OrganizationAnalyticsCurrentPeriod.d.ts +13 -0
- package/types/openapi/models/OrganizationAnalyticsInactiveUsers.d.ts +5 -0
- package/types/openapi/models/OrganizationAnalyticsInactiveUsersRequest.d.ts +4 -0
- package/types/openapi/models/OrganizationAnalyticsInstance.d.ts +10 -0
- package/types/openapi/models/OrganizationAnalyticsLoginResult.d.ts +5 -0
- package/types/openapi/models/OrganizationAnalyticsTop3Instances.d.ts +13 -0
- package/types/openapi/models/OrganizationBranding.d.ts +6 -0
- package/types/openapi/models/OrganizationBrandingColors.d.ts +4 -0
- package/types/openapi/models/OrganizationChangePercentages.d.ts +6 -0
- package/types/openapi/models/OrganizationUpdate.d.ts +8 -0
- package/types/openapi/models/OrganizationUpdateRequest.d.ts +8 -0
- package/types/openapi/models/PSPDFKitAuthPayload.d.ts +3 -0
- package/types/openapi/models/PSPDFKitAuthPayloadRequest.d.ts +3 -0
- package/types/openapi/models/PSPDFKitToken.d.ts +7 -0
- package/types/openapi/models/PSPDFKitTokenRequest.d.ts +3 -0
- package/types/openapi/models/PaginatedAppList.d.ts +8 -0
- package/types/openapi/models/PaginatedAppReleaseList.d.ts +8 -0
- package/types/openapi/models/PaginatedAuthTokenList.d.ts +8 -0
- package/types/openapi/models/PaginatedCanvasList.d.ts +8 -0
- package/types/openapi/models/PaginatedCollaborationList.d.ts +8 -0
- package/types/openapi/models/PaginatedContentDistributionGroupList.d.ts +8 -0
- package/types/openapi/models/PaginatedContentDistributionGroupMembershipList.d.ts +8 -0
- package/types/openapi/models/PaginatedEnvironmentList.d.ts +8 -0
- package/types/openapi/models/PaginatedEventList.d.ts +8 -0
- package/types/openapi/models/PaginatedFavoriteList.d.ts +8 -0
- package/types/openapi/models/PaginatedFileList.d.ts +8 -0
- package/types/openapi/models/PaginatedFileRevisionList.d.ts +8 -0
- package/types/openapi/models/PaginatedFolderList.d.ts +8 -0
- package/types/openapi/models/PaginatedInstanceAssignmentGroupList.d.ts +8 -0
- package/types/openapi/models/PaginatedInstanceAssignmentGroupMembershipList.d.ts +8 -0
- package/types/openapi/models/PaginatedInstanceList.d.ts +8 -0
- package/types/openapi/models/PaginatedInstanceMembershipList.d.ts +8 -0
- package/types/openapi/models/PaginatedInvitationList.d.ts +8 -0
- package/types/openapi/models/PaginatedMetadataTemplateList.d.ts +8 -0
- package/types/openapi/models/PaginatedOfflineSyncFolderList.d.ts +8 -0
- package/types/openapi/models/PaginatedRegionList.d.ts +8 -0
- package/types/openapi/models/PaginatedRevisionList.d.ts +8 -0
- package/types/openapi/models/PaginatedSearchResultList.d.ts +9 -0
- package/types/openapi/models/PaginatedStorageRegionList.d.ts +8 -0
- package/types/openapi/models/PaginatedUserList.d.ts +8 -0
- package/types/openapi/models/PatchedAppRequest.d.ts +9 -0
- package/types/openapi/models/PatchedCanvasUpdateRequest.d.ts +22 -0
- package/types/openapi/models/PatchedCollaborationRequest.d.ts +5 -0
- package/types/openapi/models/PatchedContentDistributionGroupRequest.d.ts +4 -0
- package/types/openapi/models/PatchedEnvironmentRequest.d.ts +5 -0
- package/types/openapi/models/PatchedEventRequest.d.ts +17 -0
- package/types/openapi/models/PatchedFavoriteUpdateRequest.d.ts +6 -0
- package/types/openapi/models/PatchedFileRequest.d.ts +16 -0
- package/types/openapi/models/PatchedFileRevisionRequest.d.ts +3 -0
- package/types/openapi/models/PatchedFileUpdateRequest.d.ts +20 -0
- package/types/openapi/models/PatchedFolderUpdateRequest.d.ts +16 -0
- package/types/openapi/models/PatchedInstanceAssignmentGroupRequest.d.ts +4 -0
- package/types/openapi/models/PatchedInstanceMembershipRequest.d.ts +5 -0
- package/types/openapi/models/PatchedInstanceUpdateRequest.d.ts +8 -0
- package/types/openapi/models/PatchedMetadataTemplateRequest.d.ts +7 -0
- package/types/openapi/models/PatchedOrganizationUpdateRequest.d.ts +8 -0
- package/types/openapi/models/PatchedRegionRequest.d.ts +3 -0
- package/types/openapi/models/PatchedUserRequest.d.ts +12 -0
- package/types/openapi/models/Region.d.ts +11 -0
- package/types/openapi/models/RegionRequest.d.ts +3 -0
- package/types/openapi/models/Revision.d.ts +8 -0
- package/types/openapi/models/RevisionRequest.d.ts +3 -0
- package/types/openapi/models/SearchApp.d.ts +6 -0
- package/types/openapi/models/SearchCanvas.d.ts +5 -0
- package/types/openapi/models/SearchContentDistributionGroup.d.ts +11 -0
- package/types/openapi/models/SearchFile.d.ts +9 -0
- package/types/openapi/models/SearchInstanceAssignmentGroup.d.ts +11 -0
- package/types/openapi/models/SearchResult.d.ts +8 -0
- package/types/openapi/models/SearchUser.d.ts +5 -0
- package/types/openapi/models/SharedLink.d.ts +16 -0
- package/types/openapi/models/SharedLinkCanvas.d.ts +11 -0
- package/types/openapi/models/SharedLinkCanvasRequest.d.ts +8 -0
- package/types/openapi/models/SharedLinkCreate.d.ts +16 -0
- package/types/openapi/models/SharedLinkCreateRequest.d.ts +6 -0
- package/types/openapi/models/SharedLinkInstance.d.ts +6 -0
- package/types/openapi/models/SharedLinkInstanceRequest.d.ts +5 -0
- package/types/openapi/models/SharedLinkOrganization.d.ts +6 -0
- package/types/openapi/models/SharedLinkOrganizationRequest.d.ts +6 -0
- package/types/openapi/models/StorageRegion.d.ts +5 -0
- package/types/openapi/models/StorageRegionEnum.d.ts +10 -0
- package/types/openapi/models/Tag.d.ts +3 -0
- package/types/openapi/models/UploadCreate.d.ts +8 -0
- package/types/openapi/models/UploadCreateRequest.d.ts +5 -0
- package/types/openapi/models/User.d.ts +23 -0
- package/types/openapi/models/UserRequest.d.ts +12 -0
|
@@ -0,0 +1,2185 @@
|
|
|
1
|
+
import { ThemeCommonVars } from 'naive-ui';
|
|
2
|
+
|
|
3
|
+
export declare const lightPalette: import('vue').Ref<{
|
|
4
|
+
base: string;
|
|
5
|
+
primary: string;
|
|
6
|
+
primary2: string;
|
|
7
|
+
primary3: string;
|
|
8
|
+
primary4: string;
|
|
9
|
+
primary5: string;
|
|
10
|
+
primary6: string;
|
|
11
|
+
primary6_1: string;
|
|
12
|
+
accent: string;
|
|
13
|
+
text: string;
|
|
14
|
+
text2: string;
|
|
15
|
+
text3: string;
|
|
16
|
+
error: string;
|
|
17
|
+
error2: string;
|
|
18
|
+
error3: string;
|
|
19
|
+
warning: string;
|
|
20
|
+
warning2: string;
|
|
21
|
+
warning3: string;
|
|
22
|
+
success: string;
|
|
23
|
+
success2: string;
|
|
24
|
+
success3: string;
|
|
25
|
+
info: string;
|
|
26
|
+
info2: string;
|
|
27
|
+
info3: string;
|
|
28
|
+
boxShadow: string;
|
|
29
|
+
boxShadow2: string;
|
|
30
|
+
boxShadow3: string;
|
|
31
|
+
}>;
|
|
32
|
+
export declare const lightThemeOverrides: import('vue').ComputedRef<{
|
|
33
|
+
common: {
|
|
34
|
+
baseColor: string;
|
|
35
|
+
primaryColor: string;
|
|
36
|
+
primaryColorHover: string;
|
|
37
|
+
primaryColorPressed: string;
|
|
38
|
+
primaryColorSuppl: string;
|
|
39
|
+
infoColor: string;
|
|
40
|
+
infoColorHover: string;
|
|
41
|
+
infoColorPressed: string;
|
|
42
|
+
infoColorSuppl: string;
|
|
43
|
+
successColor: string;
|
|
44
|
+
successColorHover: string;
|
|
45
|
+
successColorPressed: string;
|
|
46
|
+
successColorSuppl: string;
|
|
47
|
+
warningColor: string;
|
|
48
|
+
warningColorHover: string;
|
|
49
|
+
warningColorPressed: string;
|
|
50
|
+
warningColorSuppl: string;
|
|
51
|
+
errorColor: string;
|
|
52
|
+
errorColorHover: string;
|
|
53
|
+
errorColorPressed: string;
|
|
54
|
+
errorColorSuppl: string;
|
|
55
|
+
textColorBase: string;
|
|
56
|
+
textColor1: string;
|
|
57
|
+
textColor2: string;
|
|
58
|
+
textColor3: string;
|
|
59
|
+
textColorDisabled: string;
|
|
60
|
+
placeholderColor: string;
|
|
61
|
+
placeholderColorDisabled: string;
|
|
62
|
+
iconColor: string;
|
|
63
|
+
iconColorHover: string;
|
|
64
|
+
iconColorPressed: string;
|
|
65
|
+
iconColorDisabled: string;
|
|
66
|
+
opacity1: string;
|
|
67
|
+
opacity2: string;
|
|
68
|
+
opacity3: string;
|
|
69
|
+
opacity4: string;
|
|
70
|
+
opacity5: string;
|
|
71
|
+
dividerColor: string;
|
|
72
|
+
borderColor: string;
|
|
73
|
+
closeIconColor: string;
|
|
74
|
+
closeIconColorHover: string;
|
|
75
|
+
closeIconColorPressed: string;
|
|
76
|
+
closeColorHover: string;
|
|
77
|
+
closeColorPressed: string;
|
|
78
|
+
clearColor: string;
|
|
79
|
+
clearColorHover: string;
|
|
80
|
+
clearColorPressed: string;
|
|
81
|
+
scrollbarColor: string;
|
|
82
|
+
scrollbarColorHover: string;
|
|
83
|
+
scrollbarWidth: string;
|
|
84
|
+
scrollbarHeight: string;
|
|
85
|
+
scrollbarBorderRadius: string;
|
|
86
|
+
progressRailColor: string;
|
|
87
|
+
railColor: string;
|
|
88
|
+
popoverColor: string;
|
|
89
|
+
tableColor: string;
|
|
90
|
+
cardColor: string;
|
|
91
|
+
modalColor: string;
|
|
92
|
+
bodyColor: string;
|
|
93
|
+
tagColor: string;
|
|
94
|
+
avatarColor: string;
|
|
95
|
+
invertedColor: string;
|
|
96
|
+
inputColor: string;
|
|
97
|
+
codeColor: string;
|
|
98
|
+
tabColor: string;
|
|
99
|
+
actionColor: string;
|
|
100
|
+
tableHeaderColor: string;
|
|
101
|
+
hoverColor: string;
|
|
102
|
+
tableColorHover: string;
|
|
103
|
+
tableColorStriped: string;
|
|
104
|
+
pressedColor: string;
|
|
105
|
+
opacityDisabled: string;
|
|
106
|
+
inputColorDisabled: string;
|
|
107
|
+
buttonColor2: string;
|
|
108
|
+
buttonColor2Hover: string;
|
|
109
|
+
buttonColor2Pressed: string;
|
|
110
|
+
boxShadow1: string;
|
|
111
|
+
boxShadow2: string;
|
|
112
|
+
boxShadow3: string;
|
|
113
|
+
fontFamily: string;
|
|
114
|
+
fontFamilyMono: string;
|
|
115
|
+
fontWeight: string;
|
|
116
|
+
fontWeightStrong: string;
|
|
117
|
+
cubicBezierEaseInOut: string;
|
|
118
|
+
cubicBezierEaseOut: string;
|
|
119
|
+
cubicBezierEaseIn: string;
|
|
120
|
+
borderRadius: string;
|
|
121
|
+
borderRadiusSmall: string;
|
|
122
|
+
fontSize: string;
|
|
123
|
+
fontSizeMini: string;
|
|
124
|
+
fontSizeTiny: string;
|
|
125
|
+
fontSizeSmall: string;
|
|
126
|
+
fontSizeMedium: string;
|
|
127
|
+
fontSizeLarge: string;
|
|
128
|
+
fontSizeHuge: string;
|
|
129
|
+
lineHeight: string;
|
|
130
|
+
heightMini: string;
|
|
131
|
+
heightTiny: string;
|
|
132
|
+
heightSmall: string;
|
|
133
|
+
heightMedium: string;
|
|
134
|
+
heightLarge: string;
|
|
135
|
+
heightHuge: string;
|
|
136
|
+
name: "common";
|
|
137
|
+
};
|
|
138
|
+
Button: Partial<{
|
|
139
|
+
heightTiny: string;
|
|
140
|
+
heightSmall: string;
|
|
141
|
+
heightMedium: string;
|
|
142
|
+
heightLarge: string;
|
|
143
|
+
borderRadiusTiny: string;
|
|
144
|
+
borderRadiusSmall: string;
|
|
145
|
+
borderRadiusMedium: string;
|
|
146
|
+
borderRadiusLarge: string;
|
|
147
|
+
fontSizeTiny: string;
|
|
148
|
+
fontSizeSmall: string;
|
|
149
|
+
fontSizeMedium: string;
|
|
150
|
+
fontSizeLarge: string;
|
|
151
|
+
opacityDisabled: string;
|
|
152
|
+
colorOpacitySecondary: string;
|
|
153
|
+
colorOpacitySecondaryHover: string;
|
|
154
|
+
colorOpacitySecondaryPressed: string;
|
|
155
|
+
colorSecondary: string;
|
|
156
|
+
colorSecondaryHover: string;
|
|
157
|
+
colorSecondaryPressed: string;
|
|
158
|
+
colorTertiary: string;
|
|
159
|
+
colorTertiaryHover: string;
|
|
160
|
+
colorTertiaryPressed: string;
|
|
161
|
+
colorQuaternary: string;
|
|
162
|
+
colorQuaternaryHover: string;
|
|
163
|
+
colorQuaternaryPressed: string;
|
|
164
|
+
color: string;
|
|
165
|
+
colorHover: string;
|
|
166
|
+
colorPressed: string;
|
|
167
|
+
colorFocus: string;
|
|
168
|
+
colorDisabled: string;
|
|
169
|
+
textColor: string;
|
|
170
|
+
textColorTertiary: string;
|
|
171
|
+
textColorHover: string;
|
|
172
|
+
textColorPressed: string;
|
|
173
|
+
textColorFocus: string;
|
|
174
|
+
textColorDisabled: string;
|
|
175
|
+
textColorText: string;
|
|
176
|
+
textColorTextHover: string;
|
|
177
|
+
textColorTextPressed: string;
|
|
178
|
+
textColorTextFocus: string;
|
|
179
|
+
textColorTextDisabled: string;
|
|
180
|
+
textColorGhost: string;
|
|
181
|
+
textColorGhostHover: string;
|
|
182
|
+
textColorGhostPressed: string;
|
|
183
|
+
textColorGhostFocus: string;
|
|
184
|
+
textColorGhostDisabled: string;
|
|
185
|
+
border: string;
|
|
186
|
+
borderHover: string;
|
|
187
|
+
borderPressed: string;
|
|
188
|
+
borderFocus: string;
|
|
189
|
+
borderDisabled: string;
|
|
190
|
+
rippleColor: string;
|
|
191
|
+
colorPrimary: string;
|
|
192
|
+
colorHoverPrimary: string;
|
|
193
|
+
colorPressedPrimary: string;
|
|
194
|
+
colorFocusPrimary: string;
|
|
195
|
+
colorDisabledPrimary: string;
|
|
196
|
+
textColorPrimary: string;
|
|
197
|
+
textColorHoverPrimary: string;
|
|
198
|
+
textColorPressedPrimary: string;
|
|
199
|
+
textColorFocusPrimary: string;
|
|
200
|
+
textColorDisabledPrimary: string;
|
|
201
|
+
textColorTextPrimary: string;
|
|
202
|
+
textColorTextHoverPrimary: string;
|
|
203
|
+
textColorTextPressedPrimary: string;
|
|
204
|
+
textColorTextFocusPrimary: string;
|
|
205
|
+
textColorTextDisabledPrimary: string;
|
|
206
|
+
textColorGhostPrimary: string;
|
|
207
|
+
textColorGhostHoverPrimary: string;
|
|
208
|
+
textColorGhostPressedPrimary: string;
|
|
209
|
+
textColorGhostFocusPrimary: string;
|
|
210
|
+
textColorGhostDisabledPrimary: string;
|
|
211
|
+
borderPrimary: string;
|
|
212
|
+
borderHoverPrimary: string;
|
|
213
|
+
borderPressedPrimary: string;
|
|
214
|
+
borderFocusPrimary: string;
|
|
215
|
+
borderDisabledPrimary: string;
|
|
216
|
+
rippleColorPrimary: string;
|
|
217
|
+
colorInfo: string;
|
|
218
|
+
colorHoverInfo: string;
|
|
219
|
+
colorPressedInfo: string;
|
|
220
|
+
colorFocusInfo: string;
|
|
221
|
+
colorDisabledInfo: string;
|
|
222
|
+
textColorInfo: string;
|
|
223
|
+
textColorHoverInfo: string;
|
|
224
|
+
textColorPressedInfo: string;
|
|
225
|
+
textColorFocusInfo: string;
|
|
226
|
+
textColorDisabledInfo: string;
|
|
227
|
+
textColorTextInfo: string;
|
|
228
|
+
textColorTextHoverInfo: string;
|
|
229
|
+
textColorTextPressedInfo: string;
|
|
230
|
+
textColorTextFocusInfo: string;
|
|
231
|
+
textColorTextDisabledInfo: string;
|
|
232
|
+
textColorGhostInfo: string;
|
|
233
|
+
textColorGhostHoverInfo: string;
|
|
234
|
+
textColorGhostPressedInfo: string;
|
|
235
|
+
textColorGhostFocusInfo: string;
|
|
236
|
+
textColorGhostDisabledInfo: string;
|
|
237
|
+
borderInfo: string;
|
|
238
|
+
borderHoverInfo: string;
|
|
239
|
+
borderPressedInfo: string;
|
|
240
|
+
borderFocusInfo: string;
|
|
241
|
+
borderDisabledInfo: string;
|
|
242
|
+
rippleColorInfo: string;
|
|
243
|
+
colorSuccess: string;
|
|
244
|
+
colorHoverSuccess: string;
|
|
245
|
+
colorPressedSuccess: string;
|
|
246
|
+
colorFocusSuccess: string;
|
|
247
|
+
colorDisabledSuccess: string;
|
|
248
|
+
textColorSuccess: string;
|
|
249
|
+
textColorHoverSuccess: string;
|
|
250
|
+
textColorPressedSuccess: string;
|
|
251
|
+
textColorFocusSuccess: string;
|
|
252
|
+
textColorDisabledSuccess: string;
|
|
253
|
+
textColorTextSuccess: string;
|
|
254
|
+
textColorTextHoverSuccess: string;
|
|
255
|
+
textColorTextPressedSuccess: string;
|
|
256
|
+
textColorTextFocusSuccess: string;
|
|
257
|
+
textColorTextDisabledSuccess: string;
|
|
258
|
+
textColorGhostSuccess: string;
|
|
259
|
+
textColorGhostHoverSuccess: string;
|
|
260
|
+
textColorGhostPressedSuccess: string;
|
|
261
|
+
textColorGhostFocusSuccess: string;
|
|
262
|
+
textColorGhostDisabledSuccess: string;
|
|
263
|
+
borderSuccess: string;
|
|
264
|
+
borderHoverSuccess: string;
|
|
265
|
+
borderPressedSuccess: string;
|
|
266
|
+
borderFocusSuccess: string;
|
|
267
|
+
borderDisabledSuccess: string;
|
|
268
|
+
rippleColorSuccess: string;
|
|
269
|
+
colorWarning: string;
|
|
270
|
+
colorHoverWarning: string;
|
|
271
|
+
colorPressedWarning: string;
|
|
272
|
+
colorFocusWarning: string;
|
|
273
|
+
colorDisabledWarning: string;
|
|
274
|
+
textColorWarning: string;
|
|
275
|
+
textColorHoverWarning: string;
|
|
276
|
+
textColorPressedWarning: string;
|
|
277
|
+
textColorFocusWarning: string;
|
|
278
|
+
textColorDisabledWarning: string;
|
|
279
|
+
textColorTextWarning: string;
|
|
280
|
+
textColorTextHoverWarning: string;
|
|
281
|
+
textColorTextPressedWarning: string;
|
|
282
|
+
textColorTextFocusWarning: string;
|
|
283
|
+
textColorTextDisabledWarning: string;
|
|
284
|
+
textColorGhostWarning: string;
|
|
285
|
+
textColorGhostHoverWarning: string;
|
|
286
|
+
textColorGhostPressedWarning: string;
|
|
287
|
+
textColorGhostFocusWarning: string;
|
|
288
|
+
textColorGhostDisabledWarning: string;
|
|
289
|
+
borderWarning: string;
|
|
290
|
+
borderHoverWarning: string;
|
|
291
|
+
borderPressedWarning: string;
|
|
292
|
+
borderFocusWarning: string;
|
|
293
|
+
borderDisabledWarning: string;
|
|
294
|
+
rippleColorWarning: string;
|
|
295
|
+
colorError: string;
|
|
296
|
+
colorHoverError: string;
|
|
297
|
+
colorPressedError: string;
|
|
298
|
+
colorFocusError: string;
|
|
299
|
+
colorDisabledError: string;
|
|
300
|
+
textColorError: string;
|
|
301
|
+
textColorHoverError: string;
|
|
302
|
+
textColorPressedError: string;
|
|
303
|
+
textColorFocusError: string;
|
|
304
|
+
textColorDisabledError: string;
|
|
305
|
+
textColorTextError: string;
|
|
306
|
+
textColorTextHoverError: string;
|
|
307
|
+
textColorTextPressedError: string;
|
|
308
|
+
textColorTextFocusError: string;
|
|
309
|
+
textColorTextDisabledError: string;
|
|
310
|
+
textColorGhostError: string;
|
|
311
|
+
textColorGhostHoverError: string;
|
|
312
|
+
textColorGhostPressedError: string;
|
|
313
|
+
textColorGhostFocusError: string;
|
|
314
|
+
textColorGhostDisabledError: string;
|
|
315
|
+
borderError: string;
|
|
316
|
+
borderHoverError: string;
|
|
317
|
+
borderPressedError: string;
|
|
318
|
+
borderFocusError: string;
|
|
319
|
+
borderDisabledError: string;
|
|
320
|
+
rippleColorError: string;
|
|
321
|
+
waveOpacity: string;
|
|
322
|
+
fontWeight: string;
|
|
323
|
+
fontWeightStrong: string;
|
|
324
|
+
paddingTiny: string;
|
|
325
|
+
paddingSmall: string;
|
|
326
|
+
paddingMedium: string;
|
|
327
|
+
paddingLarge: string;
|
|
328
|
+
paddingRoundTiny: string;
|
|
329
|
+
paddingRoundSmall: string;
|
|
330
|
+
paddingRoundMedium: string;
|
|
331
|
+
paddingRoundLarge: string;
|
|
332
|
+
iconMarginTiny: string;
|
|
333
|
+
iconMarginSmall: string;
|
|
334
|
+
iconMarginMedium: string;
|
|
335
|
+
iconMarginLarge: string;
|
|
336
|
+
iconSizeTiny: string;
|
|
337
|
+
iconSizeSmall: string;
|
|
338
|
+
iconSizeMedium: string;
|
|
339
|
+
iconSizeLarge: string;
|
|
340
|
+
rippleDuration: string;
|
|
341
|
+
}>;
|
|
342
|
+
Input: Partial<{
|
|
343
|
+
countTextColorDisabled: string;
|
|
344
|
+
countTextColor: string;
|
|
345
|
+
heightTiny: string;
|
|
346
|
+
heightSmall: string;
|
|
347
|
+
heightMedium: string;
|
|
348
|
+
heightLarge: string;
|
|
349
|
+
fontSizeTiny: string;
|
|
350
|
+
fontSizeSmall: string;
|
|
351
|
+
fontSizeMedium: string;
|
|
352
|
+
fontSizeLarge: string;
|
|
353
|
+
lineHeight: string;
|
|
354
|
+
lineHeightTextarea: string;
|
|
355
|
+
borderRadius: string;
|
|
356
|
+
iconSize: string;
|
|
357
|
+
groupLabelColor: string;
|
|
358
|
+
groupLabelTextColor: string;
|
|
359
|
+
textColor: string;
|
|
360
|
+
textColorDisabled: string;
|
|
361
|
+
textDecorationColor: string;
|
|
362
|
+
caretColor: string;
|
|
363
|
+
placeholderColor: string;
|
|
364
|
+
placeholderColorDisabled: string;
|
|
365
|
+
color: string;
|
|
366
|
+
colorDisabled: string;
|
|
367
|
+
colorFocus: string;
|
|
368
|
+
groupLabelBorder: string;
|
|
369
|
+
border: string;
|
|
370
|
+
borderHover: string;
|
|
371
|
+
borderDisabled: string;
|
|
372
|
+
borderFocus: string;
|
|
373
|
+
boxShadowFocus: string;
|
|
374
|
+
loadingColor: string;
|
|
375
|
+
loadingColorWarning: string;
|
|
376
|
+
borderWarning: string;
|
|
377
|
+
borderHoverWarning: string;
|
|
378
|
+
colorFocusWarning: string;
|
|
379
|
+
borderFocusWarning: string;
|
|
380
|
+
boxShadowFocusWarning: string;
|
|
381
|
+
caretColorWarning: string;
|
|
382
|
+
loadingColorError: string;
|
|
383
|
+
borderError: string;
|
|
384
|
+
borderHoverError: string;
|
|
385
|
+
colorFocusError: string;
|
|
386
|
+
borderFocusError: string;
|
|
387
|
+
boxShadowFocusError: string;
|
|
388
|
+
caretColorError: string;
|
|
389
|
+
clearColor: string;
|
|
390
|
+
clearColorHover: string;
|
|
391
|
+
clearColorPressed: string;
|
|
392
|
+
iconColor: string;
|
|
393
|
+
iconColorDisabled: string;
|
|
394
|
+
iconColorHover: string;
|
|
395
|
+
iconColorPressed: string;
|
|
396
|
+
suffixTextColor: string;
|
|
397
|
+
paddingTiny: string;
|
|
398
|
+
paddingSmall: string;
|
|
399
|
+
paddingMedium: string;
|
|
400
|
+
paddingLarge: string;
|
|
401
|
+
clearSize: string;
|
|
402
|
+
}>;
|
|
403
|
+
Tag: Partial<{
|
|
404
|
+
closeBorderRadius: string;
|
|
405
|
+
heightTiny: string;
|
|
406
|
+
heightSmall: string;
|
|
407
|
+
heightMedium: string;
|
|
408
|
+
heightLarge: string;
|
|
409
|
+
borderRadius: string;
|
|
410
|
+
opacityDisabled: string;
|
|
411
|
+
fontSizeTiny: string;
|
|
412
|
+
fontSizeSmall: string;
|
|
413
|
+
fontSizeMedium: string;
|
|
414
|
+
fontSizeLarge: string;
|
|
415
|
+
fontWeightStrong: string;
|
|
416
|
+
textColorCheckable: string;
|
|
417
|
+
textColorHoverCheckable: string;
|
|
418
|
+
textColorPressedCheckable: string;
|
|
419
|
+
textColorChecked: string;
|
|
420
|
+
colorCheckable: string;
|
|
421
|
+
colorHoverCheckable: string;
|
|
422
|
+
colorPressedCheckable: string;
|
|
423
|
+
colorChecked: string;
|
|
424
|
+
colorCheckedHover: string;
|
|
425
|
+
colorCheckedPressed: string;
|
|
426
|
+
border: string;
|
|
427
|
+
textColor: string;
|
|
428
|
+
color: string;
|
|
429
|
+
colorBordered: string;
|
|
430
|
+
closeIconColor: string;
|
|
431
|
+
closeIconColorHover: string;
|
|
432
|
+
closeIconColorPressed: string;
|
|
433
|
+
closeColorHover: string;
|
|
434
|
+
closeColorPressed: string;
|
|
435
|
+
borderPrimary: string;
|
|
436
|
+
textColorPrimary: string;
|
|
437
|
+
colorPrimary: string;
|
|
438
|
+
colorBorderedPrimary: string;
|
|
439
|
+
closeIconColorPrimary: string;
|
|
440
|
+
closeIconColorHoverPrimary: string;
|
|
441
|
+
closeIconColorPressedPrimary: string;
|
|
442
|
+
closeColorHoverPrimary: string;
|
|
443
|
+
closeColorPressedPrimary: string;
|
|
444
|
+
borderInfo: string;
|
|
445
|
+
textColorInfo: string;
|
|
446
|
+
colorInfo: string;
|
|
447
|
+
colorBorderedInfo: string;
|
|
448
|
+
closeIconColorInfo: string;
|
|
449
|
+
closeIconColorHoverInfo: string;
|
|
450
|
+
closeIconColorPressedInfo: string;
|
|
451
|
+
closeColorHoverInfo: string;
|
|
452
|
+
closeColorPressedInfo: string;
|
|
453
|
+
borderSuccess: string;
|
|
454
|
+
textColorSuccess: string;
|
|
455
|
+
colorSuccess: string;
|
|
456
|
+
colorBorderedSuccess: string;
|
|
457
|
+
closeIconColorSuccess: string;
|
|
458
|
+
closeIconColorHoverSuccess: string;
|
|
459
|
+
closeIconColorPressedSuccess: string;
|
|
460
|
+
closeColorHoverSuccess: string;
|
|
461
|
+
closeColorPressedSuccess: string;
|
|
462
|
+
borderWarning: string;
|
|
463
|
+
textColorWarning: string;
|
|
464
|
+
colorWarning: string;
|
|
465
|
+
colorBorderedWarning: string;
|
|
466
|
+
closeIconColorWarning: string;
|
|
467
|
+
closeIconColorHoverWarning: string;
|
|
468
|
+
closeIconColorPressedWarning: string;
|
|
469
|
+
closeColorHoverWarning: string;
|
|
470
|
+
closeColorPressedWarning: string;
|
|
471
|
+
borderError: string;
|
|
472
|
+
textColorError: string;
|
|
473
|
+
colorError: string;
|
|
474
|
+
colorBorderedError: string;
|
|
475
|
+
closeIconColorError: string;
|
|
476
|
+
closeIconColorHoverError: string;
|
|
477
|
+
closeIconColorPressedError: string;
|
|
478
|
+
closeColorHoverError: string;
|
|
479
|
+
closeColorPressedError: string;
|
|
480
|
+
closeIconSizeTiny: string;
|
|
481
|
+
closeIconSizeSmall: string;
|
|
482
|
+
closeIconSizeMedium: string;
|
|
483
|
+
closeIconSizeLarge: string;
|
|
484
|
+
closeSizeTiny: string;
|
|
485
|
+
closeSizeSmall: string;
|
|
486
|
+
closeSizeMedium: string;
|
|
487
|
+
closeSizeLarge: string;
|
|
488
|
+
padding: string;
|
|
489
|
+
closeMargin: string;
|
|
490
|
+
}>;
|
|
491
|
+
Dropdown: Partial<{
|
|
492
|
+
optionHeightSmall: string;
|
|
493
|
+
optionHeightMedium: string;
|
|
494
|
+
optionHeightLarge: string;
|
|
495
|
+
optionHeightHuge: string;
|
|
496
|
+
borderRadius: string;
|
|
497
|
+
fontSizeSmall: string;
|
|
498
|
+
fontSizeMedium: string;
|
|
499
|
+
fontSizeLarge: string;
|
|
500
|
+
fontSizeHuge: string;
|
|
501
|
+
optionTextColor: string;
|
|
502
|
+
optionTextColorHover: string;
|
|
503
|
+
optionTextColorActive: string;
|
|
504
|
+
optionTextColorChildActive: string;
|
|
505
|
+
color: string;
|
|
506
|
+
dividerColor: string;
|
|
507
|
+
suffixColor: string;
|
|
508
|
+
prefixColor: string;
|
|
509
|
+
optionColorHover: string;
|
|
510
|
+
optionColorActive: string;
|
|
511
|
+
groupHeaderTextColor: string;
|
|
512
|
+
optionTextColorInverted: string;
|
|
513
|
+
optionTextColorHoverInverted: string;
|
|
514
|
+
optionTextColorActiveInverted: string;
|
|
515
|
+
optionTextColorChildActiveInverted: string;
|
|
516
|
+
colorInverted: string;
|
|
517
|
+
dividerColorInverted: string;
|
|
518
|
+
suffixColorInverted: string;
|
|
519
|
+
prefixColorInverted: string;
|
|
520
|
+
optionColorHoverInverted: string;
|
|
521
|
+
optionColorActiveInverted: string;
|
|
522
|
+
groupHeaderTextColorInverted: string;
|
|
523
|
+
optionOpacityDisabled: string;
|
|
524
|
+
padding: string;
|
|
525
|
+
optionIconSizeSmall: string;
|
|
526
|
+
optionIconSizeMedium: string;
|
|
527
|
+
optionIconSizeLarge: string;
|
|
528
|
+
optionIconSizeHuge: string;
|
|
529
|
+
optionSuffixWidthSmall: string;
|
|
530
|
+
optionSuffixWidthMedium: string;
|
|
531
|
+
optionSuffixWidthLarge: string;
|
|
532
|
+
optionSuffixWidthHuge: string;
|
|
533
|
+
optionIconSuffixWidthSmall: string;
|
|
534
|
+
optionIconSuffixWidthMedium: string;
|
|
535
|
+
optionIconSuffixWidthLarge: string;
|
|
536
|
+
optionIconSuffixWidthHuge: string;
|
|
537
|
+
optionPrefixWidthSmall: string;
|
|
538
|
+
optionPrefixWidthMedium: string;
|
|
539
|
+
optionPrefixWidthLarge: string;
|
|
540
|
+
optionPrefixWidthHuge: string;
|
|
541
|
+
optionIconPrefixWidthSmall: string;
|
|
542
|
+
optionIconPrefixWidthMedium: string;
|
|
543
|
+
optionIconPrefixWidthLarge: string;
|
|
544
|
+
optionIconPrefixWidthHuge: string;
|
|
545
|
+
}>;
|
|
546
|
+
Popover: Partial<{
|
|
547
|
+
fontSize: string;
|
|
548
|
+
borderRadius: string;
|
|
549
|
+
color: string;
|
|
550
|
+
dividerColor: string;
|
|
551
|
+
textColor: string;
|
|
552
|
+
boxShadow: string;
|
|
553
|
+
space: string;
|
|
554
|
+
spaceArrow: string;
|
|
555
|
+
arrowOffset: string;
|
|
556
|
+
arrowOffsetVertical: string;
|
|
557
|
+
arrowHeight: string;
|
|
558
|
+
padding: string;
|
|
559
|
+
}>;
|
|
560
|
+
Rate: Partial<{
|
|
561
|
+
itemColor: string;
|
|
562
|
+
itemColorActive: string;
|
|
563
|
+
sizeSmall: string;
|
|
564
|
+
sizeMedium: string;
|
|
565
|
+
sizeLarge: string;
|
|
566
|
+
}>;
|
|
567
|
+
Modal: Partial<{
|
|
568
|
+
color: string;
|
|
569
|
+
textColor: string;
|
|
570
|
+
boxShadow: string;
|
|
571
|
+
}>;
|
|
572
|
+
Card: Partial<{
|
|
573
|
+
lineHeight: string;
|
|
574
|
+
color: string;
|
|
575
|
+
colorModal: string;
|
|
576
|
+
colorPopover: string;
|
|
577
|
+
colorTarget: string;
|
|
578
|
+
colorEmbedded: string;
|
|
579
|
+
colorEmbeddedModal: string;
|
|
580
|
+
colorEmbeddedPopover: string;
|
|
581
|
+
textColor: string;
|
|
582
|
+
titleTextColor: string;
|
|
583
|
+
borderColor: string;
|
|
584
|
+
actionColor: string;
|
|
585
|
+
titleFontWeight: string;
|
|
586
|
+
closeColorHover: string;
|
|
587
|
+
closeColorPressed: string;
|
|
588
|
+
closeBorderRadius: string;
|
|
589
|
+
closeIconColor: string;
|
|
590
|
+
closeIconColorHover: string;
|
|
591
|
+
closeIconColorPressed: string;
|
|
592
|
+
fontSizeSmall: string;
|
|
593
|
+
fontSizeMedium: string;
|
|
594
|
+
fontSizeLarge: string;
|
|
595
|
+
fontSizeHuge: string;
|
|
596
|
+
boxShadow: string;
|
|
597
|
+
borderRadius: string;
|
|
598
|
+
paddingSmall: string;
|
|
599
|
+
paddingMedium: string;
|
|
600
|
+
paddingLarge: string;
|
|
601
|
+
paddingHuge: string;
|
|
602
|
+
titleFontSizeSmall: string;
|
|
603
|
+
titleFontSizeMedium: string;
|
|
604
|
+
titleFontSizeLarge: string;
|
|
605
|
+
titleFontSizeHuge: string;
|
|
606
|
+
closeIconSize: string;
|
|
607
|
+
closeSize: string;
|
|
608
|
+
}>;
|
|
609
|
+
Form: Partial<{
|
|
610
|
+
blankHeightSmall: string;
|
|
611
|
+
blankHeightMedium: string;
|
|
612
|
+
blankHeightLarge: string;
|
|
613
|
+
lineHeight: string;
|
|
614
|
+
labelTextColor: string;
|
|
615
|
+
asteriskColor: string;
|
|
616
|
+
feedbackTextColorError: string;
|
|
617
|
+
feedbackTextColorWarning: string;
|
|
618
|
+
feedbackTextColor: string;
|
|
619
|
+
feedbackPadding: string;
|
|
620
|
+
feedbackHeightSmall: string;
|
|
621
|
+
feedbackHeightMedium: string;
|
|
622
|
+
feedbackHeightLarge: string;
|
|
623
|
+
feedbackFontSizeSmall: string;
|
|
624
|
+
feedbackFontSizeMedium: string;
|
|
625
|
+
feedbackFontSizeLarge: string;
|
|
626
|
+
labelFontSizeLeftSmall: string;
|
|
627
|
+
labelFontSizeLeftMedium: string;
|
|
628
|
+
labelFontSizeLeftLarge: string;
|
|
629
|
+
labelFontSizeTopSmall: string;
|
|
630
|
+
labelFontSizeTopMedium: string;
|
|
631
|
+
labelFontSizeTopLarge: string;
|
|
632
|
+
labelHeightSmall: string;
|
|
633
|
+
labelHeightMedium: string;
|
|
634
|
+
labelHeightLarge: string;
|
|
635
|
+
labelPaddingVertical: string;
|
|
636
|
+
labelPaddingHorizontal: string;
|
|
637
|
+
labelTextAlignVertical: string;
|
|
638
|
+
labelTextAlignHorizontal: string;
|
|
639
|
+
labelFontWeight: string;
|
|
640
|
+
}>;
|
|
641
|
+
Select: Partial<{
|
|
642
|
+
menuBoxShadow: string;
|
|
643
|
+
} & Partial<{
|
|
644
|
+
menuBoxShadow: string;
|
|
645
|
+
}> & {
|
|
646
|
+
peers?: {
|
|
647
|
+
InternalSelection?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
648
|
+
fontSizeTiny: string;
|
|
649
|
+
fontSizeSmall: string;
|
|
650
|
+
fontSizeMedium: string;
|
|
651
|
+
fontSizeLarge: string;
|
|
652
|
+
heightTiny: string;
|
|
653
|
+
heightSmall: string;
|
|
654
|
+
heightMedium: string;
|
|
655
|
+
heightLarge: string;
|
|
656
|
+
borderRadius: string;
|
|
657
|
+
textColor: string;
|
|
658
|
+
textColorDisabled: string;
|
|
659
|
+
placeholderColor: string;
|
|
660
|
+
placeholderColorDisabled: string;
|
|
661
|
+
color: string;
|
|
662
|
+
colorDisabled: string;
|
|
663
|
+
colorActive: string;
|
|
664
|
+
border: string;
|
|
665
|
+
borderHover: string;
|
|
666
|
+
borderActive: string;
|
|
667
|
+
borderFocus: string;
|
|
668
|
+
boxShadowHover: string;
|
|
669
|
+
boxShadowActive: string;
|
|
670
|
+
boxShadowFocus: string;
|
|
671
|
+
caretColor: string;
|
|
672
|
+
arrowColor: string;
|
|
673
|
+
arrowColorDisabled: string;
|
|
674
|
+
loadingColor: string;
|
|
675
|
+
borderWarning: string;
|
|
676
|
+
borderHoverWarning: string;
|
|
677
|
+
borderActiveWarning: string;
|
|
678
|
+
borderFocusWarning: string;
|
|
679
|
+
boxShadowHoverWarning: string;
|
|
680
|
+
boxShadowActiveWarning: string;
|
|
681
|
+
boxShadowFocusWarning: string;
|
|
682
|
+
colorActiveWarning: string;
|
|
683
|
+
caretColorWarning: string;
|
|
684
|
+
borderError: string;
|
|
685
|
+
borderHoverError: string;
|
|
686
|
+
borderActiveError: string;
|
|
687
|
+
borderFocusError: string;
|
|
688
|
+
boxShadowHoverError: string;
|
|
689
|
+
boxShadowActiveError: string;
|
|
690
|
+
boxShadowFocusError: string;
|
|
691
|
+
colorActiveError: string;
|
|
692
|
+
caretColorError: string;
|
|
693
|
+
clearColor: string;
|
|
694
|
+
clearColorHover: string;
|
|
695
|
+
clearColorPressed: string;
|
|
696
|
+
paddingSingle: string;
|
|
697
|
+
paddingMultiple: string;
|
|
698
|
+
clearSize: string;
|
|
699
|
+
arrowSize: string;
|
|
700
|
+
}, {
|
|
701
|
+
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
702
|
+
fontSize: string;
|
|
703
|
+
borderRadius: string;
|
|
704
|
+
color: string;
|
|
705
|
+
dividerColor: string;
|
|
706
|
+
textColor: string;
|
|
707
|
+
boxShadow: string;
|
|
708
|
+
space: string;
|
|
709
|
+
spaceArrow: string;
|
|
710
|
+
arrowOffset: string;
|
|
711
|
+
arrowOffsetVertical: string;
|
|
712
|
+
arrowHeight: string;
|
|
713
|
+
padding: string;
|
|
714
|
+
}, any>;
|
|
715
|
+
}>> | undefined;
|
|
716
|
+
InternalSelectMenu?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
717
|
+
optionFontSizeSmall: string;
|
|
718
|
+
optionFontSizeMedium: string;
|
|
719
|
+
optionFontSizeLarge: string;
|
|
720
|
+
optionFontSizeHuge: string;
|
|
721
|
+
optionHeightSmall: string;
|
|
722
|
+
optionHeightMedium: string;
|
|
723
|
+
optionHeightLarge: string;
|
|
724
|
+
optionHeightHuge: string;
|
|
725
|
+
borderRadius: string;
|
|
726
|
+
color: string;
|
|
727
|
+
groupHeaderTextColor: string;
|
|
728
|
+
actionDividerColor: string;
|
|
729
|
+
optionTextColor: string;
|
|
730
|
+
optionTextColorPressed: string;
|
|
731
|
+
optionTextColorDisabled: string;
|
|
732
|
+
optionTextColorActive: string;
|
|
733
|
+
optionOpacityDisabled: string;
|
|
734
|
+
optionCheckColor: string;
|
|
735
|
+
optionColorPending: string;
|
|
736
|
+
optionColorActive: string;
|
|
737
|
+
optionColorActivePending: string;
|
|
738
|
+
actionTextColor: string;
|
|
739
|
+
loadingColor: string;
|
|
740
|
+
height: string;
|
|
741
|
+
paddingSmall: string;
|
|
742
|
+
paddingMedium: string;
|
|
743
|
+
paddingLarge: string;
|
|
744
|
+
paddingHuge: string;
|
|
745
|
+
optionPaddingSmall: string;
|
|
746
|
+
optionPaddingMedium: string;
|
|
747
|
+
optionPaddingLarge: string;
|
|
748
|
+
optionPaddingHuge: string;
|
|
749
|
+
loadingSize: string;
|
|
750
|
+
}, {
|
|
751
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
752
|
+
height: string;
|
|
753
|
+
width: string;
|
|
754
|
+
borderRadius: string;
|
|
755
|
+
color: string;
|
|
756
|
+
colorHover: string;
|
|
757
|
+
railInsetHorizontal: string;
|
|
758
|
+
railInsetVertical: string;
|
|
759
|
+
railColor: string;
|
|
760
|
+
}, any>;
|
|
761
|
+
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
762
|
+
fontSizeSmall: string;
|
|
763
|
+
fontSizeMedium: string;
|
|
764
|
+
fontSizeLarge: string;
|
|
765
|
+
fontSizeHuge: string;
|
|
766
|
+
textColor: string;
|
|
767
|
+
iconColor: string;
|
|
768
|
+
extraTextColor: string;
|
|
769
|
+
iconSizeSmall: string;
|
|
770
|
+
iconSizeMedium: string;
|
|
771
|
+
iconSizeLarge: string;
|
|
772
|
+
iconSizeHuge: string;
|
|
773
|
+
}, any>;
|
|
774
|
+
}>> | undefined;
|
|
775
|
+
} | undefined;
|
|
776
|
+
} & {
|
|
777
|
+
common?: Partial<ThemeCommonVars>;
|
|
778
|
+
}>;
|
|
779
|
+
AutoComplete: Partial<{
|
|
780
|
+
menuBoxShadow: string;
|
|
781
|
+
} & Partial<{
|
|
782
|
+
menuBoxShadow: string;
|
|
783
|
+
}> & {
|
|
784
|
+
peers?: {
|
|
785
|
+
InternalSelectMenu?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
786
|
+
optionFontSizeSmall: string;
|
|
787
|
+
optionFontSizeMedium: string;
|
|
788
|
+
optionFontSizeLarge: string;
|
|
789
|
+
optionFontSizeHuge: string;
|
|
790
|
+
optionHeightSmall: string;
|
|
791
|
+
optionHeightMedium: string;
|
|
792
|
+
optionHeightLarge: string;
|
|
793
|
+
optionHeightHuge: string;
|
|
794
|
+
borderRadius: string;
|
|
795
|
+
color: string;
|
|
796
|
+
groupHeaderTextColor: string;
|
|
797
|
+
actionDividerColor: string;
|
|
798
|
+
optionTextColor: string;
|
|
799
|
+
optionTextColorPressed: string;
|
|
800
|
+
optionTextColorDisabled: string;
|
|
801
|
+
optionTextColorActive: string;
|
|
802
|
+
optionOpacityDisabled: string;
|
|
803
|
+
optionCheckColor: string;
|
|
804
|
+
optionColorPending: string;
|
|
805
|
+
optionColorActive: string;
|
|
806
|
+
optionColorActivePending: string;
|
|
807
|
+
actionTextColor: string;
|
|
808
|
+
loadingColor: string;
|
|
809
|
+
height: string;
|
|
810
|
+
paddingSmall: string;
|
|
811
|
+
paddingMedium: string;
|
|
812
|
+
paddingLarge: string;
|
|
813
|
+
paddingHuge: string;
|
|
814
|
+
optionPaddingSmall: string;
|
|
815
|
+
optionPaddingMedium: string;
|
|
816
|
+
optionPaddingLarge: string;
|
|
817
|
+
optionPaddingHuge: string;
|
|
818
|
+
loadingSize: string;
|
|
819
|
+
}, {
|
|
820
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
821
|
+
height: string;
|
|
822
|
+
width: string;
|
|
823
|
+
borderRadius: string;
|
|
824
|
+
color: string;
|
|
825
|
+
colorHover: string;
|
|
826
|
+
railInsetHorizontal: string;
|
|
827
|
+
railInsetVertical: string;
|
|
828
|
+
railColor: string;
|
|
829
|
+
}, any>;
|
|
830
|
+
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
831
|
+
fontSizeSmall: string;
|
|
832
|
+
fontSizeMedium: string;
|
|
833
|
+
fontSizeLarge: string;
|
|
834
|
+
fontSizeHuge: string;
|
|
835
|
+
textColor: string;
|
|
836
|
+
iconColor: string;
|
|
837
|
+
extraTextColor: string;
|
|
838
|
+
iconSizeSmall: string;
|
|
839
|
+
iconSizeMedium: string;
|
|
840
|
+
iconSizeLarge: string;
|
|
841
|
+
iconSizeHuge: string;
|
|
842
|
+
}, any>;
|
|
843
|
+
}>> | undefined;
|
|
844
|
+
Input?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Input", {
|
|
845
|
+
countTextColorDisabled: string;
|
|
846
|
+
countTextColor: string;
|
|
847
|
+
heightTiny: string;
|
|
848
|
+
heightSmall: string;
|
|
849
|
+
heightMedium: string;
|
|
850
|
+
heightLarge: string;
|
|
851
|
+
fontSizeTiny: string;
|
|
852
|
+
fontSizeSmall: string;
|
|
853
|
+
fontSizeMedium: string;
|
|
854
|
+
fontSizeLarge: string;
|
|
855
|
+
lineHeight: string;
|
|
856
|
+
lineHeightTextarea: string;
|
|
857
|
+
borderRadius: string;
|
|
858
|
+
iconSize: string;
|
|
859
|
+
groupLabelColor: string;
|
|
860
|
+
groupLabelTextColor: string;
|
|
861
|
+
textColor: string;
|
|
862
|
+
textColorDisabled: string;
|
|
863
|
+
textDecorationColor: string;
|
|
864
|
+
caretColor: string;
|
|
865
|
+
placeholderColor: string;
|
|
866
|
+
placeholderColorDisabled: string;
|
|
867
|
+
color: string;
|
|
868
|
+
colorDisabled: string;
|
|
869
|
+
colorFocus: string;
|
|
870
|
+
groupLabelBorder: string;
|
|
871
|
+
border: string;
|
|
872
|
+
borderHover: string;
|
|
873
|
+
borderDisabled: string;
|
|
874
|
+
borderFocus: string;
|
|
875
|
+
boxShadowFocus: string;
|
|
876
|
+
loadingColor: string;
|
|
877
|
+
loadingColorWarning: string;
|
|
878
|
+
borderWarning: string;
|
|
879
|
+
borderHoverWarning: string;
|
|
880
|
+
colorFocusWarning: string;
|
|
881
|
+
borderFocusWarning: string;
|
|
882
|
+
boxShadowFocusWarning: string;
|
|
883
|
+
caretColorWarning: string;
|
|
884
|
+
loadingColorError: string;
|
|
885
|
+
borderError: string;
|
|
886
|
+
borderHoverError: string;
|
|
887
|
+
colorFocusError: string;
|
|
888
|
+
borderFocusError: string;
|
|
889
|
+
boxShadowFocusError: string;
|
|
890
|
+
caretColorError: string;
|
|
891
|
+
clearColor: string;
|
|
892
|
+
clearColorHover: string;
|
|
893
|
+
clearColorPressed: string;
|
|
894
|
+
iconColor: string;
|
|
895
|
+
iconColorDisabled: string;
|
|
896
|
+
iconColorHover: string;
|
|
897
|
+
iconColorPressed: string;
|
|
898
|
+
suffixTextColor: string;
|
|
899
|
+
paddingTiny: string;
|
|
900
|
+
paddingSmall: string;
|
|
901
|
+
paddingMedium: string;
|
|
902
|
+
paddingLarge: string;
|
|
903
|
+
clearSize: string;
|
|
904
|
+
}, any>> | undefined;
|
|
905
|
+
} | undefined;
|
|
906
|
+
} & {
|
|
907
|
+
common?: Partial<ThemeCommonVars>;
|
|
908
|
+
}>;
|
|
909
|
+
InternalSelection: Partial<{
|
|
910
|
+
fontSizeTiny: string;
|
|
911
|
+
fontSizeSmall: string;
|
|
912
|
+
fontSizeMedium: string;
|
|
913
|
+
fontSizeLarge: string;
|
|
914
|
+
heightTiny: string;
|
|
915
|
+
heightSmall: string;
|
|
916
|
+
heightMedium: string;
|
|
917
|
+
heightLarge: string;
|
|
918
|
+
borderRadius: string;
|
|
919
|
+
textColor: string;
|
|
920
|
+
textColorDisabled: string;
|
|
921
|
+
placeholderColor: string;
|
|
922
|
+
placeholderColorDisabled: string;
|
|
923
|
+
color: string;
|
|
924
|
+
colorDisabled: string;
|
|
925
|
+
colorActive: string;
|
|
926
|
+
border: string;
|
|
927
|
+
borderHover: string;
|
|
928
|
+
borderActive: string;
|
|
929
|
+
borderFocus: string;
|
|
930
|
+
boxShadowHover: string;
|
|
931
|
+
boxShadowActive: string;
|
|
932
|
+
boxShadowFocus: string;
|
|
933
|
+
caretColor: string;
|
|
934
|
+
arrowColor: string;
|
|
935
|
+
arrowColorDisabled: string;
|
|
936
|
+
loadingColor: string;
|
|
937
|
+
borderWarning: string;
|
|
938
|
+
borderHoverWarning: string;
|
|
939
|
+
borderActiveWarning: string;
|
|
940
|
+
borderFocusWarning: string;
|
|
941
|
+
boxShadowHoverWarning: string;
|
|
942
|
+
boxShadowActiveWarning: string;
|
|
943
|
+
boxShadowFocusWarning: string;
|
|
944
|
+
colorActiveWarning: string;
|
|
945
|
+
caretColorWarning: string;
|
|
946
|
+
borderError: string;
|
|
947
|
+
borderHoverError: string;
|
|
948
|
+
borderActiveError: string;
|
|
949
|
+
borderFocusError: string;
|
|
950
|
+
boxShadowHoverError: string;
|
|
951
|
+
boxShadowActiveError: string;
|
|
952
|
+
boxShadowFocusError: string;
|
|
953
|
+
colorActiveError: string;
|
|
954
|
+
caretColorError: string;
|
|
955
|
+
clearColor: string;
|
|
956
|
+
clearColorHover: string;
|
|
957
|
+
clearColorPressed: string;
|
|
958
|
+
paddingSingle: string;
|
|
959
|
+
paddingMultiple: string;
|
|
960
|
+
clearSize: string;
|
|
961
|
+
arrowSize: string;
|
|
962
|
+
}>;
|
|
963
|
+
DataTable: Partial<{
|
|
964
|
+
actionDividerColor: string;
|
|
965
|
+
lineHeight: string;
|
|
966
|
+
borderRadius: string;
|
|
967
|
+
fontSizeSmall: string;
|
|
968
|
+
fontSizeMedium: string;
|
|
969
|
+
fontSizeLarge: string;
|
|
970
|
+
borderColor: string;
|
|
971
|
+
tdColorHover: string;
|
|
972
|
+
tdColorSorting: string;
|
|
973
|
+
tdColorStriped: string;
|
|
974
|
+
thColor: string;
|
|
975
|
+
thColorHover: string;
|
|
976
|
+
thColorSorting: string;
|
|
977
|
+
tdColor: string;
|
|
978
|
+
tdTextColor: string;
|
|
979
|
+
thTextColor: string;
|
|
980
|
+
thFontWeight: string;
|
|
981
|
+
thButtonColorHover: string;
|
|
982
|
+
thIconColor: string;
|
|
983
|
+
thIconColorActive: string;
|
|
984
|
+
borderColorModal: string;
|
|
985
|
+
tdColorHoverModal: string;
|
|
986
|
+
tdColorSortingModal: string;
|
|
987
|
+
tdColorStripedModal: string;
|
|
988
|
+
thColorModal: string;
|
|
989
|
+
thColorHoverModal: string;
|
|
990
|
+
thColorSortingModal: string;
|
|
991
|
+
tdColorModal: string;
|
|
992
|
+
borderColorPopover: string;
|
|
993
|
+
tdColorHoverPopover: string;
|
|
994
|
+
tdColorSortingPopover: string;
|
|
995
|
+
tdColorStripedPopover: string;
|
|
996
|
+
thColorPopover: string;
|
|
997
|
+
thColorHoverPopover: string;
|
|
998
|
+
thColorSortingPopover: string;
|
|
999
|
+
tdColorPopover: string;
|
|
1000
|
+
boxShadowBefore: string;
|
|
1001
|
+
boxShadowAfter: string;
|
|
1002
|
+
loadingColor: string;
|
|
1003
|
+
loadingSize: string;
|
|
1004
|
+
opacityLoading: string;
|
|
1005
|
+
thPaddingSmall: string;
|
|
1006
|
+
thPaddingMedium: string;
|
|
1007
|
+
thPaddingLarge: string;
|
|
1008
|
+
tdPaddingSmall: string;
|
|
1009
|
+
tdPaddingMedium: string;
|
|
1010
|
+
tdPaddingLarge: string;
|
|
1011
|
+
sorterSize: string;
|
|
1012
|
+
resizableContainerSize: string;
|
|
1013
|
+
resizableSize: string;
|
|
1014
|
+
filterSize: string;
|
|
1015
|
+
paginationMargin: string;
|
|
1016
|
+
emptyPadding: string;
|
|
1017
|
+
actionPadding: string;
|
|
1018
|
+
actionButtonMargin: string;
|
|
1019
|
+
} & Partial<{
|
|
1020
|
+
actionDividerColor: string;
|
|
1021
|
+
lineHeight: string;
|
|
1022
|
+
borderRadius: string;
|
|
1023
|
+
fontSizeSmall: string;
|
|
1024
|
+
fontSizeMedium: string;
|
|
1025
|
+
fontSizeLarge: string;
|
|
1026
|
+
borderColor: string;
|
|
1027
|
+
tdColorHover: string;
|
|
1028
|
+
tdColorSorting: string;
|
|
1029
|
+
tdColorStriped: string;
|
|
1030
|
+
thColor: string;
|
|
1031
|
+
thColorHover: string;
|
|
1032
|
+
thColorSorting: string;
|
|
1033
|
+
tdColor: string;
|
|
1034
|
+
tdTextColor: string;
|
|
1035
|
+
thTextColor: string;
|
|
1036
|
+
thFontWeight: string;
|
|
1037
|
+
thButtonColorHover: string;
|
|
1038
|
+
thIconColor: string;
|
|
1039
|
+
thIconColorActive: string;
|
|
1040
|
+
borderColorModal: string;
|
|
1041
|
+
tdColorHoverModal: string;
|
|
1042
|
+
tdColorSortingModal: string;
|
|
1043
|
+
tdColorStripedModal: string;
|
|
1044
|
+
thColorModal: string;
|
|
1045
|
+
thColorHoverModal: string;
|
|
1046
|
+
thColorSortingModal: string;
|
|
1047
|
+
tdColorModal: string;
|
|
1048
|
+
borderColorPopover: string;
|
|
1049
|
+
tdColorHoverPopover: string;
|
|
1050
|
+
tdColorSortingPopover: string;
|
|
1051
|
+
tdColorStripedPopover: string;
|
|
1052
|
+
thColorPopover: string;
|
|
1053
|
+
thColorHoverPopover: string;
|
|
1054
|
+
thColorSortingPopover: string;
|
|
1055
|
+
tdColorPopover: string;
|
|
1056
|
+
boxShadowBefore: string;
|
|
1057
|
+
boxShadowAfter: string;
|
|
1058
|
+
loadingColor: string;
|
|
1059
|
+
loadingSize: string;
|
|
1060
|
+
opacityLoading: string;
|
|
1061
|
+
thPaddingSmall: string;
|
|
1062
|
+
thPaddingMedium: string;
|
|
1063
|
+
thPaddingLarge: string;
|
|
1064
|
+
tdPaddingSmall: string;
|
|
1065
|
+
tdPaddingMedium: string;
|
|
1066
|
+
tdPaddingLarge: string;
|
|
1067
|
+
sorterSize: string;
|
|
1068
|
+
resizableContainerSize: string;
|
|
1069
|
+
resizableSize: string;
|
|
1070
|
+
filterSize: string;
|
|
1071
|
+
paginationMargin: string;
|
|
1072
|
+
emptyPadding: string;
|
|
1073
|
+
actionPadding: string;
|
|
1074
|
+
actionButtonMargin: string;
|
|
1075
|
+
}> & {
|
|
1076
|
+
peers?: {
|
|
1077
|
+
Button?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Button", {
|
|
1078
|
+
heightTiny: string;
|
|
1079
|
+
heightSmall: string;
|
|
1080
|
+
heightMedium: string;
|
|
1081
|
+
heightLarge: string;
|
|
1082
|
+
borderRadiusTiny: string;
|
|
1083
|
+
borderRadiusSmall: string;
|
|
1084
|
+
borderRadiusMedium: string;
|
|
1085
|
+
borderRadiusLarge: string;
|
|
1086
|
+
fontSizeTiny: string;
|
|
1087
|
+
fontSizeSmall: string;
|
|
1088
|
+
fontSizeMedium: string;
|
|
1089
|
+
fontSizeLarge: string;
|
|
1090
|
+
opacityDisabled: string;
|
|
1091
|
+
colorOpacitySecondary: string;
|
|
1092
|
+
colorOpacitySecondaryHover: string;
|
|
1093
|
+
colorOpacitySecondaryPressed: string;
|
|
1094
|
+
colorSecondary: string;
|
|
1095
|
+
colorSecondaryHover: string;
|
|
1096
|
+
colorSecondaryPressed: string;
|
|
1097
|
+
colorTertiary: string;
|
|
1098
|
+
colorTertiaryHover: string;
|
|
1099
|
+
colorTertiaryPressed: string;
|
|
1100
|
+
colorQuaternary: string;
|
|
1101
|
+
colorQuaternaryHover: string;
|
|
1102
|
+
colorQuaternaryPressed: string;
|
|
1103
|
+
color: string;
|
|
1104
|
+
colorHover: string;
|
|
1105
|
+
colorPressed: string;
|
|
1106
|
+
colorFocus: string;
|
|
1107
|
+
colorDisabled: string;
|
|
1108
|
+
textColor: string;
|
|
1109
|
+
textColorTertiary: string;
|
|
1110
|
+
textColorHover: string;
|
|
1111
|
+
textColorPressed: string;
|
|
1112
|
+
textColorFocus: string;
|
|
1113
|
+
textColorDisabled: string;
|
|
1114
|
+
textColorText: string;
|
|
1115
|
+
textColorTextHover: string;
|
|
1116
|
+
textColorTextPressed: string;
|
|
1117
|
+
textColorTextFocus: string;
|
|
1118
|
+
textColorTextDisabled: string;
|
|
1119
|
+
textColorGhost: string;
|
|
1120
|
+
textColorGhostHover: string;
|
|
1121
|
+
textColorGhostPressed: string;
|
|
1122
|
+
textColorGhostFocus: string;
|
|
1123
|
+
textColorGhostDisabled: string;
|
|
1124
|
+
border: string;
|
|
1125
|
+
borderHover: string;
|
|
1126
|
+
borderPressed: string;
|
|
1127
|
+
borderFocus: string;
|
|
1128
|
+
borderDisabled: string;
|
|
1129
|
+
rippleColor: string;
|
|
1130
|
+
colorPrimary: string;
|
|
1131
|
+
colorHoverPrimary: string;
|
|
1132
|
+
colorPressedPrimary: string;
|
|
1133
|
+
colorFocusPrimary: string;
|
|
1134
|
+
colorDisabledPrimary: string;
|
|
1135
|
+
textColorPrimary: string;
|
|
1136
|
+
textColorHoverPrimary: string;
|
|
1137
|
+
textColorPressedPrimary: string;
|
|
1138
|
+
textColorFocusPrimary: string;
|
|
1139
|
+
textColorDisabledPrimary: string;
|
|
1140
|
+
textColorTextPrimary: string;
|
|
1141
|
+
textColorTextHoverPrimary: string;
|
|
1142
|
+
textColorTextPressedPrimary: string;
|
|
1143
|
+
textColorTextFocusPrimary: string;
|
|
1144
|
+
textColorTextDisabledPrimary: string;
|
|
1145
|
+
textColorGhostPrimary: string;
|
|
1146
|
+
textColorGhostHoverPrimary: string;
|
|
1147
|
+
textColorGhostPressedPrimary: string;
|
|
1148
|
+
textColorGhostFocusPrimary: string;
|
|
1149
|
+
textColorGhostDisabledPrimary: string;
|
|
1150
|
+
borderPrimary: string;
|
|
1151
|
+
borderHoverPrimary: string;
|
|
1152
|
+
borderPressedPrimary: string;
|
|
1153
|
+
borderFocusPrimary: string;
|
|
1154
|
+
borderDisabledPrimary: string;
|
|
1155
|
+
rippleColorPrimary: string;
|
|
1156
|
+
colorInfo: string;
|
|
1157
|
+
colorHoverInfo: string;
|
|
1158
|
+
colorPressedInfo: string;
|
|
1159
|
+
colorFocusInfo: string;
|
|
1160
|
+
colorDisabledInfo: string;
|
|
1161
|
+
textColorInfo: string;
|
|
1162
|
+
textColorHoverInfo: string;
|
|
1163
|
+
textColorPressedInfo: string;
|
|
1164
|
+
textColorFocusInfo: string;
|
|
1165
|
+
textColorDisabledInfo: string;
|
|
1166
|
+
textColorTextInfo: string;
|
|
1167
|
+
textColorTextHoverInfo: string;
|
|
1168
|
+
textColorTextPressedInfo: string;
|
|
1169
|
+
textColorTextFocusInfo: string;
|
|
1170
|
+
textColorTextDisabledInfo: string;
|
|
1171
|
+
textColorGhostInfo: string;
|
|
1172
|
+
textColorGhostHoverInfo: string;
|
|
1173
|
+
textColorGhostPressedInfo: string;
|
|
1174
|
+
textColorGhostFocusInfo: string;
|
|
1175
|
+
textColorGhostDisabledInfo: string;
|
|
1176
|
+
borderInfo: string;
|
|
1177
|
+
borderHoverInfo: string;
|
|
1178
|
+
borderPressedInfo: string;
|
|
1179
|
+
borderFocusInfo: string;
|
|
1180
|
+
borderDisabledInfo: string;
|
|
1181
|
+
rippleColorInfo: string;
|
|
1182
|
+
colorSuccess: string;
|
|
1183
|
+
colorHoverSuccess: string;
|
|
1184
|
+
colorPressedSuccess: string;
|
|
1185
|
+
colorFocusSuccess: string;
|
|
1186
|
+
colorDisabledSuccess: string;
|
|
1187
|
+
textColorSuccess: string;
|
|
1188
|
+
textColorHoverSuccess: string;
|
|
1189
|
+
textColorPressedSuccess: string;
|
|
1190
|
+
textColorFocusSuccess: string;
|
|
1191
|
+
textColorDisabledSuccess: string;
|
|
1192
|
+
textColorTextSuccess: string;
|
|
1193
|
+
textColorTextHoverSuccess: string;
|
|
1194
|
+
textColorTextPressedSuccess: string;
|
|
1195
|
+
textColorTextFocusSuccess: string;
|
|
1196
|
+
textColorTextDisabledSuccess: string;
|
|
1197
|
+
textColorGhostSuccess: string;
|
|
1198
|
+
textColorGhostHoverSuccess: string;
|
|
1199
|
+
textColorGhostPressedSuccess: string;
|
|
1200
|
+
textColorGhostFocusSuccess: string;
|
|
1201
|
+
textColorGhostDisabledSuccess: string;
|
|
1202
|
+
borderSuccess: string;
|
|
1203
|
+
borderHoverSuccess: string;
|
|
1204
|
+
borderPressedSuccess: string;
|
|
1205
|
+
borderFocusSuccess: string;
|
|
1206
|
+
borderDisabledSuccess: string;
|
|
1207
|
+
rippleColorSuccess: string;
|
|
1208
|
+
colorWarning: string;
|
|
1209
|
+
colorHoverWarning: string;
|
|
1210
|
+
colorPressedWarning: string;
|
|
1211
|
+
colorFocusWarning: string;
|
|
1212
|
+
colorDisabledWarning: string;
|
|
1213
|
+
textColorWarning: string;
|
|
1214
|
+
textColorHoverWarning: string;
|
|
1215
|
+
textColorPressedWarning: string;
|
|
1216
|
+
textColorFocusWarning: string;
|
|
1217
|
+
textColorDisabledWarning: string;
|
|
1218
|
+
textColorTextWarning: string;
|
|
1219
|
+
textColorTextHoverWarning: string;
|
|
1220
|
+
textColorTextPressedWarning: string;
|
|
1221
|
+
textColorTextFocusWarning: string;
|
|
1222
|
+
textColorTextDisabledWarning: string;
|
|
1223
|
+
textColorGhostWarning: string;
|
|
1224
|
+
textColorGhostHoverWarning: string;
|
|
1225
|
+
textColorGhostPressedWarning: string;
|
|
1226
|
+
textColorGhostFocusWarning: string;
|
|
1227
|
+
textColorGhostDisabledWarning: string;
|
|
1228
|
+
borderWarning: string;
|
|
1229
|
+
borderHoverWarning: string;
|
|
1230
|
+
borderPressedWarning: string;
|
|
1231
|
+
borderFocusWarning: string;
|
|
1232
|
+
borderDisabledWarning: string;
|
|
1233
|
+
rippleColorWarning: string;
|
|
1234
|
+
colorError: string;
|
|
1235
|
+
colorHoverError: string;
|
|
1236
|
+
colorPressedError: string;
|
|
1237
|
+
colorFocusError: string;
|
|
1238
|
+
colorDisabledError: string;
|
|
1239
|
+
textColorError: string;
|
|
1240
|
+
textColorHoverError: string;
|
|
1241
|
+
textColorPressedError: string;
|
|
1242
|
+
textColorFocusError: string;
|
|
1243
|
+
textColorDisabledError: string;
|
|
1244
|
+
textColorTextError: string;
|
|
1245
|
+
textColorTextHoverError: string;
|
|
1246
|
+
textColorTextPressedError: string;
|
|
1247
|
+
textColorTextFocusError: string;
|
|
1248
|
+
textColorTextDisabledError: string;
|
|
1249
|
+
textColorGhostError: string;
|
|
1250
|
+
textColorGhostHoverError: string;
|
|
1251
|
+
textColorGhostPressedError: string;
|
|
1252
|
+
textColorGhostFocusError: string;
|
|
1253
|
+
textColorGhostDisabledError: string;
|
|
1254
|
+
borderError: string;
|
|
1255
|
+
borderHoverError: string;
|
|
1256
|
+
borderPressedError: string;
|
|
1257
|
+
borderFocusError: string;
|
|
1258
|
+
borderDisabledError: string;
|
|
1259
|
+
rippleColorError: string;
|
|
1260
|
+
waveOpacity: string;
|
|
1261
|
+
fontWeight: string;
|
|
1262
|
+
fontWeightStrong: string;
|
|
1263
|
+
paddingTiny: string;
|
|
1264
|
+
paddingSmall: string;
|
|
1265
|
+
paddingMedium: string;
|
|
1266
|
+
paddingLarge: string;
|
|
1267
|
+
paddingRoundTiny: string;
|
|
1268
|
+
paddingRoundSmall: string;
|
|
1269
|
+
paddingRoundMedium: string;
|
|
1270
|
+
paddingRoundLarge: string;
|
|
1271
|
+
iconMarginTiny: string;
|
|
1272
|
+
iconMarginSmall: string;
|
|
1273
|
+
iconMarginMedium: string;
|
|
1274
|
+
iconMarginLarge: string;
|
|
1275
|
+
iconSizeTiny: string;
|
|
1276
|
+
iconSizeSmall: string;
|
|
1277
|
+
iconSizeMedium: string;
|
|
1278
|
+
iconSizeLarge: string;
|
|
1279
|
+
rippleDuration: string;
|
|
1280
|
+
}, any>> | undefined;
|
|
1281
|
+
Checkbox?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Checkbox", {
|
|
1282
|
+
labelLineHeight: string;
|
|
1283
|
+
fontSizeSmall: string;
|
|
1284
|
+
fontSizeMedium: string;
|
|
1285
|
+
fontSizeLarge: string;
|
|
1286
|
+
borderRadius: string;
|
|
1287
|
+
color: string;
|
|
1288
|
+
colorChecked: string;
|
|
1289
|
+
colorDisabled: string;
|
|
1290
|
+
colorDisabledChecked: string;
|
|
1291
|
+
colorTableHeader: string;
|
|
1292
|
+
colorTableHeaderModal: string;
|
|
1293
|
+
colorTableHeaderPopover: string;
|
|
1294
|
+
checkMarkColor: string;
|
|
1295
|
+
checkMarkColorDisabled: string;
|
|
1296
|
+
checkMarkColorDisabledChecked: string;
|
|
1297
|
+
border: string;
|
|
1298
|
+
borderDisabled: string;
|
|
1299
|
+
borderDisabledChecked: string;
|
|
1300
|
+
borderChecked: string;
|
|
1301
|
+
borderFocus: string;
|
|
1302
|
+
boxShadowFocus: string;
|
|
1303
|
+
textColor: string;
|
|
1304
|
+
textColorDisabled: string;
|
|
1305
|
+
sizeSmall: string;
|
|
1306
|
+
sizeMedium: string;
|
|
1307
|
+
sizeLarge: string;
|
|
1308
|
+
labelPadding: string;
|
|
1309
|
+
labelFontWeight: string;
|
|
1310
|
+
}, any>> | undefined;
|
|
1311
|
+
Radio?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Radio", {
|
|
1312
|
+
labelLineHeight: string;
|
|
1313
|
+
buttonHeightSmall: string;
|
|
1314
|
+
buttonHeightMedium: string;
|
|
1315
|
+
buttonHeightLarge: string;
|
|
1316
|
+
fontSizeSmall: string;
|
|
1317
|
+
fontSizeMedium: string;
|
|
1318
|
+
fontSizeLarge: string;
|
|
1319
|
+
boxShadow: string;
|
|
1320
|
+
boxShadowActive: string;
|
|
1321
|
+
boxShadowFocus: string;
|
|
1322
|
+
boxShadowHover: string;
|
|
1323
|
+
boxShadowDisabled: string;
|
|
1324
|
+
color: string;
|
|
1325
|
+
colorDisabled: string;
|
|
1326
|
+
colorActive: string;
|
|
1327
|
+
textColor: string;
|
|
1328
|
+
textColorDisabled: string;
|
|
1329
|
+
dotColorActive: string;
|
|
1330
|
+
dotColorDisabled: string;
|
|
1331
|
+
buttonBorderColor: string;
|
|
1332
|
+
buttonBorderColorActive: string;
|
|
1333
|
+
buttonBorderColorHover: string;
|
|
1334
|
+
buttonColor: string;
|
|
1335
|
+
buttonColorActive: string;
|
|
1336
|
+
buttonTextColor: string;
|
|
1337
|
+
buttonTextColorActive: string;
|
|
1338
|
+
buttonTextColorHover: string;
|
|
1339
|
+
opacityDisabled: string;
|
|
1340
|
+
buttonBoxShadowFocus: string;
|
|
1341
|
+
buttonBoxShadowHover: string;
|
|
1342
|
+
buttonBoxShadow: string;
|
|
1343
|
+
buttonBorderRadius: string;
|
|
1344
|
+
radioSizeSmall: string;
|
|
1345
|
+
radioSizeMedium: string;
|
|
1346
|
+
radioSizeLarge: string;
|
|
1347
|
+
labelPadding: string;
|
|
1348
|
+
labelFontWeight: string;
|
|
1349
|
+
}, any>> | undefined;
|
|
1350
|
+
Pagination?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Pagination", {
|
|
1351
|
+
buttonColor: string;
|
|
1352
|
+
buttonColorHover: string;
|
|
1353
|
+
buttonColorPressed: string;
|
|
1354
|
+
buttonBorder: string;
|
|
1355
|
+
buttonBorderHover: string;
|
|
1356
|
+
buttonBorderPressed: string;
|
|
1357
|
+
buttonIconColor: string;
|
|
1358
|
+
buttonIconColorHover: string;
|
|
1359
|
+
buttonIconColorPressed: string;
|
|
1360
|
+
itemTextColor: string;
|
|
1361
|
+
itemTextColorHover: string;
|
|
1362
|
+
itemTextColorPressed: string;
|
|
1363
|
+
itemTextColorActive: string;
|
|
1364
|
+
itemTextColorDisabled: string;
|
|
1365
|
+
itemColor: string;
|
|
1366
|
+
itemColorHover: string;
|
|
1367
|
+
itemColorPressed: string;
|
|
1368
|
+
itemColorActive: string;
|
|
1369
|
+
itemColorActiveHover: string;
|
|
1370
|
+
itemColorDisabled: string;
|
|
1371
|
+
itemBorder: string;
|
|
1372
|
+
itemBorderHover: string;
|
|
1373
|
+
itemBorderPressed: string;
|
|
1374
|
+
itemBorderActive: string;
|
|
1375
|
+
itemBorderDisabled: string;
|
|
1376
|
+
itemBorderRadius: string;
|
|
1377
|
+
itemSizeSmall: string;
|
|
1378
|
+
itemSizeMedium: string;
|
|
1379
|
+
itemSizeLarge: string;
|
|
1380
|
+
itemFontSizeSmall: string;
|
|
1381
|
+
itemFontSizeMedium: string;
|
|
1382
|
+
itemFontSizeLarge: string;
|
|
1383
|
+
jumperFontSizeSmall: string;
|
|
1384
|
+
jumperFontSizeMedium: string;
|
|
1385
|
+
jumperFontSizeLarge: string;
|
|
1386
|
+
jumperTextColor: string;
|
|
1387
|
+
jumperTextColorDisabled: string;
|
|
1388
|
+
itemPaddingSmall: string;
|
|
1389
|
+
itemMarginSmall: string;
|
|
1390
|
+
itemMarginSmallRtl: string;
|
|
1391
|
+
itemPaddingMedium: string;
|
|
1392
|
+
itemMarginMedium: string;
|
|
1393
|
+
itemMarginMediumRtl: string;
|
|
1394
|
+
itemPaddingLarge: string;
|
|
1395
|
+
itemMarginLarge: string;
|
|
1396
|
+
itemMarginLargeRtl: string;
|
|
1397
|
+
buttonIconSizeSmall: string;
|
|
1398
|
+
buttonIconSizeMedium: string;
|
|
1399
|
+
buttonIconSizeLarge: string;
|
|
1400
|
+
inputWidthSmall: string;
|
|
1401
|
+
selectWidthSmall: string;
|
|
1402
|
+
inputMarginSmall: string;
|
|
1403
|
+
inputMarginSmallRtl: string;
|
|
1404
|
+
selectMarginSmall: string;
|
|
1405
|
+
prefixMarginSmall: string;
|
|
1406
|
+
suffixMarginSmall: string;
|
|
1407
|
+
inputWidthMedium: string;
|
|
1408
|
+
selectWidthMedium: string;
|
|
1409
|
+
inputMarginMedium: string;
|
|
1410
|
+
inputMarginMediumRtl: string;
|
|
1411
|
+
selectMarginMedium: string;
|
|
1412
|
+
prefixMarginMedium: string;
|
|
1413
|
+
suffixMarginMedium: string;
|
|
1414
|
+
inputWidthLarge: string;
|
|
1415
|
+
selectWidthLarge: string;
|
|
1416
|
+
inputMarginLarge: string;
|
|
1417
|
+
inputMarginLargeRtl: string;
|
|
1418
|
+
selectMarginLarge: string;
|
|
1419
|
+
prefixMarginLarge: string;
|
|
1420
|
+
suffixMarginLarge: string;
|
|
1421
|
+
}, {
|
|
1422
|
+
Select: import('naive-ui/es/_mixins').Theme<"Select", {
|
|
1423
|
+
menuBoxShadow: string;
|
|
1424
|
+
}, {
|
|
1425
|
+
InternalSelection: import('naive-ui/es/_mixins').Theme<"InternalSelection", {
|
|
1426
|
+
fontSizeTiny: string;
|
|
1427
|
+
fontSizeSmall: string;
|
|
1428
|
+
fontSizeMedium: string;
|
|
1429
|
+
fontSizeLarge: string;
|
|
1430
|
+
heightTiny: string;
|
|
1431
|
+
heightSmall: string;
|
|
1432
|
+
heightMedium: string;
|
|
1433
|
+
heightLarge: string;
|
|
1434
|
+
borderRadius: string;
|
|
1435
|
+
textColor: string;
|
|
1436
|
+
textColorDisabled: string;
|
|
1437
|
+
placeholderColor: string;
|
|
1438
|
+
placeholderColorDisabled: string;
|
|
1439
|
+
color: string;
|
|
1440
|
+
colorDisabled: string;
|
|
1441
|
+
colorActive: string;
|
|
1442
|
+
border: string;
|
|
1443
|
+
borderHover: string;
|
|
1444
|
+
borderActive: string;
|
|
1445
|
+
borderFocus: string;
|
|
1446
|
+
boxShadowHover: string;
|
|
1447
|
+
boxShadowActive: string;
|
|
1448
|
+
boxShadowFocus: string;
|
|
1449
|
+
caretColor: string;
|
|
1450
|
+
arrowColor: string;
|
|
1451
|
+
arrowColorDisabled: string;
|
|
1452
|
+
loadingColor: string;
|
|
1453
|
+
borderWarning: string;
|
|
1454
|
+
borderHoverWarning: string;
|
|
1455
|
+
borderActiveWarning: string;
|
|
1456
|
+
borderFocusWarning: string;
|
|
1457
|
+
boxShadowHoverWarning: string;
|
|
1458
|
+
boxShadowActiveWarning: string;
|
|
1459
|
+
boxShadowFocusWarning: string;
|
|
1460
|
+
colorActiveWarning: string;
|
|
1461
|
+
caretColorWarning: string;
|
|
1462
|
+
borderError: string;
|
|
1463
|
+
borderHoverError: string;
|
|
1464
|
+
borderActiveError: string;
|
|
1465
|
+
borderFocusError: string;
|
|
1466
|
+
boxShadowHoverError: string;
|
|
1467
|
+
boxShadowActiveError: string;
|
|
1468
|
+
boxShadowFocusError: string;
|
|
1469
|
+
colorActiveError: string;
|
|
1470
|
+
caretColorError: string;
|
|
1471
|
+
clearColor: string;
|
|
1472
|
+
clearColorHover: string;
|
|
1473
|
+
clearColorPressed: string;
|
|
1474
|
+
paddingSingle: string;
|
|
1475
|
+
paddingMultiple: string;
|
|
1476
|
+
clearSize: string;
|
|
1477
|
+
arrowSize: string;
|
|
1478
|
+
}, {
|
|
1479
|
+
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1480
|
+
fontSize: string;
|
|
1481
|
+
borderRadius: string;
|
|
1482
|
+
color: string;
|
|
1483
|
+
dividerColor: string;
|
|
1484
|
+
textColor: string;
|
|
1485
|
+
boxShadow: string;
|
|
1486
|
+
space: string;
|
|
1487
|
+
spaceArrow: string;
|
|
1488
|
+
arrowOffset: string;
|
|
1489
|
+
arrowOffsetVertical: string;
|
|
1490
|
+
arrowHeight: string;
|
|
1491
|
+
padding: string;
|
|
1492
|
+
}, any>;
|
|
1493
|
+
}>;
|
|
1494
|
+
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
1495
|
+
optionFontSizeSmall: string;
|
|
1496
|
+
optionFontSizeMedium: string;
|
|
1497
|
+
optionFontSizeLarge: string;
|
|
1498
|
+
optionFontSizeHuge: string;
|
|
1499
|
+
optionHeightSmall: string;
|
|
1500
|
+
optionHeightMedium: string;
|
|
1501
|
+
optionHeightLarge: string;
|
|
1502
|
+
optionHeightHuge: string;
|
|
1503
|
+
borderRadius: string;
|
|
1504
|
+
color: string;
|
|
1505
|
+
groupHeaderTextColor: string;
|
|
1506
|
+
actionDividerColor: string;
|
|
1507
|
+
optionTextColor: string;
|
|
1508
|
+
optionTextColorPressed: string;
|
|
1509
|
+
optionTextColorDisabled: string;
|
|
1510
|
+
optionTextColorActive: string;
|
|
1511
|
+
optionOpacityDisabled: string;
|
|
1512
|
+
optionCheckColor: string;
|
|
1513
|
+
optionColorPending: string;
|
|
1514
|
+
optionColorActive: string;
|
|
1515
|
+
optionColorActivePending: string;
|
|
1516
|
+
actionTextColor: string;
|
|
1517
|
+
loadingColor: string;
|
|
1518
|
+
height: string;
|
|
1519
|
+
paddingSmall: string;
|
|
1520
|
+
paddingMedium: string;
|
|
1521
|
+
paddingLarge: string;
|
|
1522
|
+
paddingHuge: string;
|
|
1523
|
+
optionPaddingSmall: string;
|
|
1524
|
+
optionPaddingMedium: string;
|
|
1525
|
+
optionPaddingLarge: string;
|
|
1526
|
+
optionPaddingHuge: string;
|
|
1527
|
+
loadingSize: string;
|
|
1528
|
+
}, {
|
|
1529
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1530
|
+
height: string;
|
|
1531
|
+
width: string;
|
|
1532
|
+
borderRadius: string;
|
|
1533
|
+
color: string;
|
|
1534
|
+
colorHover: string;
|
|
1535
|
+
railInsetHorizontal: string;
|
|
1536
|
+
railInsetVertical: string;
|
|
1537
|
+
railColor: string;
|
|
1538
|
+
}, any>;
|
|
1539
|
+
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1540
|
+
fontSizeSmall: string;
|
|
1541
|
+
fontSizeMedium: string;
|
|
1542
|
+
fontSizeLarge: string;
|
|
1543
|
+
fontSizeHuge: string;
|
|
1544
|
+
textColor: string;
|
|
1545
|
+
iconColor: string;
|
|
1546
|
+
extraTextColor: string;
|
|
1547
|
+
iconSizeSmall: string;
|
|
1548
|
+
iconSizeMedium: string;
|
|
1549
|
+
iconSizeLarge: string;
|
|
1550
|
+
iconSizeHuge: string;
|
|
1551
|
+
}, any>;
|
|
1552
|
+
}>;
|
|
1553
|
+
}>;
|
|
1554
|
+
Input: import('naive-ui/es/_mixins').Theme<"Input", {
|
|
1555
|
+
countTextColorDisabled: string;
|
|
1556
|
+
countTextColor: string;
|
|
1557
|
+
heightTiny: string;
|
|
1558
|
+
heightSmall: string;
|
|
1559
|
+
heightMedium: string;
|
|
1560
|
+
heightLarge: string;
|
|
1561
|
+
fontSizeTiny: string;
|
|
1562
|
+
fontSizeSmall: string;
|
|
1563
|
+
fontSizeMedium: string;
|
|
1564
|
+
fontSizeLarge: string;
|
|
1565
|
+
lineHeight: string;
|
|
1566
|
+
lineHeightTextarea: string;
|
|
1567
|
+
borderRadius: string;
|
|
1568
|
+
iconSize: string;
|
|
1569
|
+
groupLabelColor: string;
|
|
1570
|
+
groupLabelTextColor: string;
|
|
1571
|
+
textColor: string;
|
|
1572
|
+
textColorDisabled: string;
|
|
1573
|
+
textDecorationColor: string;
|
|
1574
|
+
caretColor: string;
|
|
1575
|
+
placeholderColor: string;
|
|
1576
|
+
placeholderColorDisabled: string;
|
|
1577
|
+
color: string;
|
|
1578
|
+
colorDisabled: string;
|
|
1579
|
+
colorFocus: string;
|
|
1580
|
+
groupLabelBorder: string;
|
|
1581
|
+
border: string;
|
|
1582
|
+
borderHover: string;
|
|
1583
|
+
borderDisabled: string;
|
|
1584
|
+
borderFocus: string;
|
|
1585
|
+
boxShadowFocus: string;
|
|
1586
|
+
loadingColor: string;
|
|
1587
|
+
loadingColorWarning: string;
|
|
1588
|
+
borderWarning: string;
|
|
1589
|
+
borderHoverWarning: string;
|
|
1590
|
+
colorFocusWarning: string;
|
|
1591
|
+
borderFocusWarning: string;
|
|
1592
|
+
boxShadowFocusWarning: string;
|
|
1593
|
+
caretColorWarning: string;
|
|
1594
|
+
loadingColorError: string;
|
|
1595
|
+
borderError: string;
|
|
1596
|
+
borderHoverError: string;
|
|
1597
|
+
colorFocusError: string;
|
|
1598
|
+
borderFocusError: string;
|
|
1599
|
+
boxShadowFocusError: string;
|
|
1600
|
+
caretColorError: string;
|
|
1601
|
+
clearColor: string;
|
|
1602
|
+
clearColorHover: string;
|
|
1603
|
+
clearColorPressed: string;
|
|
1604
|
+
iconColor: string;
|
|
1605
|
+
iconColorDisabled: string;
|
|
1606
|
+
iconColorHover: string;
|
|
1607
|
+
iconColorPressed: string;
|
|
1608
|
+
suffixTextColor: string;
|
|
1609
|
+
paddingTiny: string;
|
|
1610
|
+
paddingSmall: string;
|
|
1611
|
+
paddingMedium: string;
|
|
1612
|
+
paddingLarge: string;
|
|
1613
|
+
clearSize: string;
|
|
1614
|
+
}, any>;
|
|
1615
|
+
Popselect: import('naive-ui/es/_mixins').Theme<"Popselect", {
|
|
1616
|
+
menuBoxShadow: string;
|
|
1617
|
+
}, {
|
|
1618
|
+
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1619
|
+
fontSize: string;
|
|
1620
|
+
borderRadius: string;
|
|
1621
|
+
color: string;
|
|
1622
|
+
dividerColor: string;
|
|
1623
|
+
textColor: string;
|
|
1624
|
+
boxShadow: string;
|
|
1625
|
+
space: string;
|
|
1626
|
+
spaceArrow: string;
|
|
1627
|
+
arrowOffset: string;
|
|
1628
|
+
arrowOffsetVertical: string;
|
|
1629
|
+
arrowHeight: string;
|
|
1630
|
+
padding: string;
|
|
1631
|
+
}, any>;
|
|
1632
|
+
InternalSelectMenu: import('naive-ui/es/_mixins').Theme<"InternalSelectMenu", {
|
|
1633
|
+
optionFontSizeSmall: string;
|
|
1634
|
+
optionFontSizeMedium: string;
|
|
1635
|
+
optionFontSizeLarge: string;
|
|
1636
|
+
optionFontSizeHuge: string;
|
|
1637
|
+
optionHeightSmall: string;
|
|
1638
|
+
optionHeightMedium: string;
|
|
1639
|
+
optionHeightLarge: string;
|
|
1640
|
+
optionHeightHuge: string;
|
|
1641
|
+
borderRadius: string;
|
|
1642
|
+
color: string;
|
|
1643
|
+
groupHeaderTextColor: string;
|
|
1644
|
+
actionDividerColor: string;
|
|
1645
|
+
optionTextColor: string;
|
|
1646
|
+
optionTextColorPressed: string;
|
|
1647
|
+
optionTextColorDisabled: string;
|
|
1648
|
+
optionTextColorActive: string;
|
|
1649
|
+
optionOpacityDisabled: string;
|
|
1650
|
+
optionCheckColor: string;
|
|
1651
|
+
optionColorPending: string;
|
|
1652
|
+
optionColorActive: string;
|
|
1653
|
+
optionColorActivePending: string;
|
|
1654
|
+
actionTextColor: string;
|
|
1655
|
+
loadingColor: string;
|
|
1656
|
+
height: string;
|
|
1657
|
+
paddingSmall: string;
|
|
1658
|
+
paddingMedium: string;
|
|
1659
|
+
paddingLarge: string;
|
|
1660
|
+
paddingHuge: string;
|
|
1661
|
+
optionPaddingSmall: string;
|
|
1662
|
+
optionPaddingMedium: string;
|
|
1663
|
+
optionPaddingLarge: string;
|
|
1664
|
+
optionPaddingHuge: string;
|
|
1665
|
+
loadingSize: string;
|
|
1666
|
+
}, {
|
|
1667
|
+
Scrollbar: import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1668
|
+
height: string;
|
|
1669
|
+
width: string;
|
|
1670
|
+
borderRadius: string;
|
|
1671
|
+
color: string;
|
|
1672
|
+
colorHover: string;
|
|
1673
|
+
railInsetHorizontal: string;
|
|
1674
|
+
railInsetVertical: string;
|
|
1675
|
+
railColor: string;
|
|
1676
|
+
}, any>;
|
|
1677
|
+
Empty: import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1678
|
+
fontSizeSmall: string;
|
|
1679
|
+
fontSizeMedium: string;
|
|
1680
|
+
fontSizeLarge: string;
|
|
1681
|
+
fontSizeHuge: string;
|
|
1682
|
+
textColor: string;
|
|
1683
|
+
iconColor: string;
|
|
1684
|
+
extraTextColor: string;
|
|
1685
|
+
iconSizeSmall: string;
|
|
1686
|
+
iconSizeMedium: string;
|
|
1687
|
+
iconSizeLarge: string;
|
|
1688
|
+
iconSizeHuge: string;
|
|
1689
|
+
}, any>;
|
|
1690
|
+
}>;
|
|
1691
|
+
}>;
|
|
1692
|
+
}>> | undefined;
|
|
1693
|
+
Scrollbar?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Scrollbar", {
|
|
1694
|
+
height: string;
|
|
1695
|
+
width: string;
|
|
1696
|
+
borderRadius: string;
|
|
1697
|
+
color: string;
|
|
1698
|
+
colorHover: string;
|
|
1699
|
+
railInsetHorizontal: string;
|
|
1700
|
+
railInsetVertical: string;
|
|
1701
|
+
railColor: string;
|
|
1702
|
+
}, any>> | undefined;
|
|
1703
|
+
Empty?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Empty", {
|
|
1704
|
+
fontSizeSmall: string;
|
|
1705
|
+
fontSizeMedium: string;
|
|
1706
|
+
fontSizeLarge: string;
|
|
1707
|
+
fontSizeHuge: string;
|
|
1708
|
+
textColor: string;
|
|
1709
|
+
iconColor: string;
|
|
1710
|
+
extraTextColor: string;
|
|
1711
|
+
iconSizeSmall: string;
|
|
1712
|
+
iconSizeMedium: string;
|
|
1713
|
+
iconSizeLarge: string;
|
|
1714
|
+
iconSizeHuge: string;
|
|
1715
|
+
}, any>> | undefined;
|
|
1716
|
+
Popover?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1717
|
+
fontSize: string;
|
|
1718
|
+
borderRadius: string;
|
|
1719
|
+
color: string;
|
|
1720
|
+
dividerColor: string;
|
|
1721
|
+
textColor: string;
|
|
1722
|
+
boxShadow: string;
|
|
1723
|
+
space: string;
|
|
1724
|
+
spaceArrow: string;
|
|
1725
|
+
arrowOffset: string;
|
|
1726
|
+
arrowOffsetVertical: string;
|
|
1727
|
+
arrowHeight: string;
|
|
1728
|
+
padding: string;
|
|
1729
|
+
}, any>> | undefined;
|
|
1730
|
+
Ellipsis?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Ellipsis", unknown, {
|
|
1731
|
+
Tooltip: import('naive-ui/es/_mixins').Theme<"Tooltip", {
|
|
1732
|
+
borderRadius: string;
|
|
1733
|
+
boxShadow: string;
|
|
1734
|
+
color: string;
|
|
1735
|
+
textColor: string;
|
|
1736
|
+
padding: string;
|
|
1737
|
+
}, {
|
|
1738
|
+
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1739
|
+
fontSize: string;
|
|
1740
|
+
borderRadius: string;
|
|
1741
|
+
color: string;
|
|
1742
|
+
dividerColor: string;
|
|
1743
|
+
textColor: string;
|
|
1744
|
+
boxShadow: string;
|
|
1745
|
+
space: string;
|
|
1746
|
+
spaceArrow: string;
|
|
1747
|
+
arrowOffset: string;
|
|
1748
|
+
arrowOffsetVertical: string;
|
|
1749
|
+
arrowHeight: string;
|
|
1750
|
+
padding: string;
|
|
1751
|
+
}, any>;
|
|
1752
|
+
}>;
|
|
1753
|
+
}>> | undefined;
|
|
1754
|
+
Dropdown?: import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Dropdown", {
|
|
1755
|
+
optionHeightSmall: string;
|
|
1756
|
+
optionHeightMedium: string;
|
|
1757
|
+
optionHeightLarge: string;
|
|
1758
|
+
optionHeightHuge: string;
|
|
1759
|
+
borderRadius: string;
|
|
1760
|
+
fontSizeSmall: string;
|
|
1761
|
+
fontSizeMedium: string;
|
|
1762
|
+
fontSizeLarge: string;
|
|
1763
|
+
fontSizeHuge: string;
|
|
1764
|
+
optionTextColor: string;
|
|
1765
|
+
optionTextColorHover: string;
|
|
1766
|
+
optionTextColorActive: string;
|
|
1767
|
+
optionTextColorChildActive: string;
|
|
1768
|
+
color: string;
|
|
1769
|
+
dividerColor: string;
|
|
1770
|
+
suffixColor: string;
|
|
1771
|
+
prefixColor: string;
|
|
1772
|
+
optionColorHover: string;
|
|
1773
|
+
optionColorActive: string;
|
|
1774
|
+
groupHeaderTextColor: string;
|
|
1775
|
+
optionTextColorInverted: string;
|
|
1776
|
+
optionTextColorHoverInverted: string;
|
|
1777
|
+
optionTextColorActiveInverted: string;
|
|
1778
|
+
optionTextColorChildActiveInverted: string;
|
|
1779
|
+
colorInverted: string;
|
|
1780
|
+
dividerColorInverted: string;
|
|
1781
|
+
suffixColorInverted: string;
|
|
1782
|
+
prefixColorInverted: string;
|
|
1783
|
+
optionColorHoverInverted: string;
|
|
1784
|
+
optionColorActiveInverted: string;
|
|
1785
|
+
groupHeaderTextColorInverted: string;
|
|
1786
|
+
optionOpacityDisabled: string;
|
|
1787
|
+
padding: string;
|
|
1788
|
+
optionIconSizeSmall: string;
|
|
1789
|
+
optionIconSizeMedium: string;
|
|
1790
|
+
optionIconSizeLarge: string;
|
|
1791
|
+
optionIconSizeHuge: string;
|
|
1792
|
+
optionSuffixWidthSmall: string;
|
|
1793
|
+
optionSuffixWidthMedium: string;
|
|
1794
|
+
optionSuffixWidthLarge: string;
|
|
1795
|
+
optionSuffixWidthHuge: string;
|
|
1796
|
+
optionIconSuffixWidthSmall: string;
|
|
1797
|
+
optionIconSuffixWidthMedium: string;
|
|
1798
|
+
optionIconSuffixWidthLarge: string;
|
|
1799
|
+
optionIconSuffixWidthHuge: string;
|
|
1800
|
+
optionPrefixWidthSmall: string;
|
|
1801
|
+
optionPrefixWidthMedium: string;
|
|
1802
|
+
optionPrefixWidthLarge: string;
|
|
1803
|
+
optionPrefixWidthHuge: string;
|
|
1804
|
+
optionIconPrefixWidthSmall: string;
|
|
1805
|
+
optionIconPrefixWidthMedium: string;
|
|
1806
|
+
optionIconPrefixWidthLarge: string;
|
|
1807
|
+
optionIconPrefixWidthHuge: string;
|
|
1808
|
+
}, {
|
|
1809
|
+
Popover: import('naive-ui/es/_mixins').Theme<"Popover", {
|
|
1810
|
+
fontSize: string;
|
|
1811
|
+
borderRadius: string;
|
|
1812
|
+
color: string;
|
|
1813
|
+
dividerColor: string;
|
|
1814
|
+
textColor: string;
|
|
1815
|
+
boxShadow: string;
|
|
1816
|
+
space: string;
|
|
1817
|
+
spaceArrow: string;
|
|
1818
|
+
arrowOffset: string;
|
|
1819
|
+
arrowOffsetVertical: string;
|
|
1820
|
+
arrowHeight: string;
|
|
1821
|
+
padding: string;
|
|
1822
|
+
}, any>;
|
|
1823
|
+
}>> | undefined;
|
|
1824
|
+
} | undefined;
|
|
1825
|
+
} & {
|
|
1826
|
+
common?: Partial<ThemeCommonVars>;
|
|
1827
|
+
}>;
|
|
1828
|
+
Layout: Partial<{
|
|
1829
|
+
textColor: string;
|
|
1830
|
+
textColorInverted: string;
|
|
1831
|
+
color: string;
|
|
1832
|
+
colorEmbedded: string;
|
|
1833
|
+
headerColor: string;
|
|
1834
|
+
headerColorInverted: string;
|
|
1835
|
+
footerColor: string;
|
|
1836
|
+
footerColorInverted: string;
|
|
1837
|
+
headerBorderColor: string;
|
|
1838
|
+
headerBorderColorInverted: string;
|
|
1839
|
+
footerBorderColor: string;
|
|
1840
|
+
footerBorderColorInverted: string;
|
|
1841
|
+
siderBorderColor: string;
|
|
1842
|
+
siderBorderColorInverted: string;
|
|
1843
|
+
siderColor: string;
|
|
1844
|
+
siderColorInverted: string;
|
|
1845
|
+
siderToggleButtonBorder: string;
|
|
1846
|
+
siderToggleButtonColor: string;
|
|
1847
|
+
siderToggleButtonIconColor: string;
|
|
1848
|
+
siderToggleButtonIconColorInverted: string;
|
|
1849
|
+
siderToggleBarColor: string;
|
|
1850
|
+
siderToggleBarColorHover: string;
|
|
1851
|
+
__invertScrollbar: string;
|
|
1852
|
+
}>;
|
|
1853
|
+
Collapse: Partial<{
|
|
1854
|
+
titleFontSize: string;
|
|
1855
|
+
titleFontWeight: string;
|
|
1856
|
+
dividerColor: string;
|
|
1857
|
+
titleTextColor: string;
|
|
1858
|
+
titleTextColorDisabled: string;
|
|
1859
|
+
fontSize: string;
|
|
1860
|
+
textColor: string;
|
|
1861
|
+
arrowColor: string;
|
|
1862
|
+
arrowColorDisabled: string;
|
|
1863
|
+
itemMargin: string;
|
|
1864
|
+
titlePadding: string;
|
|
1865
|
+
}>;
|
|
1866
|
+
Divider: Partial<{
|
|
1867
|
+
textColor: string;
|
|
1868
|
+
color: string;
|
|
1869
|
+
fontWeight: string;
|
|
1870
|
+
}>;
|
|
1871
|
+
Icon: Partial<{
|
|
1872
|
+
color: string;
|
|
1873
|
+
opacity1Depth: string;
|
|
1874
|
+
opacity2Depth: string;
|
|
1875
|
+
opacity3Depth: string;
|
|
1876
|
+
opacity4Depth: string;
|
|
1877
|
+
opacity5Depth: string;
|
|
1878
|
+
}>;
|
|
1879
|
+
IconWrapper: Partial<{
|
|
1880
|
+
color: string;
|
|
1881
|
+
iconColor: string;
|
|
1882
|
+
}>;
|
|
1883
|
+
PageHeader: Partial<{
|
|
1884
|
+
titleFontWeight: string;
|
|
1885
|
+
fontSize: string;
|
|
1886
|
+
titleTextColor: string;
|
|
1887
|
+
backColor: string;
|
|
1888
|
+
backColorHover: string;
|
|
1889
|
+
backColorPressed: string;
|
|
1890
|
+
subtitleTextColor: string;
|
|
1891
|
+
titleFontSize: string;
|
|
1892
|
+
backSize: string;
|
|
1893
|
+
}>;
|
|
1894
|
+
Typography: Partial<{
|
|
1895
|
+
aTextColor: string;
|
|
1896
|
+
blockquoteTextColor: string;
|
|
1897
|
+
blockquotePrefixColor: string;
|
|
1898
|
+
blockquoteLineHeight: string;
|
|
1899
|
+
blockquoteFontSize: string;
|
|
1900
|
+
codeBorderRadius: string;
|
|
1901
|
+
liTextColor: string;
|
|
1902
|
+
liLineHeight: string;
|
|
1903
|
+
liFontSize: string;
|
|
1904
|
+
hrColor: string;
|
|
1905
|
+
headerFontWeight: string;
|
|
1906
|
+
headerTextColor: string;
|
|
1907
|
+
pTextColor: string;
|
|
1908
|
+
pTextColor1Depth: string;
|
|
1909
|
+
pTextColor2Depth: string;
|
|
1910
|
+
pTextColor3Depth: string;
|
|
1911
|
+
pLineHeight: string;
|
|
1912
|
+
pFontSize: string;
|
|
1913
|
+
headerBarColor: string;
|
|
1914
|
+
headerBarColorPrimary: string;
|
|
1915
|
+
headerBarColorInfo: string;
|
|
1916
|
+
headerBarColorError: string;
|
|
1917
|
+
headerBarColorWarning: string;
|
|
1918
|
+
headerBarColorSuccess: string;
|
|
1919
|
+
textColor: string;
|
|
1920
|
+
textColor1Depth: string;
|
|
1921
|
+
textColor2Depth: string;
|
|
1922
|
+
textColor3Depth: string;
|
|
1923
|
+
textColorPrimary: string;
|
|
1924
|
+
textColorInfo: string;
|
|
1925
|
+
textColorSuccess: string;
|
|
1926
|
+
textColorWarning: string;
|
|
1927
|
+
textColorError: string;
|
|
1928
|
+
codeTextColor: string;
|
|
1929
|
+
codeColor: string;
|
|
1930
|
+
codeBorder: string;
|
|
1931
|
+
headerFontSize1: string;
|
|
1932
|
+
headerFontSize2: string;
|
|
1933
|
+
headerFontSize3: string;
|
|
1934
|
+
headerFontSize4: string;
|
|
1935
|
+
headerFontSize5: string;
|
|
1936
|
+
headerFontSize6: string;
|
|
1937
|
+
headerMargin1: string;
|
|
1938
|
+
headerMargin2: string;
|
|
1939
|
+
headerMargin3: string;
|
|
1940
|
+
headerMargin4: string;
|
|
1941
|
+
headerMargin5: string;
|
|
1942
|
+
headerMargin6: string;
|
|
1943
|
+
headerPrefixWidth1: string;
|
|
1944
|
+
headerPrefixWidth2: string;
|
|
1945
|
+
headerPrefixWidth3: string;
|
|
1946
|
+
headerPrefixWidth4: string;
|
|
1947
|
+
headerPrefixWidth5: string;
|
|
1948
|
+
headerPrefixWidth6: string;
|
|
1949
|
+
headerBarWidth1: string;
|
|
1950
|
+
headerBarWidth2: string;
|
|
1951
|
+
headerBarWidth3: string;
|
|
1952
|
+
headerBarWidth4: string;
|
|
1953
|
+
headerBarWidth5: string;
|
|
1954
|
+
headerBarWidth6: string;
|
|
1955
|
+
pMargin: string;
|
|
1956
|
+
liMargin: string;
|
|
1957
|
+
olPadding: string;
|
|
1958
|
+
ulPadding: string;
|
|
1959
|
+
}>;
|
|
1960
|
+
Drawer: Partial<{
|
|
1961
|
+
bodyPadding: string;
|
|
1962
|
+
borderRadius: string;
|
|
1963
|
+
headerPadding: string;
|
|
1964
|
+
footerPadding: string;
|
|
1965
|
+
color: string;
|
|
1966
|
+
textColor: string;
|
|
1967
|
+
titleTextColor: string;
|
|
1968
|
+
titleFontSize: string;
|
|
1969
|
+
titleFontWeight: string;
|
|
1970
|
+
boxShadow: string;
|
|
1971
|
+
lineHeight: string;
|
|
1972
|
+
headerBorderBottom: string;
|
|
1973
|
+
footerBorderTop: string;
|
|
1974
|
+
closeIconColor: string;
|
|
1975
|
+
closeIconColorHover: string;
|
|
1976
|
+
closeIconColorPressed: string;
|
|
1977
|
+
closeSize: string;
|
|
1978
|
+
closeIconSize: string;
|
|
1979
|
+
closeColorHover: string;
|
|
1980
|
+
closeColorPressed: string;
|
|
1981
|
+
closeBorderRadius: string;
|
|
1982
|
+
resizableTriggerColorHover: string;
|
|
1983
|
+
}>;
|
|
1984
|
+
Checkbox: Partial<{
|
|
1985
|
+
labelLineHeight: string;
|
|
1986
|
+
fontSizeSmall: string;
|
|
1987
|
+
fontSizeMedium: string;
|
|
1988
|
+
fontSizeLarge: string;
|
|
1989
|
+
borderRadius: string;
|
|
1990
|
+
color: string;
|
|
1991
|
+
colorChecked: string;
|
|
1992
|
+
colorDisabled: string;
|
|
1993
|
+
colorDisabledChecked: string;
|
|
1994
|
+
colorTableHeader: string;
|
|
1995
|
+
colorTableHeaderModal: string;
|
|
1996
|
+
colorTableHeaderPopover: string;
|
|
1997
|
+
checkMarkColor: string;
|
|
1998
|
+
checkMarkColorDisabled: string;
|
|
1999
|
+
checkMarkColorDisabledChecked: string;
|
|
2000
|
+
border: string;
|
|
2001
|
+
borderDisabled: string;
|
|
2002
|
+
borderDisabledChecked: string;
|
|
2003
|
+
borderChecked: string;
|
|
2004
|
+
borderFocus: string;
|
|
2005
|
+
boxShadowFocus: string;
|
|
2006
|
+
textColor: string;
|
|
2007
|
+
textColorDisabled: string;
|
|
2008
|
+
sizeSmall: string;
|
|
2009
|
+
sizeMedium: string;
|
|
2010
|
+
sizeLarge: string;
|
|
2011
|
+
labelPadding: string;
|
|
2012
|
+
labelFontWeight: string;
|
|
2013
|
+
}>;
|
|
2014
|
+
Breadcrumb: Partial<{
|
|
2015
|
+
fontSize: string;
|
|
2016
|
+
itemLineHeight: string;
|
|
2017
|
+
itemTextColor: string;
|
|
2018
|
+
itemTextColorHover: string;
|
|
2019
|
+
itemTextColorPressed: string;
|
|
2020
|
+
itemTextColorActive: string;
|
|
2021
|
+
itemBorderRadius: string;
|
|
2022
|
+
itemColorHover: string;
|
|
2023
|
+
itemColorPressed: string;
|
|
2024
|
+
separatorColor: string;
|
|
2025
|
+
fontWeightActive: string;
|
|
2026
|
+
}>;
|
|
2027
|
+
Carousel: Partial<{
|
|
2028
|
+
dotSize: string;
|
|
2029
|
+
dotColor: string;
|
|
2030
|
+
dotColorActive: string;
|
|
2031
|
+
dotColorFocus: string;
|
|
2032
|
+
dotLineWidth: string;
|
|
2033
|
+
dotLineWidthActive: string;
|
|
2034
|
+
arrowColor: string;
|
|
2035
|
+
}>;
|
|
2036
|
+
Tooltip: Partial<{
|
|
2037
|
+
borderRadius: string;
|
|
2038
|
+
boxShadow: string;
|
|
2039
|
+
color: string;
|
|
2040
|
+
textColor: string;
|
|
2041
|
+
padding: string;
|
|
2042
|
+
}>;
|
|
2043
|
+
Pagination: Partial<{
|
|
2044
|
+
buttonColor: string;
|
|
2045
|
+
buttonColorHover: string;
|
|
2046
|
+
buttonColorPressed: string;
|
|
2047
|
+
buttonBorder: string;
|
|
2048
|
+
buttonBorderHover: string;
|
|
2049
|
+
buttonBorderPressed: string;
|
|
2050
|
+
buttonIconColor: string;
|
|
2051
|
+
buttonIconColorHover: string;
|
|
2052
|
+
buttonIconColorPressed: string;
|
|
2053
|
+
itemTextColor: string;
|
|
2054
|
+
itemTextColorHover: string;
|
|
2055
|
+
itemTextColorPressed: string;
|
|
2056
|
+
itemTextColorActive: string;
|
|
2057
|
+
itemTextColorDisabled: string;
|
|
2058
|
+
itemColor: string;
|
|
2059
|
+
itemColorHover: string;
|
|
2060
|
+
itemColorPressed: string;
|
|
2061
|
+
itemColorActive: string;
|
|
2062
|
+
itemColorActiveHover: string;
|
|
2063
|
+
itemColorDisabled: string;
|
|
2064
|
+
itemBorder: string;
|
|
2065
|
+
itemBorderHover: string;
|
|
2066
|
+
itemBorderPressed: string;
|
|
2067
|
+
itemBorderActive: string;
|
|
2068
|
+
itemBorderDisabled: string;
|
|
2069
|
+
itemBorderRadius: string;
|
|
2070
|
+
itemSizeSmall: string;
|
|
2071
|
+
itemSizeMedium: string;
|
|
2072
|
+
itemSizeLarge: string;
|
|
2073
|
+
itemFontSizeSmall: string;
|
|
2074
|
+
itemFontSizeMedium: string;
|
|
2075
|
+
itemFontSizeLarge: string;
|
|
2076
|
+
jumperFontSizeSmall: string;
|
|
2077
|
+
jumperFontSizeMedium: string;
|
|
2078
|
+
jumperFontSizeLarge: string;
|
|
2079
|
+
jumperTextColor: string;
|
|
2080
|
+
jumperTextColorDisabled: string;
|
|
2081
|
+
itemPaddingSmall: string;
|
|
2082
|
+
itemMarginSmall: string;
|
|
2083
|
+
itemMarginSmallRtl: string;
|
|
2084
|
+
itemPaddingMedium: string;
|
|
2085
|
+
itemMarginMedium: string;
|
|
2086
|
+
itemMarginMediumRtl: string;
|
|
2087
|
+
itemPaddingLarge: string;
|
|
2088
|
+
itemMarginLarge: string;
|
|
2089
|
+
itemMarginLargeRtl: string;
|
|
2090
|
+
buttonIconSizeSmall: string;
|
|
2091
|
+
buttonIconSizeMedium: string;
|
|
2092
|
+
buttonIconSizeLarge: string;
|
|
2093
|
+
inputWidthSmall: string;
|
|
2094
|
+
selectWidthSmall: string;
|
|
2095
|
+
inputMarginSmall: string;
|
|
2096
|
+
inputMarginSmallRtl: string;
|
|
2097
|
+
selectMarginSmall: string;
|
|
2098
|
+
prefixMarginSmall: string;
|
|
2099
|
+
suffixMarginSmall: string;
|
|
2100
|
+
inputWidthMedium: string;
|
|
2101
|
+
selectWidthMedium: string;
|
|
2102
|
+
inputMarginMedium: string;
|
|
2103
|
+
inputMarginMediumRtl: string;
|
|
2104
|
+
selectMarginMedium: string;
|
|
2105
|
+
prefixMarginMedium: string;
|
|
2106
|
+
suffixMarginMedium: string;
|
|
2107
|
+
inputWidthLarge: string;
|
|
2108
|
+
selectWidthLarge: string;
|
|
2109
|
+
inputMarginLarge: string;
|
|
2110
|
+
inputMarginLargeRtl: string;
|
|
2111
|
+
selectMarginLarge: string;
|
|
2112
|
+
prefixMarginLarge: string;
|
|
2113
|
+
suffixMarginLarge: string;
|
|
2114
|
+
}>;
|
|
2115
|
+
Message: Partial<{
|
|
2116
|
+
closeBorderRadius: string;
|
|
2117
|
+
textColor: string;
|
|
2118
|
+
textColorInfo: string;
|
|
2119
|
+
textColorSuccess: string;
|
|
2120
|
+
textColorError: string;
|
|
2121
|
+
textColorWarning: string;
|
|
2122
|
+
textColorLoading: string;
|
|
2123
|
+
color: string;
|
|
2124
|
+
colorInfo: string;
|
|
2125
|
+
colorSuccess: string;
|
|
2126
|
+
colorError: string;
|
|
2127
|
+
colorWarning: string;
|
|
2128
|
+
colorLoading: string;
|
|
2129
|
+
boxShadow: string;
|
|
2130
|
+
boxShadowInfo: string;
|
|
2131
|
+
boxShadowSuccess: string;
|
|
2132
|
+
boxShadowError: string;
|
|
2133
|
+
boxShadowWarning: string;
|
|
2134
|
+
boxShadowLoading: string;
|
|
2135
|
+
iconColor: string;
|
|
2136
|
+
iconColorInfo: string;
|
|
2137
|
+
iconColorSuccess: string;
|
|
2138
|
+
iconColorWarning: string;
|
|
2139
|
+
iconColorError: string;
|
|
2140
|
+
iconColorLoading: string;
|
|
2141
|
+
closeColorHover: string;
|
|
2142
|
+
closeColorPressed: string;
|
|
2143
|
+
closeIconColor: string;
|
|
2144
|
+
closeIconColorHover: string;
|
|
2145
|
+
closeIconColorPressed: string;
|
|
2146
|
+
closeColorHoverInfo: string;
|
|
2147
|
+
closeColorPressedInfo: string;
|
|
2148
|
+
closeIconColorInfo: string;
|
|
2149
|
+
closeIconColorHoverInfo: string;
|
|
2150
|
+
closeIconColorPressedInfo: string;
|
|
2151
|
+
closeColorHoverSuccess: string;
|
|
2152
|
+
closeColorPressedSuccess: string;
|
|
2153
|
+
closeIconColorSuccess: string;
|
|
2154
|
+
closeIconColorHoverSuccess: string;
|
|
2155
|
+
closeIconColorPressedSuccess: string;
|
|
2156
|
+
closeColorHoverError: string;
|
|
2157
|
+
closeColorPressedError: string;
|
|
2158
|
+
closeIconColorError: string;
|
|
2159
|
+
closeIconColorHoverError: string;
|
|
2160
|
+
closeIconColorPressedError: string;
|
|
2161
|
+
closeColorHoverWarning: string;
|
|
2162
|
+
closeColorPressedWarning: string;
|
|
2163
|
+
closeIconColorWarning: string;
|
|
2164
|
+
closeIconColorHoverWarning: string;
|
|
2165
|
+
closeIconColorPressedWarning: string;
|
|
2166
|
+
closeColorHoverLoading: string;
|
|
2167
|
+
closeColorPressedLoading: string;
|
|
2168
|
+
closeIconColorLoading: string;
|
|
2169
|
+
closeIconColorHoverLoading: string;
|
|
2170
|
+
closeIconColorPressedLoading: string;
|
|
2171
|
+
loadingColor: string;
|
|
2172
|
+
lineHeight: string;
|
|
2173
|
+
borderRadius: string;
|
|
2174
|
+
margin: string;
|
|
2175
|
+
padding: string;
|
|
2176
|
+
maxWidth: string;
|
|
2177
|
+
minWidth: string;
|
|
2178
|
+
iconMargin: string;
|
|
2179
|
+
closeMargin: string;
|
|
2180
|
+
closeSize: string;
|
|
2181
|
+
closeIconSize: string;
|
|
2182
|
+
iconSize: string;
|
|
2183
|
+
fontSize: string;
|
|
2184
|
+
}>;
|
|
2185
|
+
}>;
|