@genesislcap/foundation-header 14.407.0-workspaces.4 → 14.408.0

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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +230 -230
  2. package/package.json +23 -23
@@ -33,228 +33,6 @@
33
33
  }
34
34
  ]
35
35
  },
36
- {
37
- "kind": "javascript-module",
38
- "path": "src/components/control-panel.ts",
39
- "declarations": [
40
- {
41
- "kind": "class",
42
- "description": "control-panel",
43
- "name": "ControlPanel",
44
- "members": [
45
- {
46
- "kind": "field",
47
- "name": "handleKeyDown",
48
- "privacy": "private"
49
- },
50
- {
51
- "kind": "field",
52
- "name": "handleKeyDownBound",
53
- "privacy": "private"
54
- },
55
- {
56
- "kind": "method",
57
- "name": "toggleSelection",
58
- "privacy": "private",
59
- "return": {
60
- "type": {
61
- "text": "SelectableKey[]"
62
- }
63
- },
64
- "parameters": [
65
- {
66
- "name": "key",
67
- "type": {
68
- "text": "string"
69
- }
70
- },
71
- {
72
- "name": "keys",
73
- "type": {
74
- "text": "SelectableKey[]"
75
- }
76
- }
77
- ]
78
- },
79
- {
80
- "kind": "method",
81
- "name": "deleteKeysFromSessionStorage",
82
- "privacy": "private",
83
- "parameters": [
84
- {
85
- "name": "storageKey",
86
- "type": {
87
- "text": "string"
88
- }
89
- },
90
- {
91
- "name": "keysToDelete",
92
- "type": {
93
- "text": "string[]"
94
- }
95
- }
96
- ]
97
- },
98
- {
99
- "kind": "method",
100
- "name": "deleteKeysFromLocalStorage",
101
- "privacy": "private",
102
- "parameters": [
103
- {
104
- "name": "storageKey",
105
- "type": {
106
- "text": "string"
107
- }
108
- },
109
- {
110
- "name": "keys",
111
- "type": {
112
- "text": "SelectableKey[]"
113
- }
114
- }
115
- ]
116
- },
117
- {
118
- "kind": "method",
119
- "name": "getKeysForSessionStorageItem",
120
- "privacy": "private",
121
- "return": {
122
- "type": {
123
- "text": "SelectableKey[]"
124
- }
125
- },
126
- "parameters": [
127
- {
128
- "name": "storageKey",
129
- "type": {
130
- "text": "string"
131
- }
132
- }
133
- ]
134
- },
135
- {
136
- "kind": "method",
137
- "name": "getKeysForStorageItem",
138
- "privacy": "private",
139
- "return": {
140
- "type": {
141
- "text": "SelectableKey[]"
142
- }
143
- },
144
- "parameters": [
145
- {
146
- "name": "storageKey",
147
- "type": {
148
- "text": "string"
149
- }
150
- }
151
- ]
152
- },
153
- {
154
- "kind": "method",
155
- "name": "getKeysForKVStorage",
156
- "privacy": "private",
157
- "return": {
158
- "type": {
159
- "text": "Promise<SelectableKey[]>"
160
- }
161
- }
162
- },
163
- {
164
- "kind": "method",
165
- "name": "deleteKeysFromKVStorage",
166
- "privacy": "private",
167
- "return": {
168
- "type": {
169
- "text": "Promise<void>"
170
- }
171
- },
172
- "parameters": [
173
- {
174
- "name": "keysToDelete",
175
- "type": {
176
- "text": "string[]"
177
- }
178
- }
179
- ]
180
- }
181
- ],
182
- "superclass": {
183
- "name": "GenesisElement",
184
- "package": "@genesislcap/web-core"
185
- },
186
- "tagName": "control-panel",
187
- "customElement": true
188
- }
189
- ],
190
- "exports": [
191
- {
192
- "kind": "custom-element-definition",
193
- "name": "control-panel",
194
- "declaration": {
195
- "name": "ControlPanel",
196
- "module": "src/components/control-panel.ts"
197
- }
198
- }
199
- ]
200
- },
201
- {
202
- "kind": "javascript-module",
203
- "path": "src/components/index.ts",
204
- "declarations": [],
205
- "exports": [
206
- {
207
- "kind": "js",
208
- "name": "*",
209
- "declaration": {
210
- "name": "*",
211
- "package": "./control-panel"
212
- }
213
- }
214
- ]
215
- },
216
- {
217
- "kind": "javascript-module",
218
- "path": "src/components/rapid-components.ts",
219
- "declarations": [
220
- {
221
- "kind": "function",
222
- "name": "registerCommonRapidComponents",
223
- "privacy": "public"
224
- }
225
- ],
226
- "exports": [
227
- {
228
- "kind": "js",
229
- "name": "registerCommonRapidComponents",
230
- "declaration": {
231
- "name": "registerCommonRapidComponents",
232
- "module": "src/components/rapid-components.ts"
233
- }
234
- }
235
- ]
236
- },
237
- {
238
- "kind": "javascript-module",
239
- "path": "src/components/zero-components.ts",
240
- "declarations": [
241
- {
242
- "kind": "function",
243
- "name": "registerCommonZeroComponents",
244
- "privacy": "public"
245
- }
246
- ],
247
- "exports": [
248
- {
249
- "kind": "js",
250
- "name": "registerCommonZeroComponents",
251
- "declaration": {
252
- "name": "registerCommonZeroComponents",
253
- "module": "src/components/zero-components.ts"
254
- }
255
- }
256
- ]
257
- },
258
36
  {
259
37
  "kind": "javascript-module",
260
38
  "path": "src/config/config.ts",
@@ -3832,7 +3610,178 @@
3832
3610
  },
