easy-soft-utility 2.4.10 → 2.4.13
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/License.txt +21 -0
- package/es/utils/constants.d.ts +1 -1
- package/package.json +5 -3
package/License.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 luzhitao
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above footerDescription notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/es/utils/constants.d.ts
CHANGED
|
@@ -131,7 +131,7 @@ export namespace notificationTypeCollection {
|
|
|
131
131
|
}
|
|
132
132
|
export namespace messageTypeCollection { }
|
|
133
133
|
/**
|
|
134
|
-
* A
|
|
134
|
+
* A Simple Transparent Image
|
|
135
135
|
*/
|
|
136
136
|
export const transparentImage: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABLCAYAAACGGCK3AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA0SURBVHhe7cExAQAAAMKg9U9tDQ8gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIA3NXV7AAHfw7zWAAAAAElFTkSuQmCC";
|
|
137
137
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-soft-utility",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "easy-soft-utility",
|
|
6
6
|
"keywords": [
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"clean-file": "npx rimraf ./node_modules",
|
|
32
32
|
"dev": "rollup --config rollup.config.skipCompression.js --bundleConfigAsCjs --watch --watch.onBundleEnd=\"npm run tsc:build\"",
|
|
33
33
|
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
|
|
34
|
-
"lint-staged": "lint-staged",
|
|
34
|
+
"lint-staged": "npx lint-staged",
|
|
35
35
|
"lint-staged:js": "npx eslint --ext .js,.jsx,.ts,.tsx ",
|
|
36
36
|
"lint:fix": "npx eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style",
|
|
37
37
|
"lint:js": "npx eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
|
|
@@ -102,6 +102,7 @@
|
|
|
102
102
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
103
103
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
104
104
|
"husky": "^8.0.3",
|
|
105
|
+
"lint-staged": "^13.1.0",
|
|
105
106
|
"postcss": "^8.4.21",
|
|
106
107
|
"postcss-less": "^6.0.0",
|
|
107
108
|
"postcss-pxtorem": "^6.0.0",
|
|
@@ -123,5 +124,6 @@
|
|
|
123
124
|
"stylelint-config-standard": "^29.0.0",
|
|
124
125
|
"stylelint-declaration-block-no-ignored-properties": "^2.6.0",
|
|
125
126
|
"webpack": "^5.75.0"
|
|
126
|
-
}
|
|
127
|
+
},
|
|
128
|
+
"gitHead": "4647da6e46899e6c86543dba3144beb72b220aae"
|
|
127
129
|
}
|