@praxisui/core 9.0.0-beta.78 → 9.0.0-beta.79

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "generatedAt": "2026-07-19T03:55:15.480Z",
3
+ "generatedAt": "2026-07-19T20:13:41.218Z",
4
4
  "packageName": "@praxisui/core",
5
- "packageVersion": "9.0.0-beta.78",
5
+ "packageVersion": "9.0.0-beta.79",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 4,
@@ -7206,6 +7206,9 @@ class ComponentMetadataRegistry {
7206
7206
  /** Register a component metadata entry. */
7207
7207
  register(meta) {
7208
7208
  const normalized = this.normalizeMeta(meta);
7209
+ if (this.rawMetadataMap.get(normalized.id) === meta) {
7210
+ return;
7211
+ }
7209
7212
  this.assertCanRegisterMetadata(normalized);
7210
7213
  this.rawMetadataMap.set(normalized.id, meta);
7211
7214
  this.metadataMap.set(normalized.id, normalized);
@@ -39801,8 +39804,17 @@ class ResourceQuickConnectComponent {
39801
39804
  isBusy$ = new BehaviorSubject(false);
39802
39805
  // Values are provided via Inputs by the opener; no DI data coupling required.
39803
39806
  // When used standalone, consumers can bind [(resourcePath)].
39807
+ ngOnInit() {
39808
+ this.updateValidity();
39809
+ }
39810
+ ngOnChanges() {
39811
+ this.updateValidity();
39812
+ }
39804
39813
  updateState() {
39805
39814
  this.isDirty$.next(true);
39815
+ this.updateValidity();
39816
+ }
39817
+ updateValidity() {
39806
39818
  const trimmed = this.resourcePath?.trim() || '';
39807
39819
  this.isValid$.next(!!trimmed && this.isValidPath(trimmed));
39808
39820
  }
@@ -39832,7 +39844,7 @@ class ResourceQuickConnectComponent {
39832
39844
  return /^\/?[a-zA-Z0-9][a-zA-Z0-9/_-]*$/.test(value);
39833
39845
  }
39834
39846
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.14", ngImport: i0, type: ResourceQuickConnectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
39835
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.14", type: ResourceQuickConnectComponent, isStandalone: true, selector: "praxis-resource-quick-connect", inputs: { resourcePath: "resourcePath" }, ngImport: i0, template: `
39847
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.2.14", type: ResourceQuickConnectComponent, isStandalone: true, selector: "praxis-resource-quick-connect", inputs: { resourcePath: "resourcePath" }, usesOnChanges: true, ngImport: i0, template: `
39836
39848
  <div class="pdx-quick-connect">
39837
39849
  <mat-form-field appearance="outline">
39838
39850
  <mat-label>Rota do recurso (API)</mat-label>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "9.0.0-beta.78",
3
+ "version": "9.0.0-beta.79",
4
4
  "description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
@@ -15573,12 +15573,15 @@ declare class EmptyStateCardComponent {
15573
15573
  static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateCardComponent, "praxis-empty-state-card", never, { "icon": { "alias": "icon"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "density": { "alias": "density"; "required": false; }; "iconContainer": { "alias": "iconContainer"; "required": false; }; }, {}, never, never, true, never>;
15574
15574
  }
15575
15575
 
15576
- declare class ResourceQuickConnectComponent implements SettingsValueProvider {
15576
+ declare class ResourceQuickConnectComponent implements SettingsValueProvider, OnChanges, OnInit {
15577
15577
  resourcePath: string;
15578
15578
  isDirty$: BehaviorSubject<boolean>;
15579
15579
  isValid$: BehaviorSubject<boolean>;
15580
15580
  isBusy$: BehaviorSubject<boolean>;
15581
+ ngOnInit(): void;
15582
+ ngOnChanges(): void;
15581
15583
  updateState(): void;
15584
+ private updateValidity;
15582
15585
  getSettingsValue(): any;
15583
15586
  onSave(): any;
15584
15587
  showInvalid(): boolean;