assui 2.0.122 → 2.0.125
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 +4 -0
- package/es/index.js +2 -0
- package/es/label-auto-complete/style/index.less +1 -1
- package/es/label-number-input/index.js +1 -1
- package/lib/index.d.ts +4 -0
- package/lib/index.js +18 -0
- package/lib/label-auto-complete/style/index.less +1 -1
- package/lib/label-number-input/index.js +1 -1
- package/package.json +2 -2
package/es/index.d.ts
CHANGED
|
@@ -46,6 +46,10 @@ export type { LabelDatePickerProps } from './label-date-picker';
|
|
|
46
46
|
export { default as LabelDatePicker } from './label-date-picker';
|
|
47
47
|
export type { LabelAutoCompleteProps } from './label-auto-complete';
|
|
48
48
|
export { default as LabelAutoComplete } from './label-auto-complete';
|
|
49
|
+
export type { LabelNumberInputProps } from './label-number-input';
|
|
50
|
+
export { default as LabelNumberInput } from './label-number-input';
|
|
51
|
+
export type { LabelConditionInputProps } from './label-condition-input';
|
|
52
|
+
export { default as LabelConditionInput } from './label-condition-input';
|
|
49
53
|
export type { LabelTreeSelectProps } from './label-tree-select';
|
|
50
54
|
export { default as LabelTreeSelect } from './label-tree-select';
|
|
51
55
|
export type { LabelCustomizeRangePickerProps } from './label-customize-range-picker';
|
package/es/index.js
CHANGED
|
@@ -23,6 +23,8 @@ export { default as LabelTextArea } from './label-text-area';
|
|
|
23
23
|
export { default as LabelRangePicker } from './label-range-picker';
|
|
24
24
|
export { default as LabelDatePicker } from './label-date-picker';
|
|
25
25
|
export { default as LabelAutoComplete } from './label-auto-complete';
|
|
26
|
+
export { default as LabelNumberInput } from './label-number-input';
|
|
27
|
+
export { default as LabelConditionInput } from './label-condition-input';
|
|
26
28
|
export { default as LabelTreeSelect } from './label-tree-select';
|
|
27
29
|
export { default as LabelCustomizeRangePicker } from './label-customize-range-picker';
|
|
28
30
|
export { default as LabelDescItem } from './label-desc-item';
|
|
@@ -95,7 +95,7 @@ var LabelNumberInput = function LabelNumberInput(props) {
|
|
|
95
95
|
}
|
|
96
96
|
}, /*#__PURE__*/React.createElement("div", {
|
|
97
97
|
className: classNames('label-number-input-field', {
|
|
98
|
-
'label-number-input-focused': focused
|
|
98
|
+
'label-number-input-focused': focused
|
|
99
99
|
})
|
|
100
100
|
}, /*#__PURE__*/React.createElement(NumberInput, __assign({}, omit(props, ['onChange', 'onBlur', 'onFocus', 'className', 'label', 'placeholder']), {
|
|
101
101
|
ref: numberInputRef,
|
package/lib/index.d.ts
CHANGED
|
@@ -46,6 +46,10 @@ export type { LabelDatePickerProps } from './label-date-picker';
|
|
|
46
46
|
export { default as LabelDatePicker } from './label-date-picker';
|
|
47
47
|
export type { LabelAutoCompleteProps } from './label-auto-complete';
|
|
48
48
|
export { default as LabelAutoComplete } from './label-auto-complete';
|
|
49
|
+
export type { LabelNumberInputProps } from './label-number-input';
|
|
50
|
+
export { default as LabelNumberInput } from './label-number-input';
|
|
51
|
+
export type { LabelConditionInputProps } from './label-condition-input';
|
|
52
|
+
export { default as LabelConditionInput } from './label-condition-input';
|
|
49
53
|
export type { LabelTreeSelectProps } from './label-tree-select';
|
|
50
54
|
export { default as LabelTreeSelect } from './label-tree-select';
|
|
51
55
|
export type { LabelCustomizeRangePickerProps } from './label-customize-range-picker';
|
package/lib/index.js
CHANGED
|
@@ -229,6 +229,24 @@ Object.defineProperty(exports, "LabelAutoComplete", {
|
|
|
229
229
|
}
|
|
230
230
|
});
|
|
231
231
|
|
|
232
|
+
var label_number_input_1 = require("./label-number-input");
|
|
233
|
+
|
|
234
|
+
Object.defineProperty(exports, "LabelNumberInput", {
|
|
235
|
+
enumerable: true,
|
|
236
|
+
get: function get() {
|
|
237
|
+
return label_number_input_1["default"];
|
|
238
|
+
}
|
|
239
|
+
});
|
|
240
|
+
|
|
241
|
+
var label_condition_input_1 = require("./label-condition-input");
|
|
242
|
+
|
|
243
|
+
Object.defineProperty(exports, "LabelConditionInput", {
|
|
244
|
+
enumerable: true,
|
|
245
|
+
get: function get() {
|
|
246
|
+
return label_condition_input_1["default"];
|
|
247
|
+
}
|
|
248
|
+
});
|
|
249
|
+
|
|
232
250
|
var label_tree_select_1 = require("./label-tree-select");
|
|
233
251
|
|
|
234
252
|
Object.defineProperty(exports, "LabelTreeSelect", {
|
|
@@ -113,7 +113,7 @@ var LabelNumberInput = function LabelNumberInput(props) {
|
|
|
113
113
|
}
|
|
114
114
|
}, react_1["default"].createElement("div", {
|
|
115
115
|
className: classnames_1["default"]('label-number-input-field', {
|
|
116
|
-
'label-number-input-focused': focused
|
|
116
|
+
'label-number-input-focused': focused
|
|
117
117
|
})
|
|
118
118
|
}, react_1["default"].createElement(number_input_1["default"], __assign({}, omit_1["default"](props, ['onChange', 'onBlur', 'onFocus', 'className', 'label', 'placeholder']), {
|
|
119
119
|
ref: numberInputRef,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "assui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.125",
|
|
4
4
|
"description": "react ui library",
|
|
5
5
|
"author": "jason <usochen@gmail.com>",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"node": ">=10.0.0"
|
|
70
70
|
},
|
|
71
71
|
"license": "MIT",
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "ed185b46af6ac9241f149a2cd4cab67318faec1b"
|
|
73
73
|
}
|