@factoringplus/pl-components-pack-v3 0.16.1-pre-2 → 0.16.1-pre-5

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.
Files changed (52) hide show
  1. package/dist/components/button/index.d.ts +5 -0
  2. package/dist/components/components.d.ts +3 -0
  3. package/dist/components/currency-input/index.d.ts +5 -0
  4. package/dist/components/entry.d.ts +14 -0
  5. package/dist/components/pl-autocomplete/index.d.ts +5 -0
  6. package/dist/components/pl-card/index.d.ts +5 -0
  7. package/dist/components/pl-checkbox/index.d.ts +5 -0
  8. package/dist/components/pl-checkbox-plus/index.d.ts +2 -3
  9. package/dist/components/pl-date-picker/index.d.ts +5 -0
  10. package/dist/components/pl-date-picker-legacy/index.d.ts +5 -0
  11. package/dist/components/pl-date-picker-plus/index.d.ts +5 -0
  12. package/dist/components/pl-dialog/index.d.ts +5 -0
  13. package/dist/components/pl-form/index.d.ts +5 -0
  14. package/dist/components/pl-form-item/index.d.ts +5 -0
  15. package/dist/components/pl-icon/index.d.ts +5 -0
  16. package/dist/components/pl-input/index.d.ts +5 -0
  17. package/dist/components/pl-input-native/index.d.ts +5 -0
  18. package/dist/components/pl-input-plus/index.d.ts +5 -0
  19. package/dist/components/pl-link/index.d.ts +5 -0
  20. package/dist/components/pl-multitab/index.d.ts +5 -0
  21. package/dist/components/pl-option/index.d.ts +5 -0
  22. package/dist/components/pl-radio/index.d.ts +3 -4
  23. package/dist/components/pl-scrollbar/index.d.ts +5 -0
  24. package/dist/components/pl-select/index.d.ts +5 -0
  25. package/dist/components/pl-select-plus/index.d.ts +5 -0
  26. package/dist/components/pl-skeleton/index.d.ts +5 -0
  27. package/dist/components/pl-snackbar/index.d.ts +5 -0
  28. package/dist/components/pl-snackbar/pl-snackbar.vue.d.ts +53 -0
  29. package/dist/components/pl-snackbar/renderSnackbar.d.ts +4 -0
  30. package/dist/components/pl-snackbar/types.d.ts +20 -0
  31. package/dist/components/pl-stepper/index.d.ts +5 -0
  32. package/dist/components/pl-suggestions/index.d.ts +5 -0
  33. package/dist/components/pl-switch/index.d.ts +3 -4
  34. package/dist/components/pl-tab-pane/index.d.ts +5 -0
  35. package/dist/components/pl-table/index.d.ts +5 -0
  36. package/dist/components/pl-table-plus/index.d.ts +5 -0
  37. package/dist/components/pl-tabs/index.d.ts +5 -0
  38. package/dist/components/pl-text/index.d.ts +5 -0
  39. package/dist/components/pl-tooltip/index.d.ts +5 -0
  40. package/dist/components/pl-upload/index.d.ts +5 -0
  41. package/dist/components/pl-upload-plus/index.d.ts +5 -0
  42. package/dist/directives/index.d.ts +2 -1
  43. package/dist/directives/vTap.d.ts +2 -1
  44. package/dist/directives/vTouchOutside.d.ts +2 -1
  45. package/dist/pl-components-pack-v3.d.ts +3 -1
  46. package/dist/pl-components-pack-v3.es.js +30010 -30285
  47. package/dist/pl-components-pack-v3.umd.js +52 -52
  48. package/dist/plugins/api/api.d.ts +2 -0
  49. package/dist/plugins/loading/loading.d.ts +1 -0
  50. package/dist/style.css +1 -1
  51. package/package.json +1 -1
  52. package/dist/components/pl-form-item/pl-form-item.vue.d.ts +0 -9
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlButton: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlButton;
@@ -0,0 +1,3 @@
1
+ import type { Plugin } from 'vue';
2
+ declare const _default: Plugin<any[]>[];
3
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlCurrency: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlCurrency;
@@ -0,0 +1,14 @@
1
+ import type { App } from 'vue';
2
+ import loadingAndSetup from '../plugins/loading/loading';
3
+
4
+
5
+
6
+
7
+
8
+ declare const Storybook: {
9
+ install: (app: App) => void;
10
+ PlNotification: import("./pl-snackbar/types").IPlNotification;
11
+ apiJs: (optionsRequest: any, isGetResourse: boolean | undefined, token: any) => Promise<unknown>;
12
+ loader: typeof loadingAndSetup;
13
+ };
14
+ export default Storybook;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlAutocomplete: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlAutocomplete;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlCard: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlCard;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlCheckbox: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlCheckbox;
@@ -1,6 +1,5 @@
1
- import PlCheckboxPlus from './pl-checkbox-plus.vue';
2
1
  import { App } from 'vue';
