@htmlbricks/hb-sidebar-desktop 0.71.23 → 0.71.24
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 -2
- package/main.iife.js.map +1 -1
- package/manifest.json +12 -22
- package/package.json +1 -1
- package/types/webcomponent.type.d.json +10 -20
- package/types/webcomponent.type.d.ts +1 -1
package/manifest.json
CHANGED
|
@@ -94,27 +94,17 @@
|
|
|
94
94
|
]
|
|
95
95
|
},
|
|
96
96
|
"enablethemeswitch": {
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
"type": "string"
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"const": "no",
|
|
107
|
-
"type": "string"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"type": "null"
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"const": "",
|
|
114
|
-
"type": "string"
|
|
115
|
-
}
|
|
97
|
+
"description": "When false or `\"no\"`, the theme control is hidden.",
|
|
98
|
+
"enum": [
|
|
99
|
+
"yes",
|
|
100
|
+
"no",
|
|
101
|
+
null,
|
|
102
|
+
""
|
|
116
103
|
],
|
|
117
|
-
"
|
|
104
|
+
"type": [
|
|
105
|
+
"string",
|
|
106
|
+
"null"
|
|
107
|
+
]
|
|
118
108
|
},
|
|
119
109
|
"groups": {
|
|
120
110
|
"items": {
|
|
@@ -692,7 +682,7 @@
|
|
|
692
682
|
}
|
|
693
683
|
}
|
|
694
684
|
],
|
|
695
|
-
"iifeIntegrity": "sha384-
|
|
685
|
+
"iifeIntegrity": "sha384-wBLuiZuNMVVfCs4Nl3ia+01WI27TTH1hRju0R/3Q6CUuxJqv7XkXglApISSuYwvJ",
|
|
696
686
|
"dependencies": [
|
|
697
687
|
{
|
|
698
688
|
"name": "hb-sidenav-link",
|
|
@@ -718,5 +708,5 @@
|
|
|
718
708
|
"size": {},
|
|
719
709
|
"iifePath": "main.iife.js",
|
|
720
710
|
"repoName": "@htmlbricks/hb-sidebar-desktop",
|
|
721
|
-
"version": "0.71.
|
|
711
|
+
"version": "0.71.24"
|
|
722
712
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@htmlbricks/hb-sidebar-desktop",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.24",
|
|
4
4
|
"contributors": [],
|
|
5
5
|
"description": "Fixed-width desktop sidebar: optional company logo and title, header/footer slots, Bulma theme switch (light / dark / system), and a nav list built from hb-sidenav-link entries with optional JSON groups (Bulma layout, menu labels, light background). Parses navlinks and groups from strings; emits pageChange when a link selects a page and themeChange when the user picks a theme (host applies document hooks such as data-theme on html/body).",
|
|
6
6
|
"licenses": [
|
|
@@ -43,27 +43,17 @@
|
|
|
43
43
|
]
|
|
44
44
|
},
|
|
45
45
|
"enablethemeswitch": {
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"type": "string"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
"const": "no",
|
|
56
|
-
"type": "string"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"type": "null"
|
|
60
|
-
},
|
|
61
|
-
{
|
|
62
|
-
"const": "",
|
|
63
|
-
"type": "string"
|
|
64
|
-
}
|
|
46
|
+
"description": "When false or `\"no\"`, the theme control is hidden.",
|
|
47
|
+
"enum": [
|
|
48
|
+
"yes",
|
|
49
|
+
"no",
|
|
50
|
+
null,
|
|
51
|
+
""
|
|
65
52
|
],
|
|
66
|
-
"
|
|
53
|
+
"type": [
|
|
54
|
+
"string",
|
|
55
|
+
"null"
|
|
56
|
+
]
|
|
67
57
|
},
|
|
68
58
|
"groups": {
|
|
69
59
|
"items": {
|
|
@@ -12,7 +12,7 @@ export type Component = {
|
|
|
12
12
|
companytitle?: string;
|
|
13
13
|
enablefooter?: "yes" | "no" | "false" | null | "" | undefined;
|
|
14
14
|
/** When false or `"no"`, the theme control is hidden. */
|
|
15
|
-
enablethemeswitch?:
|
|
15
|
+
enablethemeswitch?: "yes" | "no" | null | "" | undefined;
|
|
16
16
|
/** Optional controlled value from the host (e.g. after persisting `themeChange`). */
|
|
17
17
|
themepreference?: ThemePreference | null | "" | undefined;
|
|
18
18
|
cookielawallowdecline?: "yes" | "no" | null | "" | undefined;
|