vueless 0.0.461 → 0.0.462

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.461",
3
+ "version": "0.0.462",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -25,8 +25,8 @@
25
25
  <template #left-icon="{ iconName, iconSize }">
26
26
  <!--
27
27
  @slot Use it add an icon before the date.
28
- @binding {string} iconName
29
- @binding {string} iconSize
28
+ @binding {string} icon-name
29
+ @binding {string} icon-nize
30
30
  -->
31
31
  <slot name="left-icon" :icon-name="iconName" :icon-size="iconSize" />
32
32
  </template>
@@ -34,8 +34,8 @@
34
34
  <template #right-icon="{ iconName, iconSize }">
35
35
  <!--
36
36
  @slot Use it add an icon after the date.
37
- @binding {string} iconName
38
- @binding {string} iconSize
37
+ @binding {string} icon-name
38
+ @binding {string} icon-size
39
39
  -->
40
40
  <slot name="right-icon" :icon-name="iconName" :icon-size="iconSize">
41
41
  <UIcon :name="iconName" :size="iconSize" color="gray" />
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.461",
4
+ "version": "0.0.462",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -2575,6 +2575,7 @@
2575
2575
  "description": "Use it add an icon before the date.",
2576
2576
  "bindings": [
2577
2577
  {
2578
+ "type": "string",
2578
2579
  "name": "icon-name"
2579
2580
  },
2580
2581
  {
@@ -2588,9 +2589,11 @@
2588
2589
  "description": "Use it add an icon after the date.",
2589
2590
  "bindings": [
2590
2591
  {
2592
+ "type": "string",
2591
2593
  "name": "icon-name"
2592
2594
  },
2593
2595
  {
2596
+ "type": "string",
2594
2597
  "name": "icon-size"
2595
2598
  }
2596
2599
  ]