@namba_one/ui-kit-2 1.0.47 → 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 CHANGED
@@ -195,12 +195,6 @@ declare type __VLS_Props_11 = DropdownElementProps;
195
195
 
196
196
  declare type __VLS_Props_12 = ThemePickerProps;
197
197
 
198
- declare type __VLS_Props_13 = {
199
- value: boolean;
200
- size: '16' | '20';
201
- isIndeterminate?: boolean;
202
- };
203
-
204
198
  declare type __VLS_Props_2 = CardContentListProps;
205
199
 
206
200
  declare type __VLS_Props_3 = DropzoneProps;
@@ -816,9 +810,9 @@ export declare type CardContentSkeletonProps = {
816
810
  isShowImage?: boolean;
817
811
  };
818
812
 
819
- export declare const Checkbox: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
813
+ export declare const Checkbox: DefineComponent<CheckboxProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
820
814
  "update:value": (value: boolean) => any;
821
- }, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
815
+ }, string, PublicProps, Readonly<CheckboxProps> & Readonly<{
822
816
  "onUpdate:value"?: ((value: boolean) => any) | undefined;
823
817
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
824
818
 
@@ -834,7 +828,12 @@ export declare type CheckboxGroupFilter = {
834
828
 
835
829
  export declare type CheckboxGroupFilterValue = FilterValueBase<string[]>;
836
830
 
837
- export declare type CheckboxProps = {};
831
+ export declare type CheckboxProps = {
832
+ value: boolean;
833
+ size: (typeof sizes_8)[number];
834
+ isIndeterminate?: boolean;
835
+ isDisabled?: boolean;
836
+ };
838
837
 
839
838
  export declare const Chip: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
840
839
 
@@ -1305,6 +1304,8 @@ declare const sizes_6: readonly ["default", "28_caption", "36_subhead", "subhead
1305
1304
 
1306
1305
  declare const sizes_7: readonly ["title1", "title2", "title3", "headline", "body", "subhead", "caption"];
1307
1306
 
1307
+ declare const sizes_8: readonly ["16", "20"];
1308
+
1308
1309
  export declare const SkeletonBadge: DefineComponent<BadgeSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1309
1310
 
1310
1311
  export declare const SkeletonWrapper: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;