pixel-react 1.14.74 → 1.14.76
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/lib/components/ConditionalDropdown/ConditionalDropdown.js +3 -4
- package/lib/components/ConditionalDropdown/ConditionalDropdown.js.map +1 -1
- package/lib/components/ConditionalDropdown/types.d.ts +2 -9
- package/lib/index.cjs +3 -4
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +1 -8
- package/lib/node_modules/js-beautify/js/src/css/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
@@ -4928,14 +4928,7 @@ interface ConditionalDropdownProps {
|
|
4928
4928
|
onlyDropdown?: boolean;
|
4929
4929
|
formProps?: Record<string, any>;
|
4930
4930
|
readOnly?: boolean;
|
4931
|
-
|
4932
|
-
* variableDropDown Height
|
4933
|
-
*/
|
4934
|
-
variableDropdownHeight?: string;
|
4935
|
-
/**
|
4936
|
-
* optionsDropdown Height
|
4937
|
-
*/
|
4938
|
-
optionsDropdownHeight?: string;
|
4931
|
+
height?: string;
|
4939
4932
|
}
|
4940
4933
|
|
4941
4934
|
declare const ConditionalDropdown: React$1.ForwardRefExoticComponent<ConditionalDropdownProps & React$1.RefAttributes<HTMLInputElement>>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier.js';
|
2
2
|
import { __require as requireOptions } from './options.js';
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
4
4
|
import { __require as requireInputscanner } from '../core/inputscanner.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier2.js';
|
2
2
|
import { __require as requireOutput } from '../core/output.js';
|
3
3
|
import { __require as requireToken } from '../core/token.js';
|
4
4
|
import { __require as requireAcorn } from './acorn.js';
|
package/package.json
CHANGED