ydb-components-material 0.1.3 → 0.1.5

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.
Files changed (58) hide show
  1. package/build/docs/404.html +3 -3
  2. package/build/docs/_demos/:uuid +3 -3
  3. package/build/docs/colorful-button.html +3 -3
  4. package/build/docs/colorful-input.html +3 -3
  5. package/build/docs/index.html +3 -3
  6. package/build/docs/{umi.19720799.css → umi.34c733e0.css} +1 -1
  7. package/build/docs/umi.e39b680b.js +1 -0
  8. package/build/docs/~demos/:uuid.html +3 -3
  9. package/build/docs/~demos/colorful-button-demo.html +3 -3
  10. package/build/docs/~demos/colorful-input-demo.html +3 -3
  11. package/build/lowcode/assets-daily.json +11 -11
  12. package/build/lowcode/assets-dev.json +2 -2
  13. package/build/lowcode/assets-prod.json +11 -11
  14. package/build/lowcode/index.js +1 -1
  15. package/build/lowcode/meta.js +1 -1
  16. package/build/lowcode/preview.js +8 -8
  17. package/build/lowcode/render/default/view.css +1 -1
  18. package/build/lowcode/render/default/view.js +1 -1
  19. package/build/lowcode/view.css +1 -1
  20. package/build/lowcode/view.js +1 -1
  21. package/dist/BizComps.css +1 -1
  22. package/dist/BizComps.js +1 -1
  23. package/dist/BizComps.js.map +1 -1
  24. package/es/components/card-title/index.d.ts +10 -0
  25. package/es/components/card-title/index.js +15 -0
  26. package/es/components/card-title/index.scss +23 -0
  27. package/es/components/check-res/index.d.ts +11 -0
  28. package/es/components/check-res/index.js +40 -0
  29. package/es/components/check-res/index.scss +16 -0
  30. package/es/index.d.ts +4 -0
  31. package/es/index.js +2 -0
  32. package/es/style.js +1 -0
  33. package/lib/components/card-title/index.d.ts +10 -0
  34. package/lib/components/card-title/index.js +20 -0
  35. package/lib/components/card-title/index.scss +23 -0
  36. package/lib/components/check-res/index.d.ts +11 -0
  37. package/lib/components/check-res/index.js +46 -0
  38. package/lib/components/check-res/index.scss +16 -0
  39. package/lib/index.d.ts +4 -0
  40. package/lib/index.js +5 -1
  41. package/lib/style.js +1 -0
  42. package/lowcode/card-title/meta.ts +58 -0
  43. package/lowcode/check-loading/meta.ts +1 -1
  44. package/lowcode/check-res/meta.ts +73 -0
  45. package/lowcode_es/card-title/meta.d.ts +22 -0
  46. package/lowcode_es/card-title/meta.js +50 -0
  47. package/lowcode_es/check-loading/meta.js +1 -1
  48. package/lowcode_es/check-res/meta.d.ts +22 -0
  49. package/lowcode_es/check-res/meta.js +64 -0
  50. package/lowcode_es/meta.js +4 -2
  51. package/lowcode_lib/card-title/meta.d.ts +22 -0
  52. package/lowcode_lib/card-title/meta.js +55 -0
  53. package/lowcode_lib/check-loading/meta.js +1 -1
  54. package/lowcode_lib/check-res/meta.d.ts +22 -0
  55. package/lowcode_lib/check-res/meta.js +69 -0
  56. package/lowcode_lib/meta.js +7 -5
  57. package/package.json +3 -3
  58. package/build/docs/umi.02a22198.js +0 -1
