@plesk/ui-library 3.27.0 → 3.27.3
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/cjs/components/Dialog/Dialog.js +11 -2
- package/cjs/components/Drawer/DrawerProgress.js +15 -1
- package/cjs/components/FormFieldPassword/FormFieldPassword.js +24 -214
- package/cjs/components/FormFieldPassword/PasswordMeter.js +81 -0
- package/cjs/components/FormFieldPassword/estimatePassword.js +203 -0
- package/cjs/components/FormFieldPassword/generatePassword.js +21 -0
- package/cjs/components/FormFieldPassword/index.js +5 -5
- package/cjs/components/Icon/Icon.js +1 -1
- package/cjs/components/List/List.js +1 -1
- package/cjs/components/ProgressDialog/ProgressDialog.js +2 -1
- package/cjs/components/Rating/images/rating.svg +5 -5
- package/cjs/index.js +1 -1
- package/dist/images/rating.svg +5 -5
- package/dist/plesk-ui-library-rtl.css +1 -1
- package/dist/plesk-ui-library-rtl.css.map +1 -1
- package/dist/plesk-ui-library.css +1 -1
- package/dist/plesk-ui-library.css.map +1 -1
- package/dist/plesk-ui-library.js +336 -309
- package/dist/plesk-ui-library.js.map +1 -1
- package/dist/plesk-ui-library.min.js +5 -5
- package/dist/plesk-ui-library.min.js.map +1 -1
- package/esm/components/Dialog/Dialog.js +11 -2
- package/esm/components/Drawer/DrawerProgress.js +16 -2
- package/esm/components/FormFieldPassword/FormFieldPassword.js +22 -206
- package/esm/components/FormFieldPassword/PasswordMeter.js +61 -0
- package/esm/components/FormFieldPassword/estimatePassword.js +187 -0
- package/esm/components/FormFieldPassword/generatePassword.js +14 -0
- package/esm/components/FormFieldPassword/index.js +3 -2
- package/esm/components/Icon/Icon.js +1 -1
- package/esm/components/List/List.js +1 -1
- package/esm/components/ProgressDialog/ProgressDialog.js +2 -1
- package/esm/components/Rating/images/rating.svg +5 -5
- package/esm/index.js +1 -1
- package/package.json +13 -8
- package/styleguide/build/bundle.f38c467d.js +2 -0
- package/styleguide/build/{bundle.ff1f903a.js.LICENSE.txt → bundle.f38c467d.js.LICENSE.txt} +0 -0
- package/styleguide/images/rating.svg +5 -5
- package/styleguide/index.html +2 -2
- package/types/package.d.ts +5 -0
- package/types/src/components/FormFieldPassword/FormFieldPassword.d.ts +91 -0
- package/types/src/components/FormFieldPassword/PasswordMeter.d.ts +9 -0
- package/types/src/components/FormFieldPassword/estimatePassword.d.ts +13 -0
- package/types/src/components/FormFieldPassword/index.d.ts +2 -0
- package/cjs/components/FormFieldPassword/passwordScore.js +0 -131
- package/esm/components/FormFieldPassword/passwordScore.js +0 -122
- package/styleguide/build/bundle.ff1f903a.js +0 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg"
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="56" height="248" viewBox="0 0 51 248">
|
|
2
2
|
<defs><symbol id="star"><path stroke-width="3" d="m25,1 6,17h18l-14,11 5,17-15-10-15,10 5-17-14-11h18z"></path></symbol></defs>
|
|
3
|
-
<use x="0" y="0" fill="none" stroke="#ff9500"
|
|
4
|
-
<use x="0" y="100" fill="#ff9500" stroke="#ff9500"
|
|
5
|
-
<use x="0" y="200" fill="#848484" stroke="#848484"
|
|
6
|
-
</svg>
|
|
3
|
+
<use x="0" y="0" fill="none" stroke="#ff9500" href="#star"></use>
|
|
4
|
+
<use x="0" y="100" fill="#ff9500" stroke="#ff9500" href="#star"></use>
|
|
5
|
+
<use x="0" y="200" fill="#848484" stroke="#848484" href="#star"></use>
|
|
6
|
+
</svg>
|
package/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plesk/ui-library",
|
|
3
|
-
"version": "3.27.
|
|
3
|
+
"version": "3.27.3",
|
|
4
4
|
"description": "Plesk UI Library",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@babel/preset-react": "^7.14.5",
|
|
73
73
|
"@babel/preset-typescript": "^7.15.0",
|
|
74
74
|
"@plesk/eslint-config": "^1.1.0",
|
|
75
|
-
"@plesk/stylelint-config": "^0.0
|
|
75
|
+
"@plesk/stylelint-config": "^1.0.0",
|
|
76
76
|
"@types/buble": "^0.19.2",
|
|
77
77
|
"@types/cheerio": "^0.22.30",
|
|
78
78
|
"@types/doctrine": "^0.0.3",
|
|
@@ -105,9 +105,10 @@
|
|
|
105
105
|
"less": "^4.1.2",
|
|
106
106
|
"less-loader": "^10.2.0",
|
|
107
107
|
"mini-css-extract-plugin": "^2.4.3",
|
|
108
|
-
"postcss": "^8.
|
|
109
|
-
"postcss-
|
|
110
|
-
"postcss-
|
|
108
|
+
"postcss": "^8.4.6",
|
|
109
|
+
"postcss-less": "^6.0.0",
|
|
110
|
+
"postcss-loader": "^6.2.1",
|
|
111
|
+
"postcss-logical": "^5.0.3",
|
|
111
112
|
"prettier": "^2.0.5",
|
|
112
113
|
"puppeteer-core": "^5.2.1",
|
|
113
114
|
"react": "^16.8.6",
|
|
@@ -117,8 +118,12 @@
|
|
|
117
118
|
"rimraf": "^3.0.1",
|
|
118
119
|
"rtlcss": "^3.4.0",
|
|
119
120
|
"style-loader": "^3.3.1",
|
|
120
|
-
"stylelint
|
|
121
|
-
"stylelint-prettier": "^
|
|
121
|
+
"stylelint": "^14.3.0",
|
|
122
|
+
"stylelint-config-prettier": "^9.0.3",
|
|
123
|
+
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
|
|
124
|
+
"stylelint-no-unsupported-browser-features": "^5.0.2",
|
|
125
|
+
"stylelint-prettier": "^2.0.0",
|
|
126
|
+
"stylelint-use-logical-spec": "^3.2.2",
|
|
122
127
|
"svg-mixer": "^2.3.14",
|
|
123
128
|
"terser-webpack-plugin": "^5.2.4",
|
|
124
129
|
"typescript": "^3.7.2",
|
|
@@ -132,7 +137,7 @@
|
|
|
132
137
|
"resolutions": {
|
|
133
138
|
"@babel/types": "^7.15.6",
|
|
134
139
|
"@types/node": "^12.12.8",
|
|
135
|
-
"**/caniuse-lite": "1.0.
|
|
140
|
+
"**/caniuse-lite": "1.0.30001307"
|
|
136
141
|
},
|
|
137
142
|
"browserslist": [
|
|
138
143
|
"last 2 versions",
|