myoperator-ui 0.0.126 → 0.0.128
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 +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1849,7 +1849,7 @@ const SelectField = React.forwardRef<HTMLButtonElement, SelectFieldProps>(
|
|
|
1849
1849
|
{label && (
|
|
1850
1850
|
<label
|
|
1851
1851
|
htmlFor={selectId}
|
|
1852
|
-
className={cn("text-
|
|
1852
|
+
className={cn("text-xs font-normal text-semantic-text-muted", labelClassName)}
|
|
1853
1853
|
>
|
|
1854
1854
|
{label}
|
|
1855
1855
|
{required && <span className="text-semantic-error-primary ml-0.5">*</span>}
|
|
@@ -2209,7 +2209,7 @@ const MultiSelect = React.forwardRef<HTMLButtonElement, MultiSelectProps>(
|
|
|
2209
2209
|
{label && (
|
|
2210
2210
|
<label
|
|
2211
2211
|
htmlFor={selectId}
|
|
2212
|
-
className={cn("text-
|
|
2212
|
+
className={cn("text-xs font-normal text-semantic-text-muted", labelClassName)}
|
|
2213
2213
|
>
|
|
2214
2214
|
{label}
|
|
2215
2215
|
{required && <span className="text-semantic-error-primary ml-0.5">*</span>}
|
|
@@ -5021,7 +5021,7 @@ const PageHeader = React.forwardRef<HTMLDivElement, PageHeaderProps>(
|
|
|
5021
5021
|
)}
|
|
5022
5022
|
</div>
|
|
5023
5023
|
{description && (
|
|
5024
|
-
<p className="m-0 text-sm text-semantic-text-
|
|
5024
|
+
<p className="m-0 text-sm text-semantic-text-secondary font-normal mt-1 line-clamp-2">
|
|
5025
5025
|
{description}
|
|
5026
5026
|
</p>
|
|
5027
5027
|
)}
|