@marianmeres/stuic 2.1.0 → 2.1.2

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.
@@ -1,7 +1,7 @@
1
1
  export declare const acpDefaultIcons: {
2
- info: () => any;
3
- success: () => any;
4
- warn: () => any;
5
- error: () => any;
6
- spinner: () => any;
2
+ info: () => string;
3
+ success: () => string;
4
+ warn: () => string;
5
+ error: () => string;
6
+ spinner: () => string;
7
7
  };
package/dist/index.css CHANGED
@@ -3,9 +3,11 @@
3
3
 
4
4
  @custom-variant dark (&:where(.dark, .dark *));
5
5
 
6
- /* @source "./"; */
6
+ @source "./";
7
7
 
8
- @layer components {
8
+ /* "components" looks like a better fit here, but forms plugin uses "utilities"
9
+ so, since we need to override, sticking with that*/
10
+ @layer utilities {
9
11
  @import "./actions/tooltip/index.css";
10
12
  @import "./components/Button/index.css";
11
13
  @import "./components/ButtonGroupRadio/index.css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marianmeres/stuic",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",