@dpa-id-components/dpa-shared-components 10.1.0 → 11.0.0-alpha.0
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/UiMenu/UiMenu.stories.d.ts +10 -6
- package/dist/components/UiMenu/UiMenu.vue.d.ts +3 -1
- package/dist/components/UiMenu/UiMenuItem.vue.d.ts +3 -1
- package/dist/dpa-shared-components.mjs +4 -4
- package/dist/dpa-shared-components.umd.js +2 -2
- package/dist/eslint.base.config.mjs +51 -0
- package/dist/style.css +1 -1
- package/dist/tailwind.config.cjs +1 -0
- package/package.json +13 -12
- package/dist/.eslintrc.cjs +0 -47
|
@@ -50,8 +50,8 @@ declare const meta: {
|
|
|
50
50
|
defaultTitle?: string | undefined;
|
|
51
51
|
noTitle?: boolean | undefined;
|
|
52
52
|
multiLabel?: string | undefined;
|
|
53
|
-
filterButtonSize?: "small" | "xs" | undefined;
|
|
54
|
-
buttonVariant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | undefined;
|
|
53
|
+
filterButtonSize?: ("small" | "xs") | undefined;
|
|
54
|
+
buttonVariant?: ("blue-rounded" | "white-rounded" | "transparent-rounded" | "blank") | undefined;
|
|
55
55
|
listVariant?: import('./UiMenuTypes').UiMenuListVariant | undefined;
|
|
56
56
|
checkboxColor?: import('./UiMenuTypes').UiMenuCheckboxColor | undefined;
|
|
57
57
|
hasResetOption?: boolean | undefined;
|
|
@@ -88,7 +88,9 @@ declare const meta: {
|
|
|
88
88
|
}): any;
|
|
89
89
|
}>;
|
|
90
90
|
emit: (event: "close" | "reset" | "input" | "open" | "option-selected" | "placed", ...args: any[]) => void;
|
|
91
|
-
}>) => import('vue').VNode
|
|
91
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
92
|
+
[key: string]: any;
|
|
93
|
+
}> & {
|
|
92
94
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
93
95
|
};
|
|
94
96
|
argTypes: {
|
|
@@ -277,8 +279,8 @@ export declare const WithBlankButton: {
|
|
|
277
279
|
defaultTitle?: string | undefined;
|
|
278
280
|
noTitle?: boolean | undefined;
|
|
279
281
|
multiLabel?: string | undefined;
|
|
280
|
-
filterButtonSize?: "small" | "xs" | undefined;
|
|
281
|
-
buttonVariant?: "blue-rounded" | "white-rounded" | "transparent-rounded" | "blank" | undefined;
|
|
282
|
+
filterButtonSize?: ("small" | "xs") | undefined;
|
|
283
|
+
buttonVariant?: ("blue-rounded" | "white-rounded" | "transparent-rounded" | "blank") | undefined;
|
|
282
284
|
listVariant?: import('./UiMenuTypes').UiMenuListVariant | undefined;
|
|
283
285
|
checkboxColor?: import('./UiMenuTypes').UiMenuCheckboxColor | undefined;
|
|
284
286
|
hasResetOption?: boolean | undefined;
|
|
@@ -315,7 +317,9 @@ export declare const WithBlankButton: {
|
|
|
315
317
|
}): any;
|
|
316
318
|
}>;
|
|
317
319
|
emit: (event: "close" | "reset" | "input" | "open" | "option-selected" | "placed", ...args: any[]) => void;
|
|
318
|
-
}>) => import('vue').VNode
|
|
320
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
321
|
+
[key: string]: any;
|
|
322
|
+
}> & {
|
|
319
323
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
320
324
|
};
|
|
321
325
|
};
|
|
@@ -65,7 +65,9 @@ declare const _default: <K>(__VLS_props: Awaited<typeof __VLS_setup>["props"], _
|
|
|
65
65
|
}): any;
|
|
66
66
|
}>;
|
|
67
67
|
emit: (event: "close" | "reset" | "input" | "open" | "option-selected" | "placed", ...args: any[]) => void;
|
|
68
|
-
}>) => import('vue').VNode
|
|
68
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
}> & {
|
|
69
71
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
70
72
|
};
|
|
71
73
|
export default _default;
|
|
@@ -25,7 +25,9 @@ declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], _
|
|
|
25
25
|
}): any;
|
|
26
26
|
}>;
|
|
27
27
|
emit: typeof __VLS_emit;
|
|
28
|
-
}>) => import('vue').VNode
|
|
28
|
+
}>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
29
|
+
[key: string]: any;
|
|
30
|
+
}> & {
|
|
29
31
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
30
32
|
};
|
|
31
33
|
export default _default;
|
|
@@ -4770,7 +4770,7 @@ var hp = {
|
|
|
4770
4770
|
for (const a of r) {
|
|
4771
4771
|
if (!a)
|
|
4772
4772
|
continue;
|
|
4773
|
-
if (
|
|
4773
|
+
if (new Set(a.map((s) => s.value)).size > 1)
|
|
4774
4774
|
break;
|
|
4775
4775
|
a.forEach((s) => s.remove()), n.prepend(a[0]);
|
|
4776
4776
|
}
|
|
@@ -18624,7 +18624,7 @@ function Ja(e) {
|
|
|
18624
18624
|
}
|
|
18625
18625
|
function Ks(e) {
|
|
18626
18626
|
const t = Js(), r = dn(e) ? fn(e) : e;
|
|
18627
|
-
return
|
|
18627
|
+
return ["transform", "translate", "scale", "rotate", "perspective"].some((n) => r[n] ? r[n] !== "none" : !1) || (r.containerType ? r.containerType !== "normal" : !1) || !t && (r.backdropFilter ? r.backdropFilter !== "none" : !1) || !t && (r.filter ? r.filter !== "none" : !1) || ["transform", "translate", "scale", "rotate", "perspective", "filter"].some((n) => (r.willChange || "").includes(n)) || ["paint", "layout", "strict", "content"].some((n) => (r.contain || "").includes(n));
|
|
18628
18628
|
}
|
|
18629
18629
|
function l1(e) {
|
|
18630
18630
|
let t = Qn(e);
|
|
@@ -19305,7 +19305,7 @@ const O1 = { class: "flex items-center" }, D1 = ["placeholder"], C1 = /* @__PURE
|
|
|
19305
19305
|
value: d
|
|
19306
19306
|
});
|
|
19307
19307
|
}, c = () => {
|
|
19308
|
-
r.isOpen ? f
|
|
19308
|
+
(r.isOpen ? f : h)();
|
|
19309
19309
|
}, f = () => {
|
|
19310
19310
|
r.isOpen && n("close");
|
|
19311
19311
|
}, h = () => {
|
|
@@ -19454,7 +19454,7 @@ const O1 = { class: "flex items-center" }, D1 = ["placeholder"], C1 = /* @__PURE
|
|
|
19454
19454
|
[C(Wa), f]
|
|
19455
19455
|
]);
|
|
19456
19456
|
}
|
|
19457
|
-
}), Hw = /* @__PURE__ */ Va(z1, [["__scopeId", "data-v-
|
|
19457
|
+
}), Hw = /* @__PURE__ */ Va(z1, [["__scopeId", "data-v-1546f346"]]), jw = /* @__PURE__ */ Ae({
|
|
19458
19458
|
__name: "UiMenuList",
|
|
19459
19459
|
props: {
|
|
19460
19460
|
class: { default: void 0 }
|