eco-vue-js 0.10.1 → 0.10.3

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 (39) hide show
  1. package/dist/components/Button/WButton.vue.d.ts.map +1 -1
  2. package/dist/components/Button/WButton.vue.js +1 -1
  3. package/dist/components/Button/WButtonGroup.vue.d.ts.map +1 -1
  4. package/dist/components/Button/WButtonGroup.vue.js +11 -6
  5. package/dist/components/Button/types.d.ts +1 -1
  6. package/dist/components/Button/types.d.ts.map +1 -1
  7. package/dist/components/FieldWrapper/WFieldWrapper.vue.js +1 -1
  8. package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.d.ts +4 -2
  9. package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.d.ts.map +1 -1
  10. package/dist/components/FormAsync/WFormAsyncButtonGroup.vue.js +19 -50
  11. package/dist/components/FormAsync/WFormAsyncInput.vue.d.ts.map +1 -1
  12. package/dist/components/FormAsync/WFormAsyncInput.vue.js +15 -50
  13. package/dist/components/FormAsync/WFormAsyncSelect.vue.d.ts +1 -1
  14. package/dist/components/FormAsync/WFormAsyncSelect.vue.d.ts.map +1 -1
  15. package/dist/components/FormAsync/WFormAsyncSelect.vue.js +25 -57
  16. package/dist/components/FormAsync/WFormAsyncSelectInfiniteSingle.vue.d.ts.map +1 -1
  17. package/dist/components/FormAsync/WFormAsyncSelectInfiniteSingle.vue.js +16 -51
  18. package/dist/components/FormAsync/WFormAsyncSelectSingle.vue.d.ts.map +1 -1
  19. package/dist/components/FormAsync/WFormAsyncSelectSingle.vue.js +18 -53
  20. package/dist/components/FormAsync/WFormAsyncSelectStringified.vue.d.ts.map +1 -1
  21. package/dist/components/FormAsync/WFormAsyncSelectStringified.vue.js +18 -53
  22. package/dist/components/FormAsync/WFormAsyncToggle.vue.d.ts.map +1 -1
  23. package/dist/components/FormAsync/WFormAsyncToggle.vue.js +17 -63
  24. package/dist/components/FormAsync/types.d.ts +16 -119
  25. package/dist/components/FormAsync/types.d.ts.map +1 -1
  26. package/dist/components/FormAsync/use/useFormAsync.d.ts +9 -0
  27. package/dist/components/FormAsync/use/useFormAsync.d.ts.map +1 -0
  28. package/dist/components/FormAsync/use/useFormAsync.js +61 -0
  29. package/dist/components/Input/WInputAsync.vue.d.ts.map +1 -1
  30. package/dist/components/Input/WInputAsync.vue.js +4 -1
  31. package/dist/components/Input/components/InputActions.vue.d.ts.map +1 -1
  32. package/dist/components/Input/components/InputActions.vue.js +5 -2
  33. package/dist/components/Input/components/InputActionsButton.vue.js +3 -3
  34. package/dist/components/Select/WSelectStringified.vue.js +1 -1
  35. package/dist/components/Toggle/WToggle.vue.d.ts.map +1 -1
  36. package/dist/components/Toggle/WToggle.vue.js +34 -12
  37. package/dist/components/Toggle/types.d.ts +2 -0
  38. package/dist/components/Toggle/types.d.ts.map +1 -1
  39. package/package.json +1 -1
@@ -1,30 +1,20 @@
1
- import { defineComponent, toRef, ref, computed, onBeforeUnmount, openBlock, createBlock, mergeProps, unref, createSlots, withCtx, renderSlot } from 'vue';
1
+ import { defineComponent, openBlock, createBlock, mergeProps, unref, createSlots, withCtx, renderSlot } from 'vue';
2
2
  import _sfc_main$1 from '../Select/WSelectSingle.vue.js';
3
- import { Modal } from '../../utils/Modal.js';
4
- import { Notify } from '../../utils/Notify.js';
5
- import { handleApiError } from '../../utils/api.js';
6
- import { get, set } from '../../utils/utils.js';
3
+ import { useFormAsync } from './use/useFormAsync.js';
7
4
 
