@praxisui/settings-panel 9.0.0-beta.3 → 9.0.0-beta.31
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 +5 -42
- package/ai/component-registry.json +1145 -0
- package/fesm2022/praxisui-settings-panel.mjs +72 -11
- package/package.json +9 -5
- package/types/praxisui-settings-panel.d.ts +10 -2
package/README.md
CHANGED
|
@@ -1,44 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: "Settings Panel"
|
|
3
|
-
slug: "settings-panel-overview"
|
|
4
|
-
description: "Visao geral do @praxisui/settings-panel, incluindo shell autoral, drawer runtime e infraestrutura base de side panel."
|
|
5
|
-
doc_type: "reference"
|
|
6
|
-
document_kind: "component-overview"
|
|
7
|
-
component: "settings-panel"
|
|
8
|
-
category: "components"
|
|
9
|
-
audience:
|
|
10
|
-
- "frontend"
|
|
11
|
-
- "host"
|
|
12
|
-
- "architect"
|
|
13
|
-
level: "intermediate"
|
|
14
|
-
status: "active"
|
|
15
|
-
owner: "praxis-ui"
|
|
16
|
-
tags:
|
|
17
|
-
- "settings-panel"
|
|
18
|
-
- "drawer"
|
|
19
|
-
- "config-editor"
|
|
20
|
-
- "surface-open"
|
|
21
|
-
- "ux"
|
|
22
|
-
order: 39
|
|
23
|
-
icon: "settings"
|
|
24
|
-
toc: true
|
|
25
|
-
sidebar: true
|
|
26
|
-
search_boost: 0.9
|
|
27
|
-
reading_time: 11
|
|
28
|
-
estimated_setup_time: 15
|
|
29
|
-
version: "1.0"
|
|
30
|
-
related_docs:
|
|
31
|
-
- "host-settings-panel-integration"
|
|
32
|
-
- "consumer-integration-quickstart"
|
|
33
|
-
- "host-integration-guide"
|
|
34
|
-
keywords:
|
|
35
|
-
- "praxis settings panel"
|
|
36
|
-
- "drawer editor"
|
|
37
|
-
- "settings value provider"
|
|
38
|
-
- "surface drawer bridge"
|
|
39
|
-
last_updated: "2026-04-03"
|
|
40
|
-
---
|
|
41
|
-
|
|
42
1
|
# @praxisui/settings-panel
|
|
43
2
|
|
|
44
3
|
`@praxisui/settings-panel` publica duas camadas complementares:
|
|
@@ -97,13 +56,15 @@ Peer dependencies (Angular v21):
|
|
|
97
56
|
- `@angular/common` `^21.0.0`
|
|
98
57
|
- `@angular/cdk` `^21.0.0`
|
|
99
58
|
- `@angular/material` `^21.0.0`
|
|
100
|
-
- `@praxisui/dynamic-fields` `^9.0.0-beta.
|
|
59
|
+
- `@praxisui/dynamic-fields` `^9.0.0-beta.12`
|
|
101
60
|
|
|
102
61
|
## Contrato visual do shell
|
|
103
62
|
|
|
104
63
|
- O shell autoral do `@praxisui/settings-panel` nao depende mais de `:host ::ng-deep` para estilizar o overlay real do CDK.
|
|
105
64
|
- A lib aplica `backdrop` e `pane` pela propria superficie global, usando `.praxis-settings-panel-backdrop` e `.praxis-settings-panel-pane`.
|
|
106
65
|
- O conteudo interno do painel continua namespaced sob `praxis-settings-panel`, evitando que o host precise aplicar CSS estrutural ad hoc.
|
|
66
|
+
- O body do painel limita a largura dos editores hospedados e oculta overflow horizontal estrutural; editores densos devem criar scroll ou quebra dentro da propria superficie, nao alargar o drawer.
|
|
67
|
+
- O body tambem publica scroll padding vertical para que controles focados em editores longos nao fiquem sob o header ou o footer fixos; ajuste esse espaco por token quando o host alterar alturas ou densidade do shell.
|
|
107
68
|
- Quando o host nao publica tokens `--md-sys-color-*`, a lib usa fallbacks internos para superficie, texto, borda e scrim. Isso evita drawers transparentes em hosts que publicam apenas tokens proprios.
|
|
108
69
|
- Hosts devem tratar esses fallbacks como baseline operacional; customizacao visual continua sendo opt-in por token ou por classes canonicas da lib, nao por override local do app consumidor.
|
|
109
70
|
|
|
@@ -145,6 +106,8 @@ Peer dependencies (Angular v21):
|
|
|
145
106
|
- `--pfx-settings-panel-header-height`
|
|
146
107
|
- `--pfx-settings-panel-body-padding`
|
|
147
108
|
- `--pfx-settings-panel-footer-padding`
|
|
109
|
+
- `--pfx-settings-panel-scroll-padding-start`
|
|
110
|
+
- `--pfx-settings-panel-scroll-padding-end`
|
|
148
111
|
- `--pfx-backdrop`
|
|
149
112
|
- `--pfx-backdrop-blur`
|
|
150
113
|
|