pacem 0.53.0-kepler → 0.53.0-klein
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/dist/css/pacem-dark-content.min.css +1 -1
- package/dist/css/pacem-dark-shell.min.css +1 -1
- package/dist/css/pacem-dark.min.css +1 -1
- package/dist/css/pacem-light-content.min.css +1 -1
- package/dist/css/pacem-light-shell.min.css +1 -1
- package/dist/css/pacem-light.min.css +1 -1
- package/dist/css/pacem-phousys-content.min.css +1 -1
- package/dist/css/pacem-phousys-shell.min.css +1 -1
- package/dist/css/pacem-phousys.min.css +1 -1
- package/dist/js/azure-maps.d.ts +1 -1
- package/dist/js/pacem-2d.d.ts +1 -1
- package/dist/js/pacem-2d.js +1 -1
- package/dist/js/pacem-2d.min.js +1 -1
- package/dist/js/pacem-3d.d.ts +1 -1
- package/dist/js/pacem-3d.js +1 -1
- package/dist/js/pacem-3d.min.js +1 -1
- package/dist/js/pacem-charts.d.ts +1 -1
- package/dist/js/pacem-charts.js +1 -1
- package/dist/js/pacem-charts.min.js +1 -1
- package/dist/js/pacem-cms.d.ts +1 -1
- package/dist/js/pacem-cms.js +1 -1
- package/dist/js/pacem-cms.min.js +1 -1
- package/dist/js/pacem-core.d.ts +1 -1
- package/dist/js/pacem-core.js +1 -1
- package/dist/js/pacem-core.min.js +1 -1
- package/dist/js/pacem-foundation.d.ts +1 -1
- package/dist/js/pacem-foundation.js +1 -1
- package/dist/js/pacem-foundation.min.js +1 -1
- package/dist/js/pacem-fx.d.ts +1 -1
- package/dist/js/pacem-fx.js +1 -1
- package/dist/js/pacem-fx.min.js +1 -1
- package/dist/js/pacem-logging.d.ts +1 -1
- package/dist/js/pacem-logging.js +1 -1
- package/dist/js/pacem-logging.min.js +1 -1
- package/dist/js/pacem-maps.d.ts +1 -1
- package/dist/js/pacem-maps.js +1 -1
- package/dist/js/pacem-maps.min.js +1 -1
- package/dist/js/pacem-media.d.ts +1 -1
- package/dist/js/pacem-media.js +1 -1
- package/dist/js/pacem-media.min.js +1 -1
- package/dist/js/pacem-networking.d.ts +1 -1
- package/dist/js/pacem-networking.js +1 -1
- package/dist/js/pacem-networking.min.js +1 -1
- package/dist/js/pacem-numerical.d.ts +1 -1
- package/dist/js/pacem-numerical.js +1 -1
- package/dist/js/pacem-numerical.min.js +1 -1
- package/dist/js/pacem-plus.d.ts +1 -1
- package/dist/js/pacem-plus.js +1 -1
- package/dist/js/pacem-plus.min.js +1 -1
- package/dist/js/pacem-scaffolding.d.ts +1 -1
- package/dist/js/pacem-scaffolding.js +8 -5
- package/dist/js/pacem-scaffolding.min.js +2 -2
- package/dist/js/pacem-ui.d.ts +1 -1
- package/dist/js/pacem-ui.js +1 -1
- package/dist/js/pacem-ui.min.js +1 -1
- package/dist/js/swagger-types.d.ts +1 -1
- package/package.json +1 -1
package/dist/js/azure-maps.d.ts
CHANGED
package/dist/js/pacem-2d.d.ts
CHANGED
package/dist/js/pacem-2d.js
CHANGED
package/dist/js/pacem-2d.min.js
CHANGED
package/dist/js/pacem-3d.d.ts
CHANGED
package/dist/js/pacem-3d.js
CHANGED
package/dist/js/pacem-3d.min.js
CHANGED
package/dist/js/pacem-charts.js
CHANGED
package/dist/js/pacem-cms.d.ts
CHANGED
package/dist/js/pacem-cms.js
CHANGED
package/dist/js/pacem-cms.min.js
CHANGED
package/dist/js/pacem-core.d.ts
CHANGED
package/dist/js/pacem-core.js
CHANGED
package/dist/js/pacem-fx.d.ts
CHANGED
package/dist/js/pacem-fx.js
CHANGED
package/dist/js/pacem-fx.min.js
CHANGED
package/dist/js/pacem-logging.js
CHANGED
package/dist/js/pacem-maps.d.ts
CHANGED
package/dist/js/pacem-maps.js
CHANGED
package/dist/js/pacem-media.d.ts
CHANGED
package/dist/js/pacem-media.js
CHANGED
package/dist/js/pacem-plus.d.ts
CHANGED
package/dist/js/pacem-plus.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* pacem v0.53.0-
|
|
2
|
+
* pacem v0.53.0-klein (https://js.pacem.it)
|
|
3
3
|
* Copyright 2026 Pacem (https://pacem.it)
|
|
4
4
|
* Licensed under Apache-2.0
|
|
5
5
|
*/
|
|
@@ -541,8 +541,9 @@ var Pacem;
|
|
|
541
541
|
}
|
|
542
542
|
}
|
|
543
543
|
mapEntityToValue(entity) {
|
|
544
|
-
if (entity == null)
|
|
544
|
+
if (entity == null) {
|
|
545
545
|
throw 'entity cannot be null';
|
|
546
|
+
}
|
|
546
547
|
// declared
|
|
547
548
|
if (entity instanceof PacemDataItemElement) {
|
|
548
549
|
return entity.value;
|
|
@@ -569,8 +570,9 @@ var Pacem;
|
|
|
569
570
|
return viewValue;
|
|
570
571
|
}
|
|
571
572
|
mapEntityToItem(entity) {
|
|
572
|
-
if (entity == null)
|
|
573
|
+
if (entity == null) {
|
|
573
574
|
throw 'entity cannot be null';
|
|
575
|
+
}
|
|
574
576
|
// declared
|
|
575
577
|
if (entity instanceof PacemDataItemElement) {
|
|
576
578
|
return { value: entity.value, viewValue: entity.label || entity.value, disabled: entity.disabled, data: entity };
|
|
@@ -612,8 +614,9 @@ var Pacem;
|
|
|
612
614
|
return this.datasource.filter(i => this.isItemSelected(i)).map(i => this.mapEntityToViewValue(i)).join(', ');
|
|
613
615
|
}
|
|
614
616
|
convertValueAttributeToProperty(attr) {
|
|
615
|
-
if (this.multipleChoice)
|
|
617
|
+
if (this.multipleChoice) {
|
|
616
618
|
return attr.split(',').map(i => i.trim());
|
|
619
|
+
}
|
|
617
620
|
return attr;
|
|
618
621
|
}
|
|
619
622
|
compareValuePropertyValues(old, val) {
|
|
@@ -7698,7 +7701,7 @@ var Pacem;
|
|
|
7698
7701
|
buildAdaptedDatasource(ds = this.datasource) {
|
|
7699
7702
|
let adapted = super.buildAdaptedDatasource(ds);
|
|
7700
7703
|
if (adapted && this.emptyOption) {
|
|
7701
|
-
adapted.splice(0, 0, { viewValue: this.placeholder || '', value:
|
|
7704
|
+
adapted.splice(0, 0, { viewValue: this.placeholder || '', value: undefined, data: undefined });
|
|
7702
7705
|
}
|
|
7703
7706
|
return adapted;
|
|
7704
7707
|
}
|