@meethive/components 0.0.3 → 0.0.5

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.
Files changed (111) hide show
  1. package/es/AutoComplete/AutoComplete.js +71 -80
  2. package/es/BadgeStatus/Badge.js +38 -47
  3. package/es/CardSelect/CardSelect.js +115 -137
  4. package/es/CheckButton/CheckButton.js +102 -118
  5. package/es/ConfigProvider/ConfigProvider.js +44 -68
  6. package/es/DragModal/DragModal.js +191 -212
  7. package/es/EditTable/Body.js +158 -189
  8. package/es/EditTable/CellRender.js +10 -12
  9. package/es/EditTable/EditTable.js +385 -434
  10. package/es/EditTable/FormItem.js +140 -169
  11. package/es/EditTable/Group.js +171 -204
  12. package/es/EditTable/Header.js +57 -63
  13. package/es/EditTable/HeaderRender.js +10 -12
  14. package/es/EditTable/components/ContextMenu/Menu.js +78 -86
  15. package/es/EditTable/components/Search/Search.js +151 -163
  16. package/es/EditTable/components/Search/Sort.js +104 -119
  17. package/es/Ellipsis/Ellipsis.js +144 -148
  18. package/es/Empty/Empty.js +51 -57
  19. package/es/FullPage/FullPage.js +20 -19
  20. package/es/Icon/Icon.js +42 -49
  21. package/es/LocaleProvider/LocaleProvider.js +32 -38
  22. package/es/Markdown/Markdown.js +101 -118
  23. package/es/PermissionButton/PermissionButton.js +118 -118
  24. package/es/ProLayout/Basic/BasicLayout.js +361 -418
  25. package/es/ProLayout/Basic/Header.js +97 -111
  26. package/es/ProLayout/PageContainer/index.js +298 -344
  27. package/es/ProLayout/SiderMenu/BaseMenu.js +233 -240
  28. package/es/ProTable/Alert.js +39 -40
  29. package/es/ProTable/Content.js +84 -97
  30. package/es/ProTable/Header.js +32 -33
  31. package/es/ProTable/Pagination.js +56 -55
  32. package/es/ProTable/ProTable.js +256 -276
  33. package/es/RadioButton/RadioButton.js +48 -53
  34. package/es/Scrollbar/Bar.js +65 -76
  35. package/es/Scrollbar/Scrollbar.js +129 -161
  36. package/es/Scrollbar/Thumb.js +101 -150
  37. package/es/Search/Item.js +208 -236
  38. package/es/Search/Search.js +90 -90
  39. package/es/Skeleton/Skeleton.js +26 -27
  40. package/es/Skeleton/components/DashBoardCard.js +26 -27
  41. package/es/Skeleton/components/DashBoardChart.js +26 -27
  42. package/es/Skeleton/components/Detail.js +26 -27
  43. package/es/Skeleton/components/Drawer.js +26 -27
  44. package/es/Skeleton/components/Item.js +55 -54
  45. package/es/Skeleton/components/List.js +29 -27
  46. package/es/Skeleton/components/ListCard.js +28 -28
  47. package/es/Skeleton/components/ListCardItem.js +20 -20
  48. package/es/Skeleton/components/ListTable.js +26 -27
  49. package/es/Skeleton/components/Page.js +27 -26
  50. package/es/Skeleton/components/Search.js +16 -16
  51. package/es/Skeleton/components/Tree.js +26 -27
  52. package/es/TimeFormat/TimeFormat.js +32 -36
  53. package/es/Title/Title.js +23 -26
  54. package/es/ValueItem/ValueItem.js +100 -113
  55. package/es/VirtualTable/VirtualTable.js +235 -271
  56. package/lib/AutoComplete/AutoComplete.js +71 -80
  57. package/lib/BadgeStatus/Badge.js +38 -47
  58. package/lib/CardSelect/CardSelect.js +115 -137
  59. package/lib/CheckButton/CheckButton.js +102 -118
  60. package/lib/ConfigProvider/ConfigProvider.js +44 -68
  61. package/lib/DragModal/DragModal.js +191 -212
  62. package/lib/EditTable/Body.js +158 -189
  63. package/lib/EditTable/CellRender.js +10 -12
  64. package/lib/EditTable/EditTable.js +385 -434
  65. package/lib/EditTable/FormItem.js +140 -169
  66. package/lib/EditTable/Group.js +171 -204
  67. package/lib/EditTable/Header.js +57 -63
  68. package/lib/EditTable/HeaderRender.js +10 -12
  69. package/lib/EditTable/components/ContextMenu/Menu.js +78 -86
  70. package/lib/EditTable/components/Search/Search.js +151 -163
  71. package/lib/EditTable/components/Search/Sort.js +104 -119
  72. package/lib/Ellipsis/Ellipsis.js +144 -148
  73. package/lib/Empty/Empty.js +51 -57
  74. package/lib/FullPage/FullPage.js +20 -19
  75. package/lib/Icon/Icon.js +42 -49
  76. package/lib/LocaleProvider/LocaleProvider.js +32 -38
  77. package/lib/Markdown/Markdown.js +101 -118
  78. package/lib/PermissionButton/PermissionButton.js +118 -118
  79. package/lib/ProLayout/Basic/BasicLayout.js +361 -418
  80. package/lib/ProLayout/Basic/Header.js +97 -111
  81. package/lib/ProLayout/PageContainer/index.js +298 -344
  82. package/lib/ProLayout/SiderMenu/BaseMenu.js +233 -240
  83. package/lib/ProTable/Alert.js +39 -40
  84. package/lib/ProTable/Content.js +84 -97
  85. package/lib/ProTable/Header.js +32 -33
  86. package/lib/ProTable/Pagination.js +56 -55
  87. package/lib/ProTable/ProTable.js +256 -276
  88. package/lib/RadioButton/RadioButton.js +48 -53
  89. package/lib/Scrollbar/Bar.js +65 -76
  90. package/lib/Scrollbar/Scrollbar.js +129 -161
  91. package/lib/Scrollbar/Thumb.js +101 -150
  92. package/lib/Search/Item.js +208 -236
  93. package/lib/Search/Search.js +90 -90
  94. package/lib/Skeleton/Skeleton.js +26 -27
  95. package/lib/Skeleton/components/DashBoardCard.js +26 -27
  96. package/lib/Skeleton/components/DashBoardChart.js +26 -27
  97. package/lib/Skeleton/components/Detail.js +26 -27
  98. package/lib/Skeleton/components/Drawer.js +26 -27
  99. package/lib/Skeleton/components/Item.js +55 -54
  100. package/lib/Skeleton/components/List.js +29 -27
  101. package/lib/Skeleton/components/ListCard.js +28 -28
  102. package/lib/Skeleton/components/ListCardItem.js +20 -20
  103. package/lib/Skeleton/components/ListTable.js +26 -27
  104. package/lib/Skeleton/components/Page.js +27 -26
  105. package/lib/Skeleton/components/Search.js +16 -16
  106. package/lib/Skeleton/components/Tree.js +26 -27
  107. package/lib/TimeFormat/TimeFormat.js +32 -36
  108. package/lib/Title/Title.js +23 -26
  109. package/lib/ValueItem/ValueItem.js +100 -113
  110. package/lib/VirtualTable/VirtualTable.js +235 -271
  111. package/package.json +1 -1
