vueless 0.0.825-beta.13 → 0.0.825-beta.14

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": "0.0.825-beta.13",
3
+ "version": "0.0.825-beta.14",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -64,7 +64,7 @@ export interface Props {
64
64
  disabled?: boolean;
65
65
 
66
66
  /**
67
- * Make the Button fill the width with its container.
67
+ * Make the Button expand to fill the entire width of its container.
68
68
  */
69
69
  block?: boolean;
70
70
 
@@ -12,7 +12,7 @@ export interface ULinkSlotProps {
12
12
 
13
13
  export interface Props {
14
14
  /**
15
- * Button label.
15
+ * Link label.
16
16
  */
17
17
  label?: string;
18
18
 
@@ -91,7 +91,7 @@ export interface Props {
91
91
  disabled?: boolean;
92
92
 
93
93
  /**
94
- * Make the Button fill the width with its container.
94
+ * Make the Link expand to fill the entire width of its container.
95
95
  */
96
96
  block?: boolean;
97
97
 
@@ -52,7 +52,7 @@ export interface Props {
52
52
  disabled?: boolean;
53
53
 
54
54
  /**
55
- * Make the toggle fill the width with its container.
55
+ * Make the Toggle expand to fill the entire width of its container.
56
56
  */
57
57
  block?: boolean;
58
58
 
@@ -1,16 +1,16 @@
1
1
  export default /*tw*/ {
2
2
  wrapper: {
3
- base: "flex w-full",
3
+ base: "flex",
4
4
  variants: {
5
5
  reverse: {
6
- false: "flex-col md:flex-row",
7
- true: "flex-col-reverse md:flex-row-reverse",
6
+ false: "flex-row",
7
+ true: "flex-row-reverse",
8
8
  },
9
9
  wrap: {
10
10
  true: "flex-wrap",
11
11
  },
12
- noMobile: {
13
- true: "flex-row",
12
+ block: {
13
+ true: "w-full",
14
14
  },
15
15
  gap: {
16
16
  none: "gap-0",
@@ -56,7 +56,7 @@ export default /*tw*/ {
56
56
  content: "start",
57
57
  justify: "start",
58
58
  wrap: false,
59
+ block: false,
59
60
  reverse: false,
60
- noMobile: false,
61
61
  },
62
62
  };
@@ -128,22 +128,6 @@ Justify.parameters = {
128
128
  },
129
129
  };
130
130
 
131
- export const NoMobile = DefaultTemplate.bind({});
132
- NoMobile.args = {
133
- noMobile: true,
134
- slotTemplate: `
135
- <UInput label="First Name" />
136
- <UInput label="Last Name" />
137
- `,
138
- };
139
- NoMobile.parameters = {
140
- docs: {
141
- description: {
142
- story: "Disables mobile adaptivity.",
143
- },
144
- },
145
- };
146
-
147
131
  export const SlotDefault = DefaultTemplate.bind({});
148
132
  SlotDefault.args = {
149
133
  slotTemplate: `
@@ -45,9 +45,9 @@ export interface Props {
45
45
  wrap?: boolean;
46
46
 
47
47
  /**
48
- * Disables mobile adaptivity.
48
+ * Make the Row expand to fill the entire width of its container.
49
49
  */
50
- noMobile?: boolean;
50
+ block?: boolean;
51
51
 
52
52
  /**
53
53
  * Component config object.
@@ -36,7 +36,7 @@ export interface Props {
36
36
  scrollable?: boolean;
37
37
 
38
38
  /**
39
- * Make the Tabs fill the width with its container.
39
+ * Make the Tabs expand to fill the entire width of its container.
40
40
  */
41
41
  block?: boolean;
42
42