@warp-ds/css 1.9.0-next.4 → 1.9.0
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.
|
@@ -369,11 +369,13 @@ export namespace select {
|
|
|
369
369
|
export namespace label {
|
|
370
370
|
let label_2: string;
|
|
371
371
|
export { label_2 as label };
|
|
372
|
-
export let labelInvalid: string;
|
|
373
372
|
export let optional: string;
|
|
373
|
+
export let labelInvalid: string;
|
|
374
374
|
}
|
|
375
375
|
export namespace helpText {
|
|
376
376
|
let helpText: string;
|
|
377
|
+
let helpTextColor: string;
|
|
378
|
+
let helpTextColorInvalid: string;
|
|
377
379
|
let helpTextValid: string;
|
|
378
380
|
let helpTextInvalid: string;
|
|
379
381
|
}
|
|
@@ -407,12 +407,15 @@ export const select = {
|
|
|
407
407
|
|
|
408
408
|
export const label = {
|
|
409
409
|
label: 'antialiased block relative text-s font-bold pb-4 cursor-pointer s-text',
|
|
410
|
-
|
|
411
|
-
|
|
410
|
+
optional: 'pl-8 font-normal text-s s-text-subtle',
|
|
411
|
+
labelInvalid: 's-text-negative', // TODO: Remove in v2 - kept for backwards compatibility
|
|
412
412
|
};
|
|
413
413
|
|
|
414
414
|
export const helpText = {
|
|
415
|
-
helpText: 'text-xs mt-4 block
|
|
415
|
+
helpText: 'text-xs mt-4 block',
|
|
416
|
+
helpTextColor: 's-text-subtle',
|
|
417
|
+
helpTextColorInvalid: 's-text-negative',
|
|
418
|
+
// TODO: Remove below properties in v2 - kept for backwards compatibility
|
|
416
419
|
helpTextValid: 's-text-positive',
|
|
417
420
|
helpTextInvalid: 's-text-negative',
|
|
418
421
|
};
|