@htmlbricks/hb-layout-mobile 0.10.39

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.
@@ -0,0 +1,777 @@
1
+ {
2
+ "definitions": {
3
+ "events": {
4
+ "$ref": "#/definitions/Events",
5
+ "$schema": "http://json-schema.org/draft-07/schema#",
6
+ "definitions": {
7
+ "Events": {
8
+ "additionalProperties": false,
9
+ "properties": {
10
+ "footerClick": {
11
+ "additionalProperties": false,
12
+ "properties": {
13
+ "elClick": {
14
+ "type": "string"
15
+ }
16
+ },
17
+ "required": [
18
+ "elClick"
19
+ ],
20
+ "type": "object"
21
+ },
22
+ "layoutStatus": {
23
+ "additionalProperties": false,
24
+ "properties": {
25
+ "size": {
26
+ "enum": [
27
+ "large",
28
+ "small"
29
+ ],
30
+ "type": "string"
31
+ },
32
+ "width": {
33
+ "type": "number"
34
+ }
35
+ },
36
+ "required": [
37
+ "width",
38
+ "size"
39
+ ],
40
+ "type": "object"
41
+ },
42
+ "offcanvasswitch": {
43
+ "additionalProperties": false,
44
+ "properties": {
45
+ "isOpen": {
46
+ "type": "boolean"
47
+ }
48
+ },
49
+ "required": [
50
+ "isOpen"
51
+ ],
52
+ "type": "object"
53
+ },
54
+ "pageChange": {
55
+ "additionalProperties": false,
56
+ "properties": {
57
+ "page": {
58
+ "type": "string"
59
+ }
60
+ },
61
+ "required": [
62
+ "page"
63
+ ],
64
+ "type": "object"
65
+ },
66
+ "userClick": {
67
+ "additionalProperties": false,
68
+ "properties": {
69
+ "key": {
70
+ "type": "string"
71
+ }
72
+ },
73
+ "required": [
74
+ "key"
75
+ ],
76
+ "type": "object"
77
+ }
78
+ },
79
+ "required": [
80
+ "offcanvasswitch",
81
+ "pageChange",
82
+ "userClick",
83
+ "footerClick",
84
+ "layoutStatus"
85
+ ],
86
+ "type": "object"
87
+ }
88
+ }
89
+ },
90
+ "component": {
91
+ "$ref": "#/definitions/Component",
92
+ "$schema": "http://json-schema.org/draft-07/schema#",
93
+ "definitions": {
94
+ "Component": {
95
+ "additionalProperties": false,
96
+ "properties": {
97
+ "columns": {
98
+ "items": {
99
+ "$ref": "#/definitions/IColumn"
100
+ },
101
+ "type": "array"
102
+ },
103
+ "company": {
104
+ "$ref": "#/definitions/ICompany"
105
+ },
106
+ "contacts": {
107
+ "$ref": "#/definitions/IContacts"
108
+ },
109
+ "cookielaw": {
110
+ "type": "string"
111
+ },
112
+ "cookielawallowdecline": {
113
+ "type": "boolean"
114
+ },
115
+ "cookielawlanguage": {
116
+ "type": "string"
117
+ },
118
+ "cookielawuri4more": {
119
+ "type": "string"
120
+ },
121
+ "id": {
122
+ "type": "string"
123
+ },
124
+ "navlinks": {
125
+ "items": {
126
+ "$ref": "#/definitions/INavLink"
127
+ },
128
+ "type": "array"
129
+ },
130
+ "onescreen": {
131
+ "type": "boolean"
132
+ },
133
+ "pagename": {
134
+ "type": "string"
135
+ },
136
+ "sidebar": {
137
+ "additionalProperties": false,
138
+ "properties": {
139
+ "logo": {
140
+ "type": "string"
141
+ },
142
+ "title": {
143
+ "type": "string"
144
+ },
145
+ "type": {
146
+ "type": "string"
147
+ }
148
+ },
149
+ "type": "object"
150
+ },
151
+ "socials": {
152
+ "$ref": "#/definitions/ISocials"
153
+ },
154
+ "style": {
155
+ "type": "string"
156
+ },
157
+ "usermenu": {
158
+ "$ref": "#/definitions/IUserMenu"
159
+ }
160
+ },
161
+ "type": "object"
162
+ },
163
+ "IAddressContact": {
164
+ "additionalProperties": false,
165
+ "properties": {
166
+ "_id": {
167
+ "type": "string"
168
+ },
169
+ "address": {
170
+ "type": "string"
171
+ },
172
+ "googleMapUri": {
173
+ "type": "string"
174
+ },
175
+ "shortAddress": {
176
+ "type": "string"
177
+ }
178
+ },
179
+ "required": [
180
+ "address"
181
+ ],
182
+ "type": "object"
183
+ },
184
+ "IColumn": {
185
+ "additionalProperties": false,
186
+ "properties": {
187
+ "_id": {
188
+ "type": "string"
189
+ },
190
+ "cells": {
191
+ "items": {
192
+ "additionalProperties": false,
193
+ "properties": {
194
+ "_id": {
195
+ "type": "string"
196
+ },
197
+ "address": {
198
+ "$ref": "#/definitions/IAddressContact"
199
+ },
200
+ "email": {
201
+ "$ref": "#/definitions/IEmailContact"
202
+ },
203
+ "label": {
204
+ "type": "string"
205
+ },
206
+ "phone": {
207
+ "$ref": "#/definitions/IPhoneContact"
208
+ },
209
+ "site": {
210
+ "$ref": "#/definitions/ISiteContact"
211
+ }
212
+ },
213
+ "required": [
214
+ "_id"
215
+ ],
216
+ "type": "object"
217
+ },
218
+ "type": "array"
219
+ },
220
+ "title": {
221
+ "type": "string"
222
+ }
223
+ },
224
+ "required": [
225
+ "cells"
226
+ ],
227
+ "type": "object"
228
+ },
229
+ "ICompany": {
230
+ "additionalProperties": false,
231
+ "properties": {
232
+ "companyName": {
233
+ "type": "string"
234
+ },
235
+ "description": {
236
+ "type": "string"
237
+ },
238
+ "fiscalCode": {
239
+ "type": "string"
240
+ },
241
+ "logoUri": {
242
+ "type": "string"
243
+ },
244
+ "registration": {
245
+ "additionalProperties": false,
246
+ "properties": {
247
+ "since": {
248
+ "type": "number"
249
+ },
250
+ "text": {
251
+ "type": "string"
252
+ }
253
+ },
254
+ "type": "object"
255
+ },
256
+ "since": {
257
+ "type": "number"
258
+ },
259
+ "siteName": {
260
+ "type": "string"
261
+ },
262
+ "vatNumber": {
263
+ "type": "string"
264
+ }
265
+ },
266
+ "required": [
267
+ "logoUri",
268
+ "siteName",
269
+ "companyName",
270
+ "description"
271
+ ],
272
+ "type": "object"
273
+ },
274
+ "IContacts": {
275
+ "additionalProperties": false,
276
+ "properties": {
277
+ "addresses": {
278
+ "items": {
279
+ "$ref": "#/definitions/IAddressContact"
280
+ },
281
+ "type": "array"
282
+ },
283
+ "emails": {
284
+ "items": {
285
+ "$ref": "#/definitions/IEmailContact"
286
+ },
287
+ "type": "array"
288
+ },
289
+ "phones": {
290
+ "items": {
291
+ "$ref": "#/definitions/IPhoneContact"
292
+ },
293
+ "type": "array"
294
+ },
295
+ "sites": {
296
+ "items": {
297
+ "$ref": "#/definitions/ISiteContact"
298
+ },
299
+ "type": "array"
300
+ }
301
+ },
302
+ "type": "object"
303
+ },
304
+ "IEmailContact": {
305
+ "additionalProperties": false,
306
+ "properties": {
307
+ "_id": {
308
+ "type": "string"
309
+ },
310
+ "address": {
311
+ "type": "string"
312
+ },
313
+ "label": {
314
+ "type": "string"
315
+ }
316
+ },
317
+ "required": [
318
+ "address"
319
+ ],
320
+ "type": "object"
321
+ },
322
+ "INavLink": {
323
+ "additionalProperties": false,
324
+ "properties": {
325
+ "active": {
326
+ "type": "boolean"
327
+ },
328
+ "badge": {
329
+ "additionalProperties": false,
330
+ "properties": {
331
+ "class": {
332
+ "type": "string"
333
+ },
334
+ "classcolor": {
335
+ "type": "string"
336
+ },
337
+ "text": {
338
+ "type": "string"
339
+ }
340
+ },
341
+ "required": [
342
+ "text"
343
+ ],
344
+ "type": "object"
345
+ },
346
+ "group": {
347
+ "type": "string"
348
+ },
349
+ "icon": {
350
+ "type": "string"
351
+ },
352
+ "key": {
353
+ "type": "string"
354
+ },
355
+ "label": {
356
+ "type": "string"
357
+ },
358
+ "open": {
359
+ "type": "boolean"
360
+ },
361
+ "subLinks": {
362
+ "items": {
363
+ "$ref": "#/definitions/INavLink"
364
+ },
365
+ "type": "array"
366
+ }
367
+ },
368
+ "required": [
369
+ "key",
370
+ "label"
371
+ ],
372
+ "type": "object"
373
+ },
374
+ "IPhoneContact": {
375
+ "additionalProperties": false,
376
+ "properties": {
377
+ "_id": {
378
+ "type": "string"
379
+ },
380
+ "label": {
381
+ "type": "string"
382
+ },
383
+ "number": {
384
+ "type": "string"
385
+ }
386
+ },
387
+ "required": [
388
+ "number"
389
+ ],
390
+ "type": "object"
391
+ },
392
+ "ISiteContact": {
393
+ "additionalProperties": false,
394
+ "properties": {
395
+ "_id": {
396
+ "type": "string"
397
+ },
398
+ "label": {
399
+ "type": "string"
400
+ },
401
+ "open": {
402
+ "type": "boolean"
403
+ },
404
+ "uri": {
405
+ "type": "string"
406
+ }
407
+ },
408
+ "required": [
409
+ "uri"
410
+ ],
411
+ "type": "object"
412
+ },
413
+ "ISocials": {
414
+ "additionalProperties": false,
415
+ "properties": {
416
+ "discord": {
417
+ "type": "string"
418
+ },
419
+ "facebook": {
420
+ "type": "string"
421
+ },
422
+ "github": {
423
+ "type": "string"
424
+ },
425
+ "gmail": {
426
+ "type": "string"
427
+ },
428
+ "twitch": {
429
+ "type": "string"
430
+ },
431
+ "twitter": {
432
+ "type": "string"
433
+ },
434
+ "youtube": {
435
+ "type": "string"
436
+ }
437
+ },
438
+ "type": "object"
439
+ },
440
+ "IUserMenu": {
441
+ "additionalProperties": false,
442
+ "properties": {
443
+ "imgUri": {
444
+ "type": "string"
445
+ },
446
+ "list": {
447
+ "items": {
448
+ "$ref": "#/definitions/IUserMenuListItem"
449
+ },
450
+ "type": "array"
451
+ }
452
+ },
453
+ "required": [
454
+ "imgUri"
455
+ ],
456
+ "type": "object"
457
+ },
458
+ "IUserMenuListItem": {
459
+ "additionalProperties": false,
460
+ "properties": {
461
+ "badge": {
462
+ "type": "number"
463
+ },
464
+ "group": {
465
+ "type": "string"
466
+ },
467
+ "key": {
468
+ "type": "string"
469
+ },
470
+ "label": {
471
+ "type": "string"
472
+ }
473
+ },
474
+ "required": [
475
+ "key",
476
+ "label"
477
+ ],
478
+ "type": "object"
479
+ }
480
+ }
481
+ }
482
+ },
483
+ "storybookArgs": {
484
+ "pageChange": {
485
+ "action": "pageChange"
486
+ },
487
+ "offcanvasswitch": {
488
+ "action": "offcanvasswitchEvent"
489
+ },
490
+ "layoutStatus": {
491
+ "action": "layoutStatus"
492
+ },
493
+ "contacts": {
494
+ "control": {
495
+ "type": "object"
496
+ }
497
+ },
498
+ "columns": {
499
+ "control": {
500
+ "type": "object"
501
+ }
502
+ },
503
+ "sidebar": {
504
+ "control": {
505
+ "type": "object"
506
+ }
507
+ },
508
+ "socials": {
509
+ "control": {
510
+ "type": "object"
511
+ }
512
+ },
513
+ "usermenu": {
514
+ "control": {
515
+ "type": "object"
516
+ }
517
+ },
518
+ "company": {
519
+ "control": {
520
+ "type": "object"
521
+ }
522
+ },
523
+ "navlinks": {
524
+ "control": {
525
+ "type": "array"
526
+ }
527
+ },
528
+ "pagename": {
529
+ "control": {
530
+ "type": "string"
531
+ }
532
+ },
533
+ "cookielawuri4more": {
534
+ "control": {
535
+ "type": "string"
536
+ }
537
+ },
538
+ "cookielawallowdecline": {
539
+ "control": {
540
+ "type": "boolean"
541
+ }
542
+ },
543
+ "cookielawlanguage": {
544
+ "control": {
545
+ "type": "string"
546
+ }
547
+ },
548
+ "cookielaw": {
549
+ "control": {
550
+ "type": "boolean"
551
+ }
552
+ },
553
+ "onescreen": {
554
+ "control": {
555
+ "type": "boolean"
556
+ }
557
+ }
558
+ },
559
+ "styleSetup": {
560
+ "vars": [
561
+ {
562
+ "name": "--bs-primary",
563
+ "valueType": "color",
564
+ "theme": "bootstrap",
565
+ "defaultValue": "#07689f"
566
+ },
567
+ {
568
+ "name": "--bs-secondary",
569
+ "valueType": "color",
570
+ "theme": "bootstrap",
571
+ "defaultValue": "#c9d6df"
572
+ },
573
+ {
574
+ "name": "--bs-success",
575
+ "valueType": "color",
576
+ "theme": "bootstrap",
577
+ "defaultValue": "#11d3bc"
578
+ },
579
+ {
580
+ "name": "--bs-info",
581
+ "valueType": "color",
582
+ "theme": "bootstrap",
583
+ "defaultValue": "#a2d5f2"
584
+ },
585
+ {
586
+ "name": "--bs-warning",
587
+ "valueType": "color",
588
+ "theme": "bootstrap",
589
+ "defaultValue": "#ffc107"
590
+ },
591
+ {
592
+ "name": "--bs-danger",
593
+ "valueType": "color",
594
+ "theme": "bootstrap",
595
+ "defaultValue": "#f67280"
596
+ }
597
+ ],
598
+ "parts": [
599
+ {
600
+ "name": "footer",
601
+ "description": ""
602
+ },
603
+ {
604
+ "name": "container",
605
+ "description": ""
606
+ },
607
+ {
608
+ "name": "navbar",
609
+ "description": ""
610
+ },
611
+ {
612
+ "name": "page",
613
+ "description": ""
614
+ }
615
+ ]
616
+ },
617
+ "author": "Dario Caruso <dev@dariocaruso.info> (https://dariocaruso.info)",
618
+ "contributors": [],
619
+ "owner": "Dario Caruso <dev@dariocaruso.info> (https://dariocaruso.info)",
620
+ "htmlSlots": [
621
+ {
622
+ "name": "nav-left-slot",
623
+ "description": ""
624
+ },
625
+ {
626
+ "name": "nav-center-slot",
627
+ "description": ""
628
+ },
629
+ {
630
+ "name": "nav-right-slot",
631
+ "description": ""
632
+ },
633
+ {
634
+ "name": "page",
635
+ "description": ""
636
+ },
637
+ {
638
+ "name": "nav-header-slot",
639
+ "description": ""
640
+ }
641
+ ],
642
+ "i18n": [
643
+ {
644
+ "lang": "it",
645
+ "language": "italian"
646
+ },
647
+ {
648
+ "lang": "en",
649
+ "language": "english"
650
+ }
651
+ ],
652
+ "examples": [
653
+ {
654
+ "company": {
655
+ "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
656
+ "siteName": "testsite",
657
+ "companyName": "testcompany S.R.L.",
658
+ "registration": {
659
+ "text": "copyright"
660
+ },
661
+ "description": "testo e descrizione di esempio dell applicazione",
662
+ "vatNumber": "aa - ffffff",
663
+ "fiscalCode": "f4f5f6fff"
664
+ },
665
+ "contacts": {
666
+ "sites": [
667
+ {
668
+ "label": "dariocaruso.info",
669
+ "uri": "https://dariocaruso.info"
670
+ }
671
+ ],
672
+ "phones": [
673
+ {
674
+ "number": "6666666666666"
675
+ }
676
+ ],
677
+ "addresses": [],
678
+ "emails": []
679
+ },
680
+ "socials": {
681
+ "facebook": "fbbb",
682
+ "youtube": "yttttttt"
683
+ },
684
+ "navlinks": [
685
+ {
686
+ "label": "Home",
687
+ "key": "home",
688
+ "icon": "house-door",
689
+ "badge": {
690
+ "text": "bbb"
691
+ }
692
+ },
693
+ {
694
+ "label": "Dashboard",
695
+ "key": "dashboard",
696
+ "icon": "speedometer",
697
+ "badge": {
698
+ "text": "bbb"
699
+ }
700
+ },
701
+ {
702
+ "label": "Settings",
703
+ "key": "settings",
704
+ "icon": "gear",
705
+ "group": "admin",
706
+ "badge": {
707
+ "text": "bbb"
708
+ }
709
+ },
710
+ {
711
+ "label": "Users",
712
+ "key": "users",
713
+ "icon": "people-fill",
714
+ "group": "admin",
715
+ "badge": {
716
+ "text": "uuuuu"
717
+ }
718
+ },
719
+ {
720
+ "label": "Stats",
721
+ "key": "stats",
722
+ "icon": "graph-up",
723
+ "group": "stats",
724
+ "badge": {
725
+ "text": "bbb"
726
+ }
727
+ }
728
+ ],
729
+ "usermenu": {
730
+ "list": [
731
+ {
732
+ "key": "list1",
733
+ "label": "list1"
734
+ },
735
+ {
736
+ "key": "list2",
737
+ "label": "list2"
738
+ },
739
+ {
740
+ "key": "list3",
741
+ "label": "list3",
742
+ "group": "list1",
743
+ "badge": 3
744
+ },
745
+ {
746
+ "key": "list4",
747
+ "label": "list4",
748
+ "badge": 555
749
+ }
750
+ ],
751
+ "imgUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg"
752
+ },
753
+ "sidebar": {
754
+ "title": "ciao"
755
+ }
756
+ }
757
+ ],
758
+ "screenshots": [],
759
+ "licenses": [
760
+ {
761
+ "type": "Apache-2.0",
762
+ "path": "LICENSE.md",
763
+ "cost": 0,
764
+ "currency": "EUR"
765
+ }
766
+ ],
767
+ "readmePath": "README.md",
768
+ "name": "hb-layout-mobile",
769
+ "category": "layout",
770
+ "tags": [
771
+ "layout"
772
+ ],
773
+ "size": {},
774
+ "iifePath": "release/release.js",
775
+ "repoName": "@htmlbricks/hb-layout-mobile",
776
+ "version": "0.10.39"
777
+ }