@oicl/openbridge-webcomponents-react 2.0.0-next.152 → 2.0.0-next.153
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/components/alert-button-item/alert-button-item.d.ts +6 -0
- package/components/alert-button-item/alert-button-item.d.ts.map +1 -0
- package/components/alert-button-item/alert-button-item.js +12 -0
- package/components/alert-button-item/alert-button-item.js.map +1 -0
- package/components/alert-counter-item/alert-counter-item.d.ts +3 -0
- package/components/alert-counter-item/alert-counter-item.d.ts.map +1 -0
- package/components/alert-counter-item/alert-counter-item.js +10 -0
- package/components/alert-counter-item/alert-counter-item.js.map +1 -0
- package/package.json +4 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { EventName } from '@lit/react';
|
|
2
|
+
import { ObcAlertButtonItem as ObcAlertButtonItemElement } from '@oicl/openbridge-webcomponents/dist/components/alert-button-item/alert-button-item.js';
|
|
3
|
+
export declare const ObcAlertButtonItem: import("@lit/react").ReactWebComponent<ObcAlertButtonItemElement, {
|
|
4
|
+
onClick: EventName<CustomEvent<unknown>>;
|
|
5
|
+
}>;
|
|
6
|
+
//# sourceMappingURL=alert-button-item.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert-button-item.d.ts","sourceRoot":"","sources":["../../src/components/alert-button-item/alert-button-item.ts"],"names":[],"mappings":"AAEC,OAAO,EAAkB,SAAS,EAAC,MAAM,YAAY,CAAC;AAEtD,OAAO,EAAC,kBAAkB,IAAI,yBAAyB,EAAC,MAAM,uFAAuF,CAAC;AAMtJ,eAAO,MAAM,kBAAkB;aAMP,SAAS,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;EAEpD,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { createComponent } from '@lit/react';
|
|
3
|
+
import { ObcAlertButtonItem as ObcAlertButtonItemElement } from '@oicl/openbridge-webcomponents/dist/components/alert-button-item/alert-button-item.js';
|
|
4
|
+
export const ObcAlertButtonItem = createComponent({
|
|
5
|
+
react: React,
|
|
6
|
+
tagName: 'obc-alert-button-item',
|
|
7
|
+
elementClass: ObcAlertButtonItemElement,
|
|
8
|
+
events: {
|
|
9
|
+
onClick: 'click',
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
//# sourceMappingURL=alert-button-item.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert-button-item.js","sourceRoot":"","sources":["../../src/components/alert-button-item/alert-button-item.ts"],"names":[],"mappings":"AACC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAC,eAAe,EAAY,MAAM,YAAY,CAAC;AAEtD,OAAO,EAAC,kBAAkB,IAAI,yBAAyB,EAAC,MAAM,uFAAuF,CAAC;AAMtJ,MAAM,CAAC,MAAM,kBAAkB,GAAG,eAAe,CAAC;IAChD,KAAK,EAAE,KAAK;IACZ,OAAO,EAAE,uBAAuB;IAChC,YAAY,EAAE,yBAAyB;IACvC,MAAM,EAAE;QAEN,OAAO,EAAE,OAA0C;KACpD;CACD,CAAC,CAAC","sourcesContent":["\n import * as React from 'react';\n import {createComponent, EventName} from '@lit/react';\n \n import {ObcAlertButtonItem as ObcAlertButtonItemElement} from '@oicl/openbridge-webcomponents/dist/components/alert-button-item/alert-button-item.js';\n \n \n \n\n \n export const ObcAlertButtonItem = createComponent({\n react: React,\n tagName: 'obc-alert-button-item',\n elementClass: ObcAlertButtonItemElement,\n events: {\n \n onClick: 'click' as EventName<CustomEvent<unknown>>,\n }\n });\n \n "]}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ObcAlertCounterItem as ObcAlertCounterItemElement } from '@oicl/openbridge-webcomponents/dist/components/alert-counter-item/alert-counter-item.js';
|
|
2
|
+
export declare const ObcAlertCounterItem: import("@lit/react").ReactWebComponent<ObcAlertCounterItemElement, {}>;
|
|
3
|
+
//# sourceMappingURL=alert-counter-item.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert-counter-item.d.ts","sourceRoot":"","sources":["../../src/components/alert-counter-item/alert-counter-item.ts"],"names":[],"mappings":"AAIC,OAAO,EAAC,mBAAmB,IAAI,0BAA0B,EAAC,MAAM,yFAAyF,CAAC;AAM1J,eAAO,MAAM,mBAAmB,wEAO7B,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { createComponent } from '@lit/react';
|
|
3
|
+
import { ObcAlertCounterItem as ObcAlertCounterItemElement } from '@oicl/openbridge-webcomponents/dist/components/alert-counter-item/alert-counter-item.js';
|
|
4
|
+
export const ObcAlertCounterItem = createComponent({
|
|
5
|
+
react: React,
|
|
6
|
+
tagName: 'obc-alert-counter-item',
|
|
7
|
+
elementClass: ObcAlertCounterItemElement,
|
|
8
|
+
events: {}
|
|
9
|
+
});
|
|
10
|
+
//# sourceMappingURL=alert-counter-item.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"alert-counter-item.js","sourceRoot":"","sources":["../../src/components/alert-counter-item/alert-counter-item.ts"],"names":[],"mappings":"AACC,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAC,eAAe,EAAC,MAAM,YAAY,CAAC;AAE3C,OAAO,EAAC,mBAAmB,IAAI,0BAA0B,EAAC,MAAM,yFAAyF,CAAC;AAM1J,MAAM,CAAC,MAAM,mBAAmB,GAAG,eAAe,CAAC;IACjD,KAAK,EAAE,KAAK;IACZ,OAAO,EAAE,wBAAwB;IACjC,YAAY,EAAE,0BAA0B;IACxC,MAAM,EAAE,EAEP;CACD,CAAC,CAAC","sourcesContent":["\n import * as React from 'react';\n import {createComponent} from '@lit/react';\n \n import {ObcAlertCounterItem as ObcAlertCounterItemElement} from '@oicl/openbridge-webcomponents/dist/components/alert-counter-item/alert-counter-item.js';\n \n \n \n\n \n export const ObcAlertCounterItem = createComponent({\n react: React,\n tagName: 'obc-alert-counter-item',\n elementClass: ObcAlertCounterItemElement,\n events: {\n \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.153",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@oicl/openbridge-webcomponents": "^2.0.0-next.
|
|
10
|
+
"@oicl/openbridge-webcomponents": "^2.0.0-next.153",
|
|
11
11
|
"@lit/react": "^1.0.0"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
@@ -121,6 +121,8 @@
|
|
|
121
121
|
"components/advice-menu-item/advice-menu-item.{js,js.map,d.ts,d.ts.map}",
|
|
122
122
|
"components/advice-message-item/advice-message-item.{js,js.map,d.ts,d.ts.map}",
|
|
123
123
|
"components/alert-button/alert-button.{js,js.map,d.ts,d.ts.map}",
|
|
124
|
+
"components/alert-button-item/alert-button-item.{js,js.map,d.ts,d.ts.map}",
|
|
125
|
+
"components/alert-counter-item/alert-counter-item.{js,js.map,d.ts,d.ts.map}",
|
|
124
126
|
"components/alert-floating-item/alert-floating-item.{js,js.map,d.ts,d.ts.map}",
|
|
125
127
|
"components/alert-frame/alert-frame.{js,js.map,d.ts,d.ts.map}",
|
|
126
128
|
"components/alert-frame/diagnostic-badge.{js,js.map,d.ts,d.ts.map}",
|