@bigtablet/design-system 3.19.0 → 3.19.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/index.css CHANGED
@@ -2395,6 +2395,12 @@ body:has(.bottom_nav) {
2395
2395
  .field_label_row .field_label {
2396
2396
  margin-right: auto;
2397
2397
  }
2398
+ .field_label_action {
2399
+ display: flex;
2400
+ flex-shrink: 0;
2401
+ align-items: center;
2402
+ height: 18px;
2403
+ }
2398
2404
  .field_required {
2399
2405
  margin-left: 2px;
2400
2406
  color: var(--bt-color-status-error-on-surface);
package/dist/index.js CHANGED
@@ -2879,7 +2879,7 @@ var Field = ({
2879
2879
  return /* @__PURE__ */ jsxs("div", { className: cn("field", !!error && "field_error", className), ...props, children: [
2880
2880
  labelAction ? /* @__PURE__ */ jsxs("div", { className: "field_label_row", children: [
2881
2881
  labelElement,
2882
- labelAction
2882
+ /* @__PURE__ */ jsx("span", { className: "field_label_action", children: labelAction })
2883
2883
  ] }) : labelElement,
2884
2884
  /* @__PURE__ */ jsx(FieldContext.Provider, { value: control, children }),
2885
2885
  showHelp && /* @__PURE__ */ jsx("div", { id: helpId, className: "field_help", children: help }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigtablet/design-system",
3
- "version": "3.19.0",
3
+ "version": "3.19.1",
4
4
  "description": "Bigtablet Design System UI Components",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",