@@ -0,0 +1,73 @@
1
+
2
+ import { IPublicTypeComponentMetadata, IPublicTypeSnippet } from '@alilc/lowcode-types';
3
+
4
+ const CheckResMeta: IPublicTypeComponentMetadata = {
5
+ "componentName": "CheckRes",
6
+ "title": "预检结果",
7
+ "docUrl": "",
8
+ "screenshot": "",
9
+ "devMode": "proCode",
10
+ "npm": {
11
+ "package": "ydb-components-material",
12
+ "version": "0.1.4",
13
+ "exportName": "CheckRes",
14
+ "main": "src/index.tsx",
15
+ "destructuring": true,
16
+ "subName": ""
17
+ },
18
+ "configure": {
19
+ "props": [
20
+ {
21
+ "title": {
22
+ "label": {
23
+ "type": "i18n",
24
+ "en-US": "res",
25
+ "zh-CN": "检查结果"
26
+ },
27
+ "tip": "res | 检查结果"
28
+ },
29
+ "name": "res",
30
+ "description": "检查结果",
31
+ "setter": {
32
+ "componentName": "BoolSetter",
33
+ "isRequired": false,
34
+ "initialValue": false
35
+ }
36
+ },
37
+ {
38
+ "title": {
39
+ "label": {
40
+ "type": "i18n",
41
+ "en-US": "name",
42
+ "zh-CN": "检查项目"
43
+ }
44
+ },
45
+ "name": "name",
46
+ "setter": {
47
+ "componentName": "StringSetter",
48
+ "isRequired": true,
49
+ "initialValue": ""
50
+ }
51
+ }
52
+ ],
53
+ "supports": {
54
+ "style": true
55
+ },
56
+ "component": {}
57
+ }
58
+ };
59
+ const snippets: IPublicTypeSnippet[] = [
60
+ {
61
+ "title": "预检结果",
62
+ "screenshot": "",
63
+ "schema": {
64
+ "componentName": "CheckRes",
65
+ "props": {}
66
+ }
67
+ }
68
+ ];
69
+
70
+ export default {
71
+ ...CheckResMeta,
72
+ snippets
73
+ };
@@ -0,0 +1,22 @@
1
+ import { IPublicTypeSnippet } from '@alilc/lowcode-types';
2
+ declare const _default: {
3
+ snippets: IPublicTypeSnippet[];
4
+ componentName: string;
5
+ uri?: string;
6
+ title?: import("@alilc/lowcode-types").IPublicTypeTitleContent;
7
+ icon?: import("@alilc/lowcode-types").IPublicTypeIconType;
8
+ tags?: string[];
9
+ description?: string;
10
+ docUrl?: string;
11
+ screenshot?: string;
12
+ devMode?: "proCode" | "lowCode";
13
+ npm?: import("@alilc/lowcode-types").IPublicTypeNpmInfo;
14
+ props?: import("@alilc/lowcode-types").IPublicTypePropConfig[];
15
+ configure?: import("@alilc/lowcode-types").IPublicTypeFieldConfig[] | import("@alilc/lowcode-types").IPublicTypeConfigure;
16
+ experimental?: import("@alilc/lowcode-types").IPublicTypeAdvanced;
17
+ schema?: import("@alilc/lowcode-types").IPublicTypeComponentSchema;
18
+ group?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
19
+ category?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
20
+ priority?: number;
21
+ };
22
+ export default _default;
@@ -0,0 +1,50 @@
1
+ import _extends from "@babel/runtime/helpers/extends";
2
+ var CardTitleMeta = {
3
+ "componentName": "CardTitle",
4
+ "title": "CardTitle",
5
+ "docUrl": "",
6
+ "screenshot": "",
7
+ "devMode": "proCode",
8
+ "npm": {
9
+ "package": "ydb-components-material",
10
+ "version": "0.1.3",
11
+ "exportName": "CardTitle",
12
+ "main": "src/index.tsx",
13
+ "destructuring": true,
14
+ "subName": ""
15
+ },
16
+ "configure": {
17
+ "props": [{
18
+ "title": {
19
+ "label": {
20
+ "type": "i18n",
21
+ "en-US": "text",
22
+ "zh-CN": "标题"
23
+ },
24
+ "tip": "text | 标题"
25
+ },
26
+ "name": "text",
27
+ "description": "标题",
28
+ "setter": {
29
+ "componentName": "StringSetter",
30
+ "isRequired": true,
31
+ "initialValue": ""
32
+ }
33
+ }],
34
+ "supports": {
35
+ "style": true
36
+ },
37
+ "component": {}
38
+ }
39
+ };
40
+ var snippets = [{
41
+ "title": "卡片标题",
42
+ "screenshot": "",
43
+ "schema": {
44
+ "componentName": "CardTitle",
45
+ "props": {}
46
+ }
47
+ }];
48
+ export default _extends({}, CardTitleMeta, {
49
+ snippets: snippets
50
+ });
@@ -22,7 +22,7 @@ var CheckLoadingMeta = {
22
22
  }
23
23
  };
