bernova 1.7.6 → 1.7.7
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/CHANGELOG.md +6 -0
- package/dist/src/lib/generateProvider/template/providerTemplate-link.js +1 -1
- package/dist/src/lib/generateProvider/template/providerTemplate-style.js +1 -1
- package/package.json +1 -1
- package/src/lib/generateProvider/template/providerTemplate-link.js +1 -1
- package/src/lib/generateProvider/template/providerTemplate-style.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -155,7 +155,7 @@ export class $_Provider_$ {
|
|
|
155
155
|
Object.entries(additionalClassNames).forEach(([key, value]) => {
|
|
156
156
|
if (!(key in structure)) {
|
|
157
157
|
structure[key] = value;
|
|
158
|
-
} else {
|
|
158
|
+
} else if (value) {
|
|
159
159
|
const existingValue = structure[key].split(' ');
|
|
160
160
|
const newValue = value.split(' ');
|
|
161
161
|
const combinedValues = Array.from(
|
|
@@ -140,7 +140,7 @@ export class $_Provider_$ {
|
|
|
140
140
|
Object.entries(additionalClassNames).forEach(([key, value]) => {
|
|
141
141
|
if (!(key in structure)) {
|
|
142
142
|
structure[key] = value;
|
|
143
|
-
} else {
|
|
143
|
+
} else if (value) {
|
|
144
144
|
const existingValue = structure[key].split(' ');
|
|
145
145
|
const newValue = value.split(' ');
|
|
146
146
|
const combinedValues = Array.from(
|
package/package.json
CHANGED
|
@@ -155,7 +155,7 @@ export class $_Provider_$ {
|
|
|
155
155
|
Object.entries(additionalClassNames).forEach(([key, value]) => {
|
|
156
156
|
if (!(key in structure)) {
|
|
157
157
|
structure[key] = value;
|
|
158
|
-
} else {
|
|
158
|
+
} else if (value) {
|
|
159
159
|
const existingValue = structure[key].split(' ');
|
|
160
160
|
const newValue = value.split(' ');
|
|
161
161
|
const combinedValues = Array.from(
|
|
@@ -140,7 +140,7 @@ export class $_Provider_$ {
|
|
|
140
140
|
Object.entries(additionalClassNames).forEach(([key, value]) => {
|
|
141
141
|
if (!(key in structure)) {
|
|
142
142
|
structure[key] = value;
|
|
143
|
-
} else {
|
|
143
|
+
} else if (value) {
|
|
144
144
|
const existingValue = structure[key].split(' ');
|
|
145
145
|
const newValue = value.split(' ');
|
|
146
146
|
const combinedValues = Array.from(
|