@htmlbricks/hb-searchbar 0.60.6 → 0.60.7

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
@@ -183,6 +183,424 @@
183
183
  }
184
184
  ]
185
185
  }
186
+ },
187
+ {
188
+ "name": "with20items",
189
+ "data": {
190
+ "searchlist": [
191
+ {
192
+ "id": "1",
193
+ "text": "looking"
194
+ },
195
+ {
196
+ "id": "2",
197
+ "text": "good"
198
+ },
199
+ {
200
+ "id": "3",
201
+ "text": "woman"
202
+ },
203
+ {
204
+ "id": "4",
205
+ "text": "man"
206
+ },
207
+ {
208
+ "id": "5",
209
+ "text": "woman"
210
+ },
211
+ {
212
+ "id": "6",
213
+ "text": "man"
214
+ },
215
+ {
216
+ "id": "7",
217
+ "text": "woman"
218
+ },
219
+ {
220
+ "id": "8",
221
+ "text": "man"
222
+ },
223
+ {
224
+ "id": "9",
225
+ "text": "woman"
226
+ },
227
+ {
228
+ "id": "10",
229
+ "text": "man"
230
+ },
231
+ {
232
+ "id": "11",
233
+ "text": "woman"
234
+ },
235
+ {
236
+ "id": "12",
237
+ "text": "man"
238
+ },
239
+ {
240
+ "id": "13",
241
+ "text": "woman"
242
+ },
243
+ {
244
+ "id": "14",
245
+ "text": "man"
246
+ },
247
+ {
248
+ "id": "15",
249
+ "text": "woman"
250
+ },
251
+ {
252
+ "id": "16",
253
+ "text": "man"
254
+ },
255
+ {
256
+ "id": "17",
257
+ "text": "woman"
258
+ },
259
+ {
260
+ "id": "18",
261
+ "text": "man"
262
+ },
263
+ {
264
+ "id": "19",
265
+ "text": "woman"
266
+ },
267
+ {
268
+ "id": "20",
269
+ "text": "man"
270
+ }
271
+ ]
272
+ }
273
+ },
274
+ {
275
+ "name": "withRichItems",
276
+ "description": "Example with icons, badges, tags, and URLs",
277
+ "data": {
278
+ "searchlabel": "Search with rich items",
279
+ "searchlist": [
280
+ {
281
+ "id": "1",
282
+ "text": "Documentation",
283
+ "icon": "file-text",
284
+ "url": "https://example.com/docs",
285
+ "badge": {
286
+ "text": "New",
287
+ "color": "success",
288
+ "icon": "star"
289
+ },
290
+ "tags": [
291
+ {
292
+ "text": "Guide",
293
+ "color": "info"
294
+ },
295
+ {
296
+ "text": "Tutorial",
297
+ "color": "warning"
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "id": "2",
303
+ "text": "API Reference",
304
+ "icon": "code-slash",
305
+ "url": "https://example.com/api",
306
+ "badge": {
307
+ "text": "v2.0",
308
+ "color": "primary"
309
+ },
310
+ "tags": [
311
+ {
312
+ "text": "API",
313
+ "color": "primary",
314
+ "icon": "gear"
315
+ },
316
+ {
317
+ "text": "REST",
318
+ "color": "secondary"
319
+ }
320
+ ]
321
+ },
322
+ {
323
+ "id": "3",
324
+ "text": "Support Center",
325
+ "icon": "headset",
326
+ "fixed": true,
327
+ "badge": {
328
+ "text": "24/7",
329
+ "color": "success",
330
+ "icon": "clock"
331
+ },
332
+ "tags": [
333
+ {
334
+ "text": "Help",
335
+ "color": "light"
336
+ },
337
+ {
338
+ "text": "Support",
339
+ "color": "light"
340
+ }
341
+ ]
342
+ },
343
+ {
344
+ "id": "4",
345
+ "text": "Community Forum",
346
+ "icon": "people",
347
+ "url": "https://example.com/forum",
348
+ "tags": [
349
+ {
350
+ "text": "Community",
351
+ "color": "info",
352
+ "icon": "chat"
353
+ },
354
+ {
355
+ "text": "Discussion",
356
+ "color": "light"
357
+ }
358
+ ]
359
+ },
360
+ {
361
+ "id": "5",
362
+ "text": "Blog",
363
+ "icon": "newspaper",
364
+ "url": "https://example.com/blog",
365
+ "badge": {
366
+ "text": "Updated",
367
+ "color": "warning"
368
+ }
369
+ }
370
+ ]
371
+ }
372
+ },
373
+ {
374
+ "name": "withPartialProperties",
375
+ "description": "Example with different partial properties and various key-value combinations",
376
+ "data": {
377
+ "searchlabel": "Search with mixed properties",
378
+ "searchlist": [
379
+ {
380
+ "id": "1",
381
+ "text": "Simple item"
382
+ },
383
+ {
384
+ "id": "2",
385
+ "text": "Item with icon only",
386
+ "icon": "house"
387
+ },
388
+ {
389
+ "id": "3",
390
+ "text": "Item with URL only",
391
+ "url": "https://example.com/simple-link"
392
+ },
393
+ {
394
+ "id": "4",
395
+ "text": "Item with badge only",
396
+ "badge": {
397
+ "text": "Hot",
398
+ "color": "danger"
399
+ }
400
+ },
401
+ {
402
+ "id": "5",
403
+ "text": "Item with tags only",
404
+ "tags": [
405
+ {
406
+ "text": "Featured",
407
+ "color": "warning"
408
+ },
409
+ {
410
+ "text": "Popular",
411
+ "color": "info"
412
+ }
413
+ ]
414
+ },
415
+ {
416
+ "id": "6",
417
+ "text": "Icon + URL download",
418
+ "icon": "download",
419
+ "url": "https://example.com/download"
420
+ },
421
+ {
422
+ "id": "7",
423
+ "text": "Icon + Badge",
424
+ "icon": "0-square-fill",
425
+ "badge": {
426
+ "text": "Premium",
427
+ "color": "warning",
428
+ "icon": "crown"
429
+ }
430
+ },
431
+ {
432
+ "id": "8",
433
+ "text": "URL + Badge",
434
+ "url": "https://example.com/external",
435
+ "badge": {
436
+ "text": "External",
437
+ "color": "secondary"
438
+ }
439
+ },
440
+ {
441
+ "id": "9",
442
+ "text": "Icon + Tags",
443
+ "icon": "tag",
444
+ "tags": [
445
+ {
446
+ "text": "Category A",
447
+ "color": "primary"
448
+ },
449
+ {
450
+ "text": "Category B",
451
+ "color": "success"
452
+ },
453
+ {
454
+ "text": "Category C",
455
+ "color": "info"
456
+ }
457
+ ]
458
+ },
459
+ {
460
+ "id": "10",
461
+ "text": "URL + Tags",
462
+ "url": "https://example.com/categorized",
463
+ "tags": [
464
+ {
465
+ "text": "Link",
466
+ "color": "light"
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "id": "11",
472
+ "text": "Badge + Tags",
473
+ "badge": {
474
+ "text": "Beta",
475
+ "color": "info"
476
+ },
477
+ "tags": [
478
+ {
479
+ "text": "Experimental",
480
+ "color": "warning",
481
+ "icon": "flask"
482
+ },
483
+ {
484
+ "text": "Testing",
485
+ "color": "secondary"
486
+ }
487
+ ]
488
+ },
489
+ {
490
+ "id": "12",
491
+ "text": "Icon + URL + Badge",
492
+ "icon": "shield-check",
493
+ "url": "https://example.com/secure",
494
+ "badge": {
495
+ "text": "Secure",
496
+ "color": "success",
497
+ "icon": "lock"
498
+ }
499
+ },
500
+ {
501
+ "id": "13",
502
+ "text": "Icon + URL + Tags",
503
+ "icon": "bookmark",
504
+ "url": "https://example.com/bookmarked",
505
+ "tags": [
506
+ {
507
+ "text": "Saved",
508
+ "color": "primary",
509
+ "icon": "bookmark-fill"
510
+ },
511
+ {
512
+ "text": "Important",
513
+ "color": "danger"
514
+ }
515
+ ]
516
+ },
517
+ {
518
+ "id": "14",
519
+ "text": "Icon + Badge + Tags",
520
+ "icon": "trophy",
521
+ "badge": {
522
+ "text": "Winner",
523
+ "color": "warning",
524
+ "icon": "award"
525
+ },
526
+ "tags": [
527
+ {
528
+ "text": "Contest",
529
+ "color": "success"
530
+ },
531
+ {
532
+ "text": "2024",
533
+ "color": "info"
534
+ },
535
+ {
536
+ "text": "Gold",
537
+ "color": "warning"
538
+ }
539
+ ]
540
+ },
541
+ {
542
+ "id": "15",
543
+ "text": "URL + Badge + Tags",
544
+ "url": "https://example.com/complete",
545
+ "badge": {
546
+ "text": "Complete",
547
+ "color": "success"
548
+ },
549
+ "tags": [
550
+ {
551
+ "text": "Finished",
552
+ "color": "success"
553
+ },
554
+ {
555
+ "text": "Verified",
556
+ "color": "primary"
557
+ }
558
+ ]
559
+ },
560
+ {
561
+ "id": "16",
562
+ "text": "Fixed item with icon",
563
+ "icon": "pin",
564
+ "fixed": true
565
+ },
566
+ {
567
+ "id": "17",
568
+ "text": "Fixed item with badge",
569
+ "fixed": true,
570
+ "badge": {
571
+ "text": "Pinned",
572
+ "color": "primary"
573
+ }
574
+ },
575
+ {
576
+ "id": "18",
577
+ "text": "Complex item",
578
+ "icon": "gear",
579
+ "url": "https://example.com/settings",
580
+ "badge": {
581
+ "text": "Admin",
582
+ "color": "danger",
583
+ "icon": "person-badge"
584
+ },
585
+ "tags": [
586
+ {
587
+ "text": "Settings",
588
+ "color": "secondary"
589
+ },
590
+ {
591
+ "text": "Configuration",
592
+ "color": "info"
593
+ },
594
+ {
595
+ "text": "Advanced",
596
+ "color": "warning",
597
+ "icon": "tools"
598
+ }
599
+ ],
600
+ "fixed": true
601
+ }
602
+ ]
603
+ }
186
604
  }
187
605
  ],
188
606
  "screenshots": [],
@@ -203,5 +621,5 @@
203
621
  "size": {},
204
622
  "iifePath": "main.iife.js",
205
623
  "repoName": "@htmlbricks/hb-searchbar",
206
- "version": "0.60.6"
624
+ "version": "0.60.7"
207
625
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@htmlbricks/hb-searchbar",
3
- "version": "0.60.6",
3
+ "version": "0.60.7",
4
4
  "contributors": [],
5
5
  "description": "",
6
6
  "licenses": [