eco-vue-js 0.10.20 → 0.10.21

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 (51) hide show
  1. package/dist/components/Button/WButton.vue.d.ts +3 -16
  2. package/dist/components/Button/WButton.vue.d.ts.map +1 -1
  3. package/dist/components/Button/WButton.vue.js +19 -18
  4. package/dist/components/Button/WButtonGroup.vue.d.ts.map +1 -1
  5. package/dist/components/Button/WButtonGroup.vue.js +16 -13
  6. package/dist/components/Button/types.d.ts +14 -4
  7. package/dist/components/Button/types.d.ts.map +1 -1
  8. package/dist/components/Checkbox/WCheckbox.vue.d.ts +5 -18
  9. package/dist/components/Checkbox/WCheckbox.vue.d.ts.map +1 -1
  10. package/dist/components/Checkbox/WCheckbox.vue.js +8 -8
  11. package/dist/components/Checkbox/WCheckboxGroup.vue.d.ts +28 -0
  12. package/dist/components/Checkbox/WCheckboxGroup.vue.d.ts.map +1 -0
  13. package/dist/components/Checkbox/WCheckboxGroup.vue.js +125 -0
  14. package/dist/components/Checkbox/WCheckboxGroup.vue2.js +5 -0
  15. package/dist/components/Checkbox/types.d.ts +50 -0
  16. package/dist/components/Checkbox/types.d.ts.map +1 -0
  17. package/dist/components/FieldWrapper/WFieldWrapper.vue.d.ts.map +1 -1
  18. package/dist/components/FieldWrapper/WFieldWrapper.vue.js +117 -116
  19. package/dist/components/FieldWrapper/types.d.ts +1 -0
  20. package/dist/components/FieldWrapper/types.d.ts.map +1 -1
  21. package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.js +4 -3
  22. package/dist/components/FormAsync/WFormAsyncCheckboxGroup.vue.d.ts +26 -0
  23. package/dist/components/FormAsync/WFormAsyncCheckboxGroup.vue.d.ts.map +1 -0
  24. package/dist/components/FormAsync/WFormAsyncCheckboxGroup.vue.js +81 -0
  25. package/dist/components/FormAsync/WFormAsyncCheckboxGroup.vue2.js +5 -0
  26. package/dist/components/FormAsync/WFormAsyncInput.vue.js +1 -0
  27. package/dist/components/FormAsync/WFormAsyncSelect.vue.js +1 -0
  28. package/dist/components/FormAsync/WFormAsyncSelectInfiniteSingle.vue.js +1 -0
  29. package/dist/components/FormAsync/WFormAsyncSelectSingle.vue.js +1 -0
  30. package/dist/components/FormAsync/WFormAsyncSelectStringified.vue.js +1 -0
  31. package/dist/components/FormAsync/types.d.ts +7 -0
  32. package/dist/components/FormAsync/types.d.ts.map +1 -1
  33. package/dist/components/Input/WInput.vue.js +2 -1
  34. package/dist/components/Input/WInputAsync.vue.js +2 -1
  35. package/dist/components/Input/WInputDate.vue.js +1 -0
  36. package/dist/components/Input/WInputOptions.vue.js +1 -0
  37. package/dist/components/Input/WInputSuggest.vue.js +1 -0
  38. package/dist/components/Select/WSelect.vue.js +1 -0
  39. package/dist/components/Select/WSelectAsync.vue.js +1 -0
  40. package/dist/components/Select/WSelectAsyncSingle.vue.js +1 -0
  41. package/dist/components/Select/WSelectSingle.vue.js +1 -0
  42. package/dist/components/Select/WSelectStringified.vue.js +1 -0
  43. package/dist/components/Select/components/SelectOptionPrefix.vue.js +1 -1
  44. package/dist/imports/componentsPlugin.d.ts +3 -1
  45. package/dist/imports/componentsPlugin.d.ts.map +1 -1
  46. package/dist/main.js +2 -0
  47. package/dist/utils/useSelected.d.ts.map +1 -1
  48. package/dist/utils/useSelected.js +16 -3
  49. package/eslint/rules/ui-kit-imports.js +11 -2
  50. package/package.json +10 -23
  51. package/tailwind-base/plugins/default.ts +0 -3
