@ukho/admiralty-react 5.5.2 → 5.5.3--canary.439.1e91dc1.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.
- package/dist/components.d.ts +3 -0
- package/dist/components.js +8 -56
- package/package.json +6 -6
package/dist/components.d.ts
CHANGED
|
@@ -60,6 +60,7 @@ import { AdmiraltyTextSideBarItem as AdmiraltyTextSideBarItemElement } from "@uk
|
|
|
60
60
|
import { AdmiraltyTextSideBar as AdmiraltyTextSideBarElement } from "@ukho/admiralty-core/dist/components/admiralty-text-side-bar.js";
|
|
61
61
|
import { AdmiraltyTextarea as AdmiraltyTextareaElement } from "@ukho/admiralty-core/dist/components/admiralty-textarea.js";
|
|
62
62
|
import { AdmiraltyThemeToggle as AdmiraltyThemeToggleElement } from "@ukho/admiralty-core/dist/components/admiralty-theme-toggle.js";
|
|
63
|
+
import { AdmiraltyTooltip as AdmiraltyTooltipElement } from "@ukho/admiralty-core/dist/components/admiralty-tooltip.js";
|
|
63
64
|
type AdmiraltyAutocompleteEvents = {
|
|
64
65
|
onAdmiraltyChange: EventName<AdmiraltyAutocompleteCustomEvent<AutoCompleteChangeEventDetail>>;
|
|
65
66
|
};
|
|
@@ -233,4 +234,6 @@ type AdmiraltyThemeToggleEvents = {
|
|
|
233
234
|
onAdmiraltyThemeChange: EventName<AdmiraltyThemeToggleCustomEvent<ThemeToggleChangeEventDetail>>;
|
|
234
235
|
};
|
|
235
236
|
export declare const AdmiraltyThemeToggle: StencilReactComponent<AdmiraltyThemeToggleElement, AdmiraltyThemeToggleEvents>;
|
|
237
|
+
type AdmiraltyTooltipEvents = NonNullable<unknown>;
|
|
238
|
+
export declare const AdmiraltyTooltip: StencilReactComponent<AdmiraltyTooltipElement, AdmiraltyTooltipEvents>;
|
|
236
239
|
export {};
|
package/dist/components.js
CHANGED
|
@@ -56,11 +56,11 @@ import { AdmiraltyTextSideBarItem as AdmiraltyTextSideBarItemElement, defineCust
|
|
|
56
56
|
import { AdmiraltyTextSideBar as AdmiraltyTextSideBarElement, defineCustomElement as defineAdmiraltyTextSideBar } from "@ukho/admiralty-core/dist/components/admiralty-text-side-bar.js";
|
|
57
57
|
import { AdmiraltyTextarea as AdmiraltyTextareaElement, defineCustomElement as defineAdmiraltyTextarea } from "@ukho/admiralty-core/dist/components/admiralty-textarea.js";
|
|
58
58
|
import { AdmiraltyThemeToggle as AdmiraltyThemeToggleElement, defineCustomElement as defineAdmiraltyThemeToggle } from "@ukho/admiralty-core/dist/components/admiralty-theme-toggle.js";
|
|
59
|
+
import { AdmiraltyTooltip as AdmiraltyTooltipElement, defineCustomElement as defineAdmiraltyTooltip } from "@ukho/admiralty-core/dist/components/admiralty-tooltip.js";
|
|
59
60
|
import React from 'react';
|
|
60
61
|
export const AdmiraltyAutocomplete = /*@__PURE__*/ createComponent({
|
|
61
62
|
tagName: 'admiralty-autocomplete',
|
|
62
63
|
elementClass: AdmiraltyAutocompleteElement,
|
|
63
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
64
64
|
react: React,
|
|
65
65
|
events: { onAdmiraltyChange: 'admiraltyChange' },
|
|
66
66
|
defineCustomElement: defineAdmiraltyAutocomplete
|
|
@@ -68,7 +68,6 @@ export const AdmiraltyAutocomplete = /*@__PURE__*/ createComponent({
|
|
|
68
68
|
export const AdmiraltyAutocompleteOption = /*@__PURE__*/ createComponent({
|
|
69
69
|
tagName: 'admiralty-autocomplete-option',
|
|
70
70
|
elementClass: AdmiraltyAutocompleteOptionElement,
|
|
71
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
72
71
|
react: React,
|
|
73
72
|
events: {},
|
|
74
73
|
defineCustomElement: defineAdmiraltyAutocompleteOption
|
|
@@ -76,7 +75,6 @@ export const AdmiraltyAutocompleteOption = /*@__PURE__*/ createComponent({
|
|
|
76
75
|
export const AdmiraltyBreadcrumb = /*@__PURE__*/ createComponent({
|
|
77
76
|
tagName: 'admiralty-breadcrumb',
|
|
78
77
|
elementClass: AdmiraltyBreadcrumbElement,
|
|
79
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
80
78
|
react: React,
|
|
81
79
|
events: {},
|
|
82
80
|
defineCustomElement: defineAdmiraltyBreadcrumb
|
|
@@ -84,7 +82,6 @@ export const AdmiraltyBreadcrumb = /*@__PURE__*/ createComponent({
|
|
|
84
82
|
export const AdmiraltyBreadcrumbs = /*@__PURE__*/ createComponent({
|
|
85
83
|
tagName: 'admiralty-breadcrumbs',
|
|
86
84
|
elementClass: AdmiraltyBreadcrumbsElement,
|
|
87
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
88
85
|
react: React,
|
|
89
86
|
events: {},
|
|
90
87
|
defineCustomElement: defineAdmiraltyBreadcrumbs
|
|
@@ -92,7 +89,6 @@ export const AdmiraltyBreadcrumbs = /*@__PURE__*/ createComponent({
|
|
|
92
89
|
export const AdmiraltyButton = /*@__PURE__*/ createComponent({
|
|
93
90
|
tagName: 'admiralty-button',
|
|
94
91
|
elementClass: AdmiraltyButtonElement,
|
|
95
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
96
92
|
react: React,
|
|
97
93
|
events: {},
|
|
98
94
|
defineCustomElement: defineAdmiraltyButton
|
|
@@ -100,7 +96,6 @@ export const AdmiraltyButton = /*@__PURE__*/ createComponent({
|
|
|
100
96
|
export const AdmiraltyCard = /*@__PURE__*/ createComponent({
|
|
101
97
|
tagName: 'admiralty-card',
|
|
102
98
|
elementClass: AdmiraltyCardElement,
|
|
103
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
104
99
|
react: React,
|
|
105
100
|
events: {},
|
|
106
101
|
defineCustomElement: defineAdmiraltyCard
|
|
@@ -108,7 +103,6 @@ export const AdmiraltyCard = /*@__PURE__*/ createComponent({
|
|
|
108
103
|
export const AdmiraltyCheckbox = /*@__PURE__*/ createComponent({
|
|
109
104
|
tagName: 'admiralty-checkbox',
|
|
110
105
|
elementClass: AdmiraltyCheckboxElement,
|
|
111
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
112
106
|
react: React,
|
|
113
107
|
events: {
|
|
114
108
|
onAdmiraltyChange: 'admiraltyChange',
|
|
@@ -120,7 +114,6 @@ export const AdmiraltyCheckbox = /*@__PURE__*/ createComponent({
|
|
|
120
114
|
export const AdmiraltyColourBlock = /*@__PURE__*/ createComponent({
|
|
121
115
|
tagName: 'admiralty-colour-block',
|
|
122
116
|
elementClass: AdmiraltyColourBlockElement,
|
|
123
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
124
117
|
react: React,
|
|
125
118
|
events: { onColourBlockLinkClicked: 'colourBlockLinkClicked' },
|
|
126
119
|
defineCustomElement: defineAdmiraltyColourBlock
|
|
@@ -128,7 +121,6 @@ export const AdmiraltyColourBlock = /*@__PURE__*/ createComponent({
|
|
|
128
121
|
export const AdmiraltyDialogue = /*@__PURE__*/ createComponent({
|
|
129
122
|
tagName: 'admiralty-dialogue',
|
|
130
123
|
elementClass: AdmiraltyDialogueElement,
|
|
131
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
132
124
|
react: React,
|
|
133
125
|
events: {},
|
|
134
126
|
defineCustomElement: defineAdmiraltyDialogue
|
|
@@ -136,7 +128,6 @@ export const AdmiraltyDialogue = /*@__PURE__*/ createComponent({
|
|
|
136
128
|
export const AdmiraltyErrorSummary = /*@__PURE__*/ createComponent({
|
|
137
129
|
tagName: 'admiralty-error-summary',
|
|
138
130
|
elementClass: AdmiraltyErrorSummaryElement,
|
|
139
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
140
131
|
react: React,
|
|
141
132
|
events: {},
|
|
142
133
|
defineCustomElement: defineAdmiraltyErrorSummary
|
|
@@ -144,7 +135,6 @@ export const AdmiraltyErrorSummary = /*@__PURE__*/ createComponent({
|
|
|
144
135
|
export const AdmiraltyExpansion = /*@__PURE__*/ createComponent({
|
|
145
136
|
tagName: 'admiralty-expansion',
|
|
146
137
|
elementClass: AdmiraltyExpansionElement,
|
|
147
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
148
138
|
react: React,
|
|
149
139
|
events: { onToggled: 'toggled' },
|
|
150
140
|
defineCustomElement: defineAdmiraltyExpansion
|
|
@@ -152,7 +142,6 @@ export const AdmiraltyExpansion = /*@__PURE__*/ createComponent({
|
|
|
152
142
|
export const AdmiraltyFileInput = /*@__PURE__*/ createComponent({
|
|
153
143
|
tagName: 'admiralty-file-input',
|
|
154
144
|
elementClass: AdmiraltyFileInputElement,
|
|
155
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
156
145
|
react: React,
|
|
157
146
|
events: { onFileInputChange: 'fileInputChange' },
|
|
158
147
|
defineCustomElement: defineAdmiraltyFileInput
|
|
@@ -160,7 +149,6 @@ export const AdmiraltyFileInput = /*@__PURE__*/ createComponent({
|
|
|
160
149
|
export const AdmiraltyFilter = /*@__PURE__*/ createComponent({
|
|
161
150
|
tagName: 'admiralty-filter',
|
|
162
151
|
elementClass: AdmiraltyFilterElement,
|
|
163
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
164
152
|
react: React,
|
|
165
153
|
events: {
|
|
166
154
|
onFilterCleared: 'filterCleared',
|
|
@@ -171,7 +159,6 @@ export const AdmiraltyFilter = /*@__PURE__*/ createComponent({
|
|
|
171
159
|
export const AdmiraltyFilterGroup = /*@__PURE__*/ createComponent({
|
|
172
160
|
tagName: 'admiralty-filter-group',
|
|
173
161
|
elementClass: AdmiraltyFilterGroupElement,
|
|
174
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
175
162
|
react: React,
|
|
176
163
|
events: {},
|
|
177
164
|
defineCustomElement: defineAdmiraltyFilterGroup
|
|
@@ -179,7 +166,6 @@ export const AdmiraltyFilterGroup = /*@__PURE__*/ createComponent({
|
|
|
179
166
|
export const AdmiraltyFooter = /*@__PURE__*/ createComponent({
|
|
180
167
|
tagName: 'admiralty-footer',
|
|
181
168
|
elementClass: AdmiraltyFooterElement,
|
|
182
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
183
169
|
react: React,
|
|
184
170
|
events: {},
|
|
185
171
|
defineCustomElement: defineAdmiraltyFooter
|
|
@@ -187,7 +173,6 @@ export const AdmiraltyFooter = /*@__PURE__*/ createComponent({
|
|
|
187
173
|
export const AdmiraltyHeader = /*@__PURE__*/ createComponent({
|
|
188
174
|
tagName: 'admiralty-header',
|
|
189
175
|
elementClass: AdmiraltyHeaderElement,
|
|
190
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
191
176
|
react: React,
|
|
192
177
|
events: { onTitledClicked: 'titledClicked' },
|
|
193
178
|
defineCustomElement: defineAdmiraltyHeader
|
|
@@ -195,7 +180,6 @@ export const AdmiraltyHeader = /*@__PURE__*/ createComponent({
|
|
|
195
180
|
export const AdmiraltyHeaderMenuItem = /*@__PURE__*/ createComponent({
|
|
196
181
|
tagName: 'admiralty-header-menu-item',
|
|
197
182
|
elementClass: AdmiraltyHeaderMenuItemElement,
|
|
198
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
199
183
|
react: React,
|
|
200
184
|
events: { onMenuItemClick: 'menuItemClick' },
|
|
201
185
|
defineCustomElement: defineAdmiraltyHeaderMenuItem
|
|
@@ -203,7 +187,6 @@ export const AdmiraltyHeaderMenuItem = /*@__PURE__*/ createComponent({
|
|
|
203
187
|
export const AdmiraltyHeaderMenuLink = /*@__PURE__*/ createComponent({
|
|
204
188
|
tagName: 'admiralty-header-menu-link',
|
|
205
189
|
elementClass: AdmiraltyHeaderMenuLinkElement,
|
|
206
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
207
190
|
react: React,
|
|
208
191
|
events: { onMenuItemClick: 'menuItemClick' },
|
|
209
192
|
defineCustomElement: defineAdmiraltyHeaderMenuLink
|
|
@@ -211,7 +194,6 @@ export const AdmiraltyHeaderMenuLink = /*@__PURE__*/ createComponent({
|
|
|
211
194
|
export const AdmiraltyHeaderProfile = /*@__PURE__*/ createComponent({
|
|
212
195
|
tagName: 'admiralty-header-profile',
|
|
213
196
|
elementClass: AdmiraltyHeaderProfileElement,
|
|
214
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
215
197
|
react: React,
|
|
216
198
|
events: {
|
|
217
199
|
onSignInClicked: 'signInClicked',
|
|
@@ -223,7 +205,6 @@ export const AdmiraltyHeaderProfile = /*@__PURE__*/ createComponent({
|
|
|
223
205
|
export const AdmiraltyHeaderSubMenuItem = /*@__PURE__*/ createComponent({
|
|
224
206
|
tagName: 'admiralty-header-sub-menu-item',
|
|
225
207
|
elementClass: AdmiraltyHeaderSubMenuItemElement,
|
|
226
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
227
208
|
react: React,
|
|
228
209
|
events: { onSubMenuItemClick: 'subMenuItemClick' },
|
|
229
210
|
defineCustomElement: defineAdmiraltyHeaderSubMenuItem
|
|
@@ -231,7 +212,6 @@ export const AdmiraltyHeaderSubMenuItem = /*@__PURE__*/ createComponent({
|
|
|
231
212
|
export const AdmiraltyHint = /*@__PURE__*/ createComponent({
|
|
232
213
|
tagName: 'admiralty-hint',
|
|
233
214
|
elementClass: AdmiraltyHintElement,
|
|
234
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
235
215
|
react: React,
|
|
236
216
|
events: {},
|
|
237
217
|
defineCustomElement: defineAdmiraltyHint
|
|
@@ -239,7 +219,6 @@ export const AdmiraltyHint = /*@__PURE__*/ createComponent({
|
|
|
239
219
|
export const AdmiraltyHr = /*@__PURE__*/ createComponent({
|
|
240
220
|
tagName: 'admiralty-hr',
|
|
241
221
|
elementClass: AdmiraltyHrElement,
|
|
242
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
243
222
|
react: React,
|
|
244
223
|
events: {},
|
|
245
224
|
defineCustomElement: defineAdmiraltyHr
|
|
@@ -247,7 +226,6 @@ export const AdmiraltyHr = /*@__PURE__*/ createComponent({
|
|
|
247
226
|
export const AdmiraltyIcon = /*@__PURE__*/ createComponent({
|
|
248
227
|
tagName: 'admiralty-icon',
|
|
249
228
|
elementClass: AdmiraltyIconElement,
|
|
250
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
251
229
|
react: React,
|
|
252
230
|
events: {},
|
|
253
231
|
defineCustomElement: defineAdmiraltyIcon
|
|
@@ -255,7 +233,6 @@ export const AdmiraltyIcon = /*@__PURE__*/ createComponent({
|
|
|
255
233
|
export const AdmiraltyIconSideBar = /*@__PURE__*/ createComponent({
|
|
256
234
|
tagName: 'admiralty-icon-side-bar',
|
|
257
235
|
elementClass: AdmiraltyIconSideBarElement,
|
|
258
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
259
236
|
react: React,
|
|
260
237
|
events: {},
|
|
261
238
|
defineCustomElement: defineAdmiraltyIconSideBar
|
|
@@ -263,7 +240,6 @@ export const AdmiraltyIconSideBar = /*@__PURE__*/ createComponent({
|
|
|
263
240
|
export const AdmiraltyIconSideBarItem = /*@__PURE__*/ createComponent({
|
|
264
241
|
tagName: 'admiralty-icon-side-bar-item',
|
|
265
242
|
elementClass: AdmiraltyIconSideBarItemElement,
|
|
266
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
267
243
|
react: React,
|
|
268
244
|
events: {
|
|
269
245
|
onToggled: 'toggled',
|
|
@@ -274,7 +250,6 @@ export const AdmiraltyIconSideBarItem = /*@__PURE__*/ createComponent({
|
|
|
274
250
|
export const AdmiraltyInput = /*@__PURE__*/ createComponent({
|
|
275
251
|
tagName: 'admiralty-input',
|
|
276
252
|
elementClass: AdmiraltyInputElement,
|
|
277
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
278
253
|
react: React,
|
|
279
254
|
events: {
|
|
280
255
|
onAdmiraltyInput: 'admiraltyInput',
|
|
@@ -286,7 +261,6 @@ export const AdmiraltyInput = /*@__PURE__*/ createComponent({
|
|
|
286
261
|
export const AdmiraltyInputInvalid = /*@__PURE__*/ createComponent({
|
|
287
262
|
tagName: 'admiralty-input-invalid',
|
|
288
263
|
elementClass: AdmiraltyInputInvalidElement,
|
|
289
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
290
264
|
react: React,
|
|
291
265
|
events: {},
|
|
292
266
|
defineCustomElement: defineAdmiraltyInputInvalid
|
|
@@ -294,7 +268,6 @@ export const AdmiraltyInputInvalid = /*@__PURE__*/ createComponent({
|
|
|
294
268
|
export const AdmiraltyLabel = /*@__PURE__*/ createComponent({
|
|
295
269
|
tagName: 'admiralty-label',
|
|
296
270
|
elementClass: AdmiraltyLabelElement,
|
|
297
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
298
271
|
react: React,
|
|
299
272
|
events: {},
|
|
300
273
|
defineCustomElement: defineAdmiraltyLabel
|
|
@@ -302,7 +275,6 @@ export const AdmiraltyLabel = /*@__PURE__*/ createComponent({
|
|
|
302
275
|
export const AdmiraltyLink = /*@__PURE__*/ createComponent({
|
|
303
276
|
tagName: 'admiralty-link',
|
|
304
277
|
elementClass: AdmiraltyLinkElement,
|
|
305
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
306
278
|
react: React,
|
|
307
279
|
events: {},
|
|
308
280
|
defineCustomElement: defineAdmiraltyLink
|
|
@@ -310,7 +282,6 @@ export const AdmiraltyLink = /*@__PURE__*/ createComponent({
|
|
|
310
282
|
export const AdmiraltyModalDialog = /*@__PURE__*/ createComponent({
|
|
311
283
|
tagName: 'admiralty-modal-dialog',
|
|
312
284
|
elementClass: AdmiraltyModalDialogElement,
|
|
313
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
314
285
|
react: React,
|
|
315
286
|
events: {},
|
|
316
287
|
defineCustomElement: defineAdmiraltyModalDialog
|
|
@@ -318,7 +289,6 @@ export const AdmiraltyModalDialog = /*@__PURE__*/ createComponent({
|
|
|
318
289
|
export const AdmiraltyPaginator = /*@__PURE__*/ createComponent({
|
|
319
290
|
tagName: 'admiralty-paginator',
|
|
320
291
|
elementClass: AdmiraltyPaginatorElement,
|
|
321
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
322
292
|
react: React,
|
|
323
293
|
events: { onPageChange: 'pageChange' },
|
|
324
294
|
defineCustomElement: defineAdmiraltyPaginator
|
|
@@ -326,7 +296,6 @@ export const AdmiraltyPaginator = /*@__PURE__*/ createComponent({
|
|
|
326
296
|
export const AdmiraltyPhaseBanner = /*@__PURE__*/ createComponent({
|
|
327
297
|
tagName: 'admiralty-phase-banner',
|
|
328
298
|
elementClass: AdmiraltyPhaseBannerElement,
|
|
329
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
330
299
|
react: React,
|
|
331
300
|
events: {},
|
|
332
301
|
defineCustomElement: defineAdmiraltyPhaseBanner
|
|
@@ -334,7 +303,6 @@ export const AdmiraltyPhaseBanner = /*@__PURE__*/ createComponent({
|
|
|
334
303
|
export const AdmiraltyPill = /*@__PURE__*/ createComponent({
|
|
335
304
|
tagName: 'admiralty-pill',
|
|
336
305
|
elementClass: AdmiraltyPillElement,
|
|
337
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
338
306
|
react: React,
|
|
339
307
|
events: {},
|
|
340
308
|
defineCustomElement: defineAdmiraltyPill
|
|
@@ -342,7 +310,6 @@ export const AdmiraltyPill = /*@__PURE__*/ createComponent({
|
|
|
342
310
|
export const AdmiraltyProgressBar = /*@__PURE__*/ createComponent({
|
|
343
311
|
tagName: 'admiralty-progress-bar',
|
|
344
312
|
elementClass: AdmiraltyProgressBarElement,
|
|
345
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
346
313
|
react: React,
|
|
347
314
|
events: {},
|
|
348
315
|
defineCustomElement: defineAdmiraltyProgressBar
|
|
@@ -350,7 +317,6 @@ export const AdmiraltyProgressBar = /*@__PURE__*/ createComponent({
|
|
|
350
317
|
export const AdmiraltyProgressTracker = /*@__PURE__*/ createComponent({
|
|
351
318
|
tagName: 'admiralty-progress-tracker',
|
|
352
319
|
elementClass: AdmiraltyProgressTrackerElement,
|
|
353
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
354
320
|
react: React,
|
|
355
321
|
events: { onStepClicked: 'stepClicked' },
|
|
356
322
|
defineCustomElement: defineAdmiraltyProgressTracker
|
|
@@ -358,7 +324,6 @@ export const AdmiraltyProgressTracker = /*@__PURE__*/ createComponent({
|
|
|
358
324
|
export const AdmiraltyProgressTrackerStep = /*@__PURE__*/ createComponent({
|
|
359
325
|
tagName: 'admiralty-progress-tracker-step',
|
|
360
326
|
elementClass: AdmiraltyProgressTrackerStepElement,
|
|
361
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
362
327
|
react: React,
|
|
363
328
|
events: {},
|
|
364
329
|
defineCustomElement: defineAdmiraltyProgressTrackerStep
|
|
@@ -366,7 +331,6 @@ export const AdmiraltyProgressTrackerStep = /*@__PURE__*/ createComponent({
|
|
|
366
331
|
export const AdmiraltyRadio = /*@__PURE__*/ createComponent({
|
|
367
332
|
tagName: 'admiralty-radio',
|
|
368
333
|
elementClass: AdmiraltyRadioElement,
|
|
369
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
370
334
|
react: React,
|
|
371
335
|
events: {
|
|
372
336
|
onAdmiraltyFocus: 'admiraltyFocus',
|
|
@@ -378,7 +342,6 @@ export const AdmiraltyRadio = /*@__PURE__*/ createComponent({
|
|
|
378
342
|
export const AdmiraltyRadioGroup = /*@__PURE__*/ createComponent({
|
|
379
343
|
tagName: 'admiralty-radio-group',
|
|
380
344
|
elementClass: AdmiraltyRadioGroupElement,
|
|
381
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
382
345
|
react: React,
|
|
383
346
|
events: { onAdmiraltyChange: 'admiraltyChange' },
|
|
384
347
|
defineCustomElement: defineAdmiraltyRadioGroup
|
|
@@ -386,7 +349,6 @@ export const AdmiraltyRadioGroup = /*@__PURE__*/ createComponent({
|
|
|
386
349
|
export const AdmiraltyReadMore = /*@__PURE__*/ createComponent({
|
|
387
350
|
tagName: 'admiralty-read-more',
|
|
388
351
|
elementClass: AdmiraltyReadMoreElement,
|
|
389
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
390
352
|
react: React,
|
|
391
353
|
events: { onAdmiraltyToggled: 'admiraltyToggled' },
|
|
392
354
|
defineCustomElement: defineAdmiraltyReadMore
|
|
@@ -394,7 +356,6 @@ export const AdmiraltyReadMore = /*@__PURE__*/ createComponent({
|
|
|
394
356
|
export const AdmiraltySelect = /*@__PURE__*/ createComponent({
|
|
395
357
|
tagName: 'admiralty-select',
|
|
396
358
|
elementClass: AdmiraltySelectElement,
|
|
397
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
398
359
|
react: React,
|
|
399
360
|
events: {
|
|
400
361
|
onAdmiraltyChange: 'admiraltyChange',
|
|
@@ -405,7 +366,6 @@ export const AdmiraltySelect = /*@__PURE__*/ createComponent({
|
|
|
405
366
|
export const AdmiraltySideNav = /*@__PURE__*/ createComponent({
|
|
406
367
|
tagName: 'admiralty-side-nav',
|
|
407
368
|
elementClass: AdmiraltySideNavElement,
|
|
408
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
409
369
|
react: React,
|
|
410
370
|
events: {},
|
|
411
371
|
defineCustomElement: defineAdmiraltySideNav
|
|
@@ -413,7 +373,6 @@ export const AdmiraltySideNav = /*@__PURE__*/ createComponent({
|
|
|
413
373
|
export const AdmiraltySideNavItem = /*@__PURE__*/ createComponent({
|
|
414
374
|
tagName: 'admiralty-side-nav-item',
|
|
415
375
|
elementClass: AdmiraltySideNavItemElement,
|
|
416
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
417
376
|
react: React,
|
|
418
377
|
events: { onSideNavItemSelected: 'sideNavItemSelected' },
|
|
419
378
|
defineCustomElement: defineAdmiraltySideNavItem
|
|
@@ -421,7 +380,6 @@ export const AdmiraltySideNavItem = /*@__PURE__*/ createComponent({
|
|
|
421
380
|
export const AdmiraltySkeleton = /*@__PURE__*/ createComponent({
|
|
422
381
|
tagName: 'admiralty-skeleton',
|
|
423
382
|
elementClass: AdmiraltySkeletonElement,
|
|
424
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
425
383
|
react: React,
|
|
426
384
|
events: {},
|
|
427
385
|
defineCustomElement: defineAdmiraltySkeleton
|
|
@@ -429,7 +387,6 @@ export const AdmiraltySkeleton = /*@__PURE__*/ createComponent({
|
|
|
429
387
|
export const AdmiraltySkipLink = /*@__PURE__*/ createComponent({
|
|
430
388
|
tagName: 'admiralty-skip-link',
|
|
431
389
|
elementClass: AdmiraltySkipLinkElement,
|
|
432
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
433
390
|
react: React,
|
|
434
391
|
events: {},
|
|
435
392
|
defineCustomElement: defineAdmiraltySkipLink
|
|
@@ -437,7 +394,6 @@ export const AdmiraltySkipLink = /*@__PURE__*/ createComponent({
|
|
|
437
394
|
export const AdmiraltyTab = /*@__PURE__*/ createComponent({
|
|
438
395
|
tagName: 'admiralty-tab',
|
|
439
396
|
elementClass: AdmiraltyTabElement,
|
|
440
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
441
397
|
react: React,
|
|
442
398
|
events: {},
|
|
443
399
|
defineCustomElement: defineAdmiraltyTab
|
|
@@ -445,7 +401,6 @@ export const AdmiraltyTab = /*@__PURE__*/ createComponent({
|
|
|
445
401
|
export const AdmiraltyTabGroup = /*@__PURE__*/ createComponent({
|
|
446
402
|
tagName: 'admiralty-tab-group',
|
|
447
403
|
elementClass: AdmiraltyTabGroupElement,
|
|
448
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
449
404
|
react: React,
|
|
450
405
|
events: { onAdmiraltyTabSelected: 'admiraltyTabSelected' },
|
|
451
406
|
defineCustomElement: defineAdmiraltyTabGroup
|
|
@@ -453,7 +408,6 @@ export const AdmiraltyTabGroup = /*@__PURE__*/ createComponent({
|
|
|
453
408
|
export const AdmiraltyTable = /*@__PURE__*/ createComponent({
|
|
454
409
|
tagName: 'admiralty-table',
|
|
455
410
|
elementClass: AdmiraltyTableElement,
|
|
456
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
457
411
|
react: React,
|
|
458
412
|
events: {},
|
|
459
413
|
defineCustomElement: defineAdmiraltyTable
|
|
@@ -461,7 +415,6 @@ export const AdmiraltyTable = /*@__PURE__*/ createComponent({
|
|
|
461
415
|
export const AdmiraltyTableBody = /*@__PURE__*/ createComponent({
|
|
462
416
|
tagName: 'admiralty-table-body',
|
|
463
417
|
elementClass: AdmiraltyTableBodyElement,
|
|
464
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
465
418
|
react: React,
|
|
466
419
|
events: {},
|
|
467
420
|
defineCustomElement: defineAdmiraltyTableBody
|
|
@@ -469,7 +422,6 @@ export const AdmiraltyTableBody = /*@__PURE__*/ createComponent({
|
|
|
469
422
|
export const AdmiraltyTableCell = /*@__PURE__*/ createComponent({
|
|
470
423
|
tagName: 'admiralty-table-cell',
|
|
471
424
|
elementClass: AdmiraltyTableCellElement,
|
|
472
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
473
425
|
react: React,
|
|
474
426
|
events: {},
|
|
475
427
|
defineCustomElement: defineAdmiraltyTableCell
|
|
@@ -477,7 +429,6 @@ export const AdmiraltyTableCell = /*@__PURE__*/ createComponent({
|
|
|
477
429
|
export const AdmiraltyTableHeader = /*@__PURE__*/ createComponent({
|
|
478
430
|
tagName: 'admiralty-table-header',
|
|
479
431
|
elementClass: AdmiraltyTableHeaderElement,
|
|
480
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
481
432
|
react: React,
|
|
482
433
|
events: {},
|
|
483
434
|
defineCustomElement: defineAdmiraltyTableHeader
|
|
@@ -485,7 +436,6 @@ export const AdmiraltyTableHeader = /*@__PURE__*/ createComponent({
|
|
|
485
436
|
export const AdmiraltyTableHeaderCell = /*@__PURE__*/ createComponent({
|
|
486
437
|
tagName: 'admiralty-table-header-cell',
|
|
487
438
|
elementClass: AdmiraltyTableHeaderCellElement,
|
|
488
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
489
439
|
react: React,
|
|
490
440
|
events: {},
|
|
491
441
|
defineCustomElement: defineAdmiraltyTableHeaderCell
|
|
@@ -493,7 +443,6 @@ export const AdmiraltyTableHeaderCell = /*@__PURE__*/ createComponent({
|
|
|
493
443
|
export const AdmiraltyTableRow = /*@__PURE__*/ createComponent({
|
|
494
444
|
tagName: 'admiralty-table-row',
|
|
495
445
|
elementClass: AdmiraltyTableRowElement,
|
|
496
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
497
446
|
react: React,
|
|
498
447
|
events: {},
|
|
499
448
|
defineCustomElement: defineAdmiraltyTableRow
|
|
@@ -501,7 +450,6 @@ export const AdmiraltyTableRow = /*@__PURE__*/ createComponent({
|
|
|
501
450
|
export const AdmiraltyTextSideBar = /*@__PURE__*/ createComponent({
|
|
502
451
|
tagName: 'admiralty-text-side-bar',
|
|
503
452
|
elementClass: AdmiraltyTextSideBarElement,
|
|
504
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
505
453
|
react: React,
|
|
506
454
|
events: {},
|
|
507
455
|
defineCustomElement: defineAdmiraltyTextSideBar
|
|
@@ -509,7 +457,6 @@ export const AdmiraltyTextSideBar = /*@__PURE__*/ createComponent({
|
|
|
509
457
|
export const AdmiraltyTextSideBarItem = /*@__PURE__*/ createComponent({
|
|
510
458
|
tagName: 'admiralty-text-side-bar-item',
|
|
511
459
|
elementClass: AdmiraltyTextSideBarItemElement,
|
|
512
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
513
460
|
react: React,
|
|
514
461
|
events: {
|
|
515
462
|
onToggled: 'toggled',
|
|
@@ -520,7 +467,6 @@ export const AdmiraltyTextSideBarItem = /*@__PURE__*/ createComponent({
|
|
|
520
467
|
export const AdmiraltyTextarea = /*@__PURE__*/ createComponent({
|
|
521
468
|
tagName: 'admiralty-textarea',
|
|
522
469
|
elementClass: AdmiraltyTextareaElement,
|
|
523
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
524
470
|
react: React,
|
|
525
471
|
events: {
|
|
526
472
|
onTextareaBlur: 'textareaBlur',
|
|
@@ -531,8 +477,14 @@ export const AdmiraltyTextarea = /*@__PURE__*/ createComponent({
|
|
|
531
477
|
export const AdmiraltyThemeToggle = /*@__PURE__*/ createComponent({
|
|
532
478
|
tagName: 'admiralty-theme-toggle',
|
|
533
479
|
elementClass: AdmiraltyThemeToggleElement,
|
|
534
|
-
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
535
480
|
react: React,
|
|
536
481
|
events: { onAdmiraltyThemeChange: 'admiraltyThemeChange' },
|
|
537
482
|
defineCustomElement: defineAdmiraltyThemeToggle
|
|
538
483
|
});
|
|
484
|
+
export const AdmiraltyTooltip = /*@__PURE__*/ createComponent({
|
|
485
|
+
tagName: 'admiralty-tooltip',
|
|
486
|
+
elementClass: AdmiraltyTooltipElement,
|
|
487
|
+
react: React,
|
|
488
|
+
events: {},
|
|
489
|
+
defineCustomElement: defineAdmiraltyTooltip
|
|
490
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukho/admiralty-react",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.3--canary.439.1e91dc1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"url": "https://github.com/UKHO/admiralty-design-system",
|
|
6
6
|
"repository": "git://github.com/UKHO/admiralty-design-system.git",
|
|
@@ -14,19 +14,19 @@
|
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@stencil/react-output-target": "^0.7.
|
|
18
|
-
"@ukho/admiralty-core": "5.5.
|
|
17
|
+
"@stencil/react-output-target": "^0.7.1",
|
|
18
|
+
"@ukho/admiralty-core": "5.5.3--canary.439.1e91dc1.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": ">=17",
|
|
22
22
|
"react-dom": ">=17"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@types/react": "^18.3.
|
|
25
|
+
"@types/react": "^18.3.7",
|
|
26
26
|
"@types/react-dom": "^18.3.7",
|
|
27
27
|
"react": "^18.3.1",
|
|
28
28
|
"react-dom": "^18.3.1",
|
|
29
|
-
"typescript": "^5.
|
|
29
|
+
"typescript": "^5.6.2"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "1e91dc1aafc2b927f20f24e2b407b533b6e6a71d"
|
|
32
32
|
}
|