@@ -1,84 +1,75 @@
1
- function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }import { defineComponent as _defineComponent } from 'vue'
2
- import { unref as _unref, mergeProps as _mergeProps, openBlock as _openBlock, createBlock as _createBlock } from "vue"
3
-
4
- import { Select } from 'ant-design-vue'
5
- import { selectProps } from 'ant-design-vue/lib/select'
6
- import { ref, watch, computed } from 'vue'
7
-
8
-
1
+ import { defineComponent as _defineComponent } from 'vue';
2
+ import { unref as _unref, mergeProps as _mergeProps, openBlock as _openBlock, createBlock as _createBlock } from "vue";
3
+ import { Select } from 'ant-design-vue';
4
+ import { selectProps } from 'ant-design-vue/lib/select';
5
+ import { ref, watch, computed } from 'vue';
9
6
  const __sfc_main__ = _defineComponent({
10
- ...{
11
- name: 'JAutoComplete'
12
- },
7
+ ...{
8
+ name: 'JAutoComplete'
9
+ },
13
10
  __name: 'AutoComplete',
14
- props: {
15
- ...selectProps(),
16
- searchKey: {
17
- type: String,
18
- default: 'label',
19
- },
20
- },
11
+ props: {
12
+ ...selectProps(),
13
+ searchKey: {
14
+ type: String,
15
+ default: 'label'
16
+ }
17
+ },
21
18
  emits: ['select', 'change', 'update:value'],
22
- setup(__props, { emit: __emit }) {
23
-
24
-
25
-
26
- const props = __props
27
-
28
- const emit = __emit
29
-
30
- const myValue = ref()
31
- const _label = ref()
32
-
33
- const handleChange = (e) => {
34
- if (e.length === 0) {
35
- myValue.value = undefined
36
- emit('update:value', undefined)
37
- }
38
- }
39
-
40
- const _options = computed(() => {
41
- const item = props.options.find(option => option.value === myValue.value)
42
- if (item || !myValue.value) {
43
- _label.value = _optionalChain([item, 'optionalAccess', _ => _.label])
44
- return props.options
45
- }
46
- _label.value = myValue.value
47
- return [
48
- { label: myValue.value, value: myValue.value },
49
- ...props.options
50
- ]
51
- })
52
-
53
- const handleSearch = (e) => {
54
- myValue.value = e
55
- }
56
-
57
- const onSelect = (val, option) => {
58
- myValue.value = val
59
- emit('update:value', val)
60
- emit('select', val, option)
61
- }
62
-
63
- watch(() => props.value, (val) => {
64
- myValue.value = val
65
- }, { immediate: true })
66
-
67
- return (_ctx,_cache) => {
68
- return (_openBlock(), _createBlock(_unref(Select), _mergeProps({
69
- value: myValue.value,
70
- "onUpdate:value": _cache[0] || (_cache[0] = ($event) => ((myValue).value = $event)),
71
- allowClear: ""
72
- }, props, {
73
- options: _options.value,
74
- mode: "tags",
75
- style: { width: '100%' },
76
- onSelect: onSelect,
77
- onSearch: handleSearch,
78
- onChange: handleChange
79
- }), null, 16 /* FULL_PROPS */, ["value", "options"]))
80
- }
81
- }
82
-
83
- })
19
+ setup(__props, {
20
+ emit: __emit
21
+ }) {
22
+ const props = __props;
23
+ const emit = __emit;
24
+ const myValue = ref();
25
+ const _label = ref();
26
+ const handleChange = e => {
27
+ if (e.length === 0) {
28
+ myValue.value = undefined;
29
+ emit('update:value', undefined);
30
+ }
31
+ };
32
+ const _options = computed(() => {
33
+ const item = props.options.find(option => option.value === myValue.value);
34
+ if (item || !myValue.value) {
35
+ _label.value = item?.label;
36
+ return props.options;
37
+ }
38
+ _label.value = myValue.value;
39
+ return [{
40
+ label: myValue.value,
41
+ value: myValue.value
42
+ }, ...props.options];
43
+ });
44
+ const handleSearch = e => {
45
+ myValue.value = e;
46
+ };
47
+ const onSelect = (val, option) => {
48
+ myValue.value = val;
49
+ emit('update:value', val);
50
+ emit('select', val, option);
51
+ };
52
+ watch(() => props.value, val => {
53
+ myValue.value = val;
54
+ }, {
55
+ immediate: true
56
+ });
57
+ return (_ctx, _cache) => {
58
+ return _openBlock(), _createBlock(_unref(Select), _mergeProps({
59
+ value: myValue.value,
60
+ "onUpdate:value": _cache[0] || (_cache[0] = $event => myValue.value = $event),
61
+ allowClear: ""
62
+ }, props, {
63
+ options: _options.value,
64
+ mode: "tags",
65
+ style: {
66
+ width: '100%'
67
+ },
68
+ onSelect: onSelect,
69
+ onSearch: handleSearch,
70
+ onChange: handleChange
71
+ }), null, 16 /* FULL_PROPS */, ["value", "options"]);
72
+ };
73
+ }
74
+ });
84
75
  export default __sfc_main__;
