@rovula/ui 0.0.37 → 0.0.38
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/cjs/bundle.css +4 -0
- package/dist/cjs/bundle.js +1 -1
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/components/Calendar/Calendar.js +1 -1
- package/dist/esm/bundle.css +4 -0
- package/dist/esm/bundle.js +1 -1
- package/dist/esm/bundle.js.map +1 -1
- package/dist/src/theme/global.css +5 -0
- package/package.json +1 -1
- package/src/components/Calendar/Calendar.tsx +2 -1
|
@@ -8520,6 +8520,11 @@ body {
|
|
|
8520
8520
|
border-color: color-mix(in srgb, var(--state-color-primary-default) calc(100% * var(--tw-border-opacity)), transparent) !important;
|
|
8521
8521
|
}
|
|
8522
8522
|
|
|
8523
|
+
.\[\&_button\]\:\!text-input-disable-text button {
|
|
8524
|
+
--tw-text-opacity: 1 !important;
|
|
8525
|
+
color: color-mix(in srgb, var(--input-color-disable-text) calc(100% * var(--tw-text-opacity)), transparent) !important;
|
|
8526
|
+
}
|
|
8527
|
+
|
|
8523
8528
|
.\[\&_svg\]\:size-5 svg {
|
|
8524
8529
|
width: 1.25rem;
|
|
8525
8530
|
height: 1.25rem;
|
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@ function Calendar({
|
|
|
27
27
|
)}
|
|
28
28
|
classNames={{
|
|
29
29
|
...defaultClassNames,
|
|
30
|
-
day_button: cn(defaultClassNames.day_button, "size-9
|
|
30
|
+
day_button: cn(defaultClassNames.day_button, "size-9"),
|
|
31
31
|
day: "typography-subtitile1 ",
|
|
32
32
|
today:
|
|
33
33
|
"text-bold text-surface-foreground [&_button]:rounded-full [&_button]:!border-primary [&_button]:!border [&_button]:!border-solid",
|
|
@@ -43,6 +43,7 @@ function Calendar({
|
|
|
43
43
|
"gap-2 flex items-center"
|
|
44
44
|
),
|
|
45
45
|
months: "flex flex-col relative",
|
|
46
|
+
disabled: "[&_button]:rounded-full [&_button]:!text-input-disable-text",
|
|
46
47
|
...classNames,
|
|
47
48
|
}}
|
|
48
49
|
styles={{
|