assui 2.1.3 → 2.1.4
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/es/index.d.ts +2 -0
- package/es/index.js +2 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.js +10 -1
- package/package.json +2 -2
package/es/index.d.ts
CHANGED
|
@@ -57,3 +57,5 @@ export { default as LabelCustomizeRangePicker } from './label-customize-range-pi
|
|
|
57
57
|
export type { RichTextEditorProps } from './rich-text-editor';
|
|
58
58
|
export { default as RichTextEditor } from './rich-text-editor';
|
|
59
59
|
export { default as beautifulDnd } from './beautiful-dnd';
|
|
60
|
+
export type { CustomizeRangePickerProps } from './customize-range-picker';
|
|
61
|
+
export { default as CustomizeRangePicker } from './customize-range-picker';
|
package/es/index.js
CHANGED
|
@@ -28,4 +28,5 @@ export { default as LabelConditionInput } from './label-condition-input';
|
|
|
28
28
|
export { default as LabelTreeSelect } from './label-tree-select';
|
|
29
29
|
export { default as LabelCustomizeRangePicker } from './label-customize-range-picker';
|
|
30
30
|
export { default as RichTextEditor } from './rich-text-editor';
|
|
31
|
-
export { default as beautifulDnd } from './beautiful-dnd';
|
|
31
|
+
export { default as beautifulDnd } from './beautiful-dnd';
|
|
32
|
+
export { default as CustomizeRangePicker } from './customize-range-picker';
|
package/lib/index.d.ts
CHANGED
|
@@ -57,3 +57,5 @@ export { default as LabelCustomizeRangePicker } from './label-customize-range-pi
|
|
|
57
57
|
export type { RichTextEditorProps } from './rich-text-editor';
|
|
58
58
|
export { default as RichTextEditor } from './rich-text-editor';
|
|
59
59
|
export { default as beautifulDnd } from './beautiful-dnd';
|
|
60
|
+
export type { CustomizeRangePickerProps } from './customize-range-picker';
|
|
61
|
+
export { default as CustomizeRangePicker } from './customize-range-picker';
|
package/lib/index.js
CHANGED
|
@@ -9,7 +9,7 @@ var __importDefault = this && this.__importDefault || function (mod) {
|
|
|
9
9
|
Object.defineProperty(exports, "__esModule", {
|
|
10
10
|
value: true
|
|
11
11
|
});
|
|
12
|
-
exports.beautifulDnd = exports.RichTextEditor = exports.LabelCustomizeRangePicker = exports.LabelTreeSelect = exports.LabelConditionInput = exports.LabelNumberInput = exports.LabelAutoComplete = exports.LabelDatePicker = exports.LabelRangePicker = exports.LabelTextArea = exports.LabelSelect = exports.LabelInput = exports.TextInput = exports.TextArea = exports.SplitPane = exports.sortableHoc = exports.SingleImgUpload = exports.RcTransitionGroup = exports.RcQRcode = exports.RcEcharts = exports.StepNumberInput = exports.NumberInput = exports.RcMotion = exports.KeepTab = exports.ImgCrop = exports.HighlightWords = exports.HighlightTextarea = exports.CopyToClipboard = exports.ConditionInput = exports.ButtonModal = exports.ButtonDrawer = void 0;
|
|
12
|
+
exports.CustomizeRangePicker = exports.beautifulDnd = exports.RichTextEditor = exports.LabelCustomizeRangePicker = exports.LabelTreeSelect = exports.LabelConditionInput = exports.LabelNumberInput = exports.LabelAutoComplete = exports.LabelDatePicker = exports.LabelRangePicker = exports.LabelTextArea = exports.LabelSelect = exports.LabelInput = exports.TextInput = exports.TextArea = exports.SplitPane = exports.sortableHoc = exports.SingleImgUpload = exports.RcTransitionGroup = exports.RcQRcode = exports.RcEcharts = exports.StepNumberInput = exports.NumberInput = exports.RcMotion = exports.KeepTab = exports.ImgCrop = exports.HighlightWords = exports.HighlightTextarea = exports.CopyToClipboard = exports.ConditionInput = exports.ButtonModal = exports.ButtonDrawer = void 0;
|
|
13
13
|
|
|
14
14
|
var button_drawer_1 = require("./button-drawer");
|
|
15
15
|
|
|
@@ -288,4 +288,13 @@ Object.defineProperty(exports, "beautifulDnd", {
|
|
|
288
288
|
get: function get() {
|
|
289
289
|
return __importDefault(beautiful_dnd_1)["default"];
|
|
290
290
|
}
|
|
291
|
+
});
|
|
292
|
+
|
|
293
|
+
var customize_range_picker_1 = require("./customize-range-picker");
|
|
294
|
+
|
|
295
|
+
Object.defineProperty(exports, "CustomizeRangePicker", {
|
|
296
|
+
enumerable: true,
|
|
297
|
+
get: function get() {
|
|
298
|
+
return __importDefault(customize_range_picker_1)["default"];
|
|
299
|
+
}
|
|
291
300
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assui",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "react ui library",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"node": ">=10.0.0"
|
|
71
71
|
},
|
|
72
72
|
"license": "MIT",
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "270208fe8e8edd0adc05ecba50925a62205d8d98"
|
|
74
74
|
}
|