@processandtools/rp-article-designer 1.0.83 → 1.0.86
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 +0 -0
- package/dist/components/article_designer/helpers/DrawerSensor.d.ts +1 -1
- package/dist/components/elements_manager/KmsRenderer.d.ts +3 -1
- package/dist/conditions/helpers/ConditionTreeEvaluator.d.ts +3 -2
- package/dist/construction_principle/drawer/DrawerHelper.d.ts +1 -2
- package/dist/data/articles.d.ts +0 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/divider.types.d.ts +3 -2
- package/dist/vite.svg +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
File without changes
|
|
@@ -8,5 +8,5 @@ interface DrawerSensorProps {
|
|
|
8
8
|
onset: boolean;
|
|
9
9
|
kms?: KmsResult;
|
|
10
10
|
}
|
|
11
|
-
export default function DrawerSensor({ panelWidth, panelHeight, panelThk, treeId, onset, }: DrawerSensorProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export default function DrawerSensor({ kms, panelWidth, panelHeight, panelThk, treeId, onset, }: DrawerSensorProps): import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { SpecialKmsProps } from '../../construction_principle/kms/spec-kms/special.kms';
|
|
2
2
|
import { CpDispatcherResult } from '../../construction_principle/dto/cp-dispatcher.types';
|
|
3
|
+
import { KmsResult } from '../../construction_principle/kms/KmsHelper';
|
|
3
4
|
interface SpecialKmsRendererProps extends Omit<SpecialKmsProps, 'materialLoaderResult' | 'cp'> {
|
|
4
5
|
cp?: CpDispatcherResult;
|
|
6
|
+
kms?: KmsResult;
|
|
5
7
|
startPanelThk?: number;
|
|
6
8
|
endPanelThk?: number;
|
|
7
9
|
}
|
|
8
|
-
export default function KmsRenderer({ handlePosition, cp, length, width, thk, startPanelThk, endPanelThk, treeId, elemInfo, meshRef, }: SpecialKmsRendererProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export default function KmsRenderer({ handlePosition, cp, kms: specialKms, length, width, thk, startPanelThk, endPanelThk, treeId, elemInfo, meshRef, }: SpecialKmsRendererProps): import("react/jsx-runtime").JSX.Element;
|
|
9
11
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ConditionTreeResponse, TreeNode } from '../types/condition.types';
|
|
2
|
+
import { DescriptorResponse } from '../../descriptor/types/descriptor.types';
|
|
2
3
|
export declare class ConditionTreeEvaluator {
|
|
3
|
-
static evaluateTree: (tree: ConditionTreeResponse, data: Record<string, unknown>, resolveVarRecursive: (str: string) => string) => boolean;
|
|
4
|
-
static evaluateNode: (node: TreeNode, data: Record<string, unknown>, resolveVarRecursive: (str: string) => string) => boolean;
|
|
4
|
+
static evaluateTree: (tree: ConditionTreeResponse, data: Record<string, unknown>, resolveVarRecursive: (str: string) => string, descriptor: DescriptorResponse) => boolean;
|
|
5
|
+
static evaluateNode: (node: TreeNode, data: Record<string, unknown>, resolveVarRecursive: (str: string) => string, descriptor: DescriptorResponse) => boolean;
|
|
5
6
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DataContextType } from '../../types/data.types';
|
|
2
2
|
import { KmsResult } from '../kms/KmsHelper';
|
|
3
3
|
import { MatSurfContextValue } from '../../contexts/mat-surf/MatSurfContext';
|
|
4
|
-
interface DrCpResult {
|
|
4
|
+
export interface DrCpResult {
|
|
5
5
|
kms?: KmsResult;
|
|
6
6
|
inset: number;
|
|
7
7
|
}
|
|
@@ -13,4 +13,3 @@ export interface DrawerHelperResult {
|
|
|
13
13
|
right: DrCpResult;
|
|
14
14
|
}
|
|
15
15
|
export default function DrawerHelper(resolveVarRecursive: (str: string) => string, matSurfContext: MatSurfContextValue, articleData: DataContextType, NAME: string): DrawerHelperResult | undefined;
|
|
16
|
-
export {};
|