revdev-components 0.66.0 → 0.68.0
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/index.js +3 -3
- package/build/paragraph/index.d.ts +1 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -42,8 +42,8 @@ var ContentHeader2 = function (_a) {
|
|
|
42
42
|
var s$u = {"root":"index-module_root__Fq-q1"};
|
|
43
43
|
|
|
44
44
|
var Paragraph = function (_a) {
|
|
45
|
-
var children = _a.children;
|
|
46
|
-
return React.createElement("p", { className: s$u.root }, children);
|
|
45
|
+
var children = _a.children, className = _a.className;
|
|
46
|
+
return React.createElement("p", { className: classNames(s$u.root, className) }, children);
|
|
47
47
|
};
|
|
48
48
|
|
|
49
49
|
var s$t = {"root":"index-module_root__VIFF-"};
|
|
@@ -5220,7 +5220,7 @@ function OptionsAutocomplete(_a) {
|
|
|
5220
5220
|
}, []);
|
|
5221
5221
|
useDebounceEffect(300, function () {
|
|
5222
5222
|
if (text) {
|
|
5223
|
-
requestAction(text,
|
|
5223
|
+
requestAction(text, values);
|
|
5224
5224
|
}
|
|
5225
5225
|
else {
|
|
5226
5226
|
setOptions([]);
|