8
5
  const _sfc_main = /* @__PURE__ */ defineComponent({
9
6
  __name: "WFormAsyncSelectSingle",
10
7
  props: {
11
- useQueryFn: {},
12
- noParams: { type: Boolean },
13
- queryParams: {},
14
- queryEnabled: { type: Boolean },
15
- field: {},
16
- apiMethod: { type: Function },
17
- confimGetter: { type: Function },
18
8
  allowClear: { type: Boolean },
19
9
  searchModel: { type: Boolean },
20
10
  createdData: {},
21
- valueGetter: { type: Function },
22
- searchFn: { type: Function },
11
+ valueGetter: {},
12
+ searchFn: {},
23
13
  useQueryFnDefault: {},
24
14
  emptyStub: {},
25
15
  hidePrefix: { type: Boolean },
26
- createOption: { type: Function },
27
- filterOptions: { type: Function },
16
+ createOption: {},
17
+ filterOptions: {},
28
18
  hideOptionIcon: { type: Boolean },
29
19
  mobileTitle: {},
30
20
  persist: { type: Boolean },
@@ -76,54 +66,29 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
76
66
  optionComponentProps: {},
77
67
  useQueryFnOptions: {},
78
68
  queryParamsOptions: {},
79
- options: {}
69
+ options: {},
70
+ useQueryFn: {},
71
+ noParams: { type: Boolean },
72
+ queryParams: {},
73
+ queryEnabled: { type: Boolean, default: void 0 },
74
+ field: {},
75
+ apiMethod: {},
76
+ confimGetter: {}
80
77
  },
81
78
  emits: ["success"],
82
79
  setup(__props, { emit: __emit }) {
83
80
  const props = __props;
84
81
  const emit = __emit;
85
- const { data, setData, isLoadingError } = props.noParams === true ? props.useQueryFn({ enabled: toRef(props, "queryEnabled") }) : props.useQueryFn(toRef(props, "queryParams"), { enabled: toRef(props, "queryEnabled") });
86
- const submitting = ref(false);
87
- const modelValue = computed(() => get(data.value ?? {}, props.field) ?? null);
88
- const save = (value) => {
89
- if (submitting.value) return;
90
- submitting.value = true;
91
- return props.apiMethod(set({}, props.field, value)).then((response) => {
92
- setData(response.data);
93
- Notify.success({ title: "Saved" });
94
- emit("success", response.data);
95
- }).catch((error) => handleApiError(error, void 0, props.field)).finally(() => {
96
- submitting.value = false;
97
- });
98
- };
99
- let closeModal = null;
100
- const showModal = (value) => {
101
- closeModal?.();
102
- const confirmProps = props.confimGetter?.(value);
103
- if (!confirmProps) {
104
- save(value);
105
- return;
106
- }
107
- closeModal = Modal.addConfirm({
108
- ...confirmProps,
109
- onAccept: () => {
110
- return save(value);
111
- }
112
- }, () => closeModal = null);
113
- };
114
- onBeforeUnmount(() => {
115
- closeModal?.();
116
- closeModal = null;
117
- });
82
+ const { isLoadingError, data, modelValue, submitting, showModal } = useFormAsync(props, (value) => emit("success", value));
118
83
  return (_ctx, _cache) => {
119
84
  return openBlock(), createBlock(_sfc_main$1, mergeProps({
120
85
  ...props,
121
- modelValue: modelValue.value,
86
+ modelValue: unref(modelValue),
122
87
  skeleton: _ctx.skeleton || !unref(data),
123
88
  disabled: _ctx.disabled || unref(isLoadingError),
124
- loading: _ctx.loading || submitting.value
89
+ loading: _ctx.loading || unref(submitting)
125
90
  }, {
126
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => showModal($event ?? null))
91
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(showModal)($event ?? null))
127
92
  }), createSlots({ _: 2 }, [
128
93
  _ctx.$slots.title ? {
129
94
  name: "title",
@@ -1 +1 @@
1
- {"version":3,"file":"WFormAsyncSelectStringified.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormAsync/WFormAsyncSelectStringified.vue"],"names":[],"mappings":"AA2GA,OAAO,KAAK,EAAC,+BAA+B,EAAC,MAAM,SAAS,CAAA;AAC5D,OAAO,KAAK,EAAC,qBAAqB,EAAC,MAAM,2BAA2B,CAAA;yBAYnD,KAAK,EAAE,SAAS,SAAS,MAAM,EAAE,kBAAkB,EAAE,WAAW,EAAE,IAAI,SAAS,WAAW,EAAE,eAAe,SAAS,qBAAqB,CAAC,IAAI,CAAC,eAClJ,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;WA6LxD,mBAAmB,CAAC;;6OAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;uBAlCc,GAAG;0BACA,GAAG;uBACN,GAAG;;cAtJxB,SAAS,SAAS,KAAK,KAAG,IAAI;;;;YA2LQ,OAAO,CAAC,OAAO,WAAW,CAAC;;AAvMvE,wBAuM4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"WFormAsyncSelectStringified.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormAsync/WFormAsyncSelectStringified.vue"],"names":[],"mappings":"AAAA,OAmDO,KAAK,EAAC,+BAA+B,EAAC,MAAM,SAAS,CAAA;AAC5D,OAAO,KAAK,EAAC,qBAAqB,EAAC,MAAM,2BAA2B,CAAA;yBAOnD,KAAK,EAAE,SAAS,SAAS,MAAM,EAAE,kBAAkB,EAAE,WAAW,EAAE,IAAI,SAAS,WAAW,EAAE,eAAe,SAAS,qBAAqB,CAAC,IAAI,CAAC,eAClJ,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;WA4IxD,mBAAmB,CAAC;;6OAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;uBAnCc,GAAG;0BACA,GAAG;uBACN,GAAG;;cAtGxB,SAAS,SAAS,KAAK,KAAG,IAAI;;;;YA4IQ,OAAO,CAAC,OAAO,WAAW,CAAC;;AAtJvE,wBAsJ4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -1,29 +1,19 @@
1
- import { defineComponent, toRef, ref, computed, onBeforeUnmount, openBlock, createBlock, mergeProps, unref, createSlots, withCtx, renderSlot } from 'vue';
1
+ import { defineComponent, openBlock, createBlock, mergeProps, unref, createSlots, withCtx, renderSlot } from 'vue';
2
2
  import _sfc_main$1 from '../Select/WSelectStringified.vue.js';
3
- import { Modal } from '../../utils/Modal.js';
4
- import { Notify } from '../../utils/Notify.js';
5
- import { handleApiError } from '../../utils/api.js';
6
- import { get, set } from '../../utils/utils.js';
3
+ import { useFormAsync } from './use/useFormAsync.js';
7
4
 
8
5
  const _sfc_main = /* @__PURE__ */ defineComponent({
9
6
  __name: "WFormAsyncSelectStringified",
10
7
  props: {
11
- useQueryFn: {},
12
- noParams: { type: Boolean },
13
- queryParams: {},
14
- queryEnabled: { type: Boolean },
15
- field: {},
16
- apiMethod: { type: Function },
17
- confimGetter: { type: Function },
18
8
  divider: {},
19
- valueGetter: { type: Function },
20
- searchFn: { type: Function },
9
+ valueGetter: {},
10
+ searchFn: {},
21
11
  useQueryFnDefault: {},
22
12
  emptyStub: {},
23
13
  disableClear: { type: Boolean },
24
14
  hidePrefix: { type: Boolean },
25
- createOption: { type: Function },
26
- filterOptions: { type: Function },
15
+ createOption: {},
16
+ filterOptions: {},
27
17
  hideOptionIcon: { type: Boolean },
28
18
  createdData: {},
29
19
  mobileTitle: {},
@@ -76,54 +66,29 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
76
66
  optionComponentProps: {},
77
67
  useQueryFnOptions: {},
78
68
  queryParamsOptions: {},
79
- options: {}
69
+ options: {},
70
+ useQueryFn: {},
71
+ noParams: { type: Boolean },
72
+ queryParams: {},
73
+ queryEnabled: { type: Boolean, default: void 0 },
74
+ field: {},
75
+ apiMethod: {},
76
+ confimGetter: {}
80
77
  },
81
78
  emits: ["success"],
82
79
  setup(__props, { emit: __emit }) {
83
80
  const props = __props;
84
81
  const emit = __emit;
85
- const { data, setData, isLoadingError } = props.noParams === true ? props.useQueryFn({ enabled: toRef(props, "queryEnabled") }) : props.useQueryFn(toRef(props, "queryParams"), { enabled: toRef(props, "queryEnabled") });
86
- const submitting = ref(false);
87
- const modelValue = computed(() => get(data.value ?? {}, props.field) ?? null);
88
- const save = (value) => {
89
- if (submitting.value) return;
90
- submitting.value = true;
91
- return props.apiMethod(set({}, props.field, value)).then((response) => {
92
- setData(response.data);
93
- Notify.success({ title: "Saved" });
94
- emit("success", response.data);
95
- }).catch((error) => handleApiError(error, void 0, props.field)).finally(() => {
96
- submitting.value = false;
97
- });
98
- };
99
- let closeModal = null;
100
- const showModal = (value) => {
101
- closeModal?.();
102
- const confirmProps = props.confimGetter?.(value);
103
- if (!confirmProps) {
104
- save(value);
105
- return;
106
- }
107
- closeModal = Modal.addConfirm({
108
- ...confirmProps,
109
- onAccept: () => {
110
- return save(value);
111
- }
112
- }, () => closeModal = null);
113
- };
114
- onBeforeUnmount(() => {
115
- closeModal?.();
116
- closeModal = null;
117
- });
82
+ const { isLoadingError, data, modelValue, submitting, showModal } = useFormAsync(props, (value) => emit("success", value));
118
83
  return (_ctx, _cache) => {
119
84
  return openBlock(), createBlock(_sfc_main$1, mergeProps({
120
85
  ...props,
121
- modelValue: modelValue.value,
86
+ modelValue: unref(modelValue),
122
87
  skeleton: _ctx.skeleton || !unref(data),
123
88
  disabled: _ctx.disabled || unref(isLoadingError),
124
- loading: _ctx.loading || submitting.value
89
+ loading: _ctx.loading || unref(submitting)
125
90
  }, {
126
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => showModal($event ?? null))
91
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(showModal)($event ?? null))
127
92
  }), createSlots({ _: 2 }, [
128
93
  _ctx.$slots.title ? {
129
94
  name: "title",
@@ -1 +1 @@
1
- {"version":3,"file":"WFormAsyncToggle.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormAsync/WFormAsyncToggle.vue"],"names":[],"mappings":"AAmGA,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,SAAS,CAAA;yBAYhC,KAAK,EAAE,SAAS,SAAS,OAAO,GAAG,IAAI,EAAE,WAAW,eACvD,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;WA+KxD,mBAAmB,CAAC;;uLAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;cAxKP,SAAS,SAAS,KAAK,KAAG,IAAI;;;;YA6KQ,OAAO,CAAC,OAAO,WAAW,CAAC;;AAzLvE,wBAyL4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"WFormAsyncToggle.vue.d.ts","sourceRoot":"","sources":["../../../src/components/FormAsync/WFormAsyncToggle.vue"],"names":[],"mappings":"AAAA,OA6BO,KAAK,EAAC,oBAAoB,EAAC,MAAM,SAAS,CAAA;yBAOhC,KAAK,EAAE,SAAS,SAAS,OAAO,GAAG,IAAI,EAAE,WAAW,eACvD,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;WA6GxD,mBAAmB,CAAC;;uLAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;cAxGP,SAAS,SAAS,KAAK,KAAG,IAAI;;;;YA6GQ,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"}
@@ -1,22 +1,10 @@
1
- import { defineComponent, toRef, ref, computed, onBeforeUnmount, openBlock, createBlock, mergeProps, unref } from 'vue';
1
+ import { defineComponent, openBlock, createBlock, mergeProps, unref } from 'vue';
2
2
  import _sfc_main$1 from '../Toggle/WToggle.vue.js';
3
- import { Modal } from '../../utils/Modal.js';
4
- import { Notify } from '../../utils/Notify.js';
5
- import { handleApiError } from '../../utils/api.js';
6
- import { get, set } from '../../utils/utils.js';
3
+ import { useFormAsync } from './use/useFormAsync.js';
7
4
 
8
5
  const _sfc_main = /* @__PURE__ */ defineComponent({
9
6
  __name: "WFormAsyncToggle",
10
7
  props: {
11
- useQueryFn: {},
12
- noParams: { type: Boolean },
13
- queryParams: {},
14
- queryEnabled: { type: Boolean },
15
- field: {},
16
- apiMethod: { type: Function },
17
- confimGetter: { type: Function },
18
- validate: {},
19
- negate: { type: Boolean },
20
8
  title: {},
21
9
  small: { type: Boolean },
22
10
  disabled: { type: Boolean },
@@ -25,63 +13,29 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
25
13
  rightLabel: { type: Boolean },
26
14
  noMargin: { type: Boolean },
27
15
  description: {},
28
- intermediate: { type: Boolean }
16
+ intermediate: { type: Boolean },
17
+ negate: { type: Boolean },
18
+ validate: {},
19
+ useQueryFn: {},
20
+ noParams: { type: Boolean },
21
+ queryParams: {},
22
+ queryEnabled: { type: Boolean, default: void 0 },
23
+ field: {},
24
+ apiMethod: {},
25
+ confimGetter: {}
29
26
  },
30
27
  emits: ["success"],
31
28
  setup(__props, { emit: __emit }) {
32
29
  const props = __props;
33
30
  const emit = __emit;
34
- const { data, setData, isLoadingError } = props.noParams === true ? props.useQueryFn({ enabled: toRef(props, "queryEnabled") }) : props.useQueryFn(toRef(props, "queryParams"), { enabled: toRef(props, "queryEnabled") });
35
- const loading = ref(false);
36
- const modelValue = computed(() => get(data.value ?? {}, props.field) ?? null);
37
- const save = (value) => {
38
- if (loading.value) return;
39
- const errorMessage = Array.isArray(props.validate) ? props.validate.map((item) => item(value)).join(", ") : props.validate?.(value);
40
- if (errorMessage) {
41
- Notify.warn({
42
- title: "Error",
43
- caption: errorMessage
44
- });
45
- return;
46
- }
47
- loading.value = true;
48
- props.apiMethod(set({}, props.field, value)).then((response) => {
49
- setData(response.data);
50
- Notify.success({ title: "Saved" });
51
- emit("success", response.data);
52
- }).catch((error) => handleApiError(error, void 0, props.field)).finally(() => {
53
- loading.value = false;
54
- });
55
- };
56
- let closeModal = null;
57
- const showModal = (value) => {
58
- closeModal?.();
59
- const confirmProps = props.confimGetter?.(value);
60
- if (!confirmProps) {
61
- save(value);
62
- return;
63
- }
64
- closeModal = Modal.addConfirm({
65
- ...confirmProps,
66
- onAccept: () => {
67
- return save(value);
68
- }
69
- }, () => closeModal = null);
70
- };
71
- onBeforeUnmount(() => {
72
- closeModal?.();
73
- closeModal = null;
74
- });
31
+ const { isLoadingError, data, modelValue, submitting, showModal } = useFormAsync(props, (value) => emit("success", value));
75
32
  return (_ctx, _cache) => {
76
33
  return openBlock(), createBlock(_sfc_main$1, mergeProps({
77
34
  ...props,
78
- modelValue: modelValue.value === null ? null : _ctx.negate ? !modelValue.value : modelValue.value,
79
- loading: loading.value || !unref(data),
80
- disabled: !unref(data) || unref(isLoadingError) || _ctx.disabled,
81
- intermediate: _ctx.intermediate && unref(data) !== void 0
82
- }, {
83
- "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => showModal($event === null ? null : props.negate ? !$event : $event))
84
- }), null, 16);
35
+ modelValue: unref(modelValue),
36
+ loading: _ctx.loading || !unref(data) || unref(submitting),
37
+ disabled: !unref(data) || unref(isLoadingError) || _ctx.disabled
38
+ }, { "onUpdate:modelValue": unref(showModal) }), null, 16, ["onUpdate:modelValue"]);
85
39
  };
86
40
  }
87
41
  });
@@ -2,155 +2,52 @@ import { ButtonGroupProps } from '../Button/types';
2
2
  import { InputAsyncProps } from '../Input/types';
3
3
  import { SelectAsyncSingleProps, SelectOptionComponent, SelectProps, SelectSingleProps, SelectStringifiedProps } from '../Select/types';
4
4
  import { ToggleProps } from '../Toggle/types';
5
- /**
6
- * Input
7
- */
8
- interface FormAsyncInputBaseProps<Model, FieldType extends string | number> extends Omit<InputAsyncProps<FieldType extends number ? 'number' : Exclude<InputType, 'number'>>, 'modelValue' | 'placeholderSecure'> {
5
+ type FormAsyncPropsBase<Model, FieldType> = {
9
6
  queryEnabled?: boolean;
10
7
  field: keyof ObjectPaths<Model, FieldType, true>;
11
8
  apiMethod: (payload: PartialNested<Model>) => Promise<RequestResponse<Model>>;
12
- confimGetter?: (value: FieldType) => ConfirmProps | undefined;
13
- }
14
- interface FormAsyncInputPropsWithParams<Model, FieldType extends string | number, QueryParams> extends FormAsyncInputBaseProps<Model, FieldType> {
9
+ confimGetter?: (payload: FieldType) => ConfirmProps | undefined;
10
+ };
11
+ interface FormAsyncPropsWithParams<Model, FieldType, QueryParams> extends FormAsyncPropsBase<Model, FieldType> {
15
12
  useQueryFn: UseQueryWithParams<Model, QueryParams>;
16
13
  noParams?: never;
17
14
  queryParams: QueryParams;
18
15
  }
19
- interface FormAsyncInputPropsWithoutParams<Model, FieldType extends string | number> extends FormAsyncInputBaseProps<Model, FieldType> {
16
+ interface FormAsyncPropsNoParams<Model, FieldType> extends FormAsyncPropsBase<Model, FieldType> {
20
17
  useQueryFn: UseQueryEmpty<Model>;
21
18
  noParams: true;
22
19
  queryParams?: never;
23
20
  }
24
- export type FormAsyncInputProps<Model, FieldType extends string | number, QueryParams> = FormAsyncInputPropsWithParams<Model, FieldType, QueryParams> | FormAsyncInputPropsWithoutParams<Model, FieldType>;
21
+ export type FormAsyncProps<Model, FieldType, QueryParams> = FormAsyncPropsWithParams<Model, FieldType, QueryParams> | FormAsyncPropsNoParams<Model, FieldType>;
22
+ /**
23
+ * Input
24
+ */
25
+ export type FormAsyncInputProps<Model, FieldType extends string | number, QueryParams> = Omit<InputAsyncProps<FieldType extends number ? 'number' : Exclude<InputType, 'number'>>, 'modelValue' | 'placeholderSecure'> & FormAsyncProps<Model, FieldType, QueryParams>;
25
26
  /**
26
27
  * Toggle
27
28
  */
28
- interface FormAsyncToggleBaseProps<Model, FieldType extends boolean | null> extends Omit<ToggleProps<FieldType>, 'modelValue'> {
29
- queryEnabled?: boolean;
30
- field: keyof ObjectPaths<Model, FieldType, true>;
31
- apiMethod: (payload: PartialNested<Model>) => Promise<RequestResponse<Model>>;
32
- confimGetter?: (payload: FieldType) => ConfirmProps | undefined;
33
- validate?: ValidateFn | ValidateFn[];
34
- negate?: boolean;
35
- }
36
- interface FormAsyncTogglePropsWithParams<Model, FieldType extends boolean | null, QueryParams> extends FormAsyncToggleBaseProps<Model, FieldType> {
37
- useQueryFn: UseQueryWithParams<Model, QueryParams>;
38
- noParams?: never;
39
- queryParams: QueryParams;
40
- }
41
- interface FormAsyncTogglePropsWithoutParams<Model, FieldType extends boolean | null> extends FormAsyncToggleBaseProps<Model, FieldType> {
42
- useQueryFn: UseQueryEmpty<Model>;
43
- noParams: true;
44
- queryParams?: never;
45
- }
46
- export type FormAsyncToggleProps<Model, FieldType extends boolean | null, QueryParams> = FormAsyncTogglePropsWithParams<Model, FieldType, QueryParams> | FormAsyncTogglePropsWithoutParams<Model, FieldType>;
29
+ export type FormAsyncToggleProps<Model, FieldType extends boolean | null, QueryParams> = Omit<ToggleProps<FieldType>, 'modelValue'> & FormAsyncProps<Model, FieldType, QueryParams>;
47
30
  /**
48
31
  * Select
49
32
  */
50
- interface FormAsyncSelectBaseProps<Model, FieldType extends string | number, QueryParamsOptions, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> extends Omit<SelectProps<FieldType, Data, QueryParamsOptions, OptionComponent>, 'modelValue'> {
51
- queryEnabled?: boolean;
52
- field: keyof ObjectPaths<Model, FieldType[], true>;
53
- apiMethod: (payload: PartialNested<Model>) => Promise<RequestResponse<Model>>;
54
- confimGetter?: (value: FieldType, isSelect: boolean) => ConfirmProps | undefined;
55
- }
56
- interface FormAsyncSelectPropsWithParams<Model, FieldType extends string | number, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> extends FormAsyncSelectBaseProps<Model, FieldType, QueryParamsOptions, Data, OptionComponent> {
57
- useQueryFn: UseQueryWithParams<Model, QueryParams>;
58
- noParams?: never;
59
- queryParams: QueryParams;
60
- }
61
- interface FormAsyncSelectPropsWithoutParams<Model, FieldType extends string | number, QueryParamsOptions, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> extends FormAsyncSelectBaseProps<Model, FieldType, QueryParamsOptions, Data, OptionComponent> {
62
- useQueryFn: UseQueryEmpty<Model>;
63
- noParams: true;
64
- queryParams?: never;
65
- }
66
- export type FormAsyncSelectProps<Model, FieldType extends string | number, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> = FormAsyncSelectPropsWithParams<Model, FieldType, QueryParamsOptions, QueryParams, Data, OptionComponent> | FormAsyncSelectPropsWithoutParams<Model, FieldType, QueryParamsOptions, Data, OptionComponent>;
33
+ export type FormAsyncSelectProps<Model, FieldType extends string[] | number[], QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> = Omit<SelectProps<FieldType[number], Data, QueryParamsOptions, OptionComponent>, 'modelValue'> & FormAsyncProps<Model, FieldType, QueryParams>;
67
34
  /**
68
35
  * SelectSingle
69
36
  */
70
- interface FormAsyncSelectSingleBaseProps<Model, FieldType extends string | number, QueryParamsOptions, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> extends Omit<SelectSingleProps<FieldType, Data, QueryParamsOptions, OptionComponent, AllowClear>, 'modelValue'> {
71
- queryEnabled?: boolean;
72
- field: keyof ObjectPaths<Model, FieldType, true>;
73
- apiMethod: (payload: PartialNested<Model>) => Promise<RequestResponse<Model>>;
74
- confimGetter?: (value: FieldType) => ConfirmProps | undefined;
75
- }
76
- interface FormAsyncSelectSinglePropsWithParams<Model, FieldType extends string | number, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> extends FormAsyncSelectSingleBaseProps<Model, FieldType, QueryParamsOptions, Data, OptionComponent, AllowClear> {
77
- useQueryFn: UseQueryWithParams<Model, QueryParams>;
78
- noParams?: never;
79
- queryParams: QueryParams;
80
- }
81
- interface FormAsyncSelectSinglePropsWithoutParams<Model, FieldType extends string | number, QueryParamsOptions, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> extends FormAsyncSelectSingleBaseProps<Model, FieldType, QueryParamsOptions, Data, OptionComponent, AllowClear> {
82
- useQueryFn: UseQueryEmpty<Model>;
83
- noParams: true;
84
- queryParams?: never;
85
- }
86
- export type FormAsyncSelectSingleProps<Model, FieldType extends string | number, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> = FormAsyncSelectSinglePropsWithParams<Model, FieldType, QueryParamsOptions, QueryParams, Data, OptionComponent, AllowClear> | FormAsyncSelectSinglePropsWithoutParams<Model, FieldType, QueryParamsOptions, Data, OptionComponent, AllowClear>;
37
+ export type FormAsyncSelectSingleProps<Model, FieldType extends string | number, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> = Omit<SelectSingleProps<FieldType, Data, QueryParamsOptions, OptionComponent, AllowClear>, 'modelValue'> & FormAsyncProps<Model, FieldType, QueryParams>;
87
38
  /**
88
39
  * SelectStringified
89
40
  */
90
- interface FormAsyncSelectStringifiedBaseProps<Model, FieldType extends string, QueryParamsOptions, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> extends Omit<SelectStringifiedProps<FieldType, Data, QueryParamsOptions, OptionComponent>, 'modelValue'> {
91
- queryEnabled?: boolean;
92
- field: keyof ObjectPaths<Model, FieldType, true>;
93
- apiMethod: (payload: PartialNested<Model>) => Promise<RequestResponse<Model>>;
94
- confimGetter?: (value: FieldType) => ConfirmProps | undefined;
95
- }
96
- interface FormAsyncSelectStringifiedPropsWithParams<Model, FieldType extends string, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> extends FormAsyncSelectStringifiedBaseProps<Model, FieldType, QueryParamsOptions, Data, OptionComponent> {
97
- useQueryFn: UseQueryWithParams<Model, QueryParams>;
98
- noParams?: never;
99
- queryParams: QueryParams;
100
- }
101
- interface FormAsyncSelectStringifiedPropsWithoutParams<Model, FieldType extends string, QueryParamsOptions, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> extends FormAsyncSelectStringifiedBaseProps<Model, FieldType, QueryParamsOptions, Data, OptionComponent> {
102
- useQueryFn: UseQueryEmpty<Model>;
103
- noParams: true;
104
- queryParams?: never;
105
- }
106
- export type FormAsyncSelectStringifiedProps<Model, FieldType extends string, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> = FormAsyncSelectStringifiedPropsWithParams<Model, FieldType, QueryParamsOptions, QueryParams, Data, OptionComponent> | FormAsyncSelectStringifiedPropsWithoutParams<Model, FieldType, QueryParamsOptions, Data, OptionComponent>;
41
+ export type FormAsyncSelectStringifiedProps<Model, FieldType extends string, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>> = Omit<SelectStringifiedProps<FieldType, Data, QueryParamsOptions, OptionComponent>, 'modelValue'> & FormAsyncProps<Model, FieldType, QueryParams>;
107
42
  /**
108
43
  * SelectInfiniteSingle
109
44
  */
110
- interface FormAsyncSelectInfiniteSingleBaseProps<Model, FieldType extends string | number, QueryParamsOptions, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> extends Omit<SelectAsyncSingleProps<FieldType, Data, QueryParamsOptions, OptionComponent, AllowClear>, 'modelValue'> {
111
- queryEnabled?: boolean;
112
- field: keyof ObjectPaths<Model, FieldType, true>;
113
- apiMethod: (payload: PartialNested<Model>) => Promise<RequestResponse<Model>>;
114
- confimGetter?: (value: FieldType) => ConfirmProps | undefined;
115
- }
116
- interface FormAsyncSelectInfiniteSinglePropsWithParams<Model, FieldType extends string | number, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> extends FormAsyncSelectInfiniteSingleBaseProps<Model, FieldType, QueryParamsOptions, Data, OptionComponent, AllowClear> {
117
- useQueryFn: UseQueryWithParams<Model, QueryParams>;
118
- noParams?: never;
119
- queryParams: QueryParams;
120
- }
121
- interface FormAsyncSelectInfiniteSinglePropsWithoutParams<Model, FieldType extends string | number, QueryParamsOptions, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> extends FormAsyncSelectInfiniteSingleBaseProps<Model, FieldType, QueryParamsOptions, Data, OptionComponent, AllowClear> {
122
- useQueryFn: UseQueryEmpty<Model>;
123
- noParams: true;
124
- queryParams?: never;
125
- }
126
- export type FormAsyncSelectInfiniteSingleProps<Model, FieldType extends string | number, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> = FormAsyncSelectInfiniteSinglePropsWithParams<Model, FieldType, QueryParamsOptions, QueryParams, Data, OptionComponent, AllowClear> | FormAsyncSelectInfiniteSinglePropsWithoutParams<Model, FieldType, QueryParamsOptions, Data, OptionComponent, AllowClear>;
45
+ export type FormAsyncSelectInfiniteSingleProps<Model, FieldType extends string | number, QueryParamsOptions, QueryParams, Data extends DefaultData, OptionComponent extends SelectOptionComponent<Data>, AllowClear extends boolean = false> = Omit<SelectAsyncSingleProps<FieldType, Data, QueryParamsOptions, OptionComponent, AllowClear>, 'modelValue'> & FormAsyncProps<Model, FieldType, QueryParams>;
127
46
  /**
128
47
  * ButtonGroup
129
48
  */
130
- interface FormAsyncButtonGroupBaseProps<Model, FieldType extends string | number | boolean | null, Entity extends Record<string, unknown>, ValueGetter extends {
131
- fn(value: Entity): FieldType;
132
- }['fn'] | undefined = undefined> extends Omit<ButtonGroupProps<FieldType, Entity, ValueGetter>, 'modelValue' | 'loading'> {
133
- queryEnabled?: boolean;
134
- field: keyof ObjectPaths<Model, FieldType, true>;
135
- apiMethod: (payload: PartialNested<Model>) => Promise<RequestResponse<Model>>;
136
- confimGetter?: (value: FieldType) => ConfirmProps | undefined;
137
- }
138
- interface FormAsyncButtonGroupPropsWithParams<Model, FieldType extends string | number | boolean | null, QueryParams, Entity extends Record<string, unknown>, ValueGetter extends {
139
- fn(value: Entity): FieldType;
140
- }['fn'] | undefined = undefined> extends FormAsyncButtonGroupBaseProps<Model, FieldType, Entity, ValueGetter> {
141
- useQueryFn: UseQueryWithParams<Model, QueryParams>;
142
- noParams?: never;
143
- queryParams: QueryParams;
144
- }
145
- interface FormAsyncButtonGroupPropsWithoutParams<Model, FieldType extends string | number | boolean | null, Entity extends Record<string, unknown>, ValueGetter extends {
146
- fn(value: Entity): FieldType;
147
- }['fn'] | undefined = undefined> extends FormAsyncButtonGroupBaseProps<Model, FieldType, Entity, ValueGetter> {
148
- useQueryFn: UseQueryEmpty<Model>;
149
- noParams: true;
150
- queryParams?: never;
151
- }
152
49
  export type FormAsyncButtonGroupProps<Model, FieldType extends string | number | boolean | null, QueryParams, Entity extends Record<string, unknown>, ValueGetter extends {
153
50
  fn(value: Entity): FieldType;
154
- }['fn'] | undefined = undefined> = FormAsyncButtonGroupPropsWithParams<Model, FieldType, QueryParams, Entity, ValueGetter> | FormAsyncButtonGroupPropsWithoutParams<Model, FieldType, Entity, ValueGetter>;
51
+ }['fn'] | undefined = undefined> = Omit<ButtonGroupProps<FieldType, Entity, ValueGetter>, 'modelValue'> & FormAsyncProps<Model, FieldType, QueryParams>;
155
52
  export {};
156
53
  //# 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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"}
@@ -0,0 +1,9 @@
1
+ import { FormAsyncProps } from '../types';
2
+ export declare const useFormAsync: <Model, FieldType, QueryParams>(props: FormAsyncProps<Model, FieldType, QueryParams>, onSuccess: (value: Model) => void) => {
3
+ isLoadingError: import('vue').Ref<false, false> | import('vue').Ref<true, true>;
4
+ data: import('vue').Ref<undefined, undefined> | import('vue').Ref<Model, Model>;
5
+ modelValue: import('vue').ComputedRef<FieldType | undefined>;
6
+ submitting: import('vue').Ref<boolean, boolean>;
7
+ showModal: (value: FieldType) => void;
8
+ };
9
+ //# sourceMappingURL=useFormAsync.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useFormAsync.d.ts","sourceRoot":"","sources":["../../../../src/components/FormAsync/use/useFormAsync.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,UAAU,CAAA;AAM5C,eAAO,MAAM,YAAY,GAAI,KAAK,EAAE,SAAS,EAAE,WAAW,SAAS,cAAc,CAAC,KAAK,EAAE,SAAS,EAAE,WAAW,CAAC,aAAa,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI;;;;;uBAgCvH,SAAS;CA8BpC,CAAA"}
@@ -0,0 +1,61 @@
1
+ import { toRef, ref, computed, onBeforeUnmount } from 'vue';
2
+ import '../../Button/WButtonAction.vue.js';
3
+ import '../../Button/WButton.vue.js';
4
+ import { get, set } from '../../../utils/utils.js';
5
+ import { Notify } from '../../../utils/Notify.js';
6
+ import '../../Button/WButtonDropdown.vue.js';
7
+ import '../../../utils/supportsPassive.js';
8
+ import '../../Dropdown/utils/DropdownStyle.js';
9
+ import 'vue-router';
10
+ import { Modal } from '../../../utils/Modal.js';
11
+ import '../../Input/WInputSuggest.vue.js';
12
+ import { handleApiError } from '../../../utils/api.js';
13
+ import '../../Input/WInputDate.vue.js';
14
+ import '../../Link/WLink.vue.js';
15
+ import '@tanstack/vue-query';
16
+
17
+ const useFormAsync = (props, onSuccess) => {
18
+ const enabled = toRef(props, "queryEnabled");
19
+ const { data, setData, isLoadingError } = props.noParams === true ? props.useQueryFn({ enabled }) : props.useQueryFn(toRef(props, "queryParams"), { enabled });
20
+ const submitting = ref(false);
21
+ const modelValue = computed(() => get(data.value ?? {}, props.field));
22
+ const save = (value) => {
23
+ if (submitting.value) return;
24
+ submitting.value = true;
25
+ return props.apiMethod(set({}, props.field, value)).then((response) => {
26
+ setData(response.data);
27
+ Notify.success({ title: "Saved" });
28
+ onSuccess(response.data);
29
+ }).catch((error) => handleApiError(error, void 0, props.field)).finally(() => {
30
+ submitting.value = false;
31
+ });
32
+ };
33
+ let closeModal = null;
34
+ const showModal = (value) => {
35
+ closeModal?.();
36
+ const confirmProps = props.confimGetter?.(value);
37
+ if (!confirmProps) {
38
+ save(value);
39
+ return;
40
+ }
41
+ closeModal = Modal.addConfirm({
42
+ ...confirmProps,
43
+ onAccept: () => {
44
+ return save(value);
45
+ }
46
+ }, () => closeModal = null);
47
+ };
48
+ onBeforeUnmount(() => {
49
+ closeModal?.();
50
+ closeModal = null;
51
+ });
52
+ return {
53
+ isLoadingError,
54
+ data,
55
+ modelValue,
56
+ submitting,
57
+ showModal
58
+ };
59
+ };
60
+
61
+ export { useFormAsync };
@@ -1 +1 @@
1
- {"version":3,"file":"WInputAsync.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input/WInputAsync.vue"],"names":[],"mappings":"AAuSA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,SAAS,CAAA;yBAiB3B,IAAI,SAAS,SAAS,wBACzB,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;WAmfxD,mBAAmB,CAAC;;mKAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;uBA/Ce,GAAG;0BACA,GAAG;uBACN,GAAG;;cA7bzB,mBAAmB,SAAS,4CAAa,SAAS,KAAG,IAAI;;;;YA+enB,OAAO,CAAC,OAAO,WAAW,CAAC;;AA7fvE,wBA6f4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"WInputAsync.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Input/WInputAsync.vue"],"names":[],"mappings":"AA0SA,OAAO,KAAK,EAAC,eAAe,EAAC,MAAM,SAAS,CAAA;yBAiB3B,IAAI,SAAS,SAAS,wBACzB,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;WAofxD,mBAAmB,CAAC;;mKAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;uBA/Ce,GAAG;0BACA,GAAG;uBACN,GAAG;;cA9bzB,mBAAmB,SAAS,4CAAa,SAAS,KAAG,IAAI;;;;YAgfnB,OAAO,CAAC,OAAO,WAAW,CAAC;;AA9fvE,wBA8f4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -235,7 +235,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
235
235
  onMousedown: _cache[0] || (_cache[0] = withModifiers(() => {
236
236
  }, ["stop", "prevent"]))
237
237
  }, [
238
- _ctx.loading ? (openBlock(), createBlock(WSpinner, { key: 0 })) : canSave.value ? (openBlock(), createBlock(unref(IconCheck), { key: 1 })) : focused.value ? (openBlock(), createBlock(unref(IconSlash), { key: 2 })) : (openBlock(), createBlock(unref(IconEdit), { key: 3 })),
238
+ _ctx.loading ? (openBlock(), createBlock(WSpinner, {
239
+ key: 0,
240
+ class: "w-spinner-size-5"
241
+ })) : canSave.value ? (openBlock(), createBlock(unref(IconCheck), { key: 1 })) : focused.value ? (openBlock(), createBlock(unref(IconSlash), { key: 2 })) : (openBlock(), createBlock(unref(IconEdit), { key: 3 })),
239
242
  !_ctx.loading && focused.value ? (openBlock(), createBlock(_sfc_main$2, {
240
243
  key: 4,
241
244
  text: canSave.value ? "Save" : "Cancel"
@@ -1 +1 @@
1
- {"version":3,"file":"InputActions.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/components/InputActions.vue"],"names":[],"mappings":"AA4IA,iBAAS,cAAc;;yBAmLO,GAAG;;;WASnB,OAAO,IAA6B;EAEjD;AAwBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;iBAzPN,MAAM,GAAG,MAAM;cAClB,OAAO;iBACJ,OAAO;iBACP,OAAO;gBACR,OAAO;eACR,OAAO;eACP,OAAO;iBACL,OAAO;sBACF,OAAO;cACf,OAAO;;;;;;;;iBATJ,MAAM,GAAG,MAAM;cAClB,OAAO;iBACJ,OAAO;iBACP,OAAO;gBACR,OAAO;eACR,OAAO;eACP,OAAO;iBACL,OAAO;sBACF,OAAO;cACf,OAAO;;;;;;;kFA6PjB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"InputActions.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/components/InputActions.vue"],"names":[],"mappings":"AA+IA,iBAAS,cAAc;;yBAmLO,GAAG;;;WASnB,OAAO,IAA6B;EAEjD;AAwBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;iBAzPN,MAAM,GAAG,MAAM;cAClB,OAAO;iBACJ,OAAO;iBACP,OAAO;gBACR,OAAO;eACR,OAAO;eACP,OAAO;iBACL,OAAO;sBACF,OAAO;cACf,OAAO;;;;;;;;iBATJ,MAAM,GAAG,MAAM;cAClB,OAAO;iBACJ,OAAO;iBACP,OAAO;gBACR,OAAO;eACR,OAAO;eACP,OAAO;iBACL,OAAO;sBACF,OAAO;cACf,OAAO;;;;;;;kFA6PjB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAWpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}