@plasmicpkgs/react-aria 0.0.54 → 0.0.55
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/.tsbuildinfo +1 -1
- package/dist/react-aria.esm.js +38 -38
- package/dist/react-aria.esm.js.map +1 -1
- package/dist/react-aria.js +38 -38
- package/dist/react-aria.js.map +1 -1
- package/dist/registerSliderThumb.d.ts +1 -1
- package/dist/variant-utils.d.ts +1 -1
- package/package.json +2 -2
- package/skinny/registerButton.cjs.js +2 -2
- package/skinny/registerButton.cjs.js.map +1 -1
- package/skinny/registerButton.esm.js +2 -2
- package/skinny/registerButton.esm.js.map +1 -1
- package/skinny/registerCheckbox.cjs.js +2 -2
- package/skinny/registerCheckbox.cjs.js.map +1 -1
- package/skinny/registerCheckbox.esm.js +2 -2
- package/skinny/registerCheckbox.esm.js.map +1 -1
- package/skinny/registerCheckboxGroup.cjs.js +2 -2
- package/skinny/registerCheckboxGroup.cjs.js.map +1 -1
- package/skinny/registerCheckboxGroup.esm.js +2 -2
- package/skinny/registerCheckboxGroup.esm.js.map +1 -1
- package/skinny/registerInput.cjs.js +7 -7
- package/skinny/registerInput.cjs.js.map +1 -1
- package/skinny/registerInput.esm.js +7 -7
- package/skinny/registerInput.esm.js.map +1 -1
- package/skinny/registerListBoxItem.cjs.js +2 -2
- package/skinny/registerListBoxItem.cjs.js.map +1 -1
- package/skinny/registerListBoxItem.esm.js +2 -2
- package/skinny/registerListBoxItem.esm.js.map +1 -1
- package/skinny/registerRadio.cjs.js +2 -2
- package/skinny/registerRadio.cjs.js.map +1 -1
- package/skinny/registerRadio.esm.js +2 -2
- package/skinny/registerRadio.esm.js.map +1 -1
- package/skinny/registerRadioGroup.cjs.js +2 -2
- package/skinny/registerRadioGroup.cjs.js.map +1 -1
- package/skinny/registerRadioGroup.esm.js +2 -2
- package/skinny/registerRadioGroup.esm.js.map +1 -1
- package/skinny/registerSlider.cjs.js +2 -2
- package/skinny/registerSlider.cjs.js.map +1 -1
- package/skinny/registerSlider.esm.js +2 -2
- package/skinny/registerSlider.esm.js.map +1 -1
- package/skinny/registerSliderOutput.cjs.js +2 -2
- package/skinny/registerSliderOutput.cjs.js.map +1 -1
- package/skinny/registerSliderOutput.esm.js +2 -2
- package/skinny/registerSliderOutput.esm.js.map +1 -1
- package/skinny/registerSliderThumb.cjs.js +3 -3
- package/skinny/registerSliderThumb.cjs.js.map +1 -1
- package/skinny/registerSliderThumb.d.ts +1 -1
- package/skinny/registerSliderThumb.esm.js +3 -3
- package/skinny/registerSliderThumb.esm.js.map +1 -1
- package/skinny/registerSliderTrack.cjs.js +2 -2
- package/skinny/registerSliderTrack.cjs.js.map +1 -1
- package/skinny/registerSliderTrack.esm.js +2 -2
- package/skinny/registerSliderTrack.esm.js.map +1 -1
- package/skinny/registerSwitch.cjs.js +2 -2
- package/skinny/registerSwitch.cjs.js.map +1 -1
- package/skinny/registerSwitch.esm.js +2 -2
- package/skinny/registerSwitch.esm.js.map +1 -1
- package/skinny/registerTextArea.cjs.js +6 -6
- package/skinny/registerTextArea.cjs.js.map +1 -1
- package/skinny/registerTextArea.esm.js +6 -6
- package/skinny/registerTextArea.esm.js.map +1 -1
- package/skinny/registerTextField.cjs.js +2 -2
- package/skinny/registerTextField.cjs.js.map +1 -1
- package/skinny/registerTextField.esm.js +2 -2
- package/skinny/registerTextField.esm.js.map +1 -1
- package/skinny/variant-utils-23360776.esm.js.map +1 -1
- package/skinny/variant-utils-db5b9590.cjs.js.map +1 -1
- package/skinny/variant-utils.d.ts +1 -1
package/dist/react-aria.esm.js
CHANGED
|
@@ -512,7 +512,7 @@ const BUTTON_VARIANTS = [
|
|
|
512
512
|
];
|
|
513
513
|
const { variants: variants$d, withObservedValues: withObservedValues$b } = pickAriaComponentVariants(BUTTON_VARIANTS);
|
|
514
514
|
function BaseButton(props) {
|
|
515
|
-
const _a = props, { submitsForm, resetsForm, children,
|
|
515
|
+
const _a = props, { submitsForm, resetsForm, children, plasmicUpdateVariant } = _a, rest = __objRest$o(_a, ["submitsForm", "resetsForm", "children", "plasmicUpdateVariant"]);
|
|
516
516
|
const type = submitsForm ? "submit" : resetsForm ? "reset" : "button";
|
|
517
517
|
return /* @__PURE__ */ React.createElement(Button, __spreadValues$q({ type }, rest), ({ isHovered, isPressed, isFocused, isFocusVisible, isDisabled }) => withObservedValues$b(
|
|
518
518
|
children,
|
|
@@ -523,7 +523,7 @@ function BaseButton(props) {
|
|
|
523
523
|
focusVisible: isFocusVisible,
|
|
524
524
|
disabled: isDisabled
|
|
525
525
|
},
|
|
526
|
-
|
|
526
|
+
plasmicUpdateVariant
|
|
527
527
|
));
|
|
528
528
|
}
|
|
529
529
|
const BUTTON_COMPONENT_NAME = makeComponentName("button");
|
|
@@ -639,7 +639,7 @@ const CHECKBOX_VARIANTS = [
|
|
|
639
639
|
];
|
|
640
640
|
const { variants: variants$c, withObservedValues: withObservedValues$a } = pickAriaComponentVariants(CHECKBOX_VARIANTS);
|
|
641
641
|
function BaseCheckbox(props) {
|
|
642
|
-
const _a = props, { children,
|
|
642
|
+
const _a = props, { children, plasmicUpdateVariant, setControlContextData } = _a, rest = __objRest$n(_a, ["children", "plasmicUpdateVariant", "setControlContextData"]);
|
|
643
643
|
const contextProps = React.useContext(PlasmicCheckboxGroupContext);
|
|
644
644
|
setControlContextData == null ? void 0 : setControlContextData({
|
|
645
645
|
parent: contextProps
|
|
@@ -665,7 +665,7 @@ function BaseCheckbox(props) {
|
|
|
665
665
|
selected: isSelected,
|
|
666
666
|
readonly: isReadOnly
|
|
667
667
|
},
|
|
668
|
-
|
|
668
|
+
plasmicUpdateVariant
|
|
669
669
|
)));
|
|
670
670
|
}
|
|
671
671
|
const makeDefaultCheckboxChildren = ({
|
|
@@ -1115,14 +1115,14 @@ const { variants: variants$b, withObservedValues: withObservedValues$9 } = pickA
|
|
|
1115
1115
|
CHECKBOX_GROUP_VARIANTS
|
|
1116
1116
|
);
|
|
1117
1117
|
function BaseCheckboxGroup(props) {
|
|
1118
|
-
const _a = props, { children,
|
|
1118
|
+
const _a = props, { children, plasmicUpdateVariant } = _a, rest = __objRest$k(_a, ["children", "plasmicUpdateVariant"]);
|
|
1119
1119
|
return /* @__PURE__ */ React.createElement(PlasmicCheckboxGroupContext.Provider, { value: rest }, /* @__PURE__ */ React.createElement(CheckboxGroup, __spreadValues$l({}, rest), ({ isDisabled, isReadOnly }) => withObservedValues$9(
|
|
1120
1120
|
children,
|
|
1121
1121
|
{
|
|
1122
1122
|
disabled: isDisabled,
|
|
1123
1123
|
readonly: isReadOnly
|
|
1124
1124
|
},
|
|
1125
|
-
|
|
1125
|
+
plasmicUpdateVariant
|
|
1126
1126
|
)));
|
|
1127
1127
|
}
|
|
1128
1128
|
const componentName = makeComponentName("checkboxGroup");
|
|
@@ -1354,12 +1354,12 @@ const inputHelpers$1 = {
|
|
|
1354
1354
|
function BaseInput(props) {
|
|
1355
1355
|
var _b;
|
|
1356
1356
|
const _a = props, {
|
|
1357
|
-
|
|
1357
|
+
plasmicUpdateVariant,
|
|
1358
1358
|
setControlContextData,
|
|
1359
1359
|
disabled,
|
|
1360
1360
|
autoComplete
|
|
1361
1361
|
} = _a, rest = __objRest$j(_a, [
|
|
1362
|
-
"
|
|
1362
|
+
"plasmicUpdateVariant",
|
|
1363
1363
|
"setControlContextData",
|
|
1364
1364
|
"disabled",
|
|
1365
1365
|
"autoComplete"
|
|
@@ -1377,26 +1377,26 @@ function BaseInput(props) {
|
|
|
1377
1377
|
disabled: (_b = textFieldContext == null ? void 0 : textFieldContext.isDisabled) != null ? _b : disabled
|
|
1378
1378
|
});
|
|
1379
1379
|
useEffect(() => {
|
|
1380
|
-
|
|
1380
|
+
plasmicUpdateVariant == null ? void 0 : plasmicUpdateVariant({
|
|
1381
1381
|
disabled: mergedProps.disabled
|
|
1382
1382
|
});
|
|
1383
|
-
}, [mergedProps.disabled,
|
|
1383
|
+
}, [mergedProps.disabled, plasmicUpdateVariant]);
|
|
1384
1384
|
return /* @__PURE__ */ React.createElement(
|
|
1385
1385
|
Input,
|
|
1386
1386
|
__spreadValues$k({
|
|
1387
1387
|
autoComplete: resolveAutoComplete(autoComplete),
|
|
1388
1388
|
onHoverChange: (isHovered) => {
|
|
1389
|
-
|
|
1389
|
+
plasmicUpdateVariant == null ? void 0 : plasmicUpdateVariant({
|
|
1390
1390
|
hovered: isHovered
|
|
1391
1391
|
});
|
|
1392
1392
|
},
|
|
1393
1393
|
onFocus: () => {
|
|
1394
|
-
|
|
1394
|
+
plasmicUpdateVariant == null ? void 0 : plasmicUpdateVariant({
|
|
1395
1395
|
focused: true
|
|
1396
1396
|
});
|
|
1397
1397
|
},
|
|
1398
1398
|
onBlur: () => {
|
|
1399
|
-
|
|
1399
|
+
plasmicUpdateVariant == null ? void 0 : plasmicUpdateVariant({
|
|
1400
1400
|
focused: false
|
|
1401
1401
|
});
|
|
1402
1402
|
}
|
|
@@ -1509,7 +1509,7 @@ const { variants: variants$9, withObservedValues: withObservedValues$8 } = pickA
|
|
|
1509
1509
|
LIST_BOX_ITEM_VARIANTS
|
|
1510
1510
|
);
|
|
1511
1511
|
function BaseListBoxItem(props) {
|
|
1512
|
-
const _a = props, { children, setControlContextData,
|
|
1512
|
+
const _a = props, { children, setControlContextData, plasmicUpdateVariant, id } = _a, rest = __objRest$i(_a, ["children", "setControlContextData", "plasmicUpdateVariant", "id"]);
|
|
1513
1513
|
const listboxContext = React.useContext(PlasmicListBoxContext);
|
|
1514
1514
|
const isStandalone = !listboxContext;
|
|
1515
1515
|
const [registeredId, setRegisteredId] = useState();
|
|
@@ -1545,7 +1545,7 @@ function BaseListBoxItem(props) {
|
|
|
1545
1545
|
selected: isSelected,
|
|
1546
1546
|
disabled: isDisabled
|
|
1547
1547
|
},
|
|
1548
|
-
|
|
1548
|
+
plasmicUpdateVariant
|
|
1549
1549
|
));
|
|
1550
1550
|
if (isStandalone) {
|
|
1551
1551
|
return /* @__PURE__ */ React.createElement(ListBox, { selectionMode: "single" }, listboxItem);
|
|
@@ -2782,7 +2782,7 @@ const RADIO_VARIANTS = [
|
|
|
2782
2782
|
];
|
|
2783
2783
|
const { variants: variants$8, withObservedValues: withObservedValues$7 } = pickAriaComponentVariants(RADIO_VARIANTS);
|
|
2784
2784
|
function BaseRadio(props) {
|
|
2785
|
-
const _a = props, { children, setControlContextData,
|
|
2785
|
+
const _a = props, { children, setControlContextData, plasmicUpdateVariant } = _a, rest = __objRest$9(_a, ["children", "setControlContextData", "plasmicUpdateVariant"]);
|
|
2786
2786
|
const contextProps = React.useContext(PlasmicRadioGroupContext);
|
|
2787
2787
|
const isStandalone = !contextProps;
|
|
2788
2788
|
setControlContextData == null ? void 0 : setControlContextData({
|
|
@@ -2807,7 +2807,7 @@ function BaseRadio(props) {
|
|
|
2807
2807
|
disabled: isDisabled,
|
|
2808
2808
|
readonly: isReadOnly
|
|
2809
2809
|
},
|
|
2810
|
-
|
|
2810
|
+
plasmicUpdateVariant
|
|
2811
2811
|
));
|
|
2812
2812
|
if (isStandalone) {
|
|
2813
2813
|
return /* @__PURE__ */ React.createElement(RadioGroup, null, radio);
|
|
@@ -2911,14 +2911,14 @@ var __objRest$8 = (source, exclude) => {
|
|
|
2911
2911
|
const RADIO_GROUP_VARIANTS = ["disabled", "readonly"];
|
|
2912
2912
|
const { variants: variants$7, withObservedValues: withObservedValues$6 } = pickAriaComponentVariants(RADIO_GROUP_VARIANTS);
|
|
2913
2913
|
function BaseRadioGroup(props) {
|
|
2914
|
-
const _a = props, { children,
|
|
2914
|
+
const _a = props, { children, plasmicUpdateVariant } = _a, rest = __objRest$8(_a, ["children", "plasmicUpdateVariant"]);
|
|
2915
2915
|
return /* @__PURE__ */ React.createElement(PlasmicRadioGroupContext.Provider, { value: props }, /* @__PURE__ */ React.createElement(RadioGroup, __spreadValues$9({}, rest), ({ isDisabled, isReadOnly }) => withObservedValues$6(
|
|
2916
2916
|
children,
|
|
2917
2917
|
{
|
|
2918
2918
|
disabled: isDisabled,
|
|
2919
2919
|
readonly: isReadOnly
|
|
2920
2920
|
},
|
|
2921
|
-
|
|
2921
|
+
plasmicUpdateVariant
|
|
2922
2922
|
)));
|
|
2923
2923
|
}
|
|
2924
2924
|
const RADIO_GROUP_COMPONENT_NAME = makeComponentName("radioGroup");
|
|
@@ -3339,13 +3339,13 @@ const { variants: variants$6, withObservedValues: withObservedValues$5 } = pickA
|
|
|
3339
3339
|
SLIDER_OUTPUT_VARIANTS
|
|
3340
3340
|
);
|
|
3341
3341
|
function BaseSliderOutput(props) {
|
|
3342
|
-
const _a = props, {
|
|
3342
|
+
const _a = props, { plasmicUpdateVariant, children } = _a, rest = __objRest$7(_a, ["plasmicUpdateVariant", "children"]);
|
|
3343
3343
|
return /* @__PURE__ */ React.createElement(SliderOutput, __spreadValues$7({}, rest), ({ isDisabled }) => withObservedValues$5(
|
|
3344
3344
|
children,
|
|
3345
3345
|
{
|
|
3346
3346
|
disabled: isDisabled
|
|
3347
3347
|
},
|
|
3348
|
-
|
|
3348
|
+
plasmicUpdateVariant
|
|
3349
3349
|
));
|
|
3350
3350
|
}
|
|
3351
3351
|
const SLIDER_OUTPUT_COMPONENT_NAME = makeComponentName("sliderOutput");
|
|
@@ -3432,11 +3432,11 @@ function BaseSliderThumb(_a) {
|
|
|
3432
3432
|
var _b = _a, {
|
|
3433
3433
|
children,
|
|
3434
3434
|
advanced,
|
|
3435
|
-
|
|
3435
|
+
plasmicUpdateVariant
|
|
3436
3436
|
} = _b, rest = __objRest$6(_b, [
|
|
3437
3437
|
"children",
|
|
3438
3438
|
"advanced",
|
|
3439
|
-
"
|
|
3439
|
+
"plasmicUpdateVariant"
|
|
3440
3440
|
]);
|
|
3441
3441
|
const context = React.useContext(PlasmicSliderContext);
|
|
3442
3442
|
const mergedProps = mergeProps(context, rest);
|
|
@@ -3449,7 +3449,7 @@ function BaseSliderThumb(_a) {
|
|
|
3449
3449
|
focusVisible: isFocusVisible,
|
|
3450
3450
|
disabled: isDisabled
|
|
3451
3451
|
},
|
|
3452
|
-
|
|
3452
|
+
plasmicUpdateVariant
|
|
3453
3453
|
));
|
|
3454
3454
|
return /* @__PURE__ */ React.createElement(
|
|
3455
3455
|
ErrorBoundary,
|
|
@@ -3555,7 +3555,7 @@ function BaseSliderTrack(props) {
|
|
|
3555
3555
|
const context = React.useContext(PlasmicSliderContext);
|
|
3556
3556
|
const isStandalone = !context;
|
|
3557
3557
|
const mergedProps = mergeProps(context, props);
|
|
3558
|
-
const _a = mergedProps, { children, progressBar,
|
|
3558
|
+
const _a = mergedProps, { children, progressBar, plasmicUpdateVariant } = _a, rest = __objRest$5(_a, ["children", "progressBar", "plasmicUpdateVariant"]);
|
|
3559
3559
|
const isMultiValue = isMultiValueGuard(mergedProps.value);
|
|
3560
3560
|
const { minIndex, maxIndex } = useMemo(() => {
|
|
3561
3561
|
if (!context || !Array.isArray(context.value) || context.value.length <= 1) {
|
|
@@ -3604,7 +3604,7 @@ function BaseSliderTrack(props) {
|
|
|
3604
3604
|
{
|
|
3605
3605
|
hovered: isHovered
|
|
3606
3606
|
},
|
|
3607
|
-
|
|
3607
|
+
plasmicUpdateVariant
|
|
3608
3608
|
)));
|
|
3609
3609
|
if (isStandalone) {
|
|
3610
3610
|
return /* @__PURE__ */ React.createElement(Slider, { style: { height: "100%", width: "100%" } }, track);
|
|
@@ -3718,7 +3718,7 @@ const RANGE_SLIDER_COMPONENT_NAME = makeComponentName("range-slider");
|
|
|
3718
3718
|
const SLIDER_VARIANTS = ["disabled"];
|
|
3719
3719
|
const { variants: variants$3, withObservedValues: withObservedValues$2 } = pickAriaComponentVariants(SLIDER_VARIANTS);
|
|
3720
3720
|
function BaseSlider(props) {
|
|
3721
|
-
const _a = props, { children,
|
|
3721
|
+
const _a = props, { children, plasmicUpdateVariant } = _a, rest = __objRest$4(_a, ["children", "plasmicUpdateVariant"]);
|
|
3722
3722
|
return /* @__PURE__ */ React.createElement(
|
|
3723
3723
|
PlasmicSliderContext.Provider,
|
|
3724
3724
|
{
|
|
@@ -3733,7 +3733,7 @@ function BaseSlider(props) {
|
|
|
3733
3733
|
{
|
|
3734
3734
|
disabled: isDisabled
|
|
3735
3735
|
},
|
|
3736
|
-
|
|
3736
|
+
plasmicUpdateVariant
|
|
3737
3737
|
))
|
|
3738
3738
|
);
|
|
3739
3739
|
}
|
|
@@ -4013,7 +4013,7 @@ const SWITCH_VARIANTS = [
|
|
|
4013
4013
|
];
|
|
4014
4014
|
const { variants: variants$2, withObservedValues: withObservedValues$1 } = pickAriaComponentVariants(SWITCH_VARIANTS);
|
|
4015
4015
|
function BaseSwitch(props) {
|
|
4016
|
-
const _a = props, { children,
|
|
4016
|
+
const _a = props, { children, plasmicUpdateVariant } = _a, rest = __objRest$3(_a, ["children", "plasmicUpdateVariant"]);
|
|
4017
4017
|
return /* @__PURE__ */ React.createElement(Switch, __spreadValues$3({}, rest), ({
|
|
4018
4018
|
isHovered,
|
|
4019
4019
|
isPressed,
|
|
@@ -4033,7 +4033,7 @@ function BaseSwitch(props) {
|
|
|
4033
4033
|
disabled: isDisabled,
|
|
4034
4034
|
readonly: isReadOnly
|
|
4035
4035
|
},
|
|
4036
|
-
|
|
4036
|
+
plasmicUpdateVariant
|
|
4037
4037
|
));
|
|
4038
4038
|
}
|
|
4039
4039
|
function registerSwitch(loader, overrides) {
|
|
@@ -4208,16 +4208,16 @@ const inputHelpers = {
|
|
|
4208
4208
|
};
|
|
4209
4209
|
function BaseTextArea(props) {
|
|
4210
4210
|
var _b;
|
|
4211
|
-
const _a = props, { disabled,
|
|
4211
|
+
const _a = props, { disabled, plasmicUpdateVariant, setControlContextData } = _a, rest = __objRest$2(_a, ["disabled", "plasmicUpdateVariant", "setControlContextData"]);
|
|
4212
4212
|
const textFieldContext = React.useContext(PlasmicTextFieldContext);
|
|
4213
4213
|
const mergedProps = mergeProps(rest, {
|
|
4214
4214
|
disabled: (_b = textFieldContext == null ? void 0 : textFieldContext.isDisabled) != null ? _b : disabled
|
|
4215
4215
|
});
|
|
4216
4216
|
useEffect(() => {
|
|
4217
|
-
|
|
4217
|
+
plasmicUpdateVariant == null ? void 0 : plasmicUpdateVariant({
|
|
4218
4218
|
disabled: mergedProps.disabled
|
|
4219
4219
|
});
|
|
4220
|
-
}, [mergedProps.disabled,
|
|
4220
|
+
}, [mergedProps.disabled, plasmicUpdateVariant]);
|
|
4221
4221
|
setControlContextData == null ? void 0 : setControlContextData({
|
|
4222
4222
|
parent: textFieldContext
|
|
4223
4223
|
});
|
|
@@ -4225,17 +4225,17 @@ function BaseTextArea(props) {
|
|
|
4225
4225
|
TextArea,
|
|
4226
4226
|
__spreadValues$2({
|
|
4227
4227
|
onFocus: () => {
|
|
4228
|
-
|
|
4228
|
+
plasmicUpdateVariant == null ? void 0 : plasmicUpdateVariant({
|
|
4229
4229
|
focused: true
|
|
4230
4230
|
});
|
|
4231
4231
|
},
|
|
4232
4232
|
onBlur: () => {
|
|
4233
|
-
|
|
4233
|
+
plasmicUpdateVariant == null ? void 0 : plasmicUpdateVariant({
|
|
4234
4234
|
focused: false
|
|
4235
4235
|
});
|
|
4236
4236
|
},
|
|
4237
4237
|
onHoverChange: (isHovered) => {
|
|
4238
|
-
|
|
4238
|
+
plasmicUpdateVariant == null ? void 0 : plasmicUpdateVariant({
|
|
4239
4239
|
hovered: isHovered
|
|
4240
4240
|
});
|
|
4241
4241
|
}
|
|
@@ -4331,14 +4331,14 @@ var __objRest$1 = (source, exclude) => {
|
|
|
4331
4331
|
const TEXT_FIELD_VARIANTS = ["disabled", "readonly"];
|
|
4332
4332
|
const { variants, withObservedValues } = pickAriaComponentVariants(TEXT_FIELD_VARIANTS);
|
|
4333
4333
|
function BaseTextField(props) {
|
|
4334
|
-
const _a = props, { children,
|
|
4334
|
+
const _a = props, { children, plasmicUpdateVariant, autoComplete } = _a, rest = __objRest$1(_a, ["children", "plasmicUpdateVariant", "autoComplete"]);
|
|
4335
4335
|
return /* @__PURE__ */ React.createElement(PlasmicTextFieldContext.Provider, { value: props }, /* @__PURE__ */ React.createElement(TextField, __spreadValues$1({ autoComplete: resolveAutoComplete(autoComplete) }, rest), ({ isDisabled, isReadOnly }) => withObservedValues(
|
|
4336
4336
|
children,
|
|
4337
4337
|
{
|
|
4338
4338
|
disabled: isDisabled,
|
|
4339
4339
|
readonly: isReadOnly
|
|
4340
4340
|
},
|
|
4341
|
-
|
|
4341
|
+
plasmicUpdateVariant
|
|
4342
4342
|
)));
|
|
4343
4343
|
}
|
|
4344
4344
|
const TEXT_FIELD_COMPONENT_NAME = makeComponentName("textField");
|