@ukho/admiralty-react 5.7.0--canary.63b73ed.0 → 5.7.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 +1 -5
- package/dist/components.js +1 -1
- package/package.json +3 -3
package/dist/components.d.ts
CHANGED
|
@@ -214,11 +214,7 @@ type AdmiraltyTableCellEvents = NonNullable<unknown>;
|
|
|
214
214
|
export declare const AdmiraltyTableCell: StencilReactComponent<AdmiraltyTableCellElement, AdmiraltyTableCellEvents>;
|
|
215
215
|
type AdmiraltyTableHeaderEvents = NonNullable<unknown>;
|
|
216
216
|
export declare const AdmiraltyTableHeader: StencilReactComponent<AdmiraltyTableHeaderElement, AdmiraltyTableHeaderEvents>;
|
|
217
|
-
type AdmiraltyTableHeaderCellEvents =
|
|
218
|
-
onAdmiraltySortChange: EventName<CustomEvent<{
|
|
219
|
-
direction: 'none' | 'ascending' | 'descending';
|
|
220
|
-
}>>;
|
|
221
|
-
};
|
|
217
|
+
type AdmiraltyTableHeaderCellEvents = NonNullable<unknown>;
|
|
222
218
|
export declare const AdmiraltyTableHeaderCell: StencilReactComponent<AdmiraltyTableHeaderCellElement, AdmiraltyTableHeaderCellEvents>;
|
|
223
219
|
type AdmiraltyTableRowEvents = NonNullable<unknown>;
|
|
224
220
|
export declare const AdmiraltyTableRow: StencilReactComponent<AdmiraltyTableRowElement, AdmiraltyTableRowEvents>;
|
package/dist/components.js
CHANGED
|
@@ -488,7 +488,7 @@ export const AdmiraltyTableHeaderCell = /*@__PURE__*/ createComponent({
|
|
|
488
488
|
elementClass: AdmiraltyTableHeaderCellElement,
|
|
489
489
|
// @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
|
|
490
490
|
react: React,
|
|
491
|
-
events: {
|
|
491
|
+
events: {},
|
|
492
492
|
defineCustomElement: defineAdmiraltyTableHeaderCell
|
|
493
493
|
});
|
|
494
494
|
export const AdmiraltyTableRow = /*@__PURE__*/ createComponent({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ukho/admiralty-react",
|
|
3
|
-
"version": "5.7.0
|
|
3
|
+
"version": "5.7.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",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@stencil/react-output-target": "^0.7.4",
|
|
18
|
-
"@ukho/admiralty-core": "5.7.0
|
|
18
|
+
"@ukho/admiralty-core": "5.7.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": ">=17",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
"react-dom": "^18.3.1",
|
|
29
29
|
"typescript": "^5.9.3"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "a62ccb94f342be386c65cefca9893f075e6c6335"
|
|
32
32
|
}
|