@porscheinformatik/clr-addons 13.4.3 → 13.4.4

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.
Files changed (40) hide show
  1. package/esm2020/multilingual/abstract-multilingual.mjs +5 -2
  2. package/fesm2015/clr-addons.mjs +4 -1
  3. package/fesm2015/clr-addons.mjs.map +1 -1
  4. package/fesm2020/clr-addons.mjs +4 -1
  5. package/fesm2020/clr-addons.mjs.map +1 -1
  6. package/package.json +1 -1
  7. package/src/back-button/back-button.scss +0 -7
  8. package/src/brand-avatar/brand-avatar.scss +0 -26
  9. package/src/breadcrumb/breadcrumb.scss +0 -21
  10. package/src/collapse-expand-section/collapse-expand-section.scss +0 -32
  11. package/src/components.clr-addons.scss +0 -408
  12. package/src/components.variables.clr-addons.scss +0 -43
  13. package/src/content-panel/content-panel.scss +0 -90
  14. package/src/datagrid/date-filter/date-filter.component.scss +0 -0
  15. package/src/datagrid/enum-filter/enum-filter.component.scss +0 -3
  16. package/src/date-time-container/date-time-container.scss +0 -18
  17. package/src/dot-pager/dot-pager.scss +0 -11
  18. package/src/flow-bar/flow-bar.scss +0 -95
  19. package/src/generic-quick-list/generic-quick-list.scss +0 -219
  20. package/src/header.clr-addons.scss +0 -377
  21. package/src/history/history.scss +0 -25
  22. package/src/letter-avatar/letter-avatar.scss +0 -27
  23. package/src/location-bar/location-bar-node/location-bar-node.component.scss +0 -55
  24. package/src/main-nav-group/main-nav-group.scss +0 -156
  25. package/src/mixins.scss +0 -38
  26. package/src/mobile.scss +0 -103
  27. package/src/multilingual/multilingual.scss +0 -39
  28. package/src/notification/notification.scss +0 -94
  29. package/src/numericfield/numeric-field.scss +0 -18
  30. package/src/paged-search-result-list/paged-search-result-list.scss +0 -10
  31. package/src/pager/pager.scss +0 -22
  32. package/src/progress-spinner/progress-spinner.scss +0 -15
  33. package/src/quick-list/quick-list.scss +0 -23
  34. package/src/searchfield/search-field.scss +0 -33
  35. package/src/themes/phs/css.overrides.scss +0 -148
  36. package/src/themes/phs/phs-theme.scss +0 -13
  37. package/src/themes/phs/theme.clarity.scss +0 -262
  38. package/src/themes/phs/variables.color.scss +0 -41
  39. package/src/treetable/treetable.scss +0 -338
  40. package/src/view-edit-section/view-edit-section.scss +0 -38
@@ -1530,7 +1530,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.8", ngImpor
1530
1530
  }] } });
1531
1531
 
1532
1532
  /*
1533
- * Copyright (c) 2018-2022 Porsche Informatik. All Rights Reserved.
1533
+ * Copyright (c) 2018-2023 Porsche Informatik. All Rights Reserved.
1534
1534
  * This software is released under MIT license.
1535
1535
  * The full license information can be found in LICENSE in the root directory of this project.
1536
1536
  */
@@ -1587,6 +1587,9 @@ class ClrMultilingualAbstract extends ClrAbstractFormComponent {
1587
1587
  if (!texts.get(lang) && lang !== currentlyEditingLang) {
1588
1588
  texts.set(lang, fallbackText);
1589
1589
  }
1590
+ else if (lang === currentlyEditingLang && texts.get(lang).startsWith(this.missingPrefix)) {
1591
+ texts.set(lang, texts.get(lang).replace(this.missingPrefix, ''));
1592
+ }
1590
1593
  }
1591
1594
  return texts;
1592
1595
  }