eco-vue-js 0.11.28 → 0.11.30

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.
@@ -1 +1 @@
1
- {"version":3,"file":"WFormValidator.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/WFormValidator.vue"],"names":[],"mappings":"AAaA;AAiSA,OAAO,EAAC,KAAK,KAAK,EAAmG,MAAM,KAAK,CAAA;AAUhI,KAAK,WAAW,GAAG;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,CAAA;IACpC,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAC;AA6QF,iBAAS,cAAc;WAuDT,OAAO,IAA6B;;iBA5DvC,MAAM,KAAK,EAAE;;iBAAb,MAAM,KAAK,EAAE;;;;;;EAiEvB;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;wBAtGC,MAAM;qBAtFN,IAAI;;;;;;;;;;;;;;;OAsMxB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"WFormValidator.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Form/WFormValidator.vue"],"names":[],"mappings":"AAaA;AAqSA,OAAO,EAAC,KAAK,KAAK,EAAmG,MAAM,KAAK,CAAA;AAUhI,KAAK,WAAW,GAAG;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,UAAU,GAAG,UAAU,EAAE,CAAA;IACpC,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB,CAAC;AAiRF,iBAAS,cAAc;WAuDT,OAAO,IAA6B;;iBA5DvC,MAAM,KAAK,EAAE;;iBAAb,MAAM,KAAK,EAAE;;;;;;EAiEvB;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;wBAtGC,MAAM;qBAtFN,IAAI;;;;;;;;;;;;;;;OAsMxB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -113,6 +113,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
113
113
  };
114
114
  const doValidate = (silent, path) => {
115
115
  if (props.name && path && !path[props.name]) return;
116
+ if (errorMessage.value) return errorMessage.value;
116
117
  const message = _validate(modelValue.value);
117
118
  errorMessage.value = message;
118
119
  if (!silent) {
@@ -127,6 +128,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
127
128
  const message = messages[props.name];
128
129
  if (typeof message === "string") errorMessage.value = message;
129
130
  else if (message instanceof Array) errorMessage.value = message.join(", ");
131
+ if (message) isErrorShown.value = true;
130
132
  };
131
133
  const initModel = () => {
132
134
  isErrorShown.value = false;
package/dist/main.js CHANGED
@@ -113,7 +113,7 @@ export { Notify, initNotify } from './utils/Notify.js';
113
113
  export { SemanticType, setSemanticTypeBackgroundMap, setSemanticTypeBorderMap, setSemanticTypeChipMap, setSemanticTypeTextMap, useSemanticTypeBackgroundMap, useSemanticTypeBorderMap, useSemanticTypeChipMap, useSemanticTypeTextMap } from './utils/SemanticType.js';
114
114
  export { ApiError, ApiErrorCancel, createUseQueryParams, encodeQueryParam, encodeQueryParams, encodeRouteParams, handleApiError } from './utils/api.js';
115
115
  export { Month, WeekDay, addDay, addMonth, addYear, dateFormat, dateFormatter, dateRegexp, dateToQueryString, datetimeFormat, durationHumanize, getDurationRound, getStartOfDay, getStartOfMonth, getStartOfNextDay, getStartOfWeek, isSameDate, isSameMonth, isSameWeek, isSameYear, monthShortFormatter, parseDate, timeFormat, timeFormatShort, weekdayShortFormatter } from './utils/dateTime.js';
116
- export { getIsMobile, getIsTablet, getIsTouchDevice, useIsMobile } from './utils/mobile.js';
116
+ export { getIsMobile, getIsTablet, getIsTouchDevice, setIsTouchDeviceInit, useIsMobile } from './utils/mobile.js';
117
117
  export { Order, encodeOrdering, parseOrdering } from './utils/order.js';
118
118
  export { useProvideDisabled, useProvideReadonly, useProvideSkeleton } from './utils/provide.js';
119
119
  export { supportsPassive } from './utils/supportsPassive.js';
@@ -4,5 +4,6 @@ export declare const useIsMobile: () => {
4
4
  isMobile: Readonly<import('vue').Ref<boolean, boolean>>;
5
5
  isTablet: Readonly<import('vue').Ref<boolean, boolean>>;
6
6
  };
7
+ export declare const setIsTouchDeviceInit: (value: boolean | null) => void;
7
8
  export declare const getIsTouchDevice: () => boolean;
8
9
  //# sourceMappingURL=mobile.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"mobile.d.ts","sourceRoot":"","sources":["../../../src/utils/mobile.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,QAAO,OAE9B,CAAA;AAED,eAAO,MAAM,WAAW,QAAO,OAE9B,CAAA;AAKD,eAAO,MAAM,WAAW;;;CAKvB,CAAA;AAED,eAAO,MAAM,gBAAgB,QAAO,OAEnC,CAAA"}
1
+ {"version":3,"file":"mobile.d.ts","sourceRoot":"","sources":["../../../src/utils/mobile.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,WAAW,QAAO,OAE9B,CAAA;AAED,eAAO,MAAM,WAAW,QAAO,OAE9B,CAAA;AAKD,eAAO,MAAM,WAAW;;;CAKvB,CAAA;AAID,eAAO,MAAM,oBAAoB,GAAI,OAAO,OAAO,GAAG,IAAI,KAAG,IAE5D,CAAA;AAED,eAAO,MAAM,gBAAgB,QAAO,OAEnC,CAAA"}
@@ -15,8 +15,12 @@ const useIsMobile = () => {
15
15
  isTablet: readonly(isTablet)
16
16
  };
17
17
  };
18
+ let isTouchDeviceInit = null;
19
+ const setIsTouchDeviceInit = (value) => {
20
+ isTouchDeviceInit = value;
21
+ };
18
22
  const getIsTouchDevice = () => {
19
- return getIsClientSide() ? "ontouchstart" in window || navigator.maxTouchPoints > 0 : false;
23
+ return isTouchDeviceInit ?? (getIsClientSide() ? "ontouchstart" in window || navigator.maxTouchPoints > 0 : false);
20
24
  };
21
25
  if (getIsClientSide()) {
22
26
  const listener = debounce(() => {
@@ -26,4 +30,4 @@ if (getIsClientSide()) {
26
30
  window.addEventListener("resize", listener);
27
31
  }
28
32
 
29
- export { getIsMobile, getIsTablet, getIsTouchDevice, useIsMobile };
33
+ export { getIsMobile, getIsTablet, getIsTouchDevice, setIsTouchDeviceInit, useIsMobile };
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.11.28",
7
+ "version": "0.11.30",
8
8
  "dependencies": {
9
9
  "@stylistic/eslint-plugin": "5.2.3",
10
10
  "@tanstack/eslint-plugin-query": "5.83.1",