@fastkit/vui 0.18.10 → 0.18.11
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/dist/vui.d.ts
CHANGED
|
@@ -6618,10 +6618,16 @@ declare const formGroupSlots: _fastkit_vue_utils.DefinedSlots<{
|
|
|
6618
6618
|
default?: ((form: FormGroupControl) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6619
6619
|
[key: string]: any;
|
|
6620
6620
|
}>[]) | undefined;
|
|
6621
|
+
} & {
|
|
6622
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => any) | undefined;
|
|
6623
|
+
} & {
|
|
6624
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => any;
|
|
6621
6625
|
}>;
|
|
6622
6626
|
declare function createVFormGroupProps(): {
|
|
6623
6627
|
'v-slots': vue.PropType<{
|
|
6628
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
|
|
6624
6629
|
default?: ((form: FormGroupControl) => vue.VNodeChild) | undefined;
|
|
6630
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6625
6631
|
}>;
|
|
6626
6632
|
size: {
|
|
6627
6633
|
type: vue.PropType<"sm" | "md" | "lg">;
|
|
@@ -6629,6 +6635,7 @@ declare function createVFormGroupProps(): {
|
|
|
6629
6635
|
};
|
|
6630
6636
|
loading: BooleanConstructor;
|
|
6631
6637
|
collectErrorMessages: BooleanConstructor;
|
|
6638
|
+
disableAutoScroll: BooleanConstructor;
|
|
6632
6639
|
name: StringConstructor;
|
|
6633
6640
|
tag: StringConstructor;
|
|
6634
6641
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -6662,7 +6669,9 @@ declare function createVFormGroupProps(): {
|
|
|
6662
6669
|
};
|
|
6663
6670
|
declare const VFormGroup: vue.DefineComponent<{
|
|
6664
6671
|
'v-slots': vue.PropType<{
|
|
6672
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
|
|
6665
6673
|
default?: ((form: FormGroupControl) => vue.VNodeChild) | undefined;
|
|
6674
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6666
6675
|
}>;
|
|
6667
6676
|
size: {
|
|
6668
6677
|
type: vue.PropType<"sm" | "md" | "lg">;
|
|
@@ -6670,6 +6679,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6670
6679
|
};
|
|
6671
6680
|
loading: BooleanConstructor;
|
|
6672
6681
|
collectErrorMessages: BooleanConstructor;
|
|
6682
|
+
disableAutoScroll: BooleanConstructor;
|
|
6673
6683
|
name: StringConstructor;
|
|
6674
6684
|
tag: StringConstructor;
|
|
6675
6685
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -6710,7 +6720,9 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6710
6720
|
blur: (ev: FocusEvent) => boolean;
|
|
6711
6721
|
}, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
|
|
6712
6722
|
'v-slots': vue.PropType<{
|
|
6723
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild;
|
|
6713
6724
|
default?: ((form: FormGroupControl) => vue.VNodeChild) | undefined;
|
|
6725
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNodeChild) | undefined;
|
|
6714
6726
|
}>;
|
|
6715
6727
|
size: {
|
|
6716
6728
|
type: vue.PropType<"sm" | "md" | "lg">;
|
|
@@ -6718,6 +6730,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6718
6730
|
};
|
|
6719
6731
|
loading: BooleanConstructor;
|
|
6720
6732
|
collectErrorMessages: BooleanConstructor;
|
|
6733
|
+
disableAutoScroll: BooleanConstructor;
|
|
6721
6734
|
name: StringConstructor;
|
|
6722
6735
|
tag: StringConstructor;
|
|
6723
6736
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -6757,6 +6770,7 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6757
6770
|
}, {
|
|
6758
6771
|
loading: boolean;
|
|
6759
6772
|
collectErrorMessages: boolean;
|
|
6773
|
+
disableAutoScroll: boolean;
|
|
6760
6774
|
tabindex: string | number;
|
|
6761
6775
|
autofocus: boolean;
|
|
6762
6776
|
disabled: boolean;
|
|
@@ -6773,6 +6787,10 @@ declare const VFormGroup: vue.DefineComponent<{
|
|
|
6773
6787
|
default?: ((form: FormGroupControl) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6774
6788
|
[key: string]: any;
|
|
6775
6789
|
}>[]) | undefined;
|
|
6790
|
+
} & {
|
|
6791
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => any) | undefined;
|
|
6792
|
+
} & {
|
|
6793
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => any;
|
|
6776
6794
|
}>>;
|
|
6777
6795
|
|
|
6778
6796
|
type VFormSlots = DefineSlotsType<{
|
|
@@ -6792,18 +6810,22 @@ declare function createVFormProps(): {
|
|
|
6792
6810
|
validator: (value: any) => boolean;
|
|
6793
6811
|
};
|
|
6794
6812
|
loading: BooleanConstructor;
|
|
6813
|
+
novalidate: {
|
|
6814
|
+
type: BooleanConstructor;
|
|
6815
|
+
default: boolean;
|
|
6816
|
+
};
|
|
6795
6817
|
action: vue.PropType<_fastkit_vue_form_control.FormAction>;
|
|
6796
6818
|
autoValidate: {
|
|
6797
6819
|
type: BooleanConstructor;
|
|
6798
6820
|
default: boolean;
|
|
6799
6821
|
};
|
|
6800
6822
|
sending: BooleanConstructor;
|
|
6801
|
-
disableAutoScroll: BooleanConstructor;
|
|
6802
6823
|
acceptInvalidSubmission: {
|
|
6803
6824
|
type: vue.PropType<_fastkit_vue_form_control.FormAcceptInvalidSubmissionSpec>;
|
|
6804
6825
|
default: boolean;
|
|
6805
6826
|
};
|
|
6806
6827
|
collectErrorMessages: BooleanConstructor;
|
|
6828
|
+
disableAutoScroll: BooleanConstructor;
|
|
6807
6829
|
name: StringConstructor;
|
|
6808
6830
|
tag: StringConstructor;
|
|
6809
6831
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -6844,18 +6866,22 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6844
6866
|
validator: (value: any) => boolean;
|
|
6845
6867
|
};
|
|
6846
6868
|
loading: BooleanConstructor;
|
|
6869
|
+
novalidate: {
|
|
6870
|
+
type: BooleanConstructor;
|
|
6871
|
+
default: boolean;
|
|
6872
|
+
};
|
|
6847
6873
|
action: vue.PropType<_fastkit_vue_form_control.FormAction>;
|
|
6848
6874
|
autoValidate: {
|
|
6849
6875
|
type: BooleanConstructor;
|
|
6850
6876
|
default: boolean;
|
|
6851
6877
|
};
|
|
6852
6878
|
sending: BooleanConstructor;
|
|
6853
|
-
disableAutoScroll: BooleanConstructor;
|
|
6854
6879
|
acceptInvalidSubmission: {
|
|
6855
6880
|
type: vue.PropType<_fastkit_vue_form_control.FormAcceptInvalidSubmissionSpec>;
|
|
6856
6881
|
default: boolean;
|
|
6857
6882
|
};
|
|
6858
6883
|
collectErrorMessages: BooleanConstructor;
|
|
6884
|
+
disableAutoScroll: BooleanConstructor;
|
|
6859
6885
|
name: StringConstructor;
|
|
6860
6886
|
tag: StringConstructor;
|
|
6861
6887
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -6903,18 +6929,22 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6903
6929
|
validator: (value: any) => boolean;
|
|
6904
6930
|
};
|
|
6905
6931
|
loading: BooleanConstructor;
|
|
6932
|
+
novalidate: {
|
|
6933
|
+
type: BooleanConstructor;
|
|
6934
|
+
default: boolean;
|
|
6935
|
+
};
|
|
6906
6936
|
action: vue.PropType<_fastkit_vue_form_control.FormAction>;
|
|
6907
6937
|
autoValidate: {
|
|
6908
6938
|
type: BooleanConstructor;
|
|
6909
6939
|
default: boolean;
|
|
6910
6940
|
};
|
|
6911
6941
|
sending: BooleanConstructor;
|
|
6912
|
-
disableAutoScroll: BooleanConstructor;
|
|
6913
6942
|
acceptInvalidSubmission: {
|
|
6914
6943
|
type: vue.PropType<_fastkit_vue_form_control.FormAcceptInvalidSubmissionSpec>;
|
|
6915
6944
|
default: boolean;
|
|
6916
6945
|
};
|
|
6917
6946
|
collectErrorMessages: BooleanConstructor;
|
|
6947
|
+
disableAutoScroll: BooleanConstructor;
|
|
6918
6948
|
name: StringConstructor;
|
|
6919
6949
|
tag: StringConstructor;
|
|
6920
6950
|
modelValue: vue.Prop<unknown, unknown>;
|
|
@@ -6955,11 +6985,12 @@ declare const VForm: vue.DefineComponent<{
|
|
|
6955
6985
|
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
6956
6986
|
}, {
|
|
6957
6987
|
loading: boolean;
|
|
6988
|
+
novalidate: boolean;
|
|
6958
6989
|
autoValidate: boolean;
|
|
6959
6990
|
sending: boolean;
|
|
6960
|
-
disableAutoScroll: boolean;
|
|
6961
6991
|
acceptInvalidSubmission: _fastkit_vue_form_control.FormAcceptInvalidSubmissionSpec;
|
|
6962
6992
|
collectErrorMessages: boolean;
|
|
6993
|
+
disableAutoScroll: boolean;
|
|
6963
6994
|
tabindex: string | number;
|
|
6964
6995
|
autofocus: boolean;
|
|
6965
6996
|
disabled: boolean;
|
package/dist/vui.mjs
CHANGED
|
@@ -2341,12 +2341,12 @@ var VControlField = defineComponent({
|
|
|
2341
2341
|
return classes2;
|
|
2342
2342
|
});
|
|
2343
2343
|
const resolvedSlots = computed(() => {
|
|
2344
|
-
const
|
|
2344
|
+
const slots12 = {};
|
|
2345
2345
|
ADORNMENT_POSITIONS.forEach((position) => {
|
|
2346
2346
|
const key = `${position}Adornment`;
|
|
2347
|
-
|
|
2347
|
+
slots12[position] = resolveVNodeChildOrSlots(props12[key], ctx.slots[key]);
|
|
2348
2348
|
});
|
|
2349
|
-
return
|
|
2349
|
+
return slots12;
|
|
2350
2350
|
});
|
|
2351
2351
|
const renderAdornment = (position) => {
|
|
2352
2352
|
let child;
|
|
@@ -2394,7 +2394,7 @@ var VTextCounter = defineComponent({
|
|
|
2394
2394
|
}, [`${this.length} / ${this.maxlength}`]);
|
|
2395
2395
|
}
|
|
2396
2396
|
});
|
|
2397
|
-
var
|
|
2397
|
+
var CHECKABLE_SLOTS = defineSlots();
|
|
2398
2398
|
var VCheckable = defineComponent({
|
|
2399
2399
|
name: "VCheckable",
|
|
2400
2400
|
props: {
|
|
@@ -2402,10 +2402,10 @@ var VCheckable = defineComponent({
|
|
|
2402
2402
|
disabled: Boolean,
|
|
2403
2403
|
readonly: Boolean,
|
|
2404
2404
|
checked: Boolean,
|
|
2405
|
-
...
|
|
2405
|
+
...CHECKABLE_SLOTS()
|
|
2406
2406
|
// autoWidth: Boolean,
|
|
2407
2407
|
},
|
|
2408
|
-
slots:
|
|
2408
|
+
slots: CHECKABLE_SLOTS,
|
|
2409
2409
|
setup(props12, ctx) {
|
|
2410
2410
|
const colorProvider = useVuiColorProvider();
|
|
2411
2411
|
const invalid = computed(() => props12.invalid);
|
|
@@ -2466,7 +2466,7 @@ var VCheckbox = defineComponent({
|
|
|
2466
2466
|
ctx.expose({
|
|
2467
2467
|
control: api
|
|
2468
2468
|
});
|
|
2469
|
-
const
|
|
2469
|
+
const slots12 = {
|
|
2470
2470
|
input: () => nodeControl.createInputElement({
|
|
2471
2471
|
type: "checkbox"
|
|
2472
2472
|
}),
|
|
@@ -2482,7 +2482,7 @@ var VCheckbox = defineComponent({
|
|
|
2482
2482
|
"invalid": nodeControl.invalid,
|
|
2483
2483
|
"disabled": nodeControl.isDisabled,
|
|
2484
2484
|
"readonly": nodeControl.isReadonly
|
|
2485
|
-
},
|
|
2485
|
+
}, slots12);
|
|
2486
2486
|
};
|
|
2487
2487
|
}
|
|
2488
2488
|
});
|
|
@@ -2496,9 +2496,9 @@ var VCheckboxGroup = defineFormSelectorComponent({
|
|
|
2496
2496
|
className: "v-checkbox-group",
|
|
2497
2497
|
itemRenderer: ({
|
|
2498
2498
|
attrs,
|
|
2499
|
-
slots:
|
|
2500
|
-
}) => createVNode(VCheckbox, attrs, _isSlot3(
|
|
2501
|
-
default: () => [
|
|
2499
|
+
slots: slots12
|
|
2500
|
+
}) => createVNode(VCheckbox, attrs, _isSlot3(slots12) ? slots12 : {
|
|
2501
|
+
default: () => [slots12]
|
|
2502
2502
|
})
|
|
2503
2503
|
});
|
|
2504
2504
|
var {
|
|
@@ -2521,7 +2521,7 @@ var VRadio = defineComponent({
|
|
|
2521
2521
|
const classes = computed(() => ["v-radio", {
|
|
2522
2522
|
"v-radio--selected": nodeControl.selected
|
|
2523
2523
|
}, control.classes.value]);
|
|
2524
|
-
const
|
|
2524
|
+
const slots12 = {
|
|
2525
2525
|
input: () => nodeControl.createInputElement({
|
|
2526
2526
|
type: "radio"
|
|
2527
2527
|
}),
|
|
@@ -2537,7 +2537,7 @@ var VRadio = defineComponent({
|
|
|
2537
2537
|
"invalid": nodeControl.invalid,
|
|
2538
2538
|
"disabled": nodeControl.isDisabled,
|
|
2539
2539
|
"readonly": nodeControl.isReadonly
|
|
2540
|
-
},
|
|
2540
|
+
}, slots12);
|
|
2541
2541
|
};
|
|
2542
2542
|
}
|
|
2543
2543
|
});
|
|
@@ -2550,9 +2550,9 @@ var VRadioGroup = defineFormSelectorComponent({
|
|
|
2550
2550
|
className: "v-radio-group",
|
|
2551
2551
|
itemRenderer: ({
|
|
2552
2552
|
attrs,
|
|
2553
|
-
slots:
|
|
2554
|
-
}) => createVNode(VRadio, attrs, _isSlot4(
|
|
2555
|
-
default: () => [
|
|
2553
|
+
slots: slots12
|
|
2554
|
+
}) => createVNode(VRadio, attrs, _isSlot4(slots12) ? slots12 : {
|
|
2555
|
+
default: () => [slots12]
|
|
2556
2556
|
})
|
|
2557
2557
|
});
|
|
2558
2558
|
var {
|
|
@@ -2580,7 +2580,7 @@ var VSwitch = defineComponent({
|
|
|
2580
2580
|
"v-switch--selected": nodeControl.selected,
|
|
2581
2581
|
"v-switch--disabled": nodeControl.isDisabled
|
|
2582
2582
|
}, control.classes.value]);
|
|
2583
|
-
const
|
|
2583
|
+
const slots12 = {
|
|
2584
2584
|
input: () => nodeControl.createInputElement({
|
|
2585
2585
|
type: "checkbox"
|
|
2586
2586
|
}),
|
|
@@ -2601,7 +2601,7 @@ var VSwitch = defineComponent({
|
|
|
2601
2601
|
"invalid": nodeControl.invalid,
|
|
2602
2602
|
"disabled": nodeControl.isDisabled,
|
|
2603
2603
|
"readonly": nodeControl.isReadonly
|
|
2604
|
-
},
|
|
2604
|
+
}, slots12);
|
|
2605
2605
|
};
|
|
2606
2606
|
}
|
|
2607
2607
|
});
|
|
@@ -2615,9 +2615,9 @@ var VSwitchGroup = defineFormSelectorComponent({
|
|
|
2615
2615
|
className: "v-switch-group",
|
|
2616
2616
|
itemRenderer: ({
|
|
2617
2617
|
attrs,
|
|
2618
|
-
slots:
|
|
2619
|
-
}) => createVNode(VSwitch, attrs, _isSlot5(
|
|
2620
|
-
default: () => [
|
|
2618
|
+
slots: slots12
|
|
2619
|
+
}) => createVNode(VSwitch, attrs, _isSlot5(slots12) ? slots12 : {
|
|
2620
|
+
default: () => [slots12]
|
|
2621
2621
|
})
|
|
2622
2622
|
});
|
|
2623
2623
|
var {
|
|
@@ -2657,16 +2657,16 @@ var VOption = defineComponent({
|
|
|
2657
2657
|
};
|
|
2658
2658
|
}
|
|
2659
2659
|
});
|
|
2660
|
-
var
|
|
2660
|
+
var slots6 = defineSlots();
|
|
2661
2661
|
var VOptionGroup = defineComponent({
|
|
2662
2662
|
name: "VOptionGroup",
|
|
2663
2663
|
props: {
|
|
2664
2664
|
...createFormSelectorItemGroupProps(),
|
|
2665
2665
|
// eslint-disable-next-line vue/require-prop-types
|
|
2666
2666
|
label: {},
|
|
2667
|
-
...
|
|
2667
|
+
...slots6()
|
|
2668
2668
|
},
|
|
2669
|
-
slots:
|
|
2669
|
+
slots: slots6,
|
|
2670
2670
|
setup(props12, ctx) {
|
|
2671
2671
|
const groupControl = useFormSelectorItemGroupControl(props12, ctx, {
|
|
2672
2672
|
parentNodeType: VUI_SELECT_SYMBOL
|
|
@@ -2704,7 +2704,7 @@ var {
|
|
|
2704
2704
|
} = createFormSelectorSettings({
|
|
2705
2705
|
defaultValidateTiming: "blur"
|
|
2706
2706
|
});
|
|
2707
|
-
var
|
|
2707
|
+
var slots7 = defineSlots();
|
|
2708
2708
|
var VSelect = defineComponent({
|
|
2709
2709
|
name: "VSelect",
|
|
2710
2710
|
props: {
|
|
@@ -2713,7 +2713,7 @@ var VSelect = defineComponent({
|
|
|
2713
2713
|
...createControlFieldProps(),
|
|
2714
2714
|
...createControlFieldProviderProps(),
|
|
2715
2715
|
...createControlProps(),
|
|
2716
|
-
...
|
|
2716
|
+
...slots7(),
|
|
2717
2717
|
...createPropsOptions({
|
|
2718
2718
|
placeholder: String,
|
|
2719
2719
|
loadingMessage: {},
|
|
@@ -2721,7 +2721,7 @@ var VSelect = defineComponent({
|
|
|
2721
2721
|
}),
|
|
2722
2722
|
closeOnNavigation: Boolean
|
|
2723
2723
|
},
|
|
2724
|
-
slots:
|
|
2724
|
+
slots: slots7,
|
|
2725
2725
|
emits: emits7,
|
|
2726
2726
|
setup(props12, ctx) {
|
|
2727
2727
|
const menuRef = ref(null);
|
|
@@ -3044,7 +3044,7 @@ var {
|
|
|
3044
3044
|
props: props8,
|
|
3045
3045
|
emits: emits8
|
|
3046
3046
|
} = createTextInputNodeSettings();
|
|
3047
|
-
var
|
|
3047
|
+
var slots8 = defineSlots();
|
|
3048
3048
|
function createTextFieldProps() {
|
|
3049
3049
|
return {
|
|
3050
3050
|
...props8,
|
|
@@ -3052,14 +3052,14 @@ function createTextFieldProps() {
|
|
|
3052
3052
|
...createControlFieldProps(),
|
|
3053
3053
|
...createControlFieldProviderProps(),
|
|
3054
3054
|
...createControlProps(),
|
|
3055
|
-
...
|
|
3055
|
+
...slots8()
|
|
3056
3056
|
};
|
|
3057
3057
|
}
|
|
3058
3058
|
var VTextField = defineComponent({
|
|
3059
3059
|
name: "VTextField",
|
|
3060
3060
|
props: createTextFieldProps(),
|
|
3061
3061
|
emits: emits8,
|
|
3062
|
-
slots:
|
|
3062
|
+
slots: slots8,
|
|
3063
3063
|
setup(props12, ctx) {
|
|
3064
3064
|
const inputControl = useTextInputNodeControl(props12, ctx, {
|
|
3065
3065
|
nodeType: VUI_TEXT_FIELD_SYMBOL
|
|
@@ -3178,7 +3178,7 @@ var {
|
|
|
3178
3178
|
props: props9,
|
|
3179
3179
|
emits: emits9
|
|
3180
3180
|
} = createTextareaNodeSettings();
|
|
3181
|
-
var
|
|
3181
|
+
var slots9 = defineSlots();
|
|
3182
3182
|
var VTextarea = defineComponent({
|
|
3183
3183
|
name: "VTextarea",
|
|
3184
3184
|
props: {
|
|
@@ -3187,7 +3187,7 @@ var VTextarea = defineComponent({
|
|
|
3187
3187
|
...createControlFieldProps(),
|
|
3188
3188
|
...createControlFieldProviderProps(),
|
|
3189
3189
|
...createControlProps(),
|
|
3190
|
-
...
|
|
3190
|
+
...slots9()
|
|
3191
3191
|
},
|
|
3192
3192
|
emits: emits9,
|
|
3193
3193
|
setup(props12, ctx) {
|
|
@@ -3310,13 +3310,9 @@ var VForm = defineComponent({
|
|
|
3310
3310
|
ctx.expose({
|
|
3311
3311
|
control: nodeControl
|
|
3312
3312
|
});
|
|
3313
|
-
return () => createVNode("form", {
|
|
3314
|
-
"
|
|
3315
|
-
|
|
3316
|
-
"action": nodeControl.nativeAction,
|
|
3317
|
-
"spellcheck": nodeControl.spellcheck,
|
|
3318
|
-
"onSubmit": nodeControl.handleSubmit
|
|
3319
|
-
}, [ctx.slots.default?.(nodeControl)]);
|
|
3313
|
+
return () => createVNode("form", mergeProps({
|
|
3314
|
+
"class": classes.value
|
|
3315
|
+
}, nodeControl.formAttrs), [ctx.slots.default?.(nodeControl)]);
|
|
3320
3316
|
}
|
|
3321
3317
|
});
|
|
3322
3318
|
function _isSlot7(s) {
|
|
@@ -3383,7 +3379,7 @@ var VTab = defineComponent({
|
|
|
3383
3379
|
function _isSlot8(s) {
|
|
3384
3380
|
return typeof s === "function" || Object.prototype.toString.call(s) === "[object Object]" && !isVNode(s);
|
|
3385
3381
|
}
|
|
3386
|
-
var
|
|
3382
|
+
var slots10 = defineSlots();
|
|
3387
3383
|
var VTabs = defineComponent({
|
|
3388
3384
|
name: "VTabs",
|
|
3389
3385
|
props: {
|
|
@@ -3413,13 +3409,13 @@ var VTabs = defineComponent({
|
|
|
3413
3409
|
withQuery: Boolean,
|
|
3414
3410
|
color: String,
|
|
3415
3411
|
onBeforeChange: Function,
|
|
3416
|
-
...
|
|
3412
|
+
...slots10()
|
|
3417
3413
|
},
|
|
3418
3414
|
emits: {
|
|
3419
3415
|
"update:modelValue": (newValue) => true,
|
|
3420
3416
|
change: (newValue) => true
|
|
3421
3417
|
},
|
|
3422
|
-
slots:
|
|
3418
|
+
slots: slots10,
|
|
3423
3419
|
setup(props12, ctx) {
|
|
3424
3420
|
const vui = useVui();
|
|
3425
3421
|
const internalValueRef = ref(null);
|
|
@@ -4595,7 +4591,7 @@ var VToolbarEdge = defineComponent({
|
|
|
4595
4591
|
};
|
|
4596
4592
|
}
|
|
4597
4593
|
});
|
|
4598
|
-
var
|
|
4594
|
+
var slots11 = defineSlots();
|
|
4599
4595
|
var VToolbarTitle = defineComponent({
|
|
4600
4596
|
name: "VToolbarTitle",
|
|
4601
4597
|
props: {
|
|
@@ -4603,9 +4599,9 @@ var VToolbarTitle = defineComponent({
|
|
|
4603
4599
|
type: String,
|
|
4604
4600
|
default: "span"
|
|
4605
4601
|
},
|
|
4606
|
-
...
|
|
4602
|
+
...slots11()
|
|
4607
4603
|
},
|
|
4608
|
-
slots:
|
|
4604
|
+
slots: slots11,
|
|
4609
4605
|
setup(props12, ctx) {
|
|
4610
4606
|
const _TagName = computed(() => props12.tag);
|
|
4611
4607
|
return () => {
|