24
24
  var snippets = [{
25
- "title": "CheckLoading",
25
+ "title": "预检loading",
26
26
  "screenshot": "",
27
27
  "schema": {
28
28
  "componentName": "CheckLoading",
@@ -0,0 +1,22 @@
1
+ import { IPublicTypeSnippet } from '@alilc/lowcode-types';
2
+ declare const _default: {
3
+ snippets: IPublicTypeSnippet[];
4
+ componentName: string;
5
+ uri?: string;
6
+ title?: import("@alilc/lowcode-types").IPublicTypeTitleContent;
7
+ icon?: import("@alilc/lowcode-types").IPublicTypeIconType;
8
+ tags?: string[];
9
+ description?: string;
10
+ docUrl?: string;
11
+ screenshot?: string;
12
+ devMode?: "proCode" | "lowCode";
13
+ npm?: import("@alilc/lowcode-types").IPublicTypeNpmInfo;
14
+ props?: import("@alilc/lowcode-types").IPublicTypePropConfig[];
15
+ configure?: import("@alilc/lowcode-types").IPublicTypeFieldConfig[] | import("@alilc/lowcode-types").IPublicTypeConfigure;
16
+ experimental?: import("@alilc/lowcode-types").IPublicTypeAdvanced;
17
+ schema?: import("@alilc/lowcode-types").IPublicTypeComponentSchema;
18
+ group?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
19
+ category?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
20
+ priority?: number;
21
+ };
22
+ export default _default;
@@ -0,0 +1,64 @@
1
+ import _extends from "@babel/runtime/helpers/extends";
2
+ var CheckResMeta = {
3
+ "componentName": "CheckRes",
4
+ "title": "预检结果",
5
+ "docUrl": "",
6
+ "screenshot": "",
7
+ "devMode": "proCode",
8
+ "npm": {
9
+ "package": "ydb-components-material",
10
+ "version": "0.1.4",
11
+ "exportName": "CheckRes",
12
+ "main": "src/index.tsx",
13
+ "destructuring": true,
14
+ "subName": ""
15
+ },
16
+ "configure": {
17
+ "props": [{
18
+ "title": {
19
+ "label": {
20
+ "type": "i18n",
21
+ "en-US": "res",
22
+ "zh-CN": "检查结果"
23
+ },
24
+ "tip": "res | 检查结果"
25
+ },
26
+ "name": "res",
27
+ "description": "检查结果",
28
+ "setter": {
29
+ "componentName": "BoolSetter",
30
+ "isRequired": false,
31
+ "initialValue": false
32
+ }
33
+ }, {
34
+ "title": {
35
+ "label": {
36
+ "type": "i18n",
37
+ "en-US": "name",
38
+ "zh-CN": "检查项目"
39
+ }
40
+ },
41
+ "name": "name",
42
+ "setter": {
43
+ "componentName": "StringSetter",
44
+ "isRequired": true,
45
+ "initialValue": ""
46
+ }
47
+ }],
48
+ "supports": {
49
+ "style": true
50
+ },
51
+ "component": {}
52
+ }
53
+ };
54
+ var snippets = [{
55
+ "title": "预检结果",
56
+ "screenshot": "",
57
+ "schema": {
58
+ "componentName": "CheckRes",
59
+ "props": {}
60
+ }
61
+ }];
62
+ export default _extends({}, CheckResMeta, {
63
+ snippets: snippets
64
+ });
@@ -1,5 +1,7 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
+ import CardTitleMeta from "./card-title/meta";
2
3
  import CheckLoadingMeta from "./check-loading/meta";
4
+ import CheckResMeta from "./check-res/meta";
3
5
  import ColorfulButtonMeta from "./colorful-button/meta";
4
6
  import ColorfulInputMeta from "./colorful-input/meta";
5
7
  var componentCategorySort = {};
@@ -73,7 +75,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
73
75
  packageName = 'ydb-components-material';
74
76
  }
75
77
  if (version === void 0) {
76
- version = '0.1.3';
78
+ version = '0.1.5';
77
79
  }
78
80
  if (basicLibraryVersion === void 0) {
79
81
  basicLibraryVersion = {
@@ -100,7 +102,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
100
102
  }
101
103
  return meta;
102
104
  }
103
- var componentMetas = [CheckLoadingMeta, ColorfulButtonMeta, ColorfulInputMeta];
105
+ var componentMetas = [CardTitleMeta, CheckLoadingMeta, CheckResMeta, ColorfulButtonMeta, ColorfulInputMeta];
104
106
  var components = [];
105
107
  var npmInfo = {};
106
108
  componentMetas.forEach(function (meta) {
@@ -0,0 +1,22 @@
1
+ import { IPublicTypeSnippet } from '@alilc/lowcode-types';
2
+ declare const _default: {
3
+ snippets: IPublicTypeSnippet[];
4
+ componentName: string;
5
+ uri?: string;
6
+ title?: import("@alilc/lowcode-types").IPublicTypeTitleContent;
7
+ icon?: import("@alilc/lowcode-types").IPublicTypeIconType;
8
+ tags?: string[];
9
+ description?: string;
10
+ docUrl?: string;
11
+ screenshot?: string;
12
+ devMode?: "proCode" | "lowCode";
13
+ npm?: import("@alilc/lowcode-types").IPublicTypeNpmInfo;
14
+ props?: import("@alilc/lowcode-types").IPublicTypePropConfig[];
15
+ configure?: import("@alilc/lowcode-types").IPublicTypeFieldConfig[] | import("@alilc/lowcode-types").IPublicTypeConfigure;
16
+ experimental?: import("@alilc/lowcode-types").IPublicTypeAdvanced;
17
+ schema?: import("@alilc/lowcode-types").IPublicTypeComponentSchema;
18
+ group?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
19
+ category?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
20
+ priority?: number;
21
+ };
22
+ export default _default;
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ exports.__esModule = true;
5
+ exports["default"] = void 0;
6
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
7
+ var CardTitleMeta = {
8
+ "componentName": "CardTitle",
9
+ "title": "CardTitle",
10
+ "docUrl": "",
11
+ "screenshot": "",
12
+ "devMode": "proCode",
13
+ "npm": {
14
+ "package": "ydb-components-material",
15
+ "version": "0.1.3",
16
+ "exportName": "CardTitle",
17
+ "main": "src/index.tsx",
18
+ "destructuring": true,
19
+ "subName": ""
20
+ },
21
+ "configure": {
22
+ "props": [{
23
+ "title": {
24
+ "label": {
25
+ "type": "i18n",
26
+ "en-US": "text",
27
+ "zh-CN": "标题"
28
+ },
29
+ "tip": "text | 标题"
30
+ },
31
+ "name": "text",
32
+ "description": "标题",
33
+ "setter": {
34
+ "componentName": "StringSetter",
35
+ "isRequired": true,
36
+ "initialValue": ""
37
+ }
38
+ }],
39
+ "supports": {
40
+ "style": true
41
+ },
42
+ "component": {}
43
+ }
44
+ };
45
+ var snippets = [{
46
+ "title": "卡片标题",
47
+ "screenshot": "",
48
+ "schema": {
49
+ "componentName": "CardTitle",
50
+ "props": {}
51
+ }
52
+ }];
53
+ var _default = exports["default"] = (0, _extends2["default"])({}, CardTitleMeta, {
54
+ snippets: snippets
55
+ });
@@ -27,7 +27,7 @@ var CheckLoadingMeta = {
27
27
  }
28
28
  };
29
29
  var snippets = [{
30
- "title": "CheckLoading",
30
+ "title": "预检loading",
31
31
  "screenshot": "",
32
32
  "schema": {
33
33
  "componentName": "CheckLoading",
@@ -0,0 +1,22 @@
1
+ import { IPublicTypeSnippet } from '@alilc/lowcode-types';
2
+ declare const _default: {
3
+ snippets: IPublicTypeSnippet[];
4
+ componentName: string;
5
+ uri?: string;
6
+ title?: import("@alilc/lowcode-types").IPublicTypeTitleContent;
7
+ icon?: import("@alilc/lowcode-types").IPublicTypeIconType;
8
+ tags?: string[];
9
+ description?: string;
10
+ docUrl?: string;
11
+ screenshot?: string;
12
+ devMode?: "proCode" | "lowCode";
13
+ npm?: import("@alilc/lowcode-types").IPublicTypeNpmInfo;
14
+ props?: import("@alilc/lowcode-types").IPublicTypePropConfig[];
15
+ configure?: import("@alilc/lowcode-types").IPublicTypeFieldConfig[] | import("@alilc/lowcode-types").IPublicTypeConfigure;
16
+ experimental?: import("@alilc/lowcode-types").IPublicTypeAdvanced;
17
+ schema?: import("@alilc/lowcode-types").IPublicTypeComponentSchema;
18
+ group?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
19
+ category?: string | import("@alilc/lowcode-types").IPublicTypeI18nData;
20
+ priority?: number;
21
+ };
22
+ export default _default;
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ exports.__esModule = true;
5
+ exports["default"] = void 0;
6
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
7
+ var CheckResMeta = {
8
+ "componentName": "CheckRes",
9
+ "title": "预检结果",
10
+ "docUrl": "",
11
+ "screenshot": "",
12
+ "devMode": "proCode",
13
+ "npm": {
14
+ "package": "ydb-components-material",
15
+ "version": "0.1.4",
16
+ "exportName": "CheckRes",
17
+ "main": "src/index.tsx",
18
+ "destructuring": true,
19
+ "subName": ""
20
+ },
21
+ "configure": {
22
+ "props": [{
23
+ "title": {
24
+ "label": {
25
+ "type": "i18n",
26
+ "en-US": "res",
27
+ "zh-CN": "检查结果"
28
+ },
29
+ "tip": "res | 检查结果"
30
+ },
31
+ "name": "res",
32
+ "description": "检查结果",
33
+ "setter": {
34
+ "componentName": "BoolSetter",
35
+ "isRequired": false,
36
+ "initialValue": false
37
+ }
38
+ }, {
39
+ "title": {
40
+ "label": {
41
+ "type": "i18n",
42
+ "en-US": "name",
43
+ "zh-CN": "检查项目"
44
+ }
45
+ },
46
+ "name": "name",
47
+ "setter": {
48
+ "componentName": "StringSetter",
49
+ "isRequired": true,
50
+ "initialValue": ""
51
+ }
52
+ }],
53
+ "supports": {
54
+ "style": true
55
+ },
56
+ "component": {}
57
+ }
58
+ };
59
+ var snippets = [{
60
+ "title": "预检结果",
61
+ "screenshot": "",
62
+ "schema": {
63
+ "componentName": "CheckRes",
64
+ "props": {}
65
+ }
66
+ }];
67
+ var _default = exports["default"] = (0, _extends2["default"])({}, CheckResMeta, {
68
+ snippets: snippets
69
+ });
@@ -4,9 +4,11 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  exports.__esModule = true;
5
5
  exports.components = exports.componentList = void 0;
6
6
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
7
- var _meta = _interopRequireDefault(require("./check-loading/meta"));
8
- var _meta2 = _interopRequireDefault(require("./colorful-button/meta"));
9
- var _meta3 = _interopRequireDefault(require("./colorful-input/meta"));
7
+ var _meta = _interopRequireDefault(require("./card-title/meta"));
8
+ var _meta2 = _interopRequireDefault(require("./check-loading/meta"));
9
+ var _meta3 = _interopRequireDefault(require("./check-res/meta"));
10
+ var _meta4 = _interopRequireDefault(require("./colorful-button/meta"));
11
+ var _meta5 = _interopRequireDefault(require("./colorful-input/meta"));
10
12
  var componentCategorySort = {};
11
13
  ["基础元素", "布局容器类", "表格类", "表单详情类", "帮助类", "对话框类", "业务类", "通用", "引导", "信息输入", "信息展示", "信息反馈"].reverse().forEach(function (item, index) {
12
14
  componentCategorySort[item] = ++index;
@@ -78,7 +80,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
78
80
  packageName = 'ydb-components-material';
79
81
  }
80
82
  if (version === void 0) {
81
- version = '0.1.3';
83
+ version = '0.1.5';
82
84
  }
83
85
  if (basicLibraryVersion === void 0) {
84
86
  basicLibraryVersion = {
@@ -105,7 +107,7 @@ function fillRealVersion(meta, packageName, version, basicLibraryVersion) {
105
107
  }
106
108
  return meta;
107
109
  }
108
- var componentMetas = [_meta["default"], _meta2["default"], _meta3["default"]];
110
+ var componentMetas = [_meta["default"], _meta2["default"], _meta3["default"], _meta4["default"], _meta5["default"]];
109
111
  var components = exports.components = [];
110
112
  var npmInfo = {};
111
113
  componentMetas.forEach(function (meta) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ydb-components-material",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "ydb-components-material",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -94,10 +94,10 @@
94
94
  },
95
95
  "componentConfig": {
96
96
  "isComponentLibrary": true,
97
- "materialSchema": "https://unpkg.com/ydb-components-material@0.1.3/build/lowcode/assets-prod.json"
97
+ "materialSchema": "https://unpkg.com/ydb-components-material@0.1.5/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.3/build/index.html"
102
+ "homepage": "https://unpkg.com/ydb-components-material@0.1.5/build/index.html"
103
103
  }