@htmlbricks/hb-layout 0.20.18 → 0.50.0-alpha.10
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/main.iife.js +2 -0
- package/{release/manifest.json → manifest.json} +6 -4
- package/package.json +15 -85
- package/types/webcomponent.type.d.json +462 -0
- package/types/webcomponent.type.d.ts +49 -0
- package/types/webcomponent_events.type.d.json +84 -0
- package/LICENSE.md +0 -68
- package/README.md +0 -2
- package/extra/docs.ts +0 -201
- package/release/docs.js +0 -198
- package/release/docs.js.map +0 -1
- package/release/docs.ts +0 -201
- package/release/release.js +0 -2
- package/release/release.js.map +0 -1
- package/release/webcomponent.type.d.ts +0 -39
package/extra/docs.ts
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup, ComponentSetup } from "wc-js-utils/main";
|
|
2
|
-
import type { Component } from "../app/types/webcomponent.type";
|
|
3
|
-
|
|
4
|
-
export const storybookArgs = {
|
|
5
|
-
pageChange: { action: "pageChange" },
|
|
6
|
-
offcanvasswitch: { action: "offcanvasswitchEvent" },
|
|
7
|
-
// layoutStatus: { action: "layoutStatus" },
|
|
8
|
-
footerClick: { action: "footerClick" },
|
|
9
|
-
navbarDropDownClick: { action: "navbarDropDownClick" },
|
|
10
|
-
page_title: { control: { type: "text" } },
|
|
11
|
-
contacts: { control: { type: "object" } },
|
|
12
|
-
heders: { control: { type: "object" } },
|
|
13
|
-
columns: { control: { type: "object" } },
|
|
14
|
-
sidebar: { control: { type: "object" } },
|
|
15
|
-
socials: { control: { type: "object" } },
|
|
16
|
-
usermenu: { control: { type: "object" } },
|
|
17
|
-
company: { control: { type: "object" } },
|
|
18
|
-
navlinks: { control: { type: "array" } },
|
|
19
|
-
pagename: { control: { type: "text" } },
|
|
20
|
-
cookielawuri4more: { control: { type: "text" } },
|
|
21
|
-
cookielawallowdecline: { control: { type: "boolean" } },
|
|
22
|
-
cookielawlanguage: { control: { type: "text" } },
|
|
23
|
-
cookielaw: { control: { type: "boolean" } },
|
|
24
|
-
onescreen: { control: { type: "boolean" } },
|
|
25
|
-
footer: { control: { type: "object" } },
|
|
26
|
-
policies: { control: { type: "object" } },
|
|
27
|
-
navbarSlotClick: { action: "navbarSlotClick" },
|
|
28
|
-
};
|
|
29
|
-
const cssVars: CssVar[] = [
|
|
30
|
-
{ name: "--bs-primary", valueType: "color", theme: "bootstrap", defaultValue: "#07689f" },
|
|
31
|
-
{ name: "--bs-secondary", valueType: "color", theme: "bootstrap", defaultValue: "#c9d6df" },
|
|
32
|
-
{ name: "--bs-success", valueType: "color", theme: "bootstrap", defaultValue: "#11d3bc" },
|
|
33
|
-
{ name: "--bs-info", valueType: "color", theme: "bootstrap", defaultValue: "#a2d5f2" },
|
|
34
|
-
{ name: "--bs-warning", valueType: "color", theme: "bootstrap", defaultValue: "#ffc107" },
|
|
35
|
-
{ name: "--bs-danger", valueType: "color", theme: "bootstrap", defaultValue: "#f67280" },
|
|
36
|
-
];
|
|
37
|
-
export const cssParts: CssPart[] = [
|
|
38
|
-
{ name: "footer", description: "" },
|
|
39
|
-
{ name: "container", description: "" },
|
|
40
|
-
{ name: "navbar", description: "" },
|
|
41
|
-
{ name: "page", description: "" },
|
|
42
|
-
];
|
|
43
|
-
export const htmlSlots: HtmlSlot[] = [
|
|
44
|
-
{ name: "nav-left-slot", description: "" },
|
|
45
|
-
{ name: "nav-center-slot", description: "" },
|
|
46
|
-
{ name: "nav-right-slot", description: "" },
|
|
47
|
-
{ name: "page", description: "" },
|
|
48
|
-
{ name: "nav-header-slot", description: "" },
|
|
49
|
-
];
|
|
50
|
-
export const i18nLanguages: i18nLang[] = [
|
|
51
|
-
{ lang: "it", language: "italian" },
|
|
52
|
-
{ lang: "en", language: "english" },
|
|
53
|
-
];
|
|
54
|
-
export const styleSetup: StyleSetup = {
|
|
55
|
-
vars: cssVars,
|
|
56
|
-
parts: cssParts,
|
|
57
|
-
};
|
|
58
|
-
const company: Component["company"] = {
|
|
59
|
-
logoUri: "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
|
|
60
|
-
siteName: "testsite",
|
|
61
|
-
companyName: "testcompany S.R.L.",
|
|
62
|
-
registration: { text: "copyright" },
|
|
63
|
-
description: `testo e descrizione di esempio dell applicazione`,
|
|
64
|
-
vatNumber: "aa - ffffff",
|
|
65
|
-
fiscalCode: "f4f5f6fff",
|
|
66
|
-
};
|
|
67
|
-
const navlinks: Component["navlinks"] = [
|
|
68
|
-
{
|
|
69
|
-
label: "Home",
|
|
70
|
-
key: "home",
|
|
71
|
-
icon: "house-door",
|
|
72
|
-
badge: {
|
|
73
|
-
text: "bbb",
|
|
74
|
-
},
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
label: "Dashboard",
|
|
78
|
-
key: "dashboard",
|
|
79
|
-
icon: "speedometer",
|
|
80
|
-
badge: {
|
|
81
|
-
text: "bbb",
|
|
82
|
-
},
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
label: "Settings",
|
|
86
|
-
key: "settings",
|
|
87
|
-
icon: "gear",
|
|
88
|
-
group: "admin",
|
|
89
|
-
badge: {
|
|
90
|
-
text: "bbb",
|
|
91
|
-
},
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
label: "Users",
|
|
95
|
-
key: "users",
|
|
96
|
-
icon: "people-fill",
|
|
97
|
-
group: "admin",
|
|
98
|
-
badge: {
|
|
99
|
-
text: "uuuuu",
|
|
100
|
-
},
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
label: "Stats",
|
|
104
|
-
key: "stats",
|
|
105
|
-
icon: "graph-up",
|
|
106
|
-
group: "stats",
|
|
107
|
-
badge: {
|
|
108
|
-
text: "bbb",
|
|
109
|
-
},
|
|
110
|
-
},
|
|
111
|
-
];
|
|
112
|
-
|
|
113
|
-
const contacts: Component["contacts"] = {
|
|
114
|
-
sites: [
|
|
115
|
-
{
|
|
116
|
-
label: "dariocaruso.info",
|
|
117
|
-
uri: "https://dariocaruso.info",
|
|
118
|
-
},
|
|
119
|
-
],
|
|
120
|
-
phones: [
|
|
121
|
-
{
|
|
122
|
-
number: "6666666666666",
|
|
123
|
-
},
|
|
124
|
-
],
|
|
125
|
-
addresses: [],
|
|
126
|
-
emails: [],
|
|
127
|
-
};
|
|
128
|
-
const usermenu: Component["usermenu"] = {
|
|
129
|
-
list: [
|
|
130
|
-
{
|
|
131
|
-
key: "list1",
|
|
132
|
-
label: "list1",
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
key: "list2",
|
|
136
|
-
label: "list2",
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
key: "list3",
|
|
140
|
-
label: "list3",
|
|
141
|
-
group: "list1",
|
|
142
|
-
badge: 3,
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
key: "list4",
|
|
146
|
-
label: "list4",
|
|
147
|
-
badge: 555,
|
|
148
|
-
},
|
|
149
|
-
],
|
|
150
|
-
imgUri: "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
|
|
151
|
-
};
|
|
152
|
-
const socials: Component["socials"] = {
|
|
153
|
-
facebook: "fbbb",
|
|
154
|
-
youtube: "yttttttt",
|
|
155
|
-
};
|
|
156
|
-
const sidebar: Component["sidebar"] = { title: "ciao" };
|
|
157
|
-
const policies: Component["policies"] = [
|
|
158
|
-
{
|
|
159
|
-
label: "Privacy Policy",
|
|
160
|
-
key: "privacypolicy",
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
label: "Cookie Policy",
|
|
164
|
-
key: "cookiepolicy",
|
|
165
|
-
},
|
|
166
|
-
];
|
|
167
|
-
const examples: { name: string; description?: string; data: Component }[] = [
|
|
168
|
-
{
|
|
169
|
-
name: "default",
|
|
170
|
-
data: {
|
|
171
|
-
company,
|
|
172
|
-
contacts,
|
|
173
|
-
socials,
|
|
174
|
-
navlinks,
|
|
175
|
-
usermenu,
|
|
176
|
-
sidebar,
|
|
177
|
-
policies,
|
|
178
|
-
},
|
|
179
|
-
},
|
|
180
|
-
];
|
|
181
|
-
export const componentSetup: ComponentSetup & { examples: { name: string; description?: string; data: Component }[] } = {
|
|
182
|
-
definitions: null as any,
|
|
183
|
-
storybookArgs,
|
|
184
|
-
styleSetup,
|
|
185
|
-
author: null as any,
|
|
186
|
-
contributors: [],
|
|
187
|
-
owner: null as any,
|
|
188
|
-
htmlSlots,
|
|
189
|
-
i18n: i18nLanguages,
|
|
190
|
-
examples,
|
|
191
|
-
screenshots: [],
|
|
192
|
-
licenses: [{ type: "Apache-2.0", path: "LICENSE.md", cost: 0, currency: "EUR" }],
|
|
193
|
-
readmePath: "README.md",
|
|
194
|
-
name: "hb-layout",
|
|
195
|
-
category: "layout",
|
|
196
|
-
tags: ["layout"],
|
|
197
|
-
size: { layout: "fullscreen" },
|
|
198
|
-
iifePath: "release/release.js",
|
|
199
|
-
repoName: "@htmlbricks/hb-layout",
|
|
200
|
-
version: null as any,
|
|
201
|
-
};
|
package/release/docs.js
DELETED
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
export var storybookArgs = {
|
|
2
|
-
pageChange: { action: "pageChange" },
|
|
3
|
-
offcanvasswitch: { action: "offcanvasswitchEvent" },
|
|
4
|
-
// layoutStatus: { action: "layoutStatus" },
|
|
5
|
-
footerClick: { action: "footerClick" },
|
|
6
|
-
navbarDropDownClick: { action: "navbarDropDownClick" },
|
|
7
|
-
page_title: { control: { type: "text" } },
|
|
8
|
-
contacts: { control: { type: "object" } },
|
|
9
|
-
heders: { control: { type: "object" } },
|
|
10
|
-
columns: { control: { type: "object" } },
|
|
11
|
-
sidebar: { control: { type: "object" } },
|
|
12
|
-
socials: { control: { type: "object" } },
|
|
13
|
-
usermenu: { control: { type: "object" } },
|
|
14
|
-
company: { control: { type: "object" } },
|
|
15
|
-
navlinks: { control: { type: "array" } },
|
|
16
|
-
pagename: { control: { type: "text" } },
|
|
17
|
-
cookielawuri4more: { control: { type: "text" } },
|
|
18
|
-
cookielawallowdecline: { control: { type: "boolean" } },
|
|
19
|
-
cookielawlanguage: { control: { type: "text" } },
|
|
20
|
-
cookielaw: { control: { type: "boolean" } },
|
|
21
|
-
onescreen: { control: { type: "boolean" } },
|
|
22
|
-
footer: { control: { type: "object" } },
|
|
23
|
-
policies: { control: { type: "object" } },
|
|
24
|
-
navbarSlotClick: { action: "navbarSlotClick" }
|
|
25
|
-
};
|
|
26
|
-
var cssVars = [
|
|
27
|
-
{ name: "--bs-primary", valueType: "color", theme: "bootstrap", defaultValue: "#07689f" },
|
|
28
|
-
{ name: "--bs-secondary", valueType: "color", theme: "bootstrap", defaultValue: "#c9d6df" },
|
|
29
|
-
{ name: "--bs-success", valueType: "color", theme: "bootstrap", defaultValue: "#11d3bc" },
|
|
30
|
-
{ name: "--bs-info", valueType: "color", theme: "bootstrap", defaultValue: "#a2d5f2" },
|
|
31
|
-
{ name: "--bs-warning", valueType: "color", theme: "bootstrap", defaultValue: "#ffc107" },
|
|
32
|
-
{ name: "--bs-danger", valueType: "color", theme: "bootstrap", defaultValue: "#f67280" },
|
|
33
|
-
];
|
|
34
|
-
export var cssParts = [
|
|
35
|
-
{ name: "footer", description: "" },
|
|
36
|
-
{ name: "container", description: "" },
|
|
37
|
-
{ name: "navbar", description: "" },
|
|
38
|
-
{ name: "page", description: "" },
|
|
39
|
-
];
|
|
40
|
-
export var htmlSlots = [
|
|
41
|
-
{ name: "nav-left-slot", description: "" },
|
|
42
|
-
{ name: "nav-center-slot", description: "" },
|
|
43
|
-
{ name: "nav-right-slot", description: "" },
|
|
44
|
-
{ name: "page", description: "" },
|
|
45
|
-
{ name: "nav-header-slot", description: "" },
|
|
46
|
-
];
|
|
47
|
-
export var i18nLanguages = [
|
|
48
|
-
{ lang: "it", language: "italian" },
|
|
49
|
-
{ lang: "en", language: "english" },
|
|
50
|
-
];
|
|
51
|
-
export var styleSetup = {
|
|
52
|
-
vars: cssVars,
|
|
53
|
-
parts: cssParts
|
|
54
|
-
};
|
|
55
|
-
var company = {
|
|
56
|
-
logoUri: "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
|
|
57
|
-
siteName: "testsite",
|
|
58
|
-
companyName: "testcompany S.R.L.",
|
|
59
|
-
registration: { text: "copyright" },
|
|
60
|
-
description: "testo e descrizione di esempio dell applicazione",
|
|
61
|
-
vatNumber: "aa - ffffff",
|
|
62
|
-
fiscalCode: "f4f5f6fff"
|
|
63
|
-
};
|
|
64
|
-
var navlinks = [
|
|
65
|
-
{
|
|
66
|
-
label: "Home",
|
|
67
|
-
key: "home",
|
|
68
|
-
icon: "house-door",
|
|
69
|
-
badge: {
|
|
70
|
-
text: "bbb"
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
label: "Dashboard",
|
|
75
|
-
key: "dashboard",
|
|
76
|
-
icon: "speedometer",
|
|
77
|
-
badge: {
|
|
78
|
-
text: "bbb"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
label: "Settings",
|
|
83
|
-
key: "settings",
|
|
84
|
-
icon: "gear",
|
|
85
|
-
group: "admin",
|
|
86
|
-
badge: {
|
|
87
|
-
text: "bbb"
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
label: "Users",
|
|
92
|
-
key: "users",
|
|
93
|
-
icon: "people-fill",
|
|
94
|
-
group: "admin",
|
|
95
|
-
badge: {
|
|
96
|
-
text: "uuuuu"
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
label: "Stats",
|
|
101
|
-
key: "stats",
|
|
102
|
-
icon: "graph-up",
|
|
103
|
-
group: "stats",
|
|
104
|
-
badge: {
|
|
105
|
-
text: "bbb"
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
|
-
];
|
|
109
|
-
var contacts = {
|
|
110
|
-
sites: [
|
|
111
|
-
{
|
|
112
|
-
label: "dariocaruso.info",
|
|
113
|
-
uri: "https://dariocaruso.info"
|
|
114
|
-
},
|
|
115
|
-
],
|
|
116
|
-
phones: [
|
|
117
|
-
{
|
|
118
|
-
number: "6666666666666"
|
|
119
|
-
},
|
|
120
|
-
],
|
|
121
|
-
addresses: [],
|
|
122
|
-
emails: []
|
|
123
|
-
};
|
|
124
|
-
var usermenu = {
|
|
125
|
-
list: [
|
|
126
|
-
{
|
|
127
|
-
key: "list1",
|
|
128
|
-
label: "list1"
|
|
129
|
-
},
|
|
130
|
-
{
|
|
131
|
-
key: "list2",
|
|
132
|
-
label: "list2"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
key: "list3",
|
|
136
|
-
label: "list3",
|
|
137
|
-
group: "list1",
|
|
138
|
-
badge: 3
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
key: "list4",
|
|
142
|
-
label: "list4",
|
|
143
|
-
badge: 555
|
|
144
|
-
},
|
|
145
|
-
],
|
|
146
|
-
imgUri: "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg"
|
|
147
|
-
};
|
|
148
|
-
var socials = {
|
|
149
|
-
facebook: "fbbb",
|
|
150
|
-
youtube: "yttttttt"
|
|
151
|
-
};
|
|
152
|
-
var sidebar = { title: "ciao" };
|
|
153
|
-
var policies = [
|
|
154
|
-
{
|
|
155
|
-
label: "Privacy Policy",
|
|
156
|
-
key: "privacypolicy"
|
|
157
|
-
},
|
|
158
|
-
{
|
|
159
|
-
label: "Cookie Policy",
|
|
160
|
-
key: "cookiepolicy"
|
|
161
|
-
},
|
|
162
|
-
];
|
|
163
|
-
var examples = [
|
|
164
|
-
{
|
|
165
|
-
name: "default",
|
|
166
|
-
data: {
|
|
167
|
-
company: company,
|
|
168
|
-
contacts: contacts,
|
|
169
|
-
socials: socials,
|
|
170
|
-
navlinks: navlinks,
|
|
171
|
-
usermenu: usermenu,
|
|
172
|
-
sidebar: sidebar,
|
|
173
|
-
policies: policies
|
|
174
|
-
}
|
|
175
|
-
},
|
|
176
|
-
];
|
|
177
|
-
export var componentSetup = {
|
|
178
|
-
definitions: null,
|
|
179
|
-
storybookArgs: storybookArgs,
|
|
180
|
-
styleSetup: styleSetup,
|
|
181
|
-
author: null,
|
|
182
|
-
contributors: [],
|
|
183
|
-
owner: null,
|
|
184
|
-
htmlSlots: htmlSlots,
|
|
185
|
-
i18n: i18nLanguages,
|
|
186
|
-
examples: examples,
|
|
187
|
-
screenshots: [],
|
|
188
|
-
licenses: [{ type: "Apache-2.0", path: "LICENSE.md", cost: 0, currency: "EUR" }],
|
|
189
|
-
readmePath: "README.md",
|
|
190
|
-
name: "hb-layout",
|
|
191
|
-
category: "layout",
|
|
192
|
-
tags: ["layout"],
|
|
193
|
-
size: { layout: "fullscreen" },
|
|
194
|
-
iifePath: "release/release.js",
|
|
195
|
-
repoName: "@htmlbricks/hb-layout",
|
|
196
|
-
version: null
|
|
197
|
-
};
|
|
198
|
-
//# sourceMappingURL=docs.js.map
|
package/release/docs.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"docs.js","sourceRoot":"","sources":["../extra/docs.ts"],"names":[],"mappings":"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"}
|
package/release/docs.ts
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
import type { CssPart, CssVar, HtmlSlot, i18nLang, StyleSetup, ComponentSetup } from "wc-js-utils/main";
|
|
2
|
-
import type { Component } from "../app/types/webcomponent.type";
|
|
3
|
-
|
|
4
|
-
export const storybookArgs = {
|
|
5
|
-
pageChange: { action: "pageChange" },
|
|
6
|
-
offcanvasswitch: { action: "offcanvasswitchEvent" },
|
|
7
|
-
// layoutStatus: { action: "layoutStatus" },
|
|
8
|
-
footerClick: { action: "footerClick" },
|
|
9
|
-
navbarDropDownClick: { action: "navbarDropDownClick" },
|
|
10
|
-
page_title: { control: { type: "text" } },
|
|
11
|
-
contacts: { control: { type: "object" } },
|
|
12
|
-
heders: { control: { type: "object" } },
|
|
13
|
-
columns: { control: { type: "object" } },
|
|
14
|
-
sidebar: { control: { type: "object" } },
|
|
15
|
-
socials: { control: { type: "object" } },
|
|
16
|
-
usermenu: { control: { type: "object" } },
|
|
17
|
-
company: { control: { type: "object" } },
|
|
18
|
-
navlinks: { control: { type: "array" } },
|
|
19
|
-
pagename: { control: { type: "text" } },
|
|
20
|
-
cookielawuri4more: { control: { type: "text" } },
|
|
21
|
-
cookielawallowdecline: { control: { type: "boolean" } },
|
|
22
|
-
cookielawlanguage: { control: { type: "text" } },
|
|
23
|
-
cookielaw: { control: { type: "boolean" } },
|
|
24
|
-
onescreen: { control: { type: "boolean" } },
|
|
25
|
-
footer: { control: { type: "object" } },
|
|
26
|
-
policies: { control: { type: "object" } },
|
|
27
|
-
navbarSlotClick: { action: "navbarSlotClick" },
|
|
28
|
-
};
|
|
29
|
-
const cssVars: CssVar[] = [
|
|
30
|
-
{ name: "--bs-primary", valueType: "color", theme: "bootstrap", defaultValue: "#07689f" },
|
|
31
|
-
{ name: "--bs-secondary", valueType: "color", theme: "bootstrap", defaultValue: "#c9d6df" },
|
|
32
|
-
{ name: "--bs-success", valueType: "color", theme: "bootstrap", defaultValue: "#11d3bc" },
|
|
33
|
-
{ name: "--bs-info", valueType: "color", theme: "bootstrap", defaultValue: "#a2d5f2" },
|
|
34
|
-
{ name: "--bs-warning", valueType: "color", theme: "bootstrap", defaultValue: "#ffc107" },
|
|
35
|
-
{ name: "--bs-danger", valueType: "color", theme: "bootstrap", defaultValue: "#f67280" },
|
|
36
|
-
];
|
|
37
|
-
export const cssParts: CssPart[] = [
|
|
38
|
-
{ name: "footer", description: "" },
|
|
39
|
-
{ name: "container", description: "" },
|
|
40
|
-
{ name: "navbar", description: "" },
|
|
41
|
-
{ name: "page", description: "" },
|
|
42
|
-
];
|
|
43
|
-
export const htmlSlots: HtmlSlot[] = [
|
|
44
|
-
{ name: "nav-left-slot", description: "" },
|
|
45
|
-
{ name: "nav-center-slot", description: "" },
|
|
46
|
-
{ name: "nav-right-slot", description: "" },
|
|
47
|
-
{ name: "page", description: "" },
|
|
48
|
-
{ name: "nav-header-slot", description: "" },
|
|
49
|
-
];
|
|
50
|
-
export const i18nLanguages: i18nLang[] = [
|
|
51
|
-
{ lang: "it", language: "italian" },
|
|
52
|
-
{ lang: "en", language: "english" },
|
|
53
|
-
];
|
|
54
|
-
export const styleSetup: StyleSetup = {
|
|
55
|
-
vars: cssVars,
|
|
56
|
-
parts: cssParts,
|
|
57
|
-
};
|
|
58
|
-
const company: Component["company"] = {
|
|
59
|
-
logoUri: "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
|
|
60
|
-
siteName: "testsite",
|
|
61
|
-
companyName: "testcompany S.R.L.",
|
|
62
|
-
registration: { text: "copyright" },
|
|
63
|
-
description: `testo e descrizione di esempio dell applicazione`,
|
|
64
|
-
vatNumber: "aa - ffffff",
|
|
65
|
-
fiscalCode: "f4f5f6fff",
|
|
66
|
-
};
|
|
67
|
-
const navlinks: Component["navlinks"] = [
|
|
68
|
-
{
|
|
69
|
-
label: "Home",
|
|
70
|
-
key: "home",
|
|
71
|
-
icon: "house-door",
|
|
72
|
-
badge: {
|
|
73
|
-
text: "bbb",
|
|
74
|
-
},
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
label: "Dashboard",
|
|
78
|
-
key: "dashboard",
|
|
79
|
-
icon: "speedometer",
|
|
80
|
-
badge: {
|
|
81
|
-
text: "bbb",
|
|
82
|
-
},
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
label: "Settings",
|
|
86
|
-
key: "settings",
|
|
87
|
-
icon: "gear",
|
|
88
|
-
group: "admin",
|
|
89
|
-
badge: {
|
|
90
|
-
text: "bbb",
|
|
91
|
-
},
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
label: "Users",
|
|
95
|
-
key: "users",
|
|
96
|
-
icon: "people-fill",
|
|
97
|
-
group: "admin",
|
|
98
|
-
badge: {
|
|
99
|
-
text: "uuuuu",
|
|
100
|
-
},
|
|
101
|
-
},
|
|
102
|
-
{
|
|
103
|
-
label: "Stats",
|
|
104
|
-
key: "stats",
|
|
105
|
-
icon: "graph-up",
|
|
106
|
-
group: "stats",
|
|
107
|
-
badge: {
|
|
108
|
-
text: "bbb",
|
|
109
|
-
},
|
|
110
|
-
},
|
|
111
|
-
];
|
|
112
|
-
|
|
113
|
-
const contacts: Component["contacts"] = {
|
|
114
|
-
sites: [
|
|
115
|
-
{
|
|
116
|
-
label: "dariocaruso.info",
|
|
117
|
-
uri: "https://dariocaruso.info",
|
|
118
|
-
},
|
|
119
|
-
],
|
|
120
|
-
phones: [
|
|
121
|
-
{
|
|
122
|
-
number: "6666666666666",
|
|
123
|
-
},
|
|
124
|
-
],
|
|
125
|
-
addresses: [],
|
|
126
|
-
emails: [],
|
|
127
|
-
};
|
|
128
|
-
const usermenu: Component["usermenu"] = {
|
|
129
|
-
list: [
|
|
130
|
-
{
|
|
131
|
-
key: "list1",
|
|
132
|
-
label: "list1",
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
key: "list2",
|
|
136
|
-
label: "list2",
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
key: "list3",
|
|
140
|
-
label: "list3",
|
|
141
|
-
group: "list1",
|
|
142
|
-
badge: 3,
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
key: "list4",
|
|
146
|
-
label: "list4",
|
|
147
|
-
badge: 555,
|
|
148
|
-
},
|
|
149
|
-
],
|
|
150
|
-
imgUri: "https://upload.wikimedia.org/wikipedia/commons/8/80/Wikipedia-logo-v2.svg",
|
|
151
|
-
};
|
|
152
|
-
const socials: Component["socials"] = {
|
|
153
|
-
facebook: "fbbb",
|
|
154
|
-
youtube: "yttttttt",
|
|
155
|
-
};
|
|
156
|
-
const sidebar: Component["sidebar"] = { title: "ciao" };
|
|
157
|
-
const policies: Component["policies"] = [
|
|
158
|
-
{
|
|
159
|
-
label: "Privacy Policy",
|
|
160
|
-
key: "privacypolicy",
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
label: "Cookie Policy",
|
|
164
|
-
key: "cookiepolicy",
|
|
165
|
-
},
|
|
166
|
-
];
|
|
167
|
-
const examples: { name: string; description?: string; data: Component }[] = [
|
|
168
|
-
{
|
|
169
|
-
name: "default",
|
|
170
|
-
data: {
|
|
171
|
-
company,
|
|
172
|
-
contacts,
|
|
173
|
-
socials,
|
|
174
|
-
navlinks,
|
|
175
|
-
usermenu,
|
|
176
|
-
sidebar,
|
|
177
|
-
policies,
|
|
178
|
-
},
|
|
179
|
-
},
|
|
180
|
-
];
|
|
181
|
-
export const componentSetup: ComponentSetup & { examples: { name: string; description?: string; data: Component }[] } = {
|
|
182
|
-
definitions: null as any,
|
|
183
|
-
storybookArgs,
|
|
184
|
-
styleSetup,
|
|
185
|
-
author: null as any,
|
|
186
|
-
contributors: [],
|
|
187
|
-
owner: null as any,
|
|
188
|
-
htmlSlots,
|
|
189
|
-
i18n: i18nLanguages,
|
|
190
|
-
examples,
|
|
191
|
-
screenshots: [],
|
|
192
|
-
licenses: [{ type: "Apache-2.0", path: "LICENSE.md", cost: 0, currency: "EUR" }],
|
|
193
|
-
readmePath: "README.md",
|
|
194
|
-
name: "hb-layout",
|
|
195
|
-
category: "layout",
|
|
196
|
-
tags: ["layout"],
|
|
197
|
-
size: { layout: "fullscreen" },
|
|
198
|
-
iifePath: "release/release.js",
|
|
199
|
-
repoName: "@htmlbricks/hb-layout",
|
|
200
|
-
version: null as any,
|
|
201
|
-
};
|
package/release/release.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
var release=function(){"use strict";function e(){}function t(e,t){for(const n in t)e[n]=t[n];return e}function n(e){return e()}function o(){return Object.create(null)}function a(e){e.forEach(n)}function i(e){return"function"==typeof e}function r(e,t){return e!=e?t==t:e!==t||e&&"object"==typeof e||"function"==typeof e}function l(e){const t={};for(const n in e)"$"!==n[0]&&(t[n]=e[n]);return t}function s(e,t){e.appendChild(t)}function c(e,t,n){e.insertBefore(t,n||null)}function u(e){e.parentNode&&e.parentNode.removeChild(e)}function d(e){return document.createElement(e)}function p(e){return document.createTextNode(e)}function f(){return p(" ")}function m(){return p("")}function g(e,t,n,o){return e.addEventListener(t,n,o),()=>e.removeEventListener(t,n,o)}function h(e,t,n){null==n?e.removeAttribute(t):e.getAttribute(t)!==n&&e.setAttribute(t,n)}function v(e,t,n){t in e?e[t]="boolean"==typeof e[t]&&""===n||n:h(e,t,n)}function $(e){const t={};for(const n of e)t[n.name]=n.value;return t}let w;function y(e){w=e}function k(){if(!w)throw new Error("Function called outside component initialization");return w}function b(){const e=k();return(t,n,{cancelable:o=!1}={})=>{const a=e.$$.callbacks[t];if(a){const i=function(e,t,{bubbles:n=!1,cancelable:o=!1}={}){const a=document.createEvent("CustomEvent");return a.initCustomEvent(e,n,o,t),a}(t,n,{cancelable:o});return a.slice().forEach((t=>{t.call(e,i)})),!i.defaultPrevented}return!0}}const _=[],x=[];let C=[];const T=[],E=Promise.resolve();let L=!1;function M(e){C.push(e)}const S=new Set;let D=0;function N(){if(0!==D)return;const e=w;do{try{for(;D<_.length;){const e=_[D];D++,y(e),V(e.$$)}}catch(e){throw _.length=0,D=0,e}for(y(null),_.length=0,D=0;x.length;)x.pop()();for(let e=0;e<C.length;e+=1){const t=C[e];S.has(t)||(S.add(t),t())}C.length=0}while(_.length);for(;T.length;)T.pop()();L=!1,S.clear(),y(e)}function V(e){if(null!==e.fragment){e.update(),a(e.before_update);const t=e.dirty;e.dirty=[-1],e.fragment&&e.fragment.p(e.ctx,t),e.after_update.forEach(M)}}const z=new Set;function A(e,t){e&&e.i&&(z.delete(e),e.i(t))}function H(e,t){e.d(1),t.delete(e.key)}function j(e,t){const n=e.$$;null!==n.fragment&&(!function(e){const t=[],n=[];C.forEach((o=>-1===e.indexOf(o)?t.push(o):n.push(o))),n.forEach((e=>e())),C=t}(n.after_update),a(n.on_destroy),n.fragment&&n.fragment.d(t),n.on_destroy=n.fragment=null,n.ctx=[])}function O(e,t){-1===e.$$.dirty[0]&&(_.push(e),L||(L=!0,E.then(N)),e.$$.dirty.fill(0)),e.$$.dirty[t/31|0]|=1<<t%31}function P(t,r,l,s,c,d,p,f=[-1]){const m=w;y(t);const g=t.$$={fragment:null,ctx:[],props:d,update:e,not_equal:c,bound:o(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(r.context||(m?m.$$.context:[])),callbacks:o(),dirty:f,skip_bound:!1,root:r.target||m.$$.root};p&&p(g.root);let h=!1;if(g.ctx=l?l(t,r.props||{},((e,n,...o)=>{const a=o.length?o[0]:n;return g.ctx&&c(g.ctx[e],g.ctx[e]=a)&&(!g.skip_bound&&g.bound[e]&&g.bound[e](a),h&&O(t,e)),n})):[],g.update(),h=!0,a(g.before_update),g.fragment=!!s&&s(g.ctx),r.target){if(r.hydrate){const e=function(e){return Array.from(e.childNodes)}(r.target);g.fragment&&g.fragment.l(e),e.forEach(u)}else g.fragment&&g.fragment.c();r.intro&&A(t.$$.fragment),function(e,t,o,r){const{fragment:l,after_update:s}=e.$$;l&&l.m(t,o),r||M((()=>{const t=e.$$.on_mount.map(n).filter(i);e.$$.on_destroy?e.$$.on_destroy.push(...t):a(t),e.$$.on_mount=[]})),s.forEach(M)}(t,r.target,r.anchor,r.customElement),N()}y(m)}let W;"function"==typeof HTMLElement&&(W=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:e}=this.$$;this.$$.on_disconnect=e.map(n).filter(i);for(const e in this.$$.slotted)this.appendChild(this.$$.slotted[e])}attributeChangedCallback(e,t,n){this[e]=n}disconnectedCallback(){a(this.$$.on_disconnect)}$destroy(){j(this,1),this.$destroy=e}$on(t,n){if(!i(n))return e;const o=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return o.push(n),()=>{const e=o.indexOf(n);-1!==e&&o.splice(e,1)}}$set(e){var t;this.$$set&&(t=e,0!==Object.keys(t).length)&&(this.$$.skip_bound=!0,this.$$set(e),this.$$.skip_bound=!1)}});var F="0.20.18";function I(e,t,n){var o,a,i,r,l;function s(){var c=Date.now()-r;c<t&&c>=0?o=setTimeout(s,t-c):(o=null,n||(l=e.apply(i,a),i=a=null))}null==t&&(t=100);var c=function(){i=this,a=arguments,r=Date.now();var c=n&&!o;return o||(o=setTimeout(s,t)),c&&(l=e.apply(i,a),i=a=null),l};return c.clear=function(){o&&(clearTimeout(o),o=null)},c.flush=function(){o&&(l=e.apply(i,a),i=a=null,clearTimeout(o),o=null)},c}I.debounce=I;var B=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,q=/\n/g,K=/^\s*/,R=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,G=/^:\s*/,J=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,Q=/^[;\s]*/,U=/^\s+|\s+$/g,X="";function Y(e){return e?e.replace(U,X):X}var Z=function(e,t){var n,o=null;if(!e||"string"!=typeof e)return o;for(var a,i,r=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var n=1,o=1;function a(e){var t=e.match(q);t&&(n+=t.length);var a=e.lastIndexOf("\n");o=~a?e.length-a:o+e.length}function i(){var e={line:n,column:o};return function(t){return t.position=new r(e),c(),t}}function r(e){this.start=e,this.end={line:n,column:o},this.source=t.source}function l(a){var i=new Error(t.source+":"+n+":"+o+": "+a);if(i.reason=a,i.filename=t.source,i.line=n,i.column=o,i.source=e,!t.silent)throw i}function s(t){var n=t.exec(e);if(n){var o=n[0];return a(o),e=e.slice(o.length),n}}function c(){s(K)}function u(e){var t;for(e=e||[];t=d();)!1!==t&&e.push(t);return e}function d(){var t=i();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var n=2;X!=e.charAt(n)&&("*"!=e.charAt(n)||"/"!=e.charAt(n+1));)++n;if(n+=2,X===e.charAt(n-1))return l("End of comment missing");var r=e.slice(2,n-2);return o+=2,a(r),e=e.slice(n),o+=2,t({type:"comment",comment:r})}}function p(){var e=i(),t=s(R);if(t){if(d(),!s(G))return l("property missing ':'");var n=s(J),o=e({type:"declaration",property:Y(t[0].replace(B,X)),value:n?Y(n[0].replace(B,X)):X});return s(Q),o}}return r.prototype.content=e,c(),function(){var e,t=[];for(u(t);e=p();)!1!==e&&(t.push(e),u(t));return t}()}(e),l="function"==typeof t,s=0,c=r.length;s<c;s++)a=(n=r[s]).property,i=n.value,l?t(a,i,n):i&&(o||(o={}),o[a]=i);return o},ee={vars:[{name:"--bs-primary",valueType:"color",theme:"bootstrap",defaultValue:"#07689f"},{name:"--bs-secondary",valueType:"color",theme:"bootstrap",defaultValue:"#c9d6df"},{name:"--bs-success",valueType:"color",theme:"bootstrap",defaultValue:"#11d3bc"},{name:"--bs-info",valueType:"color",theme:"bootstrap",defaultValue:"#a2d5f2"},{name:"--bs-warning",valueType:"color",theme:"bootstrap",defaultValue:"#ffc107"},{name:"--bs-danger",valueType:"color",theme:"bootstrap",defaultValue:"#f67280"}],parts:[{name:"footer",description:""},{name:"container",description:""},{name:"navbar",description:""},{name:"page",description:""}]},te={vars:[{name:"--bs-primary",valueType:"color",theme:"bootstrap",defaultValue:"#07689f"},{name:"--bs-secondary",valueType:"color",theme:"bootstrap",defaultValue:"#c9d6df"},{name:"--bs-success",valueType:"color",theme:"bootstrap",defaultValue:"#11d3bc"},{name:"--bs-info",valueType:"color",theme:"bootstrap",defaultValue:"#a2d5f2"},{name:"--bs-warning",valueType:"color",theme:"bootstrap",defaultValue:"#ffc107"},{name:"--bs-danger",valueType:"color",theme:"bootstrap",defaultValue:"#f67280"}],parts:[{name:"footer",description:""},{name:"container",description:""},{name:"navbar",description:""},{name:"page",description:""}]};var ne,oe=(function(e,t){t.__esModule=!0,t.LanguageTranslator=t.addComponent=t.getChildStyleToPass=void 0,t.getChildStyleToPass=function(e,t){var n,o,a="";if(e&&(null==t?void 0:t.length)&&(null===(n=Object.keys(e))||void 0===n?void 0:n.length)&&(null===(o=null==t?void 0:t.filter((function(t){return Object.keys(e).includes(t.name)})))||void 0===o?void 0:o.length))for(var i=function(n){(null==t?void 0:t.filter((function(t){return t.name===n&&t.defaultValue!==e[n]})))&&(a+="".concat(n,":").concat(e[n],";"))},r=0,l=Object.keys(e);r<l.length;r++)i(l[r]);return a},t.addComponent=function(e){var t,n=(null===(t=null==e?void 0:e.repoName.split("/"))||void 0===t?void 0:t[1])||(null==e?void 0:e.repoName);if(!n)throw new Error("wrong componentPath "+(null==e?void 0:e.repoName));if(!(null==e?void 0:e.version))throw new Error("wrong version "+(null==e?void 0:e.version));var o=(null==e?void 0:e.iifePath)||"release/release.js";if(!document.getElementById(n+"-script"))try{var a=document.createElement("script");a.id=n+"-script",a.src="https://cdn.jsdelivr.net/npm/".concat(e.repoName,"@").concat(e.version,"/").concat(o),(null==e?void 0:e.local)&&location.href.includes("localhost")&&(a.src="".concat(e.local)),document.head.appendChild(a)}catch(e){console.warn(e)}};var n=function(){function e(e){if(!(null==e?void 0:e.dictionary))throw new Error("no dictionary provided");this.dictionary=e.dictionary,this.setLang(null==e?void 0:e.lang)}return e.prototype.setLang=function(t){t||(t=e.getDefaultLang()),this.lang=t},e.prototype.translateWord=function(t,n){return e.getDictionaryWord(t,this.dictionary,n||this.lang)},e.prototype.translateDate=function(t,n,o){return e.formatDate(t,n,o||this.lang)},e.getDefaultLang=function(){var e,t,n,o,a,i="en";return(null===navigator||void 0===navigator?void 0:navigator.languages)&&(null===(n=null===(t=null===(e=navigator.languages[0])||void 0===e?void 0:e.split("-")[0])||void 0===t?void 0:t.toLowerCase())||void 0===n?void 0:n.length)&&(i=null===(a=null===(o=navigator.languages[0])||void 0===o?void 0:o.split("-")[0])||void 0===a?void 0:a.toLowerCase()),i},e.getDictionaryWord=function(t,n,o){var a;if(!t)throw new Error("no wordKey provided");if(!n)throw new Error("no dictionary provided");if(o&&(null===(a=n[o])||void 0===a?void 0:a[t]))return n[o][t];var i="",r=e.getDefaultLang();if(!o||r!==o){var l=null==n?void 0:n[r];(null==l?void 0:l[t])&&(i=l[t])}return i},e.formatDate=function(t,n,o){if(!t)throw new Error("no date provided");if("function"!=typeof t.getMonth)throw new Error("wrong date format");return new Intl.DateTimeFormat(o||e.getDefaultLang(),n).format(t)},e}();t.LanguageTranslator=n}(ne={exports:{}},ne.exports),ne.exports);function ae(e,t,n){const o=e.slice();return o[43]=t[n],o}function ie(e){let t,n=[],o=new Map,i=e[0];const r=e=>e[43].content+""+e[43].property+e[43].name;for(let t=0;t<i.length;t+=1){let a=ae(e,i,t),l=r(a);o.set(l,n[t]=se(l,a))}return{c(){for(let e=0;e<n.length;e+=1)n[e].c();t=m()},m(e,o){for(let t=0;t<n.length;t+=1)n[t]&&n[t].m(e,o);c(e,t,o)},p(e,l){1&l[0]&&(i=e[0],n=function(e,t,n,o,i,r,l,s,c,u,d,p){let f=e.length,m=r.length,g=f;const h={};for(;g--;)h[e[g].key]=g;const v=[],$=new Map,w=new Map,y=[];for(g=m;g--;){const e=p(i,r,g),a=n(e);let s=l.get(a);s?o&&y.push((()=>s.p(e,t))):(s=u(a,e),s.c()),$.set(a,v[g]=s),a in h&&w.set(a,Math.abs(g-h[a]))}const k=new Set,b=new Set;function _(e){A(e,1),e.m(s,d),l.set(e.key,e),d=e.first,m--}for(;f&&m;){const t=v[m-1],n=e[f-1],o=t.key,a=n.key;t===n?(d=t.first,f--,m--):$.has(a)?!l.has(o)||k.has(o)?_(t):b.has(a)?f--:w.get(o)>w.get(a)?(b.add(o),_(t)):(k.add(a),f--):(c(n,l),f--)}for(;f--;){const t=e[f];$.has(t.key)||c(t,l)}for(;m;)_(v[m-1]);return a(y),v}(n,l,r,1,e,i,o,t.parentNode,H,se,t,ae))},d(e){for(let t=0;t<n.length;t+=1)n[t].d(e);e&&u(t)}}}function re(e){let t,n,o;return{c(){t=d("meta"),h(t,"property",n=e[43].property),h(t,"content",o=e[43].content)},m(e,n){c(e,t,n)},p(e,a){1&a[0]&&n!==(n=e[43].property)&&h(t,"property",n),1&a[0]&&o!==(o=e[43].content)&&h(t,"content",o)},d(e){e&&u(t)}}}function le(e){let t,n,o;return{c(){t=d("meta"),h(t,"name",n=e[43].name),h(t,"content",o=e[43].content)},m(e,n){c(e,t,n)},p(e,a){1&a[0]&&n!==(n=e[43].name)&&h(t,"name",n),1&a[0]&&o!==(o=e[43].content)&&h(t,"content",o)},d(e){e&&u(t)}}}function se(e,t){let n,o;function a(e,t){return e[43].name?le:e[43].property?re:void 0}let i=a(t),r=i&&i(t);return{key:e,first:null,c(){n=m(),r&&r.c(),o=m(),this.first=n},m(e,t){c(e,n,t),r&&r.m(e,t),c(e,o,t)},p(e,n){i===(i=a(t=e))&&r?r.p(t,n):(r&&r.d(1),r=i&&i(t),r&&(r.c(),r.m(o.parentNode,o)))},d(e){e&&u(n),r&&r.d(e),e&&u(o)}}}function ce(e){let t,n,o,i,r,l,p,m,$,w,y,k,b,_,x,C,T,E,L,M,S,D,N,V,z;return{c(){t=d("hb-layout-desktop"),n=d("div"),n.innerHTML='<slot name="page">page</slot>',o=f(),i=d("div"),i.innerHTML='<slot name="nav-center-slot"></slot>',r=f(),l=d("div"),l.innerHTML='<slot name="nav-right-slot"></slot>',h(n,"slot","page"),h(i,"slot","nav-center-slot"),h(l,"slot","nav-right-slot"),v(t,"id","layout_desktop"),v(t,"style",e[1]),v(t,"page_title",p=e[5].page_title),v(t,"company",m=e[5].company),v(t,"sidebar",$=e[5].sidebar),v(t,"pagename",w=e[5].pagename),v(t,"socials",y=e[5].socials),v(t,"navlinks",k=e[5].navlinks),v(t,"contacts",b=e[5].contacts),v(t,"i18nlang",_=e[5].i18nlang),v(t,"columns",x=e[5].columns),v(t,"onescreen",C=e[5].onescreen),v(t,"usermenu",T=e[5].usermenu),v(t,"cookielawlanguage",E=e[5].cookielawlanguage),v(t,"cookielawallowdecline",L=e[5].cookielawallowdecline),v(t,"cookielawuri4more",M=e[5].cookielawuri4more),v(t,"cookielaw",S=e[5].cookielaw),v(t,"footer",D=e[5].footer),v(t,"policies",N=e[5].policies)},m(a,u){c(a,t,u),s(t,n),s(t,o),s(t,i),s(t,r),s(t,l),V||(z=[g(t,"navbarDropDownClick",e[34]),g(t,"footerClick",e[35]),g(t,"pageChange",e[36]),g(t,"offcanvasswitch",e[37]),g(t,"layoutStatus",e[38]),g(t,"navbarSlotClick",e[39])],V=!0)},p(e,n){2&n[0]&&v(t,"style",e[1]),32&n[0]&&p!==(p=e[5].page_title)&&v(t,"page_title",p),32&n[0]&&m!==(m=e[5].company)&&v(t,"company",m),32&n[0]&&$!==($=e[5].sidebar)&&v(t,"sidebar",$),32&n[0]&&w!==(w=e[5].pagename)&&v(t,"pagename",w),32&n[0]&&y!==(y=e[5].socials)&&v(t,"socials",y),32&n[0]&&k!==(k=e[5].navlinks)&&v(t,"navlinks",k),32&n[0]&&b!==(b=e[5].contacts)&&v(t,"contacts",b),32&n[0]&&_!==(_=e[5].i18nlang)&&v(t,"i18nlang",_),32&n[0]&&x!==(x=e[5].columns)&&v(t,"columns",x),32&n[0]&&C!==(C=e[5].onescreen)&&v(t,"onescreen",C),32&n[0]&&T!==(T=e[5].usermenu)&&v(t,"usermenu",T),32&n[0]&&E!==(E=e[5].cookielawlanguage)&&v(t,"cookielawlanguage",E),32&n[0]&&L!==(L=e[5].cookielawallowdecline)&&v(t,"cookielawallowdecline",L),32&n[0]&&M!==(M=e[5].cookielawuri4more)&&v(t,"cookielawuri4more",M),32&n[0]&&S!==(S=e[5].cookielaw)&&v(t,"cookielaw",S),32&n[0]&&D!==(D=e[5].footer)&&v(t,"footer",D),32&n[0]&&N!==(N=e[5].policies)&&v(t,"policies",N)},d(e){e&&u(t),V=!1,a(z)}}}function ue(e){let t,n,o,i,r,l,p,m,$,w,y,k,b,_,x,C,T,E,L,M,S,D,N,V,z,A,H,j,O;return{c(){t=d("hb-layout-mobile"),n=d("div"),n.innerHTML='<slot name="page">page</slot>',o=f(),i=d("span"),i.innerHTML='<slot name="nav-header-slot"></slot>',r=f(),l=d("span"),l.innerHTML='<slot name="nav-left-slot"></slot>',p=f(),m=d("span"),m.innerHTML='<slot name="nav-center-slot"></slot>',$=f(),w=d("span"),w.innerHTML='<slot name="nav-right-slot"></slot>',h(n,"slot","page"),h(i,"slot","nav-header-slot"),h(l,"slot","nav-left-slot"),h(m,"slot","nav-center-slot"),h(w,"slot","nav-right-slot"),v(t,"id","layout_mobile"),v(t,"style",e[2]),v(t,"page_title",y=e[5].page_title),v(t,"company",k=e[5].company),v(t,"sidebar",b=e[5].sidebar),v(t,"pagename",_=e[5].pagename),v(t,"socials",x=e[5].socials),v(t,"navlinks",C=e[5].navlinks),v(t,"contacts",T=e[5].contacts),v(t,"i18nlang",E=e[5].i18nlang),v(t,"columns",L=e[5].columns),v(t,"onescreen",M=e[5].onescreen),v(t,"usermenu",S=e[5].usermenu),v(t,"cookielawlanguage",D=e[5].cookielawlanguage),v(t,"cookielawallowdecline",N=e[5].cookielawallowdecline),v(t,"cookielawuri4more",V=e[5].cookielawuri4more),v(t,"cookielaw",z=e[5].cookielaw),v(t,"footer",A=e[5].footer),v(t,"policies",H=e[5].policies)},m(a,u){c(a,t,u),s(t,n),s(t,o),s(t,i),s(t,r),s(t,l),s(t,p),s(t,m),s(t,$),s(t,w),j||(O=[g(t,"userClick",e[28]),g(t,"footerClick",e[29]),g(t,"pageChange",e[30]),g(t,"offcanvasswitch",e[31]),g(t,"layoutStatus",e[32]),g(t,"navbarSlotClick",e[33])],j=!0)},p(e,n){4&n[0]&&v(t,"style",e[2]),32&n[0]&&y!==(y=e[5].page_title)&&v(t,"page_title",y),32&n[0]&&k!==(k=e[5].company)&&v(t,"company",k),32&n[0]&&b!==(b=e[5].sidebar)&&v(t,"sidebar",b),32&n[0]&&_!==(_=e[5].pagename)&&v(t,"pagename",_),32&n[0]&&x!==(x=e[5].socials)&&v(t,"socials",x),32&n[0]&&C!==(C=e[5].navlinks)&&v(t,"navlinks",C),32&n[0]&&T!==(T=e[5].contacts)&&v(t,"contacts",T),32&n[0]&&E!==(E=e[5].i18nlang)&&v(t,"i18nlang",E),32&n[0]&&L!==(L=e[5].columns)&&v(t,"columns",L),32&n[0]&&M!==(M=e[5].onescreen)&&v(t,"onescreen",M),32&n[0]&&S!==(S=e[5].usermenu)&&v(t,"usermenu",S),32&n[0]&&D!==(D=e[5].cookielawlanguage)&&v(t,"cookielawlanguage",D),32&n[0]&&N!==(N=e[5].cookielawallowdecline)&&v(t,"cookielawallowdecline",N),32&n[0]&&V!==(V=e[5].cookielawuri4more)&&v(t,"cookielawuri4more",V),32&n[0]&&z!==(z=e[5].cookielaw)&&v(t,"cookielaw",z),32&n[0]&&A!==(A=e[5].footer)&&v(t,"footer",A),32&n[0]&&H!==(H=e[5].policies)&&v(t,"policies",H)},d(e){e&&u(t),j=!1,a(O)}}}function de(t){let n,o,a,i,r;M(t[27]);let l=t[0]&&ie(t);function d(e,t){return e[3]<800?ue:ce}let p=d(t),h=p(t);return{c(){l&&l.c(),n=m(),o=f(),h.c(),a=m(),this.c=e},m(e,u){l&&l.m(document.head,null),s(document.head,n),c(e,o,u),h.m(e,u),c(e,a,u),i||(r=g(window,"resize",t[27]),i=!0)},p(e,t){e[0]?l?l.p(e,t):(l=ie(e),l.c(),l.m(n.parentNode,n)):l&&(l.d(1),l=null),p===(p=d(e))&&h?h.p(e,t):(h.d(1),h=p(e),h&&(h.c(),h.m(a.parentNode,a)))},i:e,o:e,d(e){l&&l.d(e),u(n),e&&u(o),h.d(e),e&&u(a),i=!1,r()}}}function pe(e,n,o){let a,{id:i}=n,{socials:r}=n,{contacts:s}=n,{company:c}=n,{navlinks:u}=n,{pagename:d}=n,{usermenu:p}=n,{cookielaw:f}=n,{columns:m}=n,{onescreen:g}=n,{cookielawuri4more:h}=n,{cookielawallowdecline:v}=n,{cookielawlanguage:$}=n,{sidebar:w}=n,{style:y}=n,{size:_}=n,{i18nlang:x}=n,{footer:C}=n,{page_title:T}=n,{policies:E}=n,{heders:L}=n,M="",S="",D=0;const N=k(),V=b();function z(e,t){V(e,t),N.dispatchEvent&&N.dispatchEvent(new CustomEvent(e,{detail:t}))}oe.addComponent({repoName:"@htmlbricks/hb-layout-desktop",version:F}),oe.addComponent({repoName:"@htmlbricks/hb-layout-mobile",version:F});return e.$$set=e=>{o(5,n=t(t({},n),l(e))),"id"in e&&o(6,i=e.id),"socials"in e&&o(7,r=e.socials),"contacts"in e&&o(8,s=e.contacts),"company"in e&&o(9,c=e.company),"navlinks"in e&&o(10,u=e.navlinks),"pagename"in e&&o(11,d=e.pagename),"usermenu"in e&&o(12,p=e.usermenu),"cookielaw"in e&&o(13,f=e.cookielaw),"columns"in e&&o(14,m=e.columns),"onescreen"in e&&o(15,g=e.onescreen),"cookielawuri4more"in e&&o(16,h=e.cookielawuri4more),"cookielawallowdecline"in e&&o(17,v=e.cookielawallowdecline),"cookielawlanguage"in e&&o(18,$=e.cookielawlanguage),"sidebar"in e&&o(19,w=e.sidebar),"style"in e&&o(25,y=e.style),"size"in e&&o(20,_=e.size),"i18nlang"in e&&o(21,x=e.i18nlang),"footer"in e&&o(22,C=e.footer),"page_title"in e&&o(23,T=e.page_title),"policies"in e&&o(24,E=e.policies),"heders"in e&&o(0,L=e.heders)},e.$$.update=()=>{134217665&e.$$.dirty[0]&&(L||o(0,L=void 0),C||o(22,C=void 0),y&&(o(26,a=Z(y)),o(1,M=oe.getChildStyleToPass(a,null==ee?void 0:ee.vars)),o(2,S=oe.getChildStyleToPass(a,null==te?void 0:te.vars))),_||o(20,_=void 0),i||o(6,i=""),h||o(16,h=""),v||o(17,v=""),$||o(18,$=""),d||o(11,d=null),f||o(13,f=null),p||o(12,p=null),m||o(14,m=null),g||o(15,g=null),E||o(24,E=null),x||o(21,x=null),w||o(19,w=null),c||o(9,c=null),u||o(10,u=null),r||o(7,r=null),s||o(8,s=null),T||o(23,T=null))},n=l(n),[L,M,S,D,z,n,i,r,s,c,u,d,p,f,m,g,h,v,$,w,_,x,C,T,E,y,a,function(){o(3,D=window.innerWidth)},e=>z("userClick",e.detail),e=>z("footerClick",e.detail),e=>z("pageChange",e.detail),e=>z("offcanvasswitch",e.detail),e=>z("layoutStatus",e.detail),e=>z("navbarSlotClick",e.detail),e=>z("navbarDropDownClick",e.detail),e=>z("footerClick",e.detail),e=>z("pageChange",e.detail),e=>z("offcanvasswitch",e.detail),e=>z("layoutStatus",e.detail),e=>z("navbarSlotClick",e.detail)]}class fe extends W{constructor(e){super(),P(this,{target:this.shadowRoot,props:$(this.attributes),customElement:!0},pe,de,r,{id:6,socials:7,contacts:8,company:9,navlinks:10,pagename:11,usermenu:12,cookielaw:13,columns:14,onescreen:15,cookielawuri4more:16,cookielawallowdecline:17,cookielawlanguage:18,sidebar:19,style:25,size:20,i18nlang:21,footer:22,page_title:23,policies:24,heders:0},null,[-1,-1]),e&&(e.target&&c(e.target,this,e.anchor),e.props&&(this.$set(e.props),N()))}static get observedAttributes(){return["id","socials","contacts","company","navlinks","pagename","usermenu","cookielaw","columns","onescreen","cookielawuri4more","cookielawallowdecline","cookielawlanguage","sidebar","style","size","i18nlang","footer","page_title","policies","heders"]}get id(){return this.$$.ctx[6]}set id(e){this.$$set({id:e}),N()}get socials(){return this.$$.ctx[7]}set socials(e){this.$$set({socials:e}),N()}get contacts(){return this.$$.ctx[8]}set contacts(e){this.$$set({contacts:e}),N()}get company(){return this.$$.ctx[9]}set company(e){this.$$set({company:e}),N()}get navlinks(){return this.$$.ctx[10]}set navlinks(e){this.$$set({navlinks:e}),N()}get pagename(){return this.$$.ctx[11]}set pagename(e){this.$$set({pagename:e}),N()}get usermenu(){return this.$$.ctx[12]}set usermenu(e){this.$$set({usermenu:e}),N()}get cookielaw(){return this.$$.ctx[13]}set cookielaw(e){this.$$set({cookielaw:e}),N()}get columns(){return this.$$.ctx[14]}set columns(e){this.$$set({columns:e}),N()}get onescreen(){return this.$$.ctx[15]}set onescreen(e){this.$$set({onescreen:e}),N()}get cookielawuri4more(){return this.$$.ctx[16]}set cookielawuri4more(e){this.$$set({cookielawuri4more:e}),N()}get cookielawallowdecline(){return this.$$.ctx[17]}set cookielawallowdecline(e){this.$$set({cookielawallowdecline:e}),N()}get cookielawlanguage(){return this.$$.ctx[18]}set cookielawlanguage(e){this.$$set({cookielawlanguage:e}),N()}get sidebar(){return this.$$.ctx[19]}set sidebar(e){this.$$set({sidebar:e}),N()}get style(){return this.$$.ctx[25]}set style(e){this.$$set({style:e}),N()}get size(){return this.$$.ctx[20]}set size(e){this.$$set({size:e}),N()}get i18nlang(){return this.$$.ctx[21]}set i18nlang(e){this.$$set({i18nlang:e}),N()}get footer(){return this.$$.ctx[22]}set footer(e){this.$$set({footer:e}),N()}get page_title(){return this.$$.ctx[23]}set page_title(e){this.$$set({page_title:e}),N()}get policies(){return this.$$.ctx[24]}set policies(e){this.$$set({policies:e}),N()}get heders(){return this.$$.ctx[0]}set heders(e){this.$$set({heders:e}),N()}}return customElements.define("hb-layout",fe),fe}();
|
|
2
|
-
//# sourceMappingURL=release.js.map
|