@rovula/ui 0.1.30 → 0.1.32
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 +8 -8
- package/dist/cjs/bundle.js +14 -9235
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Icon/Icon.stories.d.ts +4 -0
- package/dist/components/Icon/Icon.stories.js +21 -2
- package/dist/components/Navbar/Navbar.js +1 -1
- package/dist/esm/bundle.css +8 -8
- package/dist/esm/bundle.js +14 -9235
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Icon/Icon.stories.d.ts +4 -0
- package/dist/src/theme/global.css +13 -13
- package/package.json +3 -3
- package/src/components/Icon/Icon.stories.tsx +77 -5
- package/src/components/Navbar/Navbar.tsx +8 -7
- package/src/theme/tokens/components/navbar.css +3 -3
package/dist/cjs/bundle.css
CHANGED
|
@@ -2026,8 +2026,8 @@ input[type=number] {
|
|
|
2026
2026
|
.border-white\/20{
|
|
2027
2027
|
border-color: rgb(255 255 255 / 0.2);
|
|
2028
2028
|
}
|
|
2029
|
-
.border-b-\[
|
|
2030
|
-
border-bottom-color:
|
|
2029
|
+
.border-b-\[var\(--navbar-border-color\)\]{
|
|
2030
|
+
border-bottom-color: var(--navbar-border-color);
|
|
2031
2031
|
}
|
|
2032
2032
|
.border-l-input-default-stroke{
|
|
2033
2033
|
--tw-border-opacity: 1;
|
|
@@ -2111,9 +2111,6 @@ input[type=number] {
|
|
|
2111
2111
|
.bg-\[rgb\(var\(--base-bg-2\)\)\]{
|
|
2112
2112
|
background-color: rgb(var(--base-bg-2));
|
|
2113
2113
|
}
|
|
2114
|
-
.bg-\[rgb\(var\(--navbar-bg-color\)\)\]{
|
|
2115
|
-
background-color: rgb(var(--navbar-bg-color));
|
|
2116
|
-
}
|
|
2117
2114
|
.bg-\[var\(--badge-default-bg\)\]{
|
|
2118
2115
|
background-color: var(--badge-default-bg);
|
|
2119
2116
|
}
|
|
@@ -2165,6 +2162,9 @@ input[type=number] {
|
|
|
2165
2162
|
.bg-\[var\(--footer-bg-color\)\]{
|
|
2166
2163
|
background-color: var(--footer-bg-color);
|
|
2167
2164
|
}
|
|
2165
|
+
.bg-\[var\(--navbar-bg-color\)\]{
|
|
2166
|
+
background-color: var(--navbar-bg-color);
|
|
2167
|
+
}
|
|
2168
2168
|
.bg-action-button-icon-active{
|
|
2169
2169
|
--tw-bg-opacity: 1;
|
|
2170
2170
|
background-color: color-mix(in srgb, var(--action-button-icon-active-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -4131,9 +4131,6 @@ input[type=number] {
|
|
|
4131
4131
|
--tw-text-opacity: 1 !important;
|
|
4132
4132
|
color: color-mix(in srgb, var(--state-primary-text-solid) calc(100% * var(--tw-text-opacity, 1)), transparent) !important;
|
|
4133
4133
|
}
|
|
4134
|
-
.text-\[rgb\(var\(--navbar-text-color\)\)\]{
|
|
4135
|
-
color: rgb(var(--navbar-text-color));
|
|
4136
|
-
}
|
|
4137
4134
|
.text-\[var\(--badge-default-text\)\]{
|
|
4138
4135
|
color: var(--badge-default-text);
|
|
4139
4136
|
}
|
|
@@ -4179,6 +4176,9 @@ input[type=number] {
|
|
|
4179
4176
|
.text-\[var\(--loading-track-color\)\]{
|
|
4180
4177
|
color: var(--loading-track-color);
|
|
4181
4178
|
}
|
|
4179
|
+
.text-\[var\(--navbar-text-color\)\]{
|
|
4180
|
+
color: var(--navbar-text-color);
|
|
4181
|
+
}
|
|
4182
4182
|
.text-action-button-icon-active{
|
|
4183
4183
|
--tw-text-opacity: 1;
|
|
4184
4184
|
color: color-mix(in srgb, var(--action-button-icon-active-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|