@@ -1,51 +1,42 @@
1
- import { defineComponent as _defineComponent } from 'vue'
2
- import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock } from "vue"
3
-
4
- import { computed } from 'vue'
5
- import { Badge } from 'ant-design-vue'
6
- import { getHexColor } from './color'
7
-
8
-
1
+ import { defineComponent as _defineComponent } from 'vue';
2
+ import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock } from "vue";
3
+ import { computed } from 'vue';
4
+ import { Badge } from 'ant-design-vue';
5
+ import { getHexColor } from './color';
9
6
  const __sfc_main__ = _defineComponent({
10
- ...{
11
- name: 'JBadgeStatus'
12
- },
7
+ ...{
8
+ name: 'JBadgeStatus'
9
+ },
13
10
  __name: 'Badge',
14
- props: {
15
- text: {
16
- type: String,
17
- },
18
- status: {
19
- type: [String, Number],
20
- default: 'default',
21
- },
22
- statusNames: {
23
- type: Object,
24
- default: () => ({
25
- 'success': 'success',
26
- 'warning': 'warning',
27
- 'error': 'error',
28
- 'default': 'default',
29
- })
30
- },
31
- },
11
+ props: {
12
+ text: {
13
+ type: String
14
+ },
15
+ status: {
16
+ type: [String, Number],
17
+ default: 'default'
18
+ },
19
+ statusNames: {
20
+ type: Object,
21
+ default: () => ({
22
+ 'success': 'success',
23
+ 'warning': 'warning',
24
+ 'error': 'error',
25
+ 'default': 'default'
26
+ })
27
+ }
28
+ },
32
29
  setup(__props) {
33
-
34
-
35
-
36
- const props = __props
37
-
38
- const _color = computed(() => {
39
- return getHexColor(props.statusNames[props.status], 1)
40
- })
41
-
42
- return (_ctx,_cache) => {
43
- return (_openBlock(), _createBlock(_unref(Badge), {
44
- color: _color.value,
45
- text: __props.text
46
- }, null, 8 /* PROPS */, ["color", "text"]))
47
- }
48
- }
49
-
50
- })
30
+ const props = __props;
31
+ const _color = computed(() => {
32
+ return getHexColor(props.statusNames[props.status], 1);
33
+ });
34
+ return (_ctx, _cache) => {
35
+ return _openBlock(), _createBlock(_unref(Badge), {
36
+ color: _color.value,
37
+ text: __props.text
38
+ }, null, 8 /* PROPS */, ["color", "text"]);
39
+ };
40
+ }
41
+ });
51
42
  export default __sfc_main__;
