@factoringplus/pl-components-pack-v3 1.2.12-pre-05 → 1.2.12
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 +17 -17
- package/dist/components/entry.d.ts +0 -6
- package/dist/components/pl-input-plus/pl-input-plus.vue.d.ts +1 -1
- package/dist/components/pl-multi-select/pl-multi-select.vue.d.ts +2 -0
- package/dist/pl-components-pack-v3.es.js +6990 -6995
- package/dist/pl-components-pack-v3.umd.js +27 -27
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/pl-date-picker-plus/common/constants.d.ts +0 -2
- package/dist/plugins/filters.d.ts +0 -11
- package/dist/utils/formatCurrency.d.ts +0 -2
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
|
+
```
|
|
@@ -8,18 +8,12 @@ import loadingAndSetup from '../plugins/loading/loading';
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
import type { IPlNotification } from './pl-snackbar/types';
|
|
11
|
-
import declOfNum from '../utils/declOfNum';
|
|
12
11
|
declare const Storybook: {
|
|
13
12
|
install: (app: App) => void;
|
|
14
13
|
PlNotification: IPlNotification;
|
|
15
14
|
apiJs: (optionsRequest: any, isGetResourse: boolean, token: any) => Promise<unknown>;
|
|
16
15
|
plLoading: typeof plLoading;
|
|
17
16
|
loader: typeof loadingAndSetup;
|
|
18
|
-
formatCurrency: (number: string | number, showDecimal?: boolean, digitCount?: number) => string;
|
|
19
|
-
filters: {
|
|
20
|
-
install(app: App<any>): void;
|
|
21
|
-
};
|
|
22
|
-
declOfNum: typeof declOfNum;
|
|
23
17
|
};
|
|
24
18
|
export * from './components';
|
|
25
19
|
export default Storybook;
|
|
@@ -81,7 +81,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
81
81
|
clearable: boolean;
|
|
82
82
|
leftIcon: import("../pl-icon").TIcon;
|
|
83
83
|
password: boolean;
|
|
84
|
-
currency: boolean;
|
|
85
84
|
rightIcon: import("../pl-icon").TIcon;
|
|
86
85
|
width: string;
|
|
87
86
|
helpertext: string;
|
|
@@ -89,6 +88,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
89
88
|
tooltip: string;
|
|
90
89
|
focusOnReset: boolean;
|
|
91
90
|
showWordLimit: boolean;
|
|
91
|
+
currency: boolean;
|
|
92
92
|
round: boolean;
|
|
93
93
|
'show-word-limit': boolean;
|
|
94
94
|
maxlength: number;
|
|
@@ -15,6 +15,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
15
15
|
clearable: boolean;
|
|
16
16
|
buttons: boolean;
|
|
17
17
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
|
+
reset: (...args: any[]) => void;
|
|
18
19
|
"update:modelValue": (...args: any[]) => void;
|
|
19
20
|
change: (...args: any[]) => void;
|
|
20
21
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
|
|
@@ -34,6 +35,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
34
35
|
buttons: boolean;
|
|
35
36
|
}>>> & {
|
|
36
37
|
onChange?: (...args: any[]) => any;
|
|
38
|
+
onReset?: (...args: any[]) => any;
|
|
37
39
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
38
40
|
}, {
|
|
39
41
|
label: string;
|