@praxisui/core 9.0.4-rc.32 → 9.0.4-rc.34
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/ai/component-registry.json +6 -6
- package/fesm2022/praxisui-core.mjs +1161 -1054
- package/package.json +1 -1
- package/types/praxisui-core.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/core",
|
|
3
|
-
"version": "9.0.4-rc.
|
|
3
|
+
"version": "9.0.4-rc.34",
|
|
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",
|
package/types/praxisui-core.d.ts
CHANGED
|
@@ -2696,6 +2696,11 @@ interface ToolbarConfig {
|
|
|
2696
2696
|
columnsVisibility?: {
|
|
2697
2697
|
enabled?: boolean;
|
|
2698
2698
|
};
|
|
2699
|
+
/** Controle governado para alternar a densidade visual da tabela em runtime. */
|
|
2700
|
+
densityToggle?: {
|
|
2701
|
+
enabled?: boolean;
|
|
2702
|
+
values?: TableToolbarAppearanceDensity[];
|
|
2703
|
+
};
|
|
2699
2704
|
}
|
|
2700
2705
|
type TableToolbarAppearanceVariant = 'flat' | 'outlined' | 'elevated' | 'integrated';
|
|
2701
2706
|
type TableToolbarAppearanceDensity = 'compact' | 'comfortable' | 'spacious';
|
|
@@ -14762,9 +14767,11 @@ declare class NestedWidgetConfigAccessor {
|
|
|
14762
14767
|
listNestedWidgets(owner: WidgetInstance): NestedWidgetResolution[];
|
|
14763
14768
|
resolveNestedWidget(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined): WidgetDefinition | undefined;
|
|
14764
14769
|
setNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string, value: unknown): NestedWidgetInputPatchResult;
|
|
14770
|
+
removeNestedWidgetInput(owner: WidgetInstance, nestedPath: ComponentPortPathSegment[] | undefined, inputName: string): NestedWidgetInputPatchResult;
|
|
14765
14771
|
private listNestedWidgetsInDefinition;
|
|
14766
14772
|
private resolveNestedWidgetInDefinition;
|
|
14767
14773
|
private setNestedWidgetInputInDefinition;
|
|
14774
|
+
private removeNestedWidgetInputInDefinition;
|
|
14768
14775
|
private listChildWidgetLocations;
|
|
14769
14776
|
private listTabsWidgetLocations;
|
|
14770
14777
|
private listExpansionWidgetLocations;
|