@nickeylin/antd-mobile-pro 2.1.1 → 2.1.3
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/dist/cjs/components/icon/file-excel-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-excel-colored.js +73 -0
- package/dist/cjs/components/icon/file-image-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-image-colored.js +80 -0
- package/dist/cjs/components/icon/file-link-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-link-colored.js +73 -0
- package/dist/cjs/components/icon/file-music-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-music-colored.js +73 -0
- package/dist/cjs/components/icon/file-pdf-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-pdf-colored.js +73 -0
- package/dist/cjs/components/icon/file-ppt-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-ppt-colored.js +73 -0
- package/dist/cjs/components/icon/file-txt-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-txt-colored.js +73 -0
- package/dist/cjs/components/icon/file-unknown-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-unknown-colored.js +73 -0
- package/dist/cjs/components/icon/file-video-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-video-colored.js +73 -0
- package/dist/cjs/components/icon/file-word-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-word-colored.js +73 -0
- package/dist/cjs/components/icon/file-zip-colored.d.ts +5 -0
- package/dist/cjs/components/icon/file-zip-colored.js +73 -0
- package/dist/cjs/components/icon/index.d.ts +11 -0
- package/dist/cjs/components/icon/index.js +69 -0
- package/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/components/index.js +2 -0
- package/dist/cjs/components/pro-form/pro-form-item.js +2 -2
- package/dist/cjs/components/pro-form/pro-form.d.ts +12 -12
- package/dist/cjs/components/pro-form/pro-form.js +6 -3
- package/dist/cjs/components/pro-form/style.less +1 -3
- package/dist/cjs/components/tree-picker/index.d.ts +1 -1
- package/dist/es/components/icon/file-excel-colored.d.ts +5 -0
- package/dist/es/components/icon/file-excel-colored.js +50 -0
- package/dist/es/components/icon/file-image-colored.d.ts +5 -0
- package/dist/es/components/icon/file-image-colored.js +54 -0
- package/dist/es/components/icon/file-link-colored.d.ts +5 -0
- package/dist/es/components/icon/file-link-colored.js +50 -0
- package/dist/es/components/icon/file-music-colored.d.ts +5 -0
- package/dist/es/components/icon/file-music-colored.js +50 -0
- package/dist/es/components/icon/file-pdf-colored.d.ts +5 -0
- package/dist/es/components/icon/file-pdf-colored.js +50 -0
- package/dist/es/components/icon/file-ppt-colored.d.ts +5 -0
- package/dist/es/components/icon/file-ppt-colored.js +50 -0
- package/dist/es/components/icon/file-txt-colored.d.ts +5 -0
- package/dist/es/components/icon/file-txt-colored.js +50 -0
- package/dist/es/components/icon/file-unknown-colored.d.ts +5 -0
- package/dist/es/components/icon/file-unknown-colored.js +50 -0
- package/dist/es/components/icon/file-video-colored.d.ts +5 -0
- package/dist/es/components/icon/file-video-colored.js +50 -0
- package/dist/es/components/icon/file-word-colored.d.ts +5 -0
- package/dist/es/components/icon/file-word-colored.js +50 -0
- package/dist/es/components/icon/file-zip-colored.d.ts +5 -0
- package/dist/es/components/icon/file-zip-colored.js +50 -0
- package/dist/es/components/icon/index.d.ts +11 -0
- package/dist/es/components/icon/index.js +11 -0
- package/dist/es/components/index.d.ts +1 -0
- package/dist/es/components/index.js +1 -0
- package/dist/es/components/pro-form/pro-form-item.js +2 -2
- package/dist/es/components/pro-form/pro-form.d.ts +12 -12
- package/dist/es/components/pro-form/pro-form.js +11 -4
- package/dist/es/components/pro-form/style.less +1 -3
- package/dist/es/components/tree-picker/index.d.ts +1 -1
- package/dist/umd/antd-mobile-pro.min.css +1 -1
- package/dist/umd/antd-mobile-pro.min.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
/** */
|
|
4
|
+
declare const FileUnknownColored: FC<Partial<CustomIconComponentProps>>;
|
|
5
|
+
export default FileUnknownColored;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/components/icon/file-unknown-colored.tsx
|
|
30
|
+
var file_unknown_colored_exports = {};
|
|
31
|
+
__export(file_unknown_colored_exports, {
|
|
32
|
+
default: () => file_unknown_colored_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(file_unknown_colored_exports);
|
|
35
|
+
var import_icons = __toESM(require("@ant-design/icons"));
|
|
36
|
+
var FileUnknownColoredSvg = () => {
|
|
37
|
+
return /* @__PURE__ */ React.createElement(
|
|
38
|
+
"svg",
|
|
39
|
+
{
|
|
40
|
+
width: "1em",
|
|
41
|
+
height: "1em",
|
|
42
|
+
viewBox: "0 0 24 24",
|
|
43
|
+
version: "1.1",
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
46
|
+
},
|
|
47
|
+
/* @__PURE__ */ React.createElement("title", null, "file-unknown-colored"),
|
|
48
|
+
/* @__PURE__ */ React.createElement("g", { id: "图标", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ React.createElement("g", { id: "file-unknown-colored", fillRule: "nonzero" }, /* @__PURE__ */ React.createElement(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M4.38461538,2 L15.4615385,2 L21,7 L21,20.75 C21,21.440375 20.3801077,22 19.6153846,22 L4.38461538,22 C3.61989231,22 3,21.440375 3,20.75 L3,3.25 C3,2.559625 3.61989231,2 4.38461538,2 Z",
|
|
52
|
+
id: "路径",
|
|
53
|
+
fill: "#CCCCCC"
|
|
54
|
+
}
|
|
55
|
+
), /* @__PURE__ */ React.createElement(
|
|
56
|
+
"path",
|
|
57
|
+
{
|
|
58
|
+
d: "M15.4615385,2 L21,7 L16.8461538,7 C16.0814308,7 15.4615385,6.440375 15.4615385,5.75 L15.4615385,2 Z",
|
|
59
|
+
id: "路径",
|
|
60
|
+
fill: "#EAEAEA"
|
|
61
|
+
}
|
|
62
|
+
), /* @__PURE__ */ React.createElement(
|
|
63
|
+
"path",
|
|
64
|
+
{
|
|
65
|
+
d: "M9.23076923,11.75 C9.23076923,11.25 9.34153846,10.85 9.45230769,10.6 C9.56307692,10.35 9.78461538,10.1 10.0615385,9.9 C10.3384615,9.65 10.6153846,9.5 11.0030769,9.4 C11.3353846,9.3 11.6676923,9.25 12.0553846,9.25 C12.8307692,9.25 13.44,9.45 13.9938462,9.85 C14.4923077,10.25 14.7692308,10.75 14.7692308,11.4 C14.7692308,11.7 14.6584615,11.95 14.5476923,12.2 C14.4369231,12.45 14.16,12.75 13.7169231,13.1 C13.2738462,13.45 13.1076923,13.7 12.9415385,13.85 C12.7753846,14 12.72,14.2 12.6092308,14.4 C12.4984615,14.6 12.5538462,14.75 12.5538462,15.25 L11.4461538,15.25 C11.4461538,14.75 11.5015385,14.5 11.5569231,14.25 C11.6123077,14 11.7230769,13.8 11.8892308,13.6 C12.0553846,13.4 12.2215385,13.15 12.6092308,12.8 C12.9969231,12.45 13.2738462,12.2 13.3846154,12.05 C13.4953846,11.9 13.6061538,11.65 13.6061538,11.3 C13.6061538,10.95 13.44,10.7 13.1630769,10.45 C12.8861538,10.2 12.4984615,10.05 12,10.05 C10.8923077,10.05 10.3384615,10.75 10.3384615,11.75 L9.23076923,11.75 L9.23076923,11.75 Z M12.5538462,17.25 L11.4461538,17.25 L11.4461538,16.25 L12.5538462,16.25 L12.5538462,17.25 Z",
|
|
66
|
+
id: "形状",
|
|
67
|
+
fill: "#FFFFFF"
|
|
68
|
+
}
|
|
69
|
+
)))
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
var FileUnknownColored = (props) => /* @__PURE__ */ React.createElement(import_icons.default, { component: FileUnknownColoredSvg, ...props });
|
|
73
|
+
var file_unknown_colored_default = FileUnknownColored;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
/** */
|
|
4
|
+
declare const FileVideoColored: FC<Partial<CustomIconComponentProps>>;
|
|
5
|
+
export default FileVideoColored;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/components/icon/file-video-colored.tsx
|
|
30
|
+
var file_video_colored_exports = {};
|
|
31
|
+
__export(file_video_colored_exports, {
|
|
32
|
+
default: () => file_video_colored_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(file_video_colored_exports);
|
|
35
|
+
var import_icons = __toESM(require("@ant-design/icons"));
|
|
36
|
+
var FileVideoColoredSvg = () => {
|
|
37
|
+
return /* @__PURE__ */ React.createElement(
|
|
38
|
+
"svg",
|
|
39
|
+
{
|
|
40
|
+
width: "1em",
|
|
41
|
+
height: "1em",
|
|
42
|
+
viewBox: "0 0 24 24",
|
|
43
|
+
version: "1.1",
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
46
|
+
},
|
|
47
|
+
/* @__PURE__ */ React.createElement("title", null, "file-video-colored"),
|
|
48
|
+
/* @__PURE__ */ React.createElement("g", { id: "图标", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ React.createElement("g", { id: "file-video-colored", fillRule: "nonzero" }, /* @__PURE__ */ React.createElement(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M4.38461538,2 L15.4615385,2 L21,7 L21,20.75 C21,21.440375 20.3801077,22 19.6153846,22 L4.38461538,22 C3.61989231,22 3,21.440375 3,20.75 L3,3.25 C3,2.559625 3.61989231,2 4.38461538,2 Z",
|
|
52
|
+
id: "路径",
|
|
53
|
+
fill: "#7C8EEE"
|
|
54
|
+
}
|
|
55
|
+
), /* @__PURE__ */ React.createElement(
|
|
56
|
+
"path",
|
|
57
|
+
{
|
|
58
|
+
d: "M16.1170154,13.31425 L9.65764615,16.7905 C9.22606154,17.02525 8.67692308,16.743375 8.67692308,16.2855 L8.67692308,9.333 C8.67692308,8.88675 9.22606154,8.605 9.65764615,8.828 L16.1168769,12.30425 C16.5353077,12.53925 16.5353077,13.091125 16.1168769,13.31425 L16.1170154,13.31425 Z",
|
|
59
|
+
id: "路径",
|
|
60
|
+
fill: "#FFFFFF"
|
|
61
|
+
}
|
|
62
|
+
), /* @__PURE__ */ React.createElement(
|
|
63
|
+
"path",
|
|
64
|
+
{
|
|
65
|
+
d: "M15.4615385,2 L21,7 L16.8461538,7 C16.0814308,7 15.4615385,6.440375 15.4615385,5.75 L15.4615385,2 Z",
|
|
66
|
+
id: "路径",
|
|
67
|
+
fill: "#CAD1F8"
|
|
68
|
+
}
|
|
69
|
+
)))
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
var FileVideoColored = (props) => /* @__PURE__ */ React.createElement(import_icons.default, { component: FileVideoColoredSvg, ...props });
|
|
73
|
+
var file_video_colored_default = FileVideoColored;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
/** */
|
|
4
|
+
declare const FileWordColored: FC<Partial<CustomIconComponentProps>>;
|
|
5
|
+
export default FileWordColored;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/components/icon/file-word-colored.tsx
|
|
30
|
+
var file_word_colored_exports = {};
|
|
31
|
+
__export(file_word_colored_exports, {
|
|
32
|
+
default: () => file_word_colored_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(file_word_colored_exports);
|
|
35
|
+
var import_icons = __toESM(require("@ant-design/icons"));
|
|
36
|
+
var FileWordColoredSvg = () => {
|
|
37
|
+
return /* @__PURE__ */ React.createElement(
|
|
38
|
+
"svg",
|
|
39
|
+
{
|
|
40
|
+
width: "1em",
|
|
41
|
+
height: "1em",
|
|
42
|
+
viewBox: "0 0 24 24",
|
|
43
|
+
version: "1.1",
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
46
|
+
},
|
|
47
|
+
/* @__PURE__ */ React.createElement("title", null, "file-word-colored"),
|
|
48
|
+
/* @__PURE__ */ React.createElement("g", { id: "图标", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ React.createElement("g", { id: "file-word-colored", fillRule: "nonzero" }, /* @__PURE__ */ React.createElement(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M4.38461538,2 L15.4615385,2 L21,7 L21,20.75 C21,21.440375 20.3801077,22 19.6153846,22 L4.38461538,22 C3.61989231,22 3,21.440375 3,20.75 L3,3.25 C3,2.559625 3.61989231,2 4.38461538,2 Z",
|
|
52
|
+
id: "路径",
|
|
53
|
+
fill: "#4876F9"
|
|
54
|
+
}
|
|
55
|
+
), /* @__PURE__ */ React.createElement(
|
|
56
|
+
"polygon",
|
|
57
|
+
{
|
|
58
|
+
id: "路径",
|
|
59
|
+
fill: "#FFFFFF",
|
|
60
|
+
points: "10.1831077 17 11.8512923 11.479125 11.8820308 11.479125 13.5399692 17 14.4712615 17 16.5692308 10.375 15.6276923 10.375 14.0209846 15.933 13.98 15.933 12.3220615 10.375 11.4112615 10.375 9.74307692 15.933 9.70209231 15.933 8.09538462 10.375 7.15384615 10.375 9.25181538 17"
|
|
61
|
+
}
|
|
62
|
+
), /* @__PURE__ */ React.createElement(
|
|
63
|
+
"path",
|
|
64
|
+
{
|
|
65
|
+
d: "M15.4615385,2 L21,7 L16.8461538,7 C16.0814308,7 15.4615385,6.440375 15.4615385,5.75 L15.4615385,2 Z",
|
|
66
|
+
id: "路径",
|
|
67
|
+
fill: "#B5C8FC"
|
|
68
|
+
}
|
|
69
|
+
)))
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
var FileWordColored = (props) => /* @__PURE__ */ React.createElement(import_icons.default, { component: FileWordColoredSvg, ...props });
|
|
73
|
+
var file_word_colored_default = FileWordColored;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
/** */
|
|
4
|
+
declare const FileZipColored: FC<Partial<CustomIconComponentProps>>;
|
|
5
|
+
export default FileZipColored;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/components/icon/file-zip-colored.tsx
|
|
30
|
+
var file_zip_colored_exports = {};
|
|
31
|
+
__export(file_zip_colored_exports, {
|
|
32
|
+
default: () => file_zip_colored_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(file_zip_colored_exports);
|
|
35
|
+
var import_icons = __toESM(require("@ant-design/icons"));
|
|
36
|
+
var FileZipColoredSvg = () => {
|
|
37
|
+
return /* @__PURE__ */ React.createElement(
|
|
38
|
+
"svg",
|
|
39
|
+
{
|
|
40
|
+
width: "1em",
|
|
41
|
+
height: "1em",
|
|
42
|
+
viewBox: "0 0 24 24",
|
|
43
|
+
version: "1.1",
|
|
44
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
45
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
46
|
+
},
|
|
47
|
+
/* @__PURE__ */ React.createElement("title", null, "file-zip-colored"),
|
|
48
|
+
/* @__PURE__ */ React.createElement("g", { id: "图标", stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, /* @__PURE__ */ React.createElement("g", { id: "file-zip-colored", fillRule: "nonzero" }, /* @__PURE__ */ React.createElement(
|
|
49
|
+
"path",
|
|
50
|
+
{
|
|
51
|
+
d: "M4.38461538,2 L15.4615385,2 L21,7 L21,20.75 C21,21.440375 20.3801077,22 19.6153846,22 L4.38461538,22 C3.61989231,22 3,21.440375 3,20.75 L3,3.25 C3,2.559625 3.61989231,2 4.38461538,2 Z",
|
|
52
|
+
id: "路径",
|
|
53
|
+
fill: "#576A95"
|
|
54
|
+
}
|
|
55
|
+
), /* @__PURE__ */ React.createElement(
|
|
56
|
+
"path",
|
|
57
|
+
{
|
|
58
|
+
d: "M13.5230769,14.290125 L13.5230769,17.006125 C13.523006,17.1862924 13.443549,17.3590339 13.3022308,17.48625 C13.160814,17.6136271 12.9691967,17.685125 12.7694308,17.685125 L11.2305692,17.685125 C11.0308292,17.685125 10.8392258,17.6136831 10.6977692,17.486375 C10.5563831,17.3590978 10.4769231,17.1862541 10.4769231,17.006 L10.4769231,14.290125 L13.5230769,14.290125 L13.5230769,14.290125 Z M12.7694308,15.846125 L11.2305692,15.846125 L11.2305692,17.209875 L12.7694308,17.209875 L12.7694308,15.846125 Z M13.4978769,11.574125 L13.4978769,12.937875 L11.9843538,12.937875 L11.9843538,11.574125 L13.4978769,11.574125 L13.4978769,11.574125 Z M12.0031846,2 L12.0031846,3.375 L13.5230769,3.375 L13.5230769,4.75 L12.0030462,4.75 L12.0030462,6.023125 L13.5230769,6.023125 L13.5230769,7.398125 L12.0031846,7.398125 L12.0031846,8.75625 L13.5230769,8.75625 L13.5230769,10.114375 L12.0031846,10.114375 L12.0031846,11.472375 L10.4769231,11.472375 L10.4769231,10.11425 L11.9968154,10.11425 L11.9968154,8.756125 L10.4769231,8.756125 L10.4769231,7.398125 L11.9968154,7.398125 L11.9968154,6.023125 L10.4769231,6.023125 L10.4769231,4.648125 L11.9968154,4.648125 L11.9968154,3.375 L10.4769231,3.375 L10.4769231,2 L12.0031846,2 Z",
|
|
59
|
+
id: "形状",
|
|
60
|
+
fill: "#FFFFFF"
|
|
61
|
+
}
|
|
62
|
+
), /* @__PURE__ */ React.createElement(
|
|
63
|
+
"path",
|
|
64
|
+
{
|
|
65
|
+
d: "M15.4615385,2 L21,7 L16.8461538,7 C16.0814308,7 15.4615385,6.440375 15.4615385,5.75 L15.4615385,2 Z",
|
|
66
|
+
id: "路径",
|
|
67
|
+
fill: "#BBC3D4"
|
|
68
|
+
}
|
|
69
|
+
)))
|
|
70
|
+
);
|
|
71
|
+
};
|
|
72
|
+
var FileZipColored = (props) => /* @__PURE__ */ React.createElement(import_icons.default, { component: FileZipColoredSvg, ...props });
|
|
73
|
+
var file_zip_colored_default = FileZipColored;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { default as FileExcelColored } from './file-excel-colored';
|
|
2
|
+
export { default as FileImageColored } from './file-image-colored';
|
|
3
|
+
export { default as FileLinkColored } from './file-link-colored';
|
|
4
|
+
export { default as FileMusicColored } from './file-music-colored';
|
|
5
|
+
export { default as FilePdfColored } from './file-pdf-colored';
|
|
6
|
+
export { default as FilePptColored } from './file-ppt-colored';
|
|
7
|
+
export { default as FileTxtColored } from './file-txt-colored';
|
|
8
|
+
export { default as FileUnknownColored } from './file-unknown-colored';
|
|
9
|
+
export { default as FileVideoColored } from './file-video-colored';
|
|
10
|
+
export { default as FileWordColored } from './file-word-colored';
|
|
11
|
+
export { default as FileZipColored } from './file-zip-colored';
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
var __create = Object.create;
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
25
|
+
mod
|
|
26
|
+
));
|
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
28
|
+
|
|
29
|
+
// src/components/icon/index.ts
|
|
30
|
+
var icon_exports = {};
|
|
31
|
+
__export(icon_exports, {
|
|
32
|
+
FileExcelColored: () => import_file_excel_colored.default,
|
|
33
|
+
FileImageColored: () => import_file_image_colored.default,
|
|
34
|
+
FileLinkColored: () => import_file_link_colored.default,
|
|
35
|
+
FileMusicColored: () => import_file_music_colored.default,
|
|
36
|
+
FilePdfColored: () => import_file_pdf_colored.default,
|
|
37
|
+
FilePptColored: () => import_file_ppt_colored.default,
|
|
38
|
+
FileTxtColored: () => import_file_txt_colored.default,
|
|
39
|
+
FileUnknownColored: () => import_file_unknown_colored.default,
|
|
40
|
+
FileVideoColored: () => import_file_video_colored.default,
|
|
41
|
+
FileWordColored: () => import_file_word_colored.default,
|
|
42
|
+
FileZipColored: () => import_file_zip_colored.default
|
|
43
|
+
});
|
|
44
|
+
module.exports = __toCommonJS(icon_exports);
|
|
45
|
+
var import_file_excel_colored = __toESM(require("./file-excel-colored"));
|
|
46
|
+
var import_file_image_colored = __toESM(require("./file-image-colored"));
|
|
47
|
+
var import_file_link_colored = __toESM(require("./file-link-colored"));
|
|
48
|
+
var import_file_music_colored = __toESM(require("./file-music-colored"));
|
|
49
|
+
var import_file_pdf_colored = __toESM(require("./file-pdf-colored"));
|
|
50
|
+
var import_file_ppt_colored = __toESM(require("./file-ppt-colored"));
|
|
51
|
+
var import_file_txt_colored = __toESM(require("./file-txt-colored"));
|
|
52
|
+
var import_file_unknown_colored = __toESM(require("./file-unknown-colored"));
|
|
53
|
+
var import_file_video_colored = __toESM(require("./file-video-colored"));
|
|
54
|
+
var import_file_word_colored = __toESM(require("./file-word-colored"));
|
|
55
|
+
var import_file_zip_colored = __toESM(require("./file-zip-colored"));
|
|
56
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
57
|
+
0 && (module.exports = {
|
|
58
|
+
FileExcelColored,
|
|
59
|
+
FileImageColored,
|
|
60
|
+
FileLinkColored,
|
|
61
|
+
FileMusicColored,
|
|
62
|
+
FilePdfColored,
|
|
63
|
+
FilePptColored,
|
|
64
|
+
FileTxtColored,
|
|
65
|
+
FileUnknownColored,
|
|
66
|
+
FileVideoColored,
|
|
67
|
+
FileWordColored,
|
|
68
|
+
FileZipColored
|
|
69
|
+
});
|
|
@@ -12,6 +12,7 @@ export { default as Descriptions, type DescriptionItem, type DescriptionsProps,
|
|
|
12
12
|
export { default as DropdownMenu, type DropdownMenuItem, type DropdownMenuProps, type DropdownMenuRef, } from './dropdown-menu';
|
|
13
13
|
export { default as ErrorBlock, createErrorBlock } from './error-block';
|
|
14
14
|
export { default as GridMenu, type GridMenuItemProps, type GridMenuProps, } from './grid-menu';
|
|
15
|
+
export * from './icon';
|
|
15
16
|
export { default as InputCaptcha, type InputCaptchaAction, type InputCaptchaProps, } from './input-captcha';
|
|
16
17
|
export { default as InputNumber, type InputMoneyProps, type InputNumberProps, type InputNumberRef, } from './input-number';
|
|
17
18
|
export { default as InputPassword, type InputPasswordProps, } from './input-password';
|
|
@@ -81,6 +81,7 @@ var import_descriptions = __toESM(require("./descriptions"));
|
|
|
81
81
|
var import_dropdown_menu = __toESM(require("./dropdown-menu"));
|
|
82
82
|
var import_error_block = __toESM(require("./error-block"));
|
|
83
83
|
var import_grid_menu = __toESM(require("./grid-menu"));
|
|
84
|
+
__reExport(components_exports, require("./icon"), module.exports);
|
|
84
85
|
var import_input_captcha = __toESM(require("./input-captcha"));
|
|
85
86
|
var import_input_number = __toESM(require("./input-number"));
|
|
86
87
|
var import_input_password = __toESM(require("./input-password"));
|
|
@@ -140,5 +141,6 @@ var import_tree_picker = __toESM(require("./tree-picker"));
|
|
|
140
141
|
usePopupPickerMixin,
|
|
141
142
|
...require("./action-sheet"),
|
|
142
143
|
...require("./config-provider"),
|
|
144
|
+
...require("./icon"),
|
|
143
145
|
...require("./pro-form")
|
|
144
146
|
});
|
|
@@ -41,7 +41,7 @@ var import_bem = require("../../utils/bem");
|
|
|
41
41
|
var import_pro_field_context = __toESM(require("./pro-field-context"));
|
|
42
42
|
var import_pro_form_context = __toESM(require("./pro-form-context"));
|
|
43
43
|
var import_utils = require("./utils");
|
|
44
|
-
var formItemBem = (0, import_bem.cn)("
|
|
44
|
+
var formItemBem = (0, import_bem.cn)("form-item");
|
|
45
45
|
var ProFormItem = ({
|
|
46
46
|
convertValue,
|
|
47
47
|
transform,
|
|
@@ -90,7 +90,7 @@ var ProFormItem = ({
|
|
|
90
90
|
);
|
|
91
91
|
};
|
|
92
92
|
var pro_form_item_default = ProFormItem;
|
|
93
|
-
var bem = (0, import_bem.cn)("
|
|
93
|
+
var bem = (0, import_bem.cn)("form-value");
|
|
94
94
|
var ProFormItemValue = ({ value: valueProp, placeholder, readonly }) => {
|
|
95
95
|
const value = readonly ? valueProp || "-" : valueProp;
|
|
96
96
|
return /* @__PURE__ */ React.createElement("span", { className: bem({ placeholder: !value }) }, value || placeholder);
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FormProps } from 'antd-mobile';
|
|
1
|
+
import { Form, FormProps } from 'antd-mobile';
|
|
2
2
|
import { FormProps as RcFormProps } from 'rc-field-form';
|
|
3
3
|
import { ForwardedRef } from 'react';
|
|
4
4
|
import { SubmitterProps } from './default-submitter';
|
|
5
5
|
import { ProFormContextType } from './pro-form-context';
|
|
6
|
+
import ProFormItem, { ProFormItemValue } from './pro-form-item';
|
|
6
7
|
import { ProFormInstance } from './types';
|
|
7
8
|
import { useFormInstace } from './use-form-instance';
|
|
8
9
|
export type ProFormProps<Values extends object = any> = Omit<FormProps, 'onFinish' | 'onValuesChange' | 'onFinishFailed'> & Pick<RcFormProps<Values>, 'form' | 'onValuesChange' | 'onFinishFailed'> & ProFormContextType & {
|
|
@@ -15,15 +16,14 @@ export type ProFormProps<Values extends object = any> = Omit<FormProps, 'onFinis
|
|
|
15
16
|
*/
|
|
16
17
|
submitter?: false | SubmitterProps;
|
|
17
18
|
};
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
var Subscribe: import("react").FC<import("antd-mobile/es/components/form").FormSubscribeProps>;
|
|
27
|
-
var useFormInstance: typeof useFormInstace;
|
|
19
|
+
interface ProFormWithHooks<Values extends object = any> extends React.FC<ProFormProps<Values>> {
|
|
20
|
+
useForm: typeof Form.useForm;
|
|
21
|
+
useWatch: typeof Form.useWatch;
|
|
22
|
+
Header: typeof Form.Header;
|
|
23
|
+
Item: typeof ProFormItem;
|
|
24
|
+
ItemValue: typeof ProFormItemValue;
|
|
25
|
+
Subscribe: typeof Form.Subscribe;
|
|
26
|
+
useFormInstance: typeof useFormInstace;
|
|
28
27
|
}
|
|
29
|
-
|
|
28
|
+
declare const TypedProForm: ProFormWithHooks<any>;
|
|
29
|
+
export default TypedProForm;
|
|
@@ -192,10 +192,13 @@ function ProForm({
|
|
|
192
192
|
)
|
|
193
193
|
);
|
|
194
194
|
}
|
|
195
|
-
|
|
196
|
-
ProForm.
|
|
195
|
+
var { useForm, useWatch } = import_antd_mobile.Form;
|
|
196
|
+
ProForm.useForm = useForm;
|
|
197
|
+
ProForm.useWatch = useWatch;
|
|
197
198
|
ProForm.Header = import_antd_mobile.Form.Header;
|
|
198
199
|
ProForm.Item = import_pro_form_item.default;
|
|
200
|
+
ProForm.ItemValue = import_pro_form_item.ProFormItemValue;
|
|
199
201
|
ProForm.Subscribe = import_antd_mobile.Form.Subscribe;
|
|
200
202
|
ProForm.useFormInstance = import_use_form_instance.useFormInstace;
|
|
201
|
-
var
|
|
203
|
+
var TypedProForm = ProForm;
|
|
204
|
+
var pro_form_default = TypedProForm;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import prompt from './prompt';
|
|
3
3
|
import './tree-picker.less';
|
|
4
|
-
declare const TreePicker: (<T extends import("..").TreeDataNode<object> = import("..").TreeDataNode<object>>(props: Omit<import("..").PopupPickerMixinProps<T | T[]>, "fieldNames"> & Pick<import("..").TreeProps<T>, "search" | "params" | "request" | "
|
|
4
|
+
declare const TreePicker: (<T extends import("..").TreeDataNode<object> = import("..").TreeDataNode<object>>(props: Omit<import("..").PopupPickerMixinProps<T | T[]>, "fieldNames"> & Pick<import("..").TreeProps<T>, "search" | "params" | "request" | "fieldNames" | "rowKey" | "dataSource"> & {
|
|
5
5
|
treeProps?: Omit<import("..").TreeProps<T>, "rowKey"> | undefined;
|
|
6
6
|
multiple?: boolean | undefined;
|
|
7
7
|
} & {
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
/** */
|
|
4
|
+
declare const FileExcelColored: FC<Partial<CustomIconComponentProps>>;
|
|
5
|
+
export default FileExcelColored;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
4
|
+
import Icon from '@ant-design/icons';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
7
|
+
var FileExcelColoredSvg = function FileExcelColoredSvg() {
|
|
8
|
+
return /*#__PURE__*/_jsxs("svg", {
|
|
9
|
+
width: "1em",
|
|
10
|
+
height: "1em",
|
|
11
|
+
viewBox: "0 0 24 24",
|
|
12
|
+
version: "1.1",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
15
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
16
|
+
children: "file-excel-colored"
|
|
17
|
+
}), /*#__PURE__*/_jsx("g", {
|
|
18
|
+
id: "\u56FE\u6807",
|
|
19
|
+
stroke: "none",
|
|
20
|
+
strokeWidth: "1",
|
|
21
|
+
fill: "none",
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
children: /*#__PURE__*/_jsxs("g", {
|
|
24
|
+
id: "file-excel-colored",
|
|
25
|
+
fillRule: "nonzero",
|
|
26
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
27
|
+
d: "M4.38461538,2 L15.4615385,2 L21,7 L21,20.75 C21,21.440375 20.3801077,22 19.6153846,22 L4.38461538,22 C3.61989231,22 3,21.440375 3,20.75 L3,3.25 C3,2.559625 3.61989231,2 4.38461538,2 Z",
|
|
28
|
+
id: "\u8DEF\u5F84",
|
|
29
|
+
fill: "#4CB050"
|
|
30
|
+
}), /*#__PURE__*/_jsx("polygon", {
|
|
31
|
+
id: "\u8DEF\u5F84",
|
|
32
|
+
fill: "#FFFFFF",
|
|
33
|
+
points: "9.58246154 17 12.063 13.78575 14.5564154 17 15.7384615 17 12.6365077 13.103 15.5151231 9.5 14.3330769 9.5 12.063 12.420125 9.804 9.5 8.62236923 9.5 11.4778615 13.103 8.4 17"
|
|
34
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
35
|
+
d: "M15.4615385,2 L21,7 L16.8461538,7 C16.0814308,7 15.4615385,6.440375 15.4615385,5.75 L15.4615385,2 Z",
|
|
36
|
+
id: "\u8DEF\u5F84",
|
|
37
|
+
fill: "#B7DFB9"
|
|
38
|
+
})]
|
|
39
|
+
})
|
|
40
|
+
})]
|
|
41
|
+
});
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
/** */
|
|
45
|
+
var FileExcelColored = function FileExcelColored(props) {
|
|
46
|
+
return /*#__PURE__*/_jsx(Icon, _objectSpread({
|
|
47
|
+
component: FileExcelColoredSvg
|
|
48
|
+
}, props));
|
|
49
|
+
};
|
|
50
|
+
export default FileExcelColored;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { CustomIconComponentProps } from '@ant-design/icons/lib/components/Icon';
|
|
2
|
+
import { FC } from 'react';
|
|
3
|
+
/** */
|
|
4
|
+
declare const FileImageColored: FC<Partial<CustomIconComponentProps>>;
|
|
5
|
+
export default FileImageColored;
|