@@ -1,4 +1,4 @@
1
- import { defineComponent, useId, ref, computed, createElementBlock, openBlock, normalizeClass, createElementVNode, createCommentVNode, createBlock, unref, renderSlot, Fragment, createVNode, createTextVNode, toDisplayString, Transition, withCtx, normalizeProps, guardReactiveProps } from 'vue';
1
+ import { defineComponent, useId, ref, computed, createElementBlock, openBlock, mergeProps, createCommentVNode, renderSlot, createElementVNode, createBlock, normalizeClass, unref, Fragment, createVNode, createTextVNode, toDisplayString, Transition, withCtx, normalizeProps, guardReactiveProps } from 'vue';
2
2
  import _sfc_main$2 from '../Button/WButtonCopy.vue.js';
3
3
  import WSkeleton from '../Skeleton/WSkeleton.vue.js';
4
4
  import _sfc_main$3 from '../Tooltip/WTooltip.vue.js';
@@ -45,7 +45,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
45
45
  emptyValue: {},
46
46
  leftError: { type: Boolean },
47
47
  filterField: {},
48
- filterValue: {}
48
+ filterValue: {},
49
+ subgrid: { type: Boolean }
49
50
  },
50
51
  emits: ["click"],
51
52
  setup(__props) {
@@ -60,128 +61,128 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
60
61
  focused.value = value;
61
62
  };
