@namba_one/ui-kit-2 1.0.108 → 1.0.109
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 +18 -10
- package/dist/index.es.js +155 -146
- package/dist/index.umd.js +2 -2
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1016,6 +1016,7 @@ $: ComponentInternalInstance;
|
|
|
1016
1016
|
$data: {};
|
|
1017
1017
|
$props: {
|
|
1018
1018
|
readonly count?: (number | string) | undefined;
|
|
1019
|
+
readonly view?: views_4[number] | undefined;
|
|
1019
1020
|
readonly onClick?: (() => any) | undefined;
|
|
1020
1021
|
readonly onDelete?: (() => any) | undefined;
|
|
1021
1022
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -1030,6 +1031,7 @@ $: ComponentInternalInstance;
|
|
|
1030
1031
|
$data: {};
|
|
1031
1032
|
$props: {
|
|
1032
1033
|
readonly count?: (number | string) | undefined;
|
|
1034
|
+
readonly view?: views_4[number] | undefined;
|
|
1033
1035
|
readonly onClick?: (() => any) | undefined;
|
|
1034
1036
|
readonly onDelete?: (() => any) | undefined;
|
|
1035
1037
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -1232,6 +1234,7 @@ export declare type ChipEmits = {
|
|
|
1232
1234
|
|
|
1233
1235
|
export declare type ChipProps = {
|
|
1234
1236
|
count?: number | string;
|
|
1237
|
+
view?: (typeof views_4)[number];
|
|
1235
1238
|
};
|
|
1236
1239
|
|
|
1237
1240
|
declare function close_2(): void;
|
|
@@ -1282,6 +1285,7 @@ $: ComponentInternalInstance;
|
|
|
1282
1285
|
$data: {};
|
|
1283
1286
|
$props: {
|
|
1284
1287
|
readonly count?: (number | string) | undefined;
|
|
1288
|
+
readonly view?: views_4[number] | undefined;
|
|
1285
1289
|
readonly onClick?: (() => any) | undefined;
|
|
1286
1290
|
readonly onDelete?: (() => any) | undefined;
|
|
1287
1291
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -1296,6 +1300,7 @@ $: ComponentInternalInstance;
|
|
|
1296
1300
|
$data: {};
|
|
1297
1301
|
$props: {
|
|
1298
1302
|
readonly count?: (number | string) | undefined;
|
|
1303
|
+
readonly view?: views_4[number] | undefined;
|
|
1299
1304
|
readonly onClick?: (() => any) | undefined;
|
|
1300
1305
|
readonly onDelete?: (() => any) | undefined;
|
|
1301
1306
|
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
@@ -1600,6 +1605,7 @@ export declare const Divider: DefineComponent<DividerProps, {}, {}, {}, {}, Comp
|
|
|
1600
1605
|
|
|
1601
1606
|
export declare type DividerProps = {
|
|
1602
1607
|
size: 's' | 'm';
|
|
1608
|
+
opacity?: number | string;
|
|
1603
1609
|
};
|
|
1604
1610
|
|
|
1605
1611
|
export declare const Dropdown: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
@@ -1717,7 +1723,7 @@ export declare const IconView: DefineComponent<IconViewProps, {}, {}, {}, {}, Co
|
|
|
1717
1723
|
|
|
1718
1724
|
export declare type IconViewProps = {
|
|
1719
1725
|
icon: IconName;
|
|
1720
|
-
view?: (typeof
|
|
1726
|
+
view?: (typeof views_5)[number];
|
|
1721
1727
|
size: (typeof sizes_4)[number];
|
|
1722
1728
|
isRounded?: boolean;
|
|
1723
1729
|
};
|
|
@@ -1780,7 +1786,7 @@ export declare type LinkEmits = {
|
|
|
1780
1786
|
export declare type LinkProps = {
|
|
1781
1787
|
tag?: (typeof tags_3)[number];
|
|
1782
1788
|
href?: string;
|
|
1783
|
-
view?: (typeof
|
|
1789
|
+
view?: (typeof views_6)[number];
|
|
1784
1790
|
size?: (typeof sizes_5)[number];
|
|
1785
1791
|
weight?: (typeof weights_2)[number];
|
|
1786
1792
|
iconLeft?: IconName;
|
|
@@ -1874,7 +1880,7 @@ export declare type MenuBarItemProps = {
|
|
|
1874
1880
|
onClick: () => void;
|
|
1875
1881
|
text: string;
|
|
1876
1882
|
icon?: Maybe<IconName>;
|
|
1877
|
-
view?: (typeof
|
|
1883
|
+
view?: (typeof views_9)[number];
|
|
1878
1884
|
badgeText?: string;
|
|
1879
1885
|
};
|
|
1880
1886
|
|
|
@@ -1960,7 +1966,7 @@ export declare type ModalConfirmationEmits = {
|
|
|
1960
1966
|
};
|
|
1961
1967
|
|
|
1962
1968
|
export declare type ModalConfirmationProps = {
|
|
1963
|
-
view: (typeof
|
|
1969
|
+
view: (typeof views_7)[number];
|
|
1964
1970
|
title: string;
|
|
1965
1971
|
description: string;
|
|
1966
1972
|
buttonText: string;
|
|
@@ -2147,7 +2153,7 @@ export declare const Tabs: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {},
|
|
|
2147
2153
|
export declare type TabsProps = {
|
|
2148
2154
|
value?: Maybe<number | string>;
|
|
2149
2155
|
label?: string;
|
|
2150
|
-
view: (typeof
|
|
2156
|
+
view: (typeof views_8)[number];
|
|
2151
2157
|
size: (typeof sizes_7)[number];
|
|
2152
2158
|
isDisabled?: boolean;
|
|
2153
2159
|
data: {
|
|
@@ -2446,15 +2452,17 @@ declare const views_2: readonly ["critical-primary", "critical", "base-primary",
|
|
|
2446
2452
|
|
|
2447
2453
|
declare const views_3: readonly ["secondary", "critical", "primary", "surface", "base", "product-surface", "primary-flat", "base-shadow", "surface-shadow"];
|
|
2448
2454
|
|
|
2449
|
-
declare const views_4: readonly ["base", "
|
|
2455
|
+
declare const views_4: readonly ["base-primary", "base-secondary"];
|
|
2456
|
+
|
|
2457
|
+
declare const views_5: readonly ["base", "critical"];
|
|
2450
2458
|
|
|
2451
|
-
declare const
|
|
2459
|
+
declare const views_6: readonly ["base", "secondary", "brand"];
|
|
2452
2460
|
|
|
2453
|
-
declare const
|
|
2461
|
+
declare const views_7: readonly ["base", "critical"];
|
|
2454
2462
|
|
|
2455
|
-
declare const
|
|
2463
|
+
declare const views_8: readonly ["default", "flat", "flat-secondary"];
|
|
2456
2464
|
|
|
2457
|
-
declare const
|
|
2465
|
+
declare const views_9: readonly ["base", "critical"];
|
|
2458
2466
|
|
|
2459
2467
|
declare const weights: readonly ["regular", "medium", "semibold", "bold"];
|
|
2460
2468
|
|