structra-ui 0.2.43 → 0.2.45
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/package.json
CHANGED
package/types/structra-ui.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ChangeDetectorRef, Injector, DestroyRef, EventEmitter, OnChanges, OnInit, SimpleChanges, DoCheck, AfterViewInit, TemplateRef, OnDestroy, AfterContentInit, QueryList, ElementRef, Renderer2, Signal } from '@angular/core';
|
|
2
|
+
import { ChangeDetectorRef, Injector, DestroyRef, EventEmitter, OnChanges, OnInit, SimpleChanges, DoCheck, AfterViewInit, TemplateRef, OnDestroy, AfterContentInit, QueryList, ElementRef, Renderer2, Signal, ViewContainerRef } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor, AbstractControl, NgControl, ValidatorFn } from '@angular/forms';
|
|
4
4
|
import { MatDatepicker } from '@angular/material/datepicker';
|
|
5
5
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
6
|
-
import { ConnectedPosition, ScrollStrategy, OverlayRef } from '@angular/cdk/overlay';
|
|
6
|
+
import { ConnectedPosition, ScrollStrategy, OverlayRef, Overlay } from '@angular/cdk/overlay';
|
|
7
7
|
import { SafeResourceUrl } from '@angular/platform-browser';
|
|
8
8
|
import { ICellRendererParams, ColDef, GetRowIdParams, GridReadyEvent } from 'ag-grid-community';
|
|
9
9
|
import { ICellRendererAngularComp } from 'ag-grid-angular';
|
|
@@ -3013,7 +3013,8 @@ declare class ContextMenuComponent<T = string> implements OnDestroy {
|
|
|
3013
3013
|
private readonly cdr;
|
|
3014
3014
|
/** Igual a `[appTheme]` na lib; omitir = tema global. */
|
|
3015
3015
|
readonly appTheme: i0.InputSignal<"blue" | "green" | "purple" | "orange" | "white" | "gray" | "sepia" | "black" | AppTheme | undefined>;
|
|
3016
|
-
readonly effectiveThemeId:
|
|
3016
|
+
readonly effectiveThemeId: Signal<AppThemeId>;
|
|
3017
|
+
constructor(overlay: Overlay, vcr: ViewContainerRef, cdr: ChangeDetectorRef);
|
|
3017
3018
|
items: readonly MenuNodeItem<T>[];
|
|
3018
3019
|
disabled: boolean;
|
|
3019
3020
|
menuId: string;
|
|
@@ -3023,7 +3024,7 @@ declare class ContextMenuComponent<T = string> implements OnDestroy {
|
|
|
3023
3024
|
private overlayRef;
|
|
3024
3025
|
private escSub;
|
|
3025
3026
|
private readonly generatedId;
|
|
3026
|
-
readonly panelThemeNgClass:
|
|
3027
|
+
readonly panelThemeNgClass: Signal<{
|
|
3027
3028
|
[x: string]: boolean;
|
|
3028
3029
|
}>;
|
|
3029
3030
|
get resolvedMenuId(): string;
|