@vygruppen/spor-react 12.24.1 → 12.24.2
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/.turbo/turbo-build.log +12 -12
- package/.turbo/turbo-postinstall.log +2 -2
- package/CHANGELOG.md +10 -0
- package/dist/index.cjs +10 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.mjs +10 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/input/Field.tsx +2 -1
- package/src/input/Textarea.tsx +1 -1
- package/src/theme/recipes/attached-inputs.ts +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -1222,13 +1222,13 @@ declare const attachedInputsRecipe: _chakra_ui_react.RecipeDefinition<{
|
|
|
1222
1222
|
horizontal: {
|
|
1223
1223
|
flexDirection: "row";
|
|
1224
1224
|
"& > *:first-of-type:not(:last-of-type) [data-attachable]": {
|
|
1225
|
-
borderEndRadius:
|
|
1225
|
+
borderEndRadius: "0 !important";
|
|
1226
1226
|
};
|
|
1227
1227
|
"& > *:not(:first-of-type):not(:last-of-type) [data-attachable]": {
|
|
1228
|
-
borderRadius:
|
|
1228
|
+
borderRadius: "0 !important";
|
|
1229
1229
|
};
|
|
1230
1230
|
"& > *:not(:first-of-type):last-of-type [data-attachable]": {
|
|
1231
|
-
borderStartRadius:
|
|
1231
|
+
borderStartRadius: "0 !important";
|
|
1232
1232
|
};
|
|
1233
1233
|
"&[data-with-flip-button]": {
|
|
1234
1234
|
"& > *:nth-of-type(2) [data-scope='field'][data-part='root']": {
|
|
@@ -1244,13 +1244,13 @@ declare const attachedInputsRecipe: _chakra_ui_react.RecipeDefinition<{
|
|
|
1244
1244
|
vertical: {
|
|
1245
1245
|
flexDirection: "column";
|
|
1246
1246
|
"& > *:first-of-type:not(:last-of-type) [data-attachable]": {
|
|
1247
|
-
borderBottomRadius:
|
|
1247
|
+
borderBottomRadius: "0 !important";
|
|
1248
1248
|
};
|
|
1249
1249
|
"& > *:not(:first-of-type):not(:last-of-type) [data-attachable]": {
|
|
1250
|
-
borderRadius:
|
|
1250
|
+
borderRadius: "0 !important";
|
|
1251
1251
|
};
|
|
1252
1252
|
"& > *:not(:first-of-type):last-of-type [data-attachable]": {
|
|
1253
|
-
borderTopRadius:
|
|
1253
|
+
borderTopRadius: "0 !important";
|
|
1254
1254
|
};
|
|
1255
1255
|
};
|
|
1256
1256
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1222,13 +1222,13 @@ declare const attachedInputsRecipe: _chakra_ui_react.RecipeDefinition<{
|
|
|
1222
1222
|
horizontal: {
|
|
1223
1223
|
flexDirection: "row";
|
|
1224
1224
|
"& > *:first-of-type:not(:last-of-type) [data-attachable]": {
|
|
1225
|
-
borderEndRadius:
|
|
1225
|
+
borderEndRadius: "0 !important";
|
|
1226
1226
|
};
|
|
1227
1227
|
"& > *:not(:first-of-type):not(:last-of-type) [data-attachable]": {
|
|
1228
|
-
borderRadius:
|
|
1228
|
+
borderRadius: "0 !important";
|
|
1229
1229
|
};
|
|
1230
1230
|
"& > *:not(:first-of-type):last-of-type [data-attachable]": {
|
|
1231
|
-
borderStartRadius:
|
|
1231
|
+
borderStartRadius: "0 !important";
|
|
1232
1232
|
};
|
|
1233
1233
|
"&[data-with-flip-button]": {
|
|
1234
1234
|
"& > *:nth-of-type(2) [data-scope='field'][data-part='root']": {
|
|
@@ -1244,13 +1244,13 @@ declare const attachedInputsRecipe: _chakra_ui_react.RecipeDefinition<{
|
|
|
1244
1244
|
vertical: {
|
|
1245
1245
|
flexDirection: "column";
|
|
1246
1246
|
"& > *:first-of-type:not(:last-of-type) [data-attachable]": {
|
|
1247
|
-
borderBottomRadius:
|
|
1247
|
+
borderBottomRadius: "0 !important";
|
|
1248
1248
|
};
|
|
1249
1249
|
"& > *:not(:first-of-type):not(:last-of-type) [data-attachable]": {
|
|
1250
|
-
borderRadius:
|
|
1250
|
+
borderRadius: "0 !important";
|
|
1251
1251
|
};
|
|
1252
1252
|
"& > *:not(:first-of-type):last-of-type [data-attachable]": {
|
|
1253
|
-
borderTopRadius:
|
|
1253
|
+
borderTopRadius: "0 !important";
|
|
1254
1254
|
};
|
|
1255
1255
|
};
|
|
1256
1256
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -1971,13 +1971,14 @@ var Field3 = React20.forwardRef(
|
|
|
1971
1971
|
direction,
|
|
1972
1972
|
id,
|
|
1973
1973
|
children: [
|
|
1974
|
-
label && !floatingLabel && /* @__PURE__ */ jsx(Label, { asChild: labelAsChild, children: renderLabelWithIndicator(label, labelAsChild) }),
|
|
1974
|
+
label && !floatingLabel && /* @__PURE__ */ jsx(Label, { asChild: labelAsChild, "aria-hidden": true, children: renderLabelWithIndicator(label, labelAsChild) }),
|
|
1975
1975
|
children,
|
|
1976
1976
|
label && floatingLabel && /* @__PURE__ */ jsx(
|
|
1977
1977
|
FloatingLabel,
|
|
1978
1978
|
{
|
|
1979
1979
|
"data-float": shouldFloat ? true : void 0,
|
|
1980
1980
|
asChild: labelAsChild,
|
|
1981
|
+
"aria-hidden": true,
|
|
1981
1982
|
children: renderLabelWithIndicator(label, labelAsChild)
|
|
1982
1983
|
}
|
|
1983
1984
|
),
|
|
@@ -4674,7 +4675,7 @@ var Textarea = forwardRef(
|
|
|
4674
4675
|
floatingLabel,
|
|
4675
4676
|
shouldFloat,
|
|
4676
4677
|
position: "relative",
|
|
4677
|
-
label: /* @__PURE__ */ jsx(Box, { id: labelId,
|
|
4678
|
+
label: /* @__PURE__ */ jsx(Box, { id: labelId, children: /* @__PURE__ */ jsx("label", { ref: labelRef, children: label }) }),
|
|
4678
4679
|
id: restProps.id,
|
|
4679
4680
|
children: /* @__PURE__ */ jsx(
|
|
4680
4681
|
Textarea$1,
|
|
@@ -6429,7 +6430,7 @@ var attachedInputsRecipe = defineRecipe({
|
|
|
6429
6430
|
gap: "0.1rem",
|
|
6430
6431
|
width: "100%",
|
|
6431
6432
|
"& select": {
|
|
6432
|
-
borderEndRadius: 0
|
|
6433
|
+
borderEndRadius: "0 !important"
|
|
6433
6434
|
},
|
|
6434
6435
|
"& > *": {
|
|
6435
6436
|
position: "relative",
|
|
@@ -6444,13 +6445,13 @@ var attachedInputsRecipe = defineRecipe({
|
|
|
6444
6445
|
horizontal: {
|
|
6445
6446
|
flexDirection: "row",
|
|
6446
6447
|
"& > *:first-of-type:not(:last-of-type) [data-attachable]": {
|
|
6447
|
-
borderEndRadius: 0
|
|
6448
|
+
borderEndRadius: "0 !important"
|
|
6448
6449
|
},
|
|
6449
6450
|
"& > *:not(:first-of-type):not(:last-of-type) [data-attachable]": {
|
|
6450
|
-
borderRadius: 0
|
|
6451
|
+
borderRadius: "0 !important"
|
|
6451
6452
|
},
|
|
6452
6453
|
"& > *:not(:first-of-type):last-of-type [data-attachable]": {
|
|
6453
|
-
borderStartRadius: 0
|
|
6454
|
+
borderStartRadius: "0 !important"
|
|
6454
6455
|
},
|
|
6455
6456
|
"&[data-with-flip-button]": {
|
|
6456
6457
|
"& > *:nth-of-type(2) [data-scope='field'][data-part='root']": {
|
|
@@ -6466,13 +6467,13 @@ var attachedInputsRecipe = defineRecipe({
|
|
|
6466
6467
|
vertical: {
|
|
6467
6468
|
flexDirection: "column",
|
|
6468
6469
|
"& > *:first-of-type:not(:last-of-type) [data-attachable]": {
|
|
6469
|
-
borderBottomRadius: 0
|
|
6470
|
+
borderBottomRadius: "0 !important"
|
|
6470
6471
|
},
|
|
6471
6472
|
"& > *:not(:first-of-type):not(:last-of-type) [data-attachable]": {
|
|
6472
|
-
borderRadius: 0
|
|
6473
|
+
borderRadius: "0 !important"
|
|
6473
6474
|
},
|
|
6474
6475
|
"& > *:not(:first-of-type):last-of-type [data-attachable]": {
|
|
6475
|
-
borderTopRadius: 0
|
|
6476
|
+
borderTopRadius: "0 !important"
|
|
6476
6477
|
}
|
|
6477
6478
|
}
|
|
6478
6479
|
}
|