@vaneui/ui 0.3.0-alpha.20250914103012.c204dad → 0.3.1-alpha.20250914202143.38eda80
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/card.d.ts +6 -0
- package/dist/components/ui/card.d.ts.map +1 -1
- package/dist/components/ui/checkbox.d.ts +6 -0
- package/dist/components/ui/checkbox.d.ts.map +1 -1
- package/dist/components/ui/code.d.ts +6 -0
- package/dist/components/ui/code.d.ts.map +1 -1
- package/dist/components/ui/col.d.ts +6 -0
- package/dist/components/ui/col.d.ts.map +1 -1
- package/dist/components/ui/container.d.ts +6 -0
- package/dist/components/ui/container.d.ts.map +1 -1
- package/dist/components/ui/img.d.ts +6 -0
- package/dist/components/ui/img.d.ts.map +1 -1
- package/dist/components/ui/input.d.ts +6 -0
- package/dist/components/ui/input.d.ts.map +1 -1
- package/dist/components/ui/props/border.d.ts +36 -2
- package/dist/components/ui/props/border.d.ts.map +1 -1
- package/dist/components/ui/props/keys.d.ts +7 -5
- package/dist/components/ui/props/keys.d.ts.map +1 -1
- package/dist/components/ui/row.d.ts +6 -0
- package/dist/components/ui/row.d.ts.map +1 -1
- package/dist/components/ui/section.d.ts +6 -0
- package/dist/components/ui/section.d.ts.map +1 -1
- package/dist/components/ui/stack.d.ts +6 -0
- package/dist/components/ui/stack.d.ts.map +1 -1
- package/dist/components/ui/theme/appearance/appearanceTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/common/ComponentTheme.d.ts.map +1 -1
- package/dist/components/ui/theme/layout/borderTheme.d.ts +9 -7
- package/dist/components/ui/theme/layout/borderTheme.d.ts.map +1 -1
- package/dist/index.esm.js +78 -22
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +92 -21
- package/dist/index.js.map +1 -1
- package/dist/ui.css +24 -0
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -801,6 +801,30 @@
|
|
|
801
801
|
border-style: var(--tw-border-style);
|
|
802
802
|
border-width: 2px;
|
|
803
803
|
}
|
|
804
|
+
.border-x {
|
|
805
|
+
border-inline-style: var(--tw-border-style);
|
|
806
|
+
border-inline-width: 1px;
|
|
807
|
+
}
|
|
808
|
+
.border-y {
|
|
809
|
+
border-block-style: var(--tw-border-style);
|
|
810
|
+
border-block-width: 1px;
|
|
811
|
+
}
|
|
812
|
+
.border-t {
|
|
813
|
+
border-top-style: var(--tw-border-style);
|
|
814
|
+
border-top-width: 1px;
|
|
815
|
+
}
|
|
816
|
+
.border-r {
|
|
817
|
+
border-right-style: var(--tw-border-style);
|
|
818
|
+
border-right-width: 1px;
|
|
819
|
+
}
|
|
820
|
+
.border-b {
|
|
821
|
+
border-bottom-style: var(--tw-border-style);
|
|
822
|
+
border-bottom-width: 1px;
|
|
823
|
+
}
|
|
824
|
+
.border-l {
|
|
825
|
+
border-left-style: var(--tw-border-style);
|
|
826
|
+
border-left-width: 1px;
|
|
827
|
+
}
|
|
804
828
|
.border-dashed {
|
|
805
829
|
--tw-border-style: dashed;
|
|
806
830
|
border-style: dashed;
|
package/package.json
CHANGED