@pitcher/js-api 1.21.0-beta.2 → 1.22.0-alpha.0

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