hzzt-plus 2.0.10 → 2.0.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/index.full.js +38 -18
- package/dist/index.full.min.js +6 -6
- package/dist/index.full.min.js.map +1 -1
- package/dist/index.full.min.mjs +3 -3
- package/dist/index.full.min.mjs.map +1 -1
- package/dist/index.full.mjs +38 -18
- package/es/components/cascader/index.mjs +2 -2
- package/es/components/cascader/src/cascader.mjs +156 -40
- package/es/components/cascader/src/cascader.mjs.map +1 -1
- package/es/components/cascader/src/cascader2.mjs +40 -156
- package/es/components/cascader/src/cascader2.mjs.map +1 -1
- package/es/components/index.mjs +3 -3
- package/es/components/select/index.mjs +2 -2
- package/es/components/select/src/select.mjs +213 -42
- package/es/components/select/src/select.mjs.map +1 -1
- package/es/components/select/src/select2.mjs +42 -193
- package/es/components/select/src/select2.mjs.map +1 -1
- package/es/components/select-input/index.mjs +2 -2
- package/es/components/select-input/src/select-input.mjs +45 -124
- package/es/components/select-input/src/select-input.mjs.map +1 -1
- package/es/components/select-input/src/select-input2.mjs +124 -45
- package/es/components/select-input/src/select-input2.mjs.map +1 -1
- package/es/index.mjs +3 -3
- package/lib/components/cascader/index.js +2 -2
- package/lib/components/cascader/src/cascader.js +155 -40
- package/lib/components/cascader/src/cascader.js.map +1 -1
- package/lib/components/cascader/src/cascader2.js +40 -155
- package/lib/components/cascader/src/cascader2.js.map +1 -1
- package/lib/components/index.js +3 -3
- package/lib/components/select/index.js +2 -2
- package/lib/components/select/src/select.js +213 -43
- package/lib/components/select/src/select.js.map +1 -1
- package/lib/components/select/src/select2.js +43 -193
- package/lib/components/select/src/select2.js.map +1 -1
- package/lib/components/select-input/index.js +2 -2
- package/lib/components/select-input/src/select-input.js +46 -124
- package/lib/components/select-input/src/select-input.js.map +1 -1
- package/lib/components/select-input/src/select-input2.js +124 -46
- package/lib/components/select-input/src/select-input2.js.map +1 -1
- package/lib/index.js +3 -3
- package/package.json +1 -1
- package/web-types.json +1 -1
package/dist/index.full.mjs
CHANGED
|
@@ -27936,15 +27936,18 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
27936
27936
|
selectVal.value = v;
|
|
27937
27937
|
});
|
|
27938
27938
|
function input(str) {
|
|
27939
|
-
var _a;
|
|
27939
|
+
var _a, _b;
|
|
27940
27940
|
if ((_a = selectRef.value) == null ? void 0 : _a.dropdownMenuVisible) {
|
|
27941
|
-
selectRef.value.states.inputValue = inputVal.value;
|
|
27941
|
+
selectRef.value.states.inputValue = (_b = inputVal.value) != null ? _b : "";
|
|
27942
27942
|
selectRef.value.debouncedOnInputChange();
|
|
27943
|
-
} else {
|
|
27943
|
+
} else if (selectRef.value) {
|
|
27944
27944
|
selectRef.value.dropdownMenuVisible = true;
|
|
27945
27945
|
setTimeout(() => {
|
|
27946
|
-
|
|
27947
|
-
selectRef.value
|
|
27946
|
+
var _a2;
|
|
27947
|
+
if (selectRef.value) {
|
|
27948
|
+
selectRef.value.states.inputValue = (_a2 = inputVal.value) != null ? _a2 : "";
|
|
27949
|
+
selectRef.value.debouncedOnInputChange();
|
|
27950
|
+
}
|
|
27948
27951
|
}, 200);
|
|
27949
27952
|
}
|
|
27950
27953
|
emit("update:modelValue", str);
|
|
@@ -27956,34 +27959,49 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
27956
27959
|
function focus() {
|
|
27957
27960
|
if (selectRef.value && props.autoPullDown) {
|
|
27958
27961
|
setTimeout(() => {
|
|
27959
|
-
selectRef.value
|
|
27962
|
+
if (selectRef.value) {
|
|
27963
|
+
selectRef.value.dropdownMenuVisible = true;
|
|
27964
|
+
}
|
|
27960
27965
|
}, 200);
|
|
27961
27966
|
}
|
|
27962
27967
|
}
|
|
27963
27968
|
function keydown(e) {
|
|
27964
|
-
var _a, _b;
|
|
27969
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
27965
27970
|
const key = "key" in e && e.key;
|
|
27966
|
-
|
|
27967
|
-
|
|
27968
|
-
|
|
27969
|
-
|
|
27970
|
-
|
|
27971
|
-
|
|
27972
|
-
|
|
27971
|
+
const dropdownVisible = (_a = selectRef.value) == null ? void 0 : _a.dropdownMenuVisible;
|
|
27972
|
+
if (dropdownVisible && (key === "ArrowDown" || key === "ArrowUp" || key === "Enter")) {
|
|
27973
|
+
(_b = e.preventDefault) == null ? void 0 : _b.call(e);
|
|
27974
|
+
if (key === "ArrowDown") {
|
|
27975
|
+
(_c = selectRef.value) == null ? void 0 : _c.onKeyboardNavigate("forward");
|
|
27976
|
+
} else if (key === "ArrowUp") {
|
|
27977
|
+
(_d = selectRef.value) == null ? void 0 : _d.onKeyboardNavigate("backward");
|
|
27978
|
+
} else if (key === "Enter") {
|
|
27979
|
+
(_e = selectRef.value) == null ? void 0 : _e.onKeyboardSelect();
|
|
27980
|
+
}
|
|
27981
|
+
return;
|
|
27982
|
+
}
|
|
27983
|
+
if (!dropdownVisible) {
|
|
27984
|
+
if (key === "ArrowDown") {
|
|
27985
|
+
emit("arrow-down", e);
|
|
27986
|
+
} else if (key === "ArrowUp") {
|
|
27987
|
+
emit("arrow-up", e);
|
|
27988
|
+
}
|
|
27989
|
+
}
|
|
27990
|
+
if (key === "ArrowLeft") {
|
|
27973
27991
|
const index = inputRef.value.input.selectionStart;
|
|
27974
|
-
if (index === 0) {
|
|
27992
|
+
if (index === 0 && selectRef.value) {
|
|
27975
27993
|
emit("arrow-left", e);
|
|
27976
27994
|
selectRef.value.dropdownMenuVisible = false;
|
|
27977
27995
|
}
|
|
27978
27996
|
} else if (key === "ArrowRight") {
|
|
27979
27997
|
const index = inputRef.value.input.selectionStart;
|
|
27980
|
-
if (((
|
|
27998
|
+
if (((_g = (_f = inputVal.value) == null ? void 0 : _f.length) != null ? _g : 0) === index && selectRef.value) {
|
|
27981
27999
|
emit("arrow-right", e);
|
|
27982
28000
|
selectRef.value.dropdownMenuVisible = false;
|
|
27983
28001
|
}
|
|
27984
28002
|
} else if (key === "Enter") {
|
|
27985
28003
|
emit("enter", e);
|
|
27986
|
-
selectRef.value.dropdownMenuVisible = false;
|
|
28004
|
+
selectRef.value && (selectRef.value.dropdownMenuVisible = false);
|
|
27987
28005
|
}
|
|
27988
28006
|
}
|
|
27989
28007
|
function showSelect() {
|
|
@@ -28004,7 +28022,9 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
28004
28022
|
setTimeout(() => {
|
|
28005
28023
|
inputRef.value.focus();
|
|
28006
28024
|
setTimeout(() => {
|
|
28007
|
-
selectRef.value
|
|
28025
|
+
if (selectRef.value) {
|
|
28026
|
+
selectRef.value.dropdownMenuVisible = false;
|
|
28027
|
+
}
|
|
28008
28028
|
}, 250);
|
|
28009
28029
|
emit("change", str);
|
|
28010
28030
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../../utils/index.mjs';
|
|
2
|
-
import Cascader from './src/
|
|
3
|
-
export { cascaderEmits, cascaderProps } from './src/
|
|
2
|
+
import Cascader from './src/cascader.mjs';
|
|
3
|
+
export { cascaderEmits, cascaderProps } from './src/cascader2.mjs';
|
|
4
4
|
import { withInstall } from '../../utils/vue/install.mjs';
|
|
5
5
|
|
|
6
6
|
const HzztCascader = withInstall(Cascader);
|
|
@@ -1,46 +1,162 @@
|
|
|
1
|
-
import '
|
|
1
|
+
import { defineComponent, useAttrs, ref, computed, watch, openBlock, createElementBlock, normalizeClass, unref, createVNode, mergeProps } from 'vue';
|
|
2
|
+
import { cascaderProps, cascaderEmits } from './cascader2.mjs';
|
|
3
|
+
import { useFormSize, useFormDisabled, ElInput, ElCascader } from 'element-plus';
|
|
2
4
|
import '../../../hooks/index.mjs';
|
|
3
|
-
import '../../../
|
|
4
|
-
import {
|
|
5
|
-
import
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
5
|
+
import '../../../utils/index.mjs';
|
|
6
|
+
import { getCascaderId } from './hooks/utils.mjs';
|
|
7
|
+
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
|
|
8
|
+
import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
|
|
9
|
+
import { useGlobalSize } from '../../../hooks/use-size/index.mjs';
|
|
10
|
+
import { isArray } from '@vue/shared';
|
|
8
11
|
|
|
9
|
-
const
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
])
|
|
36
|
-
|
|
12
|
+
const __default__ = defineComponent({
|
|
13
|
+
name: "HzztCascader"
|
|
14
|
+
});
|
|
15
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
16
|
+
...__default__,
|
|
17
|
+
props: cascaderProps,
|
|
18
|
+
emits: cascaderEmits,
|
|
19
|
+
setup(__props, { emit }) {
|
|
20
|
+
const props = __props;
|
|
21
|
+
const attrs = useAttrs();
|
|
22
|
+
const inputVal = ref(props.modelValue);
|
|
23
|
+
const cascaderVal = ref();
|
|
24
|
+
const inputRef = ref();
|
|
25
|
+
const cascaderRef = ref();
|
|
26
|
+
const nsCascader = useNamespace("cascader");
|
|
27
|
+
const formSize = useFormSize();
|
|
28
|
+
const formDisabled = useFormDisabled();
|
|
29
|
+
const trueSize = computed(() => props.size || formSize.value || useGlobalSize().value);
|
|
30
|
+
const trueDisabled = computed(() => props.disabled || formDisabled.value);
|
|
31
|
+
const containerCls = computed(() => [
|
|
32
|
+
"relative",
|
|
33
|
+
nsCascader.b(),
|
|
34
|
+
nsCascader.m(trueSize.value)
|
|
35
|
+
]);
|
|
36
|
+
const inputCls = computed(() => [
|
|
37
|
+
nsCascader.e("input")
|
|
38
|
+
]);
|
|
39
|
+
const cascaderCls = computed(() => [
|
|
40
|
+
nsCascader.e("cascader")
|
|
41
|
+
]);
|
|
42
|
+
const _inputProps = computed(() => ({
|
|
43
|
+
disabled: trueDisabled.value,
|
|
44
|
+
size: trueSize.value,
|
|
45
|
+
clearable: props.clearable,
|
|
46
|
+
placeholder: props.placeholder,
|
|
47
|
+
readonly: props.readonly,
|
|
48
|
+
...attrs,
|
|
49
|
+
class: "",
|
|
50
|
+
style: ""
|
|
51
|
+
}));
|
|
52
|
+
const _cascaderProps = computed(() => ({
|
|
53
|
+
options: props.options,
|
|
54
|
+
disabled: trueDisabled.value,
|
|
55
|
+
size: trueSize.value,
|
|
56
|
+
clearable: props.clearable,
|
|
57
|
+
placeholder: props.placeholder,
|
|
58
|
+
props: { checkStrictly: true, expandTrigger: "hover" },
|
|
59
|
+
filterable: true,
|
|
60
|
+
separator: "/",
|
|
61
|
+
showAllLevels: true,
|
|
62
|
+
...props.cascaderProps
|
|
63
|
+
}));
|
|
64
|
+
const isMultiple = computed(() => {
|
|
65
|
+
var _a;
|
|
66
|
+
return !!((_a = _cascaderProps.value.props) == null ? void 0 : _a.multiple);
|
|
67
|
+
});
|
|
68
|
+
watch(() => props.modelValue, (v) => {
|
|
69
|
+
inputVal.value = v;
|
|
70
|
+
getCascaderVal();
|
|
71
|
+
});
|
|
72
|
+
watch(() => props.options, (v) => {
|
|
73
|
+
if (!v)
|
|
74
|
+
return;
|
|
75
|
+
getCascaderVal();
|
|
76
|
+
});
|
|
77
|
+
getCascaderVal();
|
|
78
|
+
function input(str) {
|
|
79
|
+
emit("update:modelValue", str);
|
|
80
|
+
emit("input", str);
|
|
81
|
+
}
|
|
82
|
+
function change(str) {
|
|
83
|
+
emit("change", str);
|
|
84
|
+
}
|
|
85
|
+
function click(e) {
|
|
86
|
+
cascaderRef.value.togglePopperVisible();
|
|
87
|
+
const target = e.target;
|
|
88
|
+
target.focus();
|
|
89
|
+
}
|
|
90
|
+
function cascaderChange(val) {
|
|
91
|
+
var _a;
|
|
92
|
+
const separator = _cascaderProps.value.separator || "/";
|
|
93
|
+
const joinSeparator = (_a = props.joinSeparator) != null ? _a : ",";
|
|
94
|
+
if (isMultiple.value) {
|
|
95
|
+
const list = isArray(val) ? val : [];
|
|
96
|
+
const items = list.map((item) => {
|
|
97
|
+
var _a2;
|
|
98
|
+
if (isArray(item)) {
|
|
99
|
+
return _cascaderProps.value.showAllLevels === false ? String((_a2 = item[item.length - 1]) != null ? _a2 : "") : item.join(separator);
|
|
100
|
+
}
|
|
101
|
+
return String(item != null ? item : "");
|
|
102
|
+
});
|
|
103
|
+
inputVal.value = items.join(joinSeparator);
|
|
104
|
+
} else {
|
|
105
|
+
inputVal.value = val ? isArray(val) ? _cascaderProps.value.showAllLevels === false ? val[val.length - 1] : val.join(separator) : [val].join(separator) : "";
|
|
106
|
+
}
|
|
107
|
+
input(inputVal.value);
|
|
108
|
+
change(inputVal.value);
|
|
109
|
+
}
|
|
110
|
+
function getCascaderVal() {
|
|
111
|
+
var _a;
|
|
112
|
+
const separator = _cascaderProps.value.separator || "/";
|
|
113
|
+
const joinSeparator = (_a = props.joinSeparator) != null ? _a : ",";
|
|
114
|
+
if (isMultiple.value) {
|
|
115
|
+
const raw = props.modelValue || "";
|
|
116
|
+
if (!raw) {
|
|
117
|
+
cascaderVal.value = [];
|
|
118
|
+
return;
|
|
119
|
+
}
|
|
120
|
+
const parts = raw.split(joinSeparator).filter((s) => s !== "");
|
|
121
|
+
if (_cascaderProps.value.showAllLevels === false) {
|
|
122
|
+
cascaderVal.value = parts.map((id) => getCascaderId(id, props.options));
|
|
123
|
+
} else {
|
|
124
|
+
cascaderVal.value = parts.map((p) => p.split(separator));
|
|
125
|
+
}
|
|
126
|
+
} else if (_cascaderProps.value.showAllLevels === false) {
|
|
127
|
+
const list = getCascaderId(props.modelValue, props.options);
|
|
128
|
+
cascaderVal.value = list.join(separator);
|
|
129
|
+
} else {
|
|
130
|
+
cascaderVal.value = (props.modelValue || "").split(separator);
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
return (_ctx, _cache) => {
|
|
134
|
+
return openBlock(), createElementBlock("div", {
|
|
135
|
+
class: normalizeClass(unref(containerCls))
|
|
136
|
+
}, [
|
|
137
|
+
createVNode(unref(ElInput), mergeProps({
|
|
138
|
+
class: unref(inputCls),
|
|
139
|
+
modelValue: inputVal.value,
|
|
140
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputVal.value = $event),
|
|
141
|
+
ref_key: "inputRef",
|
|
142
|
+
ref: inputRef
|
|
143
|
+
}, unref(_inputProps), {
|
|
144
|
+
onInput: input,
|
|
145
|
+
onClick: click,
|
|
146
|
+
onChange: change
|
|
147
|
+
}), null, 16, ["class", "modelValue"]),
|
|
148
|
+
createVNode(unref(ElCascader), mergeProps({
|
|
149
|
+
class: unref(cascaderCls),
|
|
150
|
+
modelValue: cascaderVal.value,
|
|
151
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => cascaderVal.value = $event),
|
|
152
|
+
ref_key: "cascaderRef",
|
|
153
|
+
ref: cascaderRef
|
|
154
|
+
}, unref(_cascaderProps), { onChange: cascaderChange }), null, 16, ["class", "modelValue"])
|
|
155
|
+
], 2);
|
|
156
|
+
};
|
|
37
157
|
}
|
|
38
158
|
});
|
|
39
|
-
|
|
40
|
-
[UPDATE_MODEL_EVENT]: (value) => isString(value),
|
|
41
|
-
input: (value) => isString(value),
|
|
42
|
-
change: (value) => isString(value)
|
|
43
|
-
};
|
|
159
|
+
var Cascader = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "cascader.vue"]]);
|
|
44
160
|
|
|
45
|
-
export {
|
|
161
|
+
export { Cascader as default };
|
|
46
162
|
//# sourceMappingURL=cascader.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cascader.mjs","sources":["../../../../../../packages/components/cascader/src/cascader.
|
|
1
|
+
{"version":3,"file":"cascader.mjs","sources":["../../../../../../packages/components/cascader/src/cascader.vue"],"sourcesContent":["<template>\n <div :class=\"containerCls\">\n <el-input\n :class=\"inputCls\"\n v-model=\"inputVal\"\n ref=\"inputRef\"\n v-bind=\"_inputProps\"\n @input=\"input\"\n @click=\"click\"\n @change=\"change\"\n >\n </el-input>\n <el-cascader :class=\"cascaderCls\" v-model=\"cascaderVal\" ref=\"cascaderRef\" v-bind=\"_cascaderProps\"\n @change=\"cascaderChange\">\n </el-cascader>\n </div>\n</template>\n\n<script lang=\"ts\" setup>\n import {cascaderEmits, cascaderProps, CascaderNodeValue} from './cascader'\n import {computed, ref, useAttrs, watch} from \"vue\";\n import {CascaderProps, useFormDisabled, useFormSize, CascaderValue} from \"element-plus\";\n import {useGlobalSize, useNamespace} from \"@hzzt-plus/hooks\";\n import {isArray} from '@hzzt-plus/utils'\n import {ElInput, ElCascader} from 'element-plus'\n import {getCascaderId} from \"./hooks/utils\";\n\n defineOptions({\n name: 'HzztCascader',\n })\n\n const props = defineProps(cascaderProps)\n const emit = defineEmits(cascaderEmits)\n\n const attrs = useAttrs();\n\n const inputVal = ref(props.modelValue);\n const cascaderVal = ref();\n const inputRef = ref();\n const cascaderRef = ref();\n\n const nsCascader = useNamespace('cascader');\n\n const formSize = useFormSize()\n const formDisabled = useFormDisabled()\n\n const trueSize = computed(\n () => props.size || formSize.value || useGlobalSize().value\n )\n\n const trueDisabled = computed(() => props.disabled || formDisabled.value)\n\n const containerCls = computed(() => [\n 'relative',\n nsCascader.b(),\n nsCascader.m(trueSize.value),\n ])\n\n const inputCls = computed(() => [\n nsCascader.e('input'),\n ])\n\n const cascaderCls = computed(() => [\n nsCascader.e('cascader'),\n ])\n\n const _inputProps = computed(() => ({\n disabled: trueDisabled.value,\n size: trueSize.value,\n clearable: props.clearable,\n placeholder: props.placeholder,\n readonly: props.readonly,\n ...attrs,\n class: '',\n style: ''\n }))\n\n const _cascaderProps = computed(() => ({\n options: props.options,\n disabled: trueDisabled.value,\n size: trueSize.value,\n clearable: props.clearable,\n placeholder: props.placeholder,\n props: {checkStrictly: true, expandTrigger: 'hover'} as CascaderProps,\n filterable: true,\n separator: '/',\n showAllLevels: true,\n ...props.cascaderProps,\n }))\n\n const isMultiple = computed(() => !!_cascaderProps.value.props?.multiple)\n\n watch(() => props.modelValue, (v) => {\n inputVal.value = v;\n getCascaderVal();\n })\n\n watch(() => props.options, (v) => {\n if (!v) return;\n getCascaderVal();\n })\n\n getCascaderVal();\n\n function input(str: string) {\n emit('update:modelValue', str)\n emit('input', str)\n }\n\n function change(str: string) {\n emit('change', str)\n }\n\n function click(e: MouseEvent) {\n cascaderRef.value.togglePopperVisible();\n const target = e.target as HTMLInputElement;\n target.focus();\n }\n\n function cascaderChange(val: CascaderValue) {\n const separator = _cascaderProps.value.separator || '/';\n const joinSeparator = props.joinSeparator ?? ',';\n if (isMultiple.value) {\n const list = (isArray(val) ? val : []) as Array<CascaderNodeValue | CascaderNodeValue[]>;\n const items = list.map((item) => {\n if (isArray(item)) {\n return _cascaderProps.value.showAllLevels === false\n ? String(item[item.length - 1] ?? '')\n : item.join(separator);\n }\n return String(item ?? '');\n });\n inputVal.value = items.join(joinSeparator);\n } else {\n inputVal.value = val ? isArray(val) ? _cascaderProps.value.showAllLevels === false ? (val[val.length - 1] as string) : val.join(separator) : [val].join(separator) : '';\n }\n input(inputVal.value);\n change(inputVal.value);\n }\n\n function getCascaderVal() {\n const separator = _cascaderProps.value.separator || '/';\n const joinSeparator = props.joinSeparator ?? ',';\n if (isMultiple.value) {\n const raw = props.modelValue || '';\n if (!raw) {\n cascaderVal.value = [];\n return;\n }\n const parts = raw.split(joinSeparator).filter((s) => s !== '');\n if (_cascaderProps.value.showAllLevels === false) {\n cascaderVal.value = parts.map((id) => getCascaderId(id, props.options));\n } else {\n cascaderVal.value = parts.map((p) => p.split(separator));\n }\n } else if (_cascaderProps.value.showAllLevels === false) {\n const list = getCascaderId(props.modelValue, props.options);\n cascaderVal.value = list.join(separator);\n } else {\n cascaderVal.value = (props.modelValue || '').split(separator);\n }\n }\n\n\n</script>\n"],"names":[],"mappings":"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"}
|
|
@@ -1,162 +1,46 @@
|
|
|
1
|
-
import { defineComponent, useAttrs, ref, computed, watch, openBlock, createElementBlock, normalizeClass, unref, createVNode, mergeProps } from 'vue';
|
|
2
|
-
import { cascaderProps, cascaderEmits } from './cascader.mjs';
|
|
3
|
-
import { useFormSize, useFormDisabled, ElInput, ElCascader } from 'element-plus';
|
|
4
|
-
import '../../../hooks/index.mjs';
|
|
5
1
|
import '../../../utils/index.mjs';
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
2
|
+
import '../../../hooks/index.mjs';
|
|
3
|
+
import '../../../constants/index.mjs';
|
|
4
|
+
import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
|
|
5
|
+
import { useSizeProp } from '../../../hooks/use-size/index.mjs';
|
|
6
|
+
import { UPDATE_MODEL_EVENT } from '../../../constants/event.mjs';
|
|
7
|
+
import { isString } from '@vue/shared';
|
|
11
8
|
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
])
|
|
39
|
-
|
|
40
|
-
nsCascader.e("cascader")
|
|
41
|
-
]);
|
|
42
|
-
const _inputProps = computed(() => ({
|
|
43
|
-
disabled: trueDisabled.value,
|
|
44
|
-
size: trueSize.value,
|
|
45
|
-
clearable: props.clearable,
|
|
46
|
-
placeholder: props.placeholder,
|
|
47
|
-
readonly: props.readonly,
|
|
48
|
-
...attrs,
|
|
49
|
-
class: "",
|
|
50
|
-
style: ""
|
|
51
|
-
}));
|
|
52
|
-
const _cascaderProps = computed(() => ({
|
|
53
|
-
options: props.options,
|
|
54
|
-
disabled: trueDisabled.value,
|
|
55
|
-
size: trueSize.value,
|
|
56
|
-
clearable: props.clearable,
|
|
57
|
-
placeholder: props.placeholder,
|
|
58
|
-
props: { checkStrictly: true, expandTrigger: "hover" },
|
|
59
|
-
filterable: true,
|
|
60
|
-
separator: "/",
|
|
61
|
-
showAllLevels: true,
|
|
62
|
-
...props.cascaderProps
|
|
63
|
-
}));
|
|
64
|
-
const isMultiple = computed(() => {
|
|
65
|
-
var _a;
|
|
66
|
-
return !!((_a = _cascaderProps.value.props) == null ? void 0 : _a.multiple);
|
|
67
|
-
});
|
|
68
|
-
watch(() => props.modelValue, (v) => {
|
|
69
|
-
inputVal.value = v;
|
|
70
|
-
getCascaderVal();
|
|
71
|
-
});
|
|
72
|
-
watch(() => props.options, (v) => {
|
|
73
|
-
if (!v)
|
|
74
|
-
return;
|
|
75
|
-
getCascaderVal();
|
|
76
|
-
});
|
|
77
|
-
getCascaderVal();
|
|
78
|
-
function input(str) {
|
|
79
|
-
emit("update:modelValue", str);
|
|
80
|
-
emit("input", str);
|
|
81
|
-
}
|
|
82
|
-
function change(str) {
|
|
83
|
-
emit("change", str);
|
|
84
|
-
}
|
|
85
|
-
function click(e) {
|
|
86
|
-
cascaderRef.value.togglePopperVisible();
|
|
87
|
-
const target = e.target;
|
|
88
|
-
target.focus();
|
|
89
|
-
}
|
|
90
|
-
function cascaderChange(val) {
|
|
91
|
-
var _a;
|
|
92
|
-
const separator = _cascaderProps.value.separator || "/";
|
|
93
|
-
const joinSeparator = (_a = props.joinSeparator) != null ? _a : ",";
|
|
94
|
-
if (isMultiple.value) {
|
|
95
|
-
const list = isArray(val) ? val : [];
|
|
96
|
-
const items = list.map((item) => {
|
|
97
|
-
var _a2;
|
|
98
|
-
if (isArray(item)) {
|
|
99
|
-
return _cascaderProps.value.showAllLevels === false ? String((_a2 = item[item.length - 1]) != null ? _a2 : "") : item.join(separator);
|
|
100
|
-
}
|
|
101
|
-
return String(item != null ? item : "");
|
|
102
|
-
});
|
|
103
|
-
inputVal.value = items.join(joinSeparator);
|
|
104
|
-
} else {
|
|
105
|
-
inputVal.value = val ? isArray(val) ? _cascaderProps.value.showAllLevels === false ? val[val.length - 1] : val.join(separator) : [val].join(separator) : "";
|
|
106
|
-
}
|
|
107
|
-
input(inputVal.value);
|
|
108
|
-
change(inputVal.value);
|
|
109
|
-
}
|
|
110
|
-
function getCascaderVal() {
|
|
111
|
-
var _a;
|
|
112
|
-
const separator = _cascaderProps.value.separator || "/";
|
|
113
|
-
const joinSeparator = (_a = props.joinSeparator) != null ? _a : ",";
|
|
114
|
-
if (isMultiple.value) {
|
|
115
|
-
const raw = props.modelValue || "";
|
|
116
|
-
if (!raw) {
|
|
117
|
-
cascaderVal.value = [];
|
|
118
|
-
return;
|
|
119
|
-
}
|
|
120
|
-
const parts = raw.split(joinSeparator).filter((s) => s !== "");
|
|
121
|
-
if (_cascaderProps.value.showAllLevels === false) {
|
|
122
|
-
cascaderVal.value = parts.map((id) => getCascaderId(id, props.options));
|
|
123
|
-
} else {
|
|
124
|
-
cascaderVal.value = parts.map((p) => p.split(separator));
|
|
125
|
-
}
|
|
126
|
-
} else if (_cascaderProps.value.showAllLevels === false) {
|
|
127
|
-
const list = getCascaderId(props.modelValue, props.options);
|
|
128
|
-
cascaderVal.value = list.join(separator);
|
|
129
|
-
} else {
|
|
130
|
-
cascaderVal.value = (props.modelValue || "").split(separator);
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
return (_ctx, _cache) => {
|
|
134
|
-
return openBlock(), createElementBlock("div", {
|
|
135
|
-
class: normalizeClass(unref(containerCls))
|
|
136
|
-
}, [
|
|
137
|
-
createVNode(unref(ElInput), mergeProps({
|
|
138
|
-
class: unref(inputCls),
|
|
139
|
-
modelValue: inputVal.value,
|
|
140
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inputVal.value = $event),
|
|
141
|
-
ref_key: "inputRef",
|
|
142
|
-
ref: inputRef
|
|
143
|
-
}, unref(_inputProps), {
|
|
144
|
-
onInput: input,
|
|
145
|
-
onClick: click,
|
|
146
|
-
onChange: change
|
|
147
|
-
}), null, 16, ["class", "modelValue"]),
|
|
148
|
-
createVNode(unref(ElCascader), mergeProps({
|
|
149
|
-
class: unref(cascaderCls),
|
|
150
|
-
modelValue: cascaderVal.value,
|
|
151
|
-
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => cascaderVal.value = $event),
|
|
152
|
-
ref_key: "cascaderRef",
|
|
153
|
-
ref: cascaderRef
|
|
154
|
-
}, unref(_cascaderProps), { onChange: cascaderChange }), null, 16, ["class", "modelValue"])
|
|
155
|
-
], 2);
|
|
156
|
-
};
|
|
9
|
+
const cascaderProps = buildProps({
|
|
10
|
+
cascaderProps: {
|
|
11
|
+
type: Object,
|
|
12
|
+
default: () => ({
|
|
13
|
+
showAllLevels: true
|
|
14
|
+
})
|
|
15
|
+
},
|
|
16
|
+
disabled: Boolean,
|
|
17
|
+
readonly: Boolean,
|
|
18
|
+
clearable: Boolean,
|
|
19
|
+
size: useSizeProp,
|
|
20
|
+
options: {
|
|
21
|
+
type: definePropType(Array),
|
|
22
|
+
default: () => []
|
|
23
|
+
},
|
|
24
|
+
placeholder: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: ""
|
|
27
|
+
},
|
|
28
|
+
joinSeparator: {
|
|
29
|
+
type: String,
|
|
30
|
+
default: ","
|
|
31
|
+
},
|
|
32
|
+
modelValue: {
|
|
33
|
+
type: definePropType([
|
|
34
|
+
String
|
|
35
|
+
]),
|
|
36
|
+
default: ""
|
|
157
37
|
}
|
|
158
38
|
});
|
|
159
|
-
|
|
39
|
+
const cascaderEmits = {
|
|
40
|
+
[UPDATE_MODEL_EVENT]: (value) => isString(value),
|
|
41
|
+
input: (value) => isString(value),
|
|
42
|
+
change: (value) => isString(value)
|
|
43
|
+
};
|
|
160
44
|
|
|
161
|
-
export {
|
|
45
|
+
export { cascaderEmits, cascaderProps };
|
|
162
46
|
//# sourceMappingURL=cascader2.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cascader2.mjs","sources":["../../../../../../packages/components/cascader/src/cascader.
|
|
1
|
+
{"version":3,"file":"cascader2.mjs","sources":["../../../../../../packages/components/cascader/src/cascader.ts"],"sourcesContent":["import {buildProps, definePropType, isString} from '@hzzt-plus/utils'\nimport {useSizeProp} from \"@hzzt-plus/hooks\";\nimport type {ExtractPropTypes} from 'vue'\nimport type Cascader from './cascader.vue'\nimport {UPDATE_MODEL_EVENT} from \"@hzzt-plus/constants\";\n\nexport type CascaderNodeValue = string | number\n\nexport interface CascaderOption extends Record<string, unknown> {\n label?: string\n value?: CascaderNodeValue\n children?: CascaderOption[]\n disabled?: boolean\n leaf?: boolean\n}\n\nexport const cascaderProps = buildProps({\n cascaderProps: {\n type: Object,\n default: () => ({\n showAllLevels: true,\n }),\n },\n disabled: Boolean,\n readonly: Boolean,\n clearable: Boolean,\n size: useSizeProp,\n options: {\n type: definePropType<CascaderOption[]>(Array),\n default: () => [] as CascaderOption[],\n },\n placeholder: {\n type: String,\n default: '',\n },\n joinSeparator: {\n type: String,\n default: ',',\n },\n modelValue: {\n type: definePropType<string | undefined>([\n String,\n ]),\n default: '',\n },\n})\n\nexport type CascaderProps = ExtractPropTypes<typeof cascaderProps>\n\nexport const cascaderEmits = {\n [UPDATE_MODEL_EVENT]: (value: string | undefined) => isString(value),\n input: (value: string | undefined) => isString(value),\n change: (value: string | undefined) => isString(value),\n}\nexport type CascaderEmits = typeof cascaderEmits\n\n\nexport type CascaderInstance = InstanceType<typeof Cascader>\n"],"names":[],"mappings":";;;;;;;;AAGY,MAAC,aAAa,GAAG,UAAU,CAAC;AACxC,EAAE,aAAa,EAAE;AACjB,IAAI,IAAI,EAAE,MAAM;AAChB,IAAI,OAAO,EAAE,OAAO;AACpB,MAAM,aAAa,EAAE,IAAI;AACzB,KAAK,CAAC;AACN,GAAG;AACH,EAAE,QAAQ,EAAE,OAAO;AACnB,EAAE,QAAQ,EAAE,OAAO;AACnB,EAAE,SAAS,EAAE,OAAO;AACpB,EAAE,IAAI,EAAE,WAAW;AACnB,EAAE,OAAO,EAAE;AACX,IAAI,IAAI,EAAE,cAAc,CAAC,KAAK,CAAC;AAC/B,IAAI,OAAO,EAAE,MAAM,EAAE;AACrB,GAAG;AACH,EAAE,WAAW,EAAE;AACf,IAAI,IAAI,EAAE,MAAM;AAChB,IAAI,OAAO,EAAE,EAAE;AACf,GAAG;AACH,EAAE,aAAa,EAAE;AACjB,IAAI,IAAI,EAAE,MAAM;AAChB,IAAI,OAAO,EAAE,GAAG;AAChB,GAAG;AACH,EAAE,UAAU,EAAE;AACd,IAAI,IAAI,EAAE,cAAc,CAAC;AACzB,MAAM,MAAM;AACZ,KAAK,CAAC;AACN,IAAI,OAAO,EAAE,EAAE;AACf,GAAG;AACH,CAAC,EAAE;AACS,MAAC,aAAa,GAAG;AAC7B,EAAE,CAAC,kBAAkB,GAAG,CAAC,KAAK,KAAK,QAAQ,CAAC,KAAK,CAAC;AAClD,EAAE,KAAK,EAAE,CAAC,KAAK,KAAK,QAAQ,CAAC,KAAK,CAAC;AACnC,EAAE,MAAM,EAAE,CAAC,KAAK,KAAK,QAAQ,CAAC,KAAK,CAAC;AACpC;;;;"}
|
package/es/components/index.mjs
CHANGED
|
@@ -24,11 +24,11 @@ export { configProviderProps } from './config-provider/src/config-provider-props
|
|
|
24
24
|
export { configProviderContextKey } from './config-provider/src/constants.mjs';
|
|
25
25
|
export { provideGlobalConfig, useGlobalConfig } from './config-provider/src/hooks/use-global-config.mjs';
|
|
26
26
|
export { scanEmits, scanProps } from './scan/src/scan.mjs';
|
|
27
|
-
export { selectInputEmits, selectInputProps } from './select-input/src/select-
|
|
27
|
+
export { selectInputEmits, selectInputProps } from './select-input/src/select-input.mjs';
|
|
28
28
|
export { selectTextareaEmits, selectTextareaProps } from './select-textarea/src/select-textarea.mjs';
|
|
29
29
|
export { inputRangeEmits, inputRangeProps } from './input-range/src/input-range.mjs';
|
|
30
|
-
export { cascaderEmits, cascaderProps } from './cascader/src/
|
|
31
|
-
export { selectEmits, selectProps } from './select/src/
|
|
30
|
+
export { cascaderEmits, cascaderProps } from './cascader/src/cascader2.mjs';
|
|
31
|
+
export { selectEmits, selectProps } from './select/src/select2.mjs';
|
|
32
32
|
export { clickInputEmits, clickInputProps } from './click-input/src/click-input.mjs';
|
|
33
33
|
export { lazyListEmits, lazyListProps } from './lazy-list/src/lazy-list.mjs';
|
|
34
34
|
//# sourceMappingURL=index.mjs.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../../utils/index.mjs';
|
|
2
|
-
import Select from './src/
|
|
3
|
-
export { selectEmits, selectProps } from './src/
|
|
2
|
+
import Select from './src/select.mjs';
|
|
3
|
+
export { selectEmits, selectProps } from './src/select2.mjs';
|
|
4
4
|
import { withInstall } from '../../utils/vue/install.mjs';
|
|
5
5
|
|
|
6
6
|
const HzztSelect = withInstall(Select);
|