@cqa-lib/cqa-ui 1.1.388 → 1.1.390

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.
@@ -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. */
@@ -56,6 +56,11 @@ export declare class CodeEditorComponent implements OnInit, OnChanges, OnDestroy
56
56
  dispose?: () => void;
57
57
  };
58
58
  }): void;
59
+ /** Configure Monaco JS/TS language defaults to allow top-level await.
60
+ * Sets module target to ESNext (enables top-level await as a module) and
61
+ * suppresses error code 1308 ("await is only valid in async functions") which
62
+ * Monaco incorrectly raises when code runs in an async context on the test runner. */
63
+ private configureMonacoForAsyncCode;
59
64
  private setupMarkersListener;
60
65
  get hasValidationErrors(): boolean;
61
66
  get hasErrors(): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.388",
3
+ "version": "1.1.390",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",