@namba_one/ui-kit-2 1.0.150 → 1.0.151

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
@@ -14,6 +14,7 @@ import { GlobalComponents } from 'vue';
14
14
  import { GlobalDirectives } from 'vue';
15
15
  import { InjectionKey } from 'vue';
16
16
  import { InputHTMLAttributes } from 'vue';
17
+ import { MaskedRange } from 'imask/esm/index';
17
18
  import { nextTick } from 'vue';
18
19
  import { OnCleanup } from '@vue/reactivity';
19
20
  import { PropType } from 'vue';
@@ -2419,6 +2420,24 @@ declare const masks_2: {
2419
2420
  mask: DateConstructor;
2420
2421
  lazy: boolean;
2421
2422
  };
2423
+ time: {
2424
+ mask: string;
2425
+ blocks: {
2426
+ HH: {
2427
+ mask: MaskedRange;
2428
+ from: number;
2429
+ to: number;
2430
+ maxLength: number;
2431
+ };
2432
+ MM: {
2433
+ mask: MaskedRange;
2434
+ from: number;
2435
+ to: number;
2436
+ maxLength: number;
2437
+ };
2438
+ };
2439
+ lazy: boolean;
2440
+ };
2422
2441
  };
2423
2442
 
2424
2443
  export declare const MenuBar: DefineComponent<MenuBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<MenuBarProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;