3
- export declare const PlCheckboxPlusPlugin: {
2
+ declare const PlCheckboxPlus: {
4
3
  install(app: App): void;
5
4
  };
6
- export { PlCheckboxPlus };
5
+ export default PlCheckboxPlus;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlDatePickerPlugin: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlDatePickerPlugin;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlDatePickerLegacyPlugin: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlDatePickerLegacyPlugin;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlDatePickerPlusPlugin: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlDatePickerPlusPlugin;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlDialog: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlDialog;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlForm: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlForm;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlFormItem: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlFormItem;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlIcon: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlIcon;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlInput: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlInput;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlInputNative: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlInputNative;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlInputPlus: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlInputPlus;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlLink: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlLink;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlMultitab: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlMultitab;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlOption: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlOption;
@@ -1,6 +1,5 @@
1
- import PlRadio from './pl-radio.vue';
2
- import { App } from 'vue';
3
- export declare const PlRadioPlugin: {
1
+ import type { App } from 'vue';
2
+ declare const PlRadio: {
4
3
  install(app: App): void;
5
4
  };
6
- export { PlRadio };
5
+ export default PlRadio;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlScrollbar: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlScrollbar;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlSelect: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlSelect;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlSelectPlus: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlSelectPlus;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlSkeleton: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlSkeleton;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlSnackbar: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlSnackbar;
@@ -0,0 +1,53 @@
1
+ import type { IProps } from './types';
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
3
+ id: number;
4
+ icon: string;
5
+ color: string;
6
+ title: string;
7
+ button: string;
8
+ buttonAdd: string;
9
+ action: () => void;
10
+ actionAdd: () => void;
11
+ message: string;
12
+ blockHide: boolean;
13
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
14
+ id: number;
15
+ icon: string;
16
+ color: string;
17
+ title: string;
18
+ button: string;
19
+ buttonAdd: string;
20
+ action: () => void;
21
+ actionAdd: () => void;
22
+ message: string;
23
+ blockHide: boolean;
24
+ }>>>, {
25
+ button: string;
26
+ title: string;
27
+ color: string;
28
+ id: number;
29
+ message: string;
30
+ icon: string;
31
+ buttonAdd: string;
32
+ action: Function;
33
+ actionAdd: Function;
34
+ blockHide: boolean;
35
+ }, {}>;
36
+ export default _default;
37
+ declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
38
+ declare type __VLS_TypePropsToRuntimeProps<T> = {
39
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
40
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
41
+ } : {
42
+ type: import('vue').PropType<T[K]>;
43
+ required: true;
44
+ };
45
+ };
46
+ declare type __VLS_WithDefaults<P, D> = {
47
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
48
+ default: D[K];
49
+ }> : P[K];
50
+ };
51
+ declare type __VLS_Prettify<T> = {
52
+ [K in keyof T]: T[K];
53
+ } & {};
@@ -0,0 +1,4 @@
1
+
2
+ import type { IPlNotification } from './types';
3
+ declare const PlNotification: IPlNotification;
4
+ export default PlNotification;
@@ -0,0 +1,20 @@
1
+ export interface IProps {
2
+ id: number;
3
+ icon: string;
4
+ color: string;
5
+ title: string;
6
+ button: string;
7
+ buttonAdd: string;
8
+ action: Function;
9
+ actionAdd: Function;
10
+ message: string;
11
+ blockHide: boolean;
12
+ }
13
+ export interface IPlNotification {
14
+ success: Function;
15
+ error: Function;
16
+ warning: Function;
17
+ info: Function;
18
+ custom: Function;
19
+ closeAll: Function;
20
+ }
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlStepper: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlStepper;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlSuggestions: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlSuggestions;
@@ -1,6 +1,5 @@
1
- import PlSwitch from './pl-switch.vue';
2
- import { App } from 'vue';
3
- export declare const PlSwitchPlugin: {
1
+ import type { App } from 'vue';
2
+ declare const PlSwitch: {
4
3
  install(app: App): void;
5
4
  };
6
- export { PlSwitch };
5
+ export default PlSwitch;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlTabPane: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlTabPane;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlTablePlugin: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlTablePlugin;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlTablePlus: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlTablePlus;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlTabs: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlTabs;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlTextPlugin: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlTextPlugin;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlTooltip: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlTooltip;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlUpload: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlUpload;
@@ -0,0 +1,5 @@
1
+ import type { App } from 'vue';
2
+ declare const PlUploadPlus: {
3
+ install(app: App): void;
4
+ };
5
+ export default PlUploadPlus;
@@ -1,3 +1,4 @@
1
- export declare const PlDirectives: {
1
+ declare const PlDirectives: {
2
2
  install(app: any): void;
3
3
  };
4
+ export default PlDirectives;
@@ -1,2 +1,3 @@
1
1
  import { Directive } from 'vue';
2
- export declare const vTap: Directive<HTMLElement, () => void>;
2
+ declare const vTap: Directive<HTMLElement, () => void>;
3
+ export default vTap;
@@ -1,2 +1,3 @@
1
1
  import { Directive } from 'vue';
2
- export declare const vTouchOutside: Directive;
2
+ declare const vTouchOutside: Directive;
3
+ export default vTouchOutside;
@@ -1 +1,3 @@
1
- export * from './components/entry.js'
1
+ export * from './components/entry'
2
+ import PlComponentsPackV3 from './components/entry'
3
+ export default PlComponentsPackV3