@funcho/ui 1.1.16 → 1.1.17
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 +3 -0
- package/dist/cjs/business/DataTable/DataTable.vue.js +1 -0
- package/dist/cjs/business/EditFormCard/EditFormCard.vue.js +1 -0
- package/dist/cjs/business/ProForm/ProForm.vue.js +1 -0
- package/dist/cjs/business/SidebarMainLayout/SidebarMainLayout.vue.js +1 -0
- package/dist/cjs/business/TreeCheckFilter/TreeCheckFilter.vue.js +1 -0
- package/dist/cjs/business/TreeTransfer/TreeTransfer.vue.js +1 -0
- package/dist/cjs/components/Cascader/Cascader.vue.js +3 -1
- package/dist/cjs/components/CheckboxGroup/CheckboxGroup.vue.js +3 -1
- package/dist/cjs/components/Dropdown/Dropdown.vue.js +3 -1
- package/dist/cjs/components/LovText/LovText.vue.js +61 -0
- package/dist/cjs/components/LovText/LovText.vue3.js +10 -0
- package/dist/cjs/components/LovText/index.js +12 -0
- package/dist/cjs/components/Radio/Radio.vue.js +3 -1
- package/dist/cjs/components/Select/Select.vue.js +3 -1
- package/dist/cjs/components/index.js +2 -0
- package/dist/cjs/index.js +22 -20
- package/dist/cjs/packages/ui/package.json.js +1 -1
- package/dist/esm/business/DataTable/DataTable.vue.mjs +1 -0
- package/dist/esm/business/EditFormCard/EditFormCard.vue.mjs +1 -0
- package/dist/esm/business/ProForm/ProForm.vue.mjs +1 -0
- package/dist/esm/business/SidebarMainLayout/SidebarMainLayout.vue.mjs +1 -0
- package/dist/esm/business/TreeCheckFilter/TreeCheckFilter.vue.mjs +1 -0
- package/dist/esm/business/TreeTransfer/TreeTransfer.vue.mjs +1 -0
- package/dist/esm/components/Cascader/Cascader.vue.mjs +3 -1
- package/dist/esm/components/CheckboxGroup/CheckboxGroup.vue.mjs +3 -1
- package/dist/esm/components/Dropdown/Dropdown.vue.mjs +3 -1
- package/dist/esm/components/LovText/LovText.vue.mjs +57 -0
- package/dist/esm/components/LovText/LovText.vue3.mjs +6 -0
- package/dist/esm/components/LovText/index.mjs +7 -0
- package/dist/esm/components/Radio/Radio.vue.mjs +3 -1
- package/dist/esm/components/Select/Select.vue.mjs +3 -1
- package/dist/esm/components/index.mjs +1 -0
- package/dist/esm/index.mjs +1 -0
- package/dist/esm/packages/ui/package.json.mjs +1 -1
- package/dist/types/components/Cascader/Cascader.vue.d.ts +2 -0
- package/dist/types/components/Cascader/CascaderCheck.vue.d.ts +16 -2
- package/dist/types/components/Cascader/CascaderEnd.vue.d.ts +16 -2
- package/dist/types/components/Cascader/CascaderMultiple.vue.d.ts +16 -2
- package/dist/types/components/Cascader/index.d.ts +60 -3
- package/dist/types/components/CheckboxGroup/CheckboxGroup.vue.d.ts +2 -0
- package/dist/types/components/CheckboxGroup/index.d.ts +6 -0
- package/dist/types/components/Dropdown/Dropdown.vue.d.ts +2 -0
- package/dist/types/components/Dropdown/index.d.ts +6 -0
- package/dist/types/components/LovText/LovText.types.d.ts +1 -0
- package/dist/types/components/LovText/LovText.vue.d.ts +13 -0
- package/dist/types/components/LovText/index.d.ts +45 -0
- package/dist/types/components/Radio/Radio.vue.d.ts +2 -0
- package/dist/types/components/Radio/index.d.ts +6 -0
- package/dist/types/components/Select/Select.vue.d.ts +2 -0
- package/dist/types/components/Select/SelectAllowCreateSelect.vue.d.ts +12 -2
- package/dist/types/components/Select/SelectMultiple.vue.d.ts +12 -2
- package/dist/types/components/Select/index.d.ts +18 -2
- package/dist/types/components/index.d.ts +1 -0
- package/package.json +3 -3
|
@@ -17,6 +17,7 @@ declare function __VLS_template(): {
|
|
|
17
17
|
readonly filterable?: boolean | undefined;
|
|
18
18
|
readonly collapseTags?: boolean | undefined;
|
|
19
19
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
20
|
+
readonly isSql?: boolean | undefined;
|
|
20
21
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
21
22
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
22
23
|
$attrs: {
|
|
@@ -475,6 +476,7 @@ declare function __VLS_template(): {
|
|
|
475
476
|
filterable?: boolean;
|
|
476
477
|
collapseTags?: boolean;
|
|
477
478
|
collapseTagsTooltip?: boolean;
|
|
479
|
+
isSql?: boolean;
|
|
478
480
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
479
481
|
}> & Readonly<{}>, {
|
|
480
482
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -799,6 +801,7 @@ declare function __VLS_template(): {
|
|
|
799
801
|
lovId: string;
|
|
800
802
|
clearable: boolean;
|
|
801
803
|
options: any[];
|
|
804
|
+
isSql: boolean;
|
|
802
805
|
isUpdateLovOptions: boolean;
|
|
803
806
|
filterable: boolean;
|
|
804
807
|
collapseTags: boolean;
|
|
@@ -828,6 +831,7 @@ declare function __VLS_template(): {
|
|
|
828
831
|
lovId: string;
|
|
829
832
|
clearable: boolean;
|
|
830
833
|
options: any[];
|
|
834
|
+
isSql: boolean;
|
|
831
835
|
isUpdateLovOptions: boolean;
|
|
832
836
|
filterable: boolean;
|
|
833
837
|
collapseTags: boolean;
|
|
@@ -841,8 +845,9 @@ declare function __VLS_template(): {
|
|
|
841
845
|
filterable?: boolean;
|
|
842
846
|
collapseTags?: boolean;
|
|
843
847
|
collapseTagsTooltip?: boolean;
|
|
848
|
+
isSql?: boolean;
|
|
844
849
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
845
|
-
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
850
|
+
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isSql" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
846
851
|
$: import('vue').ComponentInternalInstance;
|
|
847
852
|
$data: {};
|
|
848
853
|
$props: Partial<{
|
|
@@ -1179,6 +1184,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1179
1184
|
readonly filterable?: boolean | undefined;
|
|
1180
1185
|
readonly collapseTags?: boolean | undefined;
|
|
1181
1186
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
1187
|
+
readonly isSql?: boolean | undefined;
|
|
1182
1188
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
1183
1189
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Partial<{
|
|
1184
1190
|
teleported: boolean;
|
|
@@ -1700,6 +1706,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1700
1706
|
filterable?: boolean;
|
|
1701
1707
|
collapseTags?: boolean;
|
|
1702
1708
|
collapseTagsTooltip?: boolean;
|
|
1709
|
+
isSql?: boolean;
|
|
1703
1710
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
1704
1711
|
}> & Readonly<{}>, {
|
|
1705
1712
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -2024,6 +2031,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2024
2031
|
lovId: string;
|
|
2025
2032
|
clearable: boolean;
|
|
2026
2033
|
options: any[];
|
|
2034
|
+
isSql: boolean;
|
|
2027
2035
|
isUpdateLovOptions: boolean;
|
|
2028
2036
|
filterable: boolean;
|
|
2029
2037
|
collapseTags: boolean;
|
|
@@ -2220,6 +2228,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2220
2228
|
lovId: string;
|
|
2221
2229
|
clearable: boolean;
|
|
2222
2230
|
options: any[] & import('element-plus').CascaderOption[];
|
|
2231
|
+
isSql: boolean;
|
|
2223
2232
|
isUpdateLovOptions: boolean;
|
|
2224
2233
|
filterable: boolean;
|
|
2225
2234
|
collapseTags: boolean;
|
|
@@ -2283,6 +2292,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2283
2292
|
readonly filterable?: boolean | undefined;
|
|
2284
2293
|
readonly collapseTags?: boolean | undefined;
|
|
2285
2294
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
2295
|
+
readonly isSql?: boolean | undefined;
|
|
2286
2296
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
2287
2297
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
2288
2298
|
$attrs: {
|
|
@@ -2741,6 +2751,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2741
2751
|
filterable?: boolean;
|
|
2742
2752
|
collapseTags?: boolean;
|
|
2743
2753
|
collapseTagsTooltip?: boolean;
|
|
2754
|
+
isSql?: boolean;
|
|
2744
2755
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
2745
2756
|
}> & Readonly<{}>, {
|
|
2746
2757
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -3065,6 +3076,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3065
3076
|
lovId: string;
|
|
3066
3077
|
clearable: boolean;
|
|
3067
3078
|
options: any[];
|
|
3079
|
+
isSql: boolean;
|
|
3068
3080
|
isUpdateLovOptions: boolean;
|
|
3069
3081
|
filterable: boolean;
|
|
3070
3082
|
collapseTags: boolean;
|
|
@@ -3094,6 +3106,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3094
3106
|
lovId: string;
|
|
3095
3107
|
clearable: boolean;
|
|
3096
3108
|
options: any[];
|
|
3109
|
+
isSql: boolean;
|
|
3097
3110
|
isUpdateLovOptions: boolean;
|
|
3098
3111
|
filterable: boolean;
|
|
3099
3112
|
collapseTags: boolean;
|
|
@@ -3107,8 +3120,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3107
3120
|
filterable?: boolean;
|
|
3108
3121
|
collapseTags?: boolean;
|
|
3109
3122
|
collapseTagsTooltip?: boolean;
|
|
3123
|
+
isSql?: boolean;
|
|
3110
3124
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
3111
|
-
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
3125
|
+
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isSql" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
3112
3126
|
$: import('vue').ComponentInternalInstance;
|
|
3113
3127
|
$data: {};
|
|
3114
3128
|
$props: Partial<{
|
|
@@ -17,6 +17,7 @@ declare function __VLS_template(): {
|
|
|
17
17
|
readonly filterable?: boolean | undefined;
|
|
18
18
|
readonly collapseTags?: boolean | undefined;
|
|
19
19
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
20
|
+
readonly isSql?: boolean | undefined;
|
|
20
21
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
21
22
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
22
23
|
$attrs: {
|
|
@@ -475,6 +476,7 @@ declare function __VLS_template(): {
|
|
|
475
476
|
filterable?: boolean;
|
|
476
477
|
collapseTags?: boolean;
|
|
477
478
|
collapseTagsTooltip?: boolean;
|
|
479
|
+
isSql?: boolean;
|
|
478
480
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
479
481
|
}> & Readonly<{}>, {
|
|
480
482
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -799,6 +801,7 @@ declare function __VLS_template(): {
|
|
|
799
801
|
lovId: string;
|
|
800
802
|
clearable: boolean;
|
|
801
803
|
options: any[];
|
|
804
|
+
isSql: boolean;
|
|
802
805
|
isUpdateLovOptions: boolean;
|
|
803
806
|
filterable: boolean;
|
|
804
807
|
collapseTags: boolean;
|
|
@@ -828,6 +831,7 @@ declare function __VLS_template(): {
|
|
|
828
831
|
lovId: string;
|
|
829
832
|
clearable: boolean;
|
|
830
833
|
options: any[];
|
|
834
|
+
isSql: boolean;
|
|
831
835
|
isUpdateLovOptions: boolean;
|
|
832
836
|
filterable: boolean;
|
|
833
837
|
collapseTags: boolean;
|
|
@@ -841,8 +845,9 @@ declare function __VLS_template(): {
|
|
|
841
845
|
filterable?: boolean;
|
|
842
846
|
collapseTags?: boolean;
|
|
843
847
|
collapseTagsTooltip?: boolean;
|
|
848
|
+
isSql?: boolean;
|
|
844
849
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
845
|
-
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
850
|
+
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isSql" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
846
851
|
$: import('vue').ComponentInternalInstance;
|
|
847
852
|
$data: {};
|
|
848
853
|
$props: Partial<{
|
|
@@ -1179,6 +1184,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1179
1184
|
readonly filterable?: boolean | undefined;
|
|
1180
1185
|
readonly collapseTags?: boolean | undefined;
|
|
1181
1186
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
1187
|
+
readonly isSql?: boolean | undefined;
|
|
1182
1188
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
1183
1189
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Partial<{
|
|
1184
1190
|
teleported: boolean;
|
|
@@ -1700,6 +1706,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1700
1706
|
filterable?: boolean;
|
|
1701
1707
|
collapseTags?: boolean;
|
|
1702
1708
|
collapseTagsTooltip?: boolean;
|
|
1709
|
+
isSql?: boolean;
|
|
1703
1710
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
1704
1711
|
}> & Readonly<{}>, {
|
|
1705
1712
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -2024,6 +2031,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2024
2031
|
lovId: string;
|
|
2025
2032
|
clearable: boolean;
|
|
2026
2033
|
options: any[];
|
|
2034
|
+
isSql: boolean;
|
|
2027
2035
|
isUpdateLovOptions: boolean;
|
|
2028
2036
|
filterable: boolean;
|
|
2029
2037
|
collapseTags: boolean;
|
|
@@ -2220,6 +2228,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2220
2228
|
lovId: string;
|
|
2221
2229
|
clearable: boolean;
|
|
2222
2230
|
options: any[] & import('element-plus').CascaderOption[];
|
|
2231
|
+
isSql: boolean;
|
|
2223
2232
|
isUpdateLovOptions: boolean;
|
|
2224
2233
|
filterable: boolean;
|
|
2225
2234
|
collapseTags: boolean;
|
|
@@ -2283,6 +2292,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2283
2292
|
readonly filterable?: boolean | undefined;
|
|
2284
2293
|
readonly collapseTags?: boolean | undefined;
|
|
2285
2294
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
2295
|
+
readonly isSql?: boolean | undefined;
|
|
2286
2296
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
2287
2297
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
2288
2298
|
$attrs: {
|
|
@@ -2741,6 +2751,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2741
2751
|
filterable?: boolean;
|
|
2742
2752
|
collapseTags?: boolean;
|
|
2743
2753
|
collapseTagsTooltip?: boolean;
|
|
2754
|
+
isSql?: boolean;
|
|
2744
2755
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
2745
2756
|
}> & Readonly<{}>, {
|
|
2746
2757
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -3065,6 +3076,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3065
3076
|
lovId: string;
|
|
3066
3077
|
clearable: boolean;
|
|
3067
3078
|
options: any[];
|
|
3079
|
+
isSql: boolean;
|
|
3068
3080
|
isUpdateLovOptions: boolean;
|
|
3069
3081
|
filterable: boolean;
|
|
3070
3082
|
collapseTags: boolean;
|
|
@@ -3094,6 +3106,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3094
3106
|
lovId: string;
|
|
3095
3107
|
clearable: boolean;
|
|
3096
3108
|
options: any[];
|
|
3109
|
+
isSql: boolean;
|
|
3097
3110
|
isUpdateLovOptions: boolean;
|
|
3098
3111
|
filterable: boolean;
|
|
3099
3112
|
collapseTags: boolean;
|
|
@@ -3107,8 +3120,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3107
3120
|
filterable?: boolean;
|
|
3108
3121
|
collapseTags?: boolean;
|
|
3109
3122
|
collapseTagsTooltip?: boolean;
|
|
3123
|
+
isSql?: boolean;
|
|
3110
3124
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
3111
|
-
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
3125
|
+
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isSql" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
3112
3126
|
$: import('vue').ComponentInternalInstance;
|
|
3113
3127
|
$data: {};
|
|
3114
3128
|
$props: Partial<{
|
|
@@ -18,6 +18,7 @@ declare function __VLS_template(): {
|
|
|
18
18
|
readonly filterable?: boolean | undefined;
|
|
19
19
|
readonly collapseTags?: boolean | undefined;
|
|
20
20
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
21
|
+
readonly isSql?: boolean | undefined;
|
|
21
22
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
22
23
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
23
24
|
$attrs: {
|
|
@@ -476,6 +477,7 @@ declare function __VLS_template(): {
|
|
|
476
477
|
filterable?: boolean;
|
|
477
478
|
collapseTags?: boolean;
|
|
478
479
|
collapseTagsTooltip?: boolean;
|
|
480
|
+
isSql?: boolean;
|
|
479
481
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
480
482
|
}> & Readonly<{}>, {
|
|
481
483
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -800,6 +802,7 @@ declare function __VLS_template(): {
|
|
|
800
802
|
lovId: string;
|
|
801
803
|
clearable: boolean;
|
|
802
804
|
options: any[];
|
|
805
|
+
isSql: boolean;
|
|
803
806
|
isUpdateLovOptions: boolean;
|
|
804
807
|
filterable: boolean;
|
|
805
808
|
collapseTags: boolean;
|
|
@@ -829,6 +832,7 @@ declare function __VLS_template(): {
|
|
|
829
832
|
lovId: string;
|
|
830
833
|
clearable: boolean;
|
|
831
834
|
options: any[];
|
|
835
|
+
isSql: boolean;
|
|
832
836
|
isUpdateLovOptions: boolean;
|
|
833
837
|
filterable: boolean;
|
|
834
838
|
collapseTags: boolean;
|
|
@@ -842,8 +846,9 @@ declare function __VLS_template(): {
|
|
|
842
846
|
filterable?: boolean;
|
|
843
847
|
collapseTags?: boolean;
|
|
844
848
|
collapseTagsTooltip?: boolean;
|
|
849
|
+
isSql?: boolean;
|
|
845
850
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
846
|
-
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
851
|
+
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isSql" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
847
852
|
$: import('vue').ComponentInternalInstance;
|
|
848
853
|
$data: {};
|
|
849
854
|
$props: Partial<{
|
|
@@ -1180,6 +1185,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1180
1185
|
readonly filterable?: boolean | undefined;
|
|
1181
1186
|
readonly collapseTags?: boolean | undefined;
|
|
1182
1187
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
1188
|
+
readonly isSql?: boolean | undefined;
|
|
1183
1189
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
1184
1190
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Partial<{
|
|
1185
1191
|
teleported: boolean;
|
|
@@ -1701,6 +1707,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
1701
1707
|
filterable?: boolean;
|
|
1702
1708
|
collapseTags?: boolean;
|
|
1703
1709
|
collapseTagsTooltip?: boolean;
|
|
1710
|
+
isSql?: boolean;
|
|
1704
1711
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
1705
1712
|
}> & Readonly<{}>, {
|
|
1706
1713
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -2025,6 +2032,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2025
2032
|
lovId: string;
|
|
2026
2033
|
clearable: boolean;
|
|
2027
2034
|
options: any[];
|
|
2035
|
+
isSql: boolean;
|
|
2028
2036
|
isUpdateLovOptions: boolean;
|
|
2029
2037
|
filterable: boolean;
|
|
2030
2038
|
collapseTags: boolean;
|
|
@@ -2221,6 +2229,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2221
2229
|
lovId: string;
|
|
2222
2230
|
clearable: boolean;
|
|
2223
2231
|
options: any[] & import('element-plus').CascaderOption[];
|
|
2232
|
+
isSql: boolean;
|
|
2224
2233
|
isUpdateLovOptions: boolean;
|
|
2225
2234
|
filterable: boolean;
|
|
2226
2235
|
collapseTags: boolean;
|
|
@@ -2285,6 +2294,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2285
2294
|
readonly filterable?: boolean | undefined;
|
|
2286
2295
|
readonly collapseTags?: boolean | undefined;
|
|
2287
2296
|
readonly collapseTagsTooltip?: boolean | undefined;
|
|
2297
|
+
readonly isSql?: boolean | undefined;
|
|
2288
2298
|
readonly tagType?: "primary" | "success" | "info" | "warning" | "danger" | undefined;
|
|
2289
2299
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
2290
2300
|
$attrs: {
|
|
@@ -2743,6 +2753,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
2743
2753
|
filterable?: boolean;
|
|
2744
2754
|
collapseTags?: boolean;
|
|
2745
2755
|
collapseTagsTooltip?: boolean;
|
|
2756
|
+
isSql?: boolean;
|
|
2746
2757
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
2747
2758
|
}> & Readonly<{}>, {
|
|
2748
2759
|
$: import('vue').ComponentInternalInstance;
|
|
@@ -3067,6 +3078,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3067
3078
|
lovId: string;
|
|
3068
3079
|
clearable: boolean;
|
|
3069
3080
|
options: any[];
|
|
3081
|
+
isSql: boolean;
|
|
3070
3082
|
isUpdateLovOptions: boolean;
|
|
3071
3083
|
filterable: boolean;
|
|
3072
3084
|
collapseTags: boolean;
|
|
@@ -3096,6 +3108,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3096
3108
|
lovId: string;
|
|
3097
3109
|
clearable: boolean;
|
|
3098
3110
|
options: any[];
|
|
3111
|
+
isSql: boolean;
|
|
3099
3112
|
isUpdateLovOptions: boolean;
|
|
3100
3113
|
filterable: boolean;
|
|
3101
3114
|
collapseTags: boolean;
|
|
@@ -3109,8 +3122,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
3109
3122
|
filterable?: boolean;
|
|
3110
3123
|
collapseTags?: boolean;
|
|
3111
3124
|
collapseTagsTooltip?: boolean;
|
|
3125
|
+
isSql?: boolean;
|
|
3112
3126
|
tagType?: "primary" | "success" | "info" | "warning" | "danger";
|
|
3113
|
-
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
3127
|
+
}> & Readonly<{}>, "size" | "disabled" | "$" | "$data" | "$props" | "$attrs" | "$refs" | "$slots" | "$root" | "$parent" | "$host" | "$emit" | "$el" | "$options" | "$forceUpdate" | "$nextTick" | "$watch" | "$route" | "$router" | "props" | "placeholder" | "onFocus" | "onBlur" | "onChange" | "effect" | "teleported" | "persistent" | "popperClass" | "popperStyle" | "fallbackPlacements" | "placement" | "contentRef" | "modelValue" | "onUpdate:modelValue" | "emptyValues" | "valueOnClear" | "clearIcon" | "validateEvent" | "focus" | "blur" | "onClear" | "checkOnClickNode" | "getCheckedNodes" | "debounce" | "filterMethod" | "maxCollapseTags" | "tagEffect" | "separator" | "showAllLevels" | "maxCollapseTagsTooltipHeight" | "beforeFilter" | "showCheckedStrategy" | "showPrefix" | "cascaderPanelRef" | "togglePopperVisible" | "presentText" | "onVisibleChange" | "onExpandChange" | "onRemoveTag" | ("lovId" | "clearable" | "options" | "isSql" | "isUpdateLovOptions" | "filterable" | "collapseTags" | "collapseTagsTooltip" | "tagType")> & import('vue').ShallowUnwrapRef<{
|
|
3114
3128
|
$: import('vue').ComponentInternalInstance;
|
|
3115
3129
|
$data: {};
|
|
3116
3130
|
$props: Partial<{
|