@marianmeres/stuic 2.0.6 → 2.1.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.
- package/dist/components/Button/index.css +0 -2
- package/dist/components/ButtonGroupRadio/index.css +0 -3
- package/dist/components/DismissibleMessage/index.css +0 -2
- package/dist/components/Input/index.css +0 -3
- package/dist/components/Notifications/index.css +9 -1
- package/dist/components/Progress/index.css +0 -2
- package/dist/components/Switch/index.css +0 -2
- package/dist/components/TwCheck/index.css +0 -2
- package/dist/index.css +16 -11
- package/package.json +1 -1
- package/dist/_shared.css +0 -2
|
@@ -1,4 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/*
|
|
2
|
+
When defining theme variables that reference other variables, use the inline option.
|
|
3
|
+
|
|
4
|
+
Using the inline option, the utility class will use the theme variable value instead
|
|
5
|
+
of referencing the actual theme variable.
|
|
6
|
+
|
|
7
|
+
Without using inline, your utility classes might resolve to unexpected values because
|
|
8
|
+
of how variables are resolved in CSS.
|
|
9
|
+
*/
|
|
2
10
|
|
|
3
11
|
/* prettier-ignore */
|
|
4
12
|
@theme inline {
|
package/dist/index.css
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
|
-
@import "
|
|
1
|
+
@import "tailwindcss";
|
|
2
|
+
@plugin '@tailwindcss/forms';
|
|
2
3
|
|
|
3
|
-
@
|
|
4
|
+
@custom-variant dark (&:where(.dark, .dark *));
|
|
4
5
|
|
|
5
|
-
@
|
|
6
|
-
|
|
7
|
-
@
|
|
8
|
-
@import "./
|
|
9
|
-
@import "./components/
|
|
10
|
-
@import "./components/
|
|
11
|
-
@import "./components/
|
|
12
|
-
@import "./components/
|
|
13
|
-
@import "./components/
|
|
6
|
+
/* @source "./"; */
|
|
7
|
+
|
|
8
|
+
@layer components {
|
|
9
|
+
@import "./actions/tooltip/index.css";
|
|
10
|
+
@import "./components/Button/index.css";
|
|
11
|
+
@import "./components/ButtonGroupRadio/index.css";
|
|
12
|
+
@import "./components/DismissibleMessage/index.css";
|
|
13
|
+
@import "./components/Input/index.css";
|
|
14
|
+
@import "./components/Notifications/index.css";
|
|
15
|
+
@import "./components/Progress/index.css";
|
|
16
|
+
@import "./components/Switch/index.css";
|
|
17
|
+
@import "./components/TwCheck/index.css";
|
|
18
|
+
}
|
|
14
19
|
|
|
15
20
|
@layer base {
|
|
16
21
|
button:not(:disabled),
|
package/package.json
CHANGED
package/dist/_shared.css
DELETED