@vaneui/ui 0.3.1-alpha.20251110155311.4ef4158 → 0.3.1-alpha.20251115130358.c59f986
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/index.esm.js +10 -10
- package/dist/index.js +10 -10
- package/dist/ui.css +28 -0
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -5009,19 +5009,19 @@ const defaultCodeTheme = new ComponentTheme("code", "", {
|
|
|
5009
5009
|
xl: "[--aspect-ratio:1.5]",
|
|
5010
5010
|
}, true),
|
|
5011
5011
|
py: new PyTheme({
|
|
5012
|
-
xs: "[--py-unit:
|
|
5013
|
-
sm: "[--py-unit:
|
|
5014
|
-
md: "[--py-unit:1
|
|
5015
|
-
lg: "[--py-unit:2]",
|
|
5016
|
-
xl: "[--py-unit:
|
|
5012
|
+
xs: "[--py-unit:0.6]",
|
|
5013
|
+
sm: "[--py-unit:0.8]",
|
|
5014
|
+
md: "[--py-unit:1]",
|
|
5015
|
+
lg: "[--py-unit:1.2]",
|
|
5016
|
+
xl: "[--py-unit:1.4]",
|
|
5017
5017
|
}, true),
|
|
5018
5018
|
text: new FontSizeTheme(),
|
|
5019
5019
|
lineHeight: new LineHeightTheme({
|
|
5020
|
-
xs: "[--lh:1
|
|
5021
|
-
sm: "[--lh:1
|
|
5022
|
-
md: "[--lh:1
|
|
5023
|
-
lg: "[--lh:1
|
|
5024
|
-
xl: "[--lh:1
|
|
5020
|
+
xs: "[--lh:1]",
|
|
5021
|
+
sm: "[--lh:1]",
|
|
5022
|
+
md: "[--lh:1]",
|
|
5023
|
+
lg: "[--lh:1]",
|
|
5024
|
+
xl: "[--lh:1]"
|
|
5025
5025
|
}),
|
|
5026
5026
|
gap: GapTheme.createForUI()
|
|
5027
5027
|
},
|
package/dist/index.js
CHANGED
|
@@ -5011,19 +5011,19 @@ const defaultCodeTheme = new ComponentTheme("code", "", {
|
|
|
5011
5011
|
xl: "[--aspect-ratio:1.5]",
|
|
5012
5012
|
}, true),
|
|
5013
5013
|
py: new PyTheme({
|
|
5014
|
-
xs: "[--py-unit:
|
|
5015
|
-
sm: "[--py-unit:
|
|
5016
|
-
md: "[--py-unit:1
|
|
5017
|
-
lg: "[--py-unit:2]",
|
|
5018
|
-
xl: "[--py-unit:
|
|
5014
|
+
xs: "[--py-unit:0.6]",
|
|
5015
|
+
sm: "[--py-unit:0.8]",
|
|
5016
|
+
md: "[--py-unit:1]",
|
|
5017
|
+
lg: "[--py-unit:1.2]",
|
|
5018
|
+
xl: "[--py-unit:1.4]",
|
|
5019
5019
|
}, true),
|
|
5020
5020
|
text: new FontSizeTheme(),
|
|
5021
5021
|
lineHeight: new LineHeightTheme({
|
|
5022
|
-
xs: "[--lh:1
|
|
5023
|
-
sm: "[--lh:1
|
|
5024
|
-
md: "[--lh:1
|
|
5025
|
-
lg: "[--lh:1
|
|
5026
|
-
xl: "[--lh:1
|
|
5022
|
+
xs: "[--lh:1]",
|
|
5023
|
+
sm: "[--lh:1]",
|
|
5024
|
+
md: "[--lh:1]",
|
|
5025
|
+
lg: "[--lh:1]",
|
|
5026
|
+
xl: "[--lh:1]"
|
|
5027
5027
|
}),
|
|
5028
5028
|
gap: GapTheme.createForUI()
|
|
5029
5029
|
},
|
package/dist/ui.css
CHANGED
|
@@ -82,6 +82,10 @@
|
|
|
82
82
|
--color-gray-950: oklch(13% 0.028 261.692);
|
|
83
83
|
--color-white: #fff;
|
|
84
84
|
--spacing: 0.25rem;
|
|
85
|
+
--container-sm: 24rem;
|
|
86
|
+
--container-md: 28rem;
|
|
87
|
+
--container-lg: 32rem;
|
|
88
|
+
--container-xl: 36rem;
|
|
85
89
|
--container-3xl: 48rem;
|
|
86
90
|
--container-4xl: 56rem;
|
|
87
91
|
--container-5xl: 64rem;
|
|
@@ -543,6 +547,18 @@
|
|
|
543
547
|
.max-w-7xl {
|
|
544
548
|
max-width: var(--container-7xl);
|
|
545
549
|
}
|
|
550
|
+
.max-w-lg {
|
|
551
|
+
max-width: var(--container-lg);
|
|
552
|
+
}
|
|
553
|
+
.max-w-md {
|
|
554
|
+
max-width: var(--container-md);
|
|
555
|
+
}
|
|
556
|
+
.max-w-sm {
|
|
557
|
+
max-width: var(--container-sm);
|
|
558
|
+
}
|
|
559
|
+
.max-w-xl {
|
|
560
|
+
max-width: var(--container-xl);
|
|
561
|
+
}
|
|
546
562
|
.transform {
|
|
547
563
|
transform: var(--tw-rotate-x) var(--tw-rotate-y) var(--tw-rotate-z) var(--tw-skew-x) var(--tw-skew-y);
|
|
548
564
|
}
|
|
@@ -1664,6 +1680,18 @@
|
|
|
1664
1680
|
.\[--py-unit\:0\.5\] {
|
|
1665
1681
|
--py-unit: 0.5;
|
|
1666
1682
|
}
|
|
1683
|
+
.\[--py-unit\:0\.6\] {
|
|
1684
|
+
--py-unit: 0.6;
|
|
1685
|
+
}
|
|
1686
|
+
.\[--py-unit\:0\.8\] {
|
|
1687
|
+
--py-unit: 0.8;
|
|
1688
|
+
}
|
|
1689
|
+
.\[--py-unit\:1\.2\] {
|
|
1690
|
+
--py-unit: 1.2;
|
|
1691
|
+
}
|
|
1692
|
+
.\[--py-unit\:1\.4\] {
|
|
1693
|
+
--py-unit: 1.4;
|
|
1694
|
+
}
|
|
1667
1695
|
.\[--py-unit\:1\.5\] {
|
|
1668
1696
|
--py-unit: 1.5;
|
|
1669
1697
|
}
|
package/package.json
CHANGED