@processandtools/rp-article-designer 1.0.34 → 1.0.35
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/components/article_designer/ArticleDesigner.d.ts +2 -2
- package/dist/components/article_designer/Designer.d.ts +3 -4
- package/dist/contexts/dimension/DimensionContext.d.ts +6 -0
- package/dist/contexts/dimension/DimensionProvider.d.ts +6 -0
- package/dist/contexts/dimension/useDimensions.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/article_designer/ArticleWithController.d.ts +0 -16
package/package.json
CHANGED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { VIEW } from '../../types/view.types';
|
|
2
|
-
import { ArticleGroupTypes } from '../../types/article-group.types';
|
|
3
|
-
export interface ArticleWithControllerProps {
|
|
4
|
-
article: ArticleGroupTypes;
|
|
5
|
-
articleId: string;
|
|
6
|
-
position: [number, number, number];
|
|
7
|
-
isSelected: boolean;
|
|
8
|
-
onSelect: () => void;
|
|
9
|
-
view: VIEW;
|
|
10
|
-
debugMode: boolean;
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* Wrapper component that provides shared context for both the article designer
|
|
14
|
-
* and the variable controller, ensuring they work on the same variable state
|
|
15
|
-
*/
|
|
16
|
-
export declare const ArticleWithController: import('react').NamedExoticComponent<ArticleWithControllerProps>;
|