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
@@ -39,18 +39,21 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
39
39
  key: 0,
40
40
  icon: markRaw(unref(IconClose)),
41
41
  "tooltip-text": "Clear",
42
+ top: "",
42
43
  onClick: _cache[0] || (_cache[0] = ($event) => _ctx.$emit("click:clear"))
43
44
  }, null, 8, ["icon"])) : createCommentVNode("", true),
44
45
  _ctx.allowCopy && !_ctx.textSecure ? (openBlock(), createBlock(_sfc_main$1, {
45
46
  key: 1,
46
47
  icon: markRaw(unref(iconCopy)),
47
48
  "tooltip-text": "Copy",
49
+ top: "",
48
50
  onClick: unref(doCopy)
49
51
  }, null, 8, ["icon", "onClick"])) : createCommentVNode("", true),
50
52
  _ctx.allowPaste && !_ctx.disabled && !_ctx.readonly ? (openBlock(), createBlock(_sfc_main$1, {
51
53
  key: 2,
52
54
  icon: markRaw(unref(IconPaste)),
53
55
  "tooltip-text": "Paste",
56
+ top: "",
54
57
  onClick: _cache[1] || (_cache[1] = ($event) => _ctx.$emit("click:paste"))
55
58
  }, null, 8, ["icon"])) : createCommentVNode("", true),
56
59
  _ctx.textSecure ? (openBlock(), createBlock(_sfc_main$1, {
@@ -58,9 +61,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
58
61
  icon: _ctx.isSecureVisible ? markRaw(unref(IconEye)) : markRaw(unref(IconEyeSlash)),
59
62
  "tooltip-text": _ctx.isSecureVisible ? "Hide" : "Show",
60
63
  disabled: _ctx.disabled || _ctx.readonly,
61
- top: !_ctx.focused,
64
+ top: "",
62
65
  onClick: _cache[2] || (_cache[2] = ($event) => _ctx.isSecureVisible ? _ctx.$emit("hide:secure", $event) : _ctx.$emit("show:secure", $event))
63
- }, null, 8, ["icon", "tooltip-text", "disabled", "top"])) : createCommentVNode("", true),
66
+ }, null, 8, ["icon", "tooltip-text", "disabled"])) : createCommentVNode("", true),
64
67
  _ctx.loading ? (openBlock(), createElementBlock("div", _hoisted_2, [
65
68
  createVNode(WSpinner, { class: "[--spinner-size:1.5rem]" })
66
69
  ])) : _ctx.$slots.default ? (openBlock(), createBlock(_sfc_main$1, {
@@ -18,9 +18,9 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
18
18
  class: normalizeClass([{
19
19
  "w-ripple w-ripple-hover cursor-pointer": !_ctx.disabled,
20
20
  "cursor-not-allowed": _ctx.disabled,
21
- "items-center": !_ctx.top,
22
- "items-start": _ctx.top
23
- }, "text-description relative flex h-full w-[calc(var(--w-input-height,2.75rem)-0.125rem)] select-none justify-center"]),
21
+ "h-[calc(var(--w-input-height,2.75rem)-2px)]": _ctx.top,
22
+ "h-full": !_ctx.top
23
+ }, "text-description relative flex w-[calc(var(--w-input-height,2.75rem)-2px)] select-none items-center justify-center"]),
24
24
  onMousedown: _cache[0] || (_cache[0] = withModifiers(() => {
25
25
  }, ["prevent", "stop"])),
26
26
  onClick: _cache[1] || (_cache[1] = withModifiers(($event) => _ctx.$emit("click", $event), ["stop"]))
@@ -74,7 +74,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
74
74
  const props = __props;
75
75
  const emit = __emit;
76
76
  const selectComponentRef = useTemplateRef("selectComponent");
