@namba_one/ui-kit-2 1.0.50 → 1.0.52
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/index.d.ts +1 -1
- package/dist/index.es.js +9 -6
- package/dist/index.umd.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -867,7 +867,7 @@ declare const colors: readonly ["text-common-base-primary-default", "text-common
|
|
|
867
867
|
export declare const Container: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
868
868
|
|
|
869
869
|
export declare type ContainerProps = {
|
|
870
|
-
width
|
|
870
|
+
width?: string | number;
|
|
871
871
|
};
|
|
872
872
|
|
|
873
873
|
export declare const Currency: {
|
package/dist/index.es.js
CHANGED
|
@@ -12492,14 +12492,14 @@ const cg = /* @__PURE__ */ _e({
|
|
|
12492
12492
|
"arrow-left": q(() => [
|
|
12493
12493
|
ae(f(nt), {
|
|
12494
12494
|
name: "outline-chevron-left",
|
|
12495
|
-
color: "foreground-interactive-button-
|
|
12495
|
+
color: "foreground-interactive-button-base-flat",
|
|
12496
12496
|
size: "18"
|
|
12497
12497
|
})
|
|
12498
12498
|
]),
|
|
12499
12499
|
"arrow-right": q(() => [
|
|
12500
12500
|
ae(f(nt), {
|
|
12501
12501
|
name: "outline-chevron-right",
|
|
12502
|
-
color: "foreground-interactive-button-
|
|
12502
|
+
color: "foreground-interactive-button-base-flat",
|
|
12503
12503
|
size: "18"
|
|
12504
12504
|
})
|
|
12505
12505
|
]),
|
|
@@ -18650,11 +18650,14 @@ const x1 = /* @__PURE__ */ _e({
|
|
|
18650
18650
|
width: {}
|
|
18651
18651
|
},
|
|
18652
18652
|
setup(a) {
|
|
18653
|
-
|
|
18654
|
-
|
|
18655
|
-
|
|
18653
|
+
const e = V(() => ({
|
|
18654
|
+
...a.width ? { maxWidth: Zt(Number(a.width)) } : null
|
|
18655
|
+
}));
|
|
18656
|
+
return (t, n) => (m(), T("div", {
|
|
18657
|
+
class: D(t.$style.root),
|
|
18658
|
+
style: Xe(e.value)
|
|
18656
18659
|
}, [
|
|
18657
|
-
de(
|
|
18660
|
+
de(t.$slots, "default")
|
|
18658
18661
|
], 6));
|
|
18659
18662
|
}
|
|
18660
18663
|
}), sw = "Container__root_dbd63", iw = {
|