cnhis-design-vue 3.1.13-beta.7 → 3.1.13

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 (51) hide show
  1. package/es/packages/big-table/src/BigTable.vue.d.ts +6 -15
  2. package/es/packages/big-table/src/BigTable.vue_vue_type_script_setup_true_lang.js +11 -2
  3. package/es/packages/big-table/src/bigTableEmits.js +2 -1
  4. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.d.ts +12 -0
  5. package/es/packages/big-table/src/hooks/useColumnConfigAdaptor.js +91 -0
  6. package/es/packages/button-print/index.d.ts +15 -1
  7. package/es/packages/button-print/src/ButtonPrint.vue.d.ts +199 -185
  8. package/es/packages/button-print/src/ButtonPrint.vue_vue_type_script_setup_true_lang.js +39 -4
  9. package/es/packages/button-print/src/utils/print.d.ts +41 -0
  10. package/es/packages/button-print/src/utils/print.js +325 -0
  11. package/es/packages/fabric-chart/index.d.ts +3 -4
  12. package/es/packages/fabric-chart/src/FabricChart.vue.d.ts +3 -4
  13. package/es/packages/fabric-chart/src/FabricChart.vue_vue_type_script_setup_true_lang.js +21 -12
  14. package/es/packages/fabric-chart/src/hooks/useBottom.js +2 -3
  15. package/es/packages/fabric-chart/src/hooks/useCenter.js +33 -11
  16. package/es/packages/fabric-chart/src/hooks/useCumputedPoint.d.ts +2 -2
  17. package/es/packages/fabric-chart/src/hooks/useCumputedPoint.js +27 -13
  18. package/es/packages/fabric-chart/src/hooks/useGrid.js +18 -13
  19. package/es/packages/fabric-chart/src/hooks/useLeft.js +63 -40
  20. package/es/packages/fabric-chart/src/hooks/useRight.js +2 -2
  21. package/es/packages/fabric-chart/src/interface.d.ts +6 -3
  22. package/es/packages/fabric-chart/src/utils/index.d.ts +6815 -6815
  23. package/es/packages/form-render/index.d.ts +297 -0
  24. package/es/packages/form-render/src/FormRender.vue.d.ts +297 -0
  25. package/es/packages/form-render/src/FormRender.vue_vue_type_script_setup_true_lang.js +34 -24
  26. package/es/packages/form-render/src/components/renderer/formItem.js +6 -4
  27. package/es/packages/form-render/src/hooks/useAnchor.js +3 -3
  28. package/es/packages/form-render/src/hooks/useFieldListAdaptor.js +2 -2
  29. package/es/packages/form-render/src/hooks/useFieldVisitor.js +3 -0
  30. package/es/packages/form-render/src/hooks/useFormItemDeps.js +2 -3
  31. package/es/packages/form-render/src/utils/index.d.ts +1 -0
  32. package/es/packages/form-render/src/utils/index.js +4 -1
  33. package/es/packages/form-render/style/index.css +25 -7
  34. package/es/packages/form-table/src/hooks/useNuiThemeOverrides.d.ts +4 -0
  35. package/es/packages/form-table/src/hooks/useNuiThemeOverrides.js +18 -0
  36. package/es/packages/index.css +193 -9
  37. package/es/packages/index.d.ts +2 -1
  38. package/es/packages/index.js +3 -0
  39. package/es/packages/steps-wheel/index.d.ts +548 -0
  40. package/es/packages/steps-wheel/index.js +11 -0
  41. package/es/packages/steps-wheel/src/StepsWheel.js +4 -0
  42. package/es/packages/steps-wheel/src/StepsWheel.vue.d.ts +547 -0
  43. package/es/packages/steps-wheel/src/StepsWheel.vue_vue_type_script_setup_true_lang.js +252 -0
  44. package/es/packages/steps-wheel/style/index.css +161 -0
  45. package/es/packages/time-line/index.d.ts +1 -0
  46. package/es/packages/time-line/src/TimeLine.vue.d.ts +1 -0
  47. package/es/packages/time-line/src/TimeLine.vue_vue_type_script_setup_true_lang.js +6 -1
  48. package/es/packages/time-line/style/index.css +7 -2
  49. package/package.json +1 -1
  50. package/es/packages/button-print/src/utils/print.es.min.d.ts +0 -2
  51. package/es/packages/button-print/src/utils/print.es.min.js +0 -2532
