cnhis-design-vue 3.2.3-beta.10 → 3.2.3-beta.12
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.
- package/es/components/callback/src/components/render/popupMaps.d.ts +14 -0
- package/es/components/fabric-chart/src/hooks/newBirthProcess/useNewBirthProcess.js +1 -1
- package/es/components/fabric-chart/src/hooks/newBirthProcess/useNewBirthProcessChart.js +1 -1
- package/es/components/form-config/index.d.ts +41 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +41 -0
- package/es/components/form-config/src/components/FormConfigCreator.vue.d.ts +14 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +20 -0
- package/es/components/form-render/index.d.ts +14 -0
- package/es/components/form-render/src/FormRender.vue.d.ts +14 -0
- package/es/components/form-render/src/FormRender.vue2.js +1 -1
- package/es/components/form-render/src/FormRenderWrapper.vue.d.ts +14 -0
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue.d.ts +21 -8
- package/es/components/form-render/src/components/renderer/lineBar/FormCollapse.vue2.js +1 -1
- package/es/components/form-render/src/components/renderer/lineBar/index.d.ts +20 -7
- package/es/components/form-render/src/components/renderer/simpleComponent.js +1 -1
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +1 -1
- package/es/components/form-render/src/hooks/useFieldNormalize.d.ts +2 -0
- package/es/components/form-render/src/types/fieldItem.d.ts +1 -0
- package/es/components/form-render/src/types/index.d.ts +1 -0
- package/es/components/form-render/style/index.css +1 -1
- package/es/components/index.css +1 -1
- package/es/components/info-header/index.d.ts +33 -0
- package/es/components/info-header/src/InfoHeader.vue.d.ts +33 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue.d.ts +1 -0
- package/es/components/info-header/src/components/infoDescription/DescriptionList.vue.d.ts +1 -0
- package/es/components/info-header/src/components/infoDescription/index.vue.d.ts +15 -0
- package/es/components/info-header/src/components/patientInfo/index.vue.d.ts +14 -0
- package/es/components/shortcut-setter/index.d.ts +15 -0
- package/es/components/shortcut-setter/src/ShortcutSetter.vue.d.ts +15 -0
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
|
@@ -171,6 +171,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
171
171
|
selectedFields: string[];
|
|
172
172
|
linebarWidth: string | number;
|
|
173
173
|
linebarDirection: "horizontal" | "vertical";
|
|
174
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
174
175
|
}>>>;
|
|
175
176
|
};
|
|
176
177
|
}, {
|
|
@@ -346,6 +347,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
346
347
|
selectedFields: string[];
|
|
347
348
|
linebarWidth: string | number;
|
|
348
349
|
linebarDirection: "horizontal" | "vertical";
|
|
350
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
349
351
|
}>>>;
|
|
350
352
|
};
|
|
351
353
|
}>> & {
|
|
@@ -528,6 +530,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
528
530
|
selectedFields: string[];
|
|
529
531
|
linebarWidth: string | number;
|
|
530
532
|
linebarDirection: "horizontal" | "vertical";
|
|
533
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
531
534
|
}>>;
|
|
532
535
|
};
|
|
533
536
|
themeOverrides: import("naive-ui").GlobalThemeOverrides;
|
|
@@ -783,6 +786,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
783
786
|
selectedFields: string[];
|
|
784
787
|
linebarWidth: string | number;
|
|
785
788
|
linebarDirection: "horizontal" | "vertical";
|
|
789
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
786
790
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
787
791
|
[key: symbol]: any;
|
|
788
792
|
[key: `x-${string}`]: any;
|
|
@@ -2809,6 +2813,10 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2809
2813
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2810
2814
|
default: string;
|
|
2811
2815
|
};
|
|
2816
|
+
linebarTextDirection: {
|
|
2817
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2818
|
+
default: string;
|
|
2819
|
+
};
|
|
2812
2820
|
linebarWidth: {
|
|
2813
2821
|
type: (NumberConstructor | StringConstructor)[];
|
|
2814
2822
|
default: number;
|
|
@@ -2991,6 +2999,10 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2991
2999
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2992
3000
|
default: string;
|
|
2993
3001
|
};
|
|
3002
|
+
linebarTextDirection: {
|
|
3003
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
3004
|
+
default: string;
|
|
3005
|
+
};
|
|
2994
3006
|
linebarWidth: {
|
|
2995
3007
|
type: (NumberConstructor | StringConstructor)[];
|
|
2996
3008
|
default: number;
|
|
@@ -3166,6 +3178,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3166
3178
|
selectedFields: string[];
|
|
3167
3179
|
linebarWidth: string | number;
|
|
3168
3180
|
linebarDirection: "horizontal" | "vertical";
|
|
3181
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
3169
3182
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
3170
3183
|
[key: symbol]: any;
|
|
3171
3184
|
[key: `x-${string}`]: any;
|
|
@@ -3520,6 +3533,10 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3520
3533
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
3521
3534
|
default: string;
|
|
3522
3535
|
};
|
|
3536
|
+
linebarTextDirection: {
|
|
3537
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
3538
|
+
default: string;
|
|
3539
|
+
};
|
|
3523
3540
|
linebarWidth: {
|
|
3524
3541
|
type: (NumberConstructor | StringConstructor)[];
|
|
3525
3542
|
default: number;
|
|
@@ -3549,6 +3566,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3549
3566
|
selectMode: boolean;
|
|
3550
3567
|
linebarWidth: string | number;
|
|
3551
3568
|
linebarDirection: "horizontal" | "vertical";
|
|
3569
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
3552
3570
|
operationalFormInit: boolean;
|
|
3553
3571
|
}>;
|
|
3554
3572
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
@@ -3850,6 +3868,10 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
3850
3868
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
3851
3869
|
default: string;
|
|
3852
3870
|
};
|
|
3871
|
+
linebarTextDirection: {
|
|
3872
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
3873
|
+
default: string;
|
|
3874
|
+
};
|
|
3853
3875
|
linebarWidth: {
|
|
3854
3876
|
type: (NumberConstructor | StringConstructor)[];
|
|
3855
3877
|
default: number;
|
|
@@ -4032,6 +4054,10 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4032
4054
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
4033
4055
|
default: string;
|
|
4034
4056
|
};
|
|
4057
|
+
linebarTextDirection: {
|
|
4058
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
4059
|
+
default: string;
|
|
4060
|
+
};
|
|
4035
4061
|
linebarWidth: {
|
|
4036
4062
|
type: (NumberConstructor | StringConstructor)[];
|
|
4037
4063
|
default: number;
|
|
@@ -4207,6 +4233,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4207
4233
|
selectedFields: string[];
|
|
4208
4234
|
linebarWidth: string | number;
|
|
4209
4235
|
linebarDirection: "horizontal" | "vertical";
|
|
4236
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
4210
4237
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
4211
4238
|
[key: symbol]: any;
|
|
4212
4239
|
[key: `x-${string}`]: any;
|
|
@@ -4561,6 +4588,10 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4561
4588
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
4562
4589
|
default: string;
|
|
4563
4590
|
};
|
|
4591
|
+
linebarTextDirection: {
|
|
4592
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
4593
|
+
default: string;
|
|
4594
|
+
};
|
|
4564
4595
|
linebarWidth: {
|
|
4565
4596
|
type: (NumberConstructor | StringConstructor)[];
|
|
4566
4597
|
default: number;
|
|
@@ -4590,6 +4621,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4590
4621
|
selectMode: boolean;
|
|
4591
4622
|
linebarWidth: string | number;
|
|
4592
4623
|
linebarDirection: "horizontal" | "vertical";
|
|
4624
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
4593
4625
|
operationalFormInit: boolean;
|
|
4594
4626
|
}>;
|
|
4595
4627
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
@@ -4778,6 +4810,7 @@ declare const InfoHeader: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
4778
4810
|
selectedFields: string[];
|
|
4779
4811
|
linebarWidth: string | number;
|
|
4780
4812
|
linebarDirection: "horizontal" | "vertical";
|
|
4813
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
4781
4814
|
}>>>;
|
|
4782
4815
|
};
|
|
4783
4816
|
}>> & {
|
|
@@ -172,6 +172,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
172
172
|
selectedFields: string[];
|
|
173
173
|
linebarWidth: string | number;
|
|
174
174
|
linebarDirection: "horizontal" | "vertical";
|
|
175
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
175
176
|
}>>>;
|
|
176
177
|
};
|
|
177
178
|
}, {
|
|
@@ -345,6 +346,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
345
346
|
selectedFields: string[];
|
|
346
347
|
linebarWidth: string | number;
|
|
347
348
|
linebarDirection: "horizontal" | "vertical";
|
|
349
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
348
350
|
}>>>;
|
|
349
351
|
};
|
|
350
352
|
}>> & {
|
|
@@ -523,6 +525,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
523
525
|
selectedFields: string[];
|
|
524
526
|
linebarWidth: string | number;
|
|
525
527
|
linebarDirection: "horizontal" | "vertical";
|
|
528
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
526
529
|
}>>;
|
|
527
530
|
};
|
|
528
531
|
themeOverrides: import("naive-ui").GlobalThemeOverrides;
|
|
@@ -778,6 +781,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
778
781
|
selectedFields: string[];
|
|
779
782
|
linebarWidth: string | number;
|
|
780
783
|
linebarDirection: "horizontal" | "vertical";
|
|
784
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
781
785
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
782
786
|
[key: symbol]: any;
|
|
783
787
|
[key: `x-${string}`]: any;
|
|
@@ -2804,6 +2808,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2804
2808
|
type: PropType<"horizontal" | "vertical">;
|
|
2805
2809
|
default: string;
|
|
2806
2810
|
};
|
|
2811
|
+
linebarTextDirection: {
|
|
2812
|
+
type: PropType<"horizontal" | "vertical">;
|
|
2813
|
+
default: string;
|
|
2814
|
+
};
|
|
2807
2815
|
linebarWidth: {
|
|
2808
2816
|
type: (NumberConstructor | StringConstructor)[];
|
|
2809
2817
|
default: number;
|
|
@@ -2986,6 +2994,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2986
2994
|
type: PropType<"horizontal" | "vertical">;
|
|
2987
2995
|
default: string;
|
|
2988
2996
|
};
|
|
2997
|
+
linebarTextDirection: {
|
|
2998
|
+
type: PropType<"horizontal" | "vertical">;
|
|
2999
|
+
default: string;
|
|
3000
|
+
};
|
|
2989
3001
|
linebarWidth: {
|
|
2990
3002
|
type: (NumberConstructor | StringConstructor)[];
|
|
2991
3003
|
default: number;
|
|
@@ -3161,6 +3173,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3161
3173
|
selectedFields: string[];
|
|
3162
3174
|
linebarWidth: string | number;
|
|
3163
3175
|
linebarDirection: "horizontal" | "vertical";
|
|
3176
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
3164
3177
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
3165
3178
|
[key: symbol]: any;
|
|
3166
3179
|
[key: `x-${string}`]: any;
|
|
@@ -3515,6 +3528,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3515
3528
|
type: PropType<"horizontal" | "vertical">;
|
|
3516
3529
|
default: string;
|
|
3517
3530
|
};
|
|
3531
|
+
linebarTextDirection: {
|
|
3532
|
+
type: PropType<"horizontal" | "vertical">;
|
|
3533
|
+
default: string;
|
|
3534
|
+
};
|
|
3518
3535
|
linebarWidth: {
|
|
3519
3536
|
type: (NumberConstructor | StringConstructor)[];
|
|
3520
3537
|
default: number;
|
|
@@ -3544,6 +3561,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3544
3561
|
selectMode: boolean;
|
|
3545
3562
|
linebarWidth: string | number;
|
|
3546
3563
|
linebarDirection: "horizontal" | "vertical";
|
|
3564
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
3547
3565
|
operationalFormInit: boolean;
|
|
3548
3566
|
}>;
|
|
3549
3567
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
@@ -3845,6 +3863,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3845
3863
|
type: PropType<"horizontal" | "vertical">;
|
|
3846
3864
|
default: string;
|
|
3847
3865
|
};
|
|
3866
|
+
linebarTextDirection: {
|
|
3867
|
+
type: PropType<"horizontal" | "vertical">;
|
|
3868
|
+
default: string;
|
|
3869
|
+
};
|
|
3848
3870
|
linebarWidth: {
|
|
3849
3871
|
type: (NumberConstructor | StringConstructor)[];
|
|
3850
3872
|
default: number;
|
|
@@ -4027,6 +4049,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4027
4049
|
type: PropType<"horizontal" | "vertical">;
|
|
4028
4050
|
default: string;
|
|
4029
4051
|
};
|
|
4052
|
+
linebarTextDirection: {
|
|
4053
|
+
type: PropType<"horizontal" | "vertical">;
|
|
4054
|
+
default: string;
|
|
4055
|
+
};
|
|
4030
4056
|
linebarWidth: {
|
|
4031
4057
|
type: (NumberConstructor | StringConstructor)[];
|
|
4032
4058
|
default: number;
|
|
@@ -4202,6 +4228,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4202
4228
|
selectedFields: string[];
|
|
4203
4229
|
linebarWidth: string | number;
|
|
4204
4230
|
linebarDirection: "horizontal" | "vertical";
|
|
4231
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
4205
4232
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
4206
4233
|
[key: symbol]: any;
|
|
4207
4234
|
[key: `x-${string}`]: any;
|
|
@@ -4556,6 +4583,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4556
4583
|
type: PropType<"horizontal" | "vertical">;
|
|
4557
4584
|
default: string;
|
|
4558
4585
|
};
|
|
4586
|
+
linebarTextDirection: {
|
|
4587
|
+
type: PropType<"horizontal" | "vertical">;
|
|
4588
|
+
default: string;
|
|
4589
|
+
};
|
|
4559
4590
|
linebarWidth: {
|
|
4560
4591
|
type: (NumberConstructor | StringConstructor)[];
|
|
4561
4592
|
default: number;
|
|
@@ -4585,6 +4616,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4585
4616
|
selectMode: boolean;
|
|
4586
4617
|
linebarWidth: string | number;
|
|
4587
4618
|
linebarDirection: "horizontal" | "vertical";
|
|
4619
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
4588
4620
|
operationalFormInit: boolean;
|
|
4589
4621
|
}>;
|
|
4590
4622
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
@@ -4771,6 +4803,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
4771
4803
|
selectedFields: string[];
|
|
4772
4804
|
linebarWidth: string | number;
|
|
4773
4805
|
linebarDirection: "horizontal" | "vertical";
|
|
4806
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
4774
4807
|
}>>>;
|
|
4775
4808
|
};
|
|
4776
4809
|
}>> & {
|
|
@@ -138,6 +138,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
138
138
|
selectedFields: string[];
|
|
139
139
|
linebarWidth: string | number;
|
|
140
140
|
linebarDirection: "horizontal" | "vertical";
|
|
141
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
141
142
|
}>) => Record<string, import("@formily/vue").Stringify<{
|
|
142
143
|
[key: symbol]: any;
|
|
143
144
|
[key: `x-${string}`]: any;
|
|
@@ -226,6 +226,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
226
226
|
selectedFields: string[];
|
|
227
227
|
linebarWidth: string | number;
|
|
228
228
|
linebarDirection: "horizontal" | "vertical";
|
|
229
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
229
230
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
230
231
|
[key: symbol]: any;
|
|
231
232
|
[key: `x-${string}`]: any;
|
|
@@ -293,6 +293,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
293
293
|
selectedFields: string[];
|
|
294
294
|
linebarWidth: string | number;
|
|
295
295
|
linebarDirection: "horizontal" | "vertical";
|
|
296
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
296
297
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
297
298
|
[key: symbol]: any;
|
|
298
299
|
[key: `x-${string}`]: any;
|
|
@@ -2319,6 +2320,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2319
2320
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2320
2321
|
default: string;
|
|
2321
2322
|
};
|
|
2323
|
+
linebarTextDirection: {
|
|
2324
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2325
|
+
default: string;
|
|
2326
|
+
};
|
|
2322
2327
|
linebarWidth: {
|
|
2323
2328
|
type: (NumberConstructor | StringConstructor)[];
|
|
2324
2329
|
default: number;
|
|
@@ -2501,6 +2506,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2501
2506
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2502
2507
|
default: string;
|
|
2503
2508
|
};
|
|
2509
|
+
linebarTextDirection: {
|
|
2510
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2511
|
+
default: string;
|
|
2512
|
+
};
|
|
2504
2513
|
linebarWidth: {
|
|
2505
2514
|
type: (NumberConstructor | StringConstructor)[];
|
|
2506
2515
|
default: number;
|
|
@@ -2676,6 +2685,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2676
2685
|
selectedFields: string[];
|
|
2677
2686
|
linebarWidth: string | number;
|
|
2678
2687
|
linebarDirection: "horizontal" | "vertical";
|
|
2688
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
2679
2689
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2680
2690
|
[key: symbol]: any;
|
|
2681
2691
|
[key: `x-${string}`]: any;
|
|
@@ -3030,6 +3040,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3030
3040
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
3031
3041
|
default: string;
|
|
3032
3042
|
};
|
|
3043
|
+
linebarTextDirection: {
|
|
3044
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
3045
|
+
default: string;
|
|
3046
|
+
};
|
|
3033
3047
|
linebarWidth: {
|
|
3034
3048
|
type: (NumberConstructor | StringConstructor)[];
|
|
3035
3049
|
default: number;
|
|
@@ -3059,6 +3073,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3059
3073
|
selectMode: boolean;
|
|
3060
3074
|
linebarWidth: string | number;
|
|
3061
3075
|
linebarDirection: "horizontal" | "vertical";
|
|
3076
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
3062
3077
|
operationalFormInit: boolean;
|
|
3063
3078
|
}>;
|
|
3064
3079
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
@@ -231,6 +231,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
231
231
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
232
232
|
default: string;
|
|
233
233
|
};
|
|
234
|
+
linebarTextDirection: {
|
|
235
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
236
|
+
default: string;
|
|
237
|
+
};
|
|
234
238
|
linebarWidth: {
|
|
235
239
|
type: (NumberConstructor | StringConstructor)[];
|
|
236
240
|
default: number;
|
|
@@ -413,6 +417,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
413
417
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
414
418
|
default: string;
|
|
415
419
|
};
|
|
420
|
+
linebarTextDirection: {
|
|
421
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
422
|
+
default: string;
|
|
423
|
+
};
|
|
416
424
|
linebarWidth: {
|
|
417
425
|
type: (NumberConstructor | StringConstructor)[];
|
|
418
426
|
default: number;
|
|
@@ -588,6 +596,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
588
596
|
selectedFields: string[];
|
|
589
597
|
linebarWidth: string | number;
|
|
590
598
|
linebarDirection: "horizontal" | "vertical";
|
|
599
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
591
600
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
592
601
|
[key: symbol]: any;
|
|
593
602
|
[key: `x-${string}`]: any;
|
|
@@ -942,6 +951,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
942
951
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
943
952
|
default: string;
|
|
944
953
|
};
|
|
954
|
+
linebarTextDirection: {
|
|
955
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
956
|
+
default: string;
|
|
957
|
+
};
|
|
945
958
|
linebarWidth: {
|
|
946
959
|
type: (NumberConstructor | StringConstructor)[];
|
|
947
960
|
default: number;
|
|
@@ -971,6 +984,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
971
984
|
selectMode: boolean;
|
|
972
985
|
linebarWidth: string | number;
|
|
973
986
|
linebarDirection: "horizontal" | "vertical";
|
|
987
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
974
988
|
operationalFormInit: boolean;
|
|
975
989
|
}>;
|
|
976
990
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
@@ -196,6 +196,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
196
196
|
editor_title?: string | undefined;
|
|
197
197
|
linebarWidth?: string | undefined;
|
|
198
198
|
linebarDirection?: "horizontal" | "vertical" | undefined;
|
|
199
|
+
linebarTextDirection?: "horizontal" | "vertical" | undefined;
|
|
199
200
|
fieldType?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
200
201
|
content?: string | import("..").FormRenderer | Record<string, import("..").FormRenderer> | undefined;
|
|
201
202
|
lazyRequest?: boolean | undefined;
|
|
@@ -1962,6 +1963,10 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
1962
1963
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1963
1964
|
default: string;
|
|
1964
1965
|
};
|
|
1966
|
+
linebarTextDirection: {
|
|
1967
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1968
|
+
default: string;
|
|
1969
|
+
};
|
|
1965
1970
|
linebarWidth: {
|
|
1966
1971
|
type: (NumberConstructor | StringConstructor)[];
|
|
1967
1972
|
default: number;
|
|
@@ -2144,6 +2149,10 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2144
2149
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2145
2150
|
default: string;
|
|
2146
2151
|
};
|
|
2152
|
+
linebarTextDirection: {
|
|
2153
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2154
|
+
default: string;
|
|
2155
|
+
};
|
|
2147
2156
|
linebarWidth: {
|
|
2148
2157
|
type: (NumberConstructor | StringConstructor)[];
|
|
2149
2158
|
default: number;
|
|
@@ -2319,6 +2328,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2319
2328
|
selectedFields: string[];
|
|
2320
2329
|
linebarWidth: string | number;
|
|
2321
2330
|
linebarDirection: "horizontal" | "vertical";
|
|
2331
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
2322
2332
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2323
2333
|
[key: symbol]: any;
|
|
2324
2334
|
[key: `x-${string}`]: any;
|
|
@@ -2673,6 +2683,10 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2673
2683
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2674
2684
|
default: string;
|
|
2675
2685
|
};
|
|
2686
|
+
linebarTextDirection: {
|
|
2687
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2688
|
+
default: string;
|
|
2689
|
+
};
|
|
2676
2690
|
linebarWidth: {
|
|
2677
2691
|
type: (NumberConstructor | StringConstructor)[];
|
|
2678
2692
|
default: number;
|
|
@@ -2702,6 +2716,7 @@ declare const ShortcutSetter: SFCWithInstall<import("vue").DefineComponent<{
|
|
|
2702
2716
|
selectMode: boolean;
|
|
2703
2717
|
linebarWidth: string | number;
|
|
2704
2718
|
linebarDirection: "horizontal" | "vertical";
|
|
2719
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
2705
2720
|
operationalFormInit: boolean;
|
|
2706
2721
|
}>;
|
|
2707
2722
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
@@ -199,6 +199,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
199
199
|
editor_title?: string | undefined;
|
|
200
200
|
linebarWidth?: string | undefined;
|
|
201
201
|
linebarDirection?: "horizontal" | "vertical" | undefined;
|
|
202
|
+
linebarTextDirection?: "horizontal" | "vertical" | undefined;
|
|
202
203
|
fieldType?: import("@formily/json-schema").SchemaTypes | undefined;
|
|
203
204
|
content?: string | import("../../../components/form-render").FormRenderer | Record<string, import("../../../components/form-render").FormRenderer> | undefined;
|
|
204
205
|
lazyRequest?: boolean | undefined;
|
|
@@ -1965,6 +1966,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1965
1966
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1966
1967
|
default: string;
|
|
1967
1968
|
};
|
|
1969
|
+
linebarTextDirection: {
|
|
1970
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
1971
|
+
default: string;
|
|
1972
|
+
};
|
|
1968
1973
|
linebarWidth: {
|
|
1969
1974
|
type: (NumberConstructor | StringConstructor)[];
|
|
1970
1975
|
default: number;
|
|
@@ -2147,6 +2152,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2147
2152
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2148
2153
|
default: string;
|
|
2149
2154
|
};
|
|
2155
|
+
linebarTextDirection: {
|
|
2156
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2157
|
+
default: string;
|
|
2158
|
+
};
|
|
2150
2159
|
linebarWidth: {
|
|
2151
2160
|
type: (NumberConstructor | StringConstructor)[];
|
|
2152
2161
|
default: number;
|
|
@@ -2322,6 +2331,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2322
2331
|
selectedFields: string[];
|
|
2323
2332
|
linebarWidth: string | number;
|
|
2324
2333
|
linebarDirection: "horizontal" | "vertical";
|
|
2334
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
2325
2335
|
}>) => Record<string, import("@formily/json-schema").Stringify<{
|
|
2326
2336
|
[key: symbol]: any;
|
|
2327
2337
|
[key: `x-${string}`]: any;
|
|
@@ -2676,6 +2686,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2676
2686
|
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2677
2687
|
default: string;
|
|
2678
2688
|
};
|
|
2689
|
+
linebarTextDirection: {
|
|
2690
|
+
type: import("vue").PropType<"horizontal" | "vertical">;
|
|
2691
|
+
default: string;
|
|
2692
|
+
};
|
|
2679
2693
|
linebarWidth: {
|
|
2680
2694
|
type: (NumberConstructor | StringConstructor)[];
|
|
2681
2695
|
default: number;
|
|
@@ -2705,6 +2719,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2705
2719
|
selectMode: boolean;
|
|
2706
2720
|
linebarWidth: string | number;
|
|
2707
2721
|
linebarDirection: "horizontal" | "vertical";
|
|
2722
|
+
linebarTextDirection: "horizontal" | "vertical";
|
|
2708
2723
|
operationalFormInit: boolean;
|
|
2709
2724
|
}>;
|
|
2710
2725
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var e="@cnhis-design-vue/shared",i="3.2.3-beta.
|
|
1
|
+
var e="@cnhis-design-vue/shared",i="3.2.3-beta.12",s="index.ts",n={"naive-ui":"^2.30.0",vue:"^3.2.0"},a={"@vicons/ionicons5":"^0.12.0","lodash-es":"^4.17.21",moment:"^2.29.1","video.js":"^7.19.2","videojs-contrib-hls":"^5.15.0",viewerjs:"^1.10.5","xe-utils":"^3.5.4"},d={name:e,version:"3.2.3-beta.12",private:!0,main:"index.ts",peerDependencies:n,dependencies:a};export{d as default,a as dependencies,s as main,e as name,n as peerDependencies,i as version};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cnhis-design-vue",
|
|
3
|
-
"version": "3.2.3-beta.
|
|
3
|
+
"version": "3.2.3-beta.12",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"module": "./es/components/index.js",
|
|
6
6
|
"main": "./es/components/index.js",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"iOS 7",
|
|
72
72
|
"last 3 iOS versions"
|
|
73
73
|
],
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "904cab1c33b29aca18683da433a241ac5a6e6ef9"
|
|
75
75
|
}
|