ydb-components-material 0.1.5 → 0.1.7
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/build/docs/404.html +3 -3
- package/build/docs/_demos/:uuid +3 -3
- package/build/docs/colorful-button.html +3 -3
- package/build/docs/colorful-input.html +3 -3
- package/build/docs/index.html +3 -3
- package/build/docs/static/icon_error.a47c88b2.svg +1 -0
- package/build/docs/static/icon_success.67acd079.svg +1 -0
- package/build/docs/static/icon_warning.8ebf6588.svg +1 -0
- package/build/docs/{umi.34c733e0.css → umi.bd8d71be.css} +1 -1
- package/build/docs/umi.c6d22b15.js +1 -0
- package/build/docs/~demos/:uuid.html +3 -3
- package/build/docs/~demos/colorful-button-demo.html +3 -3
- package/build/docs/~demos/colorful-input-demo.html +3 -3
- package/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/preview.js +8 -8
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +1 -1
- package/dist/BizComps.css +1 -1
- package/dist/BizComps.js +1 -1
- package/dist/BizComps.js.map +1 -1
- package/es/components/card-title/index.js +1 -1
- package/es/components/card-title/index.scss +1 -1
- package/es/components/check-loading/index.js +1 -1
- package/es/components/check-loading/index.scss +1 -1
- package/es/components/check-res/index.d.ts +1 -0
- package/es/components/check-res/index.js +7 -2
- package/es/components/check-res/index.scss +2 -1
- package/es/components/tips/icon/icon_error.svg +1 -0
- package/es/components/tips/icon/icon_success.svg +1 -0
- package/es/components/tips/icon/icon_warning.svg +1 -0
- package/es/components/tips/index.d.ts +11 -0
- package/es/components/tips/index.js +35 -0
- package/es/components/tips/index.scss +17 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +1 -0
- package/lib/components/card-title/index.js +1 -1
- package/lib/components/card-title/index.scss +1 -1
- package/lib/components/check-loading/index.js +1 -1
- package/lib/components/check-loading/index.scss +1 -1
- package/lib/components/check-res/index.d.ts +1 -0
- package/lib/components/check-res/index.js +7 -2
- package/lib/components/check-res/index.scss +2 -1
- package/lib/components/tips/icon/icon_error.svg +1 -0
- package/lib/components/tips/icon/icon_success.svg +1 -0
- package/lib/components/tips/icon/icon_warning.svg +1 -0
- package/lib/components/tips/index.d.ts +11 -0
- package/lib/components/tips/index.js +41 -0
- package/lib/components/tips/index.scss +17 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -1
- package/lowcode/check-res/meta.ts +15 -0
- package/lowcode/tips/meta.ts +103 -0
- package/lowcode_es/check-res/meta.js +14 -0
- package/lowcode_es/meta.js +3 -2
- package/lowcode_es/tips/meta.d.ts +22 -0
- package/lowcode_es/tips/meta.js +86 -0
- package/lowcode_lib/check-res/meta.js +14 -0
- package/lowcode_lib/meta.js +3 -2
- package/lowcode_lib/tips/meta.d.ts +22 -0
- package/lowcode_lib/tips/meta.js +91 -0
- package/package.json +9 -9
- package/build/docs/umi.e39b680b.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ydb-components-material",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "ydb-components-material",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -60,9 +60,9 @@
|
|
|
60
60
|
"**/*.{css,scss,less,acss}": "f2elint exec stylelint"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
+
"moment": "latest",
|
|
63
64
|
"react": "^16.x",
|
|
64
|
-
"react-dom": "^16.x"
|
|
65
|
-
"moment": "latest"
|
|
65
|
+
"react-dom": "^16.x"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@alib/build-scripts": "^0.1.3",
|
|
@@ -70,21 +70,21 @@
|
|
|
70
70
|
"@alifd/theme-2": "^0.4.0",
|
|
71
71
|
"@types/react": "^16.14.24",
|
|
72
72
|
"@types/react-dom": "^16.9.4",
|
|
73
|
+
"@umijs/plugin-sass": "^1.1.1",
|
|
73
74
|
"build-plugin-component": "^1.12.1",
|
|
74
75
|
"build-plugin-fusion": "^0.1.0",
|
|
75
76
|
"cross-env": "^7.0.3",
|
|
76
|
-
"@umijs/plugin-sass": "^1.1.1",
|
|
77
77
|
"dumi": "^1.1.49",
|
|
78
78
|
"dumi-theme-default": "^1.1.24",
|
|
79
79
|
"f2elint": "^1.2.0"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
|
-
"moment": "^2.29.4",
|
|
83
82
|
"@alifd/next": "^1.25.27",
|
|
83
|
+
"@babel/runtime": "^7.0.0",
|
|
84
|
+
"moment": "latest",
|
|
84
85
|
"prop-types": "^15.5.8",
|
|
85
86
|
"react": "^16.x",
|
|
86
|
-
"react-dom": "^16.x"
|
|
87
|
-
"@babel/runtime": "^7.0.0"
|
|
87
|
+
"react-dom": "^16.x"
|
|
88
88
|
},
|
|
89
89
|
"acceptDependencies": {
|
|
90
90
|
"webpack": "^4.46.x"
|
|
@@ -94,10 +94,10 @@
|
|
|
94
94
|
},
|
|
95
95
|
"componentConfig": {
|
|
96
96
|
"isComponentLibrary": true,
|
|
97
|
-
"materialSchema": "https://unpkg.com/ydb-components-material@0.1.
|
|
97
|
+
"materialSchema": "https://unpkg.com/ydb-components-material@0.1.7/build/lowcode/assets-prod.json"
|
|
98
98
|
},
|
|
99
99
|
"lcMeta": {
|
|
100
100
|
"type": "component"
|
|
101
101
|
},
|
|
102
|
-
"homepage": "https://unpkg.com/ydb-components-material@0.1.
|
|
102
|
+
"homepage": "https://unpkg.com/ydb-components-material@0.1.7/build/index.html"
|
|
103
103
|
}
|