vlite3 1.4.30 → 1.4.31
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/components/CategoryManager/CategoryManager.vue2.js +1 -1
- package/components/ColorPicker/ColorIro.vue3.js +2 -2
- package/components/ColorPicker/ColorPicker.vue.js +2 -2
- package/components/FilePicker/FilePickerDropzone.vue.js +1 -1
- package/components/FilePicker/index.vue.js +2 -4
- package/components/Form/Form.vue.d.ts +0 -2
- package/components/Form/Form.vue.js +2 -2
- package/components/Form/Form.vue2.js +368 -336
- package/components/Screen/ScreenFilter.vue.js +1 -1
- package/components/Tabes/Tabes.vue.d.ts +10 -1
- package/components/Tabes/Tabes.vue.js +1 -1
- package/components/Tabes/Tabes.vue2.js +234 -155
- package/components/Tabes/tabes.utils.d.ts +14 -0
- package/components/Tabes/tabes.utils.js +26 -0
- package/components/Tabes/types.d.ts +32 -0
- package/package.json +1 -1
- package/style.css +1 -1
- /package/components/ColorPicker/{ColorIro.vue2.js → ColorIro.vue.js} +0 -0
|
@@ -7,8 +7,8 @@ import "../../core/config.js";
|
|
|
7
7
|
/* empty css */
|
|
8
8
|
/* empty css */
|
|
9
9
|
import k from "../Button.vue.js";
|
|
10
|
-
import N from "./ColorIro.
|
|
11
|
-
/* empty css
|
|
10
|
+
import N from "./ColorIro.vue.js";
|
|
11
|
+
/* empty css */
|
|
12
12
|
import { useEyeDropper as j } from "@vueuse/core";
|
|
13
13
|
const I = ["disabled", "aria-label"], U = { class: "min-w-0 truncate text-foreground" }, A = { class: "absolute left-2.5 top-1/2 -translate-y-1/2 flex items-center justify-center z-20 pointer-events-none" }, F = {
|
|
14
14
|
key: 0,
|
|
@@ -56,14 +56,12 @@ const j = ["multiple", "accept", "data-testid"], O = /* @__PURE__ */ V({
|
|
|
56
56
|
if (!e.hasValue.value) return "";
|
|
57
57
|
const a = e.displayFiles.value, r = a[0]?.fileName || f.value;
|
|
58
58
|
return !t.multiSelect || a.length <= 1 ? r : `${r} +${a.length - 1}`;
|
|
59
|
-
}), v = n(
|
|
60
|
-
() => c["data-testid"] || "filepicker"
|
|
61
|
-
), A = n(() => {
|
|
59
|
+
}), v = n(() => c["data-testid"] || "filepicker"), A = n(() => {
|
|
62
60
|
const a = c;
|
|
63
61
|
return a["data-testid"] ? `${a["data-testid"]}-input` : a.name ? `filepicker-input-${a.name}` : "filepicker-input";
|
|
64
62
|
}), o = () => e.triggerInput(p.value), T = n(() => e.acceptAttribute.value);
|
|
65
63
|
return (a, r) => (u(), N("div", {
|
|
66
|
-
class: C(["vl-file-picker
|
|
64
|
+
class: C(["vl-file-picker w-full min-w-0", { "vl-file-picker--input": l.variant === "input" }])
|
|
67
65
|
}, [
|
|
68
66
|
E("input", {
|
|
69
67
|
ref_key: "fileInput",
|
|
@@ -63,7 +63,6 @@ declare function __VLS_template(): {
|
|
|
63
63
|
}): any;
|
|
64
64
|
};
|
|
65
65
|
refs: {
|
|
66
|
-
sentinelRef: HTMLDivElement;
|
|
67
66
|
footerRef: HTMLDivElement;
|
|
68
67
|
};
|
|
69
68
|
rootEl: HTMLFormElement;
|
|
@@ -123,7 +122,6 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {
|
|
|
123
122
|
pageHeaderClass: string;
|
|
124
123
|
backButtonProps: ButtonProps;
|
|
125
124
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
126
|
-
sentinelRef: HTMLDivElement;
|
|
127
125
|
footerRef: HTMLDivElement;
|
|
128
126
|
}, HTMLFormElement>;
|
|
129
127
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./Form.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const p = /* @__PURE__ */ r(o, [["__scopeId", "data-v-0471687a"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
p as default
|
|
7
7
|
};
|