@object-ui/plugin-designer 0.1.0 → 3.0.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 +154 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3674 -828
- package/dist/index.umd.cjs +2 -2
- package/dist/{src → plugin-designer/src}/CollaborationProvider.d.ts +15 -2
- package/dist/{src → plugin-designer/src}/DataModelDesigner.d.ts +2 -1
- package/dist/{src → plugin-designer/src}/PageDesigner.d.ts +3 -2
- package/dist/{src → plugin-designer/src}/ProcessDesigner.d.ts +6 -2
- package/dist/{src → plugin-designer/src}/ReportDesigner.d.ts +0 -1
- package/dist/plugin-designer/src/ViewDesigner.d.ts +67 -0
- package/dist/plugin-designer/src/components/ConfirmDialog.d.ts +30 -0
- package/dist/plugin-designer/src/components/Minimap.d.ts +35 -0
- package/dist/plugin-designer/src/components/PropertyEditor.d.ts +43 -0
- package/dist/plugin-designer/src/components/VersionHistory.d.ts +34 -0
- package/dist/plugin-designer/src/components/index.d.ts +15 -0
- package/dist/plugin-designer/src/hooks/index.d.ts +17 -0
- package/dist/plugin-designer/src/hooks/useCanvasPanZoom.d.ts +40 -0
- package/dist/plugin-designer/src/hooks/useClipboard.d.ts +22 -0
- package/dist/plugin-designer/src/hooks/useConfirmDialog.d.ts +25 -0
- package/dist/plugin-designer/src/hooks/useMultiSelect.d.ts +27 -0
- package/dist/plugin-designer/src/hooks/useUndoRedo.d.ts +36 -0
- package/dist/plugin-designer/src/index.d.ts +17 -0
- package/package.json +11 -11
- package/dist/src/CollaborationProvider.d.ts.map +0 -1
- package/dist/src/DataModelDesigner.d.ts.map +0 -1
- package/dist/src/PageDesigner.d.ts.map +0 -1
- package/dist/src/ProcessDesigner.d.ts.map +0 -1
- package/dist/src/ReportDesigner.d.ts.map +0 -1
- package/dist/src/index.d.ts +0 -7
- package/dist/src/index.d.ts.map +0 -1
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export interface PropertyField {
|
|
9
|
+
/** Property name */
|
|
10
|
+
name: string;
|
|
11
|
+
/** Display label */
|
|
12
|
+
label: string;
|
|
13
|
+
/** Editor type */
|
|
14
|
+
type: 'text' | 'number' | 'boolean' | 'select' | 'color' | 'textarea';
|
|
15
|
+
/** Current value */
|
|
16
|
+
value: unknown;
|
|
17
|
+
/** Options for select type */
|
|
18
|
+
options?: Array<{
|
|
19
|
+
label: string;
|
|
20
|
+
value: string;
|
|
21
|
+
}>;
|
|
22
|
+
/** Group name */
|
|
23
|
+
group?: string;
|
|
24
|
+
/** Description / help text */
|
|
25
|
+
description?: string;
|
|
26
|
+
/** Whether changes apply in real-time (live preview) */
|
|
27
|
+
livePreview?: boolean;
|
|
28
|
+
}
|
|
29
|
+
export interface PropertyEditorProps {
|
|
30
|
+
/** Title of the property panel */
|
|
31
|
+
title?: string;
|
|
32
|
+
/** Properties to edit */
|
|
33
|
+
fields: PropertyField[];
|
|
34
|
+
/** Called when a property value changes */
|
|
35
|
+
onChange: (name: string, value: unknown) => void;
|
|
36
|
+
/** CSS class */
|
|
37
|
+
className?: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Property editor panel with live preview support.
|
|
41
|
+
* Groups properties by category and provides appropriate editors for each type.
|
|
42
|
+
*/
|
|
43
|
+
export declare function PropertyEditor({ title, fields, onChange, className, }: PropertyEditorProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export interface VersionEntry {
|
|
9
|
+
/** Version number */
|
|
10
|
+
version: number;
|
|
11
|
+
/** Timestamp */
|
|
12
|
+
timestamp: string;
|
|
13
|
+
/** User who made the change */
|
|
14
|
+
userId: string;
|
|
15
|
+
/** User display name */
|
|
16
|
+
userName: string;
|
|
17
|
+
/** Description of changes */
|
|
18
|
+
description: string;
|
|
19
|
+
/** Whether this is the current version */
|
|
20
|
+
isCurrent?: boolean;
|
|
21
|
+
}
|
|
22
|
+
export interface VersionHistoryProps {
|
|
23
|
+
/** Version entries */
|
|
24
|
+
versions: VersionEntry[];
|
|
25
|
+
/** Called when user wants to restore a version */
|
|
26
|
+
onRestore?: (version: number) => void;
|
|
27
|
+
/** CSS class */
|
|
28
|
+
className?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Version history browser with visual diff support.
|
|
32
|
+
* Shows a timeline of changes with the ability to restore previous versions.
|
|
33
|
+
*/
|
|
34
|
+
export declare function VersionHistory({ versions, onRestore, className, }: VersionHistoryProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export { ConfirmDialog } from './ConfirmDialog';
|
|
9
|
+
export type { ConfirmDialogProps } from './ConfirmDialog';
|
|
10
|
+
export { Minimap } from './Minimap';
|
|
11
|
+
export type { MinimapProps, MinimapItem } from './Minimap';
|
|
12
|
+
export { PropertyEditor } from './PropertyEditor';
|
|
13
|
+
export type { PropertyEditorProps, PropertyField } from './PropertyEditor';
|
|
14
|
+
export { VersionHistory } from './VersionHistory';
|
|
15
|
+
export type { VersionHistoryProps, VersionEntry } from './VersionHistory';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export { useUndoRedo } from './useUndoRedo';
|
|
9
|
+
export type { UndoRedoState, UndoRedoOptions } from './useUndoRedo';
|
|
10
|
+
export { useConfirmDialog } from './useConfirmDialog';
|
|
11
|
+
export type { ConfirmDialogState } from './useConfirmDialog';
|
|
12
|
+
export { useClipboard } from './useClipboard';
|
|
13
|
+
export type { ClipboardState } from './useClipboard';
|
|
14
|
+
export { useMultiSelect } from './useMultiSelect';
|
|
15
|
+
export type { MultiSelectState } from './useMultiSelect';
|
|
16
|
+
export { useCanvasPanZoom } from './useCanvasPanZoom';
|
|
17
|
+
export type { PanZoomState, PanZoomOptions } from './useCanvasPanZoom';
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export interface PanZoomState {
|
|
9
|
+
/** Current zoom level */
|
|
10
|
+
zoom: number;
|
|
11
|
+
/** Current pan offset */
|
|
12
|
+
panOffset: {
|
|
13
|
+
x: number;
|
|
14
|
+
y: number;
|
|
15
|
+
};
|
|
16
|
+
/** Zoom in */
|
|
17
|
+
zoomIn: () => void;
|
|
18
|
+
/** Zoom out */
|
|
19
|
+
zoomOut: () => void;
|
|
20
|
+
/** Reset zoom to 1x */
|
|
21
|
+
resetZoom: () => void;
|
|
22
|
+
/** Set zoom to specific value */
|
|
23
|
+
setZoom: (zoom: number) => void;
|
|
24
|
+
/** Handle wheel event for zoom */
|
|
25
|
+
handleWheel: (e: React.WheelEvent) => void;
|
|
26
|
+
/** Start panning (on mouse down with space or middle button) */
|
|
27
|
+
startPan: (e: React.MouseEvent) => void;
|
|
28
|
+
/** Get transform style for the canvas */
|
|
29
|
+
transformStyle: React.CSSProperties;
|
|
30
|
+
}
|
|
31
|
+
export interface PanZoomOptions {
|
|
32
|
+
minZoom?: number;
|
|
33
|
+
maxZoom?: number;
|
|
34
|
+
zoomStep?: number;
|
|
35
|
+
initialZoom?: number;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Hook for canvas pan and zoom functionality.
|
|
39
|
+
*/
|
|
40
|
+
export declare function useCanvasPanZoom(options?: PanZoomOptions): PanZoomState;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export interface ClipboardState<T> {
|
|
9
|
+
/** Current clipboard content */
|
|
10
|
+
clipboard: T | null;
|
|
11
|
+
/** Copy items to clipboard */
|
|
12
|
+
copy: (item: T) => void;
|
|
13
|
+
/** Paste from clipboard (returns the item) */
|
|
14
|
+
paste: () => T | null;
|
|
15
|
+
/** Whether clipboard has content */
|
|
16
|
+
hasContent: boolean;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Hook for copy/paste support in designers.
|
|
20
|
+
* Manages an internal clipboard for designer items.
|
|
21
|
+
*/
|
|
22
|
+
export declare function useClipboard<T>(): ClipboardState<T>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export interface ConfirmDialogState {
|
|
9
|
+
/** Whether the dialog is open */
|
|
10
|
+
isOpen: boolean;
|
|
11
|
+
/** Title for the dialog */
|
|
12
|
+
title: string;
|
|
13
|
+
/** Message for the dialog */
|
|
14
|
+
message: string;
|
|
15
|
+
/** Open the dialog with a message, returns a promise that resolves to true/false */
|
|
16
|
+
confirm: (title: string, message: string) => Promise<boolean>;
|
|
17
|
+
/** Handle user accepting */
|
|
18
|
+
onConfirm: () => void;
|
|
19
|
+
/** Handle user cancelling */
|
|
20
|
+
onCancel: () => void;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Hook for confirmation dialogs before destructive actions.
|
|
24
|
+
*/
|
|
25
|
+
export declare function useConfirmDialog(): ConfirmDialogState;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export interface MultiSelectState {
|
|
9
|
+
/** Currently selected IDs */
|
|
10
|
+
selectedIds: Set<string>;
|
|
11
|
+
/** Toggle selection of an item (with shift for multi-select) */
|
|
12
|
+
toggle: (id: string, shiftKey?: boolean) => void;
|
|
13
|
+
/** Select a single item (clear others) */
|
|
14
|
+
selectOne: (id: string) => void;
|
|
15
|
+
/** Select multiple items */
|
|
16
|
+
selectMany: (ids: string[]) => void;
|
|
17
|
+
/** Clear all selections */
|
|
18
|
+
clearSelection: () => void;
|
|
19
|
+
/** Whether an item is selected */
|
|
20
|
+
isSelected: (id: string) => boolean;
|
|
21
|
+
/** Number of selected items */
|
|
22
|
+
count: number;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Hook for multi-select support in designers.
|
|
26
|
+
*/
|
|
27
|
+
export declare function useMultiSelect(): MultiSelectState;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ObjectUI
|
|
3
|
+
* Copyright (c) 2024-present ObjectStack Inc.
|
|
4
|
+
*
|
|
5
|
+
* This source code is licensed under the MIT license found in the
|
|
6
|
+
* LICENSE file in the root directory of this source tree.
|
|
7
|
+
*/
|
|
8
|
+
export interface UndoRedoOptions {
|
|
9
|
+
/** Maximum history size */
|
|
10
|
+
maxHistory?: number;
|
|
11
|
+
}
|
|
12
|
+
export interface UndoRedoState<T> {
|
|
13
|
+
/** Current state */
|
|
14
|
+
current: T;
|
|
15
|
+
/** Whether undo is available */
|
|
16
|
+
canUndo: boolean;
|
|
17
|
+
/** Whether redo is available */
|
|
18
|
+
canRedo: boolean;
|
|
19
|
+
/** Number of undo steps available */
|
|
20
|
+
undoCount: number;
|
|
21
|
+
/** Number of redo steps available */
|
|
22
|
+
redoCount: number;
|
|
23
|
+
/** Push a new state (clears redo stack) */
|
|
24
|
+
push: (state: T) => void;
|
|
25
|
+
/** Undo to previous state */
|
|
26
|
+
undo: () => void;
|
|
27
|
+
/** Redo to next state */
|
|
28
|
+
redo: () => void;
|
|
29
|
+
/** Reset to initial state, clearing all history */
|
|
30
|
+
reset: (state: T) => void;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Hook for undo/redo functionality using command pattern with state history.
|
|
34
|
+
* Maintains a stack of past states and future states for undo/redo operations.
|
|
35
|
+
*/
|
|
36
|
+
export declare function useUndoRedo<T>(initialState: T, options?: UndoRedoOptions): UndoRedoState<T>;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PageDesigner } from './PageDesigner';
|
|
2
|
+
import { DataModelDesigner } from './DataModelDesigner';
|
|
3
|
+
import { ProcessDesigner } from './ProcessDesigner';
|
|
4
|
+
import { ReportDesigner } from './ReportDesigner';
|
|
5
|
+
import { CollaborationProvider, ConnectionStatusIndicator } from './CollaborationProvider';
|
|
6
|
+
import { ViewDesigner } from './ViewDesigner';
|
|
7
|
+
export { PageDesigner, DataModelDesigner, ProcessDesigner, ReportDesigner, CollaborationProvider, ConnectionStatusIndicator, ViewDesigner, };
|
|
8
|
+
export type { ViewDesignerProps, ViewDesignerConfig } from './ViewDesigner';
|
|
9
|
+
export { useUndoRedo } from './hooks/useUndoRedo';
|
|
10
|
+
export { useConfirmDialog } from './hooks/useConfirmDialog';
|
|
11
|
+
export { useClipboard } from './hooks/useClipboard';
|
|
12
|
+
export { useMultiSelect } from './hooks/useMultiSelect';
|
|
13
|
+
export { useCanvasPanZoom } from './hooks/useCanvasPanZoom';
|
|
14
|
+
export { ConfirmDialog } from './components/ConfirmDialog';
|
|
15
|
+
export { Minimap } from './components/Minimap';
|
|
16
|
+
export { PropertyEditor } from './components/PropertyEditor';
|
|
17
|
+
export { VersionHistory } from './components/VersionHistory';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@object-ui/plugin-designer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Visual designer plugin for Object UI with page, data model, process, and report designers plus collaborative editing.",
|
|
@@ -20,21 +20,21 @@
|
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": "^18.0.0 || ^19.0.0",
|
|
22
22
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
23
|
-
"@object-ui/
|
|
24
|
-
"@object-ui/
|
|
25
|
-
"@object-ui/
|
|
26
|
-
"@object-ui/
|
|
23
|
+
"@object-ui/components": "3.0.0",
|
|
24
|
+
"@object-ui/core": "3.0.0",
|
|
25
|
+
"@object-ui/react": "3.0.0",
|
|
26
|
+
"@object-ui/types": "3.0.0"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"clsx": "^2.1.
|
|
29
|
+
"clsx": "^2.1.1",
|
|
30
30
|
"lucide-react": "^0.344.0",
|
|
31
|
-
"tailwind-merge": "^2.
|
|
31
|
+
"tailwind-merge": "^2.6.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@types/node": "^25.2.
|
|
35
|
-
"@types/react": "
|
|
36
|
-
"@types/react-dom": "
|
|
37
|
-
"@vitejs/plugin-react": "^5.1.
|
|
34
|
+
"@types/node": "^25.2.3",
|
|
35
|
+
"@types/react": "19.2.13",
|
|
36
|
+
"@types/react-dom": "19.2.3",
|
|
37
|
+
"@vitejs/plugin-react": "^5.1.4",
|
|
38
38
|
"vite": "^7.3.1",
|
|
39
39
|
"vite-plugin-dts": "^4.5.4",
|
|
40
40
|
"vitest": "^4.0.18"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CollaborationProvider.d.ts","sourceRoot":"","sources":["../../src/CollaborationProvider.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAA0D,MAAM,OAAO,CAAC;AAC/E,OAAO,KAAK,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAE3G,MAAM,WAAW,yBAAyB;IACxC,kCAAkC;IAClC,KAAK,EAAE,qBAAqB,EAAE,CAAC;IAC/B,yCAAyC;IACzC,WAAW,EAAE,OAAO,CAAC;IACrB,yCAAyC;IACzC,aAAa,EAAE,CAAC,SAAS,EAAE,IAAI,CAAC,sBAAsB,EAAE,IAAI,GAAG,WAAW,GAAG,SAAS,CAAC,KAAK,IAAI,CAAC;IACjG,sBAAsB;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAKD,MAAM,WAAW,0BAA0B;IACzC,kCAAkC;IAClC,MAAM,EAAE,mBAAmB,CAAC;IAC5B,wBAAwB;IACxB,IAAI,CAAC,EAAE;QACL,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,MAAM,CAAC,EAAE,MAAM,CAAC;KACjB,CAAC;IACF,+DAA+D;IAC/D,WAAW,CAAC,EAAE,CAAC,SAAS,EAAE,sBAAsB,KAAK,IAAI,CAAC;IAC1D,eAAe;IACf,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,EACpC,MAAM,EACN,IAAI,EACJ,WAAW,EACX,QAAQ,GACT,EAAE,0BAA0B,2CA4C5B;AAED;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,yBAAyB,GAAG,IAAI,CAEnE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"DataModelDesigner.d.ts","sourceRoot":"","sources":["../../src/DataModelDesigner.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,eAAe,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AASrG,MAAM,WAAW,sBAAsB;IACrC,4BAA4B;IAC5B,QAAQ,CAAC,EAAE,eAAe,EAAE,CAAC;IAC7B,qCAAqC;IACrC,aAAa,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACxC,2BAA2B;IAC3B,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,+BAA+B;IAC/B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,0BAA0B;IAC1B,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,oCAAoC;IACpC,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,eAAe,EAAE,KAAK,IAAI,CAAC;IACzD,yCAAyC;IACzC,qBAAqB,CAAC,EAAE,CAAC,aAAa,EAAE,qBAAqB,EAAE,KAAK,IAAI,CAAC;IACzE,uBAAuB;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,CAAC,EAChC,QAAQ,EAAE,eAAoB,EAC9B,aAAa,EAAE,oBAAyB,EACxC,MAAqD,EACrD,sBAA6B,EAC7B,QAAgB,EAChB,gBAAgB,EAChB,qBAAqB,EACrB,SAAS,GACV,EAAE,sBAAsB,2CA4KxB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"PageDesigner.d.ts","sourceRoot":"","sources":["../../src/PageDesigner.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EACV,iBAAiB,EACjB,oBAAoB,EACpB,uBAAuB,EACxB,MAAM,kBAAkB,CAAC;AAS1B,MAAM,WAAW,iBAAiB;IAChC,2BAA2B;IAC3B,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,yBAAyB;IACzB,UAAU,CAAC,EAAE,iBAAiB,EAAE,CAAC;IACjC,mCAAmC;IACnC,OAAO,CAAC,EAAE,uBAAuB,EAAE,CAAC;IACpC,gCAAgC;IAChC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,uBAAuB;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,sBAAsB;IACtB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,sCAAsC;IACtC,QAAQ,CAAC,EAAE,CAAC,UAAU,EAAE,iBAAiB,EAAE,KAAK,IAAI,CAAC;IACrD,uBAAuB;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;GAGG;AACH,wBAAgB,YAAY,CAAC,EAC3B,MAAoF,EACpF,UAAU,EAAE,iBAAsB,EAClC,OAAyB,EACzB,iBAAwB,EACxB,QAAe,EACf,QAAgB,EAChB,QAAQ,EACR,SAAS,GACV,EAAE,iBAAiB,2CAiMnB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ProcessDesigner.d.ts","sourceRoot":"","sources":["../../src/ProcessDesigner.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAS3F,MAAM,WAAW,oBAAoB;IACnC,mBAAmB;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,sBAAsB;IACtB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iBAAiB;IACjB,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;IACnB,iBAAiB;IACjB,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;IACnB,iBAAiB;IACjB,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;IACnB,2BAA2B;IAC3B,MAAM,CAAC,EAAE,oBAAoB,CAAC;IAC9B,mBAAmB;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,mBAAmB;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iCAAiC;IACjC,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,IAAI,CAAC;IAC5C,iCAAiC;IACjC,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,QAAQ,EAAE,KAAK,IAAI,CAAC;IAC5C,uBAAuB;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;GAGG;AACH,wBAAgB,eAAe,CAAC,EAC9B,WAA2B,EAC3B,KAAK,EAAE,YAAiB,EACxB,KAAK,EAAE,YAAiB,EACxB,KAAK,EAAE,MAAM,EACb,MAAqD,EACrD,WAAkB,EAClB,QAAgB,EAChB,aAAa,EACb,aAAa,EACb,SAAS,GACV,EAAE,oBAAoB,2CAiMtB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReportDesigner.d.ts","sourceRoot":"","sources":["../../src/ReportDesigner.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,EAAE,qBAAqB,EAAyB,MAAM,kBAAkB,CAAC;AASrF,MAAM,WAAW,mBAAmB;IAClC,kBAAkB;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,yBAAyB;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,gBAAgB;IAChB,QAAQ,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IACxD,uBAAuB;IACvB,WAAW,CAAC,EAAE,UAAU,GAAG,WAAW,CAAC;IACvC,mBAAmB;IACnB,OAAO,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAC;IACvE,sBAAsB;IACtB,QAAQ,CAAC,EAAE,qBAAqB,EAAE,CAAC;IACnC,mBAAmB;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,0BAA0B;IAC1B,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,mBAAmB;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,oCAAoC;IACpC,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,qBAAqB,EAAE,KAAK,IAAI,CAAC;IAC/D,uBAAuB;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAUD;;;GAGG;AACH,wBAAgB,cAAc,CAAC,EAC7B,UAA8B,EAC9B,UAAU,EACV,QAAe,EACf,WAAwB,EACxB,OAAsD,EACtD,QAAQ,EAAE,eAAoB,EAC9B,WAAkB,EAClB,iBAAwB,EACxB,QAAgB,EAChB,gBAAgB,EAChB,SAAS,GACV,EAAE,mBAAmB,2CAqNrB"}
|
package/dist/src/index.d.ts
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { PageDesigner } from './PageDesigner';
|
|
2
|
-
import { DataModelDesigner } from './DataModelDesigner';
|
|
3
|
-
import { ProcessDesigner } from './ProcessDesigner';
|
|
4
|
-
import { ReportDesigner } from './ReportDesigner';
|
|
5
|
-
import { CollaborationProvider } from './CollaborationProvider';
|
|
6
|
-
export { PageDesigner, DataModelDesigner, ProcessDesigner, ReportDesigner, CollaborationProvider, };
|
|
7
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/src/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,OAAO,EACL,YAAY,EACZ,iBAAiB,EACjB,eAAe,EACf,cAAc,EACd,qBAAqB,GACtB,CAAC"}
|