vueless 0.0.407 → 0.0.409

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.407",
3
+ "version": "0.0.409",
4
4
  "license": "MIT",
5
5
  "description": "Vue Styleless UI Component Library, powered by Tailwind CSS.",
6
6
  "keywords": [
@@ -53,7 +53,7 @@
53
53
  "@release-it/bumper": "^6.0.1",
54
54
  "@vitejs/plugin-vue": "^5.0.5",
55
55
  "@vue/eslint-config-prettier": "^9.0.0",
56
- "@vueless/plugin-vite": "^0.0.65",
56
+ "@vueless/plugin-vite": "^0.0.66",
57
57
  "@vueless/storybook": "^0.0.34",
58
58
  "@vueless/web-types": "^0.0.15",
59
59
  "autoprefixer": "^10.4.19",
@@ -200,9 +200,19 @@
200
200
  :key="index"
201
201
  #[`cell-${key}`]="slotValues"
202
202
  >
203
+ <!--
204
+ @slot Use it to customise needed table cell.
205
+ @binding {string} name
206
+ @binding {string} value
207
+ @binding {object} row
208
+ -->
203
209
  <slot :name="`cell-${key}`" :value="slotValues.value" :row="slotValues.row" />
204
210
  </template>
205
211
  <template #nested-content>
212
+ <!--
213
+ @slot Use it to add nested content inside a row.
214
+ @binding {object} row
215
+ -->
206
216
  <slot v-if="row" name="nested-content" :row="row" />
207
217
  </template>
208
218
  </UTableRow>
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "framework": "vue",
3
3
  "name": "vueless",
4
- "version": "0.0.407",
4
+ "version": "0.0.409",
5
5
  "contributions": {
6
6
  "html": {
7
7
  "description-markup": "markdown",
@@ -8273,14 +8273,18 @@
8273
8273
  {
8274
8274
  "name": "`cell-${key}`",
8275
8275
  "scoped": true,
8276
+ "description": "Use it to customise needed table cell.",
8276
8277
  "bindings": [
8277
8278
  {
8279
+ "type": "string",
8278
8280
  "name": "name"
8279
8281
  },
8280
8282
  {
8283
+ "type": "string",
8281
8284
  "name": "value"
8282
8285
  },
8283
8286
  {
8287
+ "type": "object",
8284
8288
  "name": "row"
8285
8289
  }
8286
8290
  ]
@@ -8288,8 +8292,10 @@
8288
8292
  {
8289
8293
  "name": "nested-content",
8290
8294
  "scoped": true,
8295
+ "description": "Use it to add nested content inside a row.",
8291
8296
  "bindings": [
8292
8297
  {
8298
+ "type": "object",
8293
8299
  "name": "row"
8294
8300
  }
8295
8301
  ]