@toolbox-web/grid 0.3.2 → 0.4.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/README.md +5 -4
- package/all.d.ts +19 -19
- package/all.d.ts.map +1 -1
- package/all.js +1775 -1202
- package/all.js.map +1 -1
- package/index.js +2143 -2015
- package/index.js.map +1 -1
- package/lib/core/grid.d.ts +22 -12
- package/lib/core/grid.d.ts.map +1 -1
- package/lib/core/internal/columns.d.ts +0 -9
- package/lib/core/internal/columns.d.ts.map +1 -1
- package/lib/core/internal/config-manager.d.ts +236 -0
- package/lib/core/internal/config-manager.d.ts.map +1 -0
- package/lib/core/internal/event-delegation.d.ts.map +1 -1
- package/lib/core/internal/header.d.ts.map +1 -1
- package/lib/core/internal/keyboard.d.ts.map +1 -1
- package/lib/core/internal/render-scheduler.d.ts +123 -0
- package/lib/core/internal/render-scheduler.d.ts.map +1 -0
- package/lib/core/internal/rows.d.ts +8 -3
- package/lib/core/internal/rows.d.ts.map +1 -1
- package/lib/core/internal/sanitize.d.ts +10 -2
- package/lib/core/internal/sanitize.d.ts.map +1 -1
- package/lib/core/internal/shell.d.ts +40 -2
- package/lib/core/internal/shell.d.ts.map +1 -1
- package/lib/core/internal/validate-config.d.ts +11 -0
- package/lib/core/internal/validate-config.d.ts.map +1 -0
- package/lib/core/plugin/base-plugin.d.ts +70 -0
- package/lib/core/plugin/base-plugin.d.ts.map +1 -1
- package/lib/core/plugin/plugin-manager.d.ts +13 -2
- package/lib/core/plugin/plugin-manager.d.ts.map +1 -1
- package/lib/core/plugin/types.d.ts +17 -3
- package/lib/core/plugin/types.d.ts.map +1 -1
- package/lib/core/types.d.ts +112 -12
- package/lib/core/types.d.ts.map +1 -1
- package/lib/plugins/clipboard/ClipboardPlugin.d.ts.map +1 -1
- package/lib/plugins/clipboard/index.js +50 -18
- package/lib/plugins/clipboard/index.js.map +1 -1
- package/lib/plugins/column-virtualization/index.js +60 -25
- package/lib/plugins/column-virtualization/index.js.map +1 -1
- package/lib/plugins/context-menu/index.js +51 -16
- package/lib/plugins/context-menu/index.js.map +1 -1
- package/lib/plugins/editing/EditingPlugin.d.ts +117 -0
- package/lib/plugins/editing/EditingPlugin.d.ts.map +1 -0
- package/lib/{core/internal → plugins/editing}/editors.d.ts +1 -1
- package/lib/plugins/editing/editors.d.ts.map +1 -0
- package/lib/plugins/editing/index.d.ts +8 -0
- package/lib/plugins/editing/index.d.ts.map +1 -0
- package/lib/plugins/editing/index.js +705 -0
- package/lib/plugins/editing/index.js.map +1 -0
- package/lib/plugins/editing/types.d.ts +45 -0
- package/lib/plugins/editing/types.d.ts.map +1 -0
- package/lib/plugins/export/ExportPlugin.d.ts.map +1 -1
- package/lib/plugins/export/index.js +74 -39
- package/lib/plugins/export/index.js.map +1 -1
- package/lib/plugins/filtering/FilteringPlugin.d.ts.map +1 -1
- package/lib/plugins/filtering/index.js +87 -50
- package/lib/plugins/filtering/index.js.map +1 -1
- package/lib/plugins/grouping-columns/grouping-columns.d.ts +4 -4
- package/lib/plugins/grouping-columns/grouping-columns.d.ts.map +1 -1
- package/lib/plugins/grouping-columns/index.js +59 -24
- package/lib/plugins/grouping-columns/index.js.map +1 -1
- package/lib/plugins/grouping-rows/GroupingRowsPlugin.d.ts.map +1 -1
- package/lib/plugins/grouping-rows/grouping-rows.d.ts.map +1 -1
- package/lib/plugins/grouping-rows/index.js +46 -11
- package/lib/plugins/grouping-rows/index.js.map +1 -1
- package/lib/plugins/master-detail/MasterDetailPlugin.d.ts +2 -2
- package/lib/plugins/master-detail/MasterDetailPlugin.d.ts.map +1 -1
- package/lib/plugins/master-detail/index.js +140 -102
- package/lib/plugins/master-detail/index.js.map +1 -1
- package/lib/plugins/master-detail/types.d.ts +12 -2
- package/lib/plugins/master-detail/types.d.ts.map +1 -1
- package/lib/plugins/multi-sort/MultiSortPlugin.d.ts.map +1 -1
- package/lib/plugins/multi-sort/index.js +59 -22
- package/lib/plugins/multi-sort/index.js.map +1 -1
- package/lib/plugins/pinned-columns/index.js +41 -6
- package/lib/plugins/pinned-columns/index.js.map +1 -1
- package/lib/plugins/pinned-rows/PinnedRowsPlugin.d.ts.map +1 -1
- package/lib/plugins/pinned-rows/index.js +45 -9
- package/lib/plugins/pinned-rows/index.js.map +1 -1
- package/lib/plugins/pivot/index.js +42 -7
- package/lib/plugins/pivot/index.js.map +1 -1
- package/lib/plugins/reorder/ReorderPlugin.d.ts.map +1 -1
- package/lib/plugins/reorder/index.js +59 -19
- package/lib/plugins/reorder/index.js.map +1 -1
- package/lib/plugins/selection/index.js +41 -6
- package/lib/plugins/selection/index.js.map +1 -1
- package/lib/plugins/server-side/index.js +48 -13
- package/lib/plugins/server-side/index.js.map +1 -1
- package/lib/plugins/tree/TreePlugin.d.ts +3 -3
- package/lib/plugins/tree/TreePlugin.d.ts.map +1 -1
- package/lib/plugins/tree/index.js +165 -126
- package/lib/plugins/tree/index.js.map +1 -1
- package/lib/plugins/tree/tree-data.d.ts +6 -6
- package/lib/plugins/tree/tree-data.d.ts.map +1 -1
- package/lib/plugins/tree/tree-detect.d.ts +5 -9
- package/lib/plugins/tree/tree-detect.d.ts.map +1 -1
- package/lib/plugins/tree/types.d.ts +16 -4
- package/lib/plugins/tree/types.d.ts.map +1 -1
- package/lib/plugins/undo-redo/index.js +46 -11
- package/lib/plugins/undo-redo/index.js.map +1 -1
- package/lib/plugins/visibility/index.js +37 -2
- package/lib/plugins/visibility/index.js.map +1 -1
- package/package.json +1 -1
- package/public.d.ts +104 -13
- package/public.d.ts.map +1 -1
- package/umd/grid.all.umd.js +31 -19
- package/umd/grid.all.umd.js.map +1 -1
- package/umd/grid.umd.js +18 -6
- package/umd/grid.umd.js.map +1 -1
- package/umd/plugins/clipboard.umd.js +1 -1
- package/umd/plugins/clipboard.umd.js.map +1 -1
- package/umd/plugins/editing.umd.js +2 -0
- package/umd/plugins/editing.umd.js.map +1 -0
- package/umd/plugins/export.umd.js +2 -2
- package/umd/plugins/export.umd.js.map +1 -1
- package/umd/plugins/filtering.umd.js +1 -1
- package/umd/plugins/filtering.umd.js.map +1 -1
- package/umd/plugins/grouping-columns.umd.js +1 -1
- package/umd/plugins/grouping-columns.umd.js.map +1 -1
- package/umd/plugins/grouping-rows.umd.js +1 -1
- package/umd/plugins/grouping-rows.umd.js.map +1 -1
- package/umd/plugins/master-detail.umd.js +1 -1
- package/umd/plugins/master-detail.umd.js.map +1 -1
- package/umd/plugins/multi-sort.umd.js +1 -1
- package/umd/plugins/multi-sort.umd.js.map +1 -1
- package/umd/plugins/pinned-rows.umd.js +1 -1
- package/umd/plugins/pinned-rows.umd.js.map +1 -1
- package/umd/plugins/reorder.umd.js +1 -1
- package/umd/plugins/reorder.umd.js.map +1 -1
- package/umd/plugins/tree.umd.js +1 -1
- package/umd/plugins/tree.umd.js.map +1 -1
- package/lib/core/internal/column-state.d.ts +0 -124
- package/lib/core/internal/column-state.d.ts.map +0 -1
- package/lib/core/internal/editing.d.ts +0 -76
- package/lib/core/internal/editing.d.ts.map +0 -1
- package/lib/core/internal/editors.d.ts.map +0 -1
- package/lib/core/internal/grid-internals.d.ts +0 -83
- package/lib/core/internal/grid-internals.d.ts.map +0 -1
package/public.d.ts
CHANGED
|
@@ -38,21 +38,112 @@ export declare const PluginEvents: {
|
|
|
38
38
|
readonly GROUP_EXPAND: "group-expand";
|
|
39
39
|
};
|
|
40
40
|
export type PluginEventName = (typeof PluginEvents)[keyof typeof PluginEvents];
|
|
41
|
-
export type { ActivateCellDetail, AggregatorRef, AnimationConfig, AnimationMode, AnimationStyle, BaseColumnConfig, CellCommitDetail, CellRenderContext, ChangedRowsResetDetail, ColumnConfig, ColumnConfigMap, ColumnEditorContext, ColumnEditorSpec, ColumnResizeDetail, ColumnSortState, ColumnState, ColumnViewRenderer, DataGridCustomEvent, DataGridElement as DataGridElementInterface, DataGridEventMap, ExpandCollapseAnimation, ExternalMountEditorDetail, ExternalMountViewDetail, FitMode, FrameworkAdapter, GridColumnState, GridConfig, GridIcons, GridPlugin, HeaderContentDefinition, IconValue, InferredColumnResult, PrimitiveColumnType, PublicGrid, RowCommitDetail, RowGroupRenderConfig, ShellConfig, ShellHeaderConfig, SortChangeDetail, SortHandler, SortState, ToolPanelConfig, ToolPanelDefinition,
|
|
41
|
+
export type { ActivateCellDetail, AggregatorRef, AnimationConfig, AnimationMode, AnimationStyle, BaseColumnConfig, CellCommitDetail, CellRenderContext, ChangedRowsResetDetail, ColumnConfig, ColumnConfigMap, ColumnEditorContext, ColumnEditorSpec, ColumnResizeDetail, ColumnSortState, ColumnState, ColumnViewRenderer, DataGridCustomEvent, DataGridElement as DataGridElementInterface, DataGridEventMap, ExpandCollapseAnimation, ExternalMountEditorDetail, ExternalMountViewDetail, FitMode, FrameworkAdapter, GridColumnState, GridConfig, GridIcons, GridPlugin, HeaderContentDefinition, IconValue, InferredColumnResult, PrimitiveColumnType, PublicGrid, RowCommitDetail, RowGroupRenderConfig, ShellConfig, ShellHeaderConfig, SortChangeDetail, SortHandler, SortState, ToolbarButtonConfig, ToolPanelConfig, ToolPanelDefinition, } from './lib/core/types';
|
|
42
42
|
export { DEFAULT_ANIMATION_CONFIG, DEFAULT_GRID_ICONS, FitModeEnum } from './lib/core/types';
|
|
43
43
|
export { builtInSort, defaultComparator } from './lib/core/internal/sorting';
|
|
44
|
-
export type { CellRange, SelectionChangeDetail, SelectionConfig, SelectionMode } from './lib/plugins/selection/types';
|
|
45
|
-
export type { TreeConfig, TreeExpandDetail } from './lib/plugins/tree/types';
|
|
46
|
-
export type { FilterConfig, FilterHandler, FilterModel, FilterOperator, FilterType, FilterValuesHandler, } from './lib/plugins/filtering/types';
|
|
47
|
-
export type { MultiSortConfig, SortModel } from './lib/plugins/multi-sort/types';
|
|
48
|
-
export type { ExportFormat, ExportParams } from './lib/plugins/export/types';
|
|
49
|
-
export type { PinnedRowsContext, PinnedRowsPanel } from './lib/plugins/pinned-rows/types';
|
|
50
|
-
export type { PivotConfig, PivotResult, PivotValueField } from './lib/plugins/pivot/types';
|
|
51
|
-
export type { GetRowsParams, GetRowsResult, ServerSideDataSource } from './lib/plugins/server-side/types';
|
|
52
|
-
export type { EditAction } from './lib/plugins/undo-redo/types';
|
|
53
|
-
export type { GroupingRowsConfig } from './lib/plugins/grouping-rows/types';
|
|
54
44
|
export { BaseGridPlugin, PLUGIN_QUERIES } from './lib/core/plugin';
|
|
55
45
|
export type { PluginQuery } from './lib/core/plugin';
|
|
56
|
-
export {
|
|
57
|
-
export type {
|
|
46
|
+
export { GridClasses, GridCSSVars, GridDataAttrs, GridSelectors } from './lib/core/constants';
|
|
47
|
+
export type { GridClassName, GridCSSVar, GridDataAttr } from './lib/core/constants';
|
|
48
|
+
/**
|
|
49
|
+
* Internal types for advanced users building custom plugins or enterprise extensions.
|
|
50
|
+
*
|
|
51
|
+
* These types provide access to grid internals that may be needed for deep customization.
|
|
52
|
+
* While not part of the "stable" API, they are exported for power users who need them.
|
|
53
|
+
*
|
|
54
|
+
* @remarks
|
|
55
|
+
* Use with caution - these types expose internal implementation details.
|
|
56
|
+
* The underscore-prefixed members they reference are considered less stable
|
|
57
|
+
* than the public API surface.
|
|
58
|
+
*
|
|
59
|
+
* @example
|
|
60
|
+
* ```typescript
|
|
61
|
+
* import { BaseGridPlugin } from '@toolbox-web/grid';
|
|
62
|
+
* import type { InternalGrid, ColumnInternal } from '@toolbox-web/grid';
|
|
63
|
+
*
|
|
64
|
+
* export class MyPlugin extends BaseGridPlugin<MyConfig> {
|
|
65
|
+
* afterRender(): void {
|
|
66
|
+
* // Access grid internals with proper typing
|
|
67
|
+
* const grid = this.grid as InternalGrid;
|
|
68
|
+
* const columns = grid._columns as ColumnInternal[];
|
|
69
|
+
* // ...
|
|
70
|
+
* }
|
|
71
|
+
* }
|
|
72
|
+
* ```
|
|
73
|
+
*/
|
|
74
|
+
/**
|
|
75
|
+
* Column configuration with internal cache properties.
|
|
76
|
+
* Extends the public ColumnConfig with compiled template caches (__compiledView, __viewTemplate, etc.)
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
export type { ColumnInternal } from './lib/core/types';
|
|
80
|
+
/**
|
|
81
|
+
* Compiled template function with __blocked property for error handling.
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
84
|
+
export type { CompiledViewFunction } from './lib/core/types';
|
|
85
|
+
/**
|
|
86
|
+
* Full internal grid interface extending PublicGrid with internal state.
|
|
87
|
+
* Provides typed access to _columns, _rows, virtualization state, etc.
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
export type { InternalGrid } from './lib/core/types';
|
|
91
|
+
/**
|
|
92
|
+
* Cell context for renderer/editor operations.
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
95
|
+
export type { CellContext } from './lib/core/types';
|
|
96
|
+
/**
|
|
97
|
+
* Editor execution context extending CellContext with commit/cancel functions.
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
export type { EditorExecContext } from './lib/core/types';
|
|
101
|
+
/**
|
|
102
|
+
* Template evaluation context for dynamic templates.
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
105
|
+
export type { EvalContext } from './lib/core/types';
|
|
106
|
+
/**
|
|
107
|
+
* Column resize controller interface.
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
export type { ResizeController } from './lib/core/types';
|
|
111
|
+
/**
|
|
112
|
+
* Row virtualization state interface.
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
export type { VirtualState } from './lib/core/types';
|
|
116
|
+
/**
|
|
117
|
+
* Row element with internal editing state cache.
|
|
118
|
+
* Used for tracking editing cell count without querySelector.
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
export type { RowElementInternal } from './lib/core/types';
|
|
122
|
+
/**
|
|
123
|
+
* Union type for input-like elements that have a `value` property.
|
|
124
|
+
* Covers standard form elements and custom elements with value semantics.
|
|
125
|
+
* @internal
|
|
126
|
+
*/
|
|
127
|
+
export type { InputLikeElement } from './lib/core/types';
|
|
128
|
+
/**
|
|
129
|
+
* Utility type to safely cast a grid element to InternalGrid for plugin use.
|
|
130
|
+
*
|
|
131
|
+
* @example
|
|
132
|
+
* ```typescript
|
|
133
|
+
* import type { AsInternalGrid, InternalGrid } from '@toolbox-web/grid';
|
|
134
|
+
*
|
|
135
|
+
* class MyPlugin extends BaseGridPlugin {
|
|
136
|
+
* get internalGrid(): InternalGrid {
|
|
137
|
+
* return this.grid as AsInternalGrid;
|
|
138
|
+
* }
|
|
139
|
+
* }
|
|
140
|
+
* ```
|
|
141
|
+
* @internal
|
|
142
|
+
*/
|
|
143
|
+
export type AsInternalGrid<T = unknown> = import('./lib/core/types').InternalGrid<T>;
|
|
144
|
+
/**
|
|
145
|
+
* Render phase enum for debugging and understanding the render pipeline.
|
|
146
|
+
* Higher phases include all lower phase work.
|
|
147
|
+
*/
|
|
148
|
+
export { RenderPhase } from './lib/core/internal/render-scheduler';
|
|
58
149
|
//# sourceMappingURL=public.d.ts.map
|
package/public.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../libs/grid/src/public.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,EAAE,eAAe,EAAE,eAAe,IAAI,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAGlF,eAAO,MAAM,QAAQ;;;;;;;;;;;CAWX,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,OAAO,QAAQ,CAAC,CAAC;AAGnE,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;CA+Bf,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC;AAG/E,YAAY,EACV,kBAAkB,EAClB,aAAa,EAEb,eAAe,EACf,aAAa,EACb,cAAc,EACd,gBAAgB,EAEhB,gBAAgB,EAChB,iBAAiB,EACjB,sBAAsB,EACtB,YAAY,EACZ,eAAe,EACf,mBAAmB,EAEnB,gBAAgB,EAChB,kBAAkB,EAElB,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,IAAI,wBAAwB,EAC3C,gBAAgB,EAChB,uBAAuB,EACvB,yBAAyB,EACzB,uBAAuB,EACvB,OAAO,EAEP,gBAAgB,EAChB,eAAe,EAEf,UAAU,EAEV,SAAS,EAET,UAAU,EAEV,uBAAuB,EACvB,SAAS,EAET,oBAAoB,EACpB,mBAAmB,EAEnB,UAAU,EACV,eAAe,EAEf,oBAAoB,EACpB,WAAW,EACX,iBAAiB,EACjB,gBAAgB,EAEhB,WAAW,EACX,SAAS,EACT,eAAe,EACf,mBAAmB,
|
|
1
|
+
{"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../libs/grid/src/public.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAGH,OAAO,EAAE,eAAe,EAAE,eAAe,IAAI,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAGlF,eAAO,MAAM,QAAQ;;;;;;;;;;;CAWX,CAAC;AAEX,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,QAAQ,CAAC,CAAC,MAAM,OAAO,QAAQ,CAAC,CAAC;AAGnE,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;CA+Bf,CAAC;AAEX,MAAM,MAAM,eAAe,GAAG,CAAC,OAAO,YAAY,CAAC,CAAC,MAAM,OAAO,YAAY,CAAC,CAAC;AAG/E,YAAY,EACV,kBAAkB,EAClB,aAAa,EAEb,eAAe,EACf,aAAa,EACb,cAAc,EACd,gBAAgB,EAEhB,gBAAgB,EAChB,iBAAiB,EACjB,sBAAsB,EACtB,YAAY,EACZ,eAAe,EACf,mBAAmB,EAEnB,gBAAgB,EAChB,kBAAkB,EAElB,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,IAAI,wBAAwB,EAC3C,gBAAgB,EAChB,uBAAuB,EACvB,yBAAyB,EACzB,uBAAuB,EACvB,OAAO,EAEP,gBAAgB,EAChB,eAAe,EAEf,UAAU,EAEV,SAAS,EAET,UAAU,EAEV,uBAAuB,EACvB,SAAS,EAET,oBAAoB,EACpB,mBAAmB,EAEnB,UAAU,EACV,eAAe,EAEf,oBAAoB,EACpB,WAAW,EACX,iBAAiB,EACjB,gBAAgB,EAEhB,WAAW,EACX,SAAS,EACT,mBAAmB,EACnB,eAAe,EACf,mBAAmB,GACpB,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EAAE,wBAAwB,EAAE,kBAAkB,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAG7F,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AAK7E,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnE,YAAY,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAGrD,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC9F,YAAY,EAAE,aAAa,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAUpF;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAEH;;;;GAIG;AACH,YAAY,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAEvD;;;GAGG;AACH,YAAY,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAE7D;;;;GAIG;AACH,YAAY,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAErD;;;GAGG;AACH,YAAY,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD;;;GAGG;AACH,YAAY,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAE1D;;;GAGG;AACH,YAAY,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD;;;GAGG;AACH,YAAY,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAEzD;;;GAGG;AACH,YAAY,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAErD;;;;GAIG;AACH,YAAY,EAAE,kBAAkB,EAAE,MAAM,kBAAkB,CAAC;AAE3D;;;;GAIG;AACH,YAAY,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAEzD;;;;;;;;;;;;;;GAcG;AACH,MAAM,MAAM,cAAc,CAAC,CAAC,GAAG,OAAO,IAAI,OAAO,kBAAkB,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC;AAErF;;;GAGG;AACH,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC"}
|