@namba_one/ui-kit-2 1.0.46 → 1.0.48
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 +15 -0
- package/dist/index.es.js +286 -284
- package/dist/index.umd.js +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -810,6 +810,12 @@ export declare type CardContentSkeletonProps = {
|
|
|
810
810
|
isShowImage?: boolean;
|
|
811
811
|
};
|
|
812
812
|
|
|
813
|
+
export declare const Checkbox: DefineComponent<CheckboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
814
|
+
"update:value": (value: boolean) => any;
|
|
815
|
+
}, string, PublicProps, Readonly<CheckboxProps> & Readonly<{
|
|
816
|
+
"onUpdate:value"?: ((value: boolean) => any) | undefined;
|
|
817
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
|
|
818
|
+
|
|
813
819
|
export declare type CheckboxGroupFilter = {
|
|
814
820
|
key: string;
|
|
815
821
|
label: string;
|
|
@@ -822,6 +828,13 @@ export declare type CheckboxGroupFilter = {
|
|
|
822
828
|
|
|
823
829
|
export declare type CheckboxGroupFilterValue = FilterValueBase<string[]>;
|
|
824
830
|
|
|
831
|
+
export declare type CheckboxProps = {
|
|
832
|
+
value: boolean;
|
|
833
|
+
size: (typeof sizes_8)[number];
|
|
834
|
+
isIndeterminate?: boolean;
|
|
835
|
+
isDisabled?: boolean;
|
|
836
|
+
};
|
|
837
|
+
|
|
825
838
|
export declare const Chip: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
826
839
|
|
|
827
840
|
export declare type ChipEmits = {
|
|
@@ -1291,6 +1304,8 @@ declare const sizes_6: readonly ["default", "28_caption", "36_subhead", "subhead
|
|
|
1291
1304
|
|
|
1292
1305
|
declare const sizes_7: readonly ["title1", "title2", "title3", "headline", "body", "subhead", "caption"];
|
|
1293
1306
|
|
|
1307
|
+
declare const sizes_8: readonly ["16", "20"];
|
|
1308
|
+
|
|
1294
1309
|
export declare const SkeletonBadge: DefineComponent<BadgeSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1295
1310
|
|
|
1296
1311
|
export declare const SkeletonWrapper: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|