@praxisui/expansion 3.0.0-beta.9 → 5.0.0-beta.0
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 +3 -3
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { OnChanges, OnInit, EventEmitter, QueryList, SimpleChanges, Provider } from '@angular/core';
|
|
3
3
|
import { FormGroup } from '@angular/forms';
|
|
4
4
|
import { MatAccordionDisplayMode, MatAccordionTogglePosition, MatExpansionPanelDefaultOptions, MatAccordion, MatExpansionPanel } from '@angular/material/expansion';
|
|
5
|
-
import { FieldMetadata, WidgetDefinition, WidgetEventEnvelope, ComponentDocMeta, AiCapabilityCategory, AiValueKind,
|
|
5
|
+
import { AiCapability, FieldMetadata, WidgetDefinition, WidgetEventEnvelope, ComponentDocMeta, AiCapabilityCategory, AiValueKind, AiCapabilityCatalog } from '@praxisui/core';
|
|
6
6
|
import { BehaviorSubject } from 'rxjs';
|
|
7
|
-
import { BaseAiAdapter,
|
|
7
|
+
import { BaseAiAdapter, PatchResult } from '@praxisui/ai';
|
|
8
8
|
import { SettingsValueProvider } from '@praxisui/settings-panel';
|
|
9
9
|
|
|
10
10
|
declare class ExpansionAiAdapter extends BaseAiAdapter<ExpansionMetadata> {
|
|
@@ -12,7 +12,7 @@ declare class ExpansionAiAdapter extends BaseAiAdapter<ExpansionMetadata> {
|
|
|
12
12
|
componentName: string;
|
|
13
13
|
constructor(expansion: PraxisExpansion);
|
|
14
14
|
getCurrentConfig(): ExpansionMetadata;
|
|
15
|
-
getCapabilities():
|
|
15
|
+
getCapabilities(): AiCapability[];
|
|
16
16
|
getRuntimeState(): Record<string, any>;
|
|
17
17
|
createSnapshot(): ExpansionMetadata;
|
|
18
18
|
restoreSnapshot(snapshot: ExpansionMetadata): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/expansion",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-beta.0",
|
|
4
4
|
"description": "Expansion panel (accordion) components for Praxis UI with metadata configuration and editor integration.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
7
7
|
"@angular/core": "^20.0.0",
|
|
8
8
|
"@angular/material": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
|
10
|
-
"@praxisui/core": "^
|
|
11
|
-
"@praxisui/dynamic-fields": "^
|
|
12
|
-
"@praxisui/settings-panel": "^
|
|
10
|
+
"@praxisui/core": "^5.0.0-beta.0",
|
|
11
|
+
"@praxisui/dynamic-fields": "^5.0.0-beta.0",
|
|
12
|
+
"@praxisui/settings-panel": "^5.0.0-beta.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"tslib": "^2.3.0"
|