@cqa-lib/cqa-ui 1.1.388 → 1.1.389
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/add-prerequisite-cases-section/add-prerequisite-cases-section.component.mjs +11 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +11 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +10 -2
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/add-prerequisite-cases-section/add-prerequisite-cases-section.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -106,6 +106,8 @@ export declare class AddPrerequisiteCasesSectionComponent {
|
|
|
106
106
|
key: string;
|
|
107
107
|
value: unknown;
|
|
108
108
|
}, index: number): void;
|
|
109
|
+
/** True when the row at the given index has a selected value */
|
|
110
|
+
rowHasValue(index: number): boolean;
|
|
109
111
|
/** True when every row has a non-empty value (no placeholders) */
|
|
110
112
|
allRowsHaveValues(): boolean;
|
|
111
113
|
/** Computed disabled state for Update button. When isUpdating we do not disable (show loader only); use updateDisabled for other cases. */
|