@namba_one/ui-kit-2 1.0.79 → 1.0.81
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 +13 -2
- package/dist/index.es.js +3059 -2960
- package/dist/index.umd.js +5 -5
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
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 & {} & {
|
|
@@ -1974,6 +1984,7 @@ export declare const StatusSelect: DefineComponent<__VLS_PublicProps_10, {}, {},
|
|
|
1974
1984
|
"onUpdate:value"?: ((value: string | number) => any) | undefined;
|
|
1975
1985
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1976
1986
|
triggerElementRef: HTMLButtonElement;
|
|
1987
|
+
parentElementRef: HTMLDivElement;
|
|
1977
1988
|
}, HTMLButtonElement>;
|
|
1978
1989
|
|
|
1979
1990
|
export declare type StatusSelectProps = {
|