@cqa-lib/cqa-ui 1.1.465 → 1.1.466
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/esm2020/lib/dynamic-select/dynamic-select-field.component.mjs +2 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs +2 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/dynamic-select/dynamic-select-field.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1952,7 +1952,7 @@ class DynamicSelectFieldComponent {
|
|
|
1952
1952
|
}
|
|
1953
1953
|
}
|
|
1954
1954
|
get panelClass() {
|
|
1955
|
-
return `ctc-select-panel ${this.isMultiple ? 'multiple' : ''} ${this.config?.isCompareRuns ? 'compare-runs-select-panel' : ''}`.trim();
|
|
1955
|
+
return `ctc-select-panel ${this.isMultiple ? 'multiple' : ''} ${this.config?.isCompareRuns ? 'compare-runs-select-panel' : ''} ${this.config?.extraPanelClass ?? ''}`.trim();
|
|
1956
1956
|
}
|
|
1957
1957
|
get isMultiple() {
|
|
1958
1958
|
return this.toBoolean(this.config?.multiple);
|