@baloise/ds-react 19.8.2 → 19.8.3
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/index.esm.js +3 -1
- package/package.json +3 -3
- package/src/generated/components.d.ts +3 -1
package/index.esm.js
CHANGED
|
@@ -171,7 +171,9 @@ var BalApp = /*@__PURE__*/ createComponent({
|
|
|
171
171
|
elementClass: BalApp$1,
|
|
172
172
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
173
173
|
react: React,
|
|
174
|
-
events: {
|
|
174
|
+
events: {
|
|
175
|
+
onBalAppReady: 'balAppReady'
|
|
176
|
+
},
|
|
175
177
|
defineCustomElement: defineCustomElement$4
|
|
176
178
|
});
|
|
177
179
|
var BalBadge = /*@__PURE__*/ createComponent({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baloise/ds-react",
|
|
3
|
-
"version": "19.8.
|
|
3
|
+
"version": "19.8.3",
|
|
4
4
|
"description": "The Baloise Design-System is an open source project for styling awesome web applications that follow the Baloise corporate styling guidelines.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"homepage": "https://design.baloise.dev",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@baloise/ds-core": "19.8.
|
|
16
|
-
"@stencil/react-output-target": "1.0
|
|
15
|
+
"@baloise/ds-core": "19.8.3",
|
|
16
|
+
"@stencil/react-output-target": "1.2.0"
|
|
17
17
|
},
|
|
18
18
|
"module": "./index.esm.js",
|
|
19
19
|
"type": "module",
|
|
@@ -133,7 +133,9 @@ export type BalAccordionSummaryEvents = NonNullable<unknown>;
|
|
|
133
133
|
export declare const BalAccordionSummary: StencilReactComponent<BalAccordionSummaryElement, BalAccordionSummaryEvents>;
|
|
134
134
|
export type BalAccordionTriggerEvents = NonNullable<unknown>;
|
|
135
135
|
export declare const BalAccordionTrigger: StencilReactComponent<BalAccordionTriggerElement, BalAccordionTriggerEvents>;
|
|
136
|
-
export type BalAppEvents =
|
|
136
|
+
export type BalAppEvents = {
|
|
137
|
+
onBalAppReady: EventName<CustomEvent<void>>;
|
|
138
|
+
};
|
|
137
139
|
export declare const BalApp: StencilReactComponent<BalAppElement, BalAppEvents>;
|
|
138
140
|
export type BalBadgeEvents = NonNullable<unknown>;
|
|
139
141
|
export declare const BalBadge: StencilReactComponent<BalBadgeElement, BalBadgeEvents>;
|