cnhis-design-vue 3.1.14-beta.7.1 → 3.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (227) hide show
  1. package/README.md +1 -1
  2. package/es/_virtual/plugin-vue_export-helper.js +9 -0
  3. package/es/node_modules/@formily/path/esm/contexts.js +22 -0
  4. package/es/node_modules/@formily/path/esm/destructor.js +124 -0
  5. package/es/node_modules/@formily/path/esm/index.js +579 -0
  6. package/es/node_modules/@formily/path/esm/matcher.js +199 -0
  7. package/es/node_modules/@formily/path/esm/parser.js +402 -0
  8. package/es/node_modules/@formily/path/esm/shared.js +73 -0
  9. package/es/node_modules/@formily/path/esm/tokenizer.js +287 -0
  10. package/es/node_modules/@formily/path/esm/tokens.js +240 -0
  11. package/es/node_modules/@formily/path/esm/types.js +17 -0
  12. package/es/packages/big-table/index.d.ts +14 -0
  13. package/es/packages/big-table/index.js +1 -2
  14. package/es/packages/big-table/src/BigTable.js +5 -3
  15. package/es/packages/big-table/src/BigTable.vue.d.ts +35 -19
  16. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +50 -31
  17. package/es/packages/big-table/src/bigTableProps.d.ts +4 -0
  18. package/es/packages/big-table/src/bigTableProps.js +1 -0
  19. package/es/packages/big-table/src/components/NoData.js +73 -3
  20. package/es/packages/big-table/src/components/edit-form/edit-input.js +15 -4
  21. package/es/packages/big-table/src/components/edit-form/edit-separate.js +89 -3
  22. package/es/packages/big-table/src/components/edit-form/edit-separate.vue.d.ts +25 -8
  23. package/es/packages/big-table/src/components/edit-form/edit-time.d.ts +43 -0
  24. package/es/packages/big-table/src/components/edit-form/edit-time.js +52 -0
  25. package/es/packages/big-table/src/components/input-button.js +34 -3
  26. package/es/packages/big-table/src/components/separate.js +29 -3
  27. package/es/packages/big-table/src/components/separate.vue.d.ts +3 -4
  28. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.js +34 -5
  29. package/es/packages/big-table/src/hooks/useEdit.d.ts +67 -7
  30. package/es/packages/big-table/src/hooks/useEdit.js +4 -3
  31. package/es/packages/big-table/src/hooks/useSeparateRow.d.ts +1 -1
  32. package/es/packages/big-table/src/hooks/useSeparateRow.js +14 -10
  33. package/es/packages/big-table/src/utils.js +2 -1
  34. package/es/packages/big-table/style/index.css +145 -2
  35. package/es/packages/bpmn-workflow/index.js +1 -2
  36. package/es/packages/bpmn-workflow/src/BpmnWorkflow.js +253 -3
  37. package/es/packages/button-print/index.js +1 -2
  38. package/es/packages/button-print/src/ButtonPrint.js +5 -3
  39. package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +6 -7
  40. package/es/packages/button-print/src/components/IdentityVerification.js +129 -3
  41. package/es/packages/button-print/src/utils/print.d.ts +1 -1
  42. package/es/packages/button-print/src/utils/print.js +4 -4
  43. package/es/packages/chunk-upload/index.js +1 -1
  44. package/es/packages/chunk-upload/src/chunk-upload-new.js +474 -3
  45. package/es/packages/chunk-upload/src/vod-chunk-upload/index.js +2 -3
  46. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.js +328 -3
  47. package/es/packages/chunk-upload/src/vod-upload-modal.js +3 -4
  48. package/es/packages/drag-layout/index.js +1 -2
  49. package/es/packages/drag-layout/src/DragFormLeftItem.js +123 -3
  50. package/es/packages/drag-layout/src/DragFormRightItem.js +268 -3
  51. package/es/packages/drag-layout/src/DragLayout.js +658 -3
  52. package/es/packages/fabric-chart/index.d.ts +2 -0
  53. package/es/packages/fabric-chart/index.js +1 -2
  54. package/es/packages/fabric-chart/src/FabricChart.js +315 -3
  55. package/es/packages/fabric-chart/src/FabricChart.vue.d.ts +2 -0
  56. package/es/packages/fabric-chart/src/components/PopupTip.js +33 -3
  57. package/es/packages/fabric-chart/src/hooks/useCenter.js +41 -25
  58. package/es/packages/fabric-chart/src/hooks/useDraw.js +1 -0
  59. package/es/packages/fabric-chart/src/hooks/useEvent.js +9 -7
  60. package/es/packages/fabric-chart/src/hooks/useLeft.js +28 -17
  61. package/es/packages/fabric-chart/src/hooks/useRight.js +2 -13
  62. package/es/packages/fabric-chart/src/hooks/useTop.js +9 -10
  63. package/es/packages/fabric-chart/src/interface.d.ts +4 -0
  64. package/es/packages/field-set/index.d.ts +2509 -5172
  65. package/es/packages/field-set/index.js +1 -2
  66. package/es/packages/field-set/src/FieldSet.js +346 -3
  67. package/es/packages/field-set/src/FieldSet.vue.d.ts +2494 -5176
  68. package/es/packages/form-render/index.d.ts +0 -2
  69. package/es/packages/form-render/index.js +2 -3
  70. package/es/packages/form-render/src/FormRender.js +188 -3
  71. package/es/packages/form-render/src/FormRender.vue.d.ts +0 -2
  72. package/es/packages/form-render/src/components/renderer/cascader.d.ts +6 -6
  73. package/es/packages/form-render/src/components/renderer/cascader.js +73 -85
  74. package/es/packages/form-render/src/components/renderer/combination.d.ts +6 -0
  75. package/es/packages/form-render/src/components/renderer/combination.js +55 -19
  76. package/es/packages/form-render/src/components/renderer/formItem.js +1 -1
  77. package/es/packages/form-render/src/components/renderer/input.js +5 -16
  78. package/es/packages/form-render/src/components/renderer/inputNumber.d.ts +12 -0
  79. package/es/packages/form-render/src/components/renderer/inputNumber.js +11 -4
  80. package/es/packages/form-render/src/components/renderer/radio.d.ts +12 -4
  81. package/es/packages/form-render/src/components/renderer/radio.js +23 -5
  82. package/es/packages/form-render/src/components/renderer/select.js +56 -56
  83. package/es/packages/form-render/src/components/renderer/simpleComponent.d.ts +17 -2
  84. package/es/packages/form-render/src/components/renderer/simpleComponent.js +16 -14
  85. package/es/packages/form-render/src/hooks/useAsyncQueue.d.ts +1 -1
  86. package/es/packages/form-render/src/hooks/useAsyncQueue.js +1 -1
  87. package/es/packages/form-render/src/hooks/useChangeContext.d.ts +1 -1
  88. package/es/packages/form-render/src/hooks/useChangeContext.js +1 -1
  89. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +11 -8
  90. package/es/packages/form-render/src/hooks/useFormItemDeps.d.ts +3 -2
  91. package/es/packages/form-render/src/hooks/useFormItemDeps.js +5 -6
  92. package/es/packages/form-render/src/hooks/useFormRequest.d.ts +2 -2
  93. package/es/packages/form-render/src/types/fieldItem.d.ts +123 -35
  94. package/es/packages/form-render/src/types/index.d.ts +4 -2
  95. package/es/packages/form-render/src/utils/index.d.ts +7 -4
  96. package/es/packages/form-render/src/utils/index.js +40 -14
  97. package/es/packages/form-table/index.js +1 -2
  98. package/es/packages/form-table/src/FormTable.js +475 -3
  99. package/es/packages/form-table/src/components/index.js +28 -42
  100. package/es/packages/form-table/src/components/table-age.js +232 -3
  101. package/es/packages/form-table/src/components/table-date-picker.js +176 -3
  102. package/es/packages/form-table/src/components/table-digital.js +138 -3
  103. package/es/packages/form-table/src/components/table-input-password.js +138 -3
  104. package/es/packages/form-table/src/components/table-input.js +124 -3
  105. package/es/packages/form-table/src/components/table-month-picker.js +100 -3
  106. package/es/packages/form-table/src/components/table-search-more.js +5 -3
  107. package/es/packages/form-table/src/components/table-search-more.vue_vue_type_script_setup_true_lang.js +2 -2
  108. package/es/packages/form-table/src/components/table-search.js +5 -3
  109. package/es/packages/form-table/src/components/table-search.vue_vue_type_script_setup_true_lang.js +2 -2
  110. package/es/packages/form-table/src/components/table-select-multiple.js +161 -3
  111. package/es/packages/form-table/src/components/table-select.js +156 -3
  112. package/es/packages/form-table/src/components/table-textarea.js +154 -3
  113. package/es/packages/form-table/src/components/table-time-picker.js +146 -3
  114. package/es/packages/form-table/src/components/table-tree-select.js +282 -3
  115. package/es/packages/form-table/src/components/text-over-tooltip.js +63 -3
  116. package/es/packages/index.css +148 -2
  117. package/es/packages/info-header/index.d.ts +1375 -356
  118. package/es/packages/info-header/index.js +1 -2
  119. package/es/packages/info-header/src/HiddenContent.js +65 -3
  120. package/es/packages/info-header/src/HiddenContent.vue.d.ts +689 -178
  121. package/es/packages/info-header/src/InfoEllipsis.js +43 -0
  122. package/es/packages/info-header/src/InfoEllipsis.vue.d.ts +833 -0
  123. package/es/packages/info-header/src/InfoHeader.js +229 -3
  124. package/es/packages/info-header/src/InfoHeader.vue.d.ts +1375 -356
  125. package/es/packages/info-header/style/index.css +3 -0
  126. package/es/packages/map/index.js +1 -2
  127. package/es/packages/map/src/Map.js +337 -3
  128. package/es/packages/scale-view/index.js +1 -2
  129. package/es/packages/scale-view/src/ScaleView.js +418 -3
  130. package/es/packages/scale-view/src/components/AnswerParse.js +79 -3
  131. package/es/packages/scale-view/src/components/EvaluateCountdown.js +108 -3
  132. package/es/packages/scale-view/src/components/EvaluatePage.js +140 -3
  133. package/es/packages/scale-view/src/components/LoadingCom.js +17 -5
  134. package/es/packages/scale-view/src/components/NoData.js +73 -3
  135. package/es/packages/scale-view/src/components/formitem/r-cascader.js +3 -3
  136. package/es/packages/scale-view/src/components/formitem/r-select.js +3 -3
  137. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.js +78 -3
  138. package/es/packages/select-label/index.js +3 -5
  139. package/es/packages/select-label/src/LabelFormContent.js +441 -3
  140. package/es/packages/select-label/src/SelectLabel.js +5 -3
  141. package/es/packages/select-label/src/SelectLabel.vue_vue_type_script_setup_true_lang.js +5 -21
  142. package/es/packages/select-label/src/components/label-classify.js +128 -3
  143. package/es/packages/select-person/index.js +1 -2
  144. package/es/packages/select-person/src/SearchTree.js +5 -3
  145. package/es/packages/select-person/src/SearchTree.vue_vue_type_script_setup_true_lang.js +2 -2
  146. package/es/packages/select-person/src/SelectPerson.js +5 -3
  147. package/es/packages/select-person/src/SelectPerson.vue_vue_type_script_setup_true_lang.js +4 -5
  148. package/es/packages/shortcut-provider/index.js +1 -2
  149. package/es/packages/shortcut-provider/src/ShortcutProvider.js +33 -3
  150. package/es/packages/shortcut-provider/src/types/index.d.ts +11 -9
  151. package/es/packages/shortcut-provider/src/utils/index.js +5 -5
  152. package/es/packages/shortcut-setter/index.d.ts +3247 -1486
  153. package/es/packages/shortcut-setter/index.js +1 -2
  154. package/es/packages/shortcut-setter/src/ShortcutSetter.js +42 -3
  155. package/es/packages/shortcut-setter/src/ShortcutSetter.vue.d.ts +3247 -1486
  156. package/es/packages/shortcut-setter/src/ShortcutSetterItem.js +139 -3
  157. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue.d.ts +1700 -1661
  158. package/es/packages/steps-wheel/index.js +1 -2
  159. package/es/packages/steps-wheel/src/StepsWheel.js +264 -3
  160. package/es/packages/time-line/index.js +1 -2
  161. package/es/packages/time-line/src/TimeLine.js +69 -3
  162. package/es/src/components/SelectPage/SelectPage.js +62 -3
  163. package/es/src/components/SelectPage/index.js +2 -3
  164. package/es/src/components/SlotRender/SlotRender.d.ts +3 -3
  165. package/es/src/components/SlotRender/SlotRender.js +4 -4
  166. package/es/src/components/SvgIcon/SvgIcon.js +35 -3
  167. package/es/src/components/SvgIcon/index.js +2 -3
  168. package/es/src/components/TextOverTooltip/TextOverTooltip.js +75 -3
  169. package/es/src/components/TextOverTooltip/index.js +2 -3
  170. package/es/src/components/player-vod/index.js +13 -3
  171. package/es/src/utils/anime.d.ts +1 -1
  172. package/package.json +153 -153
  173. package/es/packages/big-table/src/components/NoData.vue_vue_type_script_setup_true_lang.js +0 -72
  174. package/es/packages/big-table/src/components/edit-form/edit-separate.vue_vue_type_script_setup_true_lang.js +0 -69
  175. package/es/packages/big-table/src/components/input-button.vue_vue_type_script_setup_true_lang.js +0 -33
  176. package/es/packages/big-table/src/components/separate.vue_vue_type_script_setup_true_lang.js +0 -24
  177. package/es/packages/bpmn-workflow/src/BpmnWorkflow.vue_vue_type_script_setup_true_lang.js +0 -252
  178. package/es/packages/button-print/src/components/IdentityVerification.vue_vue_type_script_setup_true_lang.js +0 -128
  179. package/es/packages/chunk-upload/src/chunk-upload-new.vue_vue_type_script_setup_true_lang.js +0 -473
  180. package/es/packages/chunk-upload/src/vod-chunk-upload/vod-chunk-upload.vue_vue_type_script_setup_true_lang.js +0 -327
  181. package/es/packages/drag-layout/src/DragFormLeftItem.vue_vue_type_script_setup_true_lang.js +0 -122
  182. package/es/packages/drag-layout/src/DragFormRightItem.vue_vue_type_script_setup_true_lang.js +0 -267
  183. package/es/packages/drag-layout/src/DragLayout.vue_vue_type_script_setup_true_lang.js +0 -659
  184. package/es/packages/fabric-chart/src/FabricChart.vue_vue_type_script_setup_true_lang.js +0 -305
  185. package/es/packages/fabric-chart/src/components/PopupTip.vue_vue_type_script_setup_true_lang.js +0 -32
  186. package/es/packages/field-set/src/FieldSet.vue_vue_type_script_setup_true_lang.js +0 -33
  187. package/es/packages/field-set/src/NewFieldSet.js +0 -4
  188. package/es/packages/field-set/src/NewFieldSet.vue.d.ts +0 -2608
  189. package/es/packages/field-set/src/NewFieldSet.vue_vue_type_script_setup_true_lang.js +0 -303
  190. package/es/packages/field-set/src/OldFieldSet.js +0 -4
  191. package/es/packages/field-set/src/OldFieldSet.vue.d.ts +0 -2620
  192. package/es/packages/field-set/src/OldFieldSet.vue_vue_type_script_setup_true_lang.js +0 -335
  193. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.js +0 -187
  194. package/es/packages/form-table/src/FormTable.vue_vue_type_script_setup_true_lang.js +0 -474
  195. package/es/packages/form-table/src/components/table-age.vue_vue_type_script_setup_true_lang.js +0 -232
  196. package/es/packages/form-table/src/components/table-date-picker.vue_vue_type_script_setup_true_lang.js +0 -175
  197. package/es/packages/form-table/src/components/table-digital.vue_vue_type_script_setup_true_lang.js +0 -138
  198. package/es/packages/form-table/src/components/table-input-password.vue_vue_type_script_setup_true_lang.js +0 -138
  199. package/es/packages/form-table/src/components/table-input.vue_vue_type_script_setup_true_lang.js +0 -124
  200. package/es/packages/form-table/src/components/table-month-picker.vue_vue_type_script_setup_true_lang.js +0 -99
  201. package/es/packages/form-table/src/components/table-select-multiple.vue_vue_type_script_setup_true_lang.js +0 -160
  202. package/es/packages/form-table/src/components/table-select.vue_vue_type_script_setup_true_lang.js +0 -155
  203. package/es/packages/form-table/src/components/table-textarea.vue_vue_type_script_setup_true_lang.js +0 -153
  204. package/es/packages/form-table/src/components/table-time-picker.vue_vue_type_script_setup_true_lang.js +0 -145
  205. package/es/packages/form-table/src/components/table-tree-select.vue_vue_type_script_setup_true_lang.js +0 -281
  206. package/es/packages/form-table/src/components/text-over-tooltip.vue_vue_type_script_setup_true_lang.js +0 -62
  207. package/es/packages/info-header/src/HiddenContent.vue_vue_type_script_setup_true_lang.js +0 -66
  208. package/es/packages/info-header/src/InfoHeader.vue_vue_type_script_setup_true_lang.js +0 -233
  209. package/es/packages/map/src/Map.vue_vue_type_script_setup_true_lang.js +0 -336
  210. package/es/packages/scale-view/src/ScaleView.vue_vue_type_script_setup_true_lang.js +0 -422
  211. package/es/packages/scale-view/src/components/AnswerParse.vue_vue_type_script_setup_true_lang.js +0 -78
  212. package/es/packages/scale-view/src/components/EvaluateCountdown.vue_vue_type_script_setup_true_lang.js +0 -107
  213. package/es/packages/scale-view/src/components/EvaluatePage.vue_vue_type_script_setup_true_lang.js +0 -139
  214. package/es/packages/scale-view/src/components/LoadingCom.vue_vue_type_template_id_413329b0_lang.js +0 -16
  215. package/es/packages/scale-view/src/components/NoData.vue_vue_type_script_setup_true_lang.js +0 -72
  216. package/es/packages/scale-view/src/components/formitem/text-over-tooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.js +0 -77
  217. package/es/packages/select-label/src/LabelFormContent.vue_vue_type_script_setup_true_lang.js +0 -441
  218. package/es/packages/select-label/src/components/label-classify.vue_vue_type_script_setup_true_lang.js +0 -127
  219. package/es/packages/shortcut-provider/src/ShortcutProvider.vue_vue_type_script_setup_true_lang.js +0 -32
  220. package/es/packages/shortcut-setter/src/ShortcutSetter.vue_vue_type_script_setup_true_lang.js +0 -38
  221. package/es/packages/shortcut-setter/src/ShortcutSetterItem.vue_vue_type_script_setup_true_lang.js +0 -125
  222. package/es/packages/steps-wheel/src/StepsWheel.vue_vue_type_script_setup_true_lang.js +0 -263
  223. package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.js +0 -68
  224. package/es/src/components/SelectPage/SelectPage.vue_vue_type_script_setup_true_lang.js +0 -61
  225. package/es/src/components/SvgIcon/SvgIcon.vue_vue_type_script_setup_true_lang.js +0 -34
  226. package/es/src/components/TextOverTooltip/TextOverTooltip.vue_vue_type_script_setup_true_lang.js +0 -74
  227. package/es/src/components/player-vod/index.vue_vue_type_script_setup_true_lang.js +0 -12
