@namba_one/ui-kit-2 1.5.1 → 1.5.3

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
@@ -3721,6 +3721,7 @@ export declare const FilterGroup_Date: DefineComponent<__VLS_PublicProps_29, {},
3721
3721
  export declare type FilterGroup_DateProps = {
3722
3722
  buttonTitle: string;
3723
3723
  withTimeRange?: boolean;
3724
+ timeFormat?: (typeof timeFormats)[number];
3724
3725
  view?: (typeof views)[number];
3725
3726
  title?: string;
3726
3727
  fromPlaceholder?: string;
@@ -3763,6 +3764,7 @@ declare type FilterGroup_SortProps = {
3763
3764
  type?: 'asc' | 'desc';
3764
3765
  }[];
3765
3766
  minWidth?: number;
3767
+ withIcon?: boolean;
3766
3768
  };
3767
3769
 
3768
3770
  declare type FilterGroup_SortValue = string | number;
@@ -4124,6 +4126,30 @@ declare const masks_2: {
4124
4126
  };
4125
4127
  lazy: boolean;
4126
4128
  };
4129
+ 'time-with-seconds': {
4130
+ mask: string;
4131
+ blocks: {
4132
+ HH: {
4133
+ mask: MaskedRange;
4134
+ from: number;
4135
+ to: number;
4136
+ maxLength: number;
4137
+ };
4138
+ MM: {
4139
+ mask: MaskedRange;
4140
+ from: number;
4141
+ to: number;
4142
+ maxLength: number;
4143
+ };
4144
+ SS: {
4145
+ mask: MaskedRange;
4146
+ from: number;
4147
+ to: number;
4148
+ maxLength: number;
4149
+ };
4150
+ };
4151
+ lazy: boolean;
4152
+ };
4127
4153
  };
4128
4154
 
4129
4155
  export declare const MenuBar: DefineComponent<MenuBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MenuBarProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
@@ -5444,6 +5470,8 @@ export declare type TheTextSkeletonProps = {
5444
5470
  color: Color;
5445
5471
  };
5446
5472
 
5473
+ export declare const timeFormats: readonly ["HH:mm", "HH:mm:ss"];
5474
+
5447
5475
  export declare type Toast = {
5448
5476
  title: string;
5449
5477
  view: 'danger' | 'base' | 'primary';