@namba_one/ui-kit-2 1.0.78 → 1.0.80
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/fonts/iconfont.ttf +0 -0
- package/dist/fonts/iconfont.woff +0 -0
- package/dist/fonts/iconfont.woff2 +0 -0
- package/dist/index.d.ts +13 -3
- package/dist/index.es.js +135 -127
- package/dist/index.umd.js +3 -3
- package/dist/namba-one-uikit.css +1 -1
- package/dist/sprite/sprite.svg +4 -4
- package/package.json +1 -1
package/dist/fonts/iconfont.ttf
CHANGED
|
Binary file
|
package/dist/fonts/iconfont.woff
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -187,8 +187,10 @@ onClose?: (() => any) | undefined;
|
|
|
187
187
|
declare const __VLS_component_8: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
188
188
|
"update:value": (value: string | null | undefined) => any;
|
|
189
189
|
} & {
|
|
190
|
+
blur: () => any;
|
|
190
191
|
"update:error": (value: boolean) => any;
|
|
191
192
|
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
193
|
+
onBlur?: (() => any) | undefined;
|
|
192
194
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
193
195
|
"onUpdate:error"?: ((value: boolean) => any) | undefined;
|
|
194
196
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -1363,6 +1365,7 @@ readonly maxLength?: (number | string) | undefined;
|
|
|
1363
1365
|
readonly autofocus?: boolean | undefined;
|
|
1364
1366
|
readonly iconLeft?: IconName | undefined;
|
|
1365
1367
|
readonly iconRight?: IconName | undefined;
|
|
1368
|
+
readonly onBlur?: (() => any) | undefined;
|
|
1366
1369
|
readonly "onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
1367
1370
|
readonly "onUpdate:error"?: ((value: boolean) => any) | undefined;
|
|
1368
1371
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -1380,16 +1383,18 @@ $slots: Readonly<{
|
|
|
1380
1383
|
$root: ComponentPublicInstance | null;
|
|
1381
1384
|
$parent: ComponentPublicInstance | null;
|
|
1382
1385
|
$host: Element | null;
|
|
1383
|
-
$emit: ((event: "update:value", value: string | null | undefined) => void) & ((event: "update:error", value: boolean) => void);
|
|
1386
|
+
$emit: ((event: "blur") => void) & ((event: "update:value", value: string | null | undefined) => void) & ((event: "update:error", value: boolean) => void);
|
|
1384
1387
|
$el: HTMLDivElement;
|
|
1385
1388
|
$options: ComponentOptionsBase<Readonly<{
|
|
1386
1389
|
value?: string | undefined | null;
|
|
1387
1390
|
} & InputProps> & Readonly<{
|
|
1391
|
+
onBlur?: (() => any) | undefined;
|
|
1388
1392
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
1389
1393
|
"onUpdate:error"?: ((value: boolean) => any) | undefined;
|
|
1390
1394
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1391
1395
|
"update:value": (value: string | null | undefined) => any;
|
|
1392
1396
|
} & {
|
|
1397
|
+
blur: () => any;
|
|
1393
1398
|
"update:error": (value: boolean) => any;
|
|
1394
1399
|
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1395
1400
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -1414,6 +1419,7 @@ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
|
1414
1419
|
} & Readonly<{}> & Omit<Readonly<{
|
|
1415
1420
|
value?: string | undefined | null;
|
|
1416
1421
|
} & InputProps> & Readonly<{
|
|
1422
|
+
onBlur?: (() => any) | undefined;
|
|
1417
1423
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
1418
1424
|
"onUpdate:error"?: ((value: boolean) => any) | undefined;
|
|
1419
1425
|
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
@@ -1440,6 +1446,7 @@ readonly maxLength?: (number | string) | undefined;
|
|
|
1440
1446
|
readonly autofocus?: boolean | undefined;
|
|
1441
1447
|
readonly iconLeft?: IconName | undefined;
|
|
1442
1448
|
readonly iconRight?: IconName | undefined;
|
|
1449
|
+
readonly onBlur?: (() => any) | undefined;
|
|
1443
1450
|
readonly "onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
1444
1451
|
readonly "onUpdate:error"?: ((value: boolean) => any) | undefined;
|
|
1445
1452
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -1457,16 +1464,18 @@ $slots: Readonly<{
|
|
|
1457
1464
|
$root: ComponentPublicInstance | null;
|
|
1458
1465
|
$parent: ComponentPublicInstance | null;
|
|
1459
1466
|
$host: Element | null;
|
|
1460
|
-
$emit: ((event: "update:value", value: string | null | undefined) => void) & ((event: "update:error", value: boolean) => void);
|
|
1467
|
+
$emit: ((event: "blur") => void) & ((event: "update:value", value: string | null | undefined) => void) & ((event: "update:error", value: boolean) => void);
|
|
1461
1468
|
$el: HTMLDivElement;
|
|
1462
1469
|
$options: ComponentOptionsBase<Readonly<{
|
|
1463
1470
|
value?: string | undefined | null;
|
|
1464
1471
|
} & InputProps> & Readonly<{
|
|
1472
|
+
onBlur?: (() => any) | undefined;
|
|
1465
1473
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
1466
1474
|
"onUpdate:error"?: ((value: boolean) => any) | undefined;
|
|
1467
1475
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1468
1476
|
"update:value": (value: string | null | undefined) => any;
|
|
1469
1477
|
} & {
|
|
1478
|
+
blur: () => any;
|
|
1470
1479
|
"update:error": (value: boolean) => any;
|
|
1471
1480
|
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1472
1481
|
beforeCreate?: (() => void) | (() => void)[];
|
|
@@ -1491,6 +1500,7 @@ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...
|
|
|
1491
1500
|
} & Readonly<{}> & Omit<Readonly<{
|
|
1492
1501
|
value?: string | undefined | null;
|
|
1493
1502
|
} & InputProps> & Readonly<{
|
|
1503
|
+
onBlur?: (() => any) | undefined;
|
|
1494
1504
|
"onUpdate:value"?: ((value: string | null | undefined) => any) | undefined;
|
|
1495
1505
|
"onUpdate:error"?: ((value: boolean) => any) | undefined;
|
|
1496
1506
|
}>, never> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
@@ -1617,7 +1627,7 @@ export declare type IconBaseProps = {
|
|
|
1617
1627
|
|
|
1618
1628
|
export declare type IconName = (typeof iconNames)[number];
|
|
1619
1629
|
|
|
1620
|
-
export declare const iconNames: readonly ["filled-success", "filled-warning", "outline-agreement", "outline-airplane", "outline-alert", "outline-api", "outline-arrow-up-down", "outline-arrow-up", "outline-balance-scale", "outline-bank", "outline-beach", "outline-box", "outline-briefcase", "outline-browser", "outline-brush", "outline-building", "outline-bulb", "outline-calendar", "outline-call", "outline-carousel", "outline-cash", "outline-check", "outline-checkmark-badge", "outline-chevron-down-huge", "outline-chevron-down", "outline-chevron-left", "outline-chevron-right", "outline-chevron-up", "outline-code", "outline-coins-stacks", "outline-computer", "outline-connect", "outline-copy", "outline-coupon", "outline-credit-card-pos", "outline-credit-card", "outline-cross", "outline-currency_bold", "outline-currency_medium", "outline-currency_regular", "outline-currency_semibold", "outline-customer-service", "outline-delete", "outline-delivery-tracking", "outline-delivery-truck", "outline-distribute-horizontal-center", "outline-download", "outline-drag-drop-vertical", "outline-edit", "outline-euro", "outline-eye-close", "outline-eye-open", "outline-file", "outline-flash", "outline-help-circle", "outline-image", "outline-link-square", "outline-link", "outline-lock-password", "outline-logout", "outline-mail-at-sign", "outline-megaphone", "outline-menu-dots", "outline-messenger", "outline-money-bag", "outline-money-safe", "outline-more-horizontal", "outline-more-vertical", "outline-mortarboard", "outline-move", "outline-paint-board", "outline-phone-check", "outline-placeholder", "outline-plus", "outline-promo", "outline-qr", "outline-rocket", "outline-settings", "outline-shop-1", "outline-shop", "outline-snow", "outline-sort-by-down", "outline-sort-by-up", "outline-star", "outline-success", "outline-sun", "outline-tag", "outline-time-quarter-pass", "outline-time", "outline-traffic-jam", "outline-trash", "outline-two-users", "outline-unavailable", "outline-upload", "outline-user", "outline-wallet-stack", "outline-wallet", "outline-warning", "
|
|
1630
|
+
export declare const iconNames: readonly ["filled-success", "filled-warning", "outline-agreement", "outline-airplane", "outline-alert", "outline-api", "outline-arrow-up-down", "outline-arrow-up", "outline-balance-scale", "outline-bank", "outline-beach", "outline-box", "outline-briefcase", "outline-browser", "outline-brush", "outline-building", "outline-bulb", "outline-calendar", "outline-call", "outline-carousel", "outline-cash", "outline-check", "outline-checkmark-badge", "outline-chevron-down-huge", "outline-chevron-down", "outline-chevron-left", "outline-chevron-right", "outline-chevron-up", "outline-code", "outline-coins-stacks", "outline-computer", "outline-connect", "outline-copy", "outline-coupon", "outline-credit-card-pos", "outline-credit-card", "outline-cross", "outline-currency_bold", "outline-currency_medium", "outline-currency_regular", "outline-currency_semibold", "outline-customer-service", "outline-delete", "outline-delivery-tracking", "outline-delivery-truck", "outline-distribute-horizontal-center", "outline-download", "outline-drag-drop-vertical", "outline-edit", "outline-euro", "outline-eye-close", "outline-eye-open", "outline-file", "outline-files", "outline-flash", "outline-help-circle", "outline-image", "outline-link-square", "outline-link", "outline-lock-password", "outline-logout", "outline-mail-at-sign", "outline-megaphone", "outline-menu-dots", "outline-messenger", "outline-money-bag", "outline-money-safe", "outline-more-horizontal", "outline-more-vertical", "outline-mortarboard", "outline-move", "outline-paint-board", "outline-phone-check", "outline-placeholder", "outline-plus", "outline-promo", "outline-qr", "outline-rocket", "outline-settings", "outline-shop-1", "outline-shop", "outline-snow", "outline-sort-by-down", "outline-sort-by-up", "outline-star", "outline-success", "outline-sun", "outline-tag", "outline-time-quarter-pass", "outline-time", "outline-traffic-jam", "outline-trash", "outline-two-users", "outline-unavailable", "outline-upload", "outline-user", "outline-wallet-stack", "outline-wallet", "outline-warning", "static-telegram", "static-whats-app"];
|
|
1621
1631
|
|
|
1622
1632
|
export declare const IconView: DefineComponent<IconViewProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IconViewProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1623
1633
|
|
package/dist/index.es.js
CHANGED
|
@@ -459,6 +459,7 @@ const pr = {
|
|
|
459
459
|
"outline-eye-close",
|
|
460
460
|
"outline-eye-open",
|
|
461
461
|
"outline-file",
|
|
462
|
+
"outline-files",
|
|
462
463
|
"outline-flash",
|
|
463
464
|
"outline-help-circle",
|
|
464
465
|
"outline-image",
|
|
@@ -504,7 +505,6 @@ const pr = {
|
|
|
504
505
|
"outline-wallet-stack",
|
|
505
506
|
"outline-wallet",
|
|
506
507
|
"outline-warning",
|
|
507
|
-
"outlines-files",
|
|
508
508
|
"static-telegram",
|
|
509
509
|
"static-whats-app"
|
|
510
510
|
];
|
|
@@ -6726,52 +6726,7 @@ const xp = {
|
|
|
6726
6726
|
mask: Date,
|
|
6727
6727
|
lazy: !0
|
|
6728
6728
|
}
|
|
6729
|
-
},
|
|
6730
|
-
__name: "TransitionHeight",
|
|
6731
|
-
setup(a) {
|
|
6732
|
-
const e = H(""), t = H("1");
|
|
6733
|
-
let n;
|
|
6734
|
-
function r() {
|
|
6735
|
-
t.value = "0";
|
|
6736
|
-
}
|
|
6737
|
-
function s(c, d) {
|
|
6738
|
-
t.value = "1", e.value = `${c.scrollHeight}px`, n = setTimeout(d, br);
|
|
6739
|
-
}
|
|
6740
|
-
function i() {
|
|
6741
|
-
t.value = "", e.value = "";
|
|
6742
|
-
}
|
|
6743
|
-
function o(c) {
|
|
6744
|
-
e.value = `${c.scrollHeight}px`;
|
|
6745
|
-
}
|
|
6746
|
-
function l(c, d) {
|
|
6747
|
-
t.value = "0", n = setTimeout(d, br);
|
|
6748
|
-
}
|
|
6749
|
-
const u = B(() => ({
|
|
6750
|
-
height: e.value,
|
|
6751
|
-
opacity: t.value,
|
|
6752
|
-
overflow: "hidden",
|
|
6753
|
-
transition: `height ${br}ms ease, opacity ${br}ms ease`
|
|
6754
|
-
}));
|
|
6755
|
-
return Xr(() => clearTimeout(n)), (c, d) => (m(), T("div", {
|
|
6756
|
-
style: Ue(u.value)
|
|
6757
|
-
}, [
|
|
6758
|
-
J(jt, {
|
|
6759
|
-
mode: "out-in",
|
|
6760
|
-
name: "fade-height",
|
|
6761
|
-
onBeforeEnter: r,
|
|
6762
|
-
onEnter: s,
|
|
6763
|
-
onAfterEnter: i,
|
|
6764
|
-
onBeforeLeave: o,
|
|
6765
|
-
onLeave: l
|
|
6766
|
-
}, {
|
|
6767
|
-
default: q(() => [
|
|
6768
|
-
ce(c.$slots, "default")
|
|
6769
|
-
]),
|
|
6770
|
-
_: 3
|
|
6771
|
-
})
|
|
6772
|
-
], 4));
|
|
6773
|
-
}
|
|
6774
|
-
}), Ap = /* @__PURE__ */ he({
|
|
6729
|
+
}, Ap = /* @__PURE__ */ he({
|
|
6775
6730
|
__name: "TransitionExpand",
|
|
6776
6731
|
props: {
|
|
6777
6732
|
className: {},
|
|
@@ -6869,112 +6824,116 @@ const xp = {
|
|
|
6869
6824
|
value: {},
|
|
6870
6825
|
valueModifiers: {}
|
|
6871
6826
|
}),
|
|
6872
|
-
emits: /* @__PURE__ */ Lt(["update:error"], ["update:value"]),
|
|
6827
|
+
emits: /* @__PURE__ */ Lt(["update:error", "blur"], ["update:value"]),
|
|
6873
6828
|
setup(a, { emit: e }) {
|
|
6874
|
-
const t = Yt(a, "value"), n = H(!1), r = H(), s = e
|
|
6829
|
+
const t = Yt(a, "value"), n = H(!1), r = H(), s = e;
|
|
6830
|
+
function i() {
|
|
6831
|
+
n.value = !1, s("blur");
|
|
6832
|
+
}
|
|
6833
|
+
const o = (u) => {
|
|
6875
6834
|
if (!a.maxLength) return;
|
|
6876
|
-
const
|
|
6877
|
-
|
|
6878
|
-
},
|
|
6879
|
-
var
|
|
6880
|
-
(
|
|
6835
|
+
const c = u.target;
|
|
6836
|
+
c.value.length > Number(a.maxLength) && (c.value = c.value.slice(0, Number(a.maxLength)), t.value = c.value);
|
|
6837
|
+
}, l = () => {
|
|
6838
|
+
var u;
|
|
6839
|
+
(u = r.value) == null || u.$el.focus();
|
|
6881
6840
|
};
|
|
6882
6841
|
return ot(() => {
|
|
6883
|
-
var
|
|
6884
|
-
a.autofocus && ((
|
|
6885
|
-
}), (
|
|
6886
|
-
var
|
|
6842
|
+
var u;
|
|
6843
|
+
a.autofocus && ((u = r.value) == null || u.$el.focus());
|
|
6844
|
+
}), (u, c) => {
|
|
6845
|
+
var d;
|
|
6887
6846
|
return m(), T("div", {
|
|
6888
6847
|
class: _([
|
|
6889
|
-
|
|
6848
|
+
u.$style.root,
|
|
6890
6849
|
{
|
|
6891
|
-
[
|
|
6892
|
-
[
|
|
6893
|
-
[
|
|
6850
|
+
[u.$style["is-disabled"]]: u.isDisabled,
|
|
6851
|
+
[u.$style["is-error"]]: u.isError,
|
|
6852
|
+
[u.$style["is-focused"]]: n.value
|
|
6894
6853
|
}
|
|
6895
6854
|
])
|
|
6896
6855
|
}, [
|
|
6897
|
-
|
|
6856
|
+
u.label ? (m(), se(f(Oe), {
|
|
6898
6857
|
key: 0,
|
|
6899
|
-
class: _(
|
|
6858
|
+
class: _(u.$style.label),
|
|
6900
6859
|
size: "subhead",
|
|
6901
6860
|
color: "text-common-base-primary-default"
|
|
6902
6861
|
}, {
|
|
6903
6862
|
default: q(() => [
|
|
6904
|
-
De(we(
|
|
6863
|
+
De(we(u.label), 1)
|
|
6905
6864
|
]),
|
|
6906
6865
|
_: 1
|
|
6907
6866
|
}, 8, ["class"])) : Y("", !0),
|
|
6908
6867
|
X("div", {
|
|
6909
|
-
class: _(
|
|
6910
|
-
onClick:
|
|
6868
|
+
class: _(u.$style.wrapper),
|
|
6869
|
+
onClick: l
|
|
6911
6870
|
}, [
|
|
6912
|
-
|
|
6871
|
+
u.iconLeft ? (m(), se(f(Qe), {
|
|
6913
6872
|
key: 0,
|
|
6914
|
-
name:
|
|
6873
|
+
name: u.iconLeft,
|
|
6915
6874
|
size: 18,
|
|
6916
6875
|
color: "icon-input-base-primary"
|
|
6917
6876
|
}, null, 8, ["name"])) : Y("", !0),
|
|
6918
6877
|
J(f(ul), at({
|
|
6919
6878
|
unmasked: t.value,
|
|
6920
|
-
"onUpdate:unmasked":
|
|
6921
|
-
class:
|
|
6922
|
-
type:
|
|
6879
|
+
"onUpdate:unmasked": c[0] || (c[0] = (p) => t.value = p),
|
|
6880
|
+
class: u.$style.field,
|
|
6881
|
+
type: u.type,
|
|
6923
6882
|
ref_key: "inputRef",
|
|
6924
6883
|
ref: r
|
|
6925
|
-
}, f(xp)[
|
|
6884
|
+
}, f(xp)[u.mask ?? "any"], {
|
|
6926
6885
|
unmask: !1,
|
|
6927
|
-
autofocus:
|
|
6928
|
-
placeholder:
|
|
6929
|
-
autocomplete:
|
|
6930
|
-
inputmode:
|
|
6931
|
-
onFocus:
|
|
6932
|
-
onBlur:
|
|
6933
|
-
onAccept:
|
|
6934
|
-
onInput:
|
|
6886
|
+
autofocus: u.autofocus,
|
|
6887
|
+
placeholder: u.placeholder,
|
|
6888
|
+
autocomplete: u.autocomplete,
|
|
6889
|
+
inputmode: u.inputmode,
|
|
6890
|
+
onFocus: c[1] || (c[1] = () => n.value = !0),
|
|
6891
|
+
onBlur: i,
|
|
6892
|
+
onAccept: c[2] || (c[2] = (p) => s("update:error", !1)),
|
|
6893
|
+
onInput: o
|
|
6935
6894
|
}), null, 16, ["unmasked", "class", "type", "autofocus", "placeholder", "autocomplete", "inputmode"]),
|
|
6936
|
-
|
|
6895
|
+
u.iconRight ? (m(), se(f(Qe), {
|
|
6937
6896
|
key: 1,
|
|
6938
|
-
name:
|
|
6897
|
+
name: u.iconRight,
|
|
6939
6898
|
size: 18,
|
|
6940
6899
|
color: "icon-input-base-primary"
|
|
6941
6900
|
}, null, 8, ["name"])) : Y("", !0),
|
|
6942
|
-
|
|
6901
|
+
u.$slots.default ? (m(), T("div", {
|
|
6943
6902
|
key: 2,
|
|
6944
|
-
class: _(
|
|
6903
|
+
class: _(u.$style.action)
|
|
6945
6904
|
}, [
|
|
6946
|
-
ce(
|
|
6905
|
+
ce(u.$slots, "default")
|
|
6947
6906
|
], 2)) : Y("", !0),
|
|
6948
|
-
|
|
6907
|
+
u.maxLength ? (m(), T("span", {
|
|
6949
6908
|
key: 3,
|
|
6950
|
-
class: _(
|
|
6951
|
-
}, we(Number(
|
|
6909
|
+
class: _(u.$style.badge)
|
|
6910
|
+
}, we(Number(u.maxLength) - (((d = t.value) == null ? void 0 : d.length) ?? 0)), 3)) : Y("", !0)
|
|
6952
6911
|
], 2),
|
|
6953
6912
|
J(f(Vp), {
|
|
6954
|
-
"is-show":
|
|
6913
|
+
"is-show": u.errorText && u.isError || !!u.description && !u.isError
|
|
6955
6914
|
}, {
|
|
6956
6915
|
default: q(() => [
|
|
6957
6916
|
J(f(ia), null, {
|
|
6958
6917
|
default: q(() => [
|
|
6959
|
-
|
|
6960
|
-
class: _(
|
|
6918
|
+
u.description && !u.isError ? (m(), se(f(Oe), {
|
|
6919
|
+
class: _(u.$style.bottom),
|
|
6961
6920
|
key: "description",
|
|
6962
6921
|
size: "subhead",
|
|
6963
6922
|
color: "text-common-base-secondary-default"
|
|
6964
6923
|
}, {
|
|
6965
6924
|
default: q(() => [
|
|
6966
|
-
De(we(
|
|
6925
|
+
De(we(u.description), 1)
|
|
6967
6926
|
]),
|
|
6968
6927
|
_: 1
|
|
6969
6928
|
}, 8, ["class"])) : Y("", !0),
|
|
6970
|
-
|
|
6971
|
-
class: _(
|
|
6929
|
+
u.errorText && u.isError ? (m(), se(f(Oe), {
|
|
6930
|
+
class: _(u.$style.bottom),
|
|
6972
6931
|
key: "error",
|
|
6973
6932
|
size: "subhead",
|
|
6974
6933
|
color: "text-common-critical-primary-default"
|
|
6975
6934
|
}, {
|
|
6976
6935
|
default: q(() => [
|
|
6977
|
-
De(we(
|
|
6936
|
+
De(we(u.errorText), 1)
|
|
6978
6937
|
]),
|
|
6979
6938
|
_: 1
|
|
6980
6939
|
}, 8, ["class"])) : Y("", !0)
|
|
@@ -7023,7 +6982,7 @@ const xp = {
|
|
|
7023
6982
|
}
|
|
7024
6983
|
}), Qp = {
|
|
7025
6984
|
$style: cl
|
|
7026
|
-
},
|
|
6985
|
+
}, f$ = /* @__PURE__ */ Ce(Kp, [["__cssModules", Qp]]), Zp = {
|
|
7027
6986
|
base: "text-common-base-primary-default",
|
|
7028
6987
|
secondary: "text-common-base-secondary-default",
|
|
7029
6988
|
brand: "text-common-primary-default"
|
|
@@ -7091,7 +7050,7 @@ const xp = {
|
|
|
7091
7050
|
view_brand: iv
|
|
7092
7051
|
}, lv = {
|
|
7093
7052
|
$style: ov
|
|
7094
|
-
},
|
|
7053
|
+
}, h$ = /* @__PURE__ */ Ce(ev, [["__cssModules", lv]]), uv = /* @__PURE__ */ he({
|
|
7095
7054
|
__name: "ListHeader",
|
|
7096
7055
|
props: /* @__PURE__ */ Lt({
|
|
7097
7056
|
isSortable: { type: Boolean },
|
|
@@ -7160,7 +7119,7 @@ const xp = {
|
|
|
7160
7119
|
buttons: fv
|
|
7161
7120
|
}, pv = {
|
|
7162
7121
|
$style: hv
|
|
7163
|
-
},
|
|
7122
|
+
}, p$ = /* @__PURE__ */ Ce(uv, [["__cssModules", pv]]), vv = /* @__PURE__ */ he({
|
|
7164
7123
|
__name: "ModalConfirmation",
|
|
7165
7124
|
props: {
|
|
7166
7125
|
view: {},
|
|
@@ -7248,7 +7207,7 @@ const xp = {
|
|
|
7248
7207
|
button: _v
|
|
7249
7208
|
}, kv = {
|
|
7250
7209
|
$style: wv
|
|
7251
|
-
},
|
|
7210
|
+
}, v$ = /* @__PURE__ */ Ce(vv, [["__cssModules", kv]]), $v = /* @__PURE__ */ he({
|
|
7252
7211
|
__name: "Price",
|
|
7253
7212
|
props: {
|
|
7254
7213
|
value: {},
|
|
@@ -7316,7 +7275,7 @@ const xp = {
|
|
|
7316
7275
|
size_title1: Ev
|
|
7317
7276
|
}, Ov = {
|
|
7318
7277
|
$style: Fv
|
|
7319
|
-
},
|
|
7278
|
+
}, m$ = /* @__PURE__ */ Ce($v, [["__cssModules", Ov]]), Iv = /* @__PURE__ */ he({
|
|
7320
7279
|
__name: "ResponseBase",
|
|
7321
7280
|
props: {
|
|
7322
7281
|
img: {},
|
|
@@ -7376,7 +7335,7 @@ const xp = {
|
|
|
7376
7335
|
bottom: Lv
|
|
7377
7336
|
}, Vv = {
|
|
7378
7337
|
$style: zv
|
|
7379
|
-
}, Nv = /* @__PURE__ */ Ce(Iv, [["__cssModules", Vv]]),
|
|
7338
|
+
}, Nv = /* @__PURE__ */ Ce(Iv, [["__cssModules", Vv]]), g$ = /* @__PURE__ */ he({
|
|
7380
7339
|
__name: "EmptyResponse",
|
|
7381
7340
|
props: {
|
|
7382
7341
|
img: {},
|
|
@@ -7427,7 +7386,7 @@ const xp = {
|
|
|
7427
7386
|
root: Hv
|
|
7428
7387
|
}, Wv = {
|
|
7429
7388
|
$style: Uv
|
|
7430
|
-
},
|
|
7389
|
+
}, y$ = /* @__PURE__ */ Ce(Yv, [["__cssModules", Wv]]);
|
|
7431
7390
|
function jv(a) {
|
|
7432
7391
|
return Mo() ? (xo(a), !0) : !1;
|
|
7433
7392
|
}
|
|
@@ -7776,7 +7735,7 @@ const Qv = /* @__PURE__ */ he({
|
|
|
7776
7735
|
"is-open": "Select__is-open_000d1"
|
|
7777
7736
|
}, um = {
|
|
7778
7737
|
$style: lm
|
|
7779
|
-
},
|
|
7738
|
+
}, b$ = /* @__PURE__ */ Ce(rm, [["__cssModules", um]]), cm = "";
|
|
7780
7739
|
function rs(a, e) {
|
|
7781
7740
|
e === void 0 && (e = {});
|
|
7782
7741
|
var t = e.insertAt;
|
|
@@ -7794,7 +7753,7 @@ function Et(a, e) {
|
|
|
7794
7753
|
var t = fm(a);
|
|
7795
7754
|
return a = e === 360 ? a : Math.min(e, Math.max(0, parseFloat(a))), t && (a = parseInt(String(a * e), 10) / 100), Math.abs(a - e) < 1e-6 ? 1 : (e === 360 ? a = (a < 0 ? a % e + e : a % e) / parseFloat(String(e)) : a = a % e / parseFloat(String(e)), a);
|
|
7796
7755
|
}
|
|
7797
|
-
function
|
|
7756
|
+
function br(a) {
|
|
7798
7757
|
return Math.min(1, Math.max(0, a));
|
|
7799
7758
|
}
|
|
7800
7759
|
function dm(a) {
|
|
@@ -7806,7 +7765,7 @@ function fm(a) {
|
|
|
7806
7765
|
function vl(a) {
|
|
7807
7766
|
return a = parseFloat(a), (isNaN(a) || a < 0 || a > 1) && (a = 1), a;
|
|
7808
7767
|
}
|
|
7809
|
-
function
|
|
7768
|
+
function _r(a) {
|
|
7810
7769
|
return a <= 1 ? "".concat(Number(a) * 100, "%") : a;
|
|
7811
7770
|
}
|
|
7812
7771
|
function fn(a) {
|
|
@@ -8065,7 +8024,7 @@ var Js = {
|
|
|
8065
8024
|
};
|
|
8066
8025
|
function bm(a) {
|
|
8067
8026
|
var e = { r: 0, g: 0, b: 0 }, t = 1, n = null, r = null, s = null, i = !1, o = !1;
|
|
8068
|
-
return typeof a == "string" && (a = km(a)), typeof a == "object" && (Da(a.r) && Da(a.g) && Da(a.b) ? (e = hm(a.r, a.g, a.b), i = !0, o = String(a.r).substr(-1) === "%" ? "prgb" : "rgb") : Da(a.h) && Da(a.s) && Da(a.v) ? (n =
|
|
8027
|
+
return typeof a == "string" && (a = km(a)), typeof a == "object" && (Da(a.r) && Da(a.g) && Da(a.b) ? (e = hm(a.r, a.g, a.b), i = !0, o = String(a.r).substr(-1) === "%" ? "prgb" : "rgb") : Da(a.h) && Da(a.s) && Da(a.v) ? (n = _r(a.s), r = _r(a.v), e = vm(a.h, n, r), i = !0, o = "hsv") : Da(a.h) && Da(a.s) && Da(a.l) && (n = _r(a.s), s = _r(a.l), e = pm(a.h, n, s), i = !0, o = "hsl"), Object.prototype.hasOwnProperty.call(a, "a") && (t = a.a)), t = vl(t), {
|
|
8069
8028
|
ok: i,
|
|
8070
8029
|
format: a.format || o,
|
|
8071
8030
|
r: Math.min(255, Math.max(e.r, 0)),
|
|
@@ -8222,7 +8181,7 @@ var $m = (
|
|
|
8222
8181
|
}, a.prototype.lighten = function(e) {
|
|
8223
8182
|
e === void 0 && (e = 10);
|
|
8224
8183
|
var t = this.toHsl();
|
|
8225
|
-
return t.l += e / 100, t.l =
|
|
8184
|
+
return t.l += e / 100, t.l = br(t.l), new a(t);
|
|
8226
8185
|
}, a.prototype.brighten = function(e) {
|
|
8227
8186
|
e === void 0 && (e = 10);
|
|
8228
8187
|
var t = this.toRgb();
|
|
@@ -8230,7 +8189,7 @@ var $m = (
|
|
|
8230
8189
|
}, a.prototype.darken = function(e) {
|
|
8231
8190
|
e === void 0 && (e = 10);
|
|
8232
8191
|
var t = this.toHsl();
|
|
8233
|
-
return t.l -= e / 100, t.l =
|
|
8192
|
+
return t.l -= e / 100, t.l = br(t.l), new a(t);
|
|
8234
8193
|
}, a.prototype.tint = function(e) {
|
|
8235
8194
|
return e === void 0 && (e = 10), this.mix("white", e);
|
|
8236
8195
|
}, a.prototype.shade = function(e) {
|
|
@@ -8238,11 +8197,11 @@ var $m = (
|
|
|
8238
8197
|
}, a.prototype.desaturate = function(e) {
|
|
8239
8198
|
e === void 0 && (e = 10);
|
|
8240
8199
|
var t = this.toHsl();
|
|
8241
|
-
return t.s -= e / 100, t.s =
|
|
8200
|
+
return t.s -= e / 100, t.s = br(t.s), new a(t);
|
|
8242
8201
|
}, a.prototype.saturate = function(e) {
|
|
8243
8202
|
e === void 0 && (e = 10);
|
|
8244
8203
|
var t = this.toHsl();
|
|
8245
|
-
return t.s += e / 100, t.s =
|
|
8204
|
+
return t.s += e / 100, t.s = br(t.s), new a(t);
|
|
8246
8205
|
}, a.prototype.greyscale = function() {
|
|
8247
8206
|
return this.desaturate(100);
|
|
8248
8207
|
}, a.prototype.spin = function(e) {
|
|
@@ -9085,7 +9044,7 @@ const o0 = /* @__PURE__ */ he({
|
|
|
9085
9044
|
"color-placeholder": "ColorPicker__color-placeholder_5b585"
|
|
9086
9045
|
}, f0 = {
|
|
9087
9046
|
$style: d0
|
|
9088
|
-
},
|
|
9047
|
+
}, _$ = /* @__PURE__ */ Ce(o0, [["__cssModules", f0]]), h0 = /* @__PURE__ */ he({
|
|
9089
9048
|
__name: "SkeletonWrapper",
|
|
9090
9049
|
setup(a) {
|
|
9091
9050
|
return (e, t) => (m(), T("div", {
|
|
@@ -9099,7 +9058,7 @@ const o0 = /* @__PURE__ */ he({
|
|
|
9099
9058
|
pulse: v0
|
|
9100
9059
|
}, g0 = {
|
|
9101
9060
|
$style: m0
|
|
9102
|
-
},
|
|
9061
|
+
}, w$ = /* @__PURE__ */ Ce(h0, [["__cssModules", g0]]), y0 = ["onClick"], b0 = /* @__PURE__ */ he({
|
|
9103
9062
|
__name: "Tabs",
|
|
9104
9063
|
props: /* @__PURE__ */ Lt({
|
|
9105
9064
|
value: {},
|
|
@@ -9290,7 +9249,52 @@ const o0 = /* @__PURE__ */ he({
|
|
|
9290
9249
|
view_flat: D0
|
|
9291
9250
|
}, x0 = {
|
|
9292
9251
|
$style: M0
|
|
9293
|
-
},
|
|
9252
|
+
}, k$ = /* @__PURE__ */ Ce(b0, [["__cssModules", x0]]), wr = 300, $$ = /* @__PURE__ */ he({
|
|
9253
|
+
__name: "TransitionHeight",
|
|
9254
|
+
setup(a) {
|
|
9255
|
+
const e = H(""), t = H("1");
|
|
9256
|
+
let n;
|
|
9257
|
+
function r() {
|
|
9258
|
+
t.value = "0";
|
|
9259
|
+
}
|
|
9260
|
+
function s(c, d) {
|
|
9261
|
+
t.value = "1", e.value = `${c.scrollHeight}px`, n = setTimeout(d, wr);
|
|
9262
|
+
}
|
|
9263
|
+
function i() {
|
|
9264
|
+
t.value = "", e.value = "";
|
|
9265
|
+
}
|
|
9266
|
+
function o(c) {
|
|
9267
|
+
e.value = `${c.scrollHeight}px`;
|
|
9268
|
+
}
|
|
9269
|
+
function l(c, d) {
|
|
9270
|
+
t.value = "0", n = setTimeout(d, wr);
|
|
9271
|
+
}
|
|
9272
|
+
const u = B(() => ({
|
|
9273
|
+
height: e.value,
|
|
9274
|
+
opacity: t.value,
|
|
9275
|
+
overflow: "hidden",
|
|
9276
|
+
transition: `height ${wr}ms ease, opacity ${wr}ms ease`
|
|
9277
|
+
}));
|
|
9278
|
+
return Xr(() => clearTimeout(n)), (c, d) => (m(), T("div", {
|
|
9279
|
+
style: Ue(u.value)
|
|
9280
|
+
}, [
|
|
9281
|
+
J(jt, {
|
|
9282
|
+
mode: "out-in",
|
|
9283
|
+
name: "fade-height",
|
|
9284
|
+
onBeforeEnter: r,
|
|
9285
|
+
onEnter: s,
|
|
9286
|
+
onAfterEnter: i,
|
|
9287
|
+
onBeforeLeave: o,
|
|
9288
|
+
onLeave: l
|
|
9289
|
+
}, {
|
|
9290
|
+
default: q(() => [
|
|
9291
|
+
ce(c.$slots, "default")
|
|
9292
|
+
]),
|
|
9293
|
+
_: 3
|
|
9294
|
+
})
|
|
9295
|
+
], 4));
|
|
9296
|
+
}
|
|
9297
|
+
}), A0 = /* @__PURE__ */ he({
|
|
9294
9298
|
__name: "UserRow",
|
|
9295
9299
|
props: {
|
|
9296
9300
|
name: {}
|
|
@@ -19632,7 +19636,10 @@ const O$ = new kk(), qr = (a) => {
|
|
|
19632
19636
|
class: _([
|
|
19633
19637
|
v.$style.root,
|
|
19634
19638
|
v.$style[`view_${(y = d.value) == null ? void 0 : y.view}`],
|
|
19635
|
-
{
|
|
19639
|
+
{
|
|
19640
|
+
[v.$style["is-loading"]]: v.isLoading,
|
|
19641
|
+
[v.$style["is-disabled"]]: v.isDisabled
|
|
19642
|
+
}
|
|
19636
19643
|
]),
|
|
19637
19644
|
onClick: Ca(p, ["stop"])
|
|
19638
19645
|
}, [
|
|
@@ -19736,6 +19743,7 @@ const O$ = new kk(), qr = (a) => {
|
|
|
19736
19743
|
}
|
|
19737
19744
|
}), Tk = "StatusSelect__root_9bfa0", Dk = "StatusSelect__wrapper_8cabc", Mk = "StatusSelect__text_b4d1c", xk = "StatusSelect__icon_c49fe", Ak = "StatusSelect__item_37c1b", Ek = "StatusSelect__loader_aa2c1", Fk = "StatusSelect__view_secondary_e4022", Ok = "StatusSelect__view_success_aa0c9", Ik = "StatusSelect__view_critical_54f77", Bk = "StatusSelect__view_brand_1759a", Pk = "StatusSelect__scroller_c12db", Rk = "StatusSelect__checkbox_0c502", vu = {
|
|
19738
19745
|
root: Tk,
|
|
19746
|
+
"is-disabled": "StatusSelect__is-disabled_9b1d9",
|
|
19739
19747
|
wrapper: Dk,
|
|
19740
19748
|
"wrapper-skeleton": "StatusSelect__wrapper-skeleton_9c265",
|
|
19741
19749
|
text: Mk,
|
|
@@ -20279,7 +20287,7 @@ export {
|
|
|
20279
20287
|
Pw as CheckboxGroupFilterChip,
|
|
20280
20288
|
fu as CheckboxGroupFilterView,
|
|
20281
20289
|
Zf as Chip,
|
|
20282
|
-
|
|
20290
|
+
_$ as ColorPicker,
|
|
20283
20291
|
T$ as Container,
|
|
20284
20292
|
j$ as Currency,
|
|
20285
20293
|
tl as DYNAMIC_VISIBLE_AREA_PROVIDER_NAME,
|
|
@@ -20290,7 +20298,7 @@ export {
|
|
|
20290
20298
|
vi as DropdownElement,
|
|
20291
20299
|
l$ as Dropzone,
|
|
20292
20300
|
Bh as DynamicVisibleArea,
|
|
20293
|
-
|
|
20301
|
+
g$ as EmptyResponse,
|
|
20294
20302
|
A$ as FilterHub,
|
|
20295
20303
|
Nh as HeaderText,
|
|
20296
20304
|
Qe as Icon,
|
|
@@ -20298,24 +20306,24 @@ export {
|
|
|
20298
20306
|
c$ as ImageRow,
|
|
20299
20307
|
d$ as ImageRowSkeleton,
|
|
20300
20308
|
Ji as Input,
|
|
20301
|
-
|
|
20302
|
-
|
|
20303
|
-
|
|
20309
|
+
f$ as InputSkeleton,
|
|
20310
|
+
h$ as Link,
|
|
20311
|
+
p$ as ListHeader,
|
|
20304
20312
|
Zr as Loader,
|
|
20305
20313
|
H$ as MenuBar,
|
|
20306
20314
|
T2 as MenuBarItem,
|
|
20307
|
-
|
|
20308
|
-
|
|
20315
|
+
v$ as ModalConfirmation,
|
|
20316
|
+
m$ as Price,
|
|
20309
20317
|
Nv as ResponseBase,
|
|
20310
|
-
|
|
20311
|
-
|
|
20318
|
+
y$ as Section,
|
|
20319
|
+
b$ as Select,
|
|
20312
20320
|
pl as SelectBase,
|
|
20313
|
-
|
|
20321
|
+
w$ as SkeletonWrapper,
|
|
20314
20322
|
I$ as StatusSelect,
|
|
20315
20323
|
B$ as StatusSelectSkeleton,
|
|
20316
20324
|
L2 as StepItem,
|
|
20317
20325
|
U$ as Steps,
|
|
20318
|
-
|
|
20326
|
+
k$ as Tabs,
|
|
20319
20327
|
ir as TheImage,
|
|
20320
20328
|
Oe as TheText,
|
|
20321
20329
|
Pr as TheTextSkeleton,
|
|
@@ -20327,7 +20335,7 @@ export {
|
|
|
20327
20335
|
Ro as Toggle,
|
|
20328
20336
|
Oa as TransitionFade,
|
|
20329
20337
|
ia as TransitionFadeBlur,
|
|
20330
|
-
|
|
20338
|
+
$$ as TransitionHeight,
|
|
20331
20339
|
M$ as TransitionSlideDown,
|
|
20332
20340
|
D$ as TransitionSlideRight,
|
|
20333
20341
|
C$ as UserRow,
|