@valtimo/components 13.43.0 → 13.45.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 +2 -2
- package/fesm2022/valtimo-components.mjs +305 -62
- package/fesm2022/valtimo-components.mjs.map +1 -1
- package/lib/components/breadcrumb-navigation/breadcrumb.service.d.ts +1 -0
- package/lib/components/breadcrumb-navigation/breadcrumb.service.d.ts.map +1 -1
- package/lib/components/confirmation-modal/confirmation-modal.component.d.ts +2 -0
- package/lib/components/confirmation-modal/confirmation-modal.component.d.ts.map +1 -1
- package/lib/components/form-io/components/form-io-currency/currency.component.d.ts +1 -0
- package/lib/components/form-io/components/form-io-currency/currency.component.d.ts.map +1 -1
- package/lib/components/form-io/components/form-io-mail-preview/mail-preview-edit-form.d.ts +56 -0
- package/lib/components/form-io/components/form-io-mail-preview/mail-preview-edit-form.d.ts.map +1 -0
- package/lib/components/form-io/components/form-io-mail-preview/mail-preview.component.d.ts +18 -0
- package/lib/components/form-io/components/form-io-mail-preview/mail-preview.component.d.ts.map +1 -0
- package/lib/components/form-io/components/form-io-mail-preview/mail-preview.formio.d.ts +3 -0
- package/lib/components/form-io/components/form-io-mail-preview/mail-preview.formio.d.ts.map +1 -0
- package/lib/components/form-io/form-io.module.d.ts +14 -13
- package/lib/components/form-io/form-io.module.d.ts.map +1 -1
- package/lib/components/multi-input/carbon-multi-input.component.d.ts +5 -0
- package/lib/components/multi-input/carbon-multi-input.component.d.ts.map +1 -1
- package/lib/components/multi-input/components/arbitrary-amount-value/arbitrary-amount-value.component.d.ts +1 -0
- package/lib/components/multi-input/components/arbitrary-amount-value/arbitrary-amount-value.component.d.ts.map +1 -1
- package/lib/components/schema-editor/schema-editor.component.d.ts +14 -1
- package/lib/components/schema-editor/schema-editor.component.d.ts.map +1 -1
- package/lib/components/search-fields/search-fields.component.d.ts +8 -0
- package/lib/components/search-fields/search-fields.component.d.ts.map +1 -1
- package/lib/components/value-path-selector/value-path-selector.component.d.ts +2 -0
- package/lib/components/value-path-selector/value-path-selector.component.d.ts.map +1 -1
- package/lib/constants/components.test-ids.d.ts +49 -0
- package/lib/constants/components.test-ids.d.ts.map +1 -1
- package/lib/models/choice-field.model.d.ts +4 -13
- package/lib/models/choice-field.model.d.ts.map +1 -1
- package/lib/services/value-path-selector.service.d.ts +0 -2
- package/lib/services/value-path-selector.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/public_api.d.ts +2 -0
- package/public_api.d.ts.map +1 -1
package/assets/css/carbon.scss
CHANGED
|
@@ -109,6 +109,8 @@ $darkThemeOverwriteVariables: (
|
|
|
109
109
|
|
|
110
110
|
@use '@carbon/styles';
|
|
111
111
|
@use '@carbon/grid';
|
|
112
|
+
/* @use so the path resolves here, not in the consuming app; aliased to avoid a namespace clash */
|
|
113
|
+
@use '@carbon/charts-angular/styles.min.css' as chart-styles;
|
|
112
114
|
@include grid.flex-grid();
|
|
113
115
|
|
|
114
116
|
/* Extended tag colours, beyond the ten colours Carbon ships for tags. They follow Carbon's own tag
|
|
@@ -201,8 +203,6 @@ $extendedTagColors: (
|
|
|
201
203
|
}
|
|
202
204
|
}
|
|
203
205
|
|
|
204
|
-
@import 'node_modules/@carbon/charts-angular/styles.min.css';
|
|
205
|
-
|
|
206
206
|
/* default Valtimo colors */
|
|
207
207
|
|
|
208
208
|
:root {
|