77
- const arrayValue = computed(() => props.modelValue !== null ? props.modelValue.split(props.divider).filter((item, index, arr) => item !== "" && arr.indexOf(item) === index) : []);
77
+ const arrayValue = computed(() => props.modelValue ? props.modelValue.split(props.divider).filter((item, index, arr) => item !== "" && arr.indexOf(item) === index) : []);
78
78
  const updateModelValue = (value, isSelect) => {
79
79
  const valueList = value.split(props.divider);
80
80
  let newValue;
@@ -1 +1 @@
1
- {"version":3,"file":"WToggle.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Toggle/WToggle.vue"],"names":[],"mappings":"AAkGA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,SAAS,CAAA;yBAKvB,KAAK,SAAS,OAAO,GAAG,IAAI,yBAC/B,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;WA0MxD,mBAAmB,CAAC;;gKAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;cA5LP,mBAAmB,SAAS,KAAK,KAAG,IAAI;;;;YAiMF,OAAO,CAAC,OAAO,WAAW,CAAC;;AApNvE,wBAoN4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
1
+ {"version":3,"file":"WToggle.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Toggle/WToggle.vue"],"names":[],"mappings":"AAkIA,OAAO,KAAK,EAAC,WAAW,EAAC,MAAM,SAAS,CAAA;yBASvB,KAAK,SAAS,OAAO,GAAG,IAAI,yBAC/B,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;WAuOxD,mBAAmB,CAAC;;gKAAyD,CAAC,4BAA2B;oBAChG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;cAzNP,mBAAmB,SAAS,KAAK,KAAG,IAAI;;;;YA8NF,OAAO,CAAC,OAAO,WAAW,CAAC;;AAjPvE,wBAiP4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
@@ -1,5 +1,6 @@
1
- import { defineComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, toDisplayString, createCommentVNode, createBlock } from 'vue';
1
+ import { defineComponent, computed, openBlock, createElementBlock, normalizeClass, createElementVNode, toDisplayString, createCommentVNode, createBlock } from 'vue';
2
2
  import WSpinner from '../Spinner/WSpinner.vue.js';
3
+ import { Notify } from '../../utils/Notify.js';
3
4
 
4
5
  const _hoisted_1 = ["disabled"];
5
6
  const _hoisted_2 = {
@@ -19,18 +20,39 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
19
20
  rightLabel: { type: Boolean },
20
21
  noMargin: { type: Boolean },
21
22
  description: { default: void 0 },
22
- intermediate: { type: Boolean, default: false }
23
+ intermediate: { type: Boolean, default: false },
24
+ negate: { type: Boolean },
25
+ validate: {}
23
26
  },
24
27
  emits: ["update:modelValue"],
25
28
  setup(__props, { emit: __emit }) {
26
29
  const props = __props;
27
30
  const emit = __emit;
31
+ const value = computed({
32
+ get: () => {
33
+ if (props.modelValue === null) return null;
34
+ if (props.negate) return !props.modelValue;
35
+ return props.modelValue;
36
+ },
37
+ set: (value2) => {
38
+ if (props.disabled || props.loading || props.readonly) return;
39
+ const newValue = value2 === null ? null : props.negate ? !value2 : value2;
40
+ const errorMessage = Array.isArray(props.validate) ? props.validate.map((item) => item(newValue)).join(", ") : props.validate?.(newValue);
41
+ if (errorMessage) {
42
+ Notify.warn({
43
+ title: "Error",
44
+ caption: errorMessage
45
+ });
46
+ return;
47
+ }
48
+ emit("update:modelValue", newValue);
49
+ }
50
+ });
28
51
  const updateModelValue = () => {
29
- if (props.disabled || props.loading || props.readonly) return;
30
52
  if (props.intermediate) {
31
- emit("update:modelValue", props.modelValue === null ? true : props.modelValue === false ? null : false);
53
+ value.value = value.value === null ? true : value.value === false ? null : false;
32
54
  } else {
33
- emit("update:modelValue", !props.modelValue);
55
+ value.value = !value.value;
34
56
  }
35
57
  };
36
58
  return (_ctx, _cache) => {
@@ -61,18 +83,18 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
61
83
  }, toDisplayString(_ctx.title), 3)) : createCommentVNode("", true),
62
84
  createElementVNode("div", {
63
85
  class: normalizeClass(["relative my-4 h-4 w-10 min-w-10 max-w-10 rounded-lg", {
64
- "bg-gray-400 dark:bg-gray-700": !_ctx.modelValue || _ctx.loading,
65
- "bg-primary-default dark:bg-primary-dark bg-opacity-70 dark:bg-opacity-70": _ctx.modelValue && !_ctx.loading
86
+ "bg-gray-400 dark:bg-gray-700": !value.value || _ctx.loading,
87
+ "bg-primary-default dark:bg-primary-dark bg-opacity-70 dark:bg-opacity-70": value.value && !_ctx.loading
66
88
  }])
67
89
  }, [
68
90
  createElementVNode("div", {
69
91
  class: normalizeClass(["square-6 absolute -top-1 z-10 flex items-center justify-center rounded-full border border-solid shadow-md transition-[right]", {
70
- "right-4": _ctx.modelValue === false,
71
- "right-2": _ctx.modelValue === null,
72
- "right-0": _ctx.modelValue === true,
92
+ "right-4": value.value === false,
93
+ "right-2": value.value === null,
94
+ "right-0": value.value === true,
73
95
  "w-ripple w-hover-circle": !_ctx.disabled && !_ctx.readonly,
74
- "bg-default border-default dark:border-gray-100 dark:bg-gray-100": !_ctx.modelValue || _ctx.loading,
75
- "bg-primary-default dark:bg-primary-dark border-primary-default dark:border-primary-dark": _ctx.modelValue && !_ctx.loading
96
+ "bg-default border-default dark:border-gray-100 dark:bg-gray-100": !value.value || _ctx.loading,
97
+ "bg-primary-default dark:bg-primary-dark border-primary-default dark:border-primary-dark": value.value && !_ctx.loading
76
98
  }])
77
99
  }, [
78
100
  _ctx.loading ? (openBlock(), createBlock(WSpinner, {
@@ -9,5 +9,7 @@ export interface ToggleProps<Value extends boolean | null> {
9
9
  noMargin?: boolean;
10
10
  description?: string;
11
11
  intermediate?: boolean;
12
+ negate?: boolean;
13
+ validate?: ValidateFn | ValidateFn[];
12
14
  }
13
15
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Toggle/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW,CAAC,KAAK,SAAS,OAAO,GAAG,IAAI;IACvD,UAAU,EAAE,KAAK,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Toggle/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,WAAW,CAAC,KAAK,SAAS,OAAO,GAAG,IAAI;IACvD,UAAU,EAAE,KAAK,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,CAAA;CACrC"}
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/rsmple/eco-vue-js.git"
6
6
  },
7
- "version": "0.10.1",
7
+ "version": "0.10.3",
8
8
  "scripts": {
9
9
  "build": "run-p type-check \"build-only {@}\" --",
10
10
  "preview": "vite preview",