s-material-react 2.2.41 → 2.2.43
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 +5 -5
- package/css/common/card.scss +16 -6
- package/css/pages/goodsDetail.scss +146 -36
- package/css/pages/order-goodsItem.scss +11 -6
- package/css/pages/orderList.scss +8 -5
- package/css/pages/paymentMode.scss +39 -13
- package/css/pages/placeOrderGroup.scss +128 -26
- package/dist/index.js +1 -1
- package/package.json +54 -54
package/package.json
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "s-material-react",
|
|
3
|
-
"version": "2.2.
|
|
4
|
-
"description": "'组件库'",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.scss",
|
|
8
|
-
"*.css"
|
|
9
|
-
],
|
|
10
|
-
"files": [
|
|
11
|
-
"dist",
|
|
12
|
-
"css",
|
|
13
|
-
"iconfont"
|
|
14
|
-
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"start": "concurrently npm:start:*",
|
|
17
|
-
"start:ts": "rollup -c -w",
|
|
18
|
-
"start:css": "npx nodemon --config ./nodemon.json",
|
|
19
|
-
"cp-css": "
|
|
20
|
-
"build": "npm run cp-css && rm -rf dist/ && prettier --write src/ && rollup -c",
|
|
21
|
-
"push": "git add . && git commit -m",
|
|
22
|
-
"postpush": "git push",
|
|
23
|
-
"prepublishOnly": "echo 我们准备发布npm包",
|
|
24
|
-
"publishOnly": "npm run build && npm run push",
|
|
25
|
-
"postpublishOnly": "npm version patch && npm publish && git push"
|
|
26
|
-
},
|
|
27
|
-
"author": "",
|
|
28
|
-
"license": "ISC",
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@brushes/simulate-component": "^0.3.5",
|
|
31
|
-
"classnames": "^2.3.2"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@brushes/mobile-form": "^0.1.0",
|
|
35
|
-
"@brushes/request": "^2.0.3",
|
|
36
|
-
"@brushes/shared-utils": "^0.0.96",
|
|
37
|
-
"@brushes/utils": "^1.0.0",
|
|
38
|
-
"@rollup/plugin-terser": "^0.4.0",
|
|
39
|
-
"@types/node": ">=18.15.7",
|
|
40
|
-
"@types/react": "^18.0.28",
|
|
41
|
-
"concurrently": "^7.6.0",
|
|
42
|
-
"dayjs": "^1.11.7",
|
|
43
|
-
"lodash-es": "^4.17.21",
|
|
44
|
-
"nodemon": "^2.0.22",
|
|
45
|
-
"prettier": "^2.8.7",
|
|
46
|
-
"qj-b2c-api": "*",
|
|
47
|
-
"qj-b2b-api": "^0.1.0",
|
|
48
|
-
"qj-b2c-store": "*",
|
|
49
|
-
"react": "^18.2.0",
|
|
50
|
-
"rollup-plugin-typescript2": "^0.34.1",
|
|
51
|
-
"tsconfig": "*",
|
|
52
|
-
"typescript": ">=5.0.2"
|
|
53
|
-
}
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "s-material-react",
|
|
3
|
+
"version": "2.2.43",
|
|
4
|
+
"description": "'组件库'",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.scss",
|
|
8
|
+
"*.css"
|
|
9
|
+
],
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"css",
|
|
13
|
+
"iconfont"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"start": "concurrently npm:start:*",
|
|
17
|
+
"start:ts": "rollup -c -w",
|
|
18
|
+
"start:css": "npx nodemon --config ./nodemon.json",
|
|
19
|
+
"cp-css": "rm -rf css/ && mkdir -p ./css && cp -R src/scss/* ./css",
|
|
20
|
+
"build": "npm run cp-css && rm -rf dist/ && prettier --write src/ && rollup -c",
|
|
21
|
+
"push": "git add . && git commit -m",
|
|
22
|
+
"postpush": "git push",
|
|
23
|
+
"prepublishOnly": "echo 我们准备发布npm包",
|
|
24
|
+
"publishOnly": "npm run build && npm run push",
|
|
25
|
+
"postpublishOnly": "npm version patch && npm publish && git push"
|
|
26
|
+
},
|
|
27
|
+
"author": "",
|
|
28
|
+
"license": "ISC",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@brushes/simulate-component": "^0.3.5",
|
|
31
|
+
"classnames": "^2.3.2"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@brushes/mobile-form": "^0.1.0",
|
|
35
|
+
"@brushes/request": "^2.0.3",
|
|
36
|
+
"@brushes/shared-utils": "^0.0.96",
|
|
37
|
+
"@brushes/utils": "^1.0.0",
|
|
38
|
+
"@rollup/plugin-terser": "^0.4.0",
|
|
39
|
+
"@types/node": ">=18.15.7",
|
|
40
|
+
"@types/react": "^18.0.28",
|
|
41
|
+
"concurrently": "^7.6.0",
|
|
42
|
+
"dayjs": "^1.11.7",
|
|
43
|
+
"lodash-es": "^4.17.21",
|
|
44
|
+
"nodemon": "^2.0.22",
|
|
45
|
+
"prettier": "^2.8.7",
|
|
46
|
+
"qj-b2c-api": "*",
|
|
47
|
+
"qj-b2b-api": "^0.1.0",
|
|
48
|
+
"qj-b2c-store": "*",
|
|
49
|
+
"react": "^18.2.0",
|
|
50
|
+
"rollup-plugin-typescript2": "^0.34.1",
|
|
51
|
+
"tsconfig": "*",
|
|
52
|
+
"typescript": ">=5.0.2"
|
|
53
|
+
}
|
|
54
|
+
}
|