@praxisui/settings-panel 8.0.0-beta.105 → 8.0.0-beta.106
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/README.md +22 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -61,9 +61,30 @@ last_updated: "2026-04-03"
|
|
|
61
61
|
## Instalacao
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
|
-
npm i @praxisui/settings-panel
|
|
64
|
+
npm i @praxisui/settings-panel@beta
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
+
## Minimal standalone content component
|
|
68
|
+
|
|
69
|
+
```ts
|
|
70
|
+
import { Component } from '@angular/core';
|
|
71
|
+
import { SettingsValueProvider } from '@praxisui/settings-panel';
|
|
72
|
+
|
|
73
|
+
@Component({
|
|
74
|
+
selector: 'app-settings-content',
|
|
75
|
+
standalone: true,
|
|
76
|
+
template: `<p>Settings content</p>`,
|
|
77
|
+
})
|
|
78
|
+
export class SettingsContentComponent implements SettingsValueProvider {
|
|
79
|
+
getSettingsValue(): unknown {
|
|
80
|
+
return {};
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Open this standalone content with `SettingsPanelService.open(...)`; the host
|
|
86
|
+
observes `SettingsPanelRef.applied$` and `saved$` to apply or persist changes.
|
|
87
|
+
|
|
67
88
|
Peer dependencies (Angular v20):
|
|
68
89
|
|
|
69
90
|
- `@angular/core` `^20.0.0`
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/settings-panel",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.106",
|
|
4
4
|
"description": "Settings panel for Praxis UI libraries: open editors for configuration at runtime and persist settings.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
8
|
"@angular/cdk": "^21.0.0",
|
|
9
9
|
"@angular/material": "^21.0.0",
|
|
10
|
-
"@praxisui/ai": "^8.0.0-beta.
|
|
11
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
12
|
-
"@praxisui/dynamic-fields": "^8.0.0-beta.
|
|
10
|
+
"@praxisui/ai": "^8.0.0-beta.106",
|
|
11
|
+
"@praxisui/core": "^8.0.0-beta.106",
|
|
12
|
+
"@praxisui/dynamic-fields": "^8.0.0-beta.106",
|
|
13
13
|
"rxjs": "~7.8.0"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|