@jsenv/navi 0.3.0 → 0.3.1
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/jsenv_navi.js
CHANGED
|
@@ -20593,6 +20593,8 @@ const InputTextualBasic = forwardRef((props, ref) => {
|
|
|
20593
20593
|
...rest,
|
|
20594
20594
|
ref: innerRef,
|
|
20595
20595
|
className: appearance === "navi" ? "navi_input" : undefined,
|
|
20596
|
+
width: width,
|
|
20597
|
+
height: height,
|
|
20596
20598
|
type: type,
|
|
20597
20599
|
"data-value": uiState,
|
|
20598
20600
|
value: innerValue,
|
package/package.json
CHANGED
|
@@ -192,6 +192,8 @@ const InputTextualBasic = forwardRef((props, ref) => {
|
|
|
192
192
|
{...rest}
|
|
193
193
|
ref={innerRef}
|
|
194
194
|
className={appearance === "navi" ? "navi_input" : undefined}
|
|
195
|
+
width={width}
|
|
196
|
+
height={height}
|
|
195
197
|
type={type}
|
|
196
198
|
data-value={uiState}
|
|
197
199
|
value={innerValue}
|