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
package/build/docs/404.html
CHANGED
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
</style>
|
|
17
17
|
<link
|
|
18
18
|
rel="stylesheet"
|
|
19
|
-
href="/ydb-components-material@0.1.
|
|
19
|
+
href="/ydb-components-material@0.1.89/build/docs/umi.fd11a37a.css"
|
|
20
20
|
/>
|
|
21
21
|
<script>
|
|
22
|
-
window.routerBase = "/ydb-components-material@0.1.
|
|
22
|
+
window.routerBase = "/ydb-components-material@0.1.89/build/docs/";
|
|
23
23
|
</script>
|
|
24
24
|
<script>
|
|
25
25
|
//! umi version: 3.5.43
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
<body>
|
|
43
43
|
<div id="root"></div>
|
|
44
44
|
|
|
45
|
-
<script src="/ydb-components-material@0.1.
|
|
45
|
+
<script src="/ydb-components-material@0.1.89/build/docs/umi.6ffa9be4.js"></script>
|
|
46
46
|
</body>
|
|
47
47
|
</html>
|
package/build/docs/_demos/:uuid
CHANGED
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
</style>
|
|
17
17
|
<link
|
|
18
18
|
rel="stylesheet"
|
|
19
|
-
href="/ydb-components-material@0.1.
|
|
19
|
+
href="/ydb-components-material@0.1.89/build/docs/umi.fd11a37a.css"
|
|
20
20
|
/>
|
|
21
21
|
<script>
|
|
22
|
-
window.routerBase = "/ydb-components-material@0.1.
|
|
22
|
+
window.routerBase = "/ydb-components-material@0.1.89/build/docs/";
|
|
23
23
|
</script>
|
|
24
24
|
<script>
|
|
25
25
|
//! umi version: 3.5.43
|
|
@@ -42,6 +42,6 @@
|
|
|
42
42
|
<body>
|
|
43
43
|
<div id="root"></div>
|
|
44
44
|
|
|
45
|
-
<script src="/ydb-components-material@0.1.
|
|
45
|
+
<script src="/ydb-components-material@0.1.89/build/docs/umi.6ffa9be4.js"></script>
|
|
46
46
|
</body>
|
|
47
47
|
</html>
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
</style>
|
|
17
17
|
<link
|
|
18
18
|
rel="stylesheet"
|
|
19
|
-
href="/ydb-components-material@0.1.
|
|
19
|
+
href="/ydb-components-material@0.1.89/build/docs/umi.fd11a37a.css"
|
|
20
20
|
/>
|
|
21
21
|
<script>
|
|
22
|
-
window.routerBase = "/ydb-components-material@0.1.
|
|
22
|
+
window.routerBase = "/ydb-components-material@0.1.89/build/docs/";
|
|
23
23
|
</script>
|
|
24
24
|
<script>
|
|
25
25
|
//! umi version: 3.5.43
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
<body>
|
|
44
44
|
<div id="root"></div>
|
|
45
45
|
|
|
46
|
-
<script src="/ydb-components-material@0.1.
|
|
46
|
+
<script src="/ydb-components-material@0.1.89/build/docs/umi.6ffa9be4.js"></script>
|
|
47
47
|
</body>
|
|
48
48
|
</html>
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
</style>
|
|
17
17
|
<link
|
|
18
18
|
rel="stylesheet"
|
|
19
|
-
href="/ydb-components-material@0.1.
|
|
19
|
+
href="/ydb-components-material@0.1.89/build/docs/umi.fd11a37a.css"
|
|
20
20
|
/>
|
|
21
21
|
<script>
|
|
22
|
-
window.routerBase = "/ydb-components-material@0.1.
|
|
22
|
+
window.routerBase = "/ydb-components-material@0.1.89/build/docs/";
|
|
23
23
|
</script>
|
|
24
24
|
<script>
|
|
25
25
|
//! umi version: 3.5.43
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
<body>
|
|
44
44
|
<div id="root"></div>
|
|
45
45
|
|
|
46
|
-
<script src="/ydb-components-material@0.1.
|
|
46
|
+
<script src="/ydb-components-material@0.1.89/build/docs/umi.6ffa9be4.js"></script>
|
|
47
47
|
</body>
|
|
48
48
|
</html>
|
package/build/docs/index.html
CHANGED
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
</style>
|
|
17
17
|
<link
|
|
18
18
|
rel="stylesheet"
|
|
19
|
-
href="/ydb-components-material@0.1.
|
|
19
|
+
href="/ydb-components-material@0.1.89/build/docs/umi.fd11a37a.css"
|
|
20
20
|
/>
|
|
21
21
|
<script>
|
|
22
|
-
window.routerBase = "/ydb-components-material@0.1.
|
|
22
|
+
window.routerBase = "/ydb-components-material@0.1.89/build/docs/";
|
|
23
23
|
</script>
|
|
24
24
|
<script>
|
|
25
25
|
//! umi version: 3.5.43
|
|
@@ -43,6 +43,6 @@
|
|
|
43
43
|
<body>
|
|
44
44
|
<div id="root"></div>
|
|
45
45
|
|
|
46
|
-
<script src="/ydb-components-material@0.1.
|
|
46
|
+
<script src="/ydb-components-material@0.1.89/build/docs/umi.6ffa9be4.js"></script>
|
|
47
47
|
</body>
|
|
48
48
|
</html>
|