@rehagro/ui 1.0.21 → 1.0.22
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.js +12 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -164,8 +164,8 @@ var WarningCircleIcon = (props) => /* @__PURE__ */ jsxs(
|
|
|
164
164
|
"svg",
|
|
165
165
|
{
|
|
166
166
|
xmlns: "http://www.w3.org/2000/svg",
|
|
167
|
-
width: "
|
|
168
|
-
height: "
|
|
167
|
+
width: "15",
|
|
168
|
+
height: "15",
|
|
169
169
|
viewBox: "0 0 256 256",
|
|
170
170
|
fill: "currentColor",
|
|
171
171
|
"aria-hidden": "true",
|
|
@@ -180,8 +180,8 @@ var WarningCircleIcon = (props) => /* @__PURE__ */ jsxs(
|
|
|
180
180
|
r: "96",
|
|
181
181
|
fill: "none",
|
|
182
182
|
stroke: "currentColor",
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
strokeMiterlimit: "10",
|
|
184
|
+
strokeWidth: "16"
|
|
185
185
|
}
|
|
186
186
|
),
|
|
187
187
|
/* @__PURE__ */ jsx(
|
|
@@ -193,9 +193,9 @@ var WarningCircleIcon = (props) => /* @__PURE__ */ jsxs(
|
|
|
193
193
|
y2: "80",
|
|
194
194
|
fill: "none",
|
|
195
195
|
stroke: "currentColor",
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
196
|
+
strokeLinecap: "round",
|
|
197
|
+
strokeLinejoin: "round",
|
|
198
|
+
strokeWidth: "16"
|
|
199
199
|
}
|
|
200
200
|
),
|
|
201
201
|
/* @__PURE__ */ jsx("circle", { cx: "128", cy: "172", r: "12" })
|
|
@@ -1601,7 +1601,7 @@ var Select = forwardRef(function Select2(props, ref) {
|
|
|
1601
1601
|
})
|
|
1602
1602
|
}
|
|
1603
1603
|
),
|
|
1604
|
-
helperText && /* @__PURE__ */
|
|
1604
|
+
helperText && /* @__PURE__ */ jsxs(
|
|
1605
1605
|
"span",
|
|
1606
1606
|
{
|
|
1607
1607
|
id: helperId,
|
|
@@ -1609,7 +1609,10 @@ var Select = forwardRef(function Select2(props, ref) {
|
|
|
1609
1609
|
"rh-flex rh-items-center rh-gap-1 rh-text-xs",
|
|
1610
1610
|
helperStatusClasses2[status]
|
|
1611
1611
|
].join(" "),
|
|
1612
|
-
children:
|
|
1612
|
+
children: [
|
|
1613
|
+
/* @__PURE__ */ jsx(WarningCircleIcon, {}),
|
|
1614
|
+
helperText
|
|
1615
|
+
]
|
|
1613
1616
|
}
|
|
1614
1617
|
)
|
|
1615
1618
|
]
|