@namba_one/ui-kit-2 1.0.68 → 1.0.70
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 +23 -7
- package/dist/index.es.js +5145 -5004
- package/dist/index.umd.js +13 -13
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -121,8 +121,8 @@ $data: {};
|
|
|
121
121
|
$props: {
|
|
122
122
|
readonly tag?: tags_2[number] | undefined;
|
|
123
123
|
readonly href?: string | undefined;
|
|
124
|
-
readonly isLoading?: boolean | undefined;
|
|
125
124
|
readonly isDisabled?: boolean | undefined;
|
|
125
|
+
readonly isLoading?: boolean | undefined;
|
|
126
126
|
readonly view?: views_2[number] | undefined;
|
|
127
127
|
readonly size?: sizes_2[number] | undefined;
|
|
128
128
|
readonly isWide?: boolean | undefined;
|
|
@@ -480,8 +480,8 @@ declare function __VLS_template_8(): {
|
|
|
480
480
|
$props: {
|
|
481
481
|
readonly tag?: tags_2[number] | undefined;
|
|
482
482
|
readonly href?: string | undefined;
|
|
483
|
-
readonly isLoading?: boolean | undefined;
|
|
484
483
|
readonly isDisabled?: boolean | undefined;
|
|
484
|
+
readonly isLoading?: boolean | undefined;
|
|
485
485
|
readonly view?: views_2[number] | undefined;
|
|
486
486
|
readonly size?: sizes_2[number] | undefined;
|
|
487
487
|
readonly isWide?: boolean | undefined;
|
|
@@ -729,7 +729,9 @@ export declare type BadgeProps = {
|
|
|
729
729
|
isRounded?: boolean;
|
|
730
730
|
};
|
|
731
731
|
|
|
732
|
-
declare
|
|
732
|
+
export declare const BadgeSkeleton: DefineComponent<BadgeSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
733
|
+
|
|
734
|
+
export declare type BadgeSkeletonProps = {
|
|
733
735
|
isRounded?: boolean;
|
|
734
736
|
};
|
|
735
737
|
|
|
@@ -783,6 +785,14 @@ export declare type ButtonIconProps = Omit<ButtonBaseProps, 'view' | 'size'> & {
|
|
|
783
785
|
isRound?: boolean;
|
|
784
786
|
};
|
|
785
787
|
|
|
788
|
+
export declare const ButtonIconSkeleton: DefineComponent<ButtonIconSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ButtonIconSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
789
|
+
|
|
790
|
+
export declare type ButtonIconSkeletonProps = {
|
|
791
|
+
view?: (typeof views_3)[number];
|
|
792
|
+
size?: (typeof sizes_3)[number];
|
|
793
|
+
isRound?: boolean;
|
|
794
|
+
};
|
|
795
|
+
|
|
786
796
|
export declare type ButtonProps = Omit<ButtonBaseProps, 'view' | 'size'> & {
|
|
787
797
|
view?: (typeof views_2)[number];
|
|
788
798
|
size?: (typeof sizes_2)[number];
|
|
@@ -791,6 +801,14 @@ export declare type ButtonProps = Omit<ButtonBaseProps, 'view' | 'size'> & {
|
|
|
791
801
|
iconRight?: IconName;
|
|
792
802
|
};
|
|
793
803
|
|
|
804
|
+
export declare const ButtonSkeleton: DefineComponent<ButtonSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ButtonSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
805
|
+
|
|
806
|
+
export declare type ButtonSkeletonProps = {
|
|
807
|
+
view?: (typeof views_2)[number];
|
|
808
|
+
size?: (typeof sizes_2)[number];
|
|
809
|
+
isWide?: boolean;
|
|
810
|
+
};
|
|
811
|
+
|
|
794
812
|
export declare const CardContent: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
795
813
|
"update:value": (value: boolean) => any;
|
|
796
814
|
} & {
|
|
@@ -1360,8 +1378,6 @@ declare const sizes_8: readonly ["16", "20"];
|
|
|
1360
1378
|
|
|
1361
1379
|
declare const sizes_9: readonly ["28", "36", "40", "56", "120", 28, 36, 40, 56, 120];
|
|
1362
1380
|
|
|
1363
|
-
export declare const SkeletonBadge: DefineComponent<BadgeSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1364
|
-
|
|
1365
1381
|
export declare const SkeletonWrapper: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1366
1382
|
|
|
1367
1383
|
declare interface SpriteService {
|
|
@@ -1690,9 +1706,9 @@ declare type View = 'secondary' | 'success' | 'brand' | 'critical';
|
|
|
1690
1706
|
|
|
1691
1707
|
declare const views: readonly ["brand", "secondary", "success", "critical", "base"];
|
|
1692
1708
|
|
|
1693
|
-
declare const views_2: readonly ["
|
|
1709
|
+
declare const views_2: readonly ["critical-primary", "critical", "base-primary", "base", "base-flat", "brand-flat", "product-surface", "surface-shadow", "surface", "secondary"];
|
|
1694
1710
|
|
|
1695
|
-
declare const views_3: readonly ["secondary", "critical", "primary", "surface", "base", "
|
|
1711
|
+
declare const views_3: readonly ["secondary", "critical", "primary", "surface", "base", "product-surface", "primary-flat", "base-shadow", "surface-shadow"];
|
|
1696
1712
|
|
|
1697
1713
|
declare const views_4: readonly ["base", "critical"];
|
|
1698
1714
|
|