vueless 0.0.360 → 0.0.361
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
package/ui.data-table/UTable.vue
CHANGED
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
</td>
|
|
177
177
|
</tr>
|
|
178
178
|
|
|
179
|
-
<
|
|
179
|
+
<UTableRow
|
|
180
180
|
v-bind="bodyRowAttrs(getRowClasses(row))"
|
|
181
181
|
v-model:selected-rows="selectedRows"
|
|
182
182
|
:selectable="selectable"
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
>
|
|
205
205
|
<slot :name="`cell-${key}`" :value="slotValues.value" :row="slotValues.row" />
|
|
206
206
|
</template>
|
|
207
|
-
</
|
|
207
|
+
</UTableRow>
|
|
208
208
|
|
|
209
209
|
<tr
|
|
210
210
|
v-if="rowIndex === lastRow && hasSlotContent($slots['after-last-row'])"
|
|
@@ -278,7 +278,7 @@ import UEmpty from "../ui.text-empty/UEmpty.vue";
|
|
|
278
278
|
import UDivider from "../ui.container-divider/UDivider.vue";
|
|
279
279
|
import UCheckbox from "../ui.form-checkbox/UCheckbox.vue";
|
|
280
280
|
import ULoaderTop from "../ui.loader-top/ULoaderTop.vue";
|
|
281
|
-
import
|
|
281
|
+
import UTableRow from "./UTableRow.vue";
|
|
282
282
|
|
|
283
283
|
import { getDefault } from "../utils/utilUI.js";
|
|
284
284
|
|
|
@@ -32,7 +32,7 @@ const DefaultTemplate = (args) => ({
|
|
|
32
32
|
return { slots, args, updateProgress };
|
|
33
33
|
},
|
|
34
34
|
template: `
|
|
35
|
-
<UCol
|
|
35
|
+
<UCol>
|
|
36
36
|
<UProgress v-bind="args">${args.slotTemplate || getSlotsFragment()}</UProgress>
|
|
37
37
|
<UButton label="Next →" size="sm" variant="thirdary" filled @click="updateProgress" />
|
|
38
38
|
</UCol>
|
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.361",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -58,105 +58,6 @@
|
|
|
58
58
|
"symbol": "default"
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
|
-
{
|
|
62
|
-
"name": "TableRow",
|
|
63
|
-
"description": "",
|
|
64
|
-
"attributes": [
|
|
65
|
-
{
|
|
66
|
-
"name": "row",
|
|
67
|
-
"required": true,
|
|
68
|
-
"value": {
|
|
69
|
-
"kind": "expression",
|
|
70
|
-
"type": "object"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"name": "columns",
|
|
75
|
-
"required": true,
|
|
76
|
-
"value": {
|
|
77
|
-
"kind": "expression",
|
|
78
|
-
"type": "array"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"name": "tag",
|
|
83
|
-
"value": {
|
|
84
|
-
"kind": "expression",
|
|
85
|
-
"type": "string"
|
|
86
|
-
},
|
|
87
|
-
"default": "\"tr\""
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
"name": "selectable",
|
|
91
|
-
"value": {
|
|
92
|
-
"kind": "expression",
|
|
93
|
-
"type": "boolean"
|
|
94
|
-
},
|
|
95
|
-
"default": "false"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"name": "nestedLevel",
|
|
99
|
-
"value": {
|
|
100
|
-
"kind": "expression",
|
|
101
|
-
"type": "number"
|
|
102
|
-
},
|
|
103
|
-
"default": "0"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"name": "dataTest",
|
|
107
|
-
"required": true,
|
|
108
|
-
"value": {
|
|
109
|
-
"kind": "expression",
|
|
110
|
-
"type": "string"
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"name": "attrs",
|
|
115
|
-
"required": true,
|
|
116
|
-
"value": {
|
|
117
|
-
"kind": "expression",
|
|
118
|
-
"type": "object"
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"name": "config",
|
|
123
|
-
"required": true,
|
|
124
|
-
"value": {
|
|
125
|
-
"kind": "expression",
|
|
126
|
-
"type": "object"
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
],
|
|
130
|
-
"events": [
|
|
131
|
-
{
|
|
132
|
-
"name": "toggleRowVisibility"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"name": "click"
|
|
136
|
-
}
|
|
137
|
-
],
|
|
138
|
-
"slots": [
|
|
139
|
-
{
|
|
140
|
-
"name": "`cell-${key}`",
|
|
141
|
-
"scoped": true,
|
|
142
|
-
"bindings": [
|
|
143
|
-
{
|
|
144
|
-
"name": "name"
|
|
145
|
-
},
|
|
146
|
-
{
|
|
147
|
-
"name": "value"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"name": "row"
|
|
151
|
-
}
|
|
152
|
-
]
|
|
153
|
-
}
|
|
154
|
-
],
|
|
155
|
-
"source": {
|
|
156
|
-
"module": "./src/ui.data-table/TableRow.vue",
|
|
157
|
-
"symbol": "default"
|
|
158
|
-
}
|
|
159
|
-
},
|
|
160
61
|
{
|
|
161
62
|
"name": "UAccordion",
|
|
162
63
|
"description": "",
|
|
@@ -8376,6 +8277,105 @@
|
|
|
8376
8277
|
"symbol": "default"
|
|
8377
8278
|
}
|
|
8378
8279
|
},
|
|
8280
|
+
{
|
|
8281
|
+
"name": "UTableRow",
|
|
8282
|
+
"description": "",
|
|
8283
|
+
"attributes": [
|
|
8284
|
+
{
|
|
8285
|
+
"name": "row",
|
|
8286
|
+
"required": true,
|
|
8287
|
+
"value": {
|
|
8288
|
+
"kind": "expression",
|
|
8289
|
+
"type": "object"
|
|
8290
|
+
}
|
|
8291
|
+
},
|
|
8292
|
+
{
|
|
8293
|
+
"name": "columns",
|
|
8294
|
+
"required": true,
|
|
8295
|
+
"value": {
|
|
8296
|
+
"kind": "expression",
|
|
8297
|
+
"type": "array"
|
|
8298
|
+
}
|
|
8299
|
+
},
|
|
8300
|
+
{
|
|
8301
|
+
"name": "tag",
|
|
8302
|
+
"value": {
|
|
8303
|
+
"kind": "expression",
|
|
8304
|
+
"type": "string"
|
|
8305
|
+
},
|
|
8306
|
+
"default": "\"tr\""
|
|
8307
|
+
},
|
|
8308
|
+
{
|
|
8309
|
+
"name": "selectable",
|
|
8310
|
+
"value": {
|
|
8311
|
+
"kind": "expression",
|
|
8312
|
+
"type": "boolean"
|
|
8313
|
+
},
|
|
8314
|
+
"default": "false"
|
|
8315
|
+
},
|
|
8316
|
+
{
|
|
8317
|
+
"name": "nestedLevel",
|
|
8318
|
+
"value": {
|
|
8319
|
+
"kind": "expression",
|
|
8320
|
+
"type": "number"
|
|
8321
|
+
},
|
|
8322
|
+
"default": "0"
|
|
8323
|
+
},
|
|
8324
|
+
{
|
|
8325
|
+
"name": "dataTest",
|
|
8326
|
+
"required": true,
|
|
8327
|
+
"value": {
|
|
8328
|
+
"kind": "expression",
|
|
8329
|
+
"type": "string"
|
|
8330
|
+
}
|
|
8331
|
+
},
|
|
8332
|
+
{
|
|
8333
|
+
"name": "attrs",
|
|
8334
|
+
"required": true,
|
|
8335
|
+
"value": {
|
|
8336
|
+
"kind": "expression",
|
|
8337
|
+
"type": "object"
|
|
8338
|
+
}
|
|
8339
|
+
},
|
|
8340
|
+
{
|
|
8341
|
+
"name": "config",
|
|
8342
|
+
"required": true,
|
|
8343
|
+
"value": {
|
|
8344
|
+
"kind": "expression",
|
|
8345
|
+
"type": "object"
|
|
8346
|
+
}
|
|
8347
|
+
}
|
|
8348
|
+
],
|
|
8349
|
+
"events": [
|
|
8350
|
+
{
|
|
8351
|
+
"name": "toggleRowVisibility"
|
|
8352
|
+
},
|
|
8353
|
+
{
|
|
8354
|
+
"name": "click"
|
|
8355
|
+
}
|
|
8356
|
+
],
|
|
8357
|
+
"slots": [
|
|
8358
|
+
{
|
|
8359
|
+
"name": "`cell-${key}`",
|
|
8360
|
+
"scoped": true,
|
|
8361
|
+
"bindings": [
|
|
8362
|
+
{
|
|
8363
|
+
"name": "name"
|
|
8364
|
+
},
|
|
8365
|
+
{
|
|
8366
|
+
"name": "value"
|
|
8367
|
+
},
|
|
8368
|
+
{
|
|
8369
|
+
"name": "row"
|
|
8370
|
+
}
|
|
8371
|
+
]
|
|
8372
|
+
}
|
|
8373
|
+
],
|
|
8374
|
+
"source": {
|
|
8375
|
+
"module": "./src/ui.data-table/UTableRow.vue",
|
|
8376
|
+
"symbol": "default"
|
|
8377
|
+
}
|
|
8378
|
+
},
|
|
8379
8379
|
{
|
|
8380
8380
|
"name": "UTabs",
|
|
8381
8381
|
"description": "",
|
|
File without changes
|