@htmlbricks/hb-footer 0.8.21 → 0.8.22
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.
|
@@ -19,9 +19,6 @@
|
|
|
19
19
|
"contacts": {
|
|
20
20
|
"$ref": "#/definitions/IContacts"
|
|
21
21
|
},
|
|
22
|
-
"footerbottom": {
|
|
23
|
-
"$ref": "#/definitions/IFooterBottom"
|
|
24
|
-
},
|
|
25
22
|
"id": {
|
|
26
23
|
"type": "string"
|
|
27
24
|
},
|
|
@@ -31,9 +28,6 @@
|
|
|
31
28
|
},
|
|
32
29
|
"type": "array"
|
|
33
30
|
},
|
|
34
|
-
"smallrow": {
|
|
35
|
-
"$ref": "#/definitions/ISmallRow"
|
|
36
|
-
},
|
|
37
31
|
"socials": {
|
|
38
32
|
"$ref": "#/definitions/ISocials"
|
|
39
33
|
},
|
|
@@ -45,7 +39,6 @@
|
|
|
45
39
|
"company",
|
|
46
40
|
"brandandcontacts",
|
|
47
41
|
"columns",
|
|
48
|
-
"footerbottom",
|
|
49
42
|
"socials",
|
|
50
43
|
"contacts",
|
|
51
44
|
"policies"
|
|
@@ -248,10 +241,6 @@
|
|
|
248
241
|
],
|
|
249
242
|
"type": "object"
|
|
250
243
|
},
|
|
251
|
-
"IFooterBottom": {
|
|
252
|
-
"additionalProperties": false,
|
|
253
|
-
"type": "object"
|
|
254
|
-
},
|
|
255
244
|
"IPhoneContact": {
|
|
256
245
|
"additionalProperties": false,
|
|
257
246
|
"properties": {
|
|
@@ -307,10 +296,6 @@
|
|
|
307
296
|
],
|
|
308
297
|
"type": "object"
|
|
309
298
|
},
|
|
310
|
-
"ISmallRow": {
|
|
311
|
-
"additionalProperties": false,
|
|
312
|
-
"type": "object"
|
|
313
|
-
},
|
|
314
299
|
"ISocials": {
|
|
315
300
|
"additionalProperties": false,
|
|
316
301
|
"properties": {
|
|
@@ -37,8 +37,6 @@ export interface IBrandAndContacts {
|
|
|
37
37
|
companyName: string;
|
|
38
38
|
companyLogoUri: string;
|
|
39
39
|
}
|
|
40
|
-
export interface ISmallRow {}
|
|
41
|
-
export interface IFooterBottom {}
|
|
42
40
|
|
|
43
41
|
export interface IPolicies {
|
|
44
42
|
label: string;
|
|
@@ -77,10 +75,8 @@ export type Component = {
|
|
|
77
75
|
id?: string;
|
|
78
76
|
style?: string;
|
|
79
77
|
company: ICompany;
|
|
80
|
-
smallrow?: ISmallRow;
|
|
81
78
|
brandandcontacts: IBrandAndContacts;
|
|
82
79
|
columns: IColumn[];
|
|
83
|
-
footerbottom: IFooterBottom;
|
|
84
80
|
socials: ISocials;
|
|
85
81
|
contacts: IContacts;
|
|
86
82
|
policies: IPolicies[];
|