@htmlbricks/hb-footer 0.8.37 → 0.8.39
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/extra/docs.ts +3 -2
- package/package.json +10 -8
- package/release/docs.js +1 -0
- package/release/docs.js.map +1 -1
- package/release/docs.mjs +40 -0
- package/release/docs.ts +3 -2
- package/release/manifest.json +431 -0
- package/release/release.js +1 -1
- package/release/release.js.map +1 -1
- package/release/webcomponent.type.d.json +1 -21
- package/release/webcomponent_events.type.d.json +27 -0
- package/release/docs.type.d.json +0 -95
package/extra/docs.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup } from "@htmlbricks/hb-jsutils/main";
|
|
1
|
+
import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup, ComponentSetup } from "@htmlbricks/hb-jsutils/main";
|
|
2
2
|
|
|
3
3
|
export const storybookArgs = {
|
|
4
4
|
smallrow: { control: { type: "object" } },
|
|
@@ -31,7 +31,8 @@ export const styleSetup: StyleSetup = {
|
|
|
31
31
|
parts: cssParts,
|
|
32
32
|
};
|
|
33
33
|
|
|
34
|
-
export const componentSetup = {
|
|
34
|
+
export const componentSetup: ComponentSetup = {
|
|
35
|
+
definitions: null,
|
|
35
36
|
storybookArgs,
|
|
36
37
|
styleSetup,
|
|
37
38
|
htmlSlots,
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@htmlbricks/hb-footer",
|
|
3
3
|
"displayName": "Svelte Bootstrap Footer WebComponent",
|
|
4
4
|
"description": "Svelte Bootstrap Footer WebComponent",
|
|
5
|
-
"version": "0.8.
|
|
5
|
+
"version": "0.8.39",
|
|
6
6
|
"main": "release/release.js",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
@@ -20,15 +20,18 @@
|
|
|
20
20
|
"start": "sirv dist",
|
|
21
21
|
"dev": "rm -rf ./dist && rollup -c -w",
|
|
22
22
|
"build": "rm -rf ./dist && rollup -c",
|
|
23
|
-
"generate-
|
|
24
|
-
"generate-schema": "ts-json-schema-generator --path 'app/types/webcomponent.type.d.ts' > dist/webcomponent.type.d.json",
|
|
23
|
+
"generate-manifest": "npm run generate-schemes && manifester --dir $PWD",
|
|
24
|
+
"generate-component-schema": "ts-json-schema-generator --type 'Component' --path 'app/types/webcomponent.type.d.ts' > dist/webcomponent.type.d.json",
|
|
25
|
+
"generate-events-schema": "ts-json-schema-generator --type 'Events' --path 'app/types/webcomponent.type.d.ts' > dist/webcomponent_events.type.d.json",
|
|
26
|
+
"generate-schemes": "npm run generate-events-schema && npm run generate-component-schema",
|
|
25
27
|
"copydest": "rm -rf release && mkdir -p release && mkdir -p release && cp dist/* ./release/",
|
|
26
28
|
"build-extra": "tsc --moduleResolution node --module es2020 --esModuleInterop true --outDir dist --sourceMap --skipLibCheck extra/*",
|
|
27
|
-
"build:release": "PRODUCTION=true npm run build && npm run build-extra && npm run generate-
|
|
29
|
+
"build:release": "PRODUCTION=true npm run build && npm run build-extra && npm run generate-manifest && npm run copydest",
|
|
28
30
|
"prepublish": "npm run build:release"
|
|
29
31
|
},
|
|
30
32
|
"devDependencies": {
|
|
31
|
-
"@htmlbricks/hb-jsutils": "^0.8.
|
|
33
|
+
"@htmlbricks/hb-jsutils": "^0.8.39",
|
|
34
|
+
"@htmlbricks/manifester": "^0.0.5",
|
|
32
35
|
"@rollup/plugin-alias": "^3.1.2",
|
|
33
36
|
"@rollup/plugin-commonjs": "^18.0.0",
|
|
34
37
|
"@rollup/plugin-json": "^4.1.0",
|
|
@@ -42,7 +45,6 @@
|
|
|
42
45
|
"eslint": "^7.25.0",
|
|
43
46
|
"eslint-plugin-jsdoc": "^33.0.0",
|
|
44
47
|
"eslint-plugin-svelte3": "^3.2.0",
|
|
45
|
-
"generate-json-from-js-object": "^0.0.17",
|
|
46
48
|
"node-sass": "^6.0.1",
|
|
47
49
|
"postcss": "^8.2.13",
|
|
48
50
|
"postcss-load-config": "^3.0.1",
|
|
@@ -68,7 +70,7 @@
|
|
|
68
70
|
"typescript-transform-paths": "^2.2.3"
|
|
69
71
|
},
|
|
70
72
|
"dependencies": {
|
|
71
|
-
"@htmlbricks/hb-contact-item": "^0.8.
|
|
73
|
+
"@htmlbricks/hb-contact-item": "^0.8.39"
|
|
72
74
|
},
|
|
73
75
|
"keywords": [
|
|
74
76
|
"svelte",
|
|
@@ -76,5 +78,5 @@
|
|
|
76
78
|
"webcomponents"
|
|
77
79
|
],
|
|
78
80
|
"contributors": [],
|
|
79
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "a771bab3b3337eaa36e3c3330545158c3ef927e6"
|
|
80
82
|
}
|
package/release/docs.js
CHANGED
package/release/docs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,IAAM,aAAa,GAAG;IAC5B,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACzC,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE;IACvC,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE;IACxC,WAAW,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IAC1C,cAAc,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IAC7C,gBAAgB,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACjD,YAAY,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IAC7C,aAAa,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IAC9C,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACxC,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACzC,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACxC,WAAW,EAAE,EAAE,MAAM,EAAE,kBAAkB,EAAE;CAC3C,CAAC;AAEF,IAAM,OAAO,GAAa,EAAE,CAAC;AAC7B,MAAM,CAAC,IAAM,QAAQ,GAAc,CAAC,EAAE,IAAI,EAAE,4BAA4B,EAAE,WAAW,EAAE,EAAE,EAAE,CAAC,CAAC;AAC7F,MAAM,CAAC,IAAM,SAAS,GAAe;IACpC,EAAE,IAAI,EAAE,cAAc,EAAE,WAAW,EAAE,EAAE,EAAE;IACzC,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE;IACzC,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,eAAe,EAAE;IAC1C,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE;CACzC,CAAC;AAEF,MAAM,CAAC,IAAM,aAAa,GAAe,EAAE,CAAC;AAE5C,MAAM,CAAC,IAAM,UAAU,GAAe;IACrC,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,QAAQ;CACf,CAAC;AAEF,MAAM,CAAC,IAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,IAAM,aAAa,GAAG;IAC5B,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACzC,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE;IACvC,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE;IACxC,WAAW,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IAC1C,cAAc,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;IAC7C,gBAAgB,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACjD,YAAY,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IAC7C,aAAa,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IAC9C,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACxC,QAAQ,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACzC,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;IACxC,WAAW,EAAE,EAAE,MAAM,EAAE,kBAAkB,EAAE;CAC3C,CAAC;AAEF,IAAM,OAAO,GAAa,EAAE,CAAC;AAC7B,MAAM,CAAC,IAAM,QAAQ,GAAc,CAAC,EAAE,IAAI,EAAE,4BAA4B,EAAE,WAAW,EAAE,EAAE,EAAE,CAAC,CAAC;AAC7F,MAAM,CAAC,IAAM,SAAS,GAAe;IACpC,EAAE,IAAI,EAAE,cAAc,EAAE,WAAW,EAAE,EAAE,EAAE;IACzC,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE;IACzC,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,eAAe,EAAE;IAC1C,EAAE,WAAW,EAAE,EAAE,EAAE,IAAI,EAAE,cAAc,EAAE;CACzC,CAAC;AAEF,MAAM,CAAC,IAAM,aAAa,GAAe,EAAE,CAAC;AAE5C,MAAM,CAAC,IAAM,UAAU,GAAe;IACrC,IAAI,EAAE,OAAO;IACb,KAAK,EAAE,QAAQ;CACf,CAAC;AAEF,MAAM,CAAC,IAAM,cAAc,GAAmB;IAC7C,WAAW,EAAE,IAAI;IACjB,aAAa,eAAA;IACb,UAAU,YAAA;IACV,SAAS,WAAA;IACT,IAAI,EAAE,aAAa;IACnB,QAAQ,EAAE,EAAE;IACZ,IAAI,EAAE,EAAE;IACR,QAAQ,EAAE,EAAE;IACZ,IAAI,EAAE,EAAE;IACR,IAAI,EAAE,EAAE;CACR,CAAC"}
|
package/release/docs.mjs
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
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
|
+
export var componentSetup = {
|
|
29
|
+
definitions: null,
|
|
30
|
+
storybookArgs: storybookArgs,
|
|
31
|
+
styleSetup: styleSetup,
|
|
32
|
+
htmlSlots: htmlSlots,
|
|
33
|
+
i18n: i18nLanguages,
|
|
34
|
+
examples: [],
|
|
35
|
+
name: "",
|
|
36
|
+
category: "",
|
|
37
|
+
tags: [],
|
|
38
|
+
size: {}
|
|
39
|
+
};
|
|
40
|
+
//# sourceMappingURL=docs.js.map
|
package/release/docs.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup } from "@htmlbricks/hb-jsutils/main";
|
|
1
|
+
import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup, ComponentSetup } from "@htmlbricks/hb-jsutils/main";
|
|
2
2
|
|
|
3
3
|
export const storybookArgs = {
|
|
4
4
|
smallrow: { control: { type: "object" } },
|
|
@@ -31,7 +31,8 @@ export const styleSetup: StyleSetup = {
|
|
|
31
31
|
parts: cssParts,
|
|
32
32
|
};
|
|
33
33
|
|
|
34
|
-
export const componentSetup = {
|
|
34
|
+
export const componentSetup: ComponentSetup = {
|
|
35
|
+
definitions: null,
|
|
35
36
|
storybookArgs,
|
|
36
37
|
styleSetup,
|
|
37
38
|
htmlSlots,
|
|
@@ -0,0 +1,431 @@
|
|
|
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
|
+
"name": "",
|
|
428
|
+
"category": "",
|
|
429
|
+
"tags": [],
|
|
430
|
+
"size": {}
|
|
431
|
+
}
|