@htmlbricks/hb-footer 0.8.35 → 0.8.42

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,503 @@
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
+ },
23
+ "required": [
24
+ "footerClick"
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
+ "Component": {
35
+ "additionalProperties": false,
36
+ "properties": {
37
+ "brandandcontacts": {
38
+ "$ref": "#/definitions/IBrandAndContacts"
39
+ },
40
+ "columns": {
41
+ "items": {
42
+ "$ref": "#/definitions/IColumn"
43
+ },
44
+ "type": "array"
45
+ },
46
+ "company": {
47
+ "$ref": "#/definitions/ICompany"
48
+ },
49
+ "contacts": {
50
+ "$ref": "#/definitions/IContacts"
51
+ },
52
+ "id": {
53
+ "type": "string"
54
+ },
55
+ "policies": {
56
+ "items": {
57
+ "$ref": "#/definitions/IPolicies"
58
+ },
59
+ "type": "array"
60
+ },
61
+ "socials": {
62
+ "$ref": "#/definitions/ISocials"
63
+ },
64
+ "style": {
65
+ "type": "string"
66
+ }
67
+ },
68
+ "required": [
69
+ "company",
70
+ "brandandcontacts",
71
+ "columns",
72
+ "socials",
73
+ "contacts",
74
+ "policies"
75
+ ],
76
+ "type": "object"
77
+ },
78
+ "IAddressContact": {
79
+ "additionalProperties": false,
80
+ "properties": {
81
+ "_id": {
82
+ "type": "string"
83
+ },
84
+ "address": {
85
+ "type": "string"
86
+ },
87
+ "googleMapUri": {
88
+ "type": "string"
89
+ },
90
+ "shortAddress": {
91
+ "type": "string"
92
+ }
93
+ },
94
+ "required": [
95
+ "address"
96
+ ],
97
+ "type": "object"
98
+ },
99
+ "IBrandAndContacts": {
100
+ "additionalProperties": false,
101
+ "properties": {
102
+ "companyLogoUri": {
103
+ "type": "string"
104
+ },
105
+ "companyName": {
106
+ "type": "string"
107
+ }
108
+ },
109
+ "required": [
110
+ "companyName",
111
+ "companyLogoUri"
112
+ ],
113
+ "type": "object"
114
+ },
115
+ "IColumn": {
116
+ "additionalProperties": false,
117
+ "properties": {
118
+ "_id": {
119
+ "type": "string"
120
+ },
121
+ "cells": {
122
+ "items": {
123
+ "additionalProperties": false,
124
+ "properties": {
125
+ "_id": {
126
+ "type": "string"
127
+ },
128
+ "address": {
129
+ "$ref": "#/definitions/IAddressContact"
130
+ },
131
+ "email": {
132
+ "$ref": "#/definitions/IEmailContact"
133
+ },
134
+ "label": {
135
+ "type": "string"
136
+ },
137
+ "phone": {
138
+ "$ref": "#/definitions/IPhoneContact"
139
+ },
140
+ "site": {
141
+ "$ref": "#/definitions/ISiteContact"
142
+ }
143
+ },
144
+ "required": [
145
+ "_id"
146
+ ],
147
+ "type": "object"
148
+ },
149
+ "type": "array"
150
+ },
151
+ "title": {
152
+ "type": "string"
153
+ }
154
+ },
155
+ "required": [
156
+ "cells"
157
+ ],
158
+ "type": "object"
159
+ },
160
+ "ICompany": {
161
+ "additionalProperties": false,
162
+ "properties": {
163
+ "companyName": {
164
+ "type": "string"
165
+ },
166
+ "description": {
167
+ "type": "string"
168
+ },
169
+ "fiscalCode": {
170
+ "type": "string"
171
+ },
172
+ "logoUri": {
173
+ "type": "string"
174
+ },
175
+ "registration": {
176
+ "additionalProperties": false,
177
+ "properties": {
178
+ "since": {
179
+ "type": "number"
180
+ },
181
+ "text": {
182
+ "type": "string"
183
+ }
184
+ },
185
+ "type": "object"
186
+ },
187
+ "since": {
188
+ "type": "number"
189
+ },
190
+ "siteName": {
191
+ "type": "string"
192
+ },
193
+ "vatNumber": {
194
+ "type": "string"
195
+ }
196
+ },
197
+ "required": [
198
+ "logoUri",
199
+ "siteName",
200
+ "companyName",
201
+ "description"
202
+ ],
203
+ "type": "object"
204
+ },
205
+ "IContacts": {
206
+ "additionalProperties": false,
207
+ "properties": {
208
+ "addresses": {
209
+ "items": {
210
+ "$ref": "#/definitions/IAddressContact"
211
+ },
212
+ "type": "array"
213
+ },
214
+ "emails": {
215
+ "items": {
216
+ "$ref": "#/definitions/IEmailContact"
217
+ },
218
+ "type": "array"
219
+ },
220
+ "phones": {
221
+ "items": {
222
+ "$ref": "#/definitions/IPhoneContact"
223
+ },
224
+ "type": "array"
225
+ },
226
+ "sites": {
227
+ "items": {
228
+ "$ref": "#/definitions/ISiteContact"
229
+ },
230
+ "type": "array"
231
+ }
232
+ },
233
+ "type": "object"
234
+ },
235
+ "IEmailContact": {
236
+ "additionalProperties": false,
237
+ "properties": {
238
+ "_id": {
239
+ "type": "string"
240
+ },
241
+ "address": {
242
+ "type": "string"
243
+ },
244
+ "label": {
245
+ "type": "string"
246
+ }
247
+ },
248
+ "required": [
249
+ "address"
250
+ ],
251
+ "type": "object"
252
+ },
253
+ "IPhoneContact": {
254
+ "additionalProperties": false,
255
+ "properties": {
256
+ "_id": {
257
+ "type": "string"
258
+ },
259
+ "label": {
260
+ "type": "string"
261
+ },
262
+ "number": {
263
+ "type": "string"
264
+ }
265
+ },
266
+ "required": [
267
+ "number"
268
+ ],
269
+ "type": "object"
270
+ },
271
+ "IPolicies": {
272
+ "additionalProperties": false,
273
+ "properties": {
274
+ "key": {
275
+ "type": "string"
276
+ },
277
+ "label": {
278
+ "type": "string"
279
+ }
280
+ },
281
+ "required": [
282
+ "label",
283
+ "key"
284
+ ],
285
+ "type": "object"
286
+ },
287
+ "ISiteContact": {
288
+ "additionalProperties": false,
289
+ "properties": {
290
+ "_id": {
291
+ "type": "string"
292
+ },
293
+ "label": {
294
+ "type": "string"
295
+ },
296
+ "open": {
297
+ "type": "boolean"
298
+ },
299
+ "uri": {
300
+ "type": "string"
301
+ }
302
+ },
303
+ "required": [
304
+ "uri"
305
+ ],
306
+ "type": "object"
307
+ },
308
+ "ISocials": {
309
+ "additionalProperties": false,
310
+ "properties": {
311
+ "discord": {
312
+ "type": "string"
313
+ },
314
+ "facebook": {
315
+ "type": "string"
316
+ },
317
+ "github": {
318
+ "type": "string"
319
+ },
320
+ "gmail": {
321
+ "type": "string"
322
+ },
323
+ "twitch": {
324
+ "type": "string"
325
+ },
326
+ "twitter": {
327
+ "type": "string"
328
+ },
329
+ "youtube": {
330
+ "type": "string"
331
+ }
332
+ },
333
+ "type": "object"
334
+ }
335
+ }
336
+ }
337
+ },
338
+ "storybookArgs": {
339
+ "smallrow": {
340
+ "control": {
341
+ "type": "object"
342
+ }
343
+ },
344
+ "columns": {
345
+ "control": {
346
+ "type": "array"
347
+ }
348
+ },
349
+ "policies": {
350
+ "control": {
351
+ "type": "array"
352
+ }
353
+ },
354
+ "companyname": {
355
+ "control": {
356
+ "type": "text"
357
+ }
358
+ },
359
+ "companylogouri": {
360
+ "control": {
361
+ "type": "text"
362
+ }
363
+ },
364
+ "brandandcontacts": {
365
+ "control": {
366
+ "type": "object"
367
+ }
368
+ },
369
+ "footerbottom": {
370
+ "control": {
371
+ "type": "object"
372
+ }
373
+ },
374
+ "copyrighttext": {
375
+ "control": {
376
+ "type": "object"
377
+ }
378
+ },
379
+ "socials": {
380
+ "control": {
381
+ "type": "object"
382
+ }
383
+ },
384
+ "contacts": {
385
+ "control": {
386
+ "type": "object"
387
+ }
388
+ },
389
+ "company": {
390
+ "control": {
391
+ "type": "object"
392
+ }
393
+ },
394
+ "footerClick": {
395
+ "action": "footerClickEvent"
396
+ }
397
+ },
398
+ "styleSetup": {
399
+ "vars": [],
400
+ "parts": [
401
+ {
402
+ "name": "column-cell-button-content",
403
+ "description": ""
404
+ }
405
+ ]
406
+ },
407
+ "htmlSlots": [
408
+ {
409
+ "name": "footerpolicy",
410
+ "description": ""
411
+ },
412
+ {
413
+ "description": "",
414
+ "name": "footerheader"
415
+ },
416
+ {
417
+ "description": "",
418
+ "name": "footercontent"
419
+ },
420
+ {
421
+ "description": "",
422
+ "name": "footerbottom"
423
+ }
424
+ ],
425
+ "i18n": [],
426
+ "examples": [
427
+ {
428
+ "company": {
429
+ "logoUri": "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
430
+ "siteName": "testsite",
431
+ "companyName": "testcompany S.R.L.",
432
+ "registration": {
433
+ "text": "copyright"
434
+ },
435
+ "description": "testo e descrizione di esempio dell applicazione",
436
+ "vatNumber": "aa - ffffff",
437
+ "fiscalCode": "f4f5f6fff"
438
+ },
439
+ "brandandcontacts": {
440
+ "companyName": "bella",
441
+ "companyLogoUri": ""
442
+ },
443
+ "columns": [
444
+ {
445
+ "cells": [
446
+ {
447
+ "label": "test",
448
+ "_id": "test"
449
+ },
450
+ {
451
+ "label": "test2",
452
+ "_id": "test2"
453
+ },
454
+ {
455
+ "label": "test3",
456
+ "_id": "test3"
457
+ }
458
+ ],
459
+ "title": "stringtitle"
460
+ }
461
+ ],
462
+ "policies": [
463
+ {
464
+ "label": "Privacy Policy",
465
+ "key": "privacypolicy"
466
+ },
467
+ {
468
+ "label": "Condizioni Generali",
469
+ "key": "generalcondition"
470
+ },
471
+ {
472
+ "label": "Cookie Policy",
473
+ "key": "cookiepolicy"
474
+ }
475
+ ],
476
+ "contacts": {
477
+ "sites": [
478
+ {
479
+ "label": "dariocaruso.info",
480
+ "uri": "https://dariocaruso.info"
481
+ }
482
+ ],
483
+ "phones": [
484
+ {
485
+ "number": "6666666666666"
486
+ }
487
+ ],
488
+ "addresses": [],
489
+ "emails": []
490
+ },
491
+ "socials": {
492
+ "facebook": "fbbb",
493
+ "youtube": "yttttttt"
494
+ }
495
+ }
496
+ ],
497
+ "name": "hb-footer",
498
+ "category": "layout",
499
+ "tags": [
500
+ "layout"
501
+ ],
502
+ "size": {}
503
+ }