@factoringplus/pl-components-pack-v3 1.0.2-pre-01 → 1.0.2-pre-02

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/README.md CHANGED
@@ -1,17 +1,17 @@
1
- # Библиотека компонентов Vue 3
2
-
3
- ## Установка
4
-
5
- ```bash
6
- npm i @factoringplus/pl-components-pack-v3
7
- ```
8
-
9
- ### Добавление компонентов в проект
10
-
11
- ```bash
12
- // src/main.js
13
- import components from '@factoringplus/pl-components-pack-v3';
14
- import '@factoringplus/pl-components-pack-v3/dist/style.css';
15
-
16
- app.use(components)
17
- ```
1
+ # Библиотека компонентов Vue 3
2
+
3
+ ## Установка
4
+
5
+ ```bash
6
+ npm i @factoringplus/pl-components-pack-v3
7
+ ```
8
+
9
+ ### Добавление компонентов в проект
10
+
11
+ ```bash
12
+ // src/main.js
13
+ import components from '@factoringplus/pl-components-pack-v3';
14
+ import '@factoringplus/pl-components-pack-v3/dist/style.css';
15
+
16
+ app.use(components)
17
+ ```
@@ -5,6 +5,7 @@ import loadingAndSetup from '../plugins/loading/loading';
5
5
 
6
6
 
7
7
 
8
+
8
9
  import type { IPlNotification } from './pl-snackbar/types';
9
10
  declare const Storybook: {
10
11
  install: (app: App) => void;
@@ -5,6 +5,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
5
5
  helpertext: string;
6
6
  errors: () => never[];
7
7
  offsets: string;
8
+ noSymbols: boolean;
8
9
  loadingSuggestions: boolean;
9
10
  query: string;
10
11
  symbolsCountSearch: number;
@@ -19,6 +20,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
19
20
  helpertext: string;
20
21
  errors: () => never[];
21
22
  offsets: string;
23
+ noSymbols: boolean;
22
24
  loadingSuggestions: boolean;
23
25
  query: string;
24
26
  symbolsCountSearch: number;
@@ -33,6 +35,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
33
35
  helpertext: string;
34
36
  errors: import("async-validator").ValidateError[];
35
37
  offsets: string;
38
+ noSymbols: boolean;
36
39
  loadingSuggestions: boolean;
37
40
  query: string;
38
41
  symbolsCountSearch: number;
@@ -13,6 +13,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
13
13
  disabled: boolean;
14
14
  clearable: boolean;
15
15
  symbolsCountSearch: number;
16
+ noSymbols: boolean;
16
17
  suggestionList: () => never[];
17
18
  noData: string;
18
19
  defaultDropText: string;
@@ -38,6 +39,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
38
39
  disabled: boolean;
39
40
  clearable: boolean;
40
41
  symbolsCountSearch: number;
42
+ noSymbols: boolean;
41
43
  suggestionList: () => never[];
42
44
  noData: string;
43
45
  defaultDropText: string;
@@ -52,6 +54,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
52
54
  }, {
53
55
  label: string;
54
56
  helpertext: string;
57
+ noSymbols: boolean;
55
58
  symbolsCountSearch: number;
56
59
  suggestionList: IOption[];
57
60
  disableMarkerBottom: boolean;
@@ -20,6 +20,7 @@ declare interface IAutocompleteProps {
20
20
  disabled?: boolean;
21
21
  clearable?: boolean;
22
22
  symbolsCountSearch?: number;
23
+ noSymbols?: boolean;
23
24
  noData?: string;
24
25
  defaultDropText?: string;
25
26
  memoryBlur?: boolean;
@@ -33,6 +34,7 @@ declare interface IDropdownProps {
33
34
  helpertext: string;
34
35
  errors: ValidateError[];
35
36
  offsets: string;
37
+ noSymbols: boolean;
36
38
  loadingSuggestions: boolean;
37
39
  query: string;
38
40
  symbolsCountSearch: number;
@@ -0,0 +1,3 @@
1
+ import { Directive } from 'vue';
2
+ export declare const vLoadingPlus: Directive<HTMLElement, () => void>;
3
+ export default vLoadingPlus;