@pksep/yui 0.1.239 → 0.1.241

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.
@@ -7,6 +7,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
7
7
  dataTestid: string;
8
8
  position: string;
9
9
  disableCloseOnOutsideClick: boolean;
10
+ isResetFocus: boolean;
10
11
  }>>, {
11
12
  closeDialog: () => void;
12
13
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
@@ -16,6 +17,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
16
17
  dataTestid: string;
17
18
  position: string;
18
19
  disableCloseOnOutsideClick: boolean;
20
+ isResetFocus: boolean;
19
21
  }>>> & Readonly<{
20
22
  onClose?: ((...args: any[]) => any) | undefined;
21
23
  onUnmounted?: ((...args: any[]) => any) | undefined;
@@ -23,6 +25,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
23
25
  dataTestid: string;
24
26
  position: "right" | "center" | "bottom";
25
27
  disableCloseOnOutsideClick: boolean;
28
+ isResetFocus: boolean;
26
29
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
27
30
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
28
31
  export default _default;
@@ -7,6 +7,7 @@ export interface IDialogProps extends IDataTestIdProp {
7
7
  width?: string;
8
8
  height?: string;
9
9
  disableCloseOnOutsideClick?: boolean;
10
+ isResetFocus?: boolean;
10
11
  }
11
12
  export interface IModalProps extends IDialogProps {
12
13
  animateType?: ModalAnimateEnum;