@namba_one/ui-kit-2 1.0.69 → 1.0.71
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 +26 -3
- package/dist/index.es.js +2767 -2653
- package/dist/index.umd.js +6 -6
- package/dist/namba-one-uikit.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -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
|
} & {
|
|
@@ -837,6 +855,13 @@ export declare type CardContentSkeletonProps = {
|
|
|
837
855
|
isShowImage?: boolean;
|
|
838
856
|
};
|
|
839
857
|
|
|
858
|
+
export declare const CellInfo: DefineComponent<CellInfoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<CellInfoProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
859
|
+
|
|
860
|
+
export declare type CellInfoProps = {
|
|
861
|
+
label: string;
|
|
862
|
+
value: string;
|
|
863
|
+
};
|
|
864
|
+
|
|
840
865
|
export declare const Checkbox: DefineComponent<CheckboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
841
866
|
"update:value": (value: boolean) => any;
|
|
842
867
|
}, string, PublicProps, Readonly<CheckboxProps> & Readonly<{
|
|
@@ -1360,8 +1385,6 @@ declare const sizes_8: readonly ["16", "20"];
|
|
|
1360
1385
|
|
|
1361
1386
|
declare const sizes_9: readonly ["28", "36", "40", "56", "120", 28, 36, 40, 56, 120];
|
|
1362
1387
|
|
|
1363
|
-
export declare const SkeletonBadge: DefineComponent<BadgeSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1364
|
-
|
|
1365
1388
|
export declare const SkeletonWrapper: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1366
1389
|
|
|
1367
1390
|
declare interface SpriteService {
|