@namba_one/ui-kit-2 1.0.45 → 1.0.47

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
@@ -72,6 +72,8 @@ declare const __VLS_component_18: DefineComponent<__VLS_PublicProps_12, {}, {},
72
72
  fixedElementRef: HTMLDivElement;
73
73
  }, any>;
74
74
 
75
+ declare const __VLS_component_19: DefineComponent<VerificationInfoCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<VerificationInfoCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
76
+
75
77
  declare const __VLS_component_2: DefineComponent<TheTextProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TheTextProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
76
78
 
77
79
  declare const __VLS_component_3: DefineComponent<BadgeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<BadgeProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -193,6 +195,12 @@ declare type __VLS_Props_11 = DropdownElementProps;
193
195
 
194
196
  declare type __VLS_Props_12 = ThemePickerProps;
195
197
 
198
+ declare type __VLS_Props_13 = {
199
+ value: boolean;
200
+ size: '16' | '20';
201
+ isIndeterminate?: boolean;
202
+ };
203
+
196
204
  declare type __VLS_Props_2 = CardContentListProps;
197
205
 
198
206
  declare type __VLS_Props_3 = DropzoneProps;
@@ -366,6 +374,15 @@ declare function __VLS_template_18(): {
366
374
  rootEl: any;
367
375
  };
368
376
 
377
+ declare function __VLS_template_19(): {
378
+ attrs: Partial<{}>;
379
+ slots: {
380
+ default?(_: {}): any;
381
+ };
382
+ refs: {};
383
+ rootEl: HTMLDivElement;
384
+ };
385
+
369
386
  declare function __VLS_template_2(): {
370
387
  attrs: Partial<{}>;
371
388
  slots: {
@@ -548,6 +565,8 @@ declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
548
565
 
549
566
  declare type __VLS_TemplateResult_18 = ReturnType<typeof __VLS_template_18>;
550
567
 
568
+ declare type __VLS_TemplateResult_19 = ReturnType<typeof __VLS_template_19>;
569
+
551
570
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
552
571
 
553
572
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
@@ -624,6 +643,12 @@ declare type __VLS_WithTemplateSlots_18<T, S> = T & {
624
643
  };
625
644
  };
626
645
 
646
+ declare type __VLS_WithTemplateSlots_19<T, S> = T & {
647
+ new (): {
648
+ $slots: S;
649
+ };
650
+ };
651
+
627
652
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
628
653
  new (): {
629
654
  $slots: S;
@@ -791,6 +816,12 @@ export declare type CardContentSkeletonProps = {
791
816
  isShowImage?: boolean;
792
817
  };
793
818
 
819
+ export declare const Checkbox: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
820
+ "update:value": (value: boolean) => any;
821
+ }, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
822
+ "onUpdate:value"?: ((value: boolean) => any) | undefined;
823
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLabelElement>;
824
+
794
825
  export declare type CheckboxGroupFilter = {
795
826
  key: string;
796
827
  label: string;
@@ -803,6 +834,8 @@ export declare type CheckboxGroupFilter = {
803
834
 
804
835
  export declare type CheckboxGroupFilterValue = FilterValueBase<string[]>;
805
836
 
837
+ export declare type CheckboxProps = {};
838
+
806
839
  export declare const Chip: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
807
840
 
808
841
  export declare type ChipEmits = {
@@ -1575,6 +1608,14 @@ export declare const UserRowSkeleton: DefineComponent< {}, {}, {}, {}, {}, Co
1575
1608
 
1576
1609
  declare type Value = ColorInput | undefined;
1577
1610
 
1611
+ export declare const VerificationInfoCell: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
1612
+
1613
+ export declare type VerificationInfoCellProps = {
1614
+ icon: IconName;
1615
+ title: string;
1616
+ description?: string;
1617
+ };
1618
+
1578
1619
  declare type View = 'secondary' | 'success' | 'brand' | 'critical';
1579
1620
 
1580
1621
  declare const views: readonly ["brand", "secondary", "success", "critical", "base"];