@htmlbricks/hb-footer 0.8.43 → 0.8.45

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/release/docs.mjs DELETED
@@ -1,115 +0,0 @@
1
- export var storybookArgs = {
2
- smallrow: { control: { type: "object" } },
3
- columns: { control: { type: "array" } },
4
- policies: { control: { type: "array" } },
5
- companyname: { control: { type: "text" } },
6
- companylogouri: { control: { type: "text" } },
7
- brandandcontacts: { control: { type: "object" } },
8
- footerbottom: { control: { type: "object" } },
9
- copyrighttext: { control: { type: "object" } },
10
- socials: { control: { type: "object" } },
11
- contacts: { control: { type: "object" } },
12
- company: { control: { type: "object" } },
13
- footerClick: { action: "footerClickEvent" }
14
- };
15
- var cssVars = [];
16
- export var cssParts = [{ name: "column-cell-button-content", description: "" }];
17
- export var htmlSlots = [
18
- { name: "footerpolicy", description: "" },
19
- { description: "", name: "footerheader" },
20
- { description: "", name: "footercontent" },
21
- { description: "", name: "footerbottom" },
22
- ];
23
- export var i18nLanguages = [];
24
- export var styleSetup = {
25
- vars: cssVars,
26
- parts: cssParts
27
- };
28
- var company = {
29
- logoUri: "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
30
- siteName: "testsite",
31
- companyName: "testcompany S.R.L.",
32
- registration: { text: "copyright" },
33
- description: "testo e descrizione di esempio dell applicazione",
34
- vatNumber: "aa - ffffff",
35
- fiscalCode: "f4f5f6fff"
36
- };
37
- var contacts = {
38
- sites: [
39
- {
40
- label: "dariocaruso.info",
41
- uri: "https://dariocaruso.info"
42
- },
43
- ],
44
- phones: [
45
- {
46
- number: "6666666666666"
47
- },
48
- ],
49
- addresses: [],
50
- emails: []
51
- };
52
- var socials = {
53
- facebook: "fbbb",
54
- youtube: "yttttttt"
55
- };
56
- var columns = [
57
- {
58
- cells: [
59
- {
60
- label: "test",
61
- _id: "test"
62
- },
63
- {
64
- label: "test2",
65
- _id: "test2"
66
- },
67
- {
68
- label: "test3",
69
- _id: "test3"
70
- },
71
- ],
72
- title: "stringtitle"
73
- },
74
- ];
75
- var brandandcontacts = {
76
- companyName: "bella",
77
- companyLogoUri: ""
78
- };
79
- var policies = [
80
- {
81
- label: "Privacy Policy",
82
- key: "privacypolicy"
83
- },
84
- {
85
- label: "Condizioni Generali",
86
- key: "generalcondition"
87
- },
88
- {
89
- label: "Cookie Policy",
90
- key: "cookiepolicy"
91
- },
92
- ];
93
- var examples = [
94
- {
95
- company: company,
96
- brandandcontacts: brandandcontacts,
97
- columns: columns,
98
- policies: policies,
99
- contacts: contacts,
100
- socials: socials
101
- },
102
- ];
103
- export var componentSetup = {
104
- definitions: null,
105
- storybookArgs: storybookArgs,
106
- styleSetup: styleSetup,
107
- htmlSlots: htmlSlots,
108
- i18n: i18nLanguages,
109
- examples: examples,
110
- name: "hb-footer",
111
- category: "layout",
112
- tags: ["layout"],
113
- size: {}
114
- };
115
- //# sourceMappingURL=docs.js.map
@@ -1,307 +0,0 @@
1
- {
2
- "$ref": "#/definitions/Component",
3
- "$schema": "http://json-schema.org/draft-07/schema#",
4
- "definitions": {
5
- "Component": {
6
- "additionalProperties": false,
7
- "properties": {
8
- "brandandcontacts": {
9
- "$ref": "#/definitions/IBrandAndContacts"
10
- },
11
- "columns": {
12
- "items": {
13
- "$ref": "#/definitions/IColumn"
14
- },
15
- "type": "array"
16
- },
17
- "company": {
18
- "$ref": "#/definitions/ICompany"
19
- },
20
- "contacts": {
21
- "$ref": "#/definitions/IContacts"
22
- },
23
- "id": {
24
- "type": "string"
25
- },
26
- "policies": {
27
- "items": {
28
- "$ref": "#/definitions/IPolicies"
29
- },
30
- "type": "array"
31
- },
32
- "socials": {
33
- "$ref": "#/definitions/ISocials"
34
- },
35
- "style": {
36
- "type": "string"
37
- }
38
- },
39
- "required": [
40
- "company",
41
- "brandandcontacts",
42
- "columns",
43
- "socials",
44
- "contacts",
45
- "policies"
46
- ],
47
- "type": "object"
48
- },
49
- "IAddressContact": {
50
- "additionalProperties": false,
51
- "properties": {
52
- "_id": {
53
- "type": "string"
54
- },
55
- "address": {
56
- "type": "string"
57
- },
58
- "googleMapUri": {
59
- "type": "string"
60
- },
61
- "shortAddress": {
62
- "type": "string"
63
- }
64
- },
65
- "required": [
66
- "address"
67
- ],
68
- "type": "object"
69
- },
70
- "IBrandAndContacts": {
71
- "additionalProperties": false,
72
- "properties": {
73
- "companyLogoUri": {
74
- "type": "string"
75
- },
76
- "companyName": {
77
- "type": "string"
78
- }
79
- },
80
- "required": [
81
- "companyName",
82
- "companyLogoUri"
83
- ],
84
- "type": "object"
85
- },
86
- "IColumn": {
87
- "additionalProperties": false,
88
- "properties": {
89
- "_id": {
90
- "type": "string"
91
- },
92
- "cells": {
93
- "items": {
94
- "additionalProperties": false,
95
- "properties": {
96
- "_id": {
97
- "type": "string"
98
- },
99
- "address": {
100
- "$ref": "#/definitions/IAddressContact"
101
- },
102
- "email": {
103
- "$ref": "#/definitions/IEmailContact"
104
- },
105
- "label": {
106
- "type": "string"
107
- },
108
- "phone": {
109
- "$ref": "#/definitions/IPhoneContact"
110
- },
111
- "site": {
112
- "$ref": "#/definitions/ISiteContact"
113
- }
114
- },
115
- "required": [
116
- "_id"
117
- ],
118
- "type": "object"
119
- },
120
- "type": "array"
121
- },
122
- "title": {
123
- "type": "string"
124
- }
125
- },
126
- "required": [
127
- "cells"
128
- ],
129
- "type": "object"
130
- },
131
- "ICompany": {
132
- "additionalProperties": false,
133
- "properties": {
134
- "companyName": {
135
- "type": "string"
136
- },
137
- "description": {
138
- "type": "string"
139
- },
140
- "fiscalCode": {
141
- "type": "string"
142
- },
143
- "logoUri": {
144
- "type": "string"
145
- },
146
- "registration": {
147
- "additionalProperties": false,
148
- "properties": {
149
- "since": {
150
- "type": "number"
151
- },
152
- "text": {
153
- "type": "string"
154
- }
155
- },
156
- "type": "object"
157
- },
158
- "since": {
159
- "type": "number"
160
- },
161
- "siteName": {
162
- "type": "string"
163
- },
164
- "vatNumber": {
165
- "type": "string"
166
- }
167
- },
168
- "required": [
169
- "logoUri",
170
- "siteName",
171
- "companyName",
172
- "description"
173
- ],
174
- "type": "object"
175
- },
176
- "IContacts": {
177
- "additionalProperties": false,
178
- "properties": {
179
- "addresses": {
180
- "items": {
181
- "$ref": "#/definitions/IAddressContact"
182
- },
183
- "type": "array"
184
- },
185
- "emails": {
186
- "items": {
187
- "$ref": "#/definitions/IEmailContact"
188
- },
189
- "type": "array"
190
- },
191
- "phones": {
192
- "items": {
193
- "$ref": "#/definitions/IPhoneContact"
194
- },
195
- "type": "array"
196
- },
197
- "sites": {
198
- "items": {
199
- "$ref": "#/definitions/ISiteContact"
200
- },
201
- "type": "array"
202
- }
203
- },
204
- "type": "object"
205
- },
206
- "IEmailContact": {
207
- "additionalProperties": false,
208
- "properties": {
209
- "_id": {
210
- "type": "string"
211
- },
212
- "address": {
213
- "type": "string"
214
- },
215
- "label": {
216
- "type": "string"
217
- }
218
- },
219
- "required": [
220
- "address"
221
- ],
222
- "type": "object"
223
- },
224
- "IPhoneContact": {
225
- "additionalProperties": false,
226
- "properties": {
227
- "_id": {
228
- "type": "string"
229
- },
230
- "label": {
231
- "type": "string"
232
- },
233
- "number": {
234
- "type": "string"
235
- }
236
- },
237
- "required": [
238
- "number"
239
- ],
240
- "type": "object"
241
- },
242
- "IPolicies": {
243
- "additionalProperties": false,
244
- "properties": {
245
- "key": {
246
- "type": "string"
247
- },
248
- "label": {
249
- "type": "string"
250
- }
251
- },
252
- "required": [
253
- "label",
254
- "key"
255
- ],
256
- "type": "object"
257
- },
258
- "ISiteContact": {
259
- "additionalProperties": false,
260
- "properties": {
261
- "_id": {
262
- "type": "string"
263
- },
264
- "label": {
265
- "type": "string"
266
- },
267
- "open": {
268
- "type": "boolean"
269
- },
270
- "uri": {
271
- "type": "string"
272
- }
273
- },
274
- "required": [
275
- "uri"
276
- ],
277
- "type": "object"
278
- },
279
- "ISocials": {
280
- "additionalProperties": false,
281
- "properties": {
282
- "discord": {
283
- "type": "string"
284
- },
285
- "facebook": {
286
- "type": "string"
287
- },
288
- "github": {
289
- "type": "string"
290
- },
291
- "gmail": {
292
- "type": "string"
293
- },
294
- "twitch": {
295
- "type": "string"
296
- },
297
- "twitter": {
298
- "type": "string"
299
- },
300
- "youtube": {
301
- "type": "string"
302
- }
303
- },
304
- "type": "object"
305
- }
306
- }
307
- }
@@ -1,27 +0,0 @@
1
- {
2
- "$ref": "#/definitions/Events",
3
- "$schema": "http://json-schema.org/draft-07/schema#",
4
- "definitions": {
5
- "Events": {
6
- "additionalProperties": false,
7
- "properties": {
8
- "footerClick": {
9
- "additionalProperties": false,
10
- "properties": {
11
- "elClick": {
12
- "type": "string"
13
- }
14
- },
15
- "required": [
16
- "elClick"
17
- ],
18
- "type": "object"
19
- }
20
- },
21
- "required": [
22
- "footerClick"
23
- ],
24
- "type": "object"
25
- }
26
- }
27
- }