eco-vue-js 0.10.61 → 0.10.63
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.
- package/dist/components/Select/components/SelectAsyncPrefixPage.vue.d.ts.map +1 -1
- package/dist/components/Select/components/SelectAsyncPrefixPage.vue.js +3 -2
- package/dist/components/Shine/WShine.vue.js +1 -1
- package/dist/components/Shine/WShineEffect.vue.js +1 -1
- package/dist/types/global.d.ts +1 -1
- package/package.json +1 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"SelectAsyncPrefixPage.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Select/components/SelectAsyncPrefixPage.vue"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"SelectAsyncPrefixPage.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/Select/components/SelectAsyncPrefixPage.vue"],"names":[],"mappings":"AA+BA;AAwFA,OAAO,KAAK,EAAC,0BAA0B,EAAE,qBAAqB,EAAC,MAAM,UAAU,CAAA;yBAM9D,KAAK,SAAS,MAAM,GAAG,MAAM,EAAE,IAAI,SAAS,WAAW,EAAE,WAAW,EAAE,eAAe,SAAS,qBAAqB,CAAC,IAAI,CAAC,EACzI,aAAa,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,OAAO,CAAC,EAC9D,YAAY,mBAAmB,CAAC,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC,EAC3G,eAAe,WAAW,CAAC,OAAO,CAAC,OAAO,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,EACjE;WAuJO,mBAAmB,CAAC;;;;uQAAkE,CAAC,4BAA2B;oBACzG,OAAO,KAAK,EAAE,gBAAgB,CAAC,EAAE,CAAC,GAAG,IAAI;WAClD,GAAG;;iBAzGA,CAAC,KAAK,EAAE;YAAC,MAAM,EAAE,IAAI,GAAG,SAAS,CAAC;YAAC,KAAK,EAAE,MAAM,CAAA;SAAC,KAAK,IAAI;;iBAA1D,CAAC,KAAK,EAAE;YAAC,MAAM,EAAE,IAAI,GAAG,SAAS,CAAC;YAAC,KAAK,EAAE,MAAM,CAAA;SAAC,KAAK,IAAI;;;YA3C/D,UAAU,SAAS,KAAK,GAAG,IAAI;YAC/B,oBAAoB,SAAS,MAAM,GAAG,IAAI;YAC1C,iBAAiB,SAAS,OAAO,GAAG,IAAI;;EAsJ1C,KACQ,OAAO,KAAK,EAAE,KAAK,GAAG;IAAE,KAAK,CAAC,EAAE,OAAO,CAAC,OAAO,WAAW,CAAC,CAAA;CAAE;AAlKzE,wBAkK4E;AAC5E,KAAK,mBAAmB,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
@@ -63,7 +63,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
63
63
|
class: normalizeClass({
|
64
64
|
"cursor-pointer": !_ctx.disabled && !_ctx.readonly,
|
65
65
|
"cursor-not-allowed opacity-50": _ctx.disabled
|
66
|
-
})
|
66
|
+
}),
|
67
|
+
onUnselect: ($event) => _ctx.$emit("unselect", _ctx.valueGetter(option))
|
67
68
|
}, createSlots({ _: 2 }, [
|
68
69
|
_ctx.$slots.option ? {
|
69
70
|
name: "option",
|
@@ -72,7 +73,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
72
73
|
]),
|
73
74
|
key: "0"
|
74
75
|
} : void 0
|
75
|
-
]), 1032, ["option", "option-component", "option-component-props", "index", "loading", "disabled", "readonly", "disable-clear", "class"]);
|
76
|
+
]), 1032, ["option", "option-component", "option-component-props", "index", "loading", "disabled", "readonly", "disable-clear", "class", "onUnselect"]);
|
76
77
|
}), 128);
|
77
78
|
};
|
78
79
|
}
|
@@ -5,7 +5,7 @@ import { useShine } from './use/useShine.js';
|
|
5
5
|
const _hoisted_1 = {
|
6
6
|
key: 0,
|
7
7
|
ref: "element",
|
8
|
-
class: "rounded-inherit pointer-events-none absolute inset-0 overflow-hidden"
|
8
|
+
class: "rounded-inherit pointer-events-none absolute inset-0 overflow-hidden print:hidden"
|
9
9
|
};
|
10
10
|
const _sfc_main = /* @__PURE__ */ defineComponent({
|
11
11
|
__name: "WShine",
|
package/dist/types/global.d.ts
CHANGED
@@ -182,7 +182,7 @@ type PathsEntries<Model, FieldType, IncludeNull = false, ParentKey extends strin
|
|
182
182
|
: Head extends keyof Model
|
183
183
|
? Model[Head] extends object
|
184
184
|
? [
|
185
|
-
...PathsEntries<Model[Head], FieldType, IncludeNull, Head
|
185
|
+
...PathsEntries<Model[Head], FieldType, IncludeNull, [ParentKey] extends [never] ? Head : `${ ParentKey }.${ Head }`>,
|
186
186
|
...PathsEntries<Omit<Model, Head>, FieldType, IncludeNull, ParentKey, FilteredModel>
|
187
187
|
]
|
188
188
|
: PathsEntries<Omit<Model, Head>, FieldType, IncludeNull, ParentKey, FilteredModel>
|
package/package.json
CHANGED