@a4ui/core 0.21.0 → 0.22.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/elements.css +6 -0
- package/dist/full.css +6 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +362 -357
- package/dist/layout/Aurora.d.ts +5 -0
- package/package.json +1 -1
- package/src/index.ts +1 -1
- package/src/layout/Aurora.tsx +29 -1
package/dist/elements.css
CHANGED
|
@@ -1827,6 +1827,9 @@ html.calm .tile-glass {
|
|
|
1827
1827
|
.h-\[40rem\] {
|
|
1828
1828
|
height: 40rem;
|
|
1829
1829
|
}
|
|
1830
|
+
.h-\[520px\] {
|
|
1831
|
+
height: 520px;
|
|
1832
|
+
}
|
|
1830
1833
|
.h-\[65vh\] {
|
|
1831
1834
|
height: 65vh;
|
|
1832
1835
|
}
|
|
@@ -1965,6 +1968,9 @@ html.calm .tile-glass {
|
|
|
1965
1968
|
.w-\[40rem\] {
|
|
1966
1969
|
width: 40rem;
|
|
1967
1970
|
}
|
|
1971
|
+
.w-\[520px\] {
|
|
1972
|
+
width: 520px;
|
|
1973
|
+
}
|
|
1968
1974
|
.w-fit {
|
|
1969
1975
|
width: fit-content;
|
|
1970
1976
|
}
|
package/dist/full.css
CHANGED
|
@@ -1827,6 +1827,9 @@ html.calm .tile-glass {
|
|
|
1827
1827
|
.h-\[40rem\] {
|
|
1828
1828
|
height: 40rem;
|
|
1829
1829
|
}
|
|
1830
|
+
.h-\[520px\] {
|
|
1831
|
+
height: 520px;
|
|
1832
|
+
}
|
|
1830
1833
|
.h-\[65vh\] {
|
|
1831
1834
|
height: 65vh;
|
|
1832
1835
|
}
|
|
@@ -1965,6 +1968,9 @@ html.calm .tile-glass {
|
|
|
1965
1968
|
.w-\[40rem\] {
|
|
1966
1969
|
width: 40rem;
|
|
1967
1970
|
}
|
|
1971
|
+
.w-\[520px\] {
|
|
1972
|
+
width: 520px;
|
|
1973
|
+
}
|
|
1968
1974
|
.w-fit {
|
|
1969
1975
|
width: fit-content;
|
|
1970
1976
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const A4UI_VERSION = "0.
|
|
1
|
+
export declare const A4UI_VERSION = "0.22.0";
|
|
2
2
|
export { cn } from './lib/cn';
|
|
3
3
|
export { useTheme, toggleTheme, setTheme, storedTheme, applyTheme, toggled, type Theme } from './lib/theme';
|
|
4
4
|
export { useEffects, isCalm, setEffects } from './lib/effects';
|