62
63
  return (_ctx, _cache) => {
63
- return openBlock(), createElementBlock("div", {
64
- class: normalizeClass(["relative", {
65
- "mb-[1.125rem] mt-1": !_ctx.noMargin,
66
- [typeof _ctx.$attrs.class === "string" ? _ctx.$attrs.class : ""]: true
67
- }]),
64
+ return openBlock(), createElementBlock("div", mergeProps({ class: "relative" }, { class: _ctx.$attrs.class, style: _ctx.$attrs.style }, {
65
+ class: {
66
+ "mb-[1.125rem] mt-1": !_ctx.noMargin && !_ctx.subgrid,
67
+ "col-span-full grid grid-cols-subgrid": _ctx.subgrid
68
+ },
68
69
  onClick: _cache[0] || (_cache[0] = ($event) => _ctx.$emit("click", $event))
69
- }, [
70
- createElementVNode("label", {
70
+ }), [
71
+ _ctx.title || _ctx.$slots.title ? (openBlock(), createElementBlock("label", {
72
+ key: 0,
71
73
  for: unref(id),
72
- class: normalizeClass({
73
- "cursor-not-allowed": _ctx.disabled && !_ctx.skeleton
74
- })
74
+ class: normalizeClass(["text-accent relative pr-6 text-xs font-semibold leading-loose duration-500", {
75
+ "cursor-not-allowed opacity-50": _ctx.disabled && !_ctx.skeleton,
76
+ "col-start-1": _ctx.subgrid
77
+ }])
78
+ }, [
79
+ !_ctx.skeleton ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
80
+ renderSlot(_ctx.$slots, "title", {}, () => [
81
+ createTextVNode(toDisplayString(_ctx.title), 1)
82
+ ]),
83
+ createVNode(Transition, {
84
+ "enter-active-class": "transition-opacity",
85
+ "leave-active-class": "transition-opacity",
86
+ "enter-from-class": "opacity-0",
87
+ "leave-to-class": "opacity-0"
88
+ }, {
89
+ default: withCtx(() => [
90
+ _ctx.required ? (openBlock(), createElementBlock("span", _hoisted_2, " * ")) : createCommentVNode("", true)
91
+ ]),
92
+ _: 1
93
+ }),
94
+ _ctx.filterField && encodedQueryParam.value ? (openBlock(), createBlock(_sfc_main$1, {
95
+ key: 0,
96
+ "filter-field": _ctx.filterField,
97
+ "encoded-query-param": encodedQueryParam.value,
98
+ class: "absolute -top-0.5 ml-1"
99
+ }, null, 8, ["filter-field", "encoded-query-param"])) : createCommentVNode("", true)
100
+ ], 64)) : (openBlock(), createBlock(WSkeleton, {
101
+ key: 1,
102
+ class: "w-skeleton-w-16"
103
+ }))
104
+ ], 10, _hoisted_1)) : createCommentVNode("", true),
105
+ renderSlot(_ctx.$slots, "subtitle"),
106
+ createElementVNode("div", {
107
+ class: normalizeClass(["grid", {
108
+ "pr-9": !_ctx.title && !_ctx.$slots.title && _ctx.filterField,
109
+ "col-start-2 -col-end-1 row-start-1 -row-end-3 grid-cols-subgrid": _ctx.subgrid,
110
+ "grid-cols-[1fr,auto]": !_ctx.subgrid
111
+ }])
75
112
  }, [
76
- _ctx.title || _ctx.$slots.title ? (openBlock(), createElementBlock("div", {
113
+ !_ctx.skeleton ? (openBlock(), createElementBlock("div", {
77
114
  key: 0,
78
- class: normalizeClass(["text-accent relative mb-2 pr-6 text-xs font-semibold duration-500", {
79
- "opacity-50": _ctx.disabled && !_ctx.skeleton
115
+ class: normalizeClass(["w-has-changes-color-info dark:w-has-changes-color-info-dark relative grid", {
116
+ "focus-within-not:w-has-changes-color-negative dark:focus-within-not:w-has-changes-color-negative-dark": _ctx.errorMessage,
117
+ "col-span-full grid-cols-subgrid": _ctx.subgrid,
118
+ "grid-cols-1": !_ctx.subgrid
80
119
  }])
81
120
  }, [
82
- !_ctx.skeleton ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
83
- renderSlot(_ctx.$slots, "title", {}, () => [
84
- createTextVNode(toDisplayString(_ctx.title), 1)
85
- ]),
86
- createVNode(Transition, {
87
- "enter-active-class": "transition-opacity",
88
- "leave-active-class": "transition-opacity",
89
- "enter-from-class": "opacity-0",
90
- "leave-to-class": "opacity-0"
91
- }, {
92
- default: withCtx(() => [
93
- _ctx.required ? (openBlock(), createElementBlock("span", _hoisted_2, " * ")) : createCommentVNode("", true)
121
+ renderSlot(_ctx.$slots, "field", normalizeProps(guardReactiveProps({ id: unref(id), setFocused, focused: focused.value })), () => [
122
+ createElementVNode("div", {
123
+ class: normalizeClass(["flex min-h-[--w-input-height,2.75rem] items-center font-normal", {
124
+ "font-mono": _ctx.mono,
125
+ "border-t border-solid border-gray-300 dark:border-gray-700": _ctx.title || _ctx.$slots.title
126
+ }])
127
+ }, [
128
+ renderSlot(_ctx.$slots, "default", normalizeProps(guardReactiveProps({ id: unref(id), setFocused, focused: focused.value })), () => [
129
+ createTextVNode(toDisplayString(typeof _ctx.modelValue === "number" ? unref(numberFormatter).format(_ctx.modelValue) : _ctx.modelValue === null ? _ctx.emptyValue ?? "N / A" : _ctx.modelValue || _ctx.emptyValue), 1)
94
130
  ]),
95
- _: 1
96
- }),
97
- _ctx.filterField && encodedQueryParam.value ? (openBlock(), createBlock(_sfc_main$1, {
98
- key: 0,
99
- "filter-field": _ctx.filterField,
100
- "encoded-query-param": encodedQueryParam.value,
101
- class: "absolute -top-0.5 ml-1"
102
- }, null, 8, ["filter-field", "encoded-query-param"])) : createCommentVNode("", true)
103
- ], 64)) : (openBlock(), createBlock(WSkeleton, {
104
- key: 1,
105
- class: "w-skeleton-w-16"
106
- }))
107
- ], 2)) : createCommentVNode("", true),
108
- renderSlot(_ctx.$slots, "subtitle"),
109
- createElementVNode("div", {
110
- class: normalizeClass(["grid grid-cols-[1fr,auto]", {
111
- "pr-9": !_ctx.title && !_ctx.$slots.title && _ctx.filterField
112
- }])
113
- }, [
114
- !_ctx.skeleton ? (openBlock(), createElementBlock("div", {
115
- key: 0,
116
- class: normalizeClass(["w-has-changes-color-info dark:w-has-changes-color-info-dark relative grid grid-cols-1", {
117
- "focus-within-not:w-has-changes-color-negative dark:focus-within-not:w-has-changes-color-negative-dark": _ctx.errorMessage
118
- }])
119
- }, [
120
- renderSlot(_ctx.$slots, "field", normalizeProps(guardReactiveProps({ id: unref(id), setFocused, focused: focused.value })), () => [
121
- createElementVNode("div", {
122
- class: normalizeClass(["flex min-h-[--w-input-height,2.75rem] items-center font-normal", {
123
- "font-mono": _ctx.mono,
124
- "border-t border-solid border-gray-300 dark:border-gray-700": _ctx.title || _ctx.$slots.title
131
+ _ctx.allowCopy && _ctx.modelValue ? (openBlock(), createBlock(_sfc_main$2, {
132
+ key: 0,
133
+ value: `${_ctx.modelValue}`,
134
+ class: "ml-2"
135
+ }, null, 8, ["value"])) : createCommentVNode("", true)
136
+ ], 2)
137
+ ]),
138
+ createVNode(Transition, {
139
+ "enter-active-class": "transition-opacity",
140
+ "leave-active-class": "transition-opacity",
141
+ "enter-from-class": "opacity-0",
142
+ "leave-to-class": "opacity-0"
143
+ }, {
144
+ default: withCtx(() => [
145
+ _ctx.hasChanges ? (openBlock(), createElementBlock("span", _hoisted_3)) : createCommentVNode("", true)
146
+ ]),
147
+ _: 1
148
+ }),
149
+ createVNode(Transition, {
150
+ "enter-active-class": "transition-opacity",
151
+ "leave-active-class": "transition-opacity",
152
+ "enter-from-class": "opacity-0",
153
+ "leave-to-class": "opacity-0"
154
+ }, {
155
+ default: withCtx(() => [
156
+ _ctx.errorMessage ? (openBlock(), createElementBlock("div", {
157
+ key: 0,
158
+ class: normalizeClass(["text-negative dark:text-negative-dark absolute top-full pt-0.5 text-xs font-normal", {
159
+ "right-0 text-end": !_ctx.leftError,
160
+ "left-0 text-start": _ctx.leftError
125
161
  }])
126
- }, [
127
- renderSlot(_ctx.$slots, "default", normalizeProps(guardReactiveProps({ id: unref(id), setFocused, focused: focused.value })), () => [
128
- createTextVNode(toDisplayString(typeof _ctx.modelValue === "number" ? unref(numberFormatter).format(_ctx.modelValue) : _ctx.modelValue === null ? _ctx.emptyValue ?? "N / A" : _ctx.modelValue || _ctx.emptyValue), 1)
129
- ]),
130
- _ctx.allowCopy && _ctx.modelValue ? (openBlock(), createBlock(_sfc_main$2, {
131
- key: 0,
132
- value: `${_ctx.modelValue}`,
133
- class: "ml-2"
134
- }, null, 8, ["value"])) : createCommentVNode("", true)
135
- ], 2)
162
+ }, toDisplayString(_ctx.errorMessage), 3)) : _ctx.maxLength !== void 0 && focused.value ? (openBlock(), createElementBlock("div", _hoisted_4, toDisplayString(unref(numberFormatter).format(`${typeof _ctx.modelValue === "number" ? _ctx.modelValue : _ctx.modelValue || ""}`.length)) + " / " + toDisplayString(unref(numberFormatter).format(_ctx.maxLength)), 1)) : createCommentVNode("", true)
136
163
  ]),
137
- createVNode(Transition, {
138
- "enter-active-class": "transition-opacity",
139
- "leave-active-class": "transition-opacity",
140
- "enter-from-class": "opacity-0",
141
- "leave-to-class": "opacity-0"
142
- }, {
143
- default: withCtx(() => [
144
- _ctx.hasChanges ? (openBlock(), createElementBlock("span", _hoisted_3)) : createCommentVNode("", true)
145
- ]),
146
- _: 1
147
- }),
148
- createVNode(Transition, {
149
- "enter-active-class": "transition-opacity",
150
- "leave-active-class": "transition-opacity",
151
- "enter-from-class": "opacity-0",
152
- "leave-to-class": "opacity-0"
153
- }, {
154
- default: withCtx(() => [
155
- _ctx.errorMessage ? (openBlock(), createElementBlock("div", {
156
- key: 0,
157
- class: normalizeClass(["text-negative dark:text-negative-dark absolute top-full pt-0.5 text-xs font-normal", {
158
- "right-0 text-end": !_ctx.leftError,
159
- "left-0 text-start": _ctx.leftError
160
- }])
161
- }, toDisplayString(_ctx.errorMessage), 3)) : _ctx.maxLength !== void 0 && focused.value ? (openBlock(), createElementBlock("div", _hoisted_4, toDisplayString(unref(numberFormatter).format(`${typeof _ctx.modelValue === "number" ? _ctx.modelValue : _ctx.modelValue || ""}`.length)) + " / " + toDisplayString(unref(numberFormatter).format(_ctx.maxLength)), 1)) : createCommentVNode("", true)
162
- ]),
163
- _: 1
164
- })
165
- ], 2)) : (openBlock(), createBlock(WSkeleton, {
166
- key: 1,
167
- class: "w-skeleton-w-full w-skeleton-rounded-[--w-input-rounded,0.75rem] w-skeleton-h-[--w-input-height,2.75rem]"
168
- })),
169
- _ctx.$slots.right ? (openBlock(), createElementBlock("div", _hoisted_5, [
170
- renderSlot(_ctx.$slots, "right")
171
- ], 512)) : createCommentVNode("", true),
172
- !_ctx.title && !_ctx.$slots.title && _ctx.filterField ? (openBlock(), createBlock(_sfc_main$1, {
173
- key: 3,
174
- "filter-field": _ctx.filterField,
175
- "encoded-query-param": encodedQueryParam.value,
176
- skeleton: _ctx.skeleton,
177
- class: "absolute right-0 self-center"
178
- }, null, 8, ["filter-field", "encoded-query-param", "skeleton"])) : createCommentVNode("", true)
179
- ], 2)
180
- ], 10, _hoisted_1),
164
+ _: 1
165
+ })
166
+ ], 2)) : (openBlock(), createBlock(WSkeleton, {
167
+ key: 1,
168
+ class: "w-skeleton-w-full w-skeleton-rounded-[--w-input-rounded,0.75rem] w-skeleton-h-[--w-input-height,2.75rem]"
169
+ })),
170
+ _ctx.$slots.right ? (openBlock(), createElementBlock("div", _hoisted_5, [
171
+ renderSlot(_ctx.$slots, "right")
172
+ ], 512)) : createCommentVNode("", true),
173
+ !_ctx.title && !_ctx.$slots.title && _ctx.filterField ? (openBlock(), createBlock(_sfc_main$1, {
174
+ key: 3,
175
+ "filter-field": _ctx.filterField,
176
+ "encoded-query-param": encodedQueryParam.value,
177
+ skeleton: _ctx.skeleton,
178
+ class: "absolute right-0 self-center"
179
+ }, null, 8, ["filter-field", "encoded-query-param", "skeleton"])) : createCommentVNode("", true)
180
+ ], 2),
181
181
  _ctx.description ? (openBlock(), createElementBlock("div", {
182
- key: 0,
183
- class: normalizeClass(["text-description whitespace-pre-wrap text-pretty break-words pt-4 text-xs font-normal", {
184
- "opacity-50": _ctx.disabled && !_ctx.skeleton
182
+ key: 1,
183
+ class: normalizeClass(["text-description col-start-1 whitespace-pre-wrap text-pretty break-words text-xs font-normal", {
184
+ "opacity-50": _ctx.disabled && !_ctx.skeleton,
185
+ "pt-4": !_ctx.subgrid
185
186
  }])
186
187
  }, [
187
188
  _ctx.skeleton ? (openBlock(), createBlock(WSkeleton, { key: 0 })) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
@@ -189,10 +190,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
189
190
  ], 64))
190
191
  ], 2)) : createCommentVNode("", true),
191
192
  _ctx.tooltipText && !_ctx.skeleton ? (openBlock(), createBlock(_sfc_main$3, {
192
- key: 1,
193
+ key: 2,
193
194
  text: _ctx.tooltipText
194
195
  }, null, 8, ["text"])) : createCommentVNode("", true)
195
- ], 2);
196
+ ], 16);
196
197
  };
197
198
  }
198
199
  });
@@ -17,5 +17,6 @@ export interface FieldWrapperProps {
17
17
  leftError?: boolean;
18
18
  filterField?: string;
19
19
  filterValue?: unknown;
20
+ subgrid?: boolean;
20
21
  }
21
22
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/FieldWrapper/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAA;IAC7C,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/FieldWrapper/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,iBAAiB;IAChC,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,CAAA;IAC7C,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB"}
@@ -8,14 +8,11 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
8
8
  list: {},
9
9
  valueGetter: {},
10
10
  optionComponent: {},
11
- loading: { type: Boolean },
12
- minimize: { type: Boolean },
13
11
  wrap: { type: Boolean },
14
12
  col: { type: Boolean },
15
13
  semanticType: {},
16
14
  stretch: { type: Boolean },
17
15
  allowClear: { type: Boolean },
18
- semanticTypeMap: {},
19
16
  title: {},
20
17
  description: {},
21
18
  errorMessage: {},
@@ -33,6 +30,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
33
30
  leftError: { type: Boolean },
34
31
  filterField: {},
35
32
  filterValue: {},
33
+ subgrid: { type: Boolean },
34
+ loading: { type: Boolean },
35
+ semanticTypeMap: {},
36
+ to: {},
36
37
  useQueryFn: {},
37
38
  noParams: { type: Boolean },
38
39
  queryParams: {},
@@ -0,0 +1,26 @@
1
+ import { FormAsyncCheckboxGroupProps } from './types';
2
+ declare const _default: <Model, FieldType extends string | number | boolean | null, QueryParams, Entity extends Record<string, unknown>, ValueGetter extends {
3
+ fn(value: Entity): FieldType;
4
+ }["fn"] | undefined = undefined>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
5
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
6
+ readonly onSuccess?: ((value: Model) => any) | undefined;
7
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onSuccess"> & FormAsyncCheckboxGroupProps<Model, FieldType, QueryParams, Entity, ValueGetter> & Partial<{}>> & import('vue').PublicProps;
8
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
9
+ attrs: any;
10
+ slots: {
11
+ option?(_: {
12
+ option: FieldType | Entity | (ValueGetter extends undefined ? FieldType : Entity);
13
+ selected: boolean;
14
+ }): any;
15
+ };
16
+ emit: (e: "success", value: Model) => void;
17
+ }>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18
+ [key: string]: any;
19
+ }> & {
20
+ __ctx?: Awaited<typeof __VLS_setup>;
21
+ };
22
+ export default _default;
23
+ type __VLS_PrettifyLocal<T> = {
24
+ [K in keyof T]: T[K];
25
+ } & {};
26
+ //# sourceMappingURL=WFormAsyncCheckboxGroup.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WFormAsyncCheckboxGroup.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/FormAsync/WFormAsyncCheckboxGroup.vue"],"names":[],"mappings":"AAyBA;AAAA,OA2CO,KAAK,EAAC,2BAA2B,EAAC,MAAM,SAAS,CAAA;yBAOvC,KAAK,EAAE,SAAS,SAAS,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,EAAE,WAAW,EAAE,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,SAAS;IAAC,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,SAAS,CAAA;CAAC,CAAC,IAAI,CAAC,GAAG,SAAS,2BACvL,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,cAClD,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,iBAC5F,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC;WA6G1D,mBAAmB,CAAC;;iOAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;;;;YAnCiB,GAAG;;cAtEzB,SAAS,SAAS,KAAK,KAAG,IAAI;;;;YA8GQ,OAAO,CAAC,OAAO,WAAW,CAAC;;AAvHvE,wBAuH4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -0,0 +1,81 @@
1
+ import { defineComponent, createBlock, openBlock, mergeProps, unref, createSlots, withCtx, renderSlot } from 'vue';
2
+ import _sfc_main$1 from '../Checkbox/WCheckboxGroup.vue.js';
3
+ import { useFormAsync } from './use/useFormAsync.js';
4
+
5
+ const _sfc_main = /* @__PURE__ */ defineComponent({
6
+ __name: "WFormAsyncCheckboxGroup",
7
+ props: {
8
+ list: {},
9
+ valueGetter: {},
10
+ optionComponent: {},
11
+ wrap: { type: Boolean },
12
+ col: { type: Boolean },
13
+ stretch: { type: Boolean },
14
+ allowClear: { type: Boolean },
15
+ iconMap: {},
16
+ titleMap: {},
17
+ tooltipTextMap: {},
18
+ classMap: {},
19
+ title: {},
20
+ description: {},
21
+ errorMessage: {},
22
+ tooltipText: {},
23
+ maxLength: {},
24
+ mono: { type: Boolean },
25
+ hasChanges: { type: Boolean },
26
+ skeleton: { type: Boolean },
27
+ disabled: { type: Boolean },
28
+ required: { type: Boolean },
29
+ mandatory: { type: Boolean },
30
+ noMargin: { type: Boolean },
31
+ allowCopy: { type: Boolean },
32
+ emptyValue: {},
33
+ leftError: { type: Boolean },
34
+ filterField: {},
35
+ filterValue: {},
36
+ subgrid: { type: Boolean },
37
+ readonly: { type: Boolean },
38
+ radio: { type: Boolean },
39
+ loading: { type: Boolean },
40
+ alignTop: { type: Boolean },
41
+ useQueryFn: {},
42
+ noParams: { type: Boolean },
43
+ queryParams: {},
44
+ queryEnabled: { type: Boolean, default: void 0 },
45
+ field: {},
46
+ apiMethod: {},
47
+ confimGetter: {}
48
+ },
49
+ emits: ["success"],
50
+ setup(__props, { emit: __emit }) {
51
+ const props = __props;
52
+ const emit = __emit;
53
+ const { isLoadingError, data, modelValue, submitting, showModal } = useFormAsync(props, (value) => emit("success", value));
54
+ return (_ctx, _cache) => {
55
+ return openBlock(), createBlock(_sfc_main$1, mergeProps({
56
+ ...props,
57
+ modelValue: unref(modelValue),
58
+ list: _ctx.list,
59
+ optionComponent: _ctx.optionComponent,
60
+ loading: _ctx.loading || unref(submitting),
61
+ disabled: _ctx.disabled || unref(isLoadingError),
62
+ skeleton: _ctx.skeleton || !unref(data)
63
+ }, {
64
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(showModal)($event))
65
+ }), createSlots({ _: 2 }, [
66
+ _ctx.$slots.option ? {
67
+ name: "option",
68
+ fn: withCtx(({ option, selected }) => [
69
+ renderSlot(_ctx.$slots, "option", {
70
+ option,
71
+ selected
72
+ })
73
+ ]),
74
+ key: "0"
75
+ } : void 0
76
+ ]), 1040);
77
+ };
78
+ }
79
+ });
80
+
81
+ export { _sfc_main as default };
@@ -0,0 +1,5 @@
1
+ import _sfc_main from './WFormAsyncCheckboxGroup.vue.js';
2
+
3
+
4
+
5
+ export { _sfc_main as default };
@@ -48,6 +48,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
48
48
  leftError: { type: Boolean },
