@ultraviolet/ui 1.37.0 → 1.37.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/src/components/NumberInputV2/index.js +4 -4
- package/dist/src/components/SelectableCard/index.js +4 -1
- package/dist/src/components/Skeleton/index.js +2 -0
- package/dist/src/components/TagInput/index.js +5 -5
- package/dist/src/components/TextArea/index.js +4 -4
- package/dist/src/components/TextInputV2/index.js +4 -4
- package/package.json +1 -1
|
@@ -179,11 +179,11 @@ const NumberInputV2 = /*#__PURE__*/forwardRef(({
|
|
|
179
179
|
return jsxs(Stack, {
|
|
180
180
|
gap: "0.5",
|
|
181
181
|
className: className,
|
|
182
|
-
children: [jsxs(Stack, {
|
|
182
|
+
children: [label || labelDescription ? jsxs(Stack, {
|
|
183
183
|
direction: "row",
|
|
184
184
|
gap: "1",
|
|
185
185
|
alignItems: "center",
|
|
186
|
-
children: [jsxs(Stack, {
|
|
186
|
+
children: [label ? jsxs(Stack, {
|
|
187
187
|
direction: "row",
|
|
188
188
|
gap: "0.5",
|
|
189
189
|
alignItems: "start",
|
|
@@ -198,8 +198,8 @@ const NumberInputV2 = /*#__PURE__*/forwardRef(({
|
|
|
198
198
|
color: "danger",
|
|
199
199
|
size: 8
|
|
200
200
|
}) : null]
|
|
201
|
-
}), labelDescription ?? null]
|
|
202
|
-
}), jsx("div", {
|
|
201
|
+
}) : null, labelDescription ?? null]
|
|
202
|
+
}) : null, jsx("div", {
|
|
203
203
|
children: jsx(Tooltip, {
|
|
204
204
|
text: tooltip,
|
|
205
205
|
children: jsxs(Container, {
|
|
@@ -9,7 +9,9 @@ import { jsx, jsxs } from '@emotion/react/jsx-runtime';
|
|
|
9
9
|
function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
|
|
10
10
|
const Container = /*#__PURE__*/_styled(Stack, {
|
|
11
11
|
target: "e1s5n3hj2"
|
|
12
|
-
})("
|
|
12
|
+
})("&[data-has-label='false']>:first-child{margin-bottom:-", ({
|
|
13
|
+
theme
|
|
14
|
+
}) => theme.space['0.5'], ";}padding:", ({
|
|
13
15
|
theme
|
|
14
16
|
}) => theme.space['2'], ";border-radius:", ({
|
|
15
17
|
theme
|
|
@@ -117,6 +119,7 @@ const SelectableCard = /*#__PURE__*/forwardRef(({
|
|
|
117
119
|
"data-error": isError,
|
|
118
120
|
"data-testid": dataTestId,
|
|
119
121
|
"data-type": type,
|
|
122
|
+
"data-has-label": !!label,
|
|
120
123
|
ref: ref,
|
|
121
124
|
alignItems: "start",
|
|
122
125
|
direction: "column",
|
|
@@ -216,11 +216,11 @@ const TagInput = ({
|
|
|
216
216
|
return jsxs(Stack, {
|
|
217
217
|
gap: "0.5",
|
|
218
218
|
className: className,
|
|
219
|
-
children: [jsxs(Stack, {
|
|
219
|
+
children: [label || labelDescription ? jsxs(Stack, {
|
|
220
220
|
direction: "row",
|
|
221
221
|
gap: "1",
|
|
222
222
|
alignItems: "center",
|
|
223
|
-
children: [jsxs(Stack, {
|
|
223
|
+
children: [label ? jsxs(Stack, {
|
|
224
224
|
direction: "row",
|
|
225
225
|
gap: "0.5",
|
|
226
226
|
alignItems: "start",
|
|
@@ -228,15 +228,15 @@ const TagInput = ({
|
|
|
228
228
|
as: "label",
|
|
229
229
|
variant: "bodyStrong",
|
|
230
230
|
sentiment: "neutral",
|
|
231
|
-
htmlFor: localId,
|
|
231
|
+
htmlFor: id ?? localId,
|
|
232
232
|
children: label
|
|
233
233
|
}), required ? jsx(Icon, {
|
|
234
234
|
name: "asterisk",
|
|
235
235
|
color: "danger",
|
|
236
236
|
size: 8
|
|
237
237
|
}) : null]
|
|
238
|
-
}), labelDescription ?? null]
|
|
239
|
-
}), jsx("div", {
|
|
238
|
+
}) : null, labelDescription ?? null]
|
|
239
|
+
}) : null, jsx("div", {
|
|
240
240
|
children: jsx(Tooltip, {
|
|
241
241
|
text: tooltip,
|
|
242
242
|
children: jsxs(TagInputContainer, {
|
|
@@ -112,11 +112,11 @@ const TextArea = /*#__PURE__*/forwardRef(({
|
|
|
112
112
|
return jsxs(Stack, {
|
|
113
113
|
gap: "0.5",
|
|
114
114
|
className: className,
|
|
115
|
-
children: [jsxs(Stack, {
|
|
115
|
+
children: [label || labelDescription ? jsxs(Stack, {
|
|
116
116
|
direction: "row",
|
|
117
117
|
gap: "1",
|
|
118
118
|
alignItems: "center",
|
|
119
|
-
children: [jsxs(Stack, {
|
|
119
|
+
children: [label ? jsxs(Stack, {
|
|
120
120
|
direction: "row",
|
|
121
121
|
gap: "0.5",
|
|
122
122
|
alignItems: "start",
|
|
@@ -131,8 +131,8 @@ const TextArea = /*#__PURE__*/forwardRef(({
|
|
|
131
131
|
color: "danger",
|
|
132
132
|
size: 8
|
|
133
133
|
}) : null]
|
|
134
|
-
}), labelDescription ?? null]
|
|
135
|
-
}), jsx(Tooltip, {
|
|
134
|
+
}) : null, labelDescription ?? null]
|
|
135
|
+
}) : null, jsx(Tooltip, {
|
|
136
136
|
text: tooltip,
|
|
137
137
|
children: jsxs(StyledTextAreaWrapper, {
|
|
138
138
|
children: [jsx(StyledTextArea, {
|
|
@@ -132,11 +132,11 @@ const TextInputV2 = /*#__PURE__*/forwardRef(({
|
|
|
132
132
|
return jsxs(Stack, {
|
|
133
133
|
gap: 0.5,
|
|
134
134
|
className: className,
|
|
135
|
-
children: [jsxs(Stack, {
|
|
135
|
+
children: [label || labelDescription ? jsxs(Stack, {
|
|
136
136
|
direction: "row",
|
|
137
137
|
gap: "1",
|
|
138
138
|
alignItems: "center",
|
|
139
|
-
children: [jsxs(Stack, {
|
|
139
|
+
children: [label ? jsxs(Stack, {
|
|
140
140
|
direction: "row",
|
|
141
141
|
gap: "0.5",
|
|
142
142
|
alignItems: "start",
|
|
@@ -151,8 +151,8 @@ const TextInputV2 = /*#__PURE__*/forwardRef(({
|
|
|
151
151
|
color: "danger",
|
|
152
152
|
size: 8
|
|
153
153
|
}) : null]
|
|
154
|
-
}), labelDescription ?? null]
|
|
155
|
-
}), jsx("div", {
|
|
154
|
+
}) : null, labelDescription ?? null]
|
|
155
|
+
}) : null, jsx("div", {
|
|
156
156
|
children: jsx(Tooltip, {
|
|
157
157
|
text: tooltip,
|
|
158
158
|
children: jsxs(StyledInputWrapper, {
|