3833
3611
  {
3834
3612
  "kind": "javascript-module",
3835
- "path": "src/tags/index.ts",
3613
+ "path": "src/templates/rapid.template.ts",
3614
+ "declarations": [],
3615
+ "exports": []
3616
+ },
3617
+ {
3618
+ "kind": "javascript-module",
3619
+ "path": "src/components/control-panel.ts",
3620
+ "declarations": [
3621
+ {
3622
+ "kind": "class",
3623
+ "description": "control-panel",
3624
+ "name": "ControlPanel",
3625
+ "members": [
3626
+ {
3627
+ "kind": "field",
3628
+ "name": "handleKeyDown",
3629
+ "privacy": "private"
3630
+ },
3631
+ {
3632
+ "kind": "field",
3633
+ "name": "handleKeyDownBound",
3634
+ "privacy": "private"
3635
+ },
3636
+ {
3637
+ "kind": "method",
3638
+ "name": "toggleSelection",
3639
+ "privacy": "private",
3640
+ "return": {
3641
+ "type": {
3642
+ "text": "SelectableKey[]"
3643
+ }
3644
+ },
3645
+ "parameters": [
3646
+ {
3647
+ "name": "key",
3648
+ "type": {
3649
+ "text": "string"
3650
+ }
3651
+ },
3652
+ {
3653
+ "name": "keys",
3654
+ "type": {
3655
+ "text": "SelectableKey[]"
3656
+ }
3657
+ }
3658
+ ]
3659
+ },
3660
+ {
3661
+ "kind": "method",
3662
+ "name": "deleteKeysFromSessionStorage",
3663
+ "privacy": "private",
3664
+ "parameters": [
3665
+ {
3666
+ "name": "storageKey",
3667
+ "type": {
3668
+ "text": "string"
3669
+ }
3670
+ },
3671
+ {
3672
+ "name": "keysToDelete",
3673
+ "type": {
3674
+ "text": "string[]"
3675
+ }
3676
+ }
3677
+ ]
3678
+ },
3679
+ {
3680
+ "kind": "method",
3681
+ "name": "deleteKeysFromLocalStorage",
3682
+ "privacy": "private",
3683
+ "parameters": [
3684
+ {
3685
+ "name": "storageKey",
3686
+ "type": {
3687
+ "text": "string"
3688
+ }
3689
+ },
3690
+ {
3691
+ "name": "keys",
3692
+ "type": {
3693
+ "text": "SelectableKey[]"
3694
+ }
3695
+ }
3696
+ ]
3697
+ },
3698
+ {
3699
+ "kind": "method",
3700
+ "name": "getKeysForSessionStorageItem",
3701
+ "privacy": "private",
3702
+ "return": {
3703
+ "type": {
3704
+ "text": "SelectableKey[]"
3705
+ }
3706
+ },
3707
+ "parameters": [
3708
+ {
3709
+ "name": "storageKey",
3710
+ "type": {
3711
+ "text": "string"
3712
+ }
3713
+ }
3714
+ ]
3715
+ },
3716
+ {
3717
+ "kind": "method",
3718
+ "name": "getKeysForStorageItem",
3719
+ "privacy": "private",
3720
+ "return": {
3721
+ "type": {
3722
+ "text": "SelectableKey[]"
3723
+ }
3724
+ },
3725
+ "parameters": [
3726
+ {
3727
+ "name": "storageKey",
3728
+ "type": {
3729
+ "text": "string"
3730
+ }
3731
+ }
3732
+ ]
3733
+ },
3734
+ {
3735
+ "kind": "method",
3736
+ "name": "getKeysForKVStorage",
3737
+ "privacy": "private",
3738
+ "return": {
3739
+ "type": {
3740
+ "text": "Promise<SelectableKey[]>"
3741
+ }
3742
+ }
3743
+ },
3744
+ {
3745
+ "kind": "method",
3746
+ "name": "deleteKeysFromKVStorage",
3747
+ "privacy": "private",
3748
+ "return": {
3749
+ "type": {
3750
+ "text": "Promise<void>"
3751
+ }
3752
+ },
3753
+ "parameters": [
3754
+ {
3755
+ "name": "keysToDelete",
3756
+ "type": {
3757
+ "text": "string[]"
3758
+ }
3759
+ }
3760
+ ]
3761
+ }
3762
+ ],
3763
+ "superclass": {
3764
+ "name": "GenesisElement",
3765
+ "package": "@genesislcap/web-core"
3766
+ },
3767
+ "tagName": "control-panel",
3768
+ "customElement": true
3769
+ }
3770
+ ],
3771
+ "exports": [
3772
+ {
3773
+ "kind": "custom-element-definition",
3774
+ "name": "control-panel",
3775
+ "declaration": {
3776
+ "name": "ControlPanel",
3777
+ "module": "src/components/control-panel.ts"
3778
+ }
3779
+ }
3780
+ ]
3781
+ },
3782
+ {
3783
+ "kind": "javascript-module",
3784
+ "path": "src/components/index.ts",
3836
3785
  "declarations": [],
3837
3786
  "exports": [
3838
3787
  {
@@ -3840,22 +3789,52 @@
3840
3789
  "name": "*",
3841
3790
  "declaration": {
3842
3791
  "name": "*",
3843
- "package": "./tags"
3792
+ "package": "./control-panel"
3844
3793
  }
3845
3794
  }
3846
3795
  ]
3847
3796
  },