49
49
  filterField: {},
50
50
  filterValue: {},
51
+ subgrid: { type: Boolean },
51
52
  useQueryFn: {},
52
53
  noParams: { type: Boolean },
53
54
  queryParams: {},
@@ -56,6 +56,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
56
56
  leftError: { type: Boolean },
57
57
  filterField: {},
58
58
  filterValue: {},
59
+ subgrid: { type: Boolean },
59
60
  teleport: { type: Boolean },
60
61
  noZIndex: { type: Boolean },
61
62
  zIndex: {},
@@ -61,6 +61,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
61
61
  leftError: { type: Boolean },
62
62
  filterField: {},
63
63
  filterValue: {},
64
+ subgrid: { type: Boolean },
64
65
  teleport: { type: Boolean },
65
66
  noZIndex: { type: Boolean },
66
67
  zIndex: {},
@@ -57,6 +57,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
57
57
  leftError: { type: Boolean },
58
58
  filterField: {},
59
59
  filterValue: {},
60
+ subgrid: { type: Boolean },
60
61
  teleport: { type: Boolean },
61
62
  noZIndex: { type: Boolean },
62
63
  zIndex: {},
@@ -57,6 +57,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
57
57
  leftError: { type: Boolean },
58
58
  filterField: {},
59
59
  filterValue: {},
