@oicl/openbridge-webcomponents-react 2.0.0-next.15 → 2.0.0-next.16
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/navigation-instruments/wind-propulsion/wind-propulsion.d.ts +6 -0
- package/navigation-instruments/wind-propulsion/wind-propulsion.d.ts.map +1 -0
- package/navigation-instruments/wind-propulsion/wind-propulsion.js +12 -0
- package/navigation-instruments/wind-propulsion/wind-propulsion.js.map +1 -0
- package/package.json +3 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { EventName } from '@lit/react';
|
|
2
|
+
import { ObcWindPropulsion as ObcWindPropulsionElement } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/wind-propulsion/wind-propulsion.js';
|
|
3
|
+
export declare const ObcWindPropulsion: import("@lit/react").ReactWebComponent<ObcWindPropulsionElement, {
|
|
4
|
+
onNone: EventName<CustomEvent<unknown>>;
|
|
5
|
+
}>;
|
|
6
|
+
//# sourceMappingURL=wind-propulsion.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wind-propulsion.d.ts","sourceRoot":"","sources":["../../src/navigation-instruments/wind-propulsion/wind-propulsion.ts"],"names":[],"mappings":"AAEC,OAAO,EAAkB,SAAS,EAAC,MAAM,YAAY,CAAC;AAEtD,OAAO,EAAC,iBAAiB,IAAI,wBAAwB,EAAC,MAAM,+FAA+F,CAAC;AAM5J,eAAO,MAAM,iBAAiB;YAMR,SAAS,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;EAElD,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { createComponent } from '@lit/react';
|
|
3
|
+
import { ObcWindPropulsion as ObcWindPropulsionElement } from '@oicl/openbridge-webcomponents/dist/navigation-instruments/wind-propulsion/wind-propulsion.js';
|
|
4
|
+
export const ObcWindPropulsion = createComponent({
|
|
5
|
+
react: React,
|
|
6
|
+
tagName: 'obc-wind-propulsion',
|
|
7
|
+
elementClass: ObcWindPropulsionElement,
|
|
8
|
+
events: {
|
|
9
|
+
onNone: 'None',
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=wind-propulsion.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wind-propulsion.js","sourceRoot":"","sources":["../../src/navigation-instruments/wind-propulsion/wind-propulsion.ts"],"names":[],"mappings":"AACC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAC,eAAe,EAAY,MAAM,YAAY,CAAC;AAEtD,OAAO,EAAC,iBAAiB,IAAI,wBAAwB,EAAC,MAAM,+FAA+F,CAAC;AAM5J,MAAM,CAAC,MAAM,iBAAiB,GAAG,eAAe,CAAC;IAC/C,KAAK,EAAE,KAAK;IACZ,OAAO,EAAE,qBAAqB;IAC9B,YAAY,EAAE,wBAAwB;IACtC,MAAM,EAAE;QAEN,MAAM,EAAE,MAAyC;KAClD;CACD,CAAC,CAAC","sourcesContent":["\n import * as React from 'react';\n import {createComponent, EventName} from '@lit/react';\n \n import {ObcWindPropulsion as ObcWindPropulsionElement} from '@oicl/openbridge-webcomponents/dist/navigation-instruments/wind-propulsion/wind-propulsion.js';\n \n \n \n\n \n export const ObcWindPropulsion = createComponent({\n react: React,\n tagName: 'obc-wind-propulsion',\n elementClass: ObcWindPropulsionElement,\n events: {\n \n onNone: 'None' as EventName<CustomEvent<unknown>>,\n }\n });\n \n "]}
|
package/package.json
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"build": "tsc",
|
|
6
6
|
"build:watch": "tsc --watch"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.0.0-next.
|
|
8
|
+
"version": "2.0.0-next.16",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@oicl/openbridge-webcomponents": "^2.0.0-next.
|
|
10
|
+
"@oicl/openbridge-webcomponents": "^2.0.0-next.15",
|
|
11
11
|
"@lit/react": "^1.0.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
@@ -2218,6 +2218,7 @@
|
|
|
2218
2218
|
"navigation-instruments/watch-flat/watch-flat.{js,js.map,d.ts,d.ts.map}",
|
|
2219
2219
|
"navigation-instruments/wind/wind.{js,js.map,d.ts,d.ts.map}",
|
|
2220
2220
|
"navigation-instruments/wind-indicator/wind-indicator.{js,js.map,d.ts,d.ts.map}",
|
|
2221
|
+
"navigation-instruments/wind-propulsion/wind-propulsion.{js,js.map,d.ts,d.ts.map}",
|
|
2221
2222
|
"pages/alert-detail-page/alert-detail-page.{js,js.map,d.ts,d.ts.map}",
|
|
2222
2223
|
"pages/alert-list-page-small/alert-list-page-small.{js,js.map,d.ts,d.ts.map}",
|
|
2223
2224
|
"README.md"
|