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 +1 -1
- package/ui.button/types.ts +1 -1
- package/ui.button-link/types.ts +2 -2
- package/ui.button-toggle/types.ts +1 -1
- package/ui.container-row/config.ts +6 -6
- package/ui.container-row/storybook/stories.ts +0 -16
- package/ui.container-row/types.ts +2 -2
- package/ui.navigation-tabs/types.ts +1 -1
package/package.json
CHANGED
package/ui.button/types.ts
CHANGED
package/ui.button-link/types.ts
CHANGED
|
@@ -12,7 +12,7 @@ export interface ULinkSlotProps {
|
|
|
12
12
|
|
|
13
13
|
export interface Props {
|
|
14
14
|
/**
|
|
15
|
-
*
|
|
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
|
|
94
|
+
* Make the Link expand to fill the entire width of its container.
|
|
95
95
|
*/
|
|
96
96
|
block?: boolean;
|
|
97
97
|
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
export default /*tw*/ {
|
|
2
2
|
wrapper: {
|
|
3
|
-
base: "flex
|
|
3
|
+
base: "flex",
|
|
4
4
|
variants: {
|
|
5
5
|
reverse: {
|
|
6
|
-
false: "flex-
|
|
7
|
-
true: "flex-
|
|
6
|
+
false: "flex-row",
|
|
7
|
+
true: "flex-row-reverse",
|
|
8
8
|
},
|
|
9
9
|
wrap: {
|
|
10
10
|
true: "flex-wrap",
|
|
11
11
|
},
|
|
12
|
-
|
|
13
|
-
true: "
|
|
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: `
|