@htmlbricks/hb-site-contacts-row 0.13.21

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,694 @@
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
+ "event": {
11
+ "additionalProperties": false,
12
+ "properties": {
13
+ "test": {
14
+ "type": "boolean"
15
+ }
16
+ },
17
+ "required": [
18
+ "test"
19
+ ],
20
+ "type": "object"
21
+ }
22
+ },
23
+ "required": [
24
+ "event"
25
+ ],
26
+ "type": "object"
27
+ }
28
+ }
29
+ },
30
+ "component": {
31
+ "$ref": "#/definitions/Component",
32
+ "$schema": "http://json-schema.org/draft-07/schema#",
33
+ "definitions": {
34
+ "Address": {
35
+ "additionalProperties": false,
36
+ "properties": {
37
+ "address": {
38
+ "type": "string"
39
+ },
40
+ "latLng": {
41
+ "items": {
42
+ "type": "number"
43
+ },
44
+ "type": "array"
45
+ },
46
+ "link": {
47
+ "type": "string"
48
+ },
49
+ "name": {
50
+ "type": "string"
51
+ }
52
+ },
53
+ "required": [
54
+ "address"
55
+ ],
56
+ "type": "object"
57
+ },
58
+ "Component": {
59
+ "additionalProperties": false,
60
+ "properties": {
61
+ "addresses": {
62
+ "additionalProperties": false,
63
+ "properties": {
64
+ "addresses": {
65
+ "items": {
66
+ "$ref": "#/definitions/Address"
67
+ },
68
+ "type": "array"
69
+ },
70
+ "icon": {
71
+ "type": "string"
72
+ },
73
+ "title": {
74
+ "type": "string"
75
+ }
76
+ },
77
+ "required": [
78
+ "addresses"
79
+ ],
80
+ "type": "object"
81
+ },
82
+ "availability": {
83
+ "additionalProperties": false,
84
+ "properties": {
85
+ "appointment": {
86
+ "type": "boolean"
87
+ },
88
+ "icon": {
89
+ "type": "string"
90
+ },
91
+ "times": {
92
+ "items": {
93
+ "type": "string"
94
+ },
95
+ "type": "array"
96
+ },
97
+ "title": {
98
+ "type": "string"
99
+ }
100
+ },
101
+ "required": [
102
+ "times"
103
+ ],
104
+ "type": "object"
105
+ },
106
+ "emails": {
107
+ "additionalProperties": false,
108
+ "properties": {
109
+ "emails": {
110
+ "items": {
111
+ "$ref": "#/definitions/Email"
112
+ },
113
+ "type": "array"
114
+ },
115
+ "icon": {
116
+ "type": "string"
117
+ },
118
+ "title": {
119
+ "type": "string"
120
+ }
121
+ },
122
+ "required": [
123
+ "emails"
124
+ ],
125
+ "type": "object"
126
+ },
127
+ "id": {
128
+ "type": "string"
129
+ },
130
+ "model": {
131
+ "enum": [
132
+ "big",
133
+ "small"
134
+ ],
135
+ "type": "string"
136
+ },
137
+ "phones": {
138
+ "additionalProperties": false,
139
+ "properties": {
140
+ "icon": {
141
+ "type": "string"
142
+ },
143
+ "phones": {
144
+ "items": {
145
+ "$ref": "#/definitions/Phone"
146
+ },
147
+ "type": "array"
148
+ },
149
+ "title": {
150
+ "type": "string"
151
+ }
152
+ },
153
+ "required": [
154
+ "phones"
155
+ ],
156
+ "type": "object"
157
+ },
158
+ "style": {
159
+ "type": "string"
160
+ },
161
+ "websites": {
162
+ "additionalProperties": false,
163
+ "properties": {
164
+ "icon": {
165
+ "type": "string"
166
+ },
167
+ "title": {
168
+ "type": "string"
169
+ },
170
+ "websites": {
171
+ "items": {
172
+ "$ref": "#/definitions/Website"
173
+ },
174
+ "type": "array"
175
+ }
176
+ },
177
+ "required": [
178
+ "websites"
179
+ ],
180
+ "type": "object"
181
+ }
182
+ },
183
+ "type": "object"
184
+ },
185
+ "Email": {
186
+ "additionalProperties": false,
187
+ "properties": {
188
+ "address": {
189
+ "type": "string"
190
+ },
191
+ "label": {
192
+ "type": "string"
193
+ },
194
+ "name": {
195
+ "type": "string"
196
+ }
197
+ },
198
+ "required": [
199
+ "address"
200
+ ],
201
+ "type": "object"
202
+ },
203
+ "Phone": {
204
+ "additionalProperties": false,
205
+ "properties": {
206
+ "name": {
207
+ "type": "string"
208
+ },
209
+ "number": {
210
+ "type": "string"
211
+ }
212
+ },
213
+ "required": [
214
+ "number"
215
+ ],
216
+ "type": "object"
217
+ },
218
+ "Website": {
219
+ "additionalProperties": false,
220
+ "properties": {
221
+ "label": {
222
+ "type": "string"
223
+ },
224
+ "name": {
225
+ "type": "string"
226
+ },
227
+ "url": {
228
+ "type": "string"
229
+ }
230
+ },
231
+ "required": [
232
+ "url"
233
+ ],
234
+ "type": "object"
235
+ }
236
+ }
237
+ }
238
+ },
239
+ "storybookArgs": {
240
+ "addresses": {
241
+ "control": {
242
+ "type": "object"
243
+ }
244
+ },
245
+ "phones": {
246
+ "control": {
247
+ "type": "object"
248
+ }
249
+ },
250
+ "emails": {
251
+ "control": {
252
+ "type": "object"
253
+ }
254
+ },
255
+ "websites": {
256
+ "control": {
257
+ "type": "object"
258
+ }
259
+ },
260
+ "model": {
261
+ "control": {
262
+ "type": "text"
263
+ }
264
+ },
265
+ "availability": {
266
+ "control": {
267
+ "type": "object"
268
+ }
269
+ }
270
+ },
271
+ "styleSetup": {
272
+ "vars": [],
273
+ "parts": []
274
+ },
275
+ "author": "Dario Caruso <dev@dariocaruso.info> (https://dariocaruso.info)",
276
+ "contributors": [],
277
+ "owner": "Dario Caruso <dev@dariocaruso.info> (https://dariocaruso.info)",
278
+ "htmlSlots": [],
279
+ "i18n": [],
280
+ "examples": [
281
+ {
282
+ "name": "big",
283
+ "data": {
284
+ "model": "big",
285
+ "addresses": {
286
+ "addresses": [
287
+ {
288
+ "address": "Acacia Avenue 666, London UK",
289
+ "latLng": [
290
+ 0,
291
+ 0
292
+ ],
293
+ "name": "office"
294
+ }
295
+ ]
296
+ },
297
+ "emails": {
298
+ "emails": [
299
+ {
300
+ "label": "email 1",
301
+ "address": "dev@dariocaruso.info",
302
+ "name": "dev"
303
+ }
304
+ ]
305
+ },
306
+ "phones": {
307
+ "phones": [
308
+ {
309
+ "number": "+666 666 666 666",
310
+ "name": "main"
311
+ }
312
+ ]
313
+ },
314
+ "websites": {
315
+ "websites": [
316
+ {
317
+ "label": "website 1 1",
318
+ "url": "https://demo.freewebcomponents.com",
319
+ "name": "webcomponents"
320
+ }
321
+ ]
322
+ },
323
+ "availability": {
324
+ "times": [
325
+ "8 - 20"
326
+ ],
327
+ "appointment": true
328
+ }
329
+ }
330
+ },
331
+ {
332
+ "name": "small",
333
+ "data": {
334
+ "model": "small",
335
+ "addresses": {
336
+ "addresses": [
337
+ {
338
+ "address": "Acacia Avenue 666, London UK",
339
+ "latLng": [
340
+ 0,
341
+ 0
342
+ ],
343
+ "name": "office"
344
+ }
345
+ ]
346
+ },
347
+ "emails": {
348
+ "emails": [
349
+ {
350
+ "label": "email 1",
351
+ "address": "dev@dariocaruso.info",
352
+ "name": "dev"
353
+ }
354
+ ]
355
+ },
356
+ "phones": {
357
+ "phones": [
358
+ {
359
+ "number": "+666 666 666 666",
360
+ "name": "main"
361
+ }
362
+ ]
363
+ },
364
+ "websites": {
365
+ "websites": [
366
+ {
367
+ "label": "website 1 1",
368
+ "url": "https://demo.freewebcomponents.com",
369
+ "name": "webcomponents"
370
+ }
371
+ ]
372
+ },
373
+ "availability": {
374
+ "times": [
375
+ "8 - 20"
376
+ ],
377
+ "appointment": true
378
+ }
379
+ }
380
+ },
381
+ {
382
+ "name": "auto",
383
+ "data": {
384
+ "addresses": {
385
+ "addresses": [
386
+ {
387
+ "address": "Acacia Avenue 666, London UK",
388
+ "latLng": [
389
+ 0,
390
+ 0
391
+ ],
392
+ "name": "office"
393
+ }
394
+ ]
395
+ },
396
+ "emails": {
397
+ "emails": [
398
+ {
399
+ "label": "email 1",
400
+ "address": "dev@dariocaruso.info",
401
+ "name": "dev"
402
+ }
403
+ ]
404
+ },
405
+ "phones": {
406
+ "phones": [
407
+ {
408
+ "number": "+666 666 666 666",
409
+ "name": "main"
410
+ }
411
+ ]
412
+ },
413
+ "websites": {
414
+ "websites": [
415
+ {
416
+ "label": "website 1 1",
417
+ "url": "https://demo.freewebcomponents.com",
418
+ "name": "webcomponents"
419
+ }
420
+ ]
421
+ },
422
+ "availability": {
423
+ "times": [
424
+ "8 - 20"
425
+ ],
426
+ "appointment": true
427
+ }
428
+ }
429
+ },
430
+ {
431
+ "name": "auto2",
432
+ "data": {
433
+ "addresses": {
434
+ "addresses": [
435
+ {
436
+ "address": "Acacia Avenue 666, London UK",
437
+ "latLng": [
438
+ 0,
439
+ 0
440
+ ],
441
+ "name": "office"
442
+ }
443
+ ]
444
+ },
445
+ "emails": {
446
+ "emails": [
447
+ {
448
+ "label": "email 1",
449
+ "address": "dev@dariocaruso.info",
450
+ "name": "dev"
451
+ }
452
+ ]
453
+ }
454
+ }
455
+ },
456
+ {
457
+ "name": "auto3",
458
+ "data": {
459
+ "addresses": {
460
+ "addresses": [
461
+ {
462
+ "address": "Acacia Avenue 666, London UK",
463
+ "latLng": [
464
+ 0,
465
+ 0
466
+ ],
467
+ "name": "office"
468
+ }
469
+ ]
470
+ },
471
+ "emails": {
472
+ "emails": [
473
+ {
474
+ "label": "email 1",
475
+ "address": "dev@dariocaruso.info",
476
+ "name": "dev"
477
+ }
478
+ ]
479
+ },
480
+ "phones": {
481
+ "phones": [
482
+ {
483
+ "number": "+666 666 666 666",
484
+ "name": "main"
485
+ }
486
+ ]
487
+ }
488
+ }
489
+ },
490
+ {
491
+ "name": "auto4",
492
+ "data": {
493
+ "addresses": {
494
+ "addresses": [
495
+ {
496
+ "address": "Acacia Avenue 666, London UK",
497
+ "latLng": [
498
+ 0,
499
+ 0
500
+ ],
501
+ "name": "office"
502
+ }
503
+ ]
504
+ },
505
+ "emails": {
506
+ "emails": [
507
+ {
508
+ "label": "email 1",
509
+ "address": "dev@dariocaruso.info",
510
+ "name": "dev"
511
+ }
512
+ ]
513
+ },
514
+ "phones": {
515
+ "phones": [
516
+ {
517
+ "number": "+666 666 666 666",
518
+ "name": "main"
519
+ }
520
+ ]
521
+ },
522
+ "websites": {
523
+ "websites": [
524
+ {
525
+ "label": "website 1 1",
526
+ "url": "https://demo.freewebcomponents.com",
527
+ "name": "webcomponents"
528
+ }
529
+ ]
530
+ }
531
+ }
532
+ },
533
+ {
534
+ "name": "auto1",
535
+ "data": {
536
+ "addresses": {
537
+ "addresses": [
538
+ {
539
+ "address": "Acacia Avenue 666, London UK",
540
+ "latLng": [
541
+ 0,
542
+ 0
543
+ ],
544
+ "name": "office"
545
+ }
546
+ ]
547
+ }
548
+ }
549
+ },
550
+ {
551
+ "name": "big2",
552
+ "data": {
553
+ "model": "big",
554
+ "addresses": {
555
+ "addresses": [
556
+ {
557
+ "address": "Acacia Avenue 666, London UK",
558
+ "latLng": [
559
+ 0,
560
+ 0
561
+ ],
562
+ "name": "office"
563
+ }
564
+ ]
565
+ },
566
+ "emails": {
567
+ "emails": [
568
+ {
569
+ "label": "email 1",
570
+ "address": "dev@dariocaruso.info",
571
+ "name": "dev"
572
+ }
573
+ ]
574
+ }
575
+ }
576
+ },
577
+ {
578
+ "name": "big3",
579
+ "data": {
580
+ "model": "big",
581
+ "addresses": {
582
+ "addresses": [
583
+ {
584
+ "address": "Acacia Avenue 666, London UK",
585
+ "latLng": [
586
+ 0,
587
+ 0
588
+ ],
589
+ "name": "office"
590
+ }
591
+ ]
592
+ },
593
+ "emails": {
594
+ "emails": [
595
+ {
596
+ "label": "email 1",
597
+ "address": "dev@dariocaruso.info",
598
+ "name": "dev"
599
+ }
600
+ ]
601
+ },
602
+ "phones": {
603
+ "phones": [
604
+ {
605
+ "number": "+666 666 666 666",
606
+ "name": "main"
607
+ }
608
+ ]
609
+ }
610
+ }
611
+ },
612
+ {
613
+ "name": "big4",
614
+ "data": {
615
+ "model": "big",
616
+ "addresses": {
617
+ "addresses": [
618
+ {
619
+ "address": "Acacia Avenue 666, London UK",
620
+ "latLng": [
621
+ 0,
622
+ 0
623
+ ],
624
+ "name": "office"
625
+ }
626
+ ]
627
+ },
628
+ "emails": {
629
+ "emails": [
630
+ {
631
+ "label": "email 1",
632
+ "address": "dev@dariocaruso.info",
633
+ "name": "dev"
634
+ }
635
+ ]
636
+ },
637
+ "phones": {
638
+ "phones": [
639
+ {
640
+ "number": "+666 666 666 666",
641
+ "name": "main"
642
+ }
643
+ ]
644
+ },
645
+ "websites": {
646
+ "websites": [
647
+ {
648
+ "label": "website 1 1",
649
+ "url": "https://demo.freewebcomponents.com",
650
+ "name": "webcomponents"
651
+ }
652
+ ]
653
+ }
654
+ }
655
+ },
656
+ {
657
+ "name": "big1",
658
+ "data": {
659
+ "model": "big",
660
+ "addresses": {
661
+ "addresses": [
662
+ {
663
+ "address": "Acacia Avenue 666, London UK",
664
+ "latLng": [
665
+ 0,
666
+ 0
667
+ ],
668
+ "name": "office"
669
+ }
670
+ ]
671
+ }
672
+ }
673
+ }
674
+ ],
675
+ "screenshots": [],
676
+ "licenses": [
677
+ {
678
+ "type": "Apache-2.0",
679
+ "path": "LICENSE.md",
680
+ "cost": 0,
681
+ "currency": "EUR"
682
+ }
683
+ ],
684
+ "readmePath": "README.md",
685
+ "name": "hb-site-contacts-row",
686
+ "category": "site",
687
+ "tags": [
688
+ "site"
689
+ ],
690
+ "size": {},
691
+ "iifePath": "release/release.js",
692
+ "repoName": "@htmlbricks/hb-site-contacts-row",
693
+ "version": "0.13.21"
694
+ }