@contember/react-repeater-dnd-kit 2.0.0-alpha.9 → 2.0.0-beta.2
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/development/src/components/RepeaterSortable.cjs +3 -3
- package/dist/development/src/components/RepeaterSortable.cjs.map +1 -1
- package/dist/development/src/components/RepeaterSortable.js +3 -3
- package/dist/development/src/components/RepeaterSortable.js.map +1 -1
- package/dist/development/src/components/RepeaterSortableDragOverlay.cjs +5 -5
- package/dist/development/src/components/RepeaterSortableDragOverlay.cjs.map +1 -1
- package/dist/development/src/components/RepeaterSortableDragOverlay.js +5 -5
- package/dist/development/src/components/RepeaterSortableDragOverlay.js.map +1 -1
- package/dist/development/src/components/RepeaterSortableDropIndicator.cjs +1 -1
- package/dist/development/src/components/RepeaterSortableDropIndicator.cjs.map +1 -1
- package/dist/development/src/components/RepeaterSortableDropIndicator.js +1 -1
- package/dist/development/src/components/RepeaterSortableDropIndicator.js.map +1 -1
- package/dist/development/src/components/RepeaterSortableEachItem.cjs +4 -4
- package/dist/development/src/components/RepeaterSortableEachItem.cjs.map +1 -1
- package/dist/development/src/components/RepeaterSortableEachItem.js +4 -4
- package/dist/development/src/components/RepeaterSortableEachItem.js.map +1 -1
- package/dist/development/src/components/RepeaterSortableItemActivator.cjs +1 -1
- package/dist/development/src/components/RepeaterSortableItemActivator.cjs.map +1 -1
- package/dist/development/src/components/RepeaterSortableItemActivator.js +1 -1
- package/dist/development/src/components/RepeaterSortableItemActivator.js.map +1 -1
- package/dist/development/src/components/RepeaterSortableItemNode.cjs +1 -1
- package/dist/development/src/components/RepeaterSortableItemNode.cjs.map +1 -1
- package/dist/development/src/components/RepeaterSortableItemNode.js +1 -1
- package/dist/development/src/components/RepeaterSortableItemNode.js.map +1 -1
- package/dist/development/src/contexts.cjs.map +1 -1
- package/dist/development/src/contexts.js.map +1 -1
- package/dist/production/src/components/RepeaterSortable.cjs.map +1 -1
- package/dist/production/src/components/RepeaterSortable.js.map +1 -1
- package/dist/production/src/components/RepeaterSortableDragOverlay.cjs.map +1 -1
- package/dist/production/src/components/RepeaterSortableDragOverlay.js.map +1 -1
- package/dist/production/src/components/RepeaterSortableDropIndicator.cjs.map +1 -1
- package/dist/production/src/components/RepeaterSortableDropIndicator.js.map +1 -1
- package/dist/production/src/components/RepeaterSortableEachItem.cjs.map +1 -1
- package/dist/production/src/components/RepeaterSortableEachItem.js.map +1 -1
- package/dist/production/src/components/RepeaterSortableItemActivator.cjs.map +1 -1
- package/dist/production/src/components/RepeaterSortableItemActivator.js.map +1 -1
- package/dist/production/src/components/RepeaterSortableItemNode.cjs.map +1 -1
- package/dist/production/src/components/RepeaterSortableItemNode.js.map +1 -1
- package/dist/production/src/contexts.cjs.map +1 -1
- package/dist/production/src/contexts.js.map +1 -1
- package/dist/types/components/RepeaterSortable.d.ts +31 -0
- package/dist/types/components/RepeaterSortable.d.ts.map +1 -1
- package/dist/types/components/RepeaterSortableDragOverlay.d.ts +3 -0
- package/dist/types/components/RepeaterSortableDragOverlay.d.ts.map +1 -1
- package/dist/types/components/RepeaterSortableDropIndicator.d.ts +3 -0
- package/dist/types/components/RepeaterSortableDropIndicator.d.ts.map +1 -1
- package/dist/types/components/RepeaterSortableEachItem.d.ts +4 -0
- package/dist/types/components/RepeaterSortableEachItem.d.ts.map +1 -1
- package/dist/types/components/RepeaterSortableItemActivator.d.ts +5 -2
- package/dist/types/components/RepeaterSortableItemActivator.d.ts.map +1 -1
- package/dist/types/components/RepeaterSortableItemNode.d.ts +5 -2
- package/dist/types/components/RepeaterSortableItemNode.d.ts.map +1 -1
- package/dist/types/contexts.d.ts +6 -0
- package/dist/types/contexts.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -7
- package/src/components/RepeaterSortable.tsx +31 -0
- package/src/components/RepeaterSortableDragOverlay.tsx +3 -0
- package/src/components/RepeaterSortableDropIndicator.tsx +3 -0
- package/src/components/RepeaterSortableEachItem.tsx +4 -0
- package/src/components/RepeaterSortableItemActivator.tsx +5 -2
- package/src/components/RepeaterSortableItemNode.tsx +5 -2
- package/src/contexts.ts +6 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RepeaterSortableItemNode.js","sources":["../../../../../packages/react-repeater-dnd-kit/src/components/RepeaterSortableItemNode.tsx"],"sourcesContent":["import React, {
|
|
1
|
+
{"version":3,"file":"RepeaterSortableItemNode.js","sources":["../../../../../packages/react-repeater-dnd-kit/src/components/RepeaterSortableItemNode.tsx"],"sourcesContent":["import React, { ReactElement } from 'react'\nimport { useRepeaterSortableItem } from '../contexts'\nimport { Slot } from '@radix-ui/react-slot'\n\n/**\n * Slot for the repeater item node, which is the element that is being dragged.\n */\nexport const RepeaterSortableItemNode = ({ children }: {\n\tchildren: ReactElement\n}) => {\n\tconst { setNodeRef } = useRepeaterSortableItem()\n\treturn <Slot ref={setNodeRef}>{children}</Slot>\n}\n"],"names":[],"mappings":";;;AAOO,MAAM,2BAA2B,CAAC,EAAE,eAErC;AACC,QAAA,EAAE,WAAW,IAAI,wBAAwB;AAC/C,SAAQ,oBAAA,MAAA,EAAK,KAAK,YAAa,SAAS,CAAA;AACzC;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contexts.cjs","sources":["../../../../packages/react-repeater-dnd-kit/src/contexts.ts"],"sourcesContent":["import { createRequiredContext, createContext } from '@contember/react-utils'\nimport { EntityAccessor } from '@contember/react-binding'\nimport { useSortable } from '@dnd-kit/sortable'\n\nconst RepeaterSortableItemContext_ = createRequiredContext<ReturnType<typeof useSortable>>('RepeaterSortableItemContext')\n/** @internal */\nexport const RepeaterSortableItemContext = RepeaterSortableItemContext_[0]\nexport const useRepeaterSortableItem = RepeaterSortableItemContext_[1]\n\nconst RepeaterActiveEntityContext_ = createContext<EntityAccessor | undefined>('RepeaterActiveEntityContext', undefined)\n/** @internal */\nexport const RepeaterActiveEntityContext = RepeaterActiveEntityContext_[0]\nexport const useRepeaterActiveEntity = RepeaterActiveEntityContext_[1]\n"],"names":["createRequiredContext","createContext"],"mappings":";;;AAIA,MAAM,+BAA+BA,
|
|
1
|
+
{"version":3,"file":"contexts.cjs","sources":["../../../../packages/react-repeater-dnd-kit/src/contexts.ts"],"sourcesContent":["import { createRequiredContext, createContext } from '@contember/react-utils'\nimport { EntityAccessor } from '@contember/react-binding'\nimport { useSortable } from '@dnd-kit/sortable'\n\nconst RepeaterSortableItemContext_ = createRequiredContext<ReturnType<typeof useSortable>>('RepeaterSortableItemContext')\n/** @internal */\nexport const RepeaterSortableItemContext = RepeaterSortableItemContext_[0]\n/**\n * Returns the sortable context from dnd-kit (e.g. isDragging, isOver, setNodeRef) for the repeater item.\n */\nexport const useRepeaterSortableItem = RepeaterSortableItemContext_[1]\n\nconst RepeaterActiveEntityContext_ = createContext<EntityAccessor | undefined>('RepeaterActiveEntityContext', undefined)\n/** @internal */\nexport const RepeaterActiveEntityContext = RepeaterActiveEntityContext_[0]\n/**\n * Returns the entity that is currently being dragged in the repeater.\n */\nexport const useRepeaterActiveEntity = RepeaterActiveEntityContext_[1]\n"],"names":["createRequiredContext","createContext"],"mappings":";;;AAIA,MAAM,+BAA+BA,iCAAsD,6BAA6B;AAE3G,MAAA,8BAA8B,6BAA6B,CAAC;AAI5D,MAAA,0BAA0B,6BAA6B,CAAC;AAErE,MAAM,+BAA+BC,WAA0C,cAAA,+BAA+B,MAAS;AAE1G,MAAA,8BAA8B,6BAA6B,CAAC;AAI5D,MAAA,0BAA0B,6BAA6B,CAAC;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contexts.js","sources":["../../../../packages/react-repeater-dnd-kit/src/contexts.ts"],"sourcesContent":["import { createRequiredContext, createContext } from '@contember/react-utils'\nimport { EntityAccessor } from '@contember/react-binding'\nimport { useSortable } from '@dnd-kit/sortable'\n\nconst RepeaterSortableItemContext_ = createRequiredContext<ReturnType<typeof useSortable>>('RepeaterSortableItemContext')\n/** @internal */\nexport const RepeaterSortableItemContext = RepeaterSortableItemContext_[0]\nexport const useRepeaterSortableItem = RepeaterSortableItemContext_[1]\n\nconst RepeaterActiveEntityContext_ = createContext<EntityAccessor | undefined>('RepeaterActiveEntityContext', undefined)\n/** @internal */\nexport const RepeaterActiveEntityContext = RepeaterActiveEntityContext_[0]\nexport const useRepeaterActiveEntity = RepeaterActiveEntityContext_[1]\n"],"names":[],"mappings":";AAIA,MAAM,+BAA+B,sBAAsD,6BAA6B;AAE3G,MAAA,8BAA8B,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"contexts.js","sources":["../../../../packages/react-repeater-dnd-kit/src/contexts.ts"],"sourcesContent":["import { createRequiredContext, createContext } from '@contember/react-utils'\nimport { EntityAccessor } from '@contember/react-binding'\nimport { useSortable } from '@dnd-kit/sortable'\n\nconst RepeaterSortableItemContext_ = createRequiredContext<ReturnType<typeof useSortable>>('RepeaterSortableItemContext')\n/** @internal */\nexport const RepeaterSortableItemContext = RepeaterSortableItemContext_[0]\n/**\n * Returns the sortable context from dnd-kit (e.g. isDragging, isOver, setNodeRef) for the repeater item.\n */\nexport const useRepeaterSortableItem = RepeaterSortableItemContext_[1]\n\nconst RepeaterActiveEntityContext_ = createContext<EntityAccessor | undefined>('RepeaterActiveEntityContext', undefined)\n/** @internal */\nexport const RepeaterActiveEntityContext = RepeaterActiveEntityContext_[0]\n/**\n * Returns the entity that is currently being dragged in the repeater.\n */\nexport const useRepeaterActiveEntity = RepeaterActiveEntityContext_[1]\n"],"names":[],"mappings":";AAIA,MAAM,+BAA+B,sBAAsD,6BAA6B;AAE3G,MAAA,8BAA8B,6BAA6B,CAAC;AAI5D,MAAA,0BAA0B,6BAA6B,CAAC;AAErE,MAAM,+BAA+B,cAA0C,+BAA+B,MAAS;AAE1G,MAAA,8BAA8B,6BAA6B,CAAC;AAI5D,MAAA,0BAA0B,6BAA6B,CAAC;"}
|
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { DndContextProps } from '@dnd-kit/core';
|
|
3
|
+
/**
|
|
4
|
+
* Initializes dnd-kit based sorting for the repeater.
|
|
5
|
+
* Using the props, you can customize the behavior of the sorting and hook into the drag events.
|
|
6
|
+
*
|
|
7
|
+
* ## Example
|
|
8
|
+
* ```tsx
|
|
9
|
+
* <Repeater {...}>
|
|
10
|
+
* <RepeaterSortable>
|
|
11
|
+
* <RepeaterSortableEachItem>
|
|
12
|
+
* <div>
|
|
13
|
+
* <RepeaterSortableDropIndicator position={'before'}><div>Drop here</div></RepeaterSortableDropIndicator>
|
|
14
|
+
* <RepeaterSortableItemNode>
|
|
15
|
+
* <div>
|
|
16
|
+
* <RepeaterSortableItemActivator>
|
|
17
|
+
* <span/>
|
|
18
|
+
* </RepeaterSortableItemActivator>
|
|
19
|
+
* {children}
|
|
20
|
+
* </div>
|
|
21
|
+
* </RepeaterSortableItemNode>
|
|
22
|
+
* <RepeaterSortableDropIndicator position={'afer'}><div>Drop here</div></RepeaterSortableDropIndicator>
|
|
23
|
+
* </div>
|
|
24
|
+
* </RepeaterSortableEachItem>
|
|
25
|
+
* <RepeaterSortableDragOverlay>
|
|
26
|
+
* <div>
|
|
27
|
+
* {children}
|
|
28
|
+
* </div>
|
|
29
|
+
* </RepeaterSortableDragOverlay>
|
|
30
|
+
* </RepeaterSortable>
|
|
31
|
+
* </Repeater>
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
3
34
|
export declare const RepeaterSortable: ({ children, onDragStart, onDragEnd: onDragEndIn, onDragCancel: onDragCancelIn, ...props }: {
|
|
4
35
|
children: ReactNode;
|
|
5
36
|
} & DndContextProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RepeaterSortable.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortable.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAkC,MAAM,OAAO,CAAA;AAExE,OAAO,EAA6B,eAAe,EAAuI,MAAM,eAAe,CAAA;AAK/M,eAAO,MAAM,gBAAgB,8FAA+F;IAC3H,QAAQ,EAAE,SAAS,CAAA;CACnB,GAAG,eAAe,4CA4DlB,CAAA"}
|
|
1
|
+
{"version":3,"file":"RepeaterSortable.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortable.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAkC,MAAM,OAAO,CAAA;AAExE,OAAO,EAA6B,eAAe,EAAuI,MAAM,eAAe,CAAA;AAK/M;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,eAAO,MAAM,gBAAgB,8FAA+F;IAC3H,QAAQ,EAAE,SAAS,CAAA;CACnB,GAAG,eAAe,4CA4DlB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RepeaterSortableDragOverlay.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableDragOverlay.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAOxC,eAAO,MAAM,2BAA2B,iBAAkB;IACzD,QAAQ,EAAE,SAAS,CAAA;CACnB,mDAmBA,CAAA"}
|
|
1
|
+
{"version":3,"file":"RepeaterSortableDragOverlay.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableDragOverlay.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAOxC;;GAEG;AACH,eAAO,MAAM,2BAA2B,iBAAkB;IACzD,QAAQ,EAAE,SAAS,CAAA;CACnB,mDAmBA,CAAA"}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Renders a child element when the repeater item is being dragged over the drop indicator.
|
|
4
|
+
*/
|
|
2
5
|
export declare const RepeaterSortableDropIndicator: ({ children, position }: {
|
|
3
6
|
children: ReactNode;
|
|
4
7
|
position: "before" | "after";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RepeaterSortableDropIndicator.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableDropIndicator.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGxC,eAAO,MAAM,6BAA6B,2BAA4B;IACrE,QAAQ,EAAE,SAAS,CAAA;IACnB,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAA;CAC5B,mDAQA,CAAA"}
|
|
1
|
+
{"version":3,"file":"RepeaterSortableDropIndicator.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableDropIndicator.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAGxC;;GAEG;AACH,eAAO,MAAM,6BAA6B,2BAA4B;IACrE,QAAQ,EAAE,SAAS,CAAA;IACnB,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAA;CAC5B,mDAQA,CAAA"}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Iterates over all entities in the repeater and renders the children for each entity.
|
|
4
|
+
* Also sets up the dnd-kit sortable context for the repeater items.
|
|
5
|
+
*/
|
|
2
6
|
export declare const RepeaterSortableEachItem: ({ children }: {
|
|
3
7
|
children: ReactNode;
|
|
4
8
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RepeaterSortableEachItem.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableEachItem.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMxC,eAAO,MAAM,wBAAwB,iBAAkB;IACtD,QAAQ,EAAE,SAAS,CAAA;CACnB,4CAaA,CAAA"}
|
|
1
|
+
{"version":3,"file":"RepeaterSortableEachItem.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableEachItem.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMxC;;;GAGG;AACH,eAAO,MAAM,wBAAwB,iBAAkB;IACtD,QAAQ,EAAE,SAAS,CAAA;CACnB,4CAaA,CAAA"}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import React, {
|
|
1
|
+
import React, { ReactElement } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Slot for the repeater item activator, which is the element that triggers the drag and drop interaction (e.g. a handle).
|
|
4
|
+
*/
|
|
2
5
|
export declare const RepeaterSortableItemActivator: React.ForwardRefExoticComponent<{
|
|
3
|
-
children:
|
|
6
|
+
children: ReactElement;
|
|
4
7
|
} & React.RefAttributes<HTMLElement>>;
|
|
5
8
|
//# sourceMappingURL=RepeaterSortableItemActivator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RepeaterSortableItemActivator.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableItemActivator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAc,
|
|
1
|
+
{"version":3,"file":"RepeaterSortableItemActivator.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableItemActivator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAc,YAAY,EAAa,MAAM,OAAO,CAAA;AAKlE;;GAEG;AACH,eAAO,MAAM,6BAA6B;cAC/B,YAAY;qCAIrB,CAAA"}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactElement } from 'react';
|
|
2
|
+
/**
|
|
3
|
+
* Slot for the repeater item node, which is the element that is being dragged.
|
|
4
|
+
*/
|
|
2
5
|
export declare const RepeaterSortableItemNode: ({ children }: {
|
|
3
|
-
children:
|
|
6
|
+
children: ReactElement;
|
|
4
7
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
5
8
|
//# sourceMappingURL=RepeaterSortableItemNode.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RepeaterSortableItemNode.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableItemNode.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"RepeaterSortableItemNode.d.ts","sourceRoot":"","sources":["../../../src/components/RepeaterSortableItemNode.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAI3C;;GAEG;AACH,eAAO,MAAM,wBAAwB,iBAAkB;IACtD,QAAQ,EAAE,YAAY,CAAA;CACtB,4CAGA,CAAA"}
|
package/dist/types/contexts.d.ts
CHANGED
|
@@ -25,6 +25,9 @@ export declare const RepeaterSortableItemContext: import("react").Context<{
|
|
|
25
25
|
transform: import("@dnd-kit/utilities").Transform | null;
|
|
26
26
|
transition: string | undefined;
|
|
27
27
|
}>;
|
|
28
|
+
/**
|
|
29
|
+
* Returns the sortable context from dnd-kit (e.g. isDragging, isOver, setNodeRef) for the repeater item.
|
|
30
|
+
*/
|
|
28
31
|
export declare const useRepeaterSortableItem: () => {
|
|
29
32
|
active: import("@dnd-kit/core").Active | null;
|
|
30
33
|
activeIndex: number;
|
|
@@ -52,5 +55,8 @@ export declare const useRepeaterSortableItem: () => {
|
|
|
52
55
|
};
|
|
53
56
|
/** @internal */
|
|
54
57
|
export declare const RepeaterActiveEntityContext: import("react").Context<EntityAccessor | undefined>;
|
|
58
|
+
/**
|
|
59
|
+
* Returns the entity that is currently being dragged in the repeater.
|
|
60
|
+
*/
|
|
55
61
|
export declare const useRepeaterActiveEntity: () => EntityAccessor | undefined;
|
|
56
62
|
//# sourceMappingURL=contexts.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contexts.d.ts","sourceRoot":"","sources":["../../src/contexts.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AAIzD,gBAAgB;AAChB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;EAAkC,CAAA;AAC1E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;CAAkC,CAAA;AAGtE,gBAAgB;AAChB,eAAO,MAAM,2BAA2B,qDAAkC,CAAA;AAC1E,eAAO,MAAM,uBAAuB,kCAAkC,CAAA"}
|
|
1
|
+
{"version":3,"file":"contexts.d.ts","sourceRoot":"","sources":["../../src/contexts.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAA;AAIzD,gBAAgB;AAChB,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;EAAkC,CAAA;AAC1E;;GAEG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;CAAkC,CAAA;AAGtE,gBAAgB;AAChB,eAAO,MAAM,2BAA2B,qDAAkC,CAAA;AAC1E;;GAEG;AACH,eAAO,MAAM,uBAAuB,kCAAkC,CAAA"}
|