@valtimo/components 13.26.0 → 13.28.0

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 (37) hide show
  1. package/assets/css/carbon.scss +6 -2
  2. package/fesm2022/valtimo-components.mjs +642 -209
  3. package/fesm2022/valtimo-components.mjs.map +1 -1
  4. package/lib/components/bpmn-js-diagram/bpmn-js-diagram.component.d.ts.map +1 -1
  5. package/lib/components/breadcrumb-navigation/breadcrumb.service.d.ts +3 -0
  6. package/lib/components/breadcrumb-navigation/breadcrumb.service.d.ts.map +1 -1
  7. package/lib/components/carbon-list/carbon-list.component.d.ts.map +1 -1
  8. package/lib/components/color-picker/color-picker.component.d.ts +42 -0
  9. package/lib/components/color-picker/color-picker.component.d.ts.map +1 -0
  10. package/lib/components/menu/services/menu.service.d.ts +1 -0
  11. package/lib/components/menu/services/menu.service.d.ts.map +1 -1
  12. package/lib/components/page-subtitle/page-subtitle.component.d.ts.map +1 -1
  13. package/lib/components/page-title/page-title.component.d.ts +1 -1
  14. package/lib/components/page-title/page-title.component.d.ts.map +1 -1
  15. package/lib/components/right-sidebar/right-sidebar.component.d.ts +6 -6
  16. package/lib/components/right-sidebar/right-sidebar.component.d.ts.map +1 -1
  17. package/lib/components/topbar/topbar.component.d.ts +6 -3
  18. package/lib/components/topbar/topbar.component.d.ts.map +1 -1
  19. package/lib/constants/components.test-ids.d.ts +5 -0
  20. package/lib/constants/components.test-ids.d.ts.map +1 -1
  21. package/lib/directives/muuri/muuri.directive.d.ts +21 -2
  22. package/lib/directives/muuri/muuri.directive.d.ts.map +1 -1
  23. package/lib/models/admin-settings.model.d.ts +12 -0
  24. package/lib/models/admin-settings.model.d.ts.map +1 -0
  25. package/lib/models/color-picker.model.d.ts +17 -0
  26. package/lib/models/color-picker.model.d.ts.map +1 -0
  27. package/lib/models/index.d.ts +2 -0
  28. package/lib/models/index.d.ts.map +1 -1
  29. package/lib/services/admin-settings.service.d.ts +35 -0
  30. package/lib/services/admin-settings.service.d.ts.map +1 -0
  31. package/lib/services/index.d.ts +1 -0
  32. package/lib/services/index.d.ts.map +1 -1
  33. package/lib/services/page-header.service.d.ts +1 -1
  34. package/lib/services/page-header.service.d.ts.map +1 -1
  35. package/package.json +3 -2
  36. package/public_api.d.ts +1 -0
  37. package/public_api.d.ts.map +1 -1
@@ -14,6 +14,10 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
+ @use 'sass:map';
18
+ @use '@carbon/styles/scss/config' with (
19
+ $font-path: '@ibm/plex'
20
+ );
17
21
  @use '@carbon/styles/scss/themes';
18
22
  @use '@carbon/colors';
19
23
 
@@ -90,7 +94,7 @@ $darkThemeOverwriteVariables: (
90
94
  );
91
95
 
92
96
  @use '@carbon/styles/scss/theme' with (
93
- $theme: map-merge(themes.$g10, $lightThemeOverwriteVariables)
97
+ $theme: map.merge(themes.$g10, $lightThemeOverwriteVariables)
94
98
  );
95
99
 
96
100
  @use '@carbon/styles/scss/components/button/tokens' as button-tokens with (
@@ -118,7 +122,7 @@ $darkThemeOverwriteVariables: (
118
122
  }
119
123
  }
120
124
 
121
- @import '~node_modules/@carbon/charts-angular/styles.min.css';
125
+ @import 'node_modules/@carbon/charts-angular/styles.min.css';
122
126
 
123
127
  /* default Valtimo colors */
124
128