@htmlbricks/hb-paginate 0.71.36 → 0.72.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/README.md +11 -12
- package/main.iife.js +1 -1
- package/main.iife.js.map +1 -1
- package/manifest.json +4 -6
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +2 -4
- package/types/webcomponent.type.d.ts +4 -2
package/manifest.json
CHANGED
|
@@ -172,19 +172,17 @@
|
|
|
172
172
|
"type": "object"
|
|
173
173
|
},
|
|
174
174
|
"page": {
|
|
175
|
+
"description": "Zero-based current page; defaults to `0`.",
|
|
175
176
|
"type": "number"
|
|
176
177
|
},
|
|
177
178
|
"pages": {
|
|
179
|
+
"description": "Total page count; defaults to `1` in the implementation.",
|
|
178
180
|
"type": "number"
|
|
179
181
|
},
|
|
180
182
|
"style": {
|
|
181
183
|
"type": "string"
|
|
182
184
|
}
|
|
183
185
|
},
|
|
184
|
-
"required": [
|
|
185
|
-
"pages",
|
|
186
|
-
"page"
|
|
187
|
-
],
|
|
188
186
|
"type": "object"
|
|
189
187
|
}
|
|
190
188
|
}
|
|
@@ -501,7 +499,7 @@
|
|
|
501
499
|
}
|
|
502
500
|
}
|
|
503
501
|
],
|
|
504
|
-
"iifeIntegrity": "sha384
|
|
502
|
+
"iifeIntegrity": "sha384-eiRk9EdPvXSQcIsjS6PbrBSvlRbPSMk9jNR4is49WTUWO5AtsWmBWDH4nUJQKzfd",
|
|
505
503
|
"dependencies": [
|
|
506
504
|
{
|
|
507
505
|
"name": "hb-input-number",
|
|
@@ -531,5 +529,5 @@
|
|
|
531
529
|
"size": {},
|
|
532
530
|
"iifePath": "main.iife.js",
|
|
533
531
|
"repoName": "@htmlbricks/hb-paginate",
|
|
534
|
-
"version": "0.
|
|
532
|
+
"version": "0.72.0"
|
|
535
533
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-paginate",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.72.0",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Pagination bar with first/prev/next/last and nearby page buttons, optional “showing X–Y of total” text, configurable page-size input or select, and optional sort field and direction controls with i18n labels.",
|
|
6
6
|
"licenses": [
|
|
@@ -104,19 +104,17 @@
|
|
|
104
104
|
"type": "object"
|
|
105
105
|
},
|
|
106
106
|
"page": {
|
|
107
|
+
"description": "Zero-based current page; defaults to `0`.",
|
|
107
108
|
"type": "number"
|
|
108
109
|
},
|
|
109
110
|
"pages": {
|
|
111
|
+
"description": "Total page count; defaults to `1` in the implementation.",
|
|
110
112
|
"type": "number"
|
|
111
113
|
},
|
|
112
114
|
"style": {
|
|
113
115
|
"type": "string"
|
|
114
116
|
}
|
|
115
117
|
},
|
|
116
|
-
"required": [
|
|
117
|
-
"pages",
|
|
118
|
-
"page"
|
|
119
|
-
],
|
|
120
118
|
"type": "object"
|
|
121
119
|
}
|
|
122
120
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export type Component = {
|
|
2
2
|
id?: string;
|
|
3
3
|
style?: string;
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
/** Total page count; defaults to `1` in the implementation. */
|
|
5
|
+
pages?: number;
|
|
6
|
+
/** Zero-based current page; defaults to `0`. */
|
|
7
|
+
page?: number;
|
|
6
8
|
info?: {
|
|
7
9
|
total?: number;
|
|
8
10
|
size?: number;
|