@htmlbricks/hb-table 0.65.7 → 0.65.10
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/main.iife.js +3 -3
- package/main.iife.js.map +1 -1
- package/manifest.json +15 -1
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +4 -0
- package/types/webcomponent.type.d.ts +2 -0
package/manifest.json
CHANGED
|
@@ -417,6 +417,10 @@
|
|
|
417
417
|
"description": "Custom label for the \"Default\" sort option in the pagination bar (e.g. \"Relevance\")",
|
|
418
418
|
"type": "string"
|
|
419
419
|
},
|
|
420
|
+
"sort_direction": {
|
|
421
|
+
"description": "Current sort direction",
|
|
422
|
+
"type": "string"
|
|
423
|
+
},
|
|
420
424
|
"sort_strict_direction": {
|
|
421
425
|
"description": "When true, sort direction only allows \"asc\" and \"desc\" (no \"default\" state)",
|
|
422
426
|
"type": "boolean"
|
|
@@ -854,6 +858,16 @@
|
|
|
854
858
|
"type": "boolean"
|
|
855
859
|
}
|
|
856
860
|
},
|
|
861
|
+
"sort_direction": {
|
|
862
|
+
"control": {
|
|
863
|
+
"type": "select"
|
|
864
|
+
},
|
|
865
|
+
"options": [
|
|
866
|
+
"asc",
|
|
867
|
+
"desc",
|
|
868
|
+
"default"
|
|
869
|
+
]
|
|
870
|
+
},
|
|
857
871
|
"selectrow": {
|
|
858
872
|
"control": {
|
|
859
873
|
"type": "boolean"
|
|
@@ -3477,5 +3491,5 @@
|
|
|
3477
3491
|
"size": {},
|
|
3478
3492
|
"iifePath": "main.iife.js",
|
|
3479
3493
|
"repoName": "@htmlbricks/hb-table",
|
|
3480
|
-
"version": "0.65.
|
|
3494
|
+
"version": "0.65.10"
|
|
3481
3495
|
}
|
package/package.json
CHANGED
|
@@ -84,6 +84,10 @@
|
|
|
84
84
|
"description": "Custom label for the \"Default\" sort option in the pagination bar (e.g. \"Relevance\")",
|
|
85
85
|
"type": "string"
|
|
86
86
|
},
|
|
87
|
+
"sort_direction": {
|
|
88
|
+
"description": "Current sort direction",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
87
91
|
"sort_strict_direction": {
|
|
88
92
|
"description": "When true, sort direction only allows \"asc\" and \"desc\" (no \"default\" state)",
|
|
89
93
|
"type": "boolean"
|
|
@@ -84,6 +84,8 @@ export type Component = {
|
|
|
84
84
|
disable_paginate_sort?: boolean;
|
|
85
85
|
/** When true, sort direction only allows "asc" and "desc" (no "default" state) */
|
|
86
86
|
sort_strict_direction?: boolean;
|
|
87
|
+
/** Current sort direction */
|
|
88
|
+
sort_direction?: string;
|
|
87
89
|
};
|
|
88
90
|
|
|
89
91
|
export type Events = {
|