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