@factoringplus/pl-components-pack-v3 1.2.14 → 1.2.15-pre-01

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.
@@ -53,8 +53,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
53
53
  optional: string;
54
54
  tooltip: string;
55
55
  teleport: boolean;
56
- showDescription: boolean;
57
56
  options: IOption[];
57
+ showDescription: boolean;
58
58
  account: boolean;
59
59
  }, {}>;
60
60
  export default _default;
@@ -1,10 +1,4 @@
1
1
 
2
2
  import type { IPlNotification } from './types';
3
- import type { AppContext, Plugin } from 'vue';
4
- export declare type SFCWithInstall<T> = T & Plugin;
5
- export declare type SFCInstallWithContext<T> = SFCWithInstall<T> & {
6
- _context: AppContext | null;
7
- };
8
- export declare const withInstallFunction: <T>(fn: T, name: string) => SFCInstallWithContext<T>;
9
- export declare const PlNotification: SFCInstallWithContext<IPlNotification>;
3
+ export declare const PlNotification: import('../../install-function').SFCInstallWithContext<IPlNotification>;
10
4
  export default PlNotification;
@@ -41,8 +41,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
41
41
  default: number;
42
42
  };
43
43
  }>>, {
44
- trigger: "click" | "focus" | "hover" | "contextmenu";
45
44
  customClass: string;
45
+ trigger: "click" | "focus" | "hover" | "contextmenu";
46
46
  position: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
47
47
  hideAfter: number;
48
48
  }, {}>, {
@@ -0,0 +1,6 @@
1
+ import type { AppContext, Plugin } from 'vue';
2
+ export declare type SFCWithInstall<T> = T & Plugin;
3
+ export declare type SFCInstallWithContext<T> = SFCWithInstall<T> & {
4
+ _context: AppContext | null;
5
+ };
6
+ export declare const withInstallFunction: <T>(fn: T, name: string) => SFCInstallWithContext<T>;