@cuvp1225/antd 0.3.8 → 0.3.10
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/designer.js +2720 -7841
- package/dist/index.js +2361 -7553
- package/lib/cjs/components/index.d.ts +1 -9
- package/lib/cjs/components/index.js +12 -23
- package/lib/esm/components/index.d.ts +1 -9
- package/lib/esm/components/index.js +9 -9
- package/package.json +1 -1
@@ -1,13 +1,5 @@
|
|
1
|
-
export
|
1
|
+
export { Button, Table } from 'antd';
|
2
2
|
export { Box } from './box';
|
3
|
-
export { Button, ButtonGroup } from './button';
|
4
|
-
export { InputNumber } from './input-number';
|
5
|
-
export { Input, TextArea } from './input';
|
6
|
-
export { Modal } from './modal';
|
7
3
|
export * from './page';
|
8
4
|
export * from './placeholder';
|
9
5
|
export * from './section';
|
10
|
-
export { Select } from './select';
|
11
|
-
export { Space } from './space';
|
12
|
-
export { Typography, Title, Paragraph } from './typography';
|
13
|
-
export { Columns, Column } from './columns';
|
@@ -1,36 +1,25 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.Box = exports.Table = exports.Button = void 0;
|
4
4
|
const tslib_1 = require("tslib");
|
5
|
-
|
5
|
+
var antd_1 = require("antd");
|
6
|
+
Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return antd_1.Button; } });
|
7
|
+
Object.defineProperty(exports, "Table", { enumerable: true, get: function () { return antd_1.Table; } });
|
6
8
|
// export { Each, Link, Text, When } from '@cuvp1225/foundation';
|
7
9
|
var box_1 = require("./box");
|
8
10
|
Object.defineProperty(exports, "Box", { enumerable: true, get: function () { return box_1.Box; } });
|
9
|
-
|
10
|
-
Object.defineProperty(exports, "Button", { enumerable: true, get: function () { return button_1.Button; } });
|
11
|
-
Object.defineProperty(exports, "ButtonGroup", { enumerable: true, get: function () { return button_1.ButtonGroup; } });
|
11
|
+
//export { Button, ButtonGroup } from './button';
|
12
12
|
//export * from './formily';
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
Object.defineProperty(exports, "Input", { enumerable: true, get: function () { return input_1.Input; } });
|
17
|
-
Object.defineProperty(exports, "TextArea", { enumerable: true, get: function () { return input_1.TextArea; } });
|
18
|
-
var modal_1 = require("./modal");
|
19
|
-
Object.defineProperty(exports, "Modal", { enumerable: true, get: function () { return modal_1.Modal; } });
|
13
|
+
//export { InputNumber } from './input-number';
|
14
|
+
//export { Input, TextArea } from './input';
|
15
|
+
//export { Modal } from './modal';
|
20
16
|
tslib_1.__exportStar(require("./page"), exports);
|
21
17
|
tslib_1.__exportStar(require("./placeholder"), exports);
|
22
18
|
tslib_1.__exportStar(require("./section"), exports);
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
var typography_1 = require("./typography");
|
28
|
-
Object.defineProperty(exports, "Typography", { enumerable: true, get: function () { return typography_1.Typography; } });
|
29
|
-
Object.defineProperty(exports, "Title", { enumerable: true, get: function () { return typography_1.Title; } });
|
30
|
-
Object.defineProperty(exports, "Paragraph", { enumerable: true, get: function () { return typography_1.Paragraph; } });
|
31
|
-
var columns_1 = require("./columns");
|
32
|
-
Object.defineProperty(exports, "Columns", { enumerable: true, get: function () { return columns_1.Columns; } });
|
33
|
-
Object.defineProperty(exports, "Column", { enumerable: true, get: function () { return columns_1.Column; } });
|
19
|
+
//export { Select } from './select';
|
20
|
+
//export { Space } from './space';
|
21
|
+
//export { Typography, Title, Paragraph } from './typography';
|
22
|
+
//export { Columns, Column } from './columns';
|
34
23
|
//export { MultiColumns } from './multiColumns'
|
35
24
|
//export { Row,Col } from './grid'
|
36
25
|
//export { RowCombination,ColCombination } from './gridCombination'
|
@@ -1,13 +1,5 @@
|
|
1
|
-
export
|
1
|
+
export { Button, Table } from 'antd';
|
2
2
|
export { Box } from './box';
|
3
|
-
export { Button, ButtonGroup } from './button';
|
4
|
-
export { InputNumber } from './input-number';
|
5
|
-
export { Input, TextArea } from './input';
|
6
|
-
export { Modal } from './modal';
|
7
3
|
export * from './page';
|
8
4
|
export * from './placeholder';
|
9
5
|
export * from './section';
|
10
|
-
export { Select } from './select';
|
11
|
-
export { Space } from './space';
|
12
|
-
export { Typography, Title, Paragraph } from './typography';
|
13
|
-
export { Columns, Column } from './columns';
|
@@ -1,18 +1,18 @@
|
|
1
|
-
export
|
1
|
+
export { Button, Table } from 'antd';
|
2
2
|
// export { Each, Link, Text, When } from '@cuvp1225/foundation';
|
3
3
|
export { Box } from './box';
|
4
|
-
export { Button, ButtonGroup } from './button';
|
4
|
+
//export { Button, ButtonGroup } from './button';
|
5
5
|
//export * from './formily';
|
6
|
-
export { InputNumber } from './input-number';
|
7
|
-
export { Input, TextArea } from './input';
|
8
|
-
export { Modal } from './modal';
|
6
|
+
//export { InputNumber } from './input-number';
|
7
|
+
//export { Input, TextArea } from './input';
|
8
|
+
//export { Modal } from './modal';
|
9
9
|
export * from './page';
|
10
10
|
export * from './placeholder';
|
11
11
|
export * from './section';
|
12
|
-
export { Select } from './select';
|
13
|
-
export { Space } from './space';
|
14
|
-
export { Typography, Title, Paragraph } from './typography';
|
15
|
-
export { Columns, Column } from './columns';
|
12
|
+
//export { Select } from './select';
|
13
|
+
//export { Space } from './space';
|
14
|
+
//export { Typography, Title, Paragraph } from './typography';
|
15
|
+
//export { Columns, Column } from './columns';
|
16
16
|
//export { MultiColumns } from './multiColumns'
|
17
17
|
//export { Row,Col } from './grid'
|
18
18
|
//export { RowCombination,ColCombination } from './gridCombination'
|