@@ -221,6 +221,7 @@ declare const FormRender: SFCWithInstall<import("vue").DefineComponent<{
221
221
  onFormChange?: ((...args: any[]) => any) | undefined;
222
222
  }>>;
223
223
  emit: (event: "formChange", ...args: any[]) => void;
224
+ nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
224
225
  SchemaField: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
225
226
  businessCollector: import("./src/hooks").BusinessCollector;
226
227
  formItemDepsCollector: import("./src/hooks").FormItemDepsCollector;
@@ -1310,6 +1311,302 @@ declare const FormRender: SFCWithInstall<import("vue").DefineComponent<{
1310
1311
  readonly animated: boolean;
1311
1312
  readonly tabsPadding: number;
1312
1313
  }>;
1314
+ NConfigProvider: import("vue").DefineComponent<{
1315
+ readonly abstract: BooleanConstructor;
1316
+ readonly bordered: {
1317
+ readonly type: import("vue").PropType<boolean | undefined>;
1318
+ readonly default: undefined;
1319
+ };
1320
+ readonly clsPrefix: StringConstructor;
1321
+ readonly locale: import("vue").PropType<{
1322
+ name: string;
1323
+ global: {
1324
+ undo: string;
1325
+ redo: string;
1326
+ confirm: string;
1327
+ };
1328
+ Popconfirm: {
1329
+ positiveText: string;
1330
+ negativeText: string;
1331
+ };
1332
+ Cascader: {
1333
+ placeholder: string;
1334
+ loading: string;
1335
+ loadingRequiredMessage: (label: string) => string;
1336
+ };
1337
+ Time: {
1338
+ dateFormat: string;
1339
+ dateTimeFormat: string;
1340
+ };
1341
+ DatePicker: {
1342
+ yearFormat: string;
1343
+ monthFormat: string;
1344
+ dayFormat: string;
1345
+ yearTypeFormat: string;
1346
+ monthTypeFormat: string;
1347
+ dateFormat: string;
1348
+ dateTimeFormat: string;
1349
+ quarterFormat: string;
1350
+ clear: string;
1351
+ now: string;
1352
+ confirm: string;
1353
+ selectTime: string;
1354
+ selectDate: string;
1355
+ datePlaceholder: string;
1356
+ datetimePlaceholder: string;
1357
+ monthPlaceholder: string;
1358
+ yearPlaceholder: string;
1359
+ quarterPlaceholder: string;
1360
+ startDatePlaceholder: string;
1361
+ endDatePlaceholder: string;
1362
+ startDatetimePlaceholder: string;
1363
+ endDatetimePlaceholder: string;
1364
+ startMonthPlaceholder: string;
1365
+ endMonthPlaceholder: string;
1366
+ monthBeforeYear: boolean;
1367
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
1368
+ today: string;
1369
+ };
1370
+ DataTable: {
1371
+ checkTableAll: string;
1372
+ uncheckTableAll: string;
1373
+ confirm: string;
1374
+ clear: string;
1375
+ };
1376
+ Transfer: {
1377
+ sourceTitle: string;
1378
+ targetTitle: string;
1379
+ };
1380
+ Empty: {
1381
+ description: string;
1382
+ };
1383
+ Select: {
1384
+ placeholder: string;
1385
+ };
1386
+ TimePicker: {
1387
+ placeholder: string;
1388
+ positiveText: string;
1389
+ negativeText: string;
1390
+ now: string;
1391
+ };
1392
+ Pagination: {
1393
+ goto: string;
1394
+ selectionSuffix: string;
1395
+ };
1396
+ DynamicTags: {
1397
+ add: string;
1398
+ };
1399
+ Log: {
1400
+ loading: string;
1401
+ };
1402
+ Input: {
1403
+ placeholder: string;
1404
+ };
1405
+ InputNumber: {
1406
+ placeholder: string;
1407
+ };
1408
+ DynamicInput: {
1409
+ create: string;
1410
+ };
1411
+ ThemeEditor: {
1412
+ title: string;
1413
+ clearAllVars: string;
1414
+ clearSearch: string;
1415
+ filterCompName: string;
1416
+ filterVarName: string;
1417
+ import: string;
1418
+ export: string;
1419
+ restore: string;
1420
+ };
1421
+ Image: {
1422
+ tipPrevious: string;
1423
+ tipNext: string;
1424
+ tipCounterclockwise: string;
1425
+ tipClockwise: string;
1426
+ tipZoomOut: string;
1427
+ tipZoomIn: string;
1428
+ tipClose: string;
1429
+ tipOriginalSize: string;
1430
+ };
1431
+ } | null>;
1432
+ readonly dateLocale: import("vue").PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
1433
+ readonly namespace: StringConstructor;
1434
+ readonly rtl: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
1435
+ readonly tag: {
1436
+ readonly type: StringConstructor;
1437
+ readonly default: "div";
1438
+ };
1439
+ readonly hljs: import("vue").PropType<import("naive-ui/es/_mixins").Hljs>;
1440
+ readonly theme: import("vue").PropType<import("naive-ui").GlobalTheme | null>;
1441
+ readonly themeOverrides: import("vue").PropType<import("naive-ui").GlobalThemeOverrides | null>;
1442
+ readonly componentOptions: import("vue").PropType<import("naive-ui").GlobalComponentConfig>;
1443
+ readonly icons: import("vue").PropType<import("naive-ui").GlobalIconConfig>;
1444
+ readonly breakpoints: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
1445
+ readonly preflightStyleDisabled: BooleanConstructor;
1446
+ readonly inlineThemeDisabled: {
1447
+ readonly type: BooleanConstructor;
1448
+ readonly default: undefined;
1449
+ };
1450
+ readonly as: {
1451
+ readonly type: import("vue").PropType<string | undefined>;
1452
+ readonly validator: () => boolean;
1453
+ readonly default: undefined;
1454
+ };
1455
+ }, {
1456
+ mergedClsPrefix: import("vue").ComputedRef<string | undefined>;
1457
+ mergedBordered: import("vue").ComputedRef<boolean | undefined>;
1458
+ mergedNamespace: import("vue").ComputedRef<string | undefined>;
1459
+ mergedTheme: import("vue").ComputedRef<import("naive-ui").GlobalTheme | undefined>;
1460
+ mergedThemeOverrides: import("vue").ComputedRef<import("naive-ui").GlobalThemeOverrides | undefined>;
1461
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1462
+ readonly abstract: BooleanConstructor;
1463
+ readonly bordered: {
1464
+ readonly type: import("vue").PropType<boolean | undefined>;
1465
+ readonly default: undefined;
1466
+ };
1467
+ readonly clsPrefix: StringConstructor;
1468
+ readonly locale: import("vue").PropType<{
1469
+ name: string;
1470
+ global: {
1471
+ undo: string;
1472
+ redo: string;
1473
+ confirm: string;
1474
+ };
1475
+ Popconfirm: {
1476
+ positiveText: string;
1477
+ negativeText: string;
1478
+ };
1479
+ Cascader: {
1480
+ placeholder: string;
1481
+ loading: string;
1482
+ loadingRequiredMessage: (label: string) => string;
1483
+ };
1484
+ Time: {
1485
+ dateFormat: string;
1486
+ dateTimeFormat: string;
1487
+ };
1488
+ DatePicker: {
1489
+ yearFormat: string;
1490
+ monthFormat: string;
1491
+ dayFormat: string;
1492
+ yearTypeFormat: string;
1493
+ monthTypeFormat: string;
1494
+ dateFormat: string;
1495
+ dateTimeFormat: string;
1496
+ quarterFormat: string;
1497
+ clear: string;
1498
+ now: string;
1499
+ confirm: string;
1500
+ selectTime: string;
1501
+ selectDate: string;
1502
+ datePlaceholder: string;
1503
+ datetimePlaceholder: string;
1504
+ monthPlaceholder: string;
1505
+ yearPlaceholder: string;
1506
+ quarterPlaceholder: string;
1507
+ startDatePlaceholder: string;
1508
+ endDatePlaceholder: string;
1509
+ startDatetimePlaceholder: string;
1510
+ endDatetimePlaceholder: string;
1511
+ startMonthPlaceholder: string;
1512
+ endMonthPlaceholder: string;
1513
+ monthBeforeYear: boolean;
1514
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
1515
+ today: string;
1516
+ };
1517
+ DataTable: {
1518
+ checkTableAll: string;
1519
+ uncheckTableAll: string;
1520
+ confirm: string;
1521
+ clear: string;
1522
+ };
1523
+ Transfer: {
1524
+ sourceTitle: string;
1525
+ targetTitle: string;
1526
+ };
1527
+ Empty: {
1528
+ description: string;
1529
+ };
1530
+ Select: {
1531
+ placeholder: string;
1532
+ };
1533
+ TimePicker: {
1534
+ placeholder: string;
1535
+ positiveText: string;
1536
+ negativeText: string;
1537
+ now: string;
1538
+ };
1539
+ Pagination: {
1540
+ goto: string;
1541
+ selectionSuffix: string;
1542
+ };
1543
+ DynamicTags: {
1544
+ add: string;
1545
+ };
1546
+ Log: {
1547
+ loading: string;
1548
+ };
1549
+ Input: {
1550
+ placeholder: string;
1551
+ };
1552
+ InputNumber: {
1553
+ placeholder: string;
1554
+ };
1555
+ DynamicInput: {
1556
+ create: string;
1557
+ };
1558
+ ThemeEditor: {
1559
+ title: string;
1560
+ clearAllVars: string;
1561
+ clearSearch: string;
1562
+ filterCompName: string;
1563
+ filterVarName: string;
1564
+ import: string;
1565
+ export: string;
1566
+ restore: string;
1567
+ };
1568
+ Image: {
1569
+ tipPrevious: string;
1570
+ tipNext: string;
1571
+ tipCounterclockwise: string;
1572
+ tipClockwise: string;
1573
+ tipZoomOut: string;
1574
+ tipZoomIn: string;
1575
+ tipClose: string;
1576
+ tipOriginalSize: string;
1577
+ };
1578
+ } | null>;
1579
+ readonly dateLocale: import("vue").PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
1580
+ readonly namespace: StringConstructor;
1581
+ readonly rtl: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
1582
+ readonly tag: {
1583
+ readonly type: StringConstructor;
1584
+ readonly default: "div";
1585
+ };
1586
+ readonly hljs: import("vue").PropType<import("naive-ui/es/_mixins").Hljs>;
1587
+ readonly theme: import("vue").PropType<import("naive-ui").GlobalTheme | null>;
1588
+ readonly themeOverrides: import("vue").PropType<import("naive-ui").GlobalThemeOverrides | null>;
1589
+ readonly componentOptions: import("vue").PropType<import("naive-ui").GlobalComponentConfig>;
1590
+ readonly icons: import("vue").PropType<import("naive-ui").GlobalIconConfig>;
1591
+ readonly breakpoints: import("vue").PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
1592
+ readonly preflightStyleDisabled: BooleanConstructor;
1593
+ readonly inlineThemeDisabled: {
1594
+ readonly type: BooleanConstructor;
1595
+ readonly default: undefined;
1596
+ };
1597
+ readonly as: {
1598
+ readonly type: import("vue").PropType<string | undefined>;
1599
+ readonly validator: () => boolean;
1600
+ readonly default: undefined;
1601
+ };
1602
+ }>>, {
1603
+ readonly abstract: boolean;
1604
+ readonly tag: string;
1605
+ readonly as: string | undefined;
1606
+ readonly bordered: boolean | undefined;
1607
+ readonly preflightStyleDisabled: boolean;
1608
+ readonly inlineThemeDisabled: boolean;
1609
+ }>;
1313
1610
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1314
1611
  fieldList: {
1315
1612
  type: import("vue").PropType<import("./src/types").FieldItem[]>;
@@ -221,6 +221,7 @@ declare const _default: import("vue").DefineComponent<{
221
221
  onFormChange?: ((...args: any[]) => any) | undefined;
222
222
  }>>;
223
223
  emit: (event: "formChange", ...args: any[]) => void;
224
+ nuiThemeOverrides: import("naive-ui").GlobalThemeOverrides;
224
225
  SchemaField: Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
225
226
  businessCollector: import("./hooks").BusinessCollector;
226
227
  formItemDepsCollector: import("./hooks").FormItemDepsCollector;
@@ -1310,6 +1311,302 @@ declare const _default: import("vue").DefineComponent<{
1310
1311
  readonly animated: boolean;
1311
1312
  readonly tabsPadding: number;
1312
1313
  }>;
1314
+ NConfigProvider: import("vue").DefineComponent<{
1315
+ readonly abstract: BooleanConstructor;
1316
+ readonly bordered: {
1317
+ readonly type: PropType<boolean | undefined>;
1318
+ readonly default: undefined;
1319
+ };
1320
+ readonly clsPrefix: StringConstructor;
1321
+ readonly locale: PropType<{
1322
+ name: string;
1323
+ global: {
1324
+ undo: string;
1325
+ redo: string;
1326
+ confirm: string;
1327
+ };
1328
+ Popconfirm: {
1329
+ positiveText: string;
1330
+ negativeText: string;
1331
+ };
1332
+ Cascader: {
1333
+ placeholder: string;
1334
+ loading: string;
1335
+ loadingRequiredMessage: (label: string) => string;
1336
+ };
1337
+ Time: {
1338
+ dateFormat: string;
1339
+ dateTimeFormat: string;
1340
+ };
1341
+ DatePicker: {
1342
+ yearFormat: string;
1343
+ monthFormat: string;
1344
+ dayFormat: string;
1345
+ yearTypeFormat: string;
1346
+ monthTypeFormat: string;
1347
+ dateFormat: string;
1348
+ dateTimeFormat: string;
1349
+ quarterFormat: string;
1350
+ clear: string;
1351
+ now: string;
1352
+ confirm: string;
1353
+ selectTime: string;
1354
+ selectDate: string;
1355
+ datePlaceholder: string;
1356
+ datetimePlaceholder: string;
1357
+ monthPlaceholder: string;
1358
+ yearPlaceholder: string;
1359
+ quarterPlaceholder: string;
1360
+ startDatePlaceholder: string;
1361
+ endDatePlaceholder: string;
1362
+ startDatetimePlaceholder: string;
1363
+ endDatetimePlaceholder: string;
1364
+ startMonthPlaceholder: string;
1365
+ endMonthPlaceholder: string;
1366
+ monthBeforeYear: boolean;
1367
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
1368
+ today: string;
1369
+ };
1370
+ DataTable: {
1371
+ checkTableAll: string;
1372
+ uncheckTableAll: string;
1373
+ confirm: string;
1374
+ clear: string;
1375
+ };
1376
+ Transfer: {
1377
+ sourceTitle: string;
1378
+ targetTitle: string;
1379
+ };
1380
+ Empty: {
1381
+ description: string;
1382
+ };
1383
+ Select: {
1384
+ placeholder: string;
1385
+ };
1386
+ TimePicker: {
1387
+ placeholder: string;
1388
+ positiveText: string;
1389
+ negativeText: string;
1390
+ now: string;
1391
+ };
1392
+ Pagination: {
1393
+ goto: string;
1394
+ selectionSuffix: string;
1395
+ };
1396
+ DynamicTags: {
1397
+ add: string;
1398
+ };
1399
+ Log: {
1400
+ loading: string;
1401
+ };
1402
+ Input: {
1403
+ placeholder: string;
1404
+ };
1405
+ InputNumber: {
1406
+ placeholder: string;
1407
+ };
1408
+ DynamicInput: {
1409
+ create: string;
1410
+ };
1411
+ ThemeEditor: {
1412
+ title: string;
1413
+ clearAllVars: string;
1414
+ clearSearch: string;
1415
+ filterCompName: string;
1416
+ filterVarName: string;
1417
+ import: string;
1418
+ export: string;
1419
+ restore: string;
1420
+ };
1421
+ Image: {
1422
+ tipPrevious: string;
1423
+ tipNext: string;
1424
+ tipCounterclockwise: string;
1425
+ tipClockwise: string;
1426
+ tipZoomOut: string;
1427
+ tipZoomIn: string;
1428
+ tipClose: string;
1429
+ tipOriginalSize: string;
1430
+ };
1431
+ } | null>;
1432
+ readonly dateLocale: PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
1433
+ readonly namespace: StringConstructor;
1434
+ readonly rtl: PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
1435
+ readonly tag: {
1436
+ readonly type: StringConstructor;
1437
+ readonly default: "div";
1438
+ };
1439
+ readonly hljs: PropType<import("naive-ui/es/_mixins").Hljs>;
1440
+ readonly theme: PropType<import("naive-ui").GlobalTheme | null>;
1441
+ readonly themeOverrides: PropType<import("naive-ui").GlobalThemeOverrides | null>;
1442
+ readonly componentOptions: PropType<import("naive-ui").GlobalComponentConfig>;
1443
+ readonly icons: PropType<import("naive-ui").GlobalIconConfig>;
1444
+ readonly breakpoints: PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
1445
+ readonly preflightStyleDisabled: BooleanConstructor;
1446
+ readonly inlineThemeDisabled: {
1447
+ readonly type: BooleanConstructor;
1448
+ readonly default: undefined;
1449
+ };
1450
+ readonly as: {
1451
+ readonly type: PropType<string | undefined>;
1452
+ readonly validator: () => boolean;
1453
+ readonly default: undefined;
1454
+ };
1455
+ }, {
1456
+ mergedClsPrefix: import("vue").ComputedRef<string | undefined>;
1457
+ mergedBordered: import("vue").ComputedRef<boolean | undefined>;
1458
+ mergedNamespace: import("vue").ComputedRef<string | undefined>;
1459
+ mergedTheme: import("vue").ComputedRef<import("naive-ui").GlobalTheme | undefined>;
1460
+ mergedThemeOverrides: import("vue").ComputedRef<import("naive-ui").GlobalThemeOverrides | undefined>;
1461
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1462
+ readonly abstract: BooleanConstructor;
1463
+ readonly bordered: {
1464
+ readonly type: PropType<boolean | undefined>;
1465
+ readonly default: undefined;
1466
+ };
1467
+ readonly clsPrefix: StringConstructor;
1468
+ readonly locale: PropType<{
1469
+ name: string;
1470
+ global: {
1471
+ undo: string;
1472
+ redo: string;
1473
+ confirm: string;
1474
+ };
1475
+ Popconfirm: {
1476
+ positiveText: string;
1477
+ negativeText: string;
1478
+ };
1479
+ Cascader: {
1480
+ placeholder: string;
1481
+ loading: string;
1482
+ loadingRequiredMessage: (label: string) => string;
1483
+ };
1484
+ Time: {
1485
+ dateFormat: string;
1486
+ dateTimeFormat: string;
1487
+ };
1488
+ DatePicker: {
1489
+ yearFormat: string;
1490
+ monthFormat: string;
1491
+ dayFormat: string;
1492
+ yearTypeFormat: string;
1493
+ monthTypeFormat: string;
1494
+ dateFormat: string;
1495
+ dateTimeFormat: string;
1496
+ quarterFormat: string;
1497
+ clear: string;
1498
+ now: string;
1499
+ confirm: string;
1500
+ selectTime: string;
1501
+ selectDate: string;
1502
+ datePlaceholder: string;
1503
+ datetimePlaceholder: string;
1504
+ monthPlaceholder: string;
1505
+ yearPlaceholder: string;
1506
+ quarterPlaceholder: string;
1507
+ startDatePlaceholder: string;
1508
+ endDatePlaceholder: string;
1509
+ startDatetimePlaceholder: string;
1510
+ endDatetimePlaceholder: string;
1511
+ startMonthPlaceholder: string;
1512
+ endMonthPlaceholder: string;
1513
+ monthBeforeYear: boolean;
1514
+ firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 5 | 6;
1515
+ today: string;
1516
+ };
1517
+ DataTable: {
1518
+ checkTableAll: string;
1519
+ uncheckTableAll: string;
1520
+ confirm: string;
1521
+ clear: string;
1522
+ };
1523
+ Transfer: {
1524
+ sourceTitle: string;
1525
+ targetTitle: string;
1526
+ };
1527
+ Empty: {
1528
+ description: string;
1529
+ };
1530
+ Select: {
1531
+ placeholder: string;
1532
+ };
1533
+ TimePicker: {
1534
+ placeholder: string;
1535
+ positiveText: string;
1536
+ negativeText: string;
1537
+ now: string;
1538
+ };
1539
+ Pagination: {
1540
+ goto: string;
1541
+ selectionSuffix: string;
1542
+ };
1543
+ DynamicTags: {
1544
+ add: string;
1545
+ };
1546
+ Log: {
1547
+ loading: string;
1548
+ };
1549
+ Input: {
1550
+ placeholder: string;
1551
+ };
1552
+ InputNumber: {
1553
+ placeholder: string;
1554
+ };
1555
+ DynamicInput: {
1556
+ create: string;
1557
+ };
1558
+ ThemeEditor: {
1559
+ title: string;
1560
+ clearAllVars: string;
1561
+ clearSearch: string;
1562
+ filterCompName: string;
1563
+ filterVarName: string;
1564
+ import: string;
1565
+ export: string;
1566
+ restore: string;
1567
+ };
1568
+ Image: {
1569
+ tipPrevious: string;
1570
+ tipNext: string;
1571
+ tipCounterclockwise: string;
1572
+ tipClockwise: string;
1573
+ tipZoomOut: string;
1574
+ tipZoomIn: string;
1575
+ tipClose: string;
1576
+ tipOriginalSize: string;
1577
+ };
1578
+ } | null>;
1579
+ readonly dateLocale: PropType<import("naive-ui/es/locales/date/enUS").NDateLocale | null>;
1580
+ readonly namespace: StringConstructor;
1581
+ readonly rtl: PropType<import("naive-ui/es/config-provider/src/internal-interface").RtlProp>;
1582
+ readonly tag: {
1583
+ readonly type: StringConstructor;
1584
+ readonly default: "div";
1585
+ };
1586
+ readonly hljs: PropType<import("naive-ui/es/_mixins").Hljs>;
1587
+ readonly theme: PropType<import("naive-ui").GlobalTheme | null>;
1588
+ readonly themeOverrides: PropType<import("naive-ui").GlobalThemeOverrides | null>;
1589
+ readonly componentOptions: PropType<import("naive-ui").GlobalComponentConfig>;
1590
+ readonly icons: PropType<import("naive-ui").GlobalIconConfig>;
1591
+ readonly breakpoints: PropType<import("naive-ui/es/config-provider/src/internal-interface").Breakpoints>;
1592
+ readonly preflightStyleDisabled: BooleanConstructor;
1593
+ readonly inlineThemeDisabled: {
1594
+ readonly type: BooleanConstructor;
1595
+ readonly default: undefined;
1596
+ };
1597
+ readonly as: {
1598
+ readonly type: PropType<string | undefined>;
1599
+ readonly validator: () => boolean;
1600
+ readonly default: undefined;
1601
+ };
1602
+ }>>, {
1603
+ readonly abstract: boolean;
1604
+ readonly tag: string;
1605
+ readonly as: string | undefined;
1606
+ readonly bordered: boolean | undefined;
1607
+ readonly preflightStyleDisabled: boolean;
1608
+ readonly inlineThemeDisabled: boolean;
1609
+ }>;
1313
1610
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "formChange"[], "formChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1314
1611
  fieldList: {
1315
1612
  type: PropType<FieldItem[]>;