@timeax/form-palette 0.0.36 → 0.0.38
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/extra.d.mts +2 -2
- package/dist/extra.d.ts +2 -2
- package/dist/extra.js +14 -4
- package/dist/extra.js.map +1 -1
- package/dist/extra.mjs +14 -4
- package/dist/extra.mjs.map +1 -1
- package/dist/index.d.mts +6 -25
- package/dist/index.d.ts +6 -25
- package/dist/index.js +6846 -6769
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6784 -6707
- package/dist/index.mjs.map +1 -1
- package/dist/{variant-BYqslKTy.d.mts → variant-DFE9TgIv.d.mts} +1 -0
- package/dist/{variant-DLlGPgPJ.d.ts → variant-HaGlyCnL.d.ts} +1 -0
- package/package.json +1 -1
package/dist/extra.mjs
CHANGED
|
@@ -25141,6 +25141,7 @@ function InputField(props) {
|
|
|
25141
25141
|
description,
|
|
25142
25142
|
helpText,
|
|
25143
25143
|
errorText,
|
|
25144
|
+
autoOff,
|
|
25144
25145
|
// Container + tags
|
|
25145
25146
|
contain,
|
|
25146
25147
|
tags,
|
|
@@ -25390,8 +25391,8 @@ function InputField(props) {
|
|
|
25390
25391
|
Variant,
|
|
25391
25392
|
{
|
|
25392
25393
|
...rest,
|
|
25394
|
+
name: autoOff ? void 0 : name,
|
|
25393
25395
|
id: key,
|
|
25394
|
-
ref,
|
|
25395
25396
|
value,
|
|
25396
25397
|
onValue: handleValueChange,
|
|
25397
25398
|
error,
|
|
@@ -25479,6 +25480,7 @@ function InputField(props) {
|
|
|
25479
25480
|
Field,
|
|
25480
25481
|
{
|
|
25481
25482
|
className: rootClassName,
|
|
25483
|
+
ref,
|
|
25482
25484
|
style,
|
|
25483
25485
|
"data-variant": String(variant),
|
|
25484
25486
|
"data-label-placement": lp != null ? lp : void 0,
|
|
@@ -25504,7 +25506,11 @@ function InputField(props) {
|
|
|
25504
25506
|
hasStackedLabelBlock && /* @__PURE__ */ jsxs(Element, { ...attrs(), children: [
|
|
25505
25507
|
graph.getSlotsFor("label", "above").render(
|
|
25506
25508
|
(slots) => slots.map(
|
|
25507
|
-
(slot) => renderHelperSlot(
|
|
25509
|
+
(slot) => renderHelperSlot(
|
|
25510
|
+
"label",
|
|
25511
|
+
slot,
|
|
25512
|
+
classes
|
|
25513
|
+
)
|
|
25508
25514
|
)
|
|
25509
25515
|
),
|
|
25510
25516
|
hasLabelRowContent && /* @__PURE__ */ jsxs(
|
|
@@ -25559,7 +25565,11 @@ function InputField(props) {
|
|
|
25559
25565
|
),
|
|
25560
25566
|
graph.getSlotsFor("label", "below").render(
|
|
25561
25567
|
(slots) => slots.map(
|
|
25562
|
-
(slot) => renderHelperSlot(
|
|
25568
|
+
(slot) => renderHelperSlot(
|
|
25569
|
+
"label",
|
|
25570
|
+
slot,
|
|
25571
|
+
classes
|
|
25572
|
+
)
|
|
25563
25573
|
)
|
|
25564
25574
|
)
|
|
25565
25575
|
] }),
|
|
@@ -25577,8 +25587,8 @@ function InputField(props) {
|
|
|
25577
25587
|
Variant,
|
|
25578
25588
|
{
|
|
25579
25589
|
...rest,
|
|
25590
|
+
name: autoOff ? void 0 : name,
|
|
25580
25591
|
id: key,
|
|
25581
|
-
ref,
|
|
25582
25592
|
value,
|
|
25583
25593
|
onValue: handleValueChange,
|
|
25584
25594
|
error,
|