@@ -1,2608 +0,0 @@
1
- import { PropType } from 'vue';
2
- declare type Ifields = {
3
- id: string;
4
- name: string;
5
- show: boolean;
6
- sort: boolean;
7
- alias: string;
8
- fixedShow: boolean;
9
- fixedWay: 'NONE' | 'LEFT' | 'RIGHT';
10
- columnWidth: number;
11
- [key: string]: any;
12
- };
13
- declare type Istate = {
14
- spinning: boolean;
15
- isCustomSearch: boolean;
16
- clickItem: {
17
- [key: string]: any;
18
- };
19
- fields: Ifields[];
20
- };
21
- declare const _default: import("vue").DefineComponent<{
22
- fields: {
23
- type: PropType<any[]>;
24
- default: () => never[];
25
- };
26
- menuSource: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- drawerDirection: {
31
- type: StringConstructor;
32
- default: string;
33
- };
34
- footerFlag: {
35
- type: BooleanConstructor;
36
- default: boolean;
37
- };
38
- }, {
39
- emit: (event: "onSave" | "onClose", ...args: any[]) => void;
40
- settingView: any;
41
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
42
- fields: {
43
- type: PropType<any[]>;
44
- default: () => never[];
45
- };
46
- menuSource: {
47
- type: StringConstructor;
48
- default: string;
49
- };
50
- drawerDirection: {
51
- type: StringConstructor;
52
- default: string;
53
- };
54
- footerFlag: {
55
- type: BooleanConstructor;
56
- default: boolean;
57
- };
58
- }>> & {
59
- onOnSave?: ((...args: any[]) => any) | undefined;
60
- onOnClose?: ((...args: any[]) => any) | undefined;
61
- }>>;
62
- state: Istate;
63
- leftStyle: (ele: Ifields) => {
64
- background: string | undefined;
65
- };
66
- isMiddleAndAdmin: import("vue").ComputedRef<boolean>;
67
- showCheckBox: (key: string) => boolean;
68
- hideTab: () => void;
69
- getTableFields: () => Ifields[];
70
- handleFieldSave: () => void;
71
- onCancle: () => void;
72
- calculateCheck: (key: string) => boolean;
73
- handleAllCheck: (e: boolean, key: string) => void;
74
- handleFieldClick: (item: Ifields) => void;
75
- NButton: import("vue").DefineComponent<{
76
- readonly color: StringConstructor;
77
- readonly textColor: StringConstructor;
78
- readonly text: BooleanConstructor;
79
- readonly block: BooleanConstructor;
80
- readonly loading: BooleanConstructor;
81
- readonly disabled: BooleanConstructor;
82
- readonly circle: BooleanConstructor;
83
- readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
84
- readonly ghost: BooleanConstructor;
85
- readonly round: BooleanConstructor;
86
- readonly secondary: BooleanConstructor;
87
- readonly tertiary: BooleanConstructor;
88
- readonly quaternary: BooleanConstructor;
89
- readonly strong: BooleanConstructor;
90
- readonly focusable: {
91
- readonly type: BooleanConstructor;
92
- readonly default: true;
93
- };
94
- readonly keyboard: {
95
- readonly type: BooleanConstructor;
96
- readonly default: true;
97
- };
98
- readonly tag: {
99
- readonly type: PropType<keyof HTMLElementTagNameMap>;
100
- readonly default: "button";
101
- };
102
- readonly type: {
103
- readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
104
- readonly default: "default";
105
- };
106
- readonly dashed: BooleanConstructor;
107
- readonly iconPlacement: {
108
- readonly type: PropType<"left" | "right">;
109
- readonly default: "left";
110
- };
111
- readonly attrType: {
112
- readonly type: PropType<"button" | "reset" | "submit">;
113
- readonly default: "button";
114
- };
115
- readonly bordered: {
116
- readonly type: BooleanConstructor;
117
- readonly default: true;
118
- };
119
- readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
120
- readonly nativeFocusBehavior: {
121
- readonly type: BooleanConstructor;
122
- readonly default: boolean;
123
- };
124
- readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
125
- heightTiny: string;
126
- heightSmall: string;
127
- heightMedium: string;
128
- heightLarge: string;
129
- borderRadiusTiny: string;
130
- borderRadiusSmall: string;
131
- borderRadiusMedium: string;
132
- borderRadiusLarge: string;
133
- fontSizeTiny: string;
134
- fontSizeSmall: string;
135
- fontSizeMedium: string;
136
- fontSizeLarge: string;
137
- opacityDisabled: string;
138
- colorOpacitySecondary: string;
139
- colorOpacitySecondaryHover: string;
140
- colorOpacitySecondaryPressed: string;
141
- colorSecondary: string;
142
- colorSecondaryHover: string;
143
- colorSecondaryPressed: string;
144
- colorTertiary: string;
145
- colorTertiaryHover: string;
146
- colorTertiaryPressed: string;
147
- colorQuaternary: string;
148
- colorQuaternaryHover: string;
149
- colorQuaternaryPressed: string;
150
- color: string;
151
- colorHover: string;
152
- colorPressed: string;
153
- colorFocus: string;
154
- colorDisabled: string;
155
- textColor: string;
156
- textColorTertiary: string;
157
- textColorHover: string;
158
- textColorPressed: string;
159
- textColorFocus: string;
160
- textColorDisabled: string;
161
- textColorText: string;
162
- textColorTextHover: string;
163
- textColorTextPressed: string;
164
- textColorTextFocus: string;
165
- textColorTextDisabled: string;
166
- textColorGhost: string;
167
- textColorGhostHover: string;
168
- textColorGhostPressed: string;
169
- textColorGhostFocus: string;
170
- textColorGhostDisabled: string;
171
- border: string;
172
- borderHover: string;
173
- borderPressed: string;
174
- borderFocus: string;
175
- borderDisabled: string;
176
- rippleColor: string;
177
- colorPrimary: string;
178
- colorHoverPrimary: string;
179
- colorPressedPrimary: string;
180
- colorFocusPrimary: string;
181
- colorDisabledPrimary: string;
182
- textColorPrimary: string;
183
- textColorHoverPrimary: string;
184
- textColorPressedPrimary: string;
185
- textColorFocusPrimary: string;
186
- textColorDisabledPrimary: string;
187
- textColorTextPrimary: string;
188
- textColorTextHoverPrimary: string;
189
- textColorTextPressedPrimary: string;
190
- textColorTextFocusPrimary: string;
191
- textColorTextDisabledPrimary: string;
192
- textColorGhostPrimary: string;
193
- textColorGhostHoverPrimary: string;
194
- textColorGhostPressedPrimary: string;
195
- textColorGhostFocusPrimary: string;
196
- textColorGhostDisabledPrimary: string;
197
- borderPrimary: string;
198
- borderHoverPrimary: string;
199
- borderPressedPrimary: string;
200
- borderFocusPrimary: string;
201
- borderDisabledPrimary: string;
202
- rippleColorPrimary: string;
203
- colorInfo: string;
204
- colorHoverInfo: string;
205
- colorPressedInfo: string;
206
- colorFocusInfo: string;
207
- colorDisabledInfo: string;
208
- textColorInfo: string;
209
- textColorHoverInfo: string;
210
- textColorPressedInfo: string;
211
- textColorFocusInfo: string;
212
- textColorDisabledInfo: string;
213
- textColorTextInfo: string;
214
- textColorTextHoverInfo: string;
215
- textColorTextPressedInfo: string;
216
- textColorTextFocusInfo: string;
217
- textColorTextDisabledInfo: string;
218
- textColorGhostInfo: string;
219
- textColorGhostHoverInfo: string;
220
- textColorGhostPressedInfo: string;
221
- textColorGhostFocusInfo: string;
222
- textColorGhostDisabledInfo: string;
223
- borderInfo: string;
224
- borderHoverInfo: string;
225
- borderPressedInfo: string;
226
- borderFocusInfo: string;
227
- borderDisabledInfo: string;
228
- rippleColorInfo: string;
229
- colorSuccess: string;
230
- colorHoverSuccess: string;
231
- colorPressedSuccess: string;
232
- colorFocusSuccess: string;
233
- colorDisabledSuccess: string;
234
- textColorSuccess: string;
235
- textColorHoverSuccess: string;
236
- textColorPressedSuccess: string;
237
- textColorFocusSuccess: string;
238
- textColorDisabledSuccess: string;
239
- textColorTextSuccess: string;
240
- textColorTextHoverSuccess: string;
241
- textColorTextPressedSuccess: string;
242
- textColorTextFocusSuccess: string;
243
- textColorTextDisabledSuccess: string;
244
- textColorGhostSuccess: string;
245
- textColorGhostHoverSuccess: string;
246
- textColorGhostPressedSuccess: string;
247
- textColorGhostFocusSuccess: string;
248
- textColorGhostDisabledSuccess: string;
249
- borderSuccess: string;
250
- borderHoverSuccess: string;
251
- borderPressedSuccess: string;
252
- borderFocusSuccess: string;
253
- borderDisabledSuccess: string;
254
- rippleColorSuccess: string;
255
- colorWarning: string;
256
- colorHoverWarning: string;
257
- colorPressedWarning: string;
258
- colorFocusWarning: string;
259
- colorDisabledWarning: string;
260
- textColorWarning: string;
261
- textColorHoverWarning: string;
262
- textColorPressedWarning: string;
263
- textColorFocusWarning: string;
264
- textColorDisabledWarning: string;
265
- textColorTextWarning: string;
266
- textColorTextHoverWarning: string;
267
- textColorTextPressedWarning: string;
268
- textColorTextFocusWarning: string;
269
- textColorTextDisabledWarning: string;
270
- textColorGhostWarning: string;
271
- textColorGhostHoverWarning: string;
272
- textColorGhostPressedWarning: string;
273
- textColorGhostFocusWarning: string;
274
- textColorGhostDisabledWarning: string;
275
- borderWarning: string;
276
- borderHoverWarning: string;
277
- borderPressedWarning: string;
278
- borderFocusWarning: string;
279
- borderDisabledWarning: string;
280
- rippleColorWarning: string;
281
- colorError: string;
282
- colorHoverError: string;
283
- colorPressedError: string;
284
- colorFocusError: string;
285
- colorDisabledError: string;
286
- textColorError: string;
287
- textColorHoverError: string;
288
- textColorPressedError: string;
289
- textColorFocusError: string;
290
- textColorDisabledError: string;
291
- textColorTextError: string;
292
- textColorTextHoverError: string;
293
- textColorTextPressedError: string;
294
- textColorTextFocusError: string;
295
- textColorTextDisabledError: string;
296
- textColorGhostError: string;
297
- textColorGhostHoverError: string;
298
- textColorGhostPressedError: string;
299
- textColorGhostFocusError: string;
300
- textColorGhostDisabledError: string;
301
- borderError: string;
302
- borderHoverError: string;
303
- borderPressedError: string;
304
- borderFocusError: string;
305
- borderDisabledError: string;
306
- rippleColorError: string;
307
- waveOpacity: string;
308
- fontWeight: string;
309
- fontWeightStrong: string;
310
- paddingTiny: string;
311
- paddingSmall: string;
312
- paddingMedium: string;
313
- paddingLarge: string;
314
- paddingRoundTiny: string;
315
- paddingRoundSmall: string;
316
- paddingRoundMedium: string;
317
- paddingRoundLarge: string;
318
- iconMarginTiny: string;
319
- iconMarginSmall: string;
320
- iconMarginMedium: string;
321
- iconMarginLarge: string;
322
- iconSizeTiny: string;
323
- iconSizeSmall: string;
324
- iconSizeMedium: string;
325
- iconSizeLarge: string;
326
- rippleDuration: string;
327
- }, any>>;
328
- readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
329
- heightTiny: string;
330
- heightSmall: string;
331
- heightMedium: string;
332
- heightLarge: string;
333
- borderRadiusTiny: string;
334
- borderRadiusSmall: string;
335
- borderRadiusMedium: string;
336
- borderRadiusLarge: string;
337
- fontSizeTiny: string;
338
- fontSizeSmall: string;
339
- fontSizeMedium: string;
340
- fontSizeLarge: string;
341
- opacityDisabled: string;
342
- colorOpacitySecondary: string;
343
- colorOpacitySecondaryHover: string;
344
- colorOpacitySecondaryPressed: string;
345
- colorSecondary: string;
346
- colorSecondaryHover: string;
347
- colorSecondaryPressed: string;
348
- colorTertiary: string;
349
- colorTertiaryHover: string;
350
- colorTertiaryPressed: string;
351
- colorQuaternary: string;
352
- colorQuaternaryHover: string;
353
- colorQuaternaryPressed: string;
354
- color: string;
355
- colorHover: string;
356
- colorPressed: string;
357
- colorFocus: string;
358
- colorDisabled: string;
359
- textColor: string;
360
- textColorTertiary: string;
361
- textColorHover: string;
362
- textColorPressed: string;
363
- textColorFocus: string;
364
- textColorDisabled: string;
365
- textColorText: string;
366
- textColorTextHover: string;
367
- textColorTextPressed: string;
368
- textColorTextFocus: string;
369
- textColorTextDisabled: string;
370
- textColorGhost: string;
371
- textColorGhostHover: string;
372
- textColorGhostPressed: string;
373
- textColorGhostFocus: string;
374
- textColorGhostDisabled: string;
375
- border: string;
376
- borderHover: string;
377
- borderPressed: string;
378
- borderFocus: string;
379
- borderDisabled: string;
380
- rippleColor: string;
381
- colorPrimary: string;
382
- colorHoverPrimary: string;
383
- colorPressedPrimary: string;
384
- colorFocusPrimary: string;
385
- colorDisabledPrimary: string;
386
- textColorPrimary: string;
387
- textColorHoverPrimary: string;
388
- textColorPressedPrimary: string;
389
- textColorFocusPrimary: string;
390
- textColorDisabledPrimary: string;
391
- textColorTextPrimary: string;
392
- textColorTextHoverPrimary: string;
393
- textColorTextPressedPrimary: string;
394
- textColorTextFocusPrimary: string;
395
- textColorTextDisabledPrimary: string;
396
- textColorGhostPrimary: string;
397
- textColorGhostHoverPrimary: string;
398
- textColorGhostPressedPrimary: string;
399
- textColorGhostFocusPrimary: string;
400
- textColorGhostDisabledPrimary: string;
401
- borderPrimary: string;
402
- borderHoverPrimary: string;
403
- borderPressedPrimary: string;
404
- borderFocusPrimary: string;
405
- borderDisabledPrimary: string;
406
- rippleColorPrimary: string;
407
- colorInfo: string;
408
- colorHoverInfo: string;
409
- colorPressedInfo: string;
410
- colorFocusInfo: string;
411
- colorDisabledInfo: string;
412
- textColorInfo: string;
413
- textColorHoverInfo: string;
414
- textColorPressedInfo: string;
415
- textColorFocusInfo: string;
416
- textColorDisabledInfo: string;
417
- textColorTextInfo: string;
418
- textColorTextHoverInfo: string;
419
- textColorTextPressedInfo: string;
420
- textColorTextFocusInfo: string;
421
- textColorTextDisabledInfo: string;
422
- textColorGhostInfo: string;
423
- textColorGhostHoverInfo: string;
424
- textColorGhostPressedInfo: string;
425
- textColorGhostFocusInfo: string;
426
- textColorGhostDisabledInfo: string;
427
- borderInfo: string;
428
- borderHoverInfo: string;
429
- borderPressedInfo: string;
430
- borderFocusInfo: string;
431
- borderDisabledInfo: string;
432
- rippleColorInfo: string;
433
- colorSuccess: string;
434
- colorHoverSuccess: string;
435
- colorPressedSuccess: string;
436
- colorFocusSuccess: string;
437
- colorDisabledSuccess: string;
438
- textColorSuccess: string;
439
- textColorHoverSuccess: string;
440
- textColorPressedSuccess: string;
441
- textColorFocusSuccess: string;
442
- textColorDisabledSuccess: string;
443
- textColorTextSuccess: string;
444
- textColorTextHoverSuccess: string;
445
- textColorTextPressedSuccess: string;
446
- textColorTextFocusSuccess: string;
447
- textColorTextDisabledSuccess: string;
448
- textColorGhostSuccess: string;
449
- textColorGhostHoverSuccess: string;
450
- textColorGhostPressedSuccess: string;
451
- textColorGhostFocusSuccess: string;
452
- textColorGhostDisabledSuccess: string;
453
- borderSuccess: string;
454
- borderHoverSuccess: string;
455
- borderPressedSuccess: string;
456
- borderFocusSuccess: string;
457
- borderDisabledSuccess: string;
458
- rippleColorSuccess: string;
459
- colorWarning: string;
460
- colorHoverWarning: string;
461
- colorPressedWarning: string;
462
- colorFocusWarning: string;
463
- colorDisabledWarning: string;
464
- textColorWarning: string;
465
- textColorHoverWarning: string;
466
- textColorPressedWarning: string;
467
- textColorFocusWarning: string;
468
- textColorDisabledWarning: string;
469
- textColorTextWarning: string;
470
- textColorTextHoverWarning: string;
471
- textColorTextPressedWarning: string;
472
- textColorTextFocusWarning: string;
473
- textColorTextDisabledWarning: string;
474
- textColorGhostWarning: string;
475
- textColorGhostHoverWarning: string;
476
- textColorGhostPressedWarning: string;
477
- textColorGhostFocusWarning: string;
478
- textColorGhostDisabledWarning: string;
479
- borderWarning: string;
480
- borderHoverWarning: string;
481
- borderPressedWarning: string;
482
- borderFocusWarning: string;
483
- borderDisabledWarning: string;
484
- rippleColorWarning: string;
485
- colorError: string;
486
- colorHoverError: string;
487
- colorPressedError: string;
488
- colorFocusError: string;
489
- colorDisabledError: string;
490
- textColorError: string;
491
- textColorHoverError: string;
492
- textColorPressedError: string;
493
- textColorFocusError: string;
494
- textColorDisabledError: string;
495
- textColorTextError: string;
496
- textColorTextHoverError: string;
497
- textColorTextPressedError: string;
498
- textColorTextFocusError: string;
499
- textColorTextDisabledError: string;
500
- textColorGhostError: string;
501
- textColorGhostHoverError: string;
502
- textColorGhostPressedError: string;
503
- textColorGhostFocusError: string;
504
- textColorGhostDisabledError: string;
505
- borderError: string;
506
- borderHoverError: string;
507
- borderPressedError: string;
508
- borderFocusError: string;
509
- borderDisabledError: string;
510
- rippleColorError: string;
511
- waveOpacity: string;
512
- fontWeight: string;
513
- fontWeightStrong: string;
514
- paddingTiny: string;
515
- paddingSmall: string;
516
- paddingMedium: string;
517
- paddingLarge: string;
518
- paddingRoundTiny: string;
519
- paddingRoundSmall: string;
520
- paddingRoundMedium: string;
521
- paddingRoundLarge: string;
522
- iconMarginTiny: string;
523
- iconMarginSmall: string;
524
- iconMarginMedium: string;
525
- iconMarginLarge: string;
526
- iconSizeTiny: string;
527
- iconSizeSmall: string;
528
- iconSizeMedium: string;
529
- iconSizeLarge: string;
530
- rippleDuration: string;
531
- }, any>>>;
532
- readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
533
- heightTiny: string;
534
- heightSmall: string;
535
- heightMedium: string;
536
- heightLarge: string;
537
- borderRadiusTiny: string;
538
- borderRadiusSmall: string;
539
- borderRadiusMedium: string;
540
- borderRadiusLarge: string;
541
- fontSizeTiny: string;
542
- fontSizeSmall: string;
543
- fontSizeMedium: string;
544
- fontSizeLarge: string;
545
- opacityDisabled: string;
546
- colorOpacitySecondary: string;
547
- colorOpacitySecondaryHover: string;
548
- colorOpacitySecondaryPressed: string;
549
- colorSecondary: string;
550
- colorSecondaryHover: string;
551
- colorSecondaryPressed: string;
552
- colorTertiary: string;
553
- colorTertiaryHover: string;
554
- colorTertiaryPressed: string;
555
- colorQuaternary: string;
556
- colorQuaternaryHover: string;
557
- colorQuaternaryPressed: string;
558
- color: string;
559
- colorHover: string;
560
- colorPressed: string;
561
- colorFocus: string;
562
- colorDisabled: string;
563
- textColor: string;
564
- textColorTertiary: string;
565
- textColorHover: string;
566
- textColorPressed: string;
567
- textColorFocus: string;
568
- textColorDisabled: string;
569
- textColorText: string;
570
- textColorTextHover: string;
571
- textColorTextPressed: string;
572
- textColorTextFocus: string;
573
- textColorTextDisabled: string;
574
- textColorGhost: string;
575
- textColorGhostHover: string;
576
- textColorGhostPressed: string;
577
- textColorGhostFocus: string;
578
- textColorGhostDisabled: string;
579
- border: string;
580
- borderHover: string;
581
- borderPressed: string;
582
- borderFocus: string;
583
- borderDisabled: string;
584
- rippleColor: string;
585
- colorPrimary: string;
586
- colorHoverPrimary: string;
587
- colorPressedPrimary: string;
588
- colorFocusPrimary: string;
589
- colorDisabledPrimary: string;
590
- textColorPrimary: string;
591
- textColorHoverPrimary: string;
592
- textColorPressedPrimary: string;
593
- textColorFocusPrimary: string;
594
- textColorDisabledPrimary: string;
595
- textColorTextPrimary: string;
596
- textColorTextHoverPrimary: string;
597
- textColorTextPressedPrimary: string;
598
- textColorTextFocusPrimary: string;
599
- textColorTextDisabledPrimary: string;
600
- textColorGhostPrimary: string;
601
- textColorGhostHoverPrimary: string;
602
- textColorGhostPressedPrimary: string;
603
- textColorGhostFocusPrimary: string;
604
- textColorGhostDisabledPrimary: string;
605
- borderPrimary: string;
606
- borderHoverPrimary: string;
607
- borderPressedPrimary: string;
608
- borderFocusPrimary: string;
609
- borderDisabledPrimary: string;
610
- rippleColorPrimary: string;
611
- colorInfo: string;
612
- colorHoverInfo: string;
613
- colorPressedInfo: string;
614
- colorFocusInfo: string;
615
- colorDisabledInfo: string;
616
- textColorInfo: string;
617
- textColorHoverInfo: string;
618
- textColorPressedInfo: string;
619
- textColorFocusInfo: string;
620
- textColorDisabledInfo: string;
621
- textColorTextInfo: string;
622
- textColorTextHoverInfo: string;
623
- textColorTextPressedInfo: string;
624
- textColorTextFocusInfo: string;
625
- textColorTextDisabledInfo: string;
626
- textColorGhostInfo: string;
627
- textColorGhostHoverInfo: string;
628
- textColorGhostPressedInfo: string;
629
- textColorGhostFocusInfo: string;
630
- textColorGhostDisabledInfo: string;
631
- borderInfo: string;
632
- borderHoverInfo: string;
633
- borderPressedInfo: string;
634
- borderFocusInfo: string;
635
- borderDisabledInfo: string;
636
- rippleColorInfo: string;
637
- colorSuccess: string;
638
- colorHoverSuccess: string;
639
- colorPressedSuccess: string;
640
- colorFocusSuccess: string;
641
- colorDisabledSuccess: string;
642
- textColorSuccess: string;
643
- textColorHoverSuccess: string;
644
- textColorPressedSuccess: string;
645
- textColorFocusSuccess: string;
646
- textColorDisabledSuccess: string;
647
- textColorTextSuccess: string;
648
- textColorTextHoverSuccess: string;
649
- textColorTextPressedSuccess: string;
650
- textColorTextFocusSuccess: string;
651
- textColorTextDisabledSuccess: string;
652
- textColorGhostSuccess: string;
653
- textColorGhostHoverSuccess: string;
654
- textColorGhostPressedSuccess: string;
655
- textColorGhostFocusSuccess: string;
656
- textColorGhostDisabledSuccess: string;
657
- borderSuccess: string;
658
- borderHoverSuccess: string;
659
- borderPressedSuccess: string;
660
- borderFocusSuccess: string;
661
- borderDisabledSuccess: string;
662
- rippleColorSuccess: string;
663
- colorWarning: string;
664
- colorHoverWarning: string;
665
- colorPressedWarning: string;
666
- colorFocusWarning: string;
667
- colorDisabledWarning: string;
668
- textColorWarning: string;
669
- textColorHoverWarning: string;
670
- textColorPressedWarning: string;
671
- textColorFocusWarning: string;
672
- textColorDisabledWarning: string;
673
- textColorTextWarning: string;
674
- textColorTextHoverWarning: string;
675
- textColorTextPressedWarning: string;
676
- textColorTextFocusWarning: string;
677
- textColorTextDisabledWarning: string;
678
- textColorGhostWarning: string;
679
- textColorGhostHoverWarning: string;
680
- textColorGhostPressedWarning: string;
681
- textColorGhostFocusWarning: string;
682
- textColorGhostDisabledWarning: string;
683
- borderWarning: string;
684
- borderHoverWarning: string;
685
- borderPressedWarning: string;
686
- borderFocusWarning: string;
687
- borderDisabledWarning: string;
688
- rippleColorWarning: string;
689
- colorError: string;
690
- colorHoverError: string;
691
- colorPressedError: string;
692
- colorFocusError: string;
693
- colorDisabledError: string;
694
- textColorError: string;
695
- textColorHoverError: string;
696
- textColorPressedError: string;
697
- textColorFocusError: string;
698
- textColorDisabledError: string;
699
- textColorTextError: string;
700
- textColorTextHoverError: string;
701
- textColorTextPressedError: string;
702
- textColorTextFocusError: string;
703
- textColorTextDisabledError: string;
704
- textColorGhostError: string;
705
- textColorGhostHoverError: string;
706
- textColorGhostPressedError: string;
707
- textColorGhostFocusError: string;
708
- textColorGhostDisabledError: string;
709
- borderError: string;
710
- borderHoverError: string;
711
- borderPressedError: string;
712
- borderFocusError: string;
713
- borderDisabledError: string;
714
- rippleColorError: string;
715
- waveOpacity: string;
716
- fontWeight: string;
717
- fontWeightStrong: string;
718
- paddingTiny: string;
719
- paddingSmall: string;
720
- paddingMedium: string;
721
- paddingLarge: string;
722
- paddingRoundTiny: string;
723
- paddingRoundSmall: string;
724
- paddingRoundMedium: string;
725
- paddingRoundLarge: string;
726
- iconMarginTiny: string;
727
- iconMarginSmall: string;
728
- iconMarginMedium: string;
729
- iconMarginLarge: string;
730
- iconSizeTiny: string;
731
- iconSizeSmall: string;
732
- iconSizeMedium: string;
733
- iconSizeLarge: string;
734
- rippleDuration: string;
735
- }, any>>>;
736
- }, {
737
- selfElRef: import("vue").Ref<HTMLElement | null>;
738
- waveElRef: import("vue").Ref<{
739
- play: () => void;
740
- } | null>;
741
- mergedClsPrefix: import("vue").ComputedRef<string>;
742
- mergedFocusable: import("vue").ComputedRef<boolean>;
743
- mergedSize: import("vue").ComputedRef<"small" | "medium" | "tiny" | "large">;
744
- showBorder: import("vue").ComputedRef<boolean>;
745
- enterPressed: import("vue").Ref<boolean>;
746
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
747
- handleMousedown: (e: MouseEvent) => void;
748
- handleKeydown: (e: KeyboardEvent) => void;
749
- handleBlur: () => void;
750
- handleKeyup: (e: KeyboardEvent) => void;
751
- handleClick: (e: MouseEvent) => void;
752
- customColorCssVars: import("vue").ComputedRef<{
753
- '--n-border-color': string;
754
- '--n-border-color-hover': string;
755
- '--n-border-color-pressed': string;
756
- '--n-border-color-focus': string;
757
- '--n-border-color-disabled': string;
758
- } | null>;
759
- cssVars: import("vue").ComputedRef<{
760
- '--n-width': string;
761
- '--n-height': string;
762
- '--n-font-size': string;
763
- '--n-padding': string;
764
- '--n-icon-size': string;
765
- '--n-icon-margin': string;
766
- '--n-border-radius': string;
767
- '--n-border': string;
768
- '--n-border-hover': string;
769
- '--n-border-pressed': string;
770
- '--n-border-focus': string;
771
- '--n-border-disabled': string;
772
- '--n-color': string;
773
- '--n-color-hover': string;
774
- '--n-color-pressed': string;
775
- '--n-color-focus': string;
776
- '--n-color-disabled': string;
777
- '--n-ripple-color': string;
778
- '--n-text-color': string;
779
- '--n-text-color-hover': string;
780
- '--n-text-color-pressed': string;
781
- '--n-text-color-focus': string;
782
- '--n-text-color-disabled': string;
783
- 'font-weight': string;
784
- '--n-bezier': string;
785
- '--n-bezier-ease-out': string;
786
- '--n-ripple-duration': string;
787
- '--n-opacity-disabled': string;
788
- '--n-wave-opacity': string;
789
- }> | undefined;
790
- themeClass: import("vue").Ref<string> | undefined;
791
- onRender: (() => void) | undefined;
792
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
793
- readonly color: StringConstructor;
794
- readonly textColor: StringConstructor;
795
- readonly text: BooleanConstructor;
796
- readonly block: BooleanConstructor;
797
- readonly loading: BooleanConstructor;
798
- readonly disabled: BooleanConstructor;
799
- readonly circle: BooleanConstructor;
800
- readonly size: PropType<import("naive-ui/es/button/src/interface").Size>;
801
- readonly ghost: BooleanConstructor;
802
- readonly round: BooleanConstructor;
803
- readonly secondary: BooleanConstructor;
804
- readonly tertiary: BooleanConstructor;
805
- readonly quaternary: BooleanConstructor;
806
- readonly strong: BooleanConstructor;
807
- readonly focusable: {
808
- readonly type: BooleanConstructor;
809
- readonly default: true;
810
- };
811
- readonly keyboard: {
812
- readonly type: BooleanConstructor;
813
- readonly default: true;
814
- };
815
- readonly tag: {
816
- readonly type: PropType<keyof HTMLElementTagNameMap>;
817
- readonly default: "button";
818
- };
819
- readonly type: {
820
- readonly type: PropType<import("naive-ui/es/button/src/interface").Type>;
821
- readonly default: "default";
822
- };
823
- readonly dashed: BooleanConstructor;
824
- readonly iconPlacement: {
825
- readonly type: PropType<"left" | "right">;
826
- readonly default: "left";
827
- };
828
- readonly attrType: {
829
- readonly type: PropType<"button" | "reset" | "submit">;
830
- readonly default: "button";
831
- };
832
- readonly bordered: {
833
- readonly type: BooleanConstructor;
834
- readonly default: true;
835
- };
836
- readonly onClick: PropType<import("naive-ui/es/_utils").MaybeArray<(e: MouseEvent) => void>>;
837
- readonly nativeFocusBehavior: {
838
- readonly type: BooleanConstructor;
839
- readonly default: boolean;
840
- };
841
- readonly theme: PropType<import("naive-ui/es/_mixins").Theme<"Button", {
842
- heightTiny: string;
843
- heightSmall: string;
844
- heightMedium: string;
845
- heightLarge: string;
846
- borderRadiusTiny: string;
847
- borderRadiusSmall: string;
848
- borderRadiusMedium: string;
849
- borderRadiusLarge: string;
850
- fontSizeTiny: string;
851
- fontSizeSmall: string;
852
- fontSizeMedium: string;
853
- fontSizeLarge: string;
854
- opacityDisabled: string;
855
- colorOpacitySecondary: string;
856
- colorOpacitySecondaryHover: string;
857
- colorOpacitySecondaryPressed: string;
858
- colorSecondary: string;
859
- colorSecondaryHover: string;
860
- colorSecondaryPressed: string;
861
- colorTertiary: string;
862
- colorTertiaryHover: string;
863
- colorTertiaryPressed: string;
864
- colorQuaternary: string;
865
- colorQuaternaryHover: string;
866
- colorQuaternaryPressed: string;
867
- color: string;
868
- colorHover: string;
869
- colorPressed: string;
870
- colorFocus: string;
871
- colorDisabled: string;
872
- textColor: string;
873
- textColorTertiary: string;
874
- textColorHover: string;
875
- textColorPressed: string;
876
- textColorFocus: string;
877
- textColorDisabled: string;
878
- textColorText: string;
879
- textColorTextHover: string;
880
- textColorTextPressed: string;
881
- textColorTextFocus: string;
882
- textColorTextDisabled: string;
883
- textColorGhost: string;
884
- textColorGhostHover: string;
885
- textColorGhostPressed: string;
886
- textColorGhostFocus: string;
887
- textColorGhostDisabled: string;
888
- border: string;
889
- borderHover: string;
890
- borderPressed: string;
891
- borderFocus: string;
892
- borderDisabled: string;
893
- rippleColor: string;
894
- colorPrimary: string;
895
- colorHoverPrimary: string;
896
- colorPressedPrimary: string;
897
- colorFocusPrimary: string;
898
- colorDisabledPrimary: string;
899
- textColorPrimary: string;
900
- textColorHoverPrimary: string;
901
- textColorPressedPrimary: string;
902
- textColorFocusPrimary: string;
903
- textColorDisabledPrimary: string;
904
- textColorTextPrimary: string;
905
- textColorTextHoverPrimary: string;
906
- textColorTextPressedPrimary: string;
907
- textColorTextFocusPrimary: string;
908
- textColorTextDisabledPrimary: string;
909
- textColorGhostPrimary: string;
910
- textColorGhostHoverPrimary: string;
911
- textColorGhostPressedPrimary: string;
912
- textColorGhostFocusPrimary: string;
913
- textColorGhostDisabledPrimary: string;
914
- borderPrimary: string;
915
- borderHoverPrimary: string;
916
- borderPressedPrimary: string;
917
- borderFocusPrimary: string;
918
- borderDisabledPrimary: string;
919
- rippleColorPrimary: string;
920
- colorInfo: string;
921
- colorHoverInfo: string;
922
- colorPressedInfo: string;
923
- colorFocusInfo: string;
924
- colorDisabledInfo: string;
925
- textColorInfo: string;
926
- textColorHoverInfo: string;
927
- textColorPressedInfo: string;
928
- textColorFocusInfo: string;
929
- textColorDisabledInfo: string;
930
- textColorTextInfo: string;
931
- textColorTextHoverInfo: string;
932
- textColorTextPressedInfo: string;
933
- textColorTextFocusInfo: string;
934
- textColorTextDisabledInfo: string;
935
- textColorGhostInfo: string;
936
- textColorGhostHoverInfo: string;
937
- textColorGhostPressedInfo: string;
938
- textColorGhostFocusInfo: string;
939
- textColorGhostDisabledInfo: string;
940
- borderInfo: string;
941
- borderHoverInfo: string;
942
- borderPressedInfo: string;
943
- borderFocusInfo: string;
944
- borderDisabledInfo: string;
945
- rippleColorInfo: string;
946
- colorSuccess: string;
947
- colorHoverSuccess: string;
948
- colorPressedSuccess: string;
949
- colorFocusSuccess: string;
950
- colorDisabledSuccess: string;
951
- textColorSuccess: string;
952
- textColorHoverSuccess: string;
953
- textColorPressedSuccess: string;
954
- textColorFocusSuccess: string;
955
- textColorDisabledSuccess: string;
956
- textColorTextSuccess: string;
957
- textColorTextHoverSuccess: string;
958
- textColorTextPressedSuccess: string;
959
- textColorTextFocusSuccess: string;
960
- textColorTextDisabledSuccess: string;
961
- textColorGhostSuccess: string;
962
- textColorGhostHoverSuccess: string;
963
- textColorGhostPressedSuccess: string;
964
- textColorGhostFocusSuccess: string;
965
- textColorGhostDisabledSuccess: string;
966
- borderSuccess: string;
967
- borderHoverSuccess: string;
968
- borderPressedSuccess: string;
969
- borderFocusSuccess: string;
970
- borderDisabledSuccess: string;
971
- rippleColorSuccess: string;
972
- colorWarning: string;
973
- colorHoverWarning: string;
974
- colorPressedWarning: string;
975
- colorFocusWarning: string;
976
- colorDisabledWarning: string;
977
- textColorWarning: string;
978
- textColorHoverWarning: string;
979
- textColorPressedWarning: string;
980
- textColorFocusWarning: string;
981
- textColorDisabledWarning: string;
982
- textColorTextWarning: string;
983
- textColorTextHoverWarning: string;
984
- textColorTextPressedWarning: string;
985
- textColorTextFocusWarning: string;
986
- textColorTextDisabledWarning: string;
987
- textColorGhostWarning: string;
988
- textColorGhostHoverWarning: string;
989
- textColorGhostPressedWarning: string;
990
- textColorGhostFocusWarning: string;
991
- textColorGhostDisabledWarning: string;
992
- borderWarning: string;
993
- borderHoverWarning: string;
994
- borderPressedWarning: string;
995
- borderFocusWarning: string;
996
- borderDisabledWarning: string;
997
- rippleColorWarning: string;
998
- colorError: string;
999
- colorHoverError: string;
1000
- colorPressedError: string;
1001
- colorFocusError: string;
1002
- colorDisabledError: string;
1003
- textColorError: string;
1004
- textColorHoverError: string;
1005
- textColorPressedError: string;
1006
- textColorFocusError: string;
1007
- textColorDisabledError: string;
1008
- textColorTextError: string;
1009
- textColorTextHoverError: string;
1010
- textColorTextPressedError: string;
1011
- textColorTextFocusError: string;
1012
- textColorTextDisabledError: string;
1013
- textColorGhostError: string;
1014
- textColorGhostHoverError: string;
1015
- textColorGhostPressedError: string;
1016
- textColorGhostFocusError: string;
1017
- textColorGhostDisabledError: string;
1018
- borderError: string;
1019
- borderHoverError: string;
1020
- borderPressedError: string;
1021
- borderFocusError: string;
1022
- borderDisabledError: string;
1023
- rippleColorError: string;
1024
- waveOpacity: string;
1025
- fontWeight: string;
1026
- fontWeightStrong: string;
1027
- paddingTiny: string;
1028
- paddingSmall: string;
1029
- paddingMedium: string;
1030
- paddingLarge: string;
1031
- paddingRoundTiny: string;
1032
- paddingRoundSmall: string;
1033
- paddingRoundMedium: string;
1034
- paddingRoundLarge: string;
1035
- iconMarginTiny: string;
1036
- iconMarginSmall: string;
1037
- iconMarginMedium: string;
1038
- iconMarginLarge: string;
1039
- iconSizeTiny: string;
1040
- iconSizeSmall: string;
1041
- iconSizeMedium: string;
1042
- iconSizeLarge: string;
1043
- rippleDuration: string;
1044
- }, any>>;
1045
- readonly themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1046
- heightTiny: string;
1047
- heightSmall: string;
1048
- heightMedium: string;
1049
- heightLarge: string;
1050
- borderRadiusTiny: string;
1051
- borderRadiusSmall: string;
1052
- borderRadiusMedium: string;
1053
- borderRadiusLarge: string;
1054
- fontSizeTiny: string;
1055
- fontSizeSmall: string;
1056
- fontSizeMedium: string;
1057
- fontSizeLarge: string;
1058
- opacityDisabled: string;
1059
- colorOpacitySecondary: string;
1060
- colorOpacitySecondaryHover: string;
1061
- colorOpacitySecondaryPressed: string;
1062
- colorSecondary: string;
1063
- colorSecondaryHover: string;
1064
- colorSecondaryPressed: string;
1065
- colorTertiary: string;
1066
- colorTertiaryHover: string;
1067
- colorTertiaryPressed: string;
1068
- colorQuaternary: string;
1069
- colorQuaternaryHover: string;
1070
- colorQuaternaryPressed: string;
1071
- color: string;
1072
- colorHover: string;
1073
- colorPressed: string;
1074
- colorFocus: string;
1075
- colorDisabled: string;
1076
- textColor: string;
1077
- textColorTertiary: string;
1078
- textColorHover: string;
1079
- textColorPressed: string;
1080
- textColorFocus: string;
1081
- textColorDisabled: string;
1082
- textColorText: string;
1083
- textColorTextHover: string;
1084
- textColorTextPressed: string;
1085
- textColorTextFocus: string;
1086
- textColorTextDisabled: string;
1087
- textColorGhost: string;
1088
- textColorGhostHover: string;
1089
- textColorGhostPressed: string;
1090
- textColorGhostFocus: string;
1091
- textColorGhostDisabled: string;
1092
- border: string;
1093
- borderHover: string;
1094
- borderPressed: string;
1095
- borderFocus: string;
1096
- borderDisabled: string;
1097
- rippleColor: string;
1098
- colorPrimary: string;
1099
- colorHoverPrimary: string;
1100
- colorPressedPrimary: string;
1101
- colorFocusPrimary: string;
1102
- colorDisabledPrimary: string;
1103
- textColorPrimary: string;
1104
- textColorHoverPrimary: string;
1105
- textColorPressedPrimary: string;
1106
- textColorFocusPrimary: string;
1107
- textColorDisabledPrimary: string;
1108
- textColorTextPrimary: string;
1109
- textColorTextHoverPrimary: string;
1110
- textColorTextPressedPrimary: string;
1111
- textColorTextFocusPrimary: string;
1112
- textColorTextDisabledPrimary: string;
1113
- textColorGhostPrimary: string;
1114
- textColorGhostHoverPrimary: string;
1115
- textColorGhostPressedPrimary: string;
1116
- textColorGhostFocusPrimary: string;
1117
- textColorGhostDisabledPrimary: string;
1118
- borderPrimary: string;
1119
- borderHoverPrimary: string;
1120
- borderPressedPrimary: string;
1121
- borderFocusPrimary: string;
1122
- borderDisabledPrimary: string;
1123
- rippleColorPrimary: string;
1124
- colorInfo: string;
1125
- colorHoverInfo: string;
1126
- colorPressedInfo: string;
1127
- colorFocusInfo: string;
1128
- colorDisabledInfo: string;
1129
- textColorInfo: string;
1130
- textColorHoverInfo: string;
1131
- textColorPressedInfo: string;
1132
- textColorFocusInfo: string;
1133
- textColorDisabledInfo: string;
1134
- textColorTextInfo: string;
1135
- textColorTextHoverInfo: string;
1136
- textColorTextPressedInfo: string;
1137
- textColorTextFocusInfo: string;
1138
- textColorTextDisabledInfo: string;
1139
- textColorGhostInfo: string;
1140
- textColorGhostHoverInfo: string;
1141
- textColorGhostPressedInfo: string;
1142
- textColorGhostFocusInfo: string;
1143
- textColorGhostDisabledInfo: string;
1144
- borderInfo: string;
1145
- borderHoverInfo: string;
1146
- borderPressedInfo: string;
1147
- borderFocusInfo: string;
1148
- borderDisabledInfo: string;
1149
- rippleColorInfo: string;
1150
- colorSuccess: string;
1151
- colorHoverSuccess: string;
1152
- colorPressedSuccess: string;
1153
- colorFocusSuccess: string;
1154
- colorDisabledSuccess: string;
1155
- textColorSuccess: string;
1156
- textColorHoverSuccess: string;
1157
- textColorPressedSuccess: string;
1158
- textColorFocusSuccess: string;
1159
- textColorDisabledSuccess: string;
1160
- textColorTextSuccess: string;
1161
- textColorTextHoverSuccess: string;
1162
- textColorTextPressedSuccess: string;
1163
- textColorTextFocusSuccess: string;
1164
- textColorTextDisabledSuccess: string;
1165
- textColorGhostSuccess: string;
1166
- textColorGhostHoverSuccess: string;
1167
- textColorGhostPressedSuccess: string;
1168
- textColorGhostFocusSuccess: string;
1169
- textColorGhostDisabledSuccess: string;
1170
- borderSuccess: string;
1171
- borderHoverSuccess: string;
1172
- borderPressedSuccess: string;
1173
- borderFocusSuccess: string;
1174
- borderDisabledSuccess: string;
1175
- rippleColorSuccess: string;
1176
- colorWarning: string;
1177
- colorHoverWarning: string;
1178
- colorPressedWarning: string;
1179
- colorFocusWarning: string;
1180
- colorDisabledWarning: string;
1181
- textColorWarning: string;
1182
- textColorHoverWarning: string;
1183
- textColorPressedWarning: string;
1184
- textColorFocusWarning: string;
1185
- textColorDisabledWarning: string;
1186
- textColorTextWarning: string;
1187
- textColorTextHoverWarning: string;
1188
- textColorTextPressedWarning: string;
1189
- textColorTextFocusWarning: string;
1190
- textColorTextDisabledWarning: string;
1191
- textColorGhostWarning: string;
1192
- textColorGhostHoverWarning: string;
1193
- textColorGhostPressedWarning: string;
1194
- textColorGhostFocusWarning: string;
1195
- textColorGhostDisabledWarning: string;
1196
- borderWarning: string;
1197
- borderHoverWarning: string;
1198
- borderPressedWarning: string;
1199
- borderFocusWarning: string;
1200
- borderDisabledWarning: string;
1201
- rippleColorWarning: string;
1202
- colorError: string;
1203
- colorHoverError: string;
1204
- colorPressedError: string;
1205
- colorFocusError: string;
1206
- colorDisabledError: string;
1207
- textColorError: string;
1208
- textColorHoverError: string;
1209
- textColorPressedError: string;
1210
- textColorFocusError: string;
1211
- textColorDisabledError: string;
1212
- textColorTextError: string;
1213
- textColorTextHoverError: string;
1214
- textColorTextPressedError: string;
1215
- textColorTextFocusError: string;
1216
- textColorTextDisabledError: string;
1217
- textColorGhostError: string;
1218
- textColorGhostHoverError: string;
1219
- textColorGhostPressedError: string;
1220
- textColorGhostFocusError: string;
1221
- textColorGhostDisabledError: string;
1222
- borderError: string;
1223
- borderHoverError: string;
1224
- borderPressedError: string;
1225
- borderFocusError: string;
1226
- borderDisabledError: string;
1227
- rippleColorError: string;
1228
- waveOpacity: string;
1229
- fontWeight: string;
1230
- fontWeightStrong: string;
1231
- paddingTiny: string;
1232
- paddingSmall: string;
1233
- paddingMedium: string;
1234
- paddingLarge: string;
1235
- paddingRoundTiny: string;
1236
- paddingRoundSmall: string;
1237
- paddingRoundMedium: string;
1238
- paddingRoundLarge: string;
1239
- iconMarginTiny: string;
1240
- iconMarginSmall: string;
1241
- iconMarginMedium: string;
1242
- iconMarginLarge: string;
1243
- iconSizeTiny: string;
1244
- iconSizeSmall: string;
1245
- iconSizeMedium: string;
1246
- iconSizeLarge: string;
1247
- rippleDuration: string;
1248
- }, any>>>;
1249
- readonly builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Button", {
1250
- heightTiny: string;
1251
- heightSmall: string;
1252
- heightMedium: string;
1253
- heightLarge: string;
1254
- borderRadiusTiny: string;
1255
- borderRadiusSmall: string;
1256
- borderRadiusMedium: string;
1257
- borderRadiusLarge: string;
1258
- fontSizeTiny: string;
1259
- fontSizeSmall: string;
1260
- fontSizeMedium: string;
1261
- fontSizeLarge: string;
1262
- opacityDisabled: string;
1263
- colorOpacitySecondary: string;
1264
- colorOpacitySecondaryHover: string;
1265
- colorOpacitySecondaryPressed: string;
1266
- colorSecondary: string;
1267
- colorSecondaryHover: string;
1268
- colorSecondaryPressed: string;
1269
- colorTertiary: string;
1270
- colorTertiaryHover: string;
1271
- colorTertiaryPressed: string;
1272
- colorQuaternary: string;
1273
- colorQuaternaryHover: string;
1274
- colorQuaternaryPressed: string;
1275
- color: string;
1276
- colorHover: string;
1277
- colorPressed: string;
1278
- colorFocus: string;
1279
- colorDisabled: string;
1280
- textColor: string;
1281
- textColorTertiary: string;
1282
- textColorHover: string;
1283
- textColorPressed: string;
1284
- textColorFocus: string;
1285
- textColorDisabled: string;
1286
- textColorText: string;
1287
- textColorTextHover: string;
1288
- textColorTextPressed: string;
1289
- textColorTextFocus: string;
1290
- textColorTextDisabled: string;
1291
- textColorGhost: string;
1292
- textColorGhostHover: string;
1293
- textColorGhostPressed: string;
1294
- textColorGhostFocus: string;
1295
- textColorGhostDisabled: string;
1296
- border: string;
1297
- borderHover: string;
1298
- borderPressed: string;
1299
- borderFocus: string;
1300
- borderDisabled: string;
1301
- rippleColor: string;
1302
- colorPrimary: string;
1303
- colorHoverPrimary: string;
1304
- colorPressedPrimary: string;
1305
- colorFocusPrimary: string;
1306
- colorDisabledPrimary: string;
1307
- textColorPrimary: string;
1308
- textColorHoverPrimary: string;
1309
- textColorPressedPrimary: string;
1310
- textColorFocusPrimary: string;
1311
- textColorDisabledPrimary: string;
1312
- textColorTextPrimary: string;
1313
- textColorTextHoverPrimary: string;
1314
- textColorTextPressedPrimary: string;
1315
- textColorTextFocusPrimary: string;
1316
- textColorTextDisabledPrimary: string;
1317
- textColorGhostPrimary: string;
1318
- textColorGhostHoverPrimary: string;
1319
- textColorGhostPressedPrimary: string;
1320
- textColorGhostFocusPrimary: string;
1321
- textColorGhostDisabledPrimary: string;
1322
- borderPrimary: string;
1323
- borderHoverPrimary: string;
1324
- borderPressedPrimary: string;
1325
- borderFocusPrimary: string;
1326
- borderDisabledPrimary: string;
1327
- rippleColorPrimary: string;
1328
- colorInfo: string;
1329
- colorHoverInfo: string;
1330
- colorPressedInfo: string;
1331
- colorFocusInfo: string;
1332
- colorDisabledInfo: string;
1333
- textColorInfo: string;
1334
- textColorHoverInfo: string;
1335
- textColorPressedInfo: string;
1336
- textColorFocusInfo: string;
1337
- textColorDisabledInfo: string;
1338
- textColorTextInfo: string;
1339
- textColorTextHoverInfo: string;
1340
- textColorTextPressedInfo: string;
1341
- textColorTextFocusInfo: string;
1342
- textColorTextDisabledInfo: string;
1343
- textColorGhostInfo: string;
1344
- textColorGhostHoverInfo: string;
1345
- textColorGhostPressedInfo: string;
1346
- textColorGhostFocusInfo: string;
1347
- textColorGhostDisabledInfo: string;
1348
- borderInfo: string;
1349
- borderHoverInfo: string;
1350
- borderPressedInfo: string;
1351
- borderFocusInfo: string;
1352
- borderDisabledInfo: string;
1353
- rippleColorInfo: string;
1354
- colorSuccess: string;
1355
- colorHoverSuccess: string;
1356
- colorPressedSuccess: string;
1357
- colorFocusSuccess: string;
1358
- colorDisabledSuccess: string;
1359
- textColorSuccess: string;
1360
- textColorHoverSuccess: string;
1361
- textColorPressedSuccess: string;
1362
- textColorFocusSuccess: string;
1363
- textColorDisabledSuccess: string;
1364
- textColorTextSuccess: string;
1365
- textColorTextHoverSuccess: string;
1366
- textColorTextPressedSuccess: string;
1367
- textColorTextFocusSuccess: string;
1368
- textColorTextDisabledSuccess: string;
1369
- textColorGhostSuccess: string;
1370
- textColorGhostHoverSuccess: string;
1371
- textColorGhostPressedSuccess: string;
1372
- textColorGhostFocusSuccess: string;
1373
- textColorGhostDisabledSuccess: string;
1374
- borderSuccess: string;
1375
- borderHoverSuccess: string;
1376
- borderPressedSuccess: string;
1377
- borderFocusSuccess: string;
1378
- borderDisabledSuccess: string;
1379
- rippleColorSuccess: string;
1380
- colorWarning: string;
1381
- colorHoverWarning: string;
1382
- colorPressedWarning: string;
1383
- colorFocusWarning: string;
1384
- colorDisabledWarning: string;
1385
- textColorWarning: string;
1386
- textColorHoverWarning: string;
1387
- textColorPressedWarning: string;
1388
- textColorFocusWarning: string;
1389
- textColorDisabledWarning: string;
1390
- textColorTextWarning: string;
1391
- textColorTextHoverWarning: string;
1392
- textColorTextPressedWarning: string;
1393
- textColorTextFocusWarning: string;
1394
- textColorTextDisabledWarning: string;
1395
- textColorGhostWarning: string;
1396
- textColorGhostHoverWarning: string;
1397
- textColorGhostPressedWarning: string;
1398
- textColorGhostFocusWarning: string;
1399
- textColorGhostDisabledWarning: string;
1400
- borderWarning: string;
1401
- borderHoverWarning: string;
1402
- borderPressedWarning: string;
1403
- borderFocusWarning: string;
1404
- borderDisabledWarning: string;
1405
- rippleColorWarning: string;
1406
- colorError: string;
1407
- colorHoverError: string;
1408
- colorPressedError: string;
1409
- colorFocusError: string;
1410
- colorDisabledError: string;
1411
- textColorError: string;
1412
- textColorHoverError: string;
1413
- textColorPressedError: string;
1414
- textColorFocusError: string;
1415
- textColorDisabledError: string;
1416
- textColorTextError: string;
1417
- textColorTextHoverError: string;
1418
- textColorTextPressedError: string;
1419
- textColorTextFocusError: string;
1420
- textColorTextDisabledError: string;
1421
- textColorGhostError: string;
1422
- textColorGhostHoverError: string;
1423
- textColorGhostPressedError: string;
1424
- textColorGhostFocusError: string;
1425
- textColorGhostDisabledError: string;
1426
- borderError: string;
1427
- borderHoverError: string;
1428
- borderPressedError: string;
1429
- borderFocusError: string;
1430
- borderDisabledError: string;
1431
- rippleColorError: string;
1432
- waveOpacity: string;
1433
- fontWeight: string;
1434
- fontWeightStrong: string;
1435
- paddingTiny: string;
1436
- paddingSmall: string;
1437
- paddingMedium: string;
1438
- paddingLarge: string;
1439
- paddingRoundTiny: string;
1440
- paddingRoundSmall: string;
1441
- paddingRoundMedium: string;
1442
- paddingRoundLarge: string;
1443
- iconMarginTiny: string;
1444
- iconMarginSmall: string;
1445
- iconMarginMedium: string;
1446
- iconMarginLarge: string;
1447
- iconSizeTiny: string;
1448
- iconSizeSmall: string;
1449
- iconSizeMedium: string;
1450
- iconSizeLarge: string;
1451
- rippleDuration: string;
1452
- }, any>>>;
1453
- }>>, {
1454
- readonly type: import("naive-ui/es/button/src/interface").Type;
1455
- readonly tag: keyof HTMLElementTagNameMap;
1456
- readonly block: boolean;
1457
- readonly round: boolean;
1458
- readonly dashed: boolean;
1459
- readonly text: boolean;
1460
- readonly circle: boolean;
1461
- readonly disabled: boolean;
1462
- readonly focusable: boolean;
1463
- readonly strong: boolean;
1464
- readonly loading: boolean;
1465
- readonly bordered: boolean;
1466
- readonly tertiary: boolean;
1467
- readonly ghost: boolean;
1468
- readonly keyboard: boolean;
1469
- readonly secondary: boolean;
1470
- readonly quaternary: boolean;
1471
- readonly iconPlacement: "left" | "right";
1472
- readonly attrType: "button" | "reset" | "submit";
1473
- readonly nativeFocusBehavior: boolean;
1474
- }>;
1475
- NCheckbox: import("vue").DefineComponent<{
1476
- size: PropType<"small" | "medium" | "large">;
1477
- checked: {
1478
- type: PropType<string | number | boolean | undefined>;
1479
- default: undefined;
1480
- };
1481
- defaultChecked: {
1482
- type: PropType<string | number | boolean>;
1483
- default: boolean;
1484
- };
1485
- value: PropType<string | number>;
1486
- disabled: {
1487
- type: PropType<boolean | undefined>;
1488
- default: undefined;
1489
- };
1490
- indeterminate: BooleanConstructor;
1491
- label: StringConstructor;
1492
- focusable: {
1493
- type: BooleanConstructor;
1494
- default: boolean;
1495
- };
1496
- checkedValue: {
1497
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1498
- default: boolean;
1499
- };
1500
- uncheckedValue: {
1501
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1502
- default: boolean;
1503
- };
1504
- 'onUpdate:checked': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1505
- onUpdateChecked: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1506
- privateInsideTable: BooleanConstructor;
1507
- onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1508
- theme: PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1509
- labelLineHeight: string;
1510
- fontSizeSmall: string;
1511
- fontSizeMedium: string;
1512
- fontSizeLarge: string;
1513
- borderRadius: string;
1514
- color: string;
1515
- colorChecked: string;
1516
- colorDisabled: string;
1517
- colorDisabledChecked: string;
1518
- colorTableHeader: string;
1519
- colorTableHeaderModal: string;
1520
- colorTableHeaderPopover: string;
1521
- checkMarkColor: string;
1522
- checkMarkColorDisabled: string;
1523
- checkMarkColorDisabledChecked: string;
1524
- border: string;
1525
- borderDisabled: string;
1526
- borderDisabledChecked: string;
1527
- borderChecked: string;
1528
- borderFocus: string;
1529
- boxShadowFocus: string;
1530
- textColor: string;
1531
- textColorDisabled: string;
1532
- sizeSmall: string;
1533
- sizeMedium: string;
1534
- sizeLarge: string;
1535
- labelPadding: string;
1536
- }, any>>;
1537
- themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1538
- labelLineHeight: string;
1539
- fontSizeSmall: string;
1540
- fontSizeMedium: string;
1541
- fontSizeLarge: string;
1542
- borderRadius: string;
1543
- color: string;
1544
- colorChecked: string;
1545
- colorDisabled: string;
1546
- colorDisabledChecked: string;
1547
- colorTableHeader: string;
1548
- colorTableHeaderModal: string;
1549
- colorTableHeaderPopover: string;
1550
- checkMarkColor: string;
1551
- checkMarkColorDisabled: string;
1552
- checkMarkColorDisabledChecked: string;
1553
- border: string;
1554
- borderDisabled: string;
1555
- borderDisabledChecked: string;
1556
- borderChecked: string;
1557
- borderFocus: string;
1558
- boxShadowFocus: string;
1559
- textColor: string;
1560
- textColorDisabled: string;
1561
- sizeSmall: string;
1562
- sizeMedium: string;
1563
- sizeLarge: string;
1564
- labelPadding: string;
1565
- }, any>>>;
1566
- builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1567
- labelLineHeight: string;
1568
- fontSizeSmall: string;
1569
- fontSizeMedium: string;
1570
- fontSizeLarge: string;
1571
- borderRadius: string;
1572
- color: string;
1573
- colorChecked: string;
1574
- colorDisabled: string;
1575
- colorDisabledChecked: string;
1576
- colorTableHeader: string;
1577
- colorTableHeaderModal: string;
1578
- colorTableHeaderPopover: string;
1579
- checkMarkColor: string;
1580
- checkMarkColorDisabled: string;
1581
- checkMarkColorDisabledChecked: string;
1582
- border: string;
1583
- borderDisabled: string;
1584
- borderDisabledChecked: string;
1585
- borderChecked: string;
1586
- borderFocus: string;
1587
- boxShadowFocus: string;
1588
- textColor: string;
1589
- textColorDisabled: string;
1590
- sizeSmall: string;
1591
- sizeMedium: string;
1592
- sizeLarge: string;
1593
- labelPadding: string;
1594
- }, any>>>;
1595
- }, import("naive-ui/es/_mixins/use-form-item").UseFormItem<"small" | "medium" | "large"> & import("naive-ui").CheckboxInst & {
1596
- rtlEnabled: import("vue").Ref<import("naive-ui/es/config-provider/src/internal-interface").RtlItem | undefined> | undefined;
1597
- selfRef: import("vue").Ref<HTMLDivElement | null>;
1598
- mergedClsPrefix: import("vue").ComputedRef<string>;
1599
- mergedDisabled: import("vue").ComputedRef<boolean>;
1600
- renderedChecked: import("vue").ComputedRef<boolean>;
1601
- mergedTheme: import("vue").ComputedRef<{
1602
- common: {
1603
- baseColor: string;
1604
- primaryColor: string;
1605
- primaryColorHover: string;
1606
- primaryColorPressed: string;
1607
- primaryColorSuppl: string;
1608
- infoColor: string;
1609
- infoColorHover: string;
1610
- infoColorPressed: string;
1611
- infoColorSuppl: string;
1612
- successColor: string;
1613
- successColorHover: string;
1614
- successColorPressed: string;
1615
- successColorSuppl: string;
1616
- warningColor: string;
1617
- warningColorHover: string;
1618
- warningColorPressed: string;
1619
- warningColorSuppl: string;
1620
- errorColor: string;
1621
- errorColorHover: string;
1622
- errorColorPressed: string;
1623
- errorColorSuppl: string;
1624
- textColorBase: string;
1625
- textColor1: string;
1626
- textColor2: string;
1627
- textColor3: string;
1628
- textColorDisabled: string;
1629
- placeholderColor: string;
1630
- placeholderColorDisabled: string;
1631
- iconColor: string;
1632
- iconColorHover: string;
1633
- iconColorPressed: string;
1634
- iconColorDisabled: string;
1635
- opacity1: string;
1636
- opacity2: string;
1637
- opacity3: string;
1638
- opacity4: string;
1639
- opacity5: string;
1640
- dividerColor: string;
1641
- borderColor: string;
1642
- closeIconColor: string;
1643
- closeIconColorHover: string;
1644
- closeIconColorPressed: string;
1645
- closeColorHover: string;
1646
- closeColorPressed: string;
1647
- clearColor: string;
1648
- clearColorHover: string;
1649
- clearColorPressed: string;
1650
- scrollbarColor: string;
1651
- scrollbarColorHover: string;
1652
- scrollbarWidth: string;
1653
- scrollbarHeight: string;
1654
- scrollbarBorderRadius: string;
1655
- progressRailColor: string;
1656
- railColor: string;
1657
- popoverColor: string;
1658
- tableColor: string;
1659
- cardColor: string;
1660
- modalColor: string;
1661
- bodyColor: string;
1662
- tagColor: string;
1663
- avatarColor: string;
1664
- invertedColor: string;
1665
- inputColor: string;
1666
- codeColor: string;
1667
- tabColor: string;
1668
- actionColor: string;
1669
- tableHeaderColor: string;
1670
- hoverColor: string;
1671
- tableColorHover: string;
1672
- tableColorStriped: string;
1673
- pressedColor: string;
1674
- opacityDisabled: string;
1675
- inputColorDisabled: string;
1676
- buttonColor2: string;
1677
- buttonColor2Hover: string;
1678
- buttonColor2Pressed: string;
1679
- boxShadow1: string;
1680
- boxShadow2: string;
1681
- boxShadow3: string;
1682
- fontFamily: string;
1683
- fontFamilyMono: string;
1684
- fontWeight: string;
1685
- fontWeightStrong: string;
1686
- cubicBezierEaseInOut: string;
1687
- cubicBezierEaseOut: string;
1688
- cubicBezierEaseIn: string;
1689
- borderRadius: string;
1690
- borderRadiusSmall: string;
1691
- fontSize: string;
1692
- fontSizeMini: string;
1693
- fontSizeTiny: string;
1694
- fontSizeSmall: string;
1695
- fontSizeMedium: string;
1696
- fontSizeLarge: string;
1697
- fontSizeHuge: string;
1698
- lineHeight: string;
1699
- heightMini: string;
1700
- heightTiny: string;
1701
- heightSmall: string;
1702
- heightMedium: string;
1703
- heightLarge: string;
1704
- heightHuge: string;
1705
- name: "common";
1706
- };
1707
- self: {
1708
- labelLineHeight: string;
1709
- fontSizeSmall: string;
1710
- fontSizeMedium: string;
1711
- fontSizeLarge: string;
1712
- borderRadius: string;
1713
- color: string;
1714
- colorChecked: string;
1715
- colorDisabled: string;
1716
- colorDisabledChecked: string;
1717
- colorTableHeader: string;
1718
- colorTableHeaderModal: string;
1719
- colorTableHeaderPopover: string;
1720
- checkMarkColor: string;
1721
- checkMarkColorDisabled: string;
1722
- checkMarkColorDisabledChecked: string;
1723
- border: string;
1724
- borderDisabled: string;
1725
- borderDisabledChecked: string;
1726
- borderChecked: string;
1727
- borderFocus: string;
1728
- boxShadowFocus: string;
1729
- textColor: string;
1730
- textColorDisabled: string;
1731
- sizeSmall: string;
1732
- sizeMedium: string;
1733
- sizeLarge: string;
1734
- labelPadding: string;
1735
- };
1736
- peers: any;
1737
- peerOverrides: {
1738
- [x: string]: any;
1739
- };
1740
- }>;
1741
- labelId: string;
1742
- handleClick: (e: MouseEvent) => void;
1743
- handleKeyUp: (e: KeyboardEvent) => void;
1744
- handleKeyDown: (e: KeyboardEvent) => void;
1745
- cssVars: import("vue").ComputedRef<{
1746
- '--n-label-line-height': string;
1747
- '--n-size': string;
1748
- '--n-bezier': string;
1749
- '--n-border-radius': string;
1750
- '--n-border': string;
1751
- '--n-border-checked': string;
1752
- '--n-border-focus': string;
1753
- '--n-border-disabled': string;
1754
- '--n-border-disabled-checked': string;
1755
- '--n-box-shadow-focus': string;
1756
- '--n-color': string;
1757
- '--n-color-checked': string;
1758
- '--n-color-table': string;
1759
- '--n-color-table-modal': string;
1760
- '--n-color-table-popover': string;
1761
- '--n-color-disabled': string;
1762
- '--n-color-disabled-checked': string;
1763
- '--n-text-color': string;
1764
- '--n-text-color-disabled': string;
1765
- '--n-check-mark-color': string;
1766
- '--n-check-mark-color-disabled': string;
1767
- '--n-check-mark-color-disabled-checked': string;
1768
- '--n-font-size': string;
1769
- '--n-label-padding': string;
1770
- }> | undefined;
1771
- themeClass: import("vue").Ref<string> | undefined;
1772
- onRender: (() => void) | undefined;
1773
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1774
- size: PropType<"small" | "medium" | "large">;
1775
- checked: {
1776
- type: PropType<string | number | boolean | undefined>;
1777
- default: undefined;
1778
- };
1779
- defaultChecked: {
1780
- type: PropType<string | number | boolean>;
1781
- default: boolean;
1782
- };
1783
- value: PropType<string | number>;
1784
- disabled: {
1785
- type: PropType<boolean | undefined>;
1786
- default: undefined;
1787
- };
1788
- indeterminate: BooleanConstructor;
1789
- label: StringConstructor;
1790
- focusable: {
1791
- type: BooleanConstructor;
1792
- default: boolean;
1793
- };
1794
- checkedValue: {
1795
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1796
- default: boolean;
1797
- };
1798
- uncheckedValue: {
1799
- type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
1800
- default: boolean;
1801
- };
1802
- 'onUpdate:checked': PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1803
- onUpdateChecked: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1804
- privateInsideTable: BooleanConstructor;
1805
- onChange: PropType<import("naive-ui/es/_utils").MaybeArray<import("naive-ui/es/checkbox/src/interface").OnUpdateChecked>>;
1806
- theme: PropType<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1807
- labelLineHeight: string;
1808
- fontSizeSmall: string;
1809
- fontSizeMedium: string;
1810
- fontSizeLarge: string;
1811
- borderRadius: string;
1812
- color: string;
1813
- colorChecked: string;
1814
- colorDisabled: string;
1815
- colorDisabledChecked: string;
1816
- colorTableHeader: string;
1817
- colorTableHeaderModal: string;
1818
- colorTableHeaderPopover: string;
1819
- checkMarkColor: string;
1820
- checkMarkColorDisabled: string;
1821
- checkMarkColorDisabledChecked: string;
1822
- border: string;
1823
- borderDisabled: string;
1824
- borderDisabledChecked: string;
1825
- borderChecked: string;
1826
- borderFocus: string;
1827
- boxShadowFocus: string;
1828
- textColor: string;
1829
- textColorDisabled: string;
1830
- sizeSmall: string;
1831
- sizeMedium: string;
1832
- sizeLarge: string;
1833
- labelPadding: string;
1834
- }, any>>;
1835
- themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1836
- labelLineHeight: string;
1837
- fontSizeSmall: string;
1838
- fontSizeMedium: string;
1839
- fontSizeLarge: string;
1840
- borderRadius: string;
1841
- color: string;
1842
- colorChecked: string;
1843
- colorDisabled: string;
1844
- colorDisabledChecked: string;
1845
- colorTableHeader: string;
1846
- colorTableHeaderModal: string;
1847
- colorTableHeaderPopover: string;
1848
- checkMarkColor: string;
1849
- checkMarkColorDisabled: string;
1850
- checkMarkColorDisabledChecked: string;
1851
- border: string;
1852
- borderDisabled: string;
1853
- borderDisabledChecked: string;
1854
- borderChecked: string;
1855
- borderFocus: string;
1856
- boxShadowFocus: string;
1857
- textColor: string;
1858
- textColorDisabled: string;
1859
- sizeSmall: string;
1860
- sizeMedium: string;
1861
- sizeLarge: string;
1862
- labelPadding: string;
1863
- }, any>>>;
1864
- builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Checkbox", {
1865
- labelLineHeight: string;
1866
- fontSizeSmall: string;
1867
- fontSizeMedium: string;
1868
- fontSizeLarge: string;
1869
- borderRadius: string;
1870
- color: string;
1871
- colorChecked: string;
1872
- colorDisabled: string;
1873
- colorDisabledChecked: string;
1874
- colorTableHeader: string;
1875
- colorTableHeaderModal: string;
1876
- colorTableHeaderPopover: string;
1877
- checkMarkColor: string;
1878
- checkMarkColorDisabled: string;
1879
- checkMarkColorDisabledChecked: string;
1880
- border: string;
1881
- borderDisabled: string;
1882
- borderDisabledChecked: string;
1883
- borderChecked: string;
1884
- borderFocus: string;
1885
- boxShadowFocus: string;
1886
- textColor: string;
1887
- textColorDisabled: string;
1888
- sizeSmall: string;
1889
- sizeMedium: string;
1890
- sizeLarge: string;
1891
- labelPadding: string;
1892
- }, any>>>;
1893
- }>>, {
1894
- disabled: boolean | undefined;
1895
- checked: string | number | boolean | undefined;
1896
- indeterminate: boolean;
1897
- focusable: boolean;
1898
- defaultChecked: string | number | boolean;
1899
- checkedValue: string | number | boolean;
1900
- uncheckedValue: string | number | boolean;
1901
- privateInsideTable: boolean;
1902
- }>;
1903
- NSpin: import("vue").DefineComponent<{
1904
- description: StringConstructor;
1905
- stroke: StringConstructor;
1906
- size: {
1907
- type: PropType<number | "small" | "medium" | "large">;
1908
- default: string;
1909
- };
1910
- show: {
1911
- type: BooleanConstructor;
1912
- default: boolean;
1913
- };
1914
- strokeWidth: NumberConstructor;
1915
- rotate: {
1916
- type: BooleanConstructor;
1917
- default: boolean;
1918
- };
1919
- spinning: {
1920
- type: BooleanConstructor;
1921
- validator: () => boolean;
1922
- default: undefined;
1923
- };
1924
- theme: PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
1925
- fontSize: string;
1926
- textColor: string;
1927
- sizeTiny: string;
1928
- sizeSmall: string;
1929
- sizeMedium: string;
1930
- sizeLarge: string;
1931
- sizeHuge: string;
1932
- color: string;
1933
- opacitySpinning: string;
1934
- }, any>>;
1935
- themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
1936
- fontSize: string;
1937
- textColor: string;
1938
- sizeTiny: string;
1939
- sizeSmall: string;
1940
- sizeMedium: string;
1941
- sizeLarge: string;
1942
- sizeHuge: string;
1943
- color: string;
1944
- opacitySpinning: string;
1945
- }, any>>>;
1946
- builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
1947
- fontSize: string;
1948
- textColor: string;
1949
- sizeTiny: string;
1950
- sizeSmall: string;
1951
- sizeMedium: string;
1952
- sizeLarge: string;
1953
- sizeHuge: string;
1954
- color: string;
1955
- opacitySpinning: string;
1956
- }, any>>>;
1957
- }, {
1958
- mergedClsPrefix: import("vue").ComputedRef<string>;
1959
- compitableShow: import("vue").ComputedRef<boolean>;
1960
- mergedStrokeWidth: import("vue").ComputedRef<number>;
1961
- cssVars: import("vue").ComputedRef<{
1962
- '--n-bezier': string;
1963
- '--n-opacity-spinning': string;
1964
- '--n-size': string;
1965
- '--n-color': string;
1966
- '--n-text-color': string;
1967
- }> | undefined;
1968
- themeClass: import("vue").Ref<string> | undefined;
1969
- onRender: (() => void) | undefined;
1970
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1971
- description: StringConstructor;
1972
- stroke: StringConstructor;
1973
- size: {
1974
- type: PropType<number | "small" | "medium" | "large">;
1975
- default: string;
1976
- };
1977
- show: {
1978
- type: BooleanConstructor;
1979
- default: boolean;
1980
- };
1981
- strokeWidth: NumberConstructor;
1982
- rotate: {
1983
- type: BooleanConstructor;
1984
- default: boolean;
1985
- };
1986
- spinning: {
1987
- type: BooleanConstructor;
1988
- validator: () => boolean;
1989
- default: undefined;
1990
- };
1991
- theme: PropType<import("naive-ui/es/_mixins").Theme<"Spin", {
1992
- fontSize: string;
1993
- textColor: string;
1994
- sizeTiny: string;
1995
- sizeSmall: string;
1996
- sizeMedium: string;
1997
- sizeLarge: string;
1998
- sizeHuge: string;
1999
- color: string;
2000
- opacitySpinning: string;
2001
- }, any>>;
2002
- themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
2003
- fontSize: string;
2004
- textColor: string;
2005
- sizeTiny: string;
2006
- sizeSmall: string;
2007
- sizeMedium: string;
2008
- sizeLarge: string;
2009
- sizeHuge: string;
2010
- color: string;
2011
- opacitySpinning: string;
2012
- }, any>>>;
2013
- builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Spin", {
2014
- fontSize: string;
2015
- textColor: string;
2016
- sizeTiny: string;
2017
- sizeSmall: string;
2018
- sizeMedium: string;
2019
- sizeLarge: string;
2020
- sizeHuge: string;
2021
- color: string;
2022
- opacitySpinning: string;
2023
- }, any>>>;
2024
- }>>, {
2025
- size: number | "small" | "medium" | "large";
2026
- show: boolean;
2027
- rotate: boolean;
2028
- spinning: boolean;
2029
- }>;
2030
- NTooltip: import("vue").DefineComponent<{
2031
- theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2032
- borderRadius: string;
2033
- boxShadow: string;
2034
- color: string;
2035
- textColor: string;
2036
- padding: string;
2037
- }, {
2038
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2039
- fontSize: string;
2040
- borderRadius: string;
2041
- color: string;
2042
- dividerColor: string;
2043
- textColor: string;
2044
- boxShadow: string;
2045
- space: string;
2046
- spaceArrow: string;
2047
- arrowOffset: string;
2048
- arrowOffsetVertical: string;
2049
- arrowHeight: string;
2050
- padding: string;
2051
- }, any>;
2052
- }>>;
2053
- themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2054
- borderRadius: string;
2055
- boxShadow: string;
2056
- color: string;
2057
- textColor: string;
2058
- padding: string;
2059
- }, {
2060
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2061
- fontSize: string;
2062
- borderRadius: string;
2063
- color: string;
2064
- dividerColor: string;
2065
- textColor: string;
2066
- boxShadow: string;
2067
- space: string;
2068
- spaceArrow: string;
2069
- arrowOffset: string;
2070
- arrowOffsetVertical: string;
2071
- arrowHeight: string;
2072
- padding: string;
2073
- }, any>;
2074
- }>>>;
2075
- builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2076
- borderRadius: string;
2077
- boxShadow: string;
2078
- color: string;
2079
- textColor: string;
2080
- padding: string;
2081
- }, {
2082
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2083
- fontSize: string;
2084
- borderRadius: string;
2085
- color: string;
2086
- dividerColor: string;
2087
- textColor: string;
2088
- boxShadow: string;
2089
- space: string;
2090
- spaceArrow: string;
2091
- arrowOffset: string;
2092
- arrowOffsetVertical: string;
2093
- arrowHeight: string;
2094
- padding: string;
2095
- }, any>;
2096
- }>>>;
2097
- show: {
2098
- type: PropType<boolean | undefined>;
2099
- default: undefined;
2100
- };
2101
- defaultShow: BooleanConstructor;
2102
- showArrow: {
2103
- type: BooleanConstructor;
2104
- default: boolean;
2105
- };
2106
- trigger: {
2107
- type: PropType<import("naive-ui").PopoverTrigger>;
2108
- default: string;
2109
- };
2110
- delay: {
2111
- type: NumberConstructor;
2112
- default: number;
2113
- };
2114
- duration: {
2115
- type: NumberConstructor;
2116
- default: number;
2117
- };
2118
- raw: BooleanConstructor;
2119
- placement: {
2120
- type: PropType<import("naive-ui").PopoverPlacement>;
2121
- default: string;
2122
- };
2123
- x: NumberConstructor;
2124
- y: NumberConstructor;
2125
- arrowPointToCenter: BooleanConstructor;
2126
- disabled: BooleanConstructor;
2127
- getDisabled: PropType<() => boolean>;
2128
- displayDirective: {
2129
- type: PropType<"show" | "if">;
2130
- default: string;
2131
- };
2132
- arrowStyle: PropType<string | import("vue").CSSProperties>;
2133
- flip: {
2134
- type: BooleanConstructor;
2135
- default: boolean;
2136
- };
2137
- animated: {
2138
- type: BooleanConstructor;
2139
- default: boolean;
2140
- };
2141
- width: {
2142
- type: PropType<number | "trigger">;
2143
- default: undefined;
2144
- };
2145
- overlap: BooleanConstructor;
2146
- keepAliveOnHover: {
2147
- type: BooleanConstructor;
2148
- default: boolean;
2149
- };
2150
- zIndex: NumberConstructor;
2151
- to: {
2152
- type: PropType<string | boolean | HTMLElement>;
2153
- default: undefined;
2154
- };
2155
- scrollable: BooleanConstructor;
2156
- contentStyle: PropType<string | import("vue").CSSProperties>;
2157
- headerStyle: PropType<string | import("vue").CSSProperties>;
2158
- footerStyle: PropType<string | import("vue").CSSProperties>;
2159
- onClickoutside: PropType<(e: MouseEvent) => void>;
2160
- 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2161
- onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2162
- internalDeactivateImmediately: BooleanConstructor;
2163
- internalSyncTargetWithParent: BooleanConstructor;
2164
- internalInheritedEventHandlers: {
2165
- type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2166
- default: () => never[];
2167
- };
2168
- internalTrapFocus: BooleanConstructor;
2169
- internalExtraClass: {
2170
- type: PropType<string[]>;
2171
- default: () => never[];
2172
- };
2173
- onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2174
- onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2175
- arrow: {
2176
- type: PropType<boolean | undefined>;
2177
- default: undefined;
2178
- };
2179
- minWidth: NumberConstructor;
2180
- maxWidth: NumberConstructor;
2181
- }, {
2182
- popoverRef: import("vue").Ref<{
2183
- syncPosition: () => void;
2184
- setShow: (value: boolean) => void;
2185
- } | null>;
2186
- mergedTheme: import("vue").ComputedRef<{
2187
- common: {
2188
- baseColor: string;
2189
- primaryColor: string;
2190
- primaryColorHover: string;
2191
- primaryColorPressed: string;
2192
- primaryColorSuppl: string;
2193
- infoColor: string;
2194
- infoColorHover: string;
2195
- infoColorPressed: string;
2196
- infoColorSuppl: string;
2197
- successColor: string;
2198
- successColorHover: string;
2199
- successColorPressed: string;
2200
- successColorSuppl: string;
2201
- warningColor: string;
2202
- warningColorHover: string;
2203
- warningColorPressed: string;
2204
- warningColorSuppl: string;
2205
- errorColor: string;
2206
- errorColorHover: string;
2207
- errorColorPressed: string;
2208
- errorColorSuppl: string;
2209
- textColorBase: string;
2210
- textColor1: string;
2211
- textColor2: string;
2212
- textColor3: string;
2213
- textColorDisabled: string;
2214
- placeholderColor: string;
2215
- placeholderColorDisabled: string;
2216
- iconColor: string;
2217
- iconColorHover: string;
2218
- iconColorPressed: string;
2219
- iconColorDisabled: string;
2220
- opacity1: string;
2221
- opacity2: string;
2222
- opacity3: string;
2223
- opacity4: string;
2224
- opacity5: string;
2225
- dividerColor: string;
2226
- borderColor: string;
2227
- closeIconColor: string;
2228
- closeIconColorHover: string;
2229
- closeIconColorPressed: string;
2230
- closeColorHover: string;
2231
- closeColorPressed: string;
2232
- clearColor: string;
2233
- clearColorHover: string;
2234
- clearColorPressed: string;
2235
- scrollbarColor: string;
2236
- scrollbarColorHover: string;
2237
- scrollbarWidth: string;
2238
- scrollbarHeight: string;
2239
- scrollbarBorderRadius: string;
2240
- progressRailColor: string;
2241
- railColor: string;
2242
- popoverColor: string;
2243
- tableColor: string;
2244
- cardColor: string;
2245
- modalColor: string;
2246
- bodyColor: string;
2247
- tagColor: string;
2248
- avatarColor: string;
2249
- invertedColor: string;
2250
- inputColor: string;
2251
- codeColor: string;
2252
- tabColor: string;
2253
- actionColor: string;
2254
- tableHeaderColor: string;
2255
- hoverColor: string;
2256
- tableColorHover: string;
2257
- tableColorStriped: string;
2258
- pressedColor: string;
2259
- opacityDisabled: string;
2260
- inputColorDisabled: string;
2261
- buttonColor2: string;
2262
- buttonColor2Hover: string;
2263
- buttonColor2Pressed: string;
2264
- boxShadow1: string;
2265
- boxShadow2: string;
2266
- boxShadow3: string;
2267
- fontFamily: string;
2268
- fontFamilyMono: string;
2269
- fontWeight: string;
2270
- fontWeightStrong: string;
2271
- cubicBezierEaseInOut: string;
2272
- cubicBezierEaseOut: string;
2273
- cubicBezierEaseIn: string;
2274
- borderRadius: string;
2275
- borderRadiusSmall: string;
2276
- fontSize: string;
2277
- fontSizeMini: string;
2278
- fontSizeTiny: string;
2279
- fontSizeSmall: string;
2280
- fontSizeMedium: string;
2281
- fontSizeLarge: string;
2282
- fontSizeHuge: string;
2283
- lineHeight: string;
2284
- heightMini: string;
2285
- heightTiny: string;
2286
- heightSmall: string;
2287
- heightMedium: string;
2288
- heightLarge: string;
2289
- heightHuge: string;
2290
- name: "common";
2291
- };
2292
- self: {
2293
- borderRadius: string;
2294
- boxShadow: string;
2295
- color: string;
2296
- textColor: string;
2297
- padding: string;
2298
- };
2299
- peers: {
2300
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2301
- fontSize: string;
2302
- borderRadius: string;
2303
- color: string;
2304
- dividerColor: string;
2305
- textColor: string;
2306
- boxShadow: string;
2307
- space: string;
2308
- spaceArrow: string;
2309
- arrowOffset: string;
2310
- arrowOffsetVertical: string;
2311
- arrowHeight: string;
2312
- padding: string;
2313
- }, any>;
2314
- };
2315
- peerOverrides: {
2316
- Popover?: {
2317
- peers?: {
2318
- [x: string]: any;
2319
- } | undefined;
2320
- } | undefined;
2321
- };
2322
- }>;
2323
- popoverThemeOverrides: import("vue").ComputedRef<{
2324
- borderRadius: string;
2325
- boxShadow: string;
2326
- color: string;
2327
- textColor: string;
2328
- padding: string;
2329
- }>;
2330
- syncPosition: () => void;
2331
- setShow: (value: boolean) => void;
2332
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2333
- theme: PropType<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2334
- borderRadius: string;
2335
- boxShadow: string;
2336
- color: string;
2337
- textColor: string;
2338
- padding: string;
2339
- }, {
2340
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2341
- fontSize: string;
2342
- borderRadius: string;
2343
- color: string;
2344
- dividerColor: string;
2345
- textColor: string;
2346
- boxShadow: string;
2347
- space: string;
2348
- spaceArrow: string;
2349
- arrowOffset: string;
2350
- arrowOffsetVertical: string;
2351
- arrowHeight: string;
2352
- padding: string;
2353
- }, any>;
2354
- }>>;
2355
- themeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2356
- borderRadius: string;
2357
- boxShadow: string;
2358
- color: string;
2359
- textColor: string;
2360
- padding: string;
2361
- }, {
2362
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2363
- fontSize: string;
2364
- borderRadius: string;
2365
- color: string;
2366
- dividerColor: string;
2367
- textColor: string;
2368
- boxShadow: string;
2369
- space: string;
2370
- spaceArrow: string;
2371
- arrowOffset: string;
2372
- arrowOffsetVertical: string;
2373
- arrowHeight: string;
2374
- padding: string;
2375
- }, any>;
2376
- }>>>;
2377
- builtinThemeOverrides: PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Tooltip", {
2378
- borderRadius: string;
2379
- boxShadow: string;
2380
- color: string;
2381
- textColor: string;
2382
- padding: string;
2383
- }, {
2384
- Popover: import("naive-ui/es/_mixins").Theme<"Popover", {
2385
- fontSize: string;
2386
- borderRadius: string;
2387
- color: string;
2388
- dividerColor: string;
2389
- textColor: string;
2390
- boxShadow: string;
2391
- space: string;
2392
- spaceArrow: string;
2393
- arrowOffset: string;
2394
- arrowOffsetVertical: string;
2395
- arrowHeight: string;
2396
- padding: string;
2397
- }, any>;
2398
- }>>>;
2399
- show: {
2400
- type: PropType<boolean | undefined>;
2401
- default: undefined;
2402
- };
2403
- defaultShow: BooleanConstructor;
2404
- showArrow: {
2405
- type: BooleanConstructor;
2406
- default: boolean;
2407
- };
2408
- trigger: {
2409
- type: PropType<import("naive-ui").PopoverTrigger>;
2410
- default: string;
2411
- };
2412
- delay: {
2413
- type: NumberConstructor;
2414
- default: number;
2415
- };
2416
- duration: {
2417
- type: NumberConstructor;
2418
- default: number;
2419
- };
2420
- raw: BooleanConstructor;
2421
- placement: {
2422
- type: PropType<import("naive-ui").PopoverPlacement>;
2423
- default: string;
2424
- };
2425
- x: NumberConstructor;
2426
- y: NumberConstructor;
2427
- arrowPointToCenter: BooleanConstructor;
2428
- disabled: BooleanConstructor;
2429
- getDisabled: PropType<() => boolean>;
2430
- displayDirective: {
2431
- type: PropType<"show" | "if">;
2432
- default: string;
2433
- };
2434
- arrowStyle: PropType<string | import("vue").CSSProperties>;
2435
- flip: {
2436
- type: BooleanConstructor;
2437
- default: boolean;
2438
- };
2439
- animated: {
2440
- type: BooleanConstructor;
2441
- default: boolean;
2442
- };
2443
- width: {
2444
- type: PropType<number | "trigger">;
2445
- default: undefined;
2446
- };
2447
- overlap: BooleanConstructor;
2448
- keepAliveOnHover: {
2449
- type: BooleanConstructor;
2450
- default: boolean;
2451
- };
2452
- zIndex: NumberConstructor;
2453
- to: {
2454
- type: PropType<string | boolean | HTMLElement>;
2455
- default: undefined;
2456
- };
2457
- scrollable: BooleanConstructor;
2458
- contentStyle: PropType<string | import("vue").CSSProperties>;
2459
- headerStyle: PropType<string | import("vue").CSSProperties>;
2460
- footerStyle: PropType<string | import("vue").CSSProperties>;
2461
- onClickoutside: PropType<(e: MouseEvent) => void>;
2462
- 'onUpdate:show': PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2463
- onUpdateShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void>>;
2464
- internalDeactivateImmediately: BooleanConstructor;
2465
- internalSyncTargetWithParent: BooleanConstructor;
2466
- internalInheritedEventHandlers: {
2467
- type: PropType<import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[]>;
2468
- default: () => never[];
2469
- };
2470
- internalTrapFocus: BooleanConstructor;
2471
- internalExtraClass: {
2472
- type: PropType<string[]>;
2473
- default: () => never[];
2474
- };
2475
- onShow: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2476
- onHide: PropType<import("naive-ui/es/_utils").MaybeArray<(value: boolean) => void> | undefined>;
2477
- arrow: {
2478
- type: PropType<boolean | undefined>;
2479
- default: undefined;
2480
- };
2481
- minWidth: NumberConstructor;
2482
- maxWidth: NumberConstructor;
2483
- }>>, {
2484
- show: boolean | undefined;
2485
- flip: boolean;
2486
- width: number | "trigger";
2487
- disabled: boolean;
2488
- duration: number;
2489
- to: string | boolean | HTMLElement;
2490
- raw: boolean;
2491
- placement: import("naive-ui").PopoverPlacement;
2492
- overlap: boolean;
2493
- scrollable: boolean;
2494
- trigger: import("naive-ui").PopoverTrigger;
2495
- showArrow: boolean;
2496
- delay: number;
2497
- arrowPointToCenter: boolean;
2498
- displayDirective: "show" | "if";
2499
- keepAliveOnHover: boolean;
2500
- internalDeactivateImmediately: boolean;
2501
- animated: boolean;
2502
- internalTrapFocus: boolean;
2503
- defaultShow: boolean;
2504
- internalSyncTargetWithParent: boolean;
2505
- internalInheritedEventHandlers: import("naive-ui/es/popover/src/Popover").TriggerEventHandlers[];
2506
- internalExtraClass: string[];
2507
- arrow: boolean | undefined;
2508
- }>;
2509
- draggable: import("vue").DefineComponent<{
2510
- list: {
2511
- type: ArrayConstructor;
2512
- required: boolean;
2513
- default: any;
2514
- };
2515
- modelValue: {
2516
- type: ArrayConstructor;
2517
- required: boolean;
2518
- default: any;
2519
- };
2520
- itemKey: {
2521
- type: (StringConstructor | FunctionConstructor)[];
2522
- required: boolean;
2523
- };
2524
- clone: {
2525
- type: FunctionConstructor;
2526
- default: (original: any) => any;
2527
- };
2528
- tag: {
2529
- type: StringConstructor;
2530
- default: string;
2531
- };
2532
- move: {
2533
- type: FunctionConstructor;
2534
- default: any;
2535
- };
2536
- componentData: {
2537
- type: ObjectConstructor;
2538
- required: boolean;
2539
- default: any;
2540
- };
2541
- }, unknown, {
2542
- error: boolean;
2543
- }, {
2544
- realList(): any;
2545
- getKey(): any;
2546
- }, {
2547
- getUnderlyingVm(domElement: any): any;
2548
- getUnderlyingPotencialDraggableComponent(htmElement: any): any;
2549
- emitChanges(evt: any): void;
2550
- alterList(onList: any): void;
2551
- spliceList(): void;
2552
- updatePosition(oldIndex: any, newIndex: any): void;
2553
- getRelatedContextFromMoveEvent({ to, related }: {
2554
- to: any;
2555
- related: any;
2556
- }): any;
2557
- getVmIndexFromDomIndex(domIndex: any): any;
2558
- onDragStart(evt: any): void;
2559
- onDragAdd(evt: any): void;
2560
- onDragRemove(evt: any): void;
2561
- onDragUpdate(evt: any): void;
2562
- computeFutureIndex(relatedContext: any, evt: any): any;
2563
- onDragMove(evt: any, originalEvent: any): any;
2564
- onDragEnd(): void;
2565
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any[], any, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
2566
- move: Function;
2567
- tag: string;
2568
- clone: Function;
2569
- list: unknown[];
2570
- modelValue: unknown[];
2571
- componentData: Record<string, any>;
2572
- } & {
2573
- itemKey?: string | Function | undefined;
2574
- }>, {
2575
- move: Function;
2576
- tag: string;
2577
- clone: Function;
2578
- list: unknown[];
2579
- modelValue: unknown[];
2580
- componentData: Record<string, any>;
2581
- }>;
2582
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onSave" | "onClose")[], "onSave" | "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
2583
- fields: {
2584
- type: PropType<any[]>;
2585
- default: () => never[];
2586
- };
2587
- menuSource: {
2588
- type: StringConstructor;
2589
- default: string;
2590
- };
2591
- drawerDirection: {
2592
- type: StringConstructor;
2593
- default: string;
2594
- };
2595
- footerFlag: {
2596
- type: BooleanConstructor;
2597
- default: boolean;
2598
- };
2599
- }>> & {
2600
- onOnSave?: ((...args: any[]) => any) | undefined;
2601
- onOnClose?: ((...args: any[]) => any) | undefined;
2602
- }, {
2603
- fields: any[];
2604
- menuSource: string;
2605
- drawerDirection: string;
2606
- footerFlag: boolean;
2607
- }>;
2608
- export default _default;