We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ec09e6 commit fe61771Copy full SHA for fe61771
packages/micro-journeys/src/connection.js
@@ -6,9 +6,10 @@ import schema from './connection.schema';
6
7
let cx = classNames.bind(styles);
8
9
+const boltConnectionIs = 'bolt-connection';
10
@define
11
class BoltConnection extends withLitContext() {
- static is = 'bolt-connection';
12
+ static is = boltConnectionIs;
13
14
static props = {
15
noShadow: {
@@ -74,4 +75,4 @@ class BoltConnection extends withLitContext() {
74
75
}
76
77
-export { BoltConnection };
78
+export { BoltConnection, boltConnectionIs };
0 commit comments