@namba_one/ui-kit-2 1.0.132 → 1.0.134

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
@@ -2417,6 +2417,7 @@ export declare type MenuBarItemProps = {
2417
2417
  view?: (typeof views_9)[number];
2418
2418
  badgeText?: string;
2419
2419
  isActive?: boolean;
2420
+ isChecked?: boolean;
2420
2421
  };
2421
2422
 
2422
2423
  export declare type MenuBarProps = {
@@ -2752,25 +2753,28 @@ export declare const PageInfoCell: __VLS_WithTemplateSlots_28<typeof __VLS_compo
2752
2753
  export declare type PageInfoCellProps = {
2753
2754
  label?: string;
2754
2755
  value?: string;
2756
+ labelColor?: Color;
2755
2757
  isShowDivider?: boolean;
2756
2758
  };
2757
2759
 
2758
2760
  export declare const PageInfoCellSkeleton: DefineComponent<PageInfoCellSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PageInfoCellSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2759
2761
 
2760
- export declare type PageInfoCellSkeletonProps = Pick<PageInfoCellProps, 'isShowDivider'>;
2762
+ export declare type PageInfoCellSkeletonProps = Pick<PageInfoCellProps, 'isShowDivider' | 'labelColor'>;
2761
2763
 
2762
2764
  export declare const PageInfoCellTable: DefineComponent<PageInfoCellTableProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PageInfoCellTableProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2763
2765
 
2764
2766
  export declare type PageInfoCellTableProps = {
2765
- data: (PageInfoCellProps & {
2767
+ data: (Omit<PageInfoCellProps, 'labelColor'> & {
2766
2768
  isBadge?: boolean;
2767
2769
  })[];
2770
+ labelColor?: PageInfoCellProps['labelColor'];
2768
2771
  };
2769
2772
 
2770
2773
  export declare const PageInfoCellTableSkeleton: DefineComponent<PageInfoCellTableSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PageInfoCellTableSkeletonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2771
2774
 
2772
2775
  export declare type PageInfoCellTableSkeletonProps = {
2773
2776
  size?: number | string;
2777
+ labelColor?: PageInfoCellProps['labelColor'];
2774
2778
  };
2775
2779
 
2776
2780
  export declare const Popover: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;