vueless 0.0.165 → 0.0.166
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 +106 -115
- package/ui.data-table/configs/default.config.js +37 -44
- package/ui.data-table/index.stories.js +40 -35
- package/ui.data-table/index.vue +199 -175
- package/ui.data-table-cell/configs/default.config.js +1 -1
- package/web-types.json +11 -12
|
@@ -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.166",
|
|
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"
|
|
@@ -6647,19 +6647,20 @@
|
|
|
6647
6647
|
],
|
|
6648
6648
|
"slots": [
|
|
6649
6649
|
{
|
|
6650
|
-
"name": "
|
|
6651
|
-
"description": "Use it to add
|
|
6650
|
+
"name": "header-actions",
|
|
6651
|
+
"description": "Use it to add action buttons instead of table row when some rows are selected."
|
|
6652
6652
|
},
|
|
6653
6653
|
{
|
|
6654
|
-
"name": "`
|
|
6654
|
+
"name": "`header-${column.key}`",
|
|
6655
6655
|
"description": "Use it to customise table column."
|
|
6656
6656
|
},
|
|
6657
6657
|
{
|
|
6658
|
-
"name": "`
|
|
6658
|
+
"name": "`header-${column.key}-after`",
|
|
6659
6659
|
"description": "Use it to add content after table column."
|
|
6660
6660
|
},
|
|
6661
6661
|
{
|
|
6662
|
-
"name": "before-header
|
|
6662
|
+
"name": "before-header",
|
|
6663
|
+
"description": "Use it to add something before header row."
|
|
6663
6664
|
},
|
|
6664
6665
|
{
|
|
6665
6666
|
"name": "before-first-row",
|
|
@@ -6669,18 +6670,16 @@
|
|
|
6669
6670
|
"name": "`cell-${key}`",
|
|
6670
6671
|
"description": "Use it to customise table cell item (in whole column)."
|
|
6671
6672
|
},
|
|
6672
|
-
{
|
|
6673
|
-
"name": "cell-other"
|
|
6674
|
-
},
|
|
6675
6673
|
{
|
|
6676
6674
|
"name": "after-last-row",
|
|
6677
6675
|
"description": "Use it to add something after last row."
|
|
6678
6676
|
},
|
|
6679
6677
|
{
|
|
6680
|
-
"name": "empty-
|
|
6678
|
+
"name": "empty-state",
|
|
6679
|
+
"description": "Use it to add custom empty state."
|
|
6681
6680
|
},
|
|
6682
6681
|
{
|
|
6683
|
-
"name": "
|
|
6682
|
+
"name": "footer",
|
|
6684
6683
|
"description": "Use it to add something in table footer."
|
|
6685
6684
|
}
|
|
6686
6685
|
],
|