@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.
- package/assets/css/carbon.scss +6 -2
- package/fesm2022/valtimo-components.mjs +642 -209
- package/fesm2022/valtimo-components.mjs.map +1 -1
- package/lib/components/bpmn-js-diagram/bpmn-js-diagram.component.d.ts.map +1 -1
- package/lib/components/breadcrumb-navigation/breadcrumb.service.d.ts +3 -0
- package/lib/components/breadcrumb-navigation/breadcrumb.service.d.ts.map +1 -1
- package/lib/components/carbon-list/carbon-list.component.d.ts.map +1 -1
- package/lib/components/color-picker/color-picker.component.d.ts +42 -0
- package/lib/components/color-picker/color-picker.component.d.ts.map +1 -0
- package/lib/components/menu/services/menu.service.d.ts +1 -0
- package/lib/components/menu/services/menu.service.d.ts.map +1 -1
- package/lib/components/page-subtitle/page-subtitle.component.d.ts.map +1 -1
- package/lib/components/page-title/page-title.component.d.ts +1 -1
- package/lib/components/page-title/page-title.component.d.ts.map +1 -1
- package/lib/components/right-sidebar/right-sidebar.component.d.ts +6 -6
- package/lib/components/right-sidebar/right-sidebar.component.d.ts.map +1 -1
- package/lib/components/topbar/topbar.component.d.ts +6 -3
- package/lib/components/topbar/topbar.component.d.ts.map +1 -1
- package/lib/constants/components.test-ids.d.ts +5 -0
- package/lib/constants/components.test-ids.d.ts.map +1 -1
- package/lib/directives/muuri/muuri.directive.d.ts +21 -2
- package/lib/directives/muuri/muuri.directive.d.ts.map +1 -1
- package/lib/models/admin-settings.model.d.ts +12 -0
- package/lib/models/admin-settings.model.d.ts.map +1 -0
- package/lib/models/color-picker.model.d.ts +17 -0
- package/lib/models/color-picker.model.d.ts.map +1 -0
- package/lib/models/index.d.ts +2 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/services/admin-settings.service.d.ts +35 -0
- package/lib/services/admin-settings.service.d.ts.map +1 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/index.d.ts.map +1 -1
- package/lib/services/page-header.service.d.ts +1 -1
- package/lib/services/page-header.service.d.ts.map +1 -1
- package/package.json +3 -2
- package/public_api.d.ts +1 -0
- package/public_api.d.ts.map +1 -1
package/assets/css/carbon.scss
CHANGED
|
@@ -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
|
|
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 '
|
|
125
|
+
@import 'node_modules/@carbon/charts-angular/styles.min.css';
|
|
122
126
|
|
|
123
127
|
/* default Valtimo colors */
|
|
124
128
|
|