myoperator-ui 0.0.124 → 0.0.126
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 +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1586,7 +1586,7 @@ const TextField = React.forwardRef<HTMLInputElement, TextFieldProps>(
|
|
|
1586
1586
|
{label && (
|
|
1587
1587
|
<label
|
|
1588
1588
|
htmlFor={inputId}
|
|
1589
|
-
className={cn("text-
|
|
1589
|
+
className={cn("text-xs font-normal text-semantic-text-muted", labelClassName)}
|
|
1590
1590
|
>
|
|
1591
1591
|
{label}
|
|
1592
1592
|
{required && <span className="text-semantic-error-primary ml-0.5">*</span>}
|
|
@@ -6498,7 +6498,10 @@ export default {
|
|
|
6498
6498
|
darkMode: ["class"],
|
|
6499
6499
|
prefix: "${prefix}",${hasBootstrap ? `
|
|
6500
6500
|
important: true, // Required to override Bootstrap styles` : ""}
|
|
6501
|
-
content: [
|
|
6501
|
+
content: [
|
|
6502
|
+
"./src/components/ui/**/*.{js,ts,jsx,tsx}",
|
|
6503
|
+
"./src/modules/Shadcn/**/*.{js,ts,jsx,tsx}",
|
|
6504
|
+
],
|
|
6502
6505
|
theme: {
|
|
6503
6506
|
container: {
|
|
6504
6507
|
center: true,
|