vueless 0.0.139 → 0.0.140
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/index.vue +16 -13
- package/web-types.json +19 -18
package/package.json
CHANGED
package/ui.button/index.vue
CHANGED
|
@@ -45,14 +45,6 @@ const props = defineProps({
|
|
|
45
45
|
default: UIService.get(defaultConfig, UButton).default.variant,
|
|
46
46
|
},
|
|
47
47
|
|
|
48
|
-
/**
|
|
49
|
-
* Fill the background for thirdary variant.
|
|
50
|
-
*/
|
|
51
|
-
filled: {
|
|
52
|
-
type: Boolean,
|
|
53
|
-
default: UIService.get(defaultConfig, UButton).default.filled,
|
|
54
|
-
},
|
|
55
|
-
|
|
56
48
|
/**
|
|
57
49
|
* Button color.
|
|
58
50
|
* @values brand, grayscale, gray, red, orange, amber, yellow, lime, green, emerald, teal, cyan, sky, blue, indigo, violet, purple, fuchsia, pink, rose, white
|
|
@@ -79,6 +71,22 @@ const props = defineProps({
|
|
|
79
71
|
default: "",
|
|
80
72
|
},
|
|
81
73
|
|
|
74
|
+
/**
|
|
75
|
+
* Allows changing button html tag.
|
|
76
|
+
*/
|
|
77
|
+
tag: {
|
|
78
|
+
type: String,
|
|
79
|
+
default: UIService.get(defaultConfig, UButton).default.tag,
|
|
80
|
+
},
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Fill the background for thirdary variant.
|
|
84
|
+
*/
|
|
85
|
+
filled: {
|
|
86
|
+
type: Boolean,
|
|
87
|
+
default: UIService.get(defaultConfig, UButton).default.filled,
|
|
88
|
+
},
|
|
89
|
+
|
|
82
90
|
/**
|
|
83
91
|
* Disable the button.
|
|
84
92
|
*/
|
|
@@ -136,11 +144,6 @@ const props = defineProps({
|
|
|
136
144
|
default: () => ({}),
|
|
137
145
|
},
|
|
138
146
|
|
|
139
|
-
tag: {
|
|
140
|
-
type: String,
|
|
141
|
-
default: UIService.get(defaultConfig, UButton).default.tag,
|
|
142
|
-
},
|
|
143
|
-
|
|
144
147
|
/**
|
|
145
148
|
* Data-cy attribute for automated testing.
|
|
146
149
|
*/
|
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.140",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -553,15 +553,6 @@
|
|
|
553
553
|
},
|
|
554
554
|
"default": "primary"
|
|
555
555
|
},
|
|
556
|
-
{
|
|
557
|
-
"name": "filled",
|
|
558
|
-
"description": "Fill the background for thirdary variant.",
|
|
559
|
-
"value": {
|
|
560
|
-
"kind": "expression",
|
|
561
|
-
"type": "boolean"
|
|
562
|
-
},
|
|
563
|
-
"default": "false"
|
|
564
|
-
},
|
|
565
556
|
{
|
|
566
557
|
"name": "color",
|
|
567
558
|
"description": "Button color.",
|
|
@@ -589,6 +580,24 @@
|
|
|
589
580
|
},
|
|
590
581
|
"default": "\"\""
|
|
591
582
|
},
|
|
583
|
+
{
|
|
584
|
+
"name": "tag",
|
|
585
|
+
"description": "Allows changing button html tag.",
|
|
586
|
+
"value": {
|
|
587
|
+
"kind": "expression",
|
|
588
|
+
"type": "string"
|
|
589
|
+
},
|
|
590
|
+
"default": "button"
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"name": "filled",
|
|
594
|
+
"description": "Fill the background for thirdary variant.",
|
|
595
|
+
"value": {
|
|
596
|
+
"kind": "expression",
|
|
597
|
+
"type": "boolean"
|
|
598
|
+
},
|
|
599
|
+
"default": "false"
|
|
600
|
+
},
|
|
592
601
|
{
|
|
593
602
|
"name": "disabled",
|
|
594
603
|
"description": "Disable the button.",
|
|
@@ -652,14 +661,6 @@
|
|
|
652
661
|
},
|
|
653
662
|
"default": "{}"
|
|
654
663
|
},
|
|
655
|
-
{
|
|
656
|
-
"name": "tag",
|
|
657
|
-
"value": {
|
|
658
|
-
"kind": "expression",
|
|
659
|
-
"type": "string"
|
|
660
|
-
},
|
|
661
|
-
"default": "button"
|
|
662
|
-
},
|
|
663
664
|
{
|
|
664
665
|
"name": "dataCy",
|
|
665
666
|
"description": "Data-cy attribute for automated testing.",
|