60
+ subgrid: { type: Boolean },
60
61
  teleport: { type: Boolean },
61
62
  noZIndex: { type: Boolean },
62
63
  zIndex: {},
@@ -1,4 +1,5 @@
1
1
  import { ButtonGroupProps } from '../Button/types';
2
+ import { CheckboxGroupProps } from '../Checkbox/types';
2
3
  import { InputAsyncProps } from '../Input/types';
3
4
  import { SelectAsyncSingleProps, SelectOptionComponent, SelectProps, SelectSingleProps, SelectStringifiedProps } from '../Select/types';
4
5
  import { ToggleProps } from '../Toggle/types';
@@ -49,5 +50,11 @@ export type FormAsyncSelectInfiniteSingleProps<Model, FieldType extends string |
49
50
  export type FormAsyncButtonGroupProps<Model, FieldType extends string | number | boolean | null, QueryParams, Entity extends Record<string, unknown>, ValueGetter extends {
50
51
  fn(value: Entity): FieldType;
51
52
  }['fn'] | undefined = undefined> = Omit<ButtonGroupProps<FieldType, Entity, ValueGetter>, 'modelValue'> & FormAsyncProps<Model, FieldType, QueryParams>;
53
+ /**
54
+ * CheckboxGroup
55
+ */
56
+ export type FormAsyncCheckboxGroupProps<Model, FieldType extends string | number | boolean | null, QueryParams, Entity extends Record<string, unknown>, ValueGetter extends {
57
+ fn(value: Entity): FieldType;
58
+ }['fn'] | undefined = undefined> = Omit<CheckboxGroupProps<FieldType, Entity, ValueGetter>, 'modelValue'> & FormAsyncProps<Model, FieldType, QueryParams>;
52
59
  export {};
