@funcho/ui 1.1.28 → 1.1.30
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/README.md +1 -0
- package/dist/cjs/business/DataTable/DataTable.vue.js +91 -102
- package/dist/cjs/business/ProForm/ProForm.vue.js +37 -2
- package/dist/cjs/business/VerticalLayout/VerticalLayout.vue.js +99 -0
- package/dist/cjs/business/VerticalLayout/VerticalLayout.vue3.js +10 -0
- package/dist/cjs/business/VerticalLayout/index.js +12 -0
- package/dist/cjs/business/index.js +2 -0
- package/dist/cjs/components/DatePicker/BzDatePicker.vue.js +6 -2
- package/dist/cjs/components/DotStatus/DotStatus.vue.js +3 -7
- package/dist/cjs/components/DotStatus/DotStatus.vue2.js +52 -0
- package/dist/cjs/index.js +8 -6
- package/dist/cjs/packages/ui/package.json.js +1 -1
- package/dist/esm/business/DataTable/DataTable.vue.mjs +94 -105
- package/dist/esm/business/ProForm/ProForm.vue.mjs +38 -3
- package/dist/esm/business/VerticalLayout/VerticalLayout.vue.mjs +95 -0
- package/dist/esm/business/VerticalLayout/VerticalLayout.vue3.mjs +6 -0
- package/dist/esm/business/VerticalLayout/index.mjs +7 -0
- package/dist/esm/business/index.mjs +1 -0
- package/dist/esm/components/DatePicker/BzDatePicker.vue.mjs +7 -3
- package/dist/esm/components/DotStatus/DotStatus.vue.mjs +3 -7
- package/dist/esm/components/DotStatus/DotStatus.vue2.mjs +48 -0
- package/dist/esm/index.mjs +1 -0
- package/dist/esm/packages/ui/package.json.mjs +1 -1
- package/dist/style.css +81 -6
- package/dist/types/business/DataTable/DataTable.vue.d.ts +0 -6
- package/dist/types/business/DataTable/index.d.ts +0 -3
- package/dist/types/business/ProForm/ProForm.types.d.ts +2 -0
- package/dist/types/business/ProForm/ProForm.vue.d.ts +2 -2
- package/dist/types/business/VerticalLayout/VerticalLayout.types.d.ts +1 -0
- package/dist/types/business/VerticalLayout/VerticalLayout.vue.d.ts +41 -0
- package/dist/types/business/index.d.ts +1 -0
- package/dist/types/components/DatePicker/BzDatePicker.vue.d.ts +11 -7
- package/dist/types/components/DatePicker/DatePickerRanger.vue.d.ts +14 -1
- package/dist/types/components/DatePicker/DateTimePickerRanger.vue.d.ts +14 -1
- package/dist/types/components/DatePicker/index.d.ts +51 -6
- package/dist/types/components/DotStatus/DotStatus.vue.d.ts +35 -1
- package/dist/types/components/DotStatus/index.d.ts +61 -3
- package/package.json +1 -1
|
@@ -9229,8 +9229,11 @@ export declare const FcBzDatePicker: {
|
|
|
9229
9229
|
disabledDate?: (date: Date) => boolean;
|
|
9230
9230
|
}> & Readonly<{
|
|
9231
9231
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
9232
|
+
onChange?: ((value: any) => any) | undefined;
|
|
9232
9233
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9233
9234
|
"update:modelValue": (value: any) => any;
|
|
9235
|
+
} & {
|
|
9236
|
+
change: (value: any) => any;
|
|
9234
9237
|
}, import('vue').PublicProps, {
|
|
9235
9238
|
disabled: boolean;
|
|
9236
9239
|
type: import('element-plus').DatePickerType;
|
|
@@ -12900,6 +12903,7 @@ export declare const FcBzDatePicker: {
|
|
|
12900
12903
|
disabledDate?: (date: Date) => boolean;
|
|
12901
12904
|
}> & Readonly<{
|
|
12902
12905
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
12906
|
+
onChange?: ((value: any) => any) | undefined;
|
|
12903
12907
|
}>, {}, {}, {}, {}, {
|
|
12904
12908
|
disabled: boolean;
|
|
12905
12909
|
type: import('element-plus').DatePickerType;
|
|
@@ -12918,8 +12922,11 @@ export declare const FcBzDatePicker: {
|
|
|
12918
12922
|
disabledDate?: (date: Date) => boolean;
|
|
12919
12923
|
}> & Readonly<{
|
|
12920
12924
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
12925
|
+
onChange?: ((value: any) => any) | undefined;
|
|
12921
12926
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12922
12927
|
"update:modelValue": (value: any) => any;
|
|
12928
|
+
} & {
|
|
12929
|
+
change: (value: any) => any;
|
|
12923
12930
|
}, string, {
|
|
12924
12931
|
disabled: boolean;
|
|
12925
12932
|
type: import('element-plus').DatePickerType;
|
|
@@ -12939,6 +12946,7 @@ export declare const FcDatePickerRanger: {
|
|
|
12939
12946
|
readonly valueFormat?: string | undefined;
|
|
12940
12947
|
readonly disabledDate?: ((date: Date) => boolean) | undefined;
|
|
12941
12948
|
readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
12949
|
+
readonly onChange?: ((value: any) => any) | undefined;
|
|
12942
12950
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
12943
12951
|
$attrs: {
|
|
12944
12952
|
[x: string]: unknown;
|
|
@@ -16600,7 +16608,7 @@ export declare const FcDatePickerRanger: {
|
|
|
16600
16608
|
$root: import('vue').ComponentPublicInstance | null;
|
|
16601
16609
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
16602
16610
|
$host: Element | null;
|
|
16603
|
-
$emit: (event: "update:modelValue", value: any) => void;
|
|
16611
|
+
$emit: ((event: "update:modelValue", value: any) => void) & ((event: "change", value: any) => void);
|
|
16604
16612
|
$el: any;
|
|
16605
16613
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
16606
16614
|
modelValue?: any[] | any;
|
|
@@ -16611,8 +16619,11 @@ export declare const FcDatePickerRanger: {
|
|
|
16611
16619
|
disabledDate?: (date: Date) => boolean;
|
|
16612
16620
|
}> & Readonly<{
|
|
16613
16621
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
16622
|
+
onChange?: ((value: any) => any) | undefined;
|
|
16614
16623
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16615
16624
|
"update:modelValue": (value: any) => any;
|
|
16625
|
+
} & {
|
|
16626
|
+
change: (value: any) => any;
|
|
16616
16627
|
}, string, {
|
|
16617
16628
|
disabled: boolean;
|
|
16618
16629
|
type: import('element-plus').DatePickerType;
|
|
@@ -16642,6 +16653,7 @@ export declare const FcDatePickerRanger: {
|
|
|
16642
16653
|
type: import('element-plus').DatePickerType;
|
|
16643
16654
|
disabledDate: (date: Date) => boolean;
|
|
16644
16655
|
valueFormat: string;
|
|
16656
|
+
onChange?: ((value: any) => any) | undefined;
|
|
16645
16657
|
modelValue?: any[] | any;
|
|
16646
16658
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
16647
16659
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
@@ -16658,8 +16670,11 @@ export declare const FcDatePickerRanger: {
|
|
|
16658
16670
|
disabledDate?: (date: Date) => boolean;
|
|
16659
16671
|
}> & Readonly<{
|
|
16660
16672
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
16673
|
+
onChange?: ((value: any) => any) | undefined;
|
|
16661
16674
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16662
16675
|
"update:modelValue": (value: any) => any;
|
|
16676
|
+
} & {
|
|
16677
|
+
change: (value: any) => any;
|
|
16663
16678
|
}, import('vue').PublicProps, {
|
|
16664
16679
|
disabled: boolean;
|
|
16665
16680
|
type: import('element-plus').DatePickerType;
|
|
@@ -20329,6 +20344,7 @@ export declare const FcDatePickerRanger: {
|
|
|
20329
20344
|
disabledDate?: (date: Date) => boolean;
|
|
20330
20345
|
}> & Readonly<{
|
|
20331
20346
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
20347
|
+
onChange?: ((value: any) => any) | undefined;
|
|
20332
20348
|
}>, {}, {}, {}, {}, {
|
|
20333
20349
|
disabled: boolean;
|
|
20334
20350
|
type: import('element-plus').DatePickerType;
|
|
@@ -20354,6 +20370,7 @@ export declare const FcDatePickerRanger: {
|
|
|
20354
20370
|
readonly valueFormat?: string | undefined;
|
|
20355
20371
|
readonly disabledDate?: ((date: Date) => boolean) | undefined;
|
|
20356
20372
|
readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
20373
|
+
readonly onChange?: ((value: any) => any) | undefined;
|
|
20357
20374
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
20358
20375
|
$attrs: {
|
|
20359
20376
|
[x: string]: unknown;
|
|
@@ -24015,7 +24032,7 @@ export declare const FcDatePickerRanger: {
|
|
|
24015
24032
|
$root: import('vue').ComponentPublicInstance | null;
|
|
24016
24033
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
24017
24034
|
$host: Element | null;
|
|
24018
|
-
$emit: (event: "update:modelValue", value: any) => void;
|
|
24035
|
+
$emit: ((event: "update:modelValue", value: any) => void) & ((event: "change", value: any) => void);
|
|
24019
24036
|
$el: any;
|
|
24020
24037
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
24021
24038
|
modelValue?: any[] | any;
|
|
@@ -24026,8 +24043,11 @@ export declare const FcDatePickerRanger: {
|
|
|
24026
24043
|
disabledDate?: (date: Date) => boolean;
|
|
24027
24044
|
}> & Readonly<{
|
|
24028
24045
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
24046
|
+
onChange?: ((value: any) => any) | undefined;
|
|
24029
24047
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
24030
24048
|
"update:modelValue": (value: any) => any;
|
|
24049
|
+
} & {
|
|
24050
|
+
change: (value: any) => any;
|
|
24031
24051
|
}, string, {
|
|
24032
24052
|
disabled: boolean;
|
|
24033
24053
|
type: import('element-plus').DatePickerType;
|
|
@@ -24057,6 +24077,7 @@ export declare const FcDatePickerRanger: {
|
|
|
24057
24077
|
type: import('element-plus').DatePickerType;
|
|
24058
24078
|
disabledDate: (date: Date) => boolean;
|
|
24059
24079
|
valueFormat: string;
|
|
24080
|
+
onChange?: ((value: any) => any) | undefined;
|
|
24060
24081
|
modelValue?: any[] | any;
|
|
24061
24082
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
24062
24083
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
@@ -24079,6 +24100,7 @@ export declare const FcDatePickerRanger: {
|
|
|
24079
24100
|
readonly valueFormat?: string | undefined;
|
|
24080
24101
|
readonly disabledDate?: ((date: Date) => boolean) | undefined;
|
|
24081
24102
|
readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
24103
|
+
readonly onChange?: ((value: any) => any) | undefined;
|
|
24082
24104
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
24083
24105
|
$attrs: {
|
|
24084
24106
|
[x: string]: unknown;
|
|
@@ -27740,7 +27762,7 @@ export declare const FcDatePickerRanger: {
|
|
|
27740
27762
|
$root: import('vue').ComponentPublicInstance | null;
|
|
27741
27763
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
27742
27764
|
$host: Element | null;
|
|
27743
|
-
$emit: (event: "update:modelValue", value: any) => void;
|
|
27765
|
+
$emit: ((event: "update:modelValue", value: any) => void) & ((event: "change", value: any) => void);
|
|
27744
27766
|
$el: any;
|
|
27745
27767
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
27746
27768
|
modelValue?: any[] | any;
|
|
@@ -27751,8 +27773,11 @@ export declare const FcDatePickerRanger: {
|
|
|
27751
27773
|
disabledDate?: (date: Date) => boolean;
|
|
27752
27774
|
}> & Readonly<{
|
|
27753
27775
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
27776
|
+
onChange?: ((value: any) => any) | undefined;
|
|
27754
27777
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27755
27778
|
"update:modelValue": (value: any) => any;
|
|
27779
|
+
} & {
|
|
27780
|
+
change: (value: any) => any;
|
|
27756
27781
|
}, string, {
|
|
27757
27782
|
disabled: boolean;
|
|
27758
27783
|
type: import('element-plus').DatePickerType;
|
|
@@ -27782,6 +27807,7 @@ export declare const FcDatePickerRanger: {
|
|
|
27782
27807
|
type: import('element-plus').DatePickerType;
|
|
27783
27808
|
disabledDate: (date: Date) => boolean;
|
|
27784
27809
|
valueFormat: string;
|
|
27810
|
+
onChange?: ((value: any) => any) | undefined;
|
|
27785
27811
|
modelValue?: any[] | any;
|
|
27786
27812
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
27787
27813
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
@@ -27806,6 +27832,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
27806
27832
|
readonly valueFormat?: string | undefined;
|
|
27807
27833
|
readonly disabledDate?: ((date: Date) => boolean) | undefined;
|
|
27808
27834
|
readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
27835
|
+
readonly onChange?: ((value: any) => any) | undefined;
|
|
27809
27836
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
27810
27837
|
$attrs: {
|
|
27811
27838
|
[x: string]: unknown;
|
|
@@ -31467,7 +31494,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
31467
31494
|
$root: import('vue').ComponentPublicInstance | null;
|
|
31468
31495
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
31469
31496
|
$host: Element | null;
|
|
31470
|
-
$emit: (event: "update:modelValue", value: any) => void;
|
|
31497
|
+
$emit: ((event: "update:modelValue", value: any) => void) & ((event: "change", value: any) => void);
|
|
31471
31498
|
$el: any;
|
|
31472
31499
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
31473
31500
|
modelValue?: any[] | any;
|
|
@@ -31478,8 +31505,11 @@ export declare const FcDateTimePickerRanger: {
|
|
|
31478
31505
|
disabledDate?: (date: Date) => boolean;
|
|
31479
31506
|
}> & Readonly<{
|
|
31480
31507
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
31508
|
+
onChange?: ((value: any) => any) | undefined;
|
|
31481
31509
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31482
31510
|
"update:modelValue": (value: any) => any;
|
|
31511
|
+
} & {
|
|
31512
|
+
change: (value: any) => any;
|
|
31483
31513
|
}, string, {
|
|
31484
31514
|
disabled: boolean;
|
|
31485
31515
|
type: import('element-plus').DatePickerType;
|
|
@@ -31509,6 +31539,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
31509
31539
|
type: import('element-plus').DatePickerType;
|
|
31510
31540
|
disabledDate: (date: Date) => boolean;
|
|
31511
31541
|
valueFormat: string;
|
|
31542
|
+
onChange?: ((value: any) => any) | undefined;
|
|
31512
31543
|
modelValue?: any[] | any;
|
|
31513
31544
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
31514
31545
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
@@ -31527,8 +31558,11 @@ export declare const FcDateTimePickerRanger: {
|
|
|
31527
31558
|
disabledDate?: (date: Date) => boolean;
|
|
31528
31559
|
}> & Readonly<{
|
|
31529
31560
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
31561
|
+
onChange?: ((value: any) => any) | undefined;
|
|
31530
31562
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31531
31563
|
"update:modelValue": (value: any) => any;
|
|
31564
|
+
} & {
|
|
31565
|
+
change: (value: any) => any;
|
|
31532
31566
|
}, import('vue').PublicProps, {
|
|
31533
31567
|
disabled: boolean;
|
|
31534
31568
|
type: import('element-plus').DatePickerType;
|
|
@@ -35198,6 +35232,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
35198
35232
|
disabledDate?: (date: Date) => boolean;
|
|
35199
35233
|
}> & Readonly<{
|
|
35200
35234
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
35235
|
+
onChange?: ((value: any) => any) | undefined;
|
|
35201
35236
|
}>, {}, {}, {}, {}, {
|
|
35202
35237
|
disabled: boolean;
|
|
35203
35238
|
type: import('element-plus').DatePickerType;
|
|
@@ -35225,6 +35260,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
35225
35260
|
readonly valueFormat?: string | undefined;
|
|
35226
35261
|
readonly disabledDate?: ((date: Date) => boolean) | undefined;
|
|
35227
35262
|
readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
35263
|
+
readonly onChange?: ((value: any) => any) | undefined;
|
|
35228
35264
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
35229
35265
|
$attrs: {
|
|
35230
35266
|
[x: string]: unknown;
|
|
@@ -38886,7 +38922,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
38886
38922
|
$root: import('vue').ComponentPublicInstance | null;
|
|
38887
38923
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
38888
38924
|
$host: Element | null;
|
|
38889
|
-
$emit: (event: "update:modelValue", value: any) => void;
|
|
38925
|
+
$emit: ((event: "update:modelValue", value: any) => void) & ((event: "change", value: any) => void);
|
|
38890
38926
|
$el: any;
|
|
38891
38927
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
38892
38928
|
modelValue?: any[] | any;
|
|
@@ -38897,8 +38933,11 @@ export declare const FcDateTimePickerRanger: {
|
|
|
38897
38933
|
disabledDate?: (date: Date) => boolean;
|
|
38898
38934
|
}> & Readonly<{
|
|
38899
38935
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
38936
|
+
onChange?: ((value: any) => any) | undefined;
|
|
38900
38937
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
38901
38938
|
"update:modelValue": (value: any) => any;
|
|
38939
|
+
} & {
|
|
38940
|
+
change: (value: any) => any;
|
|
38902
38941
|
}, string, {
|
|
38903
38942
|
disabled: boolean;
|
|
38904
38943
|
type: import('element-plus').DatePickerType;
|
|
@@ -38928,6 +38967,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
38928
38967
|
type: import('element-plus').DatePickerType;
|
|
38929
38968
|
disabledDate: (date: Date) => boolean;
|
|
38930
38969
|
valueFormat: string;
|
|
38970
|
+
onChange?: ((value: any) => any) | undefined;
|
|
38931
38971
|
modelValue?: any[] | any;
|
|
38932
38972
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
38933
38973
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
@@ -38954,6 +38994,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
38954
38994
|
readonly valueFormat?: string | undefined;
|
|
38955
38995
|
readonly disabledDate?: ((date: Date) => boolean) | undefined;
|
|
38956
38996
|
readonly "onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
38997
|
+
readonly onChange?: ((value: any) => any) | undefined;
|
|
38957
38998
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
38958
38999
|
$attrs: {
|
|
38959
39000
|
[x: string]: unknown;
|
|
@@ -42615,7 +42656,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
42615
42656
|
$root: import('vue').ComponentPublicInstance | null;
|
|
42616
42657
|
$parent: import('vue').ComponentPublicInstance | null;
|
|
42617
42658
|
$host: Element | null;
|
|
42618
|
-
$emit: (event: "update:modelValue", value: any) => void;
|
|
42659
|
+
$emit: ((event: "update:modelValue", value: any) => void) & ((event: "change", value: any) => void);
|
|
42619
42660
|
$el: any;
|
|
42620
42661
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
42621
42662
|
modelValue?: any[] | any;
|
|
@@ -42626,8 +42667,11 @@ export declare const FcDateTimePickerRanger: {
|
|
|
42626
42667
|
disabledDate?: (date: Date) => boolean;
|
|
42627
42668
|
}> & Readonly<{
|
|
42628
42669
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
42670
|
+
onChange?: ((value: any) => any) | undefined;
|
|
42629
42671
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
42630
42672
|
"update:modelValue": (value: any) => any;
|
|
42673
|
+
} & {
|
|
42674
|
+
change: (value: any) => any;
|
|
42631
42675
|
}, string, {
|
|
42632
42676
|
disabled: boolean;
|
|
42633
42677
|
type: import('element-plus').DatePickerType;
|
|
@@ -42657,6 +42701,7 @@ export declare const FcDateTimePickerRanger: {
|
|
|
42657
42701
|
type: import('element-plus').DatePickerType;
|
|
42658
42702
|
disabledDate: (date: Date) => boolean;
|
|
42659
42703
|
valueFormat: string;
|
|
42704
|
+
onChange?: ((value: any) => any) | undefined;
|
|
42660
42705
|
modelValue?: any[] | any;
|
|
42661
42706
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
42662
42707
|
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
@@ -1,2 +1,36 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
type?: 'primary' | 'success' | 'warning' | 'error' | 'danger' | 'info';
|
|
3
|
+
size?: 'small' | 'medium' | 'large';
|
|
4
|
+
color?: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
lovId?: string;
|
|
7
|
+
value?: string | number | null;
|
|
8
|
+
isSql?: boolean;
|
|
9
|
+
isUpdateLovOptions?: boolean;
|
|
10
|
+
};
|
|
11
|
+
declare function __VLS_template(): {
|
|
12
|
+
attrs: Partial<{}>;
|
|
13
|
+
slots: {
|
|
14
|
+
default?(_: {}): any;
|
|
15
|
+
};
|
|
16
|
+
refs: {};
|
|
17
|
+
rootEl: HTMLDivElement;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
20
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
21
|
+
lovId: string;
|
|
22
|
+
size: "small" | "medium" | "large";
|
|
23
|
+
type: "primary" | "success" | "warning" | "error" | "danger" | "info";
|
|
24
|
+
color: string;
|
|
25
|
+
label: string;
|
|
26
|
+
value: string | number | null;
|
|
27
|
+
isSql: boolean;
|
|
28
|
+
isUpdateLovOptions: boolean;
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2
31
|
export default _default;
|
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -1,15 +1,73 @@
|
|
|
1
1
|
export declare const FcDotStatus: {
|
|
2
|
-
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
3
|
+
type?: "primary" | "success" | "warning" | "error" | "danger" | "info";
|
|
4
|
+
size?: "small" | "medium" | "large";
|
|
5
|
+
color?: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
lovId?: string;
|
|
8
|
+
value?: string | number | null;
|
|
9
|
+
isSql?: boolean;
|
|
10
|
+
isUpdateLovOptions?: boolean;
|
|
11
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
12
|
+
lovId: string;
|
|
13
|
+
size: "small" | "medium" | "large";
|
|
14
|
+
type: "primary" | "success" | "warning" | "error" | "danger" | "info";
|
|
15
|
+
color: string;
|
|
16
|
+
label: string;
|
|
17
|
+
value: string | number | null;
|
|
18
|
+
isSql: boolean;
|
|
19
|
+
isUpdateLovOptions: boolean;
|
|
20
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
3
21
|
P: {};
|
|
4
22
|
B: {};
|
|
5
23
|
D: {};
|
|
6
24
|
C: {};
|
|
7
25
|
M: {};
|
|
8
26
|
Defaults: {};
|
|
9
|
-
}, Readonly<{
|
|
27
|
+
}, Readonly<{
|
|
28
|
+
type?: "primary" | "success" | "warning" | "error" | "danger" | "info";
|
|
29
|
+
size?: "small" | "medium" | "large";
|
|
30
|
+
color?: string;
|
|
31
|
+
label?: string;
|
|
32
|
+
lovId?: string;
|
|
33
|
+
value?: string | number | null;
|
|
34
|
+
isSql?: boolean;
|
|
35
|
+
isUpdateLovOptions?: boolean;
|
|
36
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
37
|
+
lovId: string;
|
|
38
|
+
size: "small" | "medium" | "large";
|
|
39
|
+
type: "primary" | "success" | "warning" | "error" | "danger" | "info";
|
|
40
|
+
color: string;
|
|
41
|
+
label: string;
|
|
42
|
+
value: string | number | null;
|
|
43
|
+
isSql: boolean;
|
|
44
|
+
isUpdateLovOptions: boolean;
|
|
45
|
+
}>;
|
|
10
46
|
__isFragment?: never;
|
|
11
47
|
__isTeleport?: never;
|
|
12
48
|
__isSuspense?: never;
|
|
13
|
-
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
49
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
50
|
+
type?: "primary" | "success" | "warning" | "error" | "danger" | "info";
|
|
51
|
+
size?: "small" | "medium" | "large";
|
|
52
|
+
color?: string;
|
|
53
|
+
label?: string;
|
|
54
|
+
lovId?: string;
|
|
55
|
+
value?: string | number | null;
|
|
56
|
+
isSql?: boolean;
|
|
57
|
+
isUpdateLovOptions?: boolean;
|
|
58
|
+
}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
59
|
+
lovId: string;
|
|
60
|
+
size: "small" | "medium" | "large";
|
|
61
|
+
type: "primary" | "success" | "warning" | "error" | "danger" | "info";
|
|
62
|
+
color: string;
|
|
63
|
+
label: string;
|
|
64
|
+
value: string | number | null;
|
|
65
|
+
isSql: boolean;
|
|
66
|
+
isUpdateLovOptions: boolean;
|
|
67
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
68
|
+
$slots: {
|
|
69
|
+
default?(_: {}): any;
|
|
70
|
+
};
|
|
71
|
+
}) & import('vue').Plugin;
|
|
14
72
|
export default FcDotStatus;
|
|
15
73
|
export * from './DotStatus.types';
|