@@ -1,141 +1,119 @@
1
- import { defineComponent as _defineComponent } from 'vue'
2
- import { unref as _unref, renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, normalizeClass as _normalizeClass, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle } from "vue"
3
-
4
- const _hoisted_1 = ["onClick"]
5
-
6
- import { computed, ref, watch } from 'vue'
7
- import { has } from 'lodash-es'
8
- import genComponentStyle from './style'
9
- import { Form } from 'ant-design-vue'
10
-
11
-
1
+ import { defineComponent as _defineComponent } from 'vue';
2
+ import { unref as _unref, renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, normalizeClass as _normalizeClass, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle } from "vue";
3
+ const _hoisted_1 = ["onClick"];
4
+ import { computed, ref, watch } from 'vue';
5
+ import { has } from 'lodash-es';
6
+ import genComponentStyle from './style';
7
+ import { Form } from 'ant-design-vue';
12
8
  const __sfc_main__ = _defineComponent({
13
- ...{
14
- name: 'JCardSelect'
15
- },
9
+ ...{
10
+ name: 'JCardSelect'
11
+ },
16
12
  __name: 'CardSelect',
17
- props: {
18
- layout: {
19
- type: String,
20
- default: 'horizontal'
21
- },
22
- options: {
23
- type: Array,
24
- default: () => []
25
- },
26
- disabled: {
27
- type: Boolean,
28
- default: false
29
- },
30
- multiple: {
31
- type: Boolean,
32
- default: false
33
- },
34
- column: {
35
- type: Number,
36
- default: 3
37
- },
38
- value: {
39
- type: [String, Array],
40
- default: undefined
41
- },
42
- itemLayout: {
43
- type: String,
44
- default: 'horizontal'
45
- }
46
- },
13
+ props: {
14
+ layout: {
15
+ type: String,
16
+ default: 'horizontal'
17
+ },
18
+ options: {
19
+ type: Array,
20
+ default: () => []
21
+ },
22
+ disabled: {
23
+ type: Boolean,
24
+ default: false
25
+ },
26
+ multiple: {
27
+ type: Boolean,
28
+ default: false
29
+ },
30
+ column: {
31
+ type: Number,
32
+ default: 3
33
+ },
34
+ value: {
35
+ type: [String, Array],
36
+ default: undefined
37
+ },
38
+ itemLayout: {
39
+ type: String,
40
+ default: 'horizontal'
41
+ }
42
+ },
47
43
  emits: ['select', 'change', 'update:value'],
48
- setup(__props, { emit: __emit }) {
49
-
50
-
51
-
52
- const props = __props
53
-
54
- const emit = __emit
55
-
56
- const selectKeys = ref([])
57
- const prefixCls = computed(() => 'j-card-select')
58
- const [wrapSSR, hashId] = genComponentStyle(prefixCls)
59
- const formItemContext = Form.useInjectFormItemContext()
60
-
61
- const CardSelectStyle = computed(() => {
62
- const _column = props.column > 0 && props.layout === 'horizontal' ? props.column : 1
63
- return {
64
- 'grid-template-columns': `repeat(${_column}, 1fr)`
65
- }
66
- })
67
-
68
- const isMultiple = computed(() => {
69
- return has(props, 'multiple') && props.multiple !== false
70
- })
71
-
72
- const handleSelect = (key, node) => {
73
- if (props.disabled || node.disabled) {
74
- return
75
- }
76
- const selectKeysSet = new Set(selectKeys.value)
77
- const isActive = selectKeysSet.has(key)
78
- if (isMultiple.value) {
79
- if (isActive) {
80
- selectKeysSet.delete(key)
81
- } else {
82
- selectKeysSet.add(key)
83
- }
84
- selectKeys.value = [...selectKeysSet.values()]
85
- const nodes = props.options.filter((item) => selectKeys.value.includes(item.value))
86
- emit('select', selectKeys.value, nodes)
87
- emit('change', selectKeys.value, nodes)
88
- emit('update:value', selectKeys.value)
89
- } else {
90
- selectKeys.value = [key]
91
- emit('select', key, node)
92
- emit('change', key, node)
93
- emit('update:value', key)
94
- }
95
- formItemContext.onFieldChange()
96
- }
97
-
98
- watch(
99
- () => props.value,
100
- () => {
101
- selectKeys.value = isMultiple.value ? (props.value || []) : [props.value]
102
- },
103
- { immediate: true }
104
- )
105
-
106
- return (_ctx,_cache) => {
107
- return (_openBlock(), _createElementBlock("div", {
108
- class: _normalizeClass(['j-card-select', _unref(hashId)]),
109
- style: _normalizeStyle(CardSelectStyle.value)
110
- }, [
111
- (_openBlock(true), _createElementBlock(_Fragment, null, _renderList(__props.options, (item) => {
112
- return (_openBlock(), _createElementBlock("div", {
113
- key: item.value,
114
- class: _normalizeClass({
115
- 'j-card-select-item': true,
116
- 'disabled': __props.disabled || item.disabled,
117
- 'active': selectKeys.value.includes(item.value),
118
- [_unref(hashId)]: true
119
- }),
120
- onClick: () => handleSelect(item.value, item)
121
- }, [
122
- _renderSlot(_ctx.$slots, "itemRender", { node: item }, () => [
123
- _createElementVNode("div", {
124
- class: _normalizeClass(['j-card-select-item-content', _unref(hashId)])
125
- }, [
126
- _createElementVNode("div", {
127
- class: _normalizeClass(['j-card-select-title', _unref(hashId)])
128
- }, _toDisplayString(item.label), 3 /* TEXT, CLASS */),
129
- _createElementVNode("div", {
130
- class: _normalizeClass(['j-card-select-describe', _unref(hashId)])
131
- }, _toDisplayString(item.describe), 3 /* TEXT, CLASS */)
132
- ], 2 /* CLASS */)
133
- ])
134
- ], 10 /* CLASS, PROPS */, _hoisted_1))
135
- }), 128 /* KEYED_FRAGMENT */))
136
- ], 6 /* CLASS, STYLE */))
137
- }
138
- }
139
-
140
- })
44
+ setup(__props, {
45
+ emit: __emit
46
+ }) {
47
+ const props = __props;
48
+ const emit = __emit;
49
+ const selectKeys = ref([]);
50
+ const prefixCls = computed(() => 'j-card-select');
51
+ const [wrapSSR, hashId] = genComponentStyle(prefixCls);
52
+ const formItemContext = Form.useInjectFormItemContext();
53
+ const CardSelectStyle = computed(() => {
54
+ const _column = props.column > 0 && props.layout === 'horizontal' ? props.column : 1;
55
+ return {
56
+ 'grid-template-columns': `repeat(${_column}, 1fr)`
57
+ };
58
+ });
59
+ const isMultiple = computed(() => {
60
+ return has(props, 'multiple') && props.multiple !== false;
61
+ });
62
+ const handleSelect = (key, node) => {
63
+ if (props.disabled || node.disabled) {
64
+ return;
65
+ }
66
+ const selectKeysSet = new Set(selectKeys.value);
67
+ const isActive = selectKeysSet.has(key);
68
+ if (isMultiple.value) {
69
+ if (isActive) {
70
+ selectKeysSet.delete(key);
71
+ } else {
72
+ selectKeysSet.add(key);
73
+ }
74
+ selectKeys.value = [...selectKeysSet.values()];
75
+ const nodes = props.options.filter(item => selectKeys.value.includes(item.value));
76
+ emit('select', selectKeys.value, nodes);
77
+ emit('change', selectKeys.value, nodes);
78
+ emit('update:value', selectKeys.value);
79
+ } else {
80
+ selectKeys.value = [key];
81
+ emit('select', key, node);
82
+ emit('change', key, node);
83
+ emit('update:value', key);
84
+ }
85
+ formItemContext.onFieldChange();
86
+ };
87
+ watch(() => props.value, () => {
88
+ selectKeys.value = isMultiple.value ? props.value || [] : [props.value];
89
+ }, {
90
+ immediate: true
91
+ });
92
+ return (_ctx, _cache) => {
93
+ return _openBlock(), _createElementBlock("div", {
94
+ class: _normalizeClass(['j-card-select', _unref(hashId)]),
95
+ style: _normalizeStyle(CardSelectStyle.value)
96
+ }, [(_openBlock(true), _createElementBlock(_Fragment, null, _renderList(__props.options, item => {
97
+ return _openBlock(), _createElementBlock("div", {
98
+ key: item.value,
99
+ class: _normalizeClass({
100
+ 'j-card-select-item': true,
101
+ 'disabled': __props.disabled || item.disabled,
102
+ 'active': selectKeys.value.includes(item.value),
103
+ [_unref(hashId)]: true
104
+ }),
105
+ onClick: () => handleSelect(item.value, item)
106
+ }, [_renderSlot(_ctx.$slots, "itemRender", {
107
+ node: item
108
+ }, () => [_createElementVNode("div", {
109
+ class: _normalizeClass(['j-card-select-item-content', _unref(hashId)])
110
+ }, [_createElementVNode("div", {
111
+ class: _normalizeClass(['j-card-select-title', _unref(hashId)])
112
+ }, _toDisplayString(item.label), 3 /* TEXT, CLASS */), _createElementVNode("div", {
113
+ class: _normalizeClass(['j-card-select-describe', _unref(hashId)])
114
+ }, _toDisplayString(item.describe), 3 /* TEXT, CLASS */)], 2 /* CLASS */)])], 10 /* CLASS, PROPS */, _hoisted_1);
115
+ }), 128 /* KEYED_FRAGMENT */))], 6 /* CLASS, STYLE */);
116
+ };
117
+ }
118
+ });
141
119
  export default __sfc_main__;