3848
3797
  {
3849
3798
  "kind": "javascript-module",
3850
- "path": "src/tags/tags.ts",
3851
- "declarations": [],
3852
- "exports": []
3799
+ "path": "src/components/rapid-components.ts",
3800
+ "declarations": [
3801
+ {
3802
+ "kind": "function",
3803
+ "name": "registerCommonRapidComponents",
3804
+ "privacy": "public"
3805
+ }
3806
+ ],
3807
+ "exports": [
3808
+ {
3809
+ "kind": "js",
3810
+ "name": "registerCommonRapidComponents",
3811
+ "declaration": {
3812
+ "name": "registerCommonRapidComponents",
3813
+ "module": "src/components/rapid-components.ts"
3814
+ }
3815
+ }
3816
+ ]
3853
3817
  },
3854
3818
  {
3855
3819
  "kind": "javascript-module",
3856
- "path": "src/templates/rapid.template.ts",
3857
- "declarations": [],
3858
- "exports": []
3820
+ "path": "src/components/zero-components.ts",
3821
+ "declarations": [
3822
+ {
3823
+ "kind": "function",
3824
+ "name": "registerCommonZeroComponents",
3825
+ "privacy": "public"
3826
+ }
3827
+ ],
3828
+ "exports": [
3829
+ {
3830
+ "kind": "js",
3831
+ "name": "registerCommonZeroComponents",
3832
+ "declaration": {
3833
+ "name": "registerCommonZeroComponents",
3834
+ "module": "src/components/zero-components.ts"
3835
+ }
3836
+ }
3837
+ ]
3859
3838
  },
3860
3839
  {
3861
3840
  "kind": "javascript-module",
@@ -4018,6 +3997,27 @@
4018
3997
  }
4019
3998
  ]
4020
3999
  },
