vueless 0.0.68 → 0.0.69
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
|
@@ -65,8 +65,10 @@ export default /*tw*/ {
|
|
|
65
65
|
color: "brand",
|
|
66
66
|
type: "link",
|
|
67
67
|
size: "md",
|
|
68
|
-
activeClass: "
|
|
69
|
-
exactActiveClass: "
|
|
68
|
+
activeClass: "",
|
|
69
|
+
exactActiveClass: "",
|
|
70
|
+
wrapperActiveClass: "",
|
|
71
|
+
wrapperExactActiveClass: "",
|
|
70
72
|
underlined: undefined,
|
|
71
73
|
block: false,
|
|
72
74
|
noRing: false,
|
package/ui.button-link/index.vue
CHANGED
|
@@ -126,7 +126,7 @@ const props = defineProps({
|
|
|
126
126
|
* Apply classes to the link when its route is active or when it matches any parent route.
|
|
127
127
|
*/
|
|
128
128
|
activeClass: {
|
|
129
|
-
type:
|
|
129
|
+
type: String,
|
|
130
130
|
default: UIService.get(defaultConfig, ULink).default.activeClass,
|
|
131
131
|
},
|
|
132
132
|
|
|
@@ -134,7 +134,7 @@ const props = defineProps({
|
|
|
134
134
|
* Apply classes to the link when its route is active.
|
|
135
135
|
*/
|
|
136
136
|
exactActiveClass: {
|
|
137
|
-
type:
|
|
137
|
+
type: String,
|
|
138
138
|
default: UIService.get(defaultConfig, ULink).default.exactActiveClass,
|
|
139
139
|
},
|
|
140
140
|
|
|
@@ -142,7 +142,7 @@ const props = defineProps({
|
|
|
142
142
|
* Apply classes to the wrapper div when link route is active or when it matches any parent route.
|
|
143
143
|
*/
|
|
144
144
|
wrapperActiveClass: {
|
|
145
|
-
type:
|
|
145
|
+
type: String,
|
|
146
146
|
default: UIService.get(defaultConfig, ULink).default.wrapperActiveClass,
|
|
147
147
|
},
|
|
148
148
|
|
|
@@ -150,7 +150,7 @@ const props = defineProps({
|
|
|
150
150
|
* Apply classes to the wrapper div when link route is active.
|
|
151
151
|
*/
|
|
152
152
|
wrapperExactActiveClass: {
|
|
153
|
-
type:
|
|
153
|
+
type: String,
|
|
154
154
|
default: UIService.get(defaultConfig, ULink).default.wrapperExactActiveClass,
|
|
155
155
|
},
|
|
156
156
|
|
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.69",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -4289,36 +4289,36 @@
|
|
|
4289
4289
|
"description": "Apply classes to the link when its route is active or when it matches any parent route.",
|
|
4290
4290
|
"value": {
|
|
4291
4291
|
"kind": "expression",
|
|
4292
|
-
"type": "
|
|
4292
|
+
"type": "string"
|
|
4293
4293
|
},
|
|
4294
|
-
"default": "
|
|
4294
|
+
"default": ""
|
|
4295
4295
|
},
|
|
4296
4296
|
{
|
|
4297
4297
|
"name": "exactActiveClass",
|
|
4298
4298
|
"description": "Apply classes to the link when its route is active.",
|
|
4299
4299
|
"value": {
|
|
4300
4300
|
"kind": "expression",
|
|
4301
|
-
"type": "
|
|
4301
|
+
"type": "string"
|
|
4302
4302
|
},
|
|
4303
|
-
"default": "
|
|
4303
|
+
"default": ""
|
|
4304
4304
|
},
|
|
4305
4305
|
{
|
|
4306
4306
|
"name": "wrapperActiveClass",
|
|
4307
4307
|
"description": "Apply classes to the wrapper div when link route is active or when it matches any parent route.",
|
|
4308
4308
|
"value": {
|
|
4309
4309
|
"kind": "expression",
|
|
4310
|
-
"type": "
|
|
4310
|
+
"type": "string"
|
|
4311
4311
|
},
|
|
4312
|
-
"default": "
|
|
4312
|
+
"default": ""
|
|
4313
4313
|
},
|
|
4314
4314
|
{
|
|
4315
4315
|
"name": "wrapperExactActiveClass",
|
|
4316
4316
|
"description": "Apply classes to the wrapper div when link route is active.",
|
|
4317
4317
|
"value": {
|
|
4318
4318
|
"kind": "expression",
|
|
4319
|
-
"type": "
|
|
4319
|
+
"type": "string"
|
|
4320
4320
|
},
|
|
4321
|
-
"default": "
|
|
4321
|
+
"default": ""
|
|
4322
4322
|
},
|
|
4323
4323
|
{
|
|
4324
4324
|
"name": "underlined",
|