@namba_one/ui-kit-2 1.0.86 → 1.0.88

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
@@ -1339,21 +1339,30 @@ export declare type DatepickerFilterChipProps = {};
1339
1339
 
1340
1340
  export declare type DatepickerFilterEmits = {
1341
1341
  (e: 'update:value', value: DatepickerProps['value']): void;
1342
+ (e: 'close'): void;
1343
+ (e: 'clear'): void;
1342
1344
  };
1343
1345
 
1344
- export declare type DatepickerFilterProps = DatepickerProps;
1346
+ export declare type DatepickerFilterProps = DatepickerProps & {
1347
+ action?: 'clear' | 'close';
1348
+ };
1345
1349
 
1346
1350
  export declare type DatepickerFilterValue = FilterValueBase<Date[]>;
1347
1351
 
1348
1352
  declare type DatepickerProps = {
1349
1353
  value: Date[];
1350
1354
  disabledDates?: VueDatePickerProps['disabledDates'];
1355
+ isIgnoreClickOutside?: boolean;
1351
1356
  };
1352
1357
 
1353
- declare const _default: DefineComponent<DatepickerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1358
+ declare const _default: DefineComponent<DatepickerFilterProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1359
+ close: () => any;
1354
1360
  "update:value": (value: Date[]) => any;
1355
- }, string, PublicProps, Readonly<DatepickerProps> & Readonly<{
1361
+ clear: () => any;
1362
+ }, string, PublicProps, Readonly<DatepickerFilterProps> & Readonly<{
1363
+ onClose?: (() => any) | undefined;
1356
1364
  "onUpdate:value"?: ((value: Date[]) => any) | undefined;
1365
+ onClear?: (() => any) | undefined;
1357
1366
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
1358
1367
  inputStartRef: ({
1359
1368
  $: ComponentInternalInstance;