@baloise/ds-react 18.3.0-nightly.20250508 → 18.3.0-snapshot.1691-bc0c425f1
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.cjs.js +2 -2
- package/index.esm.js +2 -2
- package/package.json +2 -2
package/index.cjs.js
CHANGED
|
@@ -96,7 +96,7 @@ var camelToDashCase = function(str) {
|
|
|
96
96
|
};
|
|
97
97
|
|
|
98
98
|
var attachProps = function(node, newProps, oldProps) {
|
|
99
|
-
if (oldProps ===
|
|
99
|
+
if (oldProps === void 0) oldProps = {};
|
|
100
100
|
// some test frameworks don't render DOM elements, so we test here to make sure we are dealing with DOM first
|
|
101
101
|
if (_instanceof1(node, Element)) {
|
|
102
102
|
// add any classes in className to the class list
|
|
@@ -401,7 +401,7 @@ var BalToast = /*@__PURE__*/ createReactComponent('bal-toast');
|
|
|
401
401
|
var BalTooltip = /*@__PURE__*/ createReactComponent('bal-tooltip');
|
|
402
402
|
|
|
403
403
|
var useBaloiseDesignSystem = function(config) {
|
|
404
|
-
if (config ===
|
|
404
|
+
if (config === void 0) config = {};
|
|
405
405
|
dsCore.initialize(_extends({}, config.defaults, {
|
|
406
406
|
httpFormSubmit: false
|
|
407
407
|
}));
|
package/index.esm.js
CHANGED
|
@@ -94,7 +94,7 @@ var camelToDashCase = function(str) {
|
|
|
94
94
|
};
|
|
95
95
|
|
|
96
96
|
var attachProps = function(node, newProps, oldProps) {
|
|
97
|
-
if (oldProps ===
|
|
97
|
+
if (oldProps === void 0) oldProps = {};
|
|
98
98
|
// some test frameworks don't render DOM elements, so we test here to make sure we are dealing with DOM first
|
|
99
99
|
if (_instanceof1(node, Element)) {
|
|
100
100
|
// add any classes in className to the class list
|
|
@@ -399,7 +399,7 @@ var BalToast = /*@__PURE__*/ createReactComponent('bal-toast');
|
|
|
399
399
|
var BalTooltip = /*@__PURE__*/ createReactComponent('bal-tooltip');
|
|
400
400
|
|
|
401
401
|
var useBaloiseDesignSystem = function(config) {
|
|
402
|
-
if (config ===
|
|
402
|
+
if (config === void 0) config = {};
|
|
403
403
|
initialize(_extends({}, config.defaults, {
|
|
404
404
|
httpFormSubmit: false
|
|
405
405
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baloise/ds-react",
|
|
3
|
-
"version": "18.3.0-
|
|
3
|
+
"version": "18.3.0-snapshot.1691-bc0c425f1",
|
|
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": "18.3.0-
|
|
15
|
+
"@baloise/ds-core": "18.3.0-snapshot.1691-bc0c425f1"
|
|
16
16
|
},
|
|
17
17
|
"module": "./index.esm.js",
|
|
18
18
|
"main": "./index.cjs.js",
|