@praxisui/dynamic-fields 3.0.0-beta.4 → 3.0.0-beta.5

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/index.d.ts CHANGED
@@ -1555,6 +1555,7 @@ declare class MaterialButtonComponent extends SimpleBaseButtonComponent implemen
1555
1555
  readonly tooltipText: _angular_core.Signal<string>;
1556
1556
  readonly validationLoadingAriaLabel: _angular_core.Signal<string>;
1557
1557
  readonly validationLoadingSrOnly: _angular_core.Signal<string>;
1558
+ private readonly syncKeyboardShortcutEffect;
1558
1559
  ngOnInit(): void;
1559
1560
  ngOnDestroy(): void;
1560
1561
  /**
@@ -1585,7 +1586,6 @@ declare class MaterialButtonComponent extends SimpleBaseButtonComponent implemen
1585
1586
  isDisabled: boolean;
1586
1587
  isIconOnly: boolean;
1587
1588
  };
1588
- private setupKeyboardShortcuts;
1589
1589
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialButtonComponent, never>;
1590
1590
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialButtonComponent, "pdx-material-button", never, {}, {}, never, never, true, never>;
1591
1591
  }
@@ -4654,7 +4654,7 @@ type IconInput = string | SafeHtml | {
4654
4654
  svg?: string;
4655
4655
  fontClass?: string;
4656
4656
  };
4657
- declare class MaterialAvatarComponent {
4657
+ declare class MaterialAvatarComponent implements OnChanges {
4658
4658
  private readonly sanitizer;
4659
4659
  private readonly elementRef;
4660
4660
  readonly metadata: _angular_core.WritableSignal<ComponentMetadata | null>;
@@ -4669,6 +4669,7 @@ declare class MaterialAvatarComponent {
4669
4669
  /** Fallback icon used when no image/icon/initials provided via inputs */
4670
4670
  defaultIcon?: IconInput;
4671
4671
  private readonly appearanceTick;
4672
+ private readonly contentTick;
4672
4673
  private _themeColor;
4673
4674
  private _rounded;
4674
4675
  private _size;
@@ -4734,6 +4735,7 @@ declare class MaterialAvatarComponent {
4734
4735
  iconName(): string | null;
4735
4736
  iconSvgSafe(): SafeHtml | null;
4736
4737
  iconFontClass(): string | null;
4738
+ ngOnChanges(_changes: SimpleChanges): void;
4737
4739
  setInputMetadata(meta: ComponentMetadata): void;
4738
4740
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialAvatarComponent, never>;
4739
4741
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialAvatarComponent, "pdx-material-avatar", never, { "imageSrc": { "alias": "imageSrc"; "required": false; }; "imageAlt": { "alias": "imageAlt"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "name": { "alias": "name"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "defaultIcon": { "alias": "defaultIcon"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "border": { "alias": "border"; "required": false; }; "sizePx": { "alias": "sizePx"; "required": false; }; "sizeCss": { "alias": "sizeCss"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; "class": { "alias": "class"; "required": false; }; "style": { "alias": "style"; "required": false; }; }, { "imageError": "imageError"; }, never, ["*"], true, never>;
@@ -5188,7 +5190,7 @@ interface PopupSettings {
5188
5190
  anchor?: Element;
5189
5191
  appendTo?: Element | unknown;
5190
5192
  }
5191
- declare class PdxColorPickerComponent extends SimpleBaseInputComponent implements ControlValueAccessor {
5193
+ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implements ControlValueAccessor, OnChanges {
5192
5194
  private readonly bottomSheet;
5193
5195
  actionsLayout: 'start' | 'end';
5194
5196
  activeView: PickerView;
@@ -5236,8 +5238,10 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
5236
5238
  private readonly current;
5237
5239
  private readonly draft;
5238
5240
  private readonly draftAlpha;
5241
+ private readonly configTick;
5239
5242
  panelWidthPx: number;
5240
5243
  constructor(bottomSheet: MatBottomSheet);
5244
+ ngOnChanges(_changes: SimpleChanges): void;
5241
5245
  private resolveClearButtonConfig;
5242
5246
  showClearAction(): boolean;
5243
5247
  clearActionTooltip(): string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "3.0.0-beta.4",
3
+ "version": "3.0.0-beta.5",
4
4
  "description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.1.0",
@@ -10,10 +10,10 @@
10
10
  "@angular/cdk": "^20.1.0",
11
11
  "@angular/router": "^20.1.0",
12
12
  "rxjs": "^7.8.0",
13
- "@praxisui/specification-core": "^3.0.0-beta.4",
14
- "@praxisui/core": "^3.0.0-beta.4",
15
- "@praxisui/cron-builder": "^3.0.0-beta.4",
16
- "@praxisui/dialog": "^3.0.0-beta.4"
13
+ "@praxisui/specification-core": "^3.0.0-beta.5",
14
+ "@praxisui/core": "^3.0.0-beta.5",
15
+ "@praxisui/cron-builder": "^3.0.0-beta.5",
16
+ "@praxisui/dialog": "^3.0.0-beta.5"
17
17
  },
18
18
  "dependencies": {
19
19
  "tslib": "^2.3.0"