vueless 1.4.11-beta.3 → 1.4.11-beta.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vueless",
3
- "version": "1.4.11-beta.3",
3
+ "version": "1.4.11-beta.4",
4
4
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
5
5
  "author": "Johnny Grid <hello@vueless.com> (https://vueless.com)",
6
6
  "homepage": "https://vueless.com",
@@ -2,6 +2,9 @@ export default /*tw*/ {
2
2
  wrapper: {
3
3
  base: "grid",
4
4
  variants: {
5
+ block: {
6
+ true: "w-full",
7
+ },
5
8
  cols: {
6
9
  "1": "grid-cols-1",
7
10
  "2": "grid-cols-2",
@@ -125,5 +128,6 @@ export default /*tw*/ {
125
128
  placeContent: "start",
126
129
  placeItems: "start",
127
130
  tag: "div",
131
+ block: false,
128
132
  },
129
133
  };
@@ -74,6 +74,11 @@ export interface Props {
74
74
  */
75
75
  placeItems?: "start" | "end" | "end-safe" | "center" | "center-safe" | "stretch" | "baseline";
76
76
 
77
+ /**
78
+ * Make the Grid expand to fill the entire width of its container.
79
+ */
80
+ block?: boolean;
81
+
77
82
  /**
78
83
  * Allows changing HTML tag.
79
84
  */
@@ -140,7 +140,7 @@ export default /*tw*/ {
140
140
  },
141
141
  listbox: `
142
142
  {UListbox} border-0 outline-solid outline-1! outline-default
143
- my-2 group-[*]/top:bottom-full group-[*]/top:top-auto top-full w-full
143
+ my-2 group-[*]/top:bottom-full group-[*]/top:top-auto top-full w-full left-0
144
144
  `,
145
145
  i18n: {
146
146
  listIsEmpty: "List is empty.",