lty-protocol 1.0.40 → 1.0.42

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 (66) hide show
  1. package/README.md +133 -0
  2. package/dist/{views/Ethernet.vue.d.ts → components/base/Panel.vue.d.ts} +4 -2
  3. package/dist/components/{Tab.vue.d.ts → base/Tab.vue.d.ts} +1 -3
  4. package/dist/components/{InputNumber.vue.d.ts → base/baseComponents/Checkbox.vue.d.ts} +1 -0
  5. package/dist/components/base/baseComponents/Input.vue.d.ts +10 -0
  6. package/dist/components/base/baseComponents/InputNumber.vue.d.ts +11 -0
  7. package/dist/components/base/baseComponents/Select.vue.d.ts +13 -0
  8. package/dist/components/base/baseComponents/Table.vue.d.ts +28 -0
  9. package/dist/components/base/baseComponents/index.d.ts +9 -0
  10. package/dist/components/base/index.d.ts +4 -0
  11. package/dist/components/naiveUi/Panel.vue.d.ts +8 -0
  12. package/dist/components/naiveUi/baseComponents/Checkbox.vue.d.ts +10 -0
  13. package/dist/components/naiveUi/baseComponents/Form.vue.d.ts +312 -0
  14. package/dist/components/naiveUi/baseComponents/Input.vue.d.ts +11 -0
  15. package/dist/components/naiveUi/baseComponents/InputNumber.vue.d.ts +14 -0
  16. package/dist/components/naiveUi/baseComponents/IpInput.vue.d.ts +10 -0
  17. package/dist/components/naiveUi/baseComponents/Select.vue.d.ts +16 -0
  18. package/dist/components/naiveUi/baseComponents/Switch.vue.d.ts +9 -0
  19. package/dist/components/naiveUi/baseComponents/Tab.vue.d.ts +23 -0
  20. package/dist/components/naiveUi/baseComponents/Table.vue.d.ts +43 -0
  21. package/dist/components/naiveUi/baseComponents/index.d.ts +11 -0
  22. package/dist/components/naiveUi/index.d.ts +3 -0
  23. package/dist/i18n/index.d.ts +174 -0
  24. package/dist/i18n/lang/en.json.d.ts +106 -0
  25. package/dist/i18n/lang/zh.json.d.ts +106 -0
  26. package/dist/index.d.ts +3 -5
  27. package/dist/keys.d.ts +1 -1
  28. package/dist/lty-protocol.css +1 -1
  29. package/dist/lty-protocol.mjs +34706 -306
  30. package/dist/lty-protocol.umd.js +3195 -1
  31. package/dist/models/collection.d.ts +33 -10
  32. package/dist/models/modbus/EthernetProtocolItem.d.ts +11 -0
  33. package/dist/models/modbus/ModbusTCPClientProtocolItem.d.ts +59 -0
  34. package/dist/models/modbus/ModbusTCPServerProtocolItem.d.ts +11 -0
  35. package/dist/models/modbus/ModbusTCPSlaveDeviceProtocolItem.d.ts +48 -0
  36. package/dist/models/modbus/addressAllocator.d.ts +30 -0
  37. package/dist/models/modbus/configParser.d.ts +1 -0
  38. package/dist/models/modbus/ethernet.json.d.ts +9 -1
  39. package/dist/models/modbus/index.d.ts +7 -29
  40. package/dist/models/modbus/ioMapping.d.ts +33 -0
  41. package/dist/models/modbus/modbusTcpClient.json.d.ts +112 -0
  42. package/dist/models/modbus/modbusTcpServer.json.d.ts +108 -0
  43. package/dist/models/modbus/modbusTcpSlaveDevice.json.d.ts +304 -0
  44. package/dist/models/modbus/types.d.ts +34 -0
  45. package/dist/models/protocolItem.d.ts +53 -1
  46. package/dist/types/base.d.ts +3 -2
  47. package/dist/utils/eventBus.d.ts +9 -0
  48. package/dist/utils/getUUID.d.ts +5 -0
  49. package/dist/utils/index.d.ts +6 -0
  50. package/dist/views/ProtocolPage.vue.d.ts +27 -0
  51. package/dist/views/components/general/index.vue.d.ts +301 -0
  52. package/dist/views/components/index.d.ts +6 -0
  53. package/dist/views/components/modbusChannel/AddChannelModal.vue.d.ts +15 -0
  54. package/dist/views/components/modbusChannel/InfoTable.vue.d.ts +2 -0
  55. package/dist/views/components/modbusChannel/index.vue.d.ts +696 -0
  56. package/dist/views/components/modbusChannel/options.d.ts +13 -0
  57. package/dist/views/components/processData/index.vue.d.ts +24 -0
  58. package/dist/views/components/status/index.vue.d.ts +8620 -0
  59. package/dist/views/components/status/utils/iec-byte-converter.d.ts +100 -0
  60. package/dist/views/components/status/utils/index.d.ts +26 -0
  61. package/dist/views/components/status/xmlFiles/index.d.ts +10 -0
  62. package/dist/views/index.d.ts +3 -0
  63. package/package.json +39 -33
  64. package/dist/plugin.d.ts +0 -3
  65. /package/dist/components/{IpInput.vue.d.ts → base/baseComponents/IpInput.vue.d.ts} +0 -0
  66. /package/dist/components/{Input.vue.d.ts → base/baseComponents/Switch.vue.d.ts} +0 -0
