@factoringplus/pl-components-pack-v3 0.5.80-pre-01 → 0.5.81-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.
- package/README.md +17 -17
- package/dist/mockServiceWorker.js +309 -312
- package/dist/pl-components-pack-v3.es.js +3243 -3429
- package/dist/pl-components-pack-v3.umd.js +18 -18
- package/dist/style.css +1 -1
- package/package.json +111 -83
package/package.json
CHANGED
|
@@ -1,85 +1,113 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
2
|
+
"name": "@factoringplus/pl-components-pack-v3",
|
|
3
|
+
"private": false,
|
|
4
|
+
"files": [
|
|
5
|
+
"dist"
|
|
6
|
+
],
|
|
7
|
+
"main": "./dist/pl-components-pack-v3.js",
|
|
8
|
+
"module": "./dist/pl-components-pack-v3.es.js",
|
|
9
|
+
"exports": {
|
|
10
|
+
"./dist/style.css": "./dist/style.css",
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/pl-components-pack-v3.es.js",
|
|
13
|
+
"require": "./dist/pl-components-pack-v3.umd.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"version": "0.5.81-pre-01",
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "vite",
|
|
19
|
+
"build": "vite build",
|
|
20
|
+
"preview": "vite preview",
|
|
21
|
+
"storybook": "node ./buildStyles.js && storybook dev -p 6006 --no-open",
|
|
22
|
+
"build-storybook": "storybook build",
|
|
23
|
+
"publish-story": "npm i && npm run build && npm publish --access=public",
|
|
24
|
+
"build-styles": "node ./buildStyles.js",
|
|
25
|
+
"publish": "npm publish --access=public",
|
|
26
|
+
"lint:eslint": "eslint .",
|
|
27
|
+
"lint:prettier": "prettier --write .",
|
|
28
|
+
"prepare": "husky install"
|
|
29
|
+
},
|
|
30
|
+
"lint-staged": {
|
|
31
|
+
"src/**/*.{js,vue}": [
|
|
32
|
+
"prettier --write",
|
|
33
|
+
"eslint --fix"
|
|
34
|
+
],
|
|
35
|
+
"*.js": "eslint --cache --fix"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@element-plus/icons-vue": "^1.1.4",
|
|
39
|
+
"@mdx-js/react": "^2.3.0",
|
|
40
|
+
"@storybook/addons": "^7.0.26",
|
|
41
|
+
"@vueuse/components": "^9.13.0",
|
|
42
|
+
"@vueuse/core": "^9.13.0",
|
|
43
|
+
"async-validator": "^4.2.5",
|
|
44
|
+
"axios": "^0.26.1",
|
|
45
|
+
"crypto-pro": "^2.5.0",
|
|
46
|
+
"dayjs": "^1.11.9",
|
|
47
|
+
"element-plus": "^2.3.7",
|
|
48
|
+
"feather-icons": "^4.29.0",
|
|
49
|
+
"js-file-download": "^0.4.12",
|
|
50
|
+
"lodash": "^4.17.21",
|
|
51
|
+
"maska": "^1.5.2",
|
|
52
|
+
"moment": "^2.29.4",
|
|
53
|
+
"msw": "^0.43.1",
|
|
54
|
+
"pinia": "^2.1.4",
|
|
55
|
+
"uniqid": "^5.4.0",
|
|
56
|
+
"vue": "^3.2.37",
|
|
57
|
+
"vue-currency-input": "^2.5.1",
|
|
58
|
+
"vue-feather": "^2.0.0",
|
|
59
|
+
"vue-inline-svg": "^3.1.2",
|
|
60
|
+
"vuedraggable": "^4.1.0",
|
|
61
|
+
"vuex": "^4.1.0"
|
|
62
|
+
},
|
|
63
|
+
"devDependencies": {
|
|
64
|
+
"@babel/core": "^7.22.8",
|
|
65
|
+
"@playwright/test": "^1.36.2",
|
|
66
|
+
"@storybook/addon-actions": "^7.0.12",
|
|
67
|
+
"@storybook/addon-essentials": "^7.0.26",
|
|
68
|
+
"@storybook/addon-links": "^7.0.26",
|
|
69
|
+
"@storybook/vue3": "^7.0.12",
|
|
70
|
+
"@storybook/vue3-vite": "^7.0.26",
|
|
71
|
+
"@types/node": "^20.4.0",
|
|
72
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
73
|
+
"@vue/compiler-sfc": "^3.3.1",
|
|
74
|
+
"@vue/eslint-config-prettier": "^7.1.0",
|
|
75
|
+
"allure-playwright": "^2.4.0",
|
|
76
|
+
"babel-eslint": "^10.1.0",
|
|
77
|
+
"babel-loader": "^9.1.2",
|
|
78
|
+
"eslint": "^8.44.0",
|
|
79
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
80
|
+
"eslint-plugin-vue": "^9.15.1",
|
|
81
|
+
"prettier": "^2.8.8",
|
|
82
|
+
"react": "^18.2.0",
|
|
83
|
+
"react-dom": "^18.2.0",
|
|
84
|
+
"rollup-plugin-visualizer": "^5.9.2",
|
|
85
|
+
"sass": "^1.63.6",
|
|
86
|
+
"storybook": "^7.0.26",
|
|
87
|
+
"style-dictionary": "^3.8.0",
|
|
88
|
+
"typescript": "^4.7.4",
|
|
89
|
+
"unplugin-vue-components": "^0.24.1",
|
|
90
|
+
"vite": "^4.4.2",
|
|
91
|
+
"vite-svg-loader": "^4.0.0",
|
|
92
|
+
"vue-loader": "^17.2.2",
|
|
93
|
+
"vue-tsc": "^1.8.4",
|
|
94
|
+
"@babel/eslint-parser": "^7.22.5",
|
|
95
|
+
"@babel/preset-env": "^7.22.5",
|
|
96
|
+
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
|
97
|
+
"@typescript-eslint/parser": "^5.57.0",
|
|
98
|
+
"@vue/eslint-config-airbnb": "^7.0.0",
|
|
99
|
+
"@vue/eslint-config-typescript": "^11.0.2",
|
|
100
|
+
"@vue/tsconfig": "^0.1.3",
|
|
101
|
+
"autoprefixer": "^10.4.14",
|
|
102
|
+
"eslint-config-prettier": "8.8.0",
|
|
103
|
+
"eslint-plugin-import": "^2.27.5",
|
|
104
|
+
"eslint-plugin-vuejs-accessibility": "^1.2.0",
|
|
105
|
+
"husky": "8.0.3",
|
|
106
|
+
"lint-staged": "13.2.2",
|
|
107
|
+
"node-sass": "^9.0.0",
|
|
108
|
+
"postcss-preset-env": "^8.3.0",
|
|
109
|
+
"unplugin-auto-import": "^0.15.2",
|
|
110
|
+
"vite-plugin-checker": "^0.5.6",
|
|
111
|
+
"vite-plugin-eslint": "^1.8.1"
|
|
112
|
+
}
|
|
85
113
|
}
|