@htmlbricks/hb-paginate 0.64.0 → 0.65.0
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 +5 -5
- package/main.iife.js.map +1 -1
- package/manifest.json +7 -2
- 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
|
@@ -113,6 +113,10 @@
|
|
|
113
113
|
],
|
|
114
114
|
"type": "string"
|
|
115
115
|
},
|
|
116
|
+
"sort_direction_disabled": {
|
|
117
|
+
"description": "Whether the sort direction is disabled",
|
|
118
|
+
"type": "boolean"
|
|
119
|
+
},
|
|
116
120
|
"sort_disabled": {
|
|
117
121
|
"description": "Whether the sort controls are disabled",
|
|
118
122
|
"type": "boolean"
|
|
@@ -235,7 +239,8 @@
|
|
|
235
239
|
"pages": 4,
|
|
236
240
|
"info": {
|
|
237
241
|
"total": 47,
|
|
238
|
-
"size": 10
|
|
242
|
+
"size": 10,
|
|
243
|
+
"sort_direction_disabled": true
|
|
239
244
|
}
|
|
240
245
|
}
|
|
241
246
|
},
|
|
@@ -425,5 +430,5 @@
|
|
|
425
430
|
"size": {},
|
|
426
431
|
"iifePath": "main.iife.js",
|
|
427
432
|
"repoName": "@htmlbricks/hb-paginate",
|
|
428
|
-
"version": "0.
|
|
433
|
+
"version": "0.65.0"
|
|
429
434
|
}
|
package/package.json
CHANGED
|
@@ -18,6 +18,8 @@ export type Component = {
|
|
|
18
18
|
sort_direction?: "asc" | "desc" | "default";
|
|
19
19
|
/** Whether the sort controls are disabled */
|
|
20
20
|
sort_disabled?: boolean;
|
|
21
|
+
/** Whether the sort direction is disabled */
|
|
22
|
+
sort_direction_disabled?: boolean;
|
|
21
23
|
/** Value for the "Default" sort option (emitted as sort_by when default is selected) */
|
|
22
24
|
sort_default_value?: string;
|
|
23
25
|
/** Custom label for the "Default" sort option (e.g. "Relevance") */
|