ydb-components-material 0.1.87 → 0.1.89
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/umi.6ffa9be4.js +1 -0
- package/build/docs/{umi.507b3306.css → umi.fd11a37a.css} +1 -1
- 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 +9 -9
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +2 -2
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +2 -2
- package/dist/BizComps.css +1 -1
- package/dist/BizComps.js +5 -5
- package/dist/BizComps.js.map +1 -1
- package/es/components/file-list/checkPoint.d.ts +3 -0
- package/es/components/file-list/checkPoint.js +157 -0
- package/es/components/file-list/checkPoint.scss +120 -0
- package/es/components/file-list/file.js +224 -0
- package/es/components/file-list/icon/checked.svg +1 -0
- package/es/components/file-list/icon/close.svg +1 -0
- package/es/components/file-list/icon/del.svg +1 -0
- package/es/components/file-list/icon/download.svg +1 -0
- package/es/components/file-list/icon/download_pc.svg +1 -0
- package/es/components/file-list/icon/file.svg +1 -0
- package/es/components/file-list/icon/icon_errorMsg.svg +1 -0
- package/es/components/file-list/icon/icon_warning.svg +1 -0
- package/es/components/file-list/icon/preview.svg +1 -0
- package/es/components/file-list/icon/preview_pc.svg +1 -0
- package/es/components/file-list/icon/upload.svg +1 -0
- package/es/components/file-list/icon/view.svg +1 -0
- package/es/components/file-list/index.d.ts +21 -0
- package/es/components/file-list/index.js +258 -0
- package/es/components/file-list/index.scss +61 -0
- package/es/components/file-list/item.d.ts +27 -0
- package/es/components/file-list/item.js +854 -0
- package/es/components/file-list/item.scss +412 -0
- package/es/components/file-list/seal.d.ts +3 -0
- package/es/components/file-list/seal.js +222 -0
- package/es/components/file-list/sealUtil.js +252 -0
- package/es/components/file-list/sign.d.ts +3 -0
- package/es/components/file-list/sign.js +138 -0
- package/es/components/file-list/signUtil.js +369 -0
- package/es/index.d.ts +2 -0
- package/es/index.js +1 -0
- package/es/style.js +1 -0
- package/lib/components/file-list/checkPoint.d.ts +3 -0
- package/lib/components/file-list/checkPoint.js +162 -0
- package/lib/components/file-list/checkPoint.scss +120 -0
- package/lib/components/file-list/file.js +233 -0
- package/lib/components/file-list/icon/checked.svg +1 -0
- package/lib/components/file-list/icon/close.svg +1 -0
- package/lib/components/file-list/icon/del.svg +1 -0
- package/lib/components/file-list/icon/download.svg +1 -0
- package/lib/components/file-list/icon/download_pc.svg +1 -0
- package/lib/components/file-list/icon/file.svg +1 -0
- package/lib/components/file-list/icon/icon_errorMsg.svg +1 -0
- package/lib/components/file-list/icon/icon_warning.svg +1 -0
- package/lib/components/file-list/icon/preview.svg +1 -0
- package/lib/components/file-list/icon/preview_pc.svg +1 -0
- package/lib/components/file-list/icon/upload.svg +1 -0
- package/lib/components/file-list/icon/view.svg +1 -0
- package/lib/components/file-list/index.d.ts +21 -0
- package/lib/components/file-list/index.js +263 -0
- package/lib/components/file-list/index.scss +61 -0
- package/lib/components/file-list/item.d.ts +27 -0
- package/lib/components/file-list/item.js +860 -0
- package/lib/components/file-list/item.scss +412 -0
- package/lib/components/file-list/seal.d.ts +3 -0
- package/lib/components/file-list/seal.js +228 -0
- package/lib/components/file-list/sealUtil.js +254 -0
- package/lib/components/file-list/sign.d.ts +3 -0
- package/lib/components/file-list/sign.js +144 -0
- package/lib/components/file-list/signUtil.js +371 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -1
- package/lib/style.js +1 -0
- package/lowcode/file-list/meta.ts +231 -0
- package/lowcode_es/_setter/IconSelectSetter.js +1 -1
- package/lowcode_es/file-list/meta.d.ts +22 -0
- package/lowcode_es/file-list/meta.js +213 -0
- package/lowcode_es/meta.js +3 -2
- package/lowcode_lib/_setter/IconSelectSetter.js +1 -1
- package/lowcode_lib/file-list/meta.d.ts +22 -0
- package/lowcode_lib/file-list/meta.js +218 -0
- package/lowcode_lib/meta.js +14 -13
- package/package.json +5 -4
- package/build/docs/umi.5298404d.js +0 -1
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
.file_list {
|
|
2
|
+
.file_level_one {
|
|
3
|
+
background: #ffffff;
|
|
4
|
+
border-radius: 8px;
|
|
5
|
+
padding: 16px 12px;
|
|
6
|
+
margin-bottom: 12px;
|
|
7
|
+
|
|
8
|
+
.tip {
|
|
9
|
+
font-size: 12px;
|
|
10
|
+
color: #999999;
|
|
11
|
+
margin-top: 8px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.required {
|
|
15
|
+
color: red;
|
|
16
|
+
margin-right: 8px;
|
|
17
|
+
margin-left: 2px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.tag {
|
|
21
|
+
border-radius: 4px;
|
|
22
|
+
padding: 0 4px;
|
|
23
|
+
font-size: 12px;
|
|
24
|
+
color: #FFFFFF;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.name_level_one {
|
|
28
|
+
font-size: 15px;
|
|
29
|
+
font-weight: 500;
|
|
30
|
+
color: #333333;
|
|
31
|
+
margin-bottom: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.file_level_one_title {
|
|
35
|
+
padding-bottom: 16px;
|
|
36
|
+
border-bottom: 1px solid #EEEEEE;
|
|
37
|
+
display: flex;
|
|
38
|
+
align-items: center;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.file_level_two {
|
|
42
|
+
margin-top: 16px;
|
|
43
|
+
|
|
44
|
+
.file_level_two_item {
|
|
45
|
+
margin-bottom: 16px;
|
|
46
|
+
|
|
47
|
+
.file_level_two_title {
|
|
48
|
+
display: flex;
|
|
49
|
+
align-items: center;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.name_level_two {
|
|
54
|
+
font-size: 14px;
|
|
55
|
+
font-weight: 500;
|
|
56
|
+
color: #323232;
|
|
57
|
+
margin-bottom: 0;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import './item.scss';
|
|
3
|
+
export interface FileItemProps {
|
|
4
|
+
index: number;
|
|
5
|
+
subIndex: number;
|
|
6
|
+
fileIndex: number;
|
|
7
|
+
file: object;
|
|
8
|
+
fileConfig: object;
|
|
9
|
+
token: string;
|
|
10
|
+
tokenTY: string;
|
|
11
|
+
accessToken: string;
|
|
12
|
+
baseUrl: string;
|
|
13
|
+
env: string;
|
|
14
|
+
isPC?: boolean;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
maxFileSize: number;
|
|
17
|
+
spec: string;
|
|
18
|
+
isInValid: boolean;
|
|
19
|
+
isShowLib: boolean;
|
|
20
|
+
userInfo: object;
|
|
21
|
+
style?: object;
|
|
22
|
+
del: () => void;
|
|
23
|
+
valChange: (value: any, fileIndex: any, index: any, subIndex: any) => void;
|
|
24
|
+
download: (value: any) => void;
|
|
25
|
+
}
|
|
26
|
+
declare const FileItem: React.FC<FileItemProps>;
|
|
27
|
+
export default FileItem;
|