vueless 0.0.165 → 0.0.167
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 +1 -1
- package/ui.data-table/composables/attrs.composable.js +122 -114
- package/ui.data-table/configs/default.config.js +42 -49
- package/ui.data-table/index.stories.js +40 -35
- package/ui.data-table/index.vue +220 -196
- package/ui.data-table-cell/configs/default.config.js +1 -1
- package/web-types.json +12 -21
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default /*tw*/ {
|
|
2
2
|
tableCell: {
|
|
3
3
|
base: `
|
|
4
|
-
p-[1.125rem] py-5 first:p-5
|
|
4
|
+
p-[1.125rem] py-5 first:p-5 group-[]/body:truncate group-[]/body:align-top
|
|
5
5
|
group-[]/body:last:p-5 !overflow-visible
|
|
6
6
|
`,
|
|
7
7
|
variants: {
|
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.167",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -6549,7 +6549,7 @@
|
|
|
6549
6549
|
},
|
|
6550
6550
|
{
|
|
6551
6551
|
"name": "dateDivider",
|
|
6552
|
-
"description": "Show
|
|
6552
|
+
"description": "Show date divider label.",
|
|
6553
6553
|
"value": {
|
|
6554
6554
|
"kind": "expression",
|
|
6555
6555
|
"type": "array|boolean"
|
|
@@ -6597,15 +6597,7 @@
|
|
|
6597
6597
|
"description": "Sets the nesting level from which folding button need to be shown.",
|
|
6598
6598
|
"value": {
|
|
6599
6599
|
"kind": "expression",
|
|
6600
|
-
"type": "number"
|
|
6601
|
-
}
|
|
6602
|
-
},
|
|
6603
|
-
{
|
|
6604
|
-
"name": "filters",
|
|
6605
|
-
"description": "Indicate if filters applied.",
|
|
6606
|
-
"value": {
|
|
6607
|
-
"kind": "expression",
|
|
6608
|
-
"type": "boolean"
|
|
6600
|
+
"type": "number|boolean"
|
|
6609
6601
|
},
|
|
6610
6602
|
"default": "false"
|
|
6611
6603
|
},
|
|
@@ -6647,19 +6639,20 @@
|
|
|
6647
6639
|
],
|
|
6648
6640
|
"slots": [
|
|
6649
6641
|
{
|
|
6650
|
-
"name": "
|
|
6651
|
-
"description": "Use it to add
|
|
6642
|
+
"name": "header-actions",
|
|
6643
|
+
"description": "Use it to add action buttons instead of table row when some rows are selected."
|
|
6652
6644
|
},
|
|
6653
6645
|
{
|
|
6654
|
-
"name": "`
|
|
6646
|
+
"name": "`header-${column.key}`",
|
|
6655
6647
|
"description": "Use it to customise table column."
|
|
6656
6648
|
},
|
|
6657
6649
|
{
|
|
6658
|
-
"name": "`
|
|
6650
|
+
"name": "`header-${column.key}-after`",
|
|
6659
6651
|
"description": "Use it to add content after table column."
|
|
6660
6652
|
},
|
|
6661
6653
|
{
|
|
6662
|
-
"name": "before-header
|
|
6654
|
+
"name": "before-header",
|
|
6655
|
+
"description": "Use it to add something before header row."
|
|
6663
6656
|
},
|
|
6664
6657
|
{
|
|
6665
6658
|
"name": "before-first-row",
|
|
@@ -6669,18 +6662,16 @@
|
|
|
6669
6662
|
"name": "`cell-${key}`",
|
|
6670
6663
|
"description": "Use it to customise table cell item (in whole column)."
|
|
6671
6664
|
},
|
|
6672
|
-
{
|
|
6673
|
-
"name": "cell-other"
|
|
6674
|
-
},
|
|
6675
6665
|
{
|
|
6676
6666
|
"name": "after-last-row",
|
|
6677
6667
|
"description": "Use it to add something after last row."
|
|
6678
6668
|
},
|
|
6679
6669
|
{
|
|
6680
|
-
"name": "empty-
|
|
6670
|
+
"name": "empty-state",
|
|
6671
|
+
"description": "Use it to add custom empty state."
|
|
6681
6672
|
},
|
|
6682
6673
|
{
|
|
6683
|
-
"name": "
|
|
6674
|
+
"name": "footer",
|
|
6684
6675
|
"description": "Use it to add something in table footer."
|
|
6685
6676
|
}
|
|
6686
6677
|
],
|