@baloise/ds-react 19.3.0-nightly.20250716 → 19.3.0-nightly.20250718
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 +4 -3
- package/package.json +2 -2
- package/src/index.d.ts +1 -1
package/index.esm.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { initializeBaloiseDesignSystem } from '@baloise/ds-core/components';
|
|
2
2
|
import { defineCustomElement as defineCustomElement$1, BalAccordionDetails as BalAccordionDetails$1 } from '@baloise/ds-core/components/bal-accordion-details.js';
|
|
3
3
|
import { defineCustomElement as defineCustomElement$2, BalAccordionSummary as BalAccordionSummary$1 } from '@baloise/ds-core/components/bal-accordion-summary.js';
|
|
4
4
|
import { defineCustomElement as defineCustomElement$3, BalAccordionTrigger as BalAccordionTrigger$1 } from '@baloise/ds-core/components/bal-accordion-trigger.js';
|
|
@@ -1241,8 +1241,9 @@ var BalTooltip = /*@__PURE__*/ createComponent({
|
|
|
1241
1241
|
|
|
1242
1242
|
var useBaloiseDesignSystem = function(config) {
|
|
1243
1243
|
if (config === undefined) config = {};
|
|
1244
|
-
|
|
1245
|
-
httpFormSubmit: false
|
|
1244
|
+
initializeBaloiseDesignSystem(_extends({}, config.defaults, {
|
|
1245
|
+
httpFormSubmit: false,
|
|
1246
|
+
_generateHydrateForCustomElementsOutput: true
|
|
1246
1247
|
}));
|
|
1247
1248
|
};
|
|
1248
1249
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baloise/ds-react",
|
|
3
|
-
"version": "19.3.0-nightly.
|
|
3
|
+
"version": "19.3.0-nightly.20250718",
|
|
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,7 +12,7 @@
|
|
|
12
12
|
"homepage": "https://design.baloise.dev",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@baloise/ds-core": "19.3.0-nightly.
|
|
15
|
+
"@baloise/ds-core": "19.3.0-nightly.20250718",
|
|
16
16
|
"@stencil/react-output-target": "1.0.4"
|
|
17
17
|
},
|
|
18
18
|
"module": "./index.esm.js",
|
package/src/index.d.ts
CHANGED