@vaneui/ui 0.2.1-alpha.20250820172812.236c9ec → 0.2.1-alpha.20250820175637.a4cda09
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/ui/theme/size/paddingTheme.d.ts +4 -4
- package/dist/components/ui/theme/size/plTheme.d.ts +4 -4
- package/dist/components/ui/theme/size/pxTheme.d.ts +3 -3
- package/dist/components/ui/theme/size/pyTheme.d.ts +3 -3
- package/dist/index.esm.js +36 -44
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +36 -44
- package/dist/index.js.map +1 -1
- package/dist/ui.css +0 -6
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -1042,9 +1042,6 @@
|
|
|
1042
1042
|
.p-4 {
|
|
1043
1043
|
padding: calc(var(--spacing) * 4);
|
|
1044
1044
|
}
|
|
1045
|
-
.px-0 {
|
|
1046
|
-
padding-inline: calc(var(--spacing) * 0);
|
|
1047
|
-
}
|
|
1048
1045
|
.px-1 {
|
|
1049
1046
|
padding-inline: calc(var(--spacing) * 1);
|
|
1050
1047
|
}
|
|
@@ -1129,9 +1126,6 @@
|
|
|
1129
1126
|
.py-20 {
|
|
1130
1127
|
padding-block: calc(var(--spacing) * 20);
|
|
1131
1128
|
}
|
|
1132
|
-
.pl-0 {
|
|
1133
|
-
padding-left: calc(var(--spacing) * 0);
|
|
1134
|
-
}
|
|
1135
1129
|
.pl-2 {
|
|
1136
1130
|
padding-left: calc(var(--spacing) * 2);
|
|
1137
1131
|
}
|
package/package.json
CHANGED