53
60
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/FormAsync/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/FormAsync/types.ts"],"names":[],"mappings":"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"}
@@ -49,7 +49,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
49
49
  emptyValue: {},
50
50
  leftError: { type: Boolean },
51
51
  filterField: {},
52
- filterValue: {}
52
+ filterValue: {},
53
+ subgrid: { type: Boolean }
53
54
  },
54
55
  emits: ["update:modelValue", "keypress:enter", "keypress:up", "keypress:down", "keypress:delete", "keypress:backspace", "click:clear", "focus", "blur", "click", "mousedown", "click:suffix", "select:input", "paste"],
55
56
  setup(__props, { expose: __expose, emit: __emit }) {
@@ -59,7 +59,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
59
59
  emptyValue: {},
60
60
  leftError: { type: Boolean },
61
61
  filterField: {},
62
- filterValue: {}
62
+ filterValue: {},
63
+ subgrid: { type: Boolean }
63
64
  },
64
65
  emits: ["update:modelValue"],
65
66
  setup(__props, { emit: __emit }) {
@@ -53,6 +53,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
53
53
  leftError: { type: Boolean },
54
54
  filterField: {},
55
55
  filterValue: {},
56
+ subgrid: { type: Boolean },
56
57
  teleport: { type: Boolean },
57
58
  noZIndex: { type: Boolean },
58
59
  zIndex: {},
@@ -58,6 +58,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
58
58
  leftError: { type: Boolean },
59
59
  filterField: {},
60
60
  filterValue: {},
61
+ subgrid: { type: Boolean },
61
62
  teleport: { type: Boolean },
62
63
  noZIndex: { type: Boolean },
63
64
  zIndex: {},
@@ -54,6 +54,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
54
54
  leftError: { type: Boolean },
55
55
  filterField: {},
56
56
  filterValue: {},
57
+ subgrid: { type: Boolean },
57
58
  teleport: { type: Boolean },
58
59
  noZIndex: { type: Boolean },
59
60
  zIndex: {},
@@ -71,6 +71,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
71
71
  leftError: { type: Boolean },
72
72
  filterField: {},
73
73
  filterValue: {},
74
+ subgrid: { type: Boolean },
74
75
  teleport: { type: Boolean },
75
76
  noZIndex: { type: Boolean },
76
77
  zIndex: {},
@@ -64,6 +64,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
64
64
  leftError: { type: Boolean },
65
65
  filterField: {},
66
66
  filterValue: {},
67
+ subgrid: { type: Boolean },
67
68
  teleport: { type: Boolean },
68
69
  noZIndex: { type: Boolean },
69
70
  zIndex: {},
@@ -62,6 +62,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
62
62
  leftError: { type: Boolean },
63
63
  filterField: {},
64
64
  filterValue: {},
65
+ subgrid: { type: Boolean },
65
66
  teleport: { type: Boolean },
66
67
  noZIndex: { type: Boolean },
67
68
  zIndex: {},
@@ -58,6 +58,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
58
58
  leftError: { type: Boolean },
59
59
  filterField: {},
60
60
  filterValue: {},
61
+ subgrid: { type: Boolean },
61
62
  teleport: { type: Boolean },
62
63
  noZIndex: { type: Boolean },
63
64
  zIndex: {},
@@ -58,6 +58,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
58
58
  leftError: { type: Boolean },
59
59
  filterField: {},
60
60
  filterValue: {},
61
+ subgrid: { type: Boolean },
61
62
  teleport: { type: Boolean },
62
63
  noZIndex: { type: Boolean },
63
64
  zIndex: {},
@@ -19,7 +19,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
19
19
  return _ctx.optionComponent ? (openBlock(), createBlock(resolveDynamicComponent(_ctx.optionComponent), mergeProps({ key: 0 }, _ctx.optionComponentProps, {
20
20
  option: _ctx.option,
21
21
  index: _ctx.index,
22
- search: _ctx.option === void 0 ? _ctx.search : void 0,
22
+ search: _ctx.option === void 0 ? _ctx.search?.toString() : void 0,
23
23
  selected: true,
24
24
  model: true
25
25
  }), {