@ixo/editor 2.18.0 → 2.19.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/dist/index.mjs
CHANGED
package/dist/mantine/index.d.ts
CHANGED
|
@@ -164,11 +164,12 @@ type Listener = (event: CollapseEvent) => void;
|
|
|
164
164
|
interface ListBlocksUIContextValue {
|
|
165
165
|
broadcastCollapse: (event: CollapseEvent) => void;
|
|
166
166
|
subscribe: (listener: Listener) => () => void;
|
|
167
|
+
isMaximized: boolean;
|
|
168
|
+
setMaximized: (maximized: boolean) => void;
|
|
169
|
+
toggleMaximized: () => void;
|
|
167
170
|
}
|
|
168
|
-
interface ListBlocksUIState {
|
|
171
|
+
interface ListBlocksUIState extends ListBlocksUIContextValue {
|
|
169
172
|
listeners: Set<Listener>;
|
|
170
|
-
broadcastCollapse: (event: CollapseEvent) => void;
|
|
171
|
-
subscribe: (listener: Listener) => () => void;
|
|
172
173
|
}
|
|
173
174
|
/**
|
|
174
175
|
* Zustand store for managing list blocks UI state (collapse/expand)
|
package/dist/mantine/index.mjs
CHANGED