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