vueless 0.0.448 → 0.0.450

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.448",
3
+ "version": "0.0.450",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -198,13 +198,13 @@ const props = defineProps({
198
198
  const emit = defineEmits([
199
199
  /**
200
200
  * Triggers when checkbox is toggled.
201
- * @property {Boolean} newModelValue
201
+ * @property {Boolean} modelValue
202
202
  */
203
203
  "update:modelValue",
204
204
 
205
205
  /**
206
206
  * Triggers when checkbox is toggled.
207
- * @property {Boolean} newModelValue
207
+ * @property {Boolean} modelValue
208
208
  */
209
209
  "input",
210
210
  ]);
@@ -24,8 +24,8 @@
24
24
  >
25
25
  <!--
26
26
  @slot Use it to add icon before the text.
27
- @binding {string} iconName
28
- @binding {string} iconSize
27
+ @binding {string} icon-name
28
+ @binding {string} icon-size
29
29
  -->
30
30
  <slot name="left-icon" :icon-name="leftIcon" :icon-size="iconSize">
31
31
  <UIcon
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.448",
4
+ "version": "0.0.450",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -1592,7 +1592,7 @@
1592
1592
  "type": [
1593
1593
  "Boolean"
1594
1594
  ],
1595
- "name": "newModelValue"
1595
+ "name": "modelValue"
1596
1596
  }
1597
1597
  ]
1598
1598
  },
@@ -1604,7 +1604,7 @@
1604
1604
  "type": [
1605
1605
  "Boolean"
1606
1606
  ],
1607
- "name": "newModelValue"
1607
+ "name": "modelValue"
1608
1608
  }
1609
1609
  ]
1610
1610
  }
@@ -4690,9 +4690,11 @@
4690
4690
  "description": "Use it to add icon before the text.",
4691
4691
  "bindings": [
4692
4692
  {
4693
+ "type": "string",
4693
4694
  "name": "icon-name"
4694
4695
  },
4695
4696
  {
4697
+ "type": "string",
4696
4698
  "name": "icon-size"
4697
4699
  }
4698
4700
  ]