@praxisui/list 9.0.36 → 9.0.37

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-08-29T20:24:51.350Z",
3
+ "generatedAt": "2026-08-30T00:46:55.066Z",
4
4
  "packageName": "@praxisui/list",
5
- "packageVersion": "9.0.36",
5
+ "packageVersion": "9.0.37",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 1,
@@ -199,6 +199,81 @@
199
199
  "scope": "any"
200
200
  }
201
201
  ],
202
+ "ports": [
203
+ {
204
+ "id": "queryContext",
205
+ "label": "Query Context",
206
+ "direction": "input",
207
+ "semanticKind": "query-context",
208
+ "schema": {
209
+ "id": "PraxisDataQueryContext",
210
+ "kind": "ts-type",
211
+ "ref": "PraxisDataQueryContext"
212
+ },
213
+ "compatibility": {
214
+ "acceptsSemanticKinds": [
215
+ "query-context"
216
+ ],
217
+ "schemaMode": "structural"
218
+ },
219
+ "description": "Contexto declarativo de filtro, ordenação e paginação aplicado ao runtime remoto da lista.",
220
+ "exposure": {
221
+ "public": true,
222
+ "group": "data"
223
+ }
224
+ },
225
+ {
226
+ "id": "itemClick",
227
+ "label": "Item Click",
228
+ "direction": "output",
229
+ "semanticKind": "event",
230
+ "schema": {
231
+ "id": "ListItemEvent",
232
+ "kind": "ts-type",
233
+ "ref": "ListItemEvent"
234
+ },
235
+ "cardinality": "stream",
236
+ "description": "Evento emitido quando o usuário ativa um item da lista.",
237
+ "exposure": {
238
+ "public": true,
239
+ "group": "interaction"
240
+ }
241
+ },
242
+ {
243
+ "id": "actionClick",
244
+ "label": "Action Click",
245
+ "direction": "output",
246
+ "semanticKind": "event",
247
+ "schema": {
248
+ "id": "ListActionEvent",
249
+ "kind": "ts-type",
250
+ "ref": "ListActionEvent"
251
+ },
252
+ "cardinality": "stream",
253
+ "description": "Evento emitido quando uma ação declarada do item é acionada.",
254
+ "exposure": {
255
+ "public": true,
256
+ "group": "interaction"
257
+ }
258
+ },
259
+ {
260
+ "id": "selectionChange",
261
+ "label": "Selection Change",
262
+ "direction": "output",
263
+ "semanticKind": "event",
264
+ "schema": {
265
+ "id": "ListSelectionEvent",
266
+ "kind": "ts-type",
267
+ "ref": "ListSelectionEvent"
268
+ },
269
+ "cardinality": "stream",
270
+ "description": "Evento canônico de seleção com mode, value, items e ids conforme a configuração runtime.",
271
+ "exposure": {
272
+ "public": true,
273
+ "group": "selection"
274
+ }
275
+ }
276
+ ],
202
277
  "configEditor": {
203
278
  "component": "[ref:PraxisListWidgetConfigEditor]",
204
279
  "title": "Configure list"
@@ -15858,6 +15858,67 @@ function parseInlineStyle(inlineStyle) {
15858
15858
  return entries.length ? Object.fromEntries(entries) : undefined;
15859
15859
  }
15860
15860
 
15861
+ const PRAXIS_LIST_PORTS = [
15862
+ {
15863
+ id: 'queryContext',
15864
+ label: 'Query Context',
15865
+ direction: 'input',
15866
+ semanticKind: 'query-context',
15867
+ schema: {
15868
+ id: 'PraxisDataQueryContext',
15869
+ kind: 'ts-type',
15870
+ ref: 'PraxisDataQueryContext',
15871
+ },
15872
+ compatibility: {
15873
+ acceptsSemanticKinds: ['query-context'],
15874
+ schemaMode: 'structural',
15875
+ },
15876
+ description: 'Contexto declarativo de filtro, ordenação e paginação aplicado ao runtime remoto da lista.',
15877
+ exposure: { public: true, group: 'data' },
15878
+ },
15879
+ {
15880
+ id: 'itemClick',
15881
+ label: 'Item Click',
15882
+ direction: 'output',
15883
+ semanticKind: 'event',
15884
+ schema: {
15885
+ id: 'ListItemEvent',
15886
+ kind: 'ts-type',
15887
+ ref: 'ListItemEvent',
15888
+ },
15889
+ cardinality: 'stream',
15890
+ description: 'Evento emitido quando o usuário ativa um item da lista.',
15891
+ exposure: { public: true, group: 'interaction' },
15892
+ },
15893
+ {
15894
+ id: 'actionClick',
15895
+ label: 'Action Click',
15896
+ direction: 'output',
15897
+ semanticKind: 'event',
15898
+ schema: {
15899
+ id: 'ListActionEvent',
15900
+ kind: 'ts-type',
15901
+ ref: 'ListActionEvent',
15902
+ },
15903
+ cardinality: 'stream',
15904
+ description: 'Evento emitido quando uma ação declarada do item é acionada.',
15905
+ exposure: { public: true, group: 'interaction' },
15906
+ },
15907
+ {
15908
+ id: 'selectionChange',
15909
+ label: 'Selection Change',
15910
+ direction: 'output',
15911
+ semanticKind: 'event',
15912
+ schema: {
15913
+ id: 'ListSelectionEvent',
15914
+ kind: 'ts-type',
15915
+ ref: 'ListSelectionEvent',
15916
+ },
15917
+ cardinality: 'stream',
15918
+ description: 'Evento canônico de seleção com mode, value, items e ids conforme a configuração runtime.',
15919
+ exposure: { public: true, group: 'selection' },
15920
+ },
15921
+ ];
15861
15922
  const PRAXIS_LIST_COMPONENT_METADATA = {
15862
15923
  id: 'praxis-list',
15863
15924
  selector: 'praxis-list',
@@ -15968,6 +16029,7 @@ const PRAXIS_LIST_COMPONENT_METADATA = {
15968
16029
  { name: 'actionClick', type: 'ListActionEvent', description: 'Clique em ação de item' },
15969
16030
  { name: 'selectionChange', type: 'ListSelectionEvent', description: 'Mudança de seleção' },
15970
16031
  ],
16032
+ ports: PRAXIS_LIST_PORTS,
15971
16033
  actions: [
15972
16034
  {
15973
16035
  id: 'item-click',
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@praxisui/list",
3
- "version": "9.0.36",
3
+ "version": "9.0.37",
4
4
  "description": "List components and helpers for Praxis UI.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
7
7
  "@angular/core": "^21.0.0",
8
8
  "@angular/material": "^21.0.0",
9
- "@praxisui/dynamic-fields": "^9.0.36",
9
+ "@praxisui/dynamic-fields": "^9.0.37",
10
10
  "rxjs": ">=7 <9",
11
11
  "@angular/forms": "^21.0.0",
12
12
  "@angular/router": "^21.0.0",
13
- "@praxisui/ai": "^9.0.36",
14
- "@praxisui/core": "^9.0.36",
15
- "@praxisui/rich-content": "^9.0.36",
16
- "@praxisui/settings-panel": "^9.0.36"
13
+ "@praxisui/ai": "^9.0.37",
14
+ "@praxisui/core": "^9.0.37",
15
+ "@praxisui/rich-content": "^9.0.37",
16
+ "@praxisui/settings-panel": "^9.0.37"
17
17
  },
18
18
  "dependencies": {
19
19
  "tslib": "^2.3.0",