@@ -0,0 +1,696 @@
1
+ import { ModbusTCPClientProtocolItem } from '../../../models';
2
+ type __VLS_Props = {
3
+ instance: ModbusTCPClientProtocolItem;
4
+ };
5
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
6
+ alertRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
7
+ title: StringConstructor;
8
+ showIcon: {
9
+ type: BooleanConstructor;
10
+ default: boolean;
11
+ };
12
+ type: {
13
+ type: import('vue').PropType<"info" | "warning" | "error" | "success" | "default">;
14
+ default: string;
15
+ };
16
+ bordered: {
17
+ type: BooleanConstructor;
18
+ default: boolean;
19
+ };
20
+ closable: BooleanConstructor;
21
+ onClose: FunctionConstructor;
22
+ onAfterLeave: FunctionConstructor;
23
+ onAfterHide: FunctionConstructor;
24
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Alert", {
25
+ fontSize: string;
26
+ lineHeight: string;
27
+ titleFontWeight: string;
28
+ borderRadius: string;
29
+ border: string;
30
+ color: string;
31
+ titleTextColor: string;
32
+ iconColor: string;
33
+ contentTextColor: string;
34
+ closeBorderRadius: string;
35
+ closeColorHover: string;
36
+ closeColorPressed: string;
37
+ closeIconColor: string;
38
+ closeIconColorHover: string;
39
+ closeIconColorPressed: string;
40
+ borderInfo: string;
41
+ colorInfo: string;
42
+ titleTextColorInfo: string;
43
+ iconColorInfo: string;
44
+ contentTextColorInfo: string;
45
+ closeColorHoverInfo: string;
46
+ closeColorPressedInfo: string;
47
+ closeIconColorInfo: string;
48
+ closeIconColorHoverInfo: string;
49
+ closeIconColorPressedInfo: string;
50
+ borderSuccess: string;
51
+ colorSuccess: string;
52
+ titleTextColorSuccess: string;
53
+ iconColorSuccess: string;
54
+ contentTextColorSuccess: string;
55
+ closeColorHoverSuccess: string;
56
+ closeColorPressedSuccess: string;
57
+ closeIconColorSuccess: string;
58
+ closeIconColorHoverSuccess: string;
59
+ closeIconColorPressedSuccess: string;
60
+ borderWarning: string;
61
+ colorWarning: string;
62
+ titleTextColorWarning: string;
63
+ iconColorWarning: string;
64
+ contentTextColorWarning: string;
65
+ closeColorHoverWarning: string;
66
+ closeColorPressedWarning: string;
67
+ closeIconColorWarning: string;
68
+ closeIconColorHoverWarning: string;
69
+ closeIconColorPressedWarning: string;
70
+ borderError: string;
71
+ colorError: string;
72
+ titleTextColorError: string;
73
+ iconColorError: string;
74
+ contentTextColorError: string;
75
+ closeColorHoverError: string;
76
+ closeColorPressedError: string;
77
+ closeIconColorError: string;
78
+ closeIconColorHoverError: string;
79
+ closeIconColorPressedError: string;
80
+ iconMargin: string;
81
+ iconMarginRtl: string;
82
+ iconSize: string;
83
+ closeIconSize: string;
84
+ closeSize: string;
85
+ closeMargin: string;
86
+ closeMarginRtl: string;
87
+ padding: string;
88
+ }, any>>;
89
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Alert", {
90
+ fontSize: string;
91
+ lineHeight: string;
92
+ titleFontWeight: string;
93
+ borderRadius: string;
94
+ border: string;
95
+ color: string;
96
+ titleTextColor: string;
97
+ iconColor: string;
98
+ contentTextColor: string;
99
+ closeBorderRadius: string;
100
+ closeColorHover: string;
101
+ closeColorPressed: string;
102
+ closeIconColor: string;
103
+ closeIconColorHover: string;
104
+ closeIconColorPressed: string;
105
+ borderInfo: string;
106
+ colorInfo: string;
107
+ titleTextColorInfo: string;
108
+ iconColorInfo: string;
109
+ contentTextColorInfo: string;
110
+ closeColorHoverInfo: string;
111
+ closeColorPressedInfo: string;
112
+ closeIconColorInfo: string;
113
+ closeIconColorHoverInfo: string;
114
+ closeIconColorPressedInfo: string;
115
+ borderSuccess: string;
116
+ colorSuccess: string;
117
+ titleTextColorSuccess: string;
118
+ iconColorSuccess: string;
119
+ contentTextColorSuccess: string;
120
+ closeColorHoverSuccess: string;
121
+ closeColorPressedSuccess: string;
122
+ closeIconColorSuccess: string;
123
+ closeIconColorHoverSuccess: string;
124
+ closeIconColorPressedSuccess: string;
125
+ borderWarning: string;
126
+ colorWarning: string;
127
+ titleTextColorWarning: string;
128
+ iconColorWarning: string;
129
+ contentTextColorWarning: string;
130
+ closeColorHoverWarning: string;
131
+ closeColorPressedWarning: string;
132
+ closeIconColorWarning: string;
133
+ closeIconColorHoverWarning: string;
134
+ closeIconColorPressedWarning: string;
135
+ borderError: string;
136
+ colorError: string;
137
+ titleTextColorError: string;
138
+ iconColorError: string;
139
+ contentTextColorError: string;
140
+ closeColorHoverError: string;
141
+ closeColorPressedError: string;
142
+ closeIconColorError: string;
143
+ closeIconColorHoverError: string;
144
+ closeIconColorPressedError: string;
145
+ iconMargin: string;
146
+ iconMarginRtl: string;
147
+ iconSize: string;
148
+ closeIconSize: string;
149
+ closeSize: string;
150
+ closeMargin: string;
151
+ closeMarginRtl: string;
152
+ padding: string;
153
+ }, any>>>;
154
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Alert", {
155
+ fontSize: string;
156
+ lineHeight: string;
157
+ titleFontWeight: string;
158
+ borderRadius: string;
159
+ border: string;
160
+ color: string;
161
+ titleTextColor: string;
162
+ iconColor: string;
163
+ contentTextColor: string;
164
+ closeBorderRadius: string;
165
+ closeColorHover: string;
166
+ closeColorPressed: string;
167
+ closeIconColor: string;
168
+ closeIconColorHover: string;
169
+ closeIconColorPressed: string;
170
+ borderInfo: string;
171
+ colorInfo: string;
172
+ titleTextColorInfo: string;
173
+ iconColorInfo: string;
174
+ contentTextColorInfo: string;
175
+ closeColorHoverInfo: string;
176
+ closeColorPressedInfo: string;
177
+ closeIconColorInfo: string;
178
+ closeIconColorHoverInfo: string;
179
+ closeIconColorPressedInfo: string;
180
+ borderSuccess: string;
181
+ colorSuccess: string;
182
+ titleTextColorSuccess: string;
183
+ iconColorSuccess: string;
184
+ contentTextColorSuccess: string;
185
+ closeColorHoverSuccess: string;
186
+ closeColorPressedSuccess: string;
187
+ closeIconColorSuccess: string;
188
+ closeIconColorHoverSuccess: string;
189
+ closeIconColorPressedSuccess: string;
190
+ borderWarning: string;
191
+ colorWarning: string;
192
+ titleTextColorWarning: string;
193
+ iconColorWarning: string;
194
+ contentTextColorWarning: string;
195
+ closeColorHoverWarning: string;
196
+ closeColorPressedWarning: string;
197
+ closeIconColorWarning: string;
198
+ closeIconColorHoverWarning: string;
199
+ closeIconColorPressedWarning: string;
200
+ borderError: string;
201
+ colorError: string;
202
+ titleTextColorError: string;
203
+ iconColorError: string;
204
+ contentTextColorError: string;
205
+ closeColorHoverError: string;
206
+ closeColorPressedError: string;
207
+ closeIconColorError: string;
208
+ closeIconColorHoverError: string;
209
+ closeIconColorPressedError: string;
210
+ iconMargin: string;
211
+ iconMarginRtl: string;
212
+ iconSize: string;
213
+ closeIconSize: string;
214
+ closeSize: string;
215
+ closeMargin: string;
216
+ closeMarginRtl: string;
217
+ padding: string;
218
+ }, any>>>;
219
+ }>> & Readonly<{}>, {
220
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
221
+ mergedClsPrefix: import('vue').Ref<string, string>;
222
+ mergedBordered: import('vue').ComputedRef<boolean>;
223
+ visible: import('vue').Ref<boolean, boolean>;
224
+ handleCloseClick: () => void;
225
+ handleAfterLeave: () => void;
226
+ mergedTheme: import('vue').ComputedRef<{
227
+ common: import('naive-ui').ThemeCommonVars;
228
+ self: {
229
+ fontSize: string;
230
+ lineHeight: string;
231
+ titleFontWeight: string;
232
+ borderRadius: string;
233
+ border: string;
234
+ color: string;
235
+ titleTextColor: string;
236
+ iconColor: string;
237
+ contentTextColor: string;
238
+ closeBorderRadius: string;
239
+ closeColorHover: string;
240
+ closeColorPressed: string;
241
+ closeIconColor: string;
242
+ closeIconColorHover: string;
243
+ closeIconColorPressed: string;
244
+ borderInfo: string;
245
+ colorInfo: string;
246
+ titleTextColorInfo: string;
247
+ iconColorInfo: string;
248
+ contentTextColorInfo: string;
249
+ closeColorHoverInfo: string;
250
+ closeColorPressedInfo: string;
251
+ closeIconColorInfo: string;
252
+ closeIconColorHoverInfo: string;
253
+ closeIconColorPressedInfo: string;
254
+ borderSuccess: string;
255
+ colorSuccess: string;
256
+ titleTextColorSuccess: string;
257
+ iconColorSuccess: string;
258
+ contentTextColorSuccess: string;
259
+ closeColorHoverSuccess: string;
260
+ closeColorPressedSuccess: string;
261
+ closeIconColorSuccess: string;
262
+ closeIconColorHoverSuccess: string;
263
+ closeIconColorPressedSuccess: string;
264
+ borderWarning: string;
265
+ colorWarning: string;
266
+ titleTextColorWarning: string;
267
+ iconColorWarning: string;
268
+ contentTextColorWarning: string;
269
+ closeColorHoverWarning: string;
270
+ closeColorPressedWarning: string;
271
+ closeIconColorWarning: string;
272
+ closeIconColorHoverWarning: string;
273
+ closeIconColorPressedWarning: string;
274
+ borderError: string;
275
+ colorError: string;
276
+ titleTextColorError: string;
277
+ iconColorError: string;
278
+ contentTextColorError: string;
279
+ closeColorHoverError: string;
280
+ closeColorPressedError: string;
281
+ closeIconColorError: string;
282
+ closeIconColorHoverError: string;
283
+ closeIconColorPressedError: string;
284
+ iconMargin: string;
285
+ iconMarginRtl: string;
286
+ iconSize: string;
287
+ closeIconSize: string;
288
+ closeSize: string;
289
+ closeMargin: string;
290
+ closeMarginRtl: string;
291
+ padding: string;
292
+ };
293
+ peers: any;
294
+ peerOverrides: {
295
+ [x: string]: any;
296
+ };
297
+ }>;
298
+ cssVars: import('vue').ComputedRef<{
299
+ "--n-bezier": string;
300
+ "--n-color": string;
301
+ "--n-close-icon-size": string;
302
+ "--n-close-border-radius": string;
303
+ "--n-close-color-hover": string;
304
+ "--n-close-color-pressed": string;
305
+ "--n-close-icon-color": string;
306
+ "--n-close-icon-color-hover": string;
307
+ "--n-close-icon-color-pressed": string;
308
+ "--n-icon-color": string;
309
+ "--n-border": string;
310
+ "--n-title-text-color": string;
311
+ "--n-content-text-color": string;
312
+ "--n-line-height": string;
313
+ "--n-border-radius": string;
314
+ "--n-font-size": string;
315
+ "--n-title-font-weight": string;
316
+ "--n-icon-size": string;
317
+ "--n-icon-margin": string;
318
+ "--n-icon-margin-rtl": string;
319
+ "--n-close-size": string;
320
+ "--n-close-margin": string;
321
+ "--n-close-margin-rtl": string;
322
+ "--n-padding": string;
323
+ "--n-icon-margin-left": string;
324
+ "--n-icon-margin-right": string;
325
+ }> | undefined;
326
+ themeClass: import('vue').Ref<string, string> | undefined;
327
+ onRender: (() => void) | undefined;
328
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
329
+ type: "default" | "info" | "warning" | "error" | "success";
330
+ showIcon: boolean;
331
+ bordered: boolean;
332
+ closable: boolean;
333
+ }, true, {}, import('vue').SlotsType<import('naive-ui').AlertSlots>, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
334
+ P: {};
335
+ B: {};
336
+ D: {};
337
+ C: {};
338
+ M: {};
339
+ Defaults: {};
340
+ }, Readonly<import('vue').ExtractPropTypes<{
341
+ title: StringConstructor;
342
+ showIcon: {
343
+ type: BooleanConstructor;
344
+ default: boolean;
345
+ };
346
+ type: {
347
+ type: import('vue').PropType<"info" | "warning" | "error" | "success" | "default">;
348
+ default: string;
349
+ };
350
+ bordered: {
351
+ type: BooleanConstructor;
352
+ default: boolean;
353
+ };
354
+ closable: BooleanConstructor;
355
+ onClose: FunctionConstructor;
356
+ onAfterLeave: FunctionConstructor;
357
+ onAfterHide: FunctionConstructor;
358
+ theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Alert", {
359
+ fontSize: string;
360
+ lineHeight: string;
361
+ titleFontWeight: string;
362
+ borderRadius: string;
363
+ border: string;
364
+ color: string;
365
+ titleTextColor: string;
366
+ iconColor: string;
367
+ contentTextColor: string;
368
+ closeBorderRadius: string;
369
+ closeColorHover: string;
370
+ closeColorPressed: string;
371
+ closeIconColor: string;
372
+ closeIconColorHover: string;
373
+ closeIconColorPressed: string;
374
+ borderInfo: string;
375
+ colorInfo: string;
376
+ titleTextColorInfo: string;
377
+ iconColorInfo: string;
378
+ contentTextColorInfo: string;
379
+ closeColorHoverInfo: string;
380
+ closeColorPressedInfo: string;
381
+ closeIconColorInfo: string;
382
+ closeIconColorHoverInfo: string;
383
+ closeIconColorPressedInfo: string;
384
+ borderSuccess: string;
385
+ colorSuccess: string;
386
+ titleTextColorSuccess: string;
387
+ iconColorSuccess: string;
388
+ contentTextColorSuccess: string;
389
+ closeColorHoverSuccess: string;
390
+ closeColorPressedSuccess: string;
391
+ closeIconColorSuccess: string;
392
+ closeIconColorHoverSuccess: string;
393
+ closeIconColorPressedSuccess: string;
394
+ borderWarning: string;
395
+ colorWarning: string;
396
+ titleTextColorWarning: string;
397
+ iconColorWarning: string;
398
+ contentTextColorWarning: string;
399
+ closeColorHoverWarning: string;
400
+ closeColorPressedWarning: string;
401
+ closeIconColorWarning: string;
402
+ closeIconColorHoverWarning: string;
403
+ closeIconColorPressedWarning: string;
404
+ borderError: string;
405
+ colorError: string;
406
+ titleTextColorError: string;
407
+ iconColorError: string;
408
+ contentTextColorError: string;
409
+ closeColorHoverError: string;
410
+ closeColorPressedError: string;
411
+ closeIconColorError: string;
412
+ closeIconColorHoverError: string;
413
+ closeIconColorPressedError: string;
414
+ iconMargin: string;
415
+ iconMarginRtl: string;
416
+ iconSize: string;
417
+ closeIconSize: string;
418
+ closeSize: string;
419
+ closeMargin: string;
420
+ closeMarginRtl: string;
421
+ padding: string;
422
+ }, any>>;
423
+ themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Alert", {
424
+ fontSize: string;
425
+ lineHeight: string;
426
+ titleFontWeight: string;
427
+ borderRadius: string;
428
+ border: string;
429
+ color: string;
430
+ titleTextColor: string;
431
+ iconColor: string;
432
+ contentTextColor: string;
433
+ closeBorderRadius: string;
434
+ closeColorHover: string;
435
+ closeColorPressed: string;
436
+ closeIconColor: string;
437
+ closeIconColorHover: string;
438
+ closeIconColorPressed: string;
439
+ borderInfo: string;
440
+ colorInfo: string;
441
+ titleTextColorInfo: string;
442
+ iconColorInfo: string;
443
+ contentTextColorInfo: string;
444
+ closeColorHoverInfo: string;
445
+ closeColorPressedInfo: string;
446
+ closeIconColorInfo: string;
447
+ closeIconColorHoverInfo: string;
448
+ closeIconColorPressedInfo: string;
449
+ borderSuccess: string;
450
+ colorSuccess: string;
451
+ titleTextColorSuccess: string;
452
+ iconColorSuccess: string;
453
+ contentTextColorSuccess: string;
454
+ closeColorHoverSuccess: string;
455
+ closeColorPressedSuccess: string;
456
+ closeIconColorSuccess: string;
457
+ closeIconColorHoverSuccess: string;
458
+ closeIconColorPressedSuccess: string;
459
+ borderWarning: string;
460
+ colorWarning: string;
461
+ titleTextColorWarning: string;
462
+ iconColorWarning: string;
463
+ contentTextColorWarning: string;
464
+ closeColorHoverWarning: string;
465
+ closeColorPressedWarning: string;
466
+ closeIconColorWarning: string;
467
+ closeIconColorHoverWarning: string;
468
+ closeIconColorPressedWarning: string;
469
+ borderError: string;
470
+ colorError: string;
471
+ titleTextColorError: string;
472
+ iconColorError: string;
473
+ contentTextColorError: string;
474
+ closeColorHoverError: string;
475
+ closeColorPressedError: string;
476
+ closeIconColorError: string;
477
+ closeIconColorHoverError: string;
478
+ closeIconColorPressedError: string;
479
+ iconMargin: string;
480
+ iconMarginRtl: string;
481
+ iconSize: string;
482
+ closeIconSize: string;
483
+ closeSize: string;
484
+ closeMargin: string;
485
+ closeMarginRtl: string;
486
+ padding: string;
487
+ }, any>>>;
488
+ builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Alert", {
489
+ fontSize: string;
490
+ lineHeight: string;
491
+ titleFontWeight: string;
492
+ borderRadius: string;
493
+ border: string;
494
+ color: string;
495
+ titleTextColor: string;
496
+ iconColor: string;
497
+ contentTextColor: string;
498
+ closeBorderRadius: string;
499
+ closeColorHover: string;
500
+ closeColorPressed: string;
501
+ closeIconColor: string;
502
+ closeIconColorHover: string;
503
+ closeIconColorPressed: string;
504
+ borderInfo: string;
505
+ colorInfo: string;
506
+ titleTextColorInfo: string;
507
+ iconColorInfo: string;
508
+ contentTextColorInfo: string;
509
+ closeColorHoverInfo: string;
510
+ closeColorPressedInfo: string;
511
+ closeIconColorInfo: string;
512
+ closeIconColorHoverInfo: string;
513
+ closeIconColorPressedInfo: string;
514
+ borderSuccess: string;
515
+ colorSuccess: string;
516
+ titleTextColorSuccess: string;
517
+ iconColorSuccess: string;
518
+ contentTextColorSuccess: string;
519
+ closeColorHoverSuccess: string;
520
+ closeColorPressedSuccess: string;
521
+ closeIconColorSuccess: string;
522
+ closeIconColorHoverSuccess: string;
523
+ closeIconColorPressedSuccess: string;
524
+ borderWarning: string;
525
+ colorWarning: string;
526
+ titleTextColorWarning: string;
527
+ iconColorWarning: string;
528
+ contentTextColorWarning: string;
529
+ closeColorHoverWarning: string;
530
+ closeColorPressedWarning: string;
531
+ closeIconColorWarning: string;
532
+ closeIconColorHoverWarning: string;
533
+ closeIconColorPressedWarning: string;
534
+ borderError: string;
535
+ colorError: string;
536
+ titleTextColorError: string;
537
+ iconColorError: string;
538
+ contentTextColorError: string;
539
+ closeColorHoverError: string;
540
+ closeColorPressedError: string;
541
+ closeIconColorError: string;
542
+ closeIconColorHoverError: string;
543
+ closeIconColorPressedError: string;
544
+ iconMargin: string;
545
+ iconMarginRtl: string;
546
+ iconSize: string;
547
+ closeIconSize: string;
548
+ closeSize: string;
549
+ closeMargin: string;
550
+ closeMarginRtl: string;
551
+ padding: string;
552
+ }, any>>>;
553
+ }>> & Readonly<{}>, {
554
+ rtlEnabled: import('vue').Ref<import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined, import('naive-ui/es/config-provider/src/internal-interface').RtlItem | undefined> | undefined;
555
+ mergedClsPrefix: import('vue').Ref<string, string>;
556
+ mergedBordered: import('vue').ComputedRef<boolean>;
557
+ visible: import('vue').Ref<boolean, boolean>;
558
+ handleCloseClick: () => void;
559
+ handleAfterLeave: () => void;
560
+ mergedTheme: import('vue').ComputedRef<{
561
+ common: import('naive-ui').ThemeCommonVars;
562
+ self: {
563
+ fontSize: string;
564
+ lineHeight: string;
565
+ titleFontWeight: string;
566
+ borderRadius: string;
567
+ border: string;
568
+ color: string;
569
+ titleTextColor: string;
570
+ iconColor: string;
571
+ contentTextColor: string;
572
+ closeBorderRadius: string;
573
+ closeColorHover: string;
574
+ closeColorPressed: string;
575
+ closeIconColor: string;
576
+ closeIconColorHover: string;
577
+ closeIconColorPressed: string;
578
+ borderInfo: string;
579
+ colorInfo: string;
580
+ titleTextColorInfo: string;
581
+ iconColorInfo: string;
582
+ contentTextColorInfo: string;
583
+ closeColorHoverInfo: string;
584
+ closeColorPressedInfo: string;
585
+ closeIconColorInfo: string;
586
+ closeIconColorHoverInfo: string;
587
+ closeIconColorPressedInfo: string;
588
+ borderSuccess: string;
589
+ colorSuccess: string;
590
+ titleTextColorSuccess: string;
591
+ iconColorSuccess: string;
592
+ contentTextColorSuccess: string;
593
+ closeColorHoverSuccess: string;
594
+ closeColorPressedSuccess: string;
595
+ closeIconColorSuccess: string;
596
+ closeIconColorHoverSuccess: string;
597
+ closeIconColorPressedSuccess: string;
598
+ borderWarning: string;
599
+ colorWarning: string;
600
+ titleTextColorWarning: string;
601
+ iconColorWarning: string;
602
+ contentTextColorWarning: string;
603
+ closeColorHoverWarning: string;
604
+ closeColorPressedWarning: string;
605
+ closeIconColorWarning: string;
606
+ closeIconColorHoverWarning: string;
607
+ closeIconColorPressedWarning: string;
608
+ borderError: string;
609
+ colorError: string;
610
+ titleTextColorError: string;
611
+ iconColorError: string;
612
+ contentTextColorError: string;
613
+ closeColorHoverError: string;
614
+ closeColorPressedError: string;
615
+ closeIconColorError: string;
616
+ closeIconColorHoverError: string;
617
+ closeIconColorPressedError: string;
618
+ iconMargin: string;
619
+ iconMarginRtl: string;
620
+ iconSize: string;
621
+ closeIconSize: string;
622
+ closeSize: string;
623
+ closeMargin: string;
624
+ closeMarginRtl: string;
625
+ padding: string;
626
+ };
627
+ peers: any;
628
+ peerOverrides: {
629
+ [x: string]: any;
630
+ };
631
+ }>;
632
+ cssVars: import('vue').ComputedRef<{
633
+ "--n-bezier": string;
634
+ "--n-color": string;
635
+ "--n-close-icon-size": string;
636
+ "--n-close-border-radius": string;
637
+ "--n-close-color-hover": string;
638
+ "--n-close-color-pressed": string;
639
+ "--n-close-icon-color": string;
640
+ "--n-close-icon-color-hover": string;
641
+ "--n-close-icon-color-pressed": string;
642
+ "--n-icon-color": string;
643
+ "--n-border": string;
644
+ "--n-title-text-color": string;
645
+ "--n-content-text-color": string;
646
+ "--n-line-height": string;
647
+ "--n-border-radius": string;
648
+ "--n-font-size": string;
649
+ "--n-title-font-weight": string;
650
+ "--n-icon-size": string;
651
+ "--n-icon-margin": string;
652
+ "--n-icon-margin-rtl": string;
653
+ "--n-close-size": string;
654
+ "--n-close-margin": string;
655
+ "--n-close-margin-rtl": string;
656
+ "--n-padding": string;
657
+ "--n-icon-margin-left": string;
658
+ "--n-icon-margin-right": string;
659
+ }> | undefined;
660
+ themeClass: import('vue').Ref<string, string> | undefined;
661
+ onRender: (() => void) | undefined;
662
+ }, {}, {}, {}, {
663
+ type: "default" | "info" | "warning" | "error" | "success";
664
+ showIcon: boolean;
665
+ bordered: boolean;
666
+ closable: boolean;
667
+ }> | null;
668
+ addChannelModalRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
669
+ data: import('naive-ui').DataTableRowData;
670
+ tableData: import('naive-ui').DataTableRowData[];
671
+ }> & Readonly<{
672
+ onInitForm?: ((...args: any[]) => any) | undefined;
673
+ onConfirm?: ((...args: any[]) => any) | undefined;
674
+ }>, {
675
+ showModal: (nameIndex?: number) => void;
676
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
677
+ initForm: (...args: any[]) => void;
678
+ confirm: (...args: any[]) => void;
679
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
680
+ P: {};
681
+ B: {};
682
+ D: {};
683
+ C: {};
684
+ M: {};
685
+ Defaults: {};
686
+ }, Readonly<{
687
+ data: import('naive-ui').DataTableRowData;
688
+ tableData: import('naive-ui').DataTableRowData[];
689
+ }> & Readonly<{
690
+ onInitForm?: ((...args: any[]) => any) | undefined;
691
+ onConfirm?: ((...args: any[]) => any) | undefined;
692
+ }>, {
693
+ showModal: (nameIndex?: number) => void;
694
+ }, {}, {}, {}, {}> | null;
695
+ }, any>;
696
+ export default _default;