@htmlbricks/hb-paginate 0.66.18 → 0.66.20

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/manifest.json CHANGED
@@ -150,10 +150,6 @@
150
150
  },
151
151
  "type": "object"
152
152
  },
153
- "is_loading": {
154
- "description": "When true (or attribute `\"yes\"` / `\"true\"`), shows Bootstrap placeholders instead of interactive controls.",
155
- "type": "boolean"
156
- },
157
153
  "page": {
158
154
  "type": "number"
159
155
  },
@@ -173,7 +169,7 @@
173
169
  }
174
170
  }
175
171
  },
176
- "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. Set `is_loading` to show Bootstrap placeholders instead of controls (e.g. cascaded from `hb-table`).",
172
+ "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.",
177
173
  "storybookArgs": {
178
174
  "page": {
179
175
  "control": {
@@ -199,11 +195,6 @@
199
195
  "it"
200
196
  ]
201
197
  },
202
- "is_loading": {
203
- "control": {
204
- "type": "boolean"
205
- }
206
- },
207
198
  "pageChange": {
208
199
  "action": "pageChange"
209
200
  },
@@ -506,36 +497,9 @@
506
497
  "sort_direction": "asc"
507
498
  }
508
499
  }
509
- },
510
- {
511
- "name": "loadingPlaceholder",
512
- "description": "Bootstrap placeholders for the bar and page controls (`is_loading` true; `hb-table` passes this while loading).",
513
- "data": {
514
- "page": 0,
515
- "pages": 4,
516
- "is_loading": true,
517
- "info": {
518
- "total": 100,
519
- "size": 25,
520
- "page_size_type": "select",
521
- "page_size_options": "10,25,50,100",
522
- "sort_fields": [
523
- {
524
- "value": "title",
525
- "label": "Title"
526
- },
527
- {
528
- "value": "date",
529
- "label": "Date"
530
- }
531
- ],
532
- "sort_by": "title",
533
- "sort_direction": "asc"
534
- }
535
- }
536
500
  }
537
501
  ],
538
- "iifeIntegrity": "sha384-xSsFv8BlOcqcqAQCtSG8fav2lvf3QyXV9HZjamR0eTP44UV83Jcrlgr9pv+nfm9H",
502
+ "iifeIntegrity": "sha384-Y8qU0Kv4Rp5OaP1e0WoT3j7BWVyI4JvO6AIdBNdsZAfWTkq0lAutNHq1TuHosAtl",
539
503
  "screenshots": [],
540
504
  "licenses": [
541
505
  {
@@ -555,5 +519,5 @@
555
519
  "size": {},
556
520
  "iifePath": "main.iife.js",
557
521
  "repoName": "@htmlbricks/hb-paginate",
558
- "version": "0.66.18"
522
+ "version": "0.66.20"
559
523
  }
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-paginate",
3
- "version": "0.66.18",
3
+ "version": "0.66.20",
4
4
  "contributors": [],
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. Set `is_loading` to show Bootstrap placeholders instead of controls (e.g. cascaded from `hb-table`).",
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": [
7
7
  {
8
8
  "type": "Apache-2.0",
@@ -87,10 +87,6 @@
87
87
  },
88
88
  "type": "object"
89
89
  },
90
- "is_loading": {
91
- "description": "When true (or attribute `\"yes\"` / `\"true\"`), shows Bootstrap placeholders instead of interactive controls.",
92
- "type": "boolean"
93
- },
94
90
  "page": {
95
91
  "type": "number"
96
92
  },
@@ -28,10 +28,6 @@ export type Component = {
28
28
  sort_default_label?: string;
29
29
  };
30
30
  i18nlang?: string;
31
- /**
32
- * When true (or attribute `"yes"` / `"true"`), shows Bootstrap placeholders instead of interactive controls.
33
- */
34
- is_loading?: boolean;
35
31
  };
36
32
 
37
33
  export type Events = {