@ukho/admiralty-react 5.0.0-next.2 → 5.0.0-next.4
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 +1 -0
- package/dist/components.js +4 -1
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -173,6 +173,7 @@ export declare const AdmiraltySelect: StencilReactComponent<AdmiraltySelectEleme
|
|
|
173
173
|
type AdmiraltySideBarEvents = NonNullable<unknown>;
|
|
174
174
|
export declare const AdmiraltySideBar: StencilReactComponent<AdmiraltySideBarElement, AdmiraltySideBarEvents>;
|
|
175
175
|
type AdmiraltySideBarItemEvents = {
|
|
176
|
+
onToggled: EventName<CustomEvent<boolean>>;
|
|
176
177
|
onSideBarItemClick: EventName<CustomEvent<string>>;
|
|
177
178
|
};
|
|
178
179
|
export declare const AdmiraltySideBarItem: StencilReactComponent<AdmiraltySideBarItemElement, AdmiraltySideBarItemEvents>;
|
package/dist/components.js
CHANGED
|
@@ -336,7 +336,10 @@ export const AdmiraltySideBarItem = /*@__PURE__*/ createComponent({
|
|
|
336
336
|
tagName: 'admiralty-side-bar-item',
|
|
337
337
|
elementClass: AdmiraltySideBarItemElement,
|
|
338
338
|
react: React,
|
|
339
|
-
events: {
|
|
339
|
+
events: {
|
|
340
|
+
onToggled: 'toggled',
|
|
341
|
+
onSideBarItemClick: 'sideBarItemClick'
|
|
342
|
+
},
|
|
340
343
|
defineCustomElement: defineAdmiraltySideBarItem
|
|
341
344
|
});
|
|
342
345
|
export const AdmiraltySideNav = /*@__PURE__*/ createComponent({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukho/admiralty-react",
|
|
3
|
-
"version": "5.0.0-next.
|
|
3
|
+
"version": "5.0.0-next.4",
|
|
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",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@stencil/react-output-target": "^0.7.1",
|
|
18
|
-
"@ukho/admiralty-core": "5.0.0-next.
|
|
18
|
+
"@ukho/admiralty-core": "5.0.0-next.4"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": ">=17",
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"react-dom": "^18.3.1",
|
|
28
28
|
"typescript": "^5.6.2"
|
|
29
29
|
},
|
|
30
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "29a61dd36470ee54d30ae361a6d6683934bb16e7"
|
|
31
31
|
}
|