vueless 0.0.393 → 0.0.394
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.container-col/UCol.vue +11 -2
- package/ui.container-col/config.js +12 -0
- package/ui.container-row/URow.vue +11 -2
- package/ui.container-row/config.js +12 -0
- package/web-types.json +23 -5
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ const props = defineProps({
|
|
|
25
25
|
},
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Items horizontal align (align-items).
|
|
29
29
|
* @values start, end, center, stretch, baseline
|
|
30
30
|
*/
|
|
31
31
|
align: {
|
|
@@ -34,7 +34,16 @@ const props = defineProps({
|
|
|
34
34
|
},
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Items horizontal align for multi-row flex containers (align-content).
|
|
38
|
+
* @values start, end, center, around, evenly, between, normal, stretch, baseline
|
|
39
|
+
*/
|
|
40
|
+
content: {
|
|
41
|
+
type: String,
|
|
42
|
+
default: getDefault(defaultConfig, UCol).content,
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Items vertical align (justify-content).
|
|
38
47
|
* @values start, end, center, around, evenly, between
|
|
39
48
|
*/
|
|
40
49
|
justify: {
|
|
@@ -36,11 +36,23 @@ export default /*tw*/ {
|
|
|
36
36
|
evenly: "justify-evenly",
|
|
37
37
|
between: "justify-between",
|
|
38
38
|
},
|
|
39
|
+
content: {
|
|
40
|
+
end: "content-end",
|
|
41
|
+
start: "content-start",
|
|
42
|
+
center: "content-center",
|
|
43
|
+
around: "content-around",
|
|
44
|
+
evenly: "content-evenly",
|
|
45
|
+
normal: "content-normal",
|
|
46
|
+
stretch: "content-stretch",
|
|
47
|
+
between: "content-between",
|
|
48
|
+
baseline: "content-baseline",
|
|
49
|
+
},
|
|
39
50
|
},
|
|
40
51
|
},
|
|
41
52
|
defaults: {
|
|
42
53
|
gap: "md",
|
|
43
54
|
align: "start",
|
|
55
|
+
content: "start",
|
|
44
56
|
justify: "start",
|
|
45
57
|
wrap: false,
|
|
46
58
|
reverse: false,
|
|
@@ -25,7 +25,7 @@ const props = defineProps({
|
|
|
25
25
|
},
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Items vertical align (align-items).
|
|
29
29
|
* @values start, end, center, stretch, baseline
|
|
30
30
|
*/
|
|
31
31
|
align: {
|
|
@@ -34,7 +34,16 @@ const props = defineProps({
|
|
|
34
34
|
},
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Items vertical align for multi-row flex containers (align-content).
|
|
38
|
+
* @values start, end, center, around, evenly, between, normal, stretch, baseline
|
|
39
|
+
*/
|
|
40
|
+
content: {
|
|
41
|
+
type: String,
|
|
42
|
+
default: getDefault(defaultConfig, URow).content,
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Items horizontally align (justify-content).
|
|
38
47
|
* @values start, end, center, around, evenly, between
|
|
39
48
|
*/
|
|
40
49
|
justify: {
|
|
@@ -37,11 +37,23 @@ export default /*tw*/ {
|
|
|
37
37
|
evenly: "justify-evenly",
|
|
38
38
|
between: "justify-between",
|
|
39
39
|
},
|
|
40
|
+
content: {
|
|
41
|
+
end: "content-end",
|
|
42
|
+
start: "content-start",
|
|
43
|
+
center: "content-center",
|
|
44
|
+
around: "content-around",
|
|
45
|
+
evenly: "content-evenly",
|
|
46
|
+
normal: "content-normal",
|
|
47
|
+
stretch: "content-stretch",
|
|
48
|
+
between: "content-between",
|
|
49
|
+
baseline: "content-baseline",
|
|
50
|
+
},
|
|
40
51
|
},
|
|
41
52
|
},
|
|
42
53
|
defaults: {
|
|
43
54
|
gap: "md",
|
|
44
55
|
align: "start",
|
|
56
|
+
content: "start",
|
|
45
57
|
justify: "start",
|
|
46
58
|
wrap: false,
|
|
47
59
|
reverse: false,
|
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "vueless",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.394",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -1852,16 +1852,25 @@
|
|
|
1852
1852
|
},
|
|
1853
1853
|
{
|
|
1854
1854
|
"name": "align",
|
|
1855
|
-
"description": "
|
|
1855
|
+
"description": "Items horizontal align (align-items).",
|
|
1856
1856
|
"value": {
|
|
1857
1857
|
"kind": "expression",
|
|
1858
1858
|
"type": "'start' | 'end' | 'center' | 'stretch' | 'baseline'"
|
|
1859
1859
|
},
|
|
1860
1860
|
"default": "start"
|
|
1861
1861
|
},
|
|
1862
|
+
{
|
|
1863
|
+
"name": "content",
|
|
1864
|
+
"description": "Items horizontal align for multi-row flex containers (align-content).",
|
|
1865
|
+
"value": {
|
|
1866
|
+
"kind": "expression",
|
|
1867
|
+
"type": "'start' | 'end' | 'center' | 'around' | 'evenly' | 'between' | 'normal' | 'stretch' | 'baseline'"
|
|
1868
|
+
},
|
|
1869
|
+
"default": "start"
|
|
1870
|
+
},
|
|
1862
1871
|
{
|
|
1863
1872
|
"name": "justify",
|
|
1864
|
-
"description": "
|
|
1873
|
+
"description": "Items vertical align (justify-content).",
|
|
1865
1874
|
"value": {
|
|
1866
1875
|
"kind": "expression",
|
|
1867
1876
|
"type": "'start' | 'end' | 'center' | 'around' | 'evenly' | 'between'"
|
|
@@ -7258,16 +7267,25 @@
|
|
|
7258
7267
|
},
|
|
7259
7268
|
{
|
|
7260
7269
|
"name": "align",
|
|
7261
|
-
"description": "
|
|
7270
|
+
"description": "Items vertical align (align-items).",
|
|
7262
7271
|
"value": {
|
|
7263
7272
|
"kind": "expression",
|
|
7264
7273
|
"type": "'start' | 'end' | 'center' | 'stretch' | 'baseline'"
|
|
7265
7274
|
},
|
|
7266
7275
|
"default": "start"
|
|
7267
7276
|
},
|
|
7277
|
+
{
|
|
7278
|
+
"name": "content",
|
|
7279
|
+
"description": "Items vertical align for multi-row flex containers (align-content).",
|
|
7280
|
+
"value": {
|
|
7281
|
+
"kind": "expression",
|
|
7282
|
+
"type": "'start' | 'end' | 'center' | 'around' | 'evenly' | 'between' | 'normal' | 'stretch' | 'baseline'"
|
|
7283
|
+
},
|
|
7284
|
+
"default": "start"
|
|
7285
|
+
},
|
|
7268
7286
|
{
|
|
7269
7287
|
"name": "justify",
|
|
7270
|
-
"description": "
|
|
7288
|
+
"description": "Items horizontally align (justify-content).",
|
|
7271
7289
|
"value": {
|
|
7272
7290
|
"kind": "expression",
|
|
7273
7291
|
"type": "'start' | 'end' | 'center' | 'around' | 'evenly' | 'between'"
|