@htmlbricks/hb-footer 0.8.6 → 0.8.11

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,15 +19,12 @@
19
19
  "contacts": {
20
20
  "$ref": "#/definitions/IContacts"
21
21
  },
22
- "copyrighttext": {
23
- "type": "string"
24
- },
25
- "description": {
26
- "type": "string"
27
- },
28
22
  "footerbottom": {
29
23
  "$ref": "#/definitions/IFooterBottom"
30
24
  },
25
+ "id": {
26
+ "type": "string"
27
+ },
31
28
  "policies": {
32
29
  "items": {
33
30
  "$ref": "#/definitions/IPolicies"
@@ -39,18 +36,18 @@
39
36
  },
40
37
  "socials": {
41
38
  "$ref": "#/definitions/ISocials"
39
+ },
40
+ "style": {
41
+ "type": "string"
42
42
  }
43
43
  },
44
44
  "required": [
45
45
  "company",
46
- "smallrow",
47
46
  "brandandcontacts",
48
47
  "columns",
49
48
  "footerbottom",
50
- "description",
51
49
  "socials",
52
50
  "contacts",
53
- "copyrighttext",
54
51
  "policies"
55
52
  ],
56
53
  "type": "object"
@@ -339,15 +336,6 @@
339
336
  "type": "string"
340
337
  }
341
338
  },
342
- "required": [
343
- "facebook",
344
- "gmail",
345
- "twitter",
346
- "github",
347
- "youtube",
348
- "twitch",
349
- "discord"
350
- ],
351
339
  "type": "object"
352
340
  }
353
341
  }
@@ -46,13 +46,13 @@ export interface IPolicies {
46
46
  }
47
47
 
48
48
  export interface ISocials {
49
- facebook: string;
50
- gmail: string;
51
- twitter: string;
52
- github: string;
53
- youtube: string;
54
- twitch: string;
55
- discord: string;
49
+ facebook?: string;
50
+ gmail?: string;
51
+ twitter?: string;
52
+ github?: string;
53
+ youtube?: string;
54
+ twitch?: string;
55
+ discord?: string;
56
56
  }
57
57
 
58
58
  export interface IContacts {
@@ -74,15 +74,15 @@ export interface ICompany {
74
74
  }
75
75
 
76
76
  export type Component = {
77
+ id?: string;
78
+ style?: string;
77
79
  company: ICompany;
78
- smallrow: ISmallRow;
80
+ smallrow?: ISmallRow;
79
81
  brandandcontacts: IBrandAndContacts;
80
82
  columns: IColumn[];
81
83
  footerbottom: IFooterBottom;
82
- description: string;
83
84
  socials: ISocials;
84
85
  contacts: IContacts;
85
- copyrighttext: string;
86
86
  policies: IPolicies[];
87
87
  };
88
88