@mosaicoo/kanban 0.2.0 → 0.3.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/fesm2022/mosaicoo-kanban-core.mjs +1 -1
- package/fesm2022/mosaicoo-kanban-designer.mjs +1931 -950
- package/fesm2022/mosaicoo-kanban-ui.mjs +666 -666
- package/package.json +1 -1
- package/types/mosaicoo-kanban-core.d.ts +1 -1
- package/types/mosaicoo-kanban-designer.d.ts +4 -2
- package/types/mosaicoo-kanban-ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mosaicoo/kanban",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Flexible board engine and Angular UI for Kanban-style visual organization — configurable columns, swimlanes and dynamic grouping, with a headless zero-dependency core.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/mosaicoo/mosaicoo-kanban#readme",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Mantida em sincronia com projects/kanban/package.json pelo processo de
|
|
5
5
|
* release (standard-version updater — mesmo mecanismo do @mosaicoo/svg-engine).
|
|
6
6
|
*/
|
|
7
|
-
declare const MKB_VERSION = "0.
|
|
7
|
+
declare const MKB_VERSION = "0.3.0";
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Modelo DECLARATIVO de cartão — serializável (docs/01 §4). O cartão é uma
|
|
@@ -68,8 +68,10 @@ declare class DesignerStore {
|
|
|
68
68
|
* Designer do Board — tela OPT-IN (entry point isolado
|
|
69
69
|
* `@mosaicoo/kanban/designer`): edita visualmente o BoardConfig (pipeline,
|
|
70
70
|
* cartão, dados, tema) com preview ao vivo e importa/exporta no formato que
|
|
71
|
-
* o kanban consome em runtime.
|
|
72
|
-
*
|
|
71
|
+
* o kanban consome em runtime.
|
|
72
|
+
*
|
|
73
|
+
* Visual: linguagem do Mosaicoo Design System (tela 13a dos Layouts). Os
|
|
74
|
+
* tokens caem no DS do host quando embarcado — ver designer.css.
|
|
73
75
|
*/
|
|
74
76
|
declare class MosKanbanDesigner implements OnDestroy {
|
|
75
77
|
protected readonly store: DesignerStore;
|
|
@@ -373,7 +373,7 @@ declare class MosKanbanBoard {
|
|
|
373
373
|
readonly dragStarted: _angular_core.OutputEmitterRef<KanbanDragInfo>;
|
|
374
374
|
readonly dragEnded: _angular_core.OutputEmitterRef<KanbanDragInfo>;
|
|
375
375
|
readonly dragCanceled: _angular_core.OutputEmitterRef<KanbanDragInfo>;
|
|
376
|
-
protected readonly version = "0.
|
|
376
|
+
protected readonly version = "0.3.0";
|
|
377
377
|
protected readonly cardDef: _angular_core.Signal<MosKanbanCardDef | undefined>;
|
|
378
378
|
protected readonly menu: _angular_core.WritableSignal<MenuState | null>;
|
|
379
379
|
/** Mensagem do aria-live (movimentos por teclado e recusas). */
|