4000
+ {
4001
+ "kind": "javascript-module",
4002
+ "path": "src/tags/index.ts",
4003
+ "declarations": [],
4004
+ "exports": [
4005
+ {
4006
+ "kind": "js",
4007
+ "name": "*",
4008
+ "declaration": {
4009
+ "name": "*",
4010
+ "package": "./tags"
4011
+ }
4012
+ }
4013
+ ]
4014
+ },
4015
+ {
4016
+ "kind": "javascript-module",
4017
+ "path": "src/tags/tags.ts",
4018
+ "declarations": [],
4019
+ "exports": []
4020
+ },
4021
4021
  {
4022
4022
  "kind": "javascript-module",
4023
4023
  "path": "src/utils/index.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-header",
3
3
  "description": "Genesis Foundation Header",
4
- "version": "14.407.0-workspaces.4",
4
+ "version": "14.408.0",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/foundation-header.d.ts",
@@ -79,29 +79,29 @@
79
79
  }
80
80
  },
81
81
  "devDependencies": {
82
- "@genesislcap/foundation-testing": "14.407.0-workspaces.4",
83
- "@genesislcap/genx": "14.407.0-workspaces.4",
84
- "@genesislcap/rollup-builder": "14.407.0-workspaces.4",
85
- "@genesislcap/ts-builder": "14.407.0-workspaces.4",
86
- "@genesislcap/uvu-playwright-builder": "14.407.0-workspaces.4",
87
- "@genesislcap/vite-builder": "14.407.0-workspaces.4",
88
- "@genesislcap/webpack-builder": "14.407.0-workspaces.4"
82
+ "@genesislcap/foundation-testing": "14.408.0",
83
+ "@genesislcap/genx": "14.408.0",
84
+ "@genesislcap/rollup-builder": "14.408.0",
85
+ "@genesislcap/ts-builder": "14.408.0",
86
+ "@genesislcap/uvu-playwright-builder": "14.408.0",
87
+ "@genesislcap/vite-builder": "14.408.0",
88
+ "@genesislcap/webpack-builder": "14.408.0"
89
89
  },
90
90
  "dependencies": {
91
- "@genesislcap/foundation-ai": "14.407.0-workspaces.4",
92
- "@genesislcap/foundation-auth": "14.407.0-workspaces.4",
93
- "@genesislcap/foundation-comms": "14.407.0-workspaces.4",
94
- "@genesislcap/foundation-events": "14.407.0-workspaces.4",
95
- "@genesislcap/foundation-i18n": "14.407.0-workspaces.4",
96
- "@genesislcap/foundation-logger": "14.407.0-workspaces.4",
97
- "@genesislcap/foundation-login": "14.407.0-workspaces.4",
98
- "@genesislcap/foundation-shell": "14.407.0-workspaces.4",
99
- "@genesislcap/foundation-ui": "14.407.0-workspaces.4",
100
- "@genesislcap/foundation-user": "14.407.0-workspaces.4",
101
- "@genesislcap/foundation-utils": "14.407.0-workspaces.4",
102
- "@genesislcap/foundation-zero": "14.407.0-workspaces.4",
103
- "@genesislcap/rapid-design-system": "14.407.0-workspaces.4",
104
- "@genesislcap/web-core": "14.407.0-workspaces.4"
91
+ "@genesislcap/foundation-ai": "14.408.0",
92
+ "@genesislcap/foundation-auth": "14.408.0",
93
+ "@genesislcap/foundation-comms": "14.408.0",
94
+ "@genesislcap/foundation-events": "14.408.0",
95
+ "@genesislcap/foundation-i18n": "14.408.0",
96
+ "@genesislcap/foundation-logger": "14.408.0",
97
+ "@genesislcap/foundation-login": "14.408.0",
98
+ "@genesislcap/foundation-shell": "14.408.0",
99
+ "@genesislcap/foundation-ui": "14.408.0",
100
+ "@genesislcap/foundation-user": "14.408.0",
101
+ "@genesislcap/foundation-utils": "14.408.0",
102
+ "@genesislcap/foundation-zero": "14.408.0",
103
+ "@genesislcap/rapid-design-system": "14.408.0",
104
+ "@genesislcap/web-core": "14.408.0"
105
105
  },
106
106
  "repository": {
107
107
  "type": "git",
@@ -112,5 +112,5 @@
112
112
  "access": "public"
113
113
  },
114
114
  "customElements": "dist/custom-elements.json",
115
- "gitHead": "923fa7c52904cc262f94b21f8c0b025986bfdf41"
115
+ "gitHead": "26b08831fd001b4ee95c8a0d3364a18c0ec4005b"
116
116
  }