@buerli.io/react-cad 0.13.1-beta.3 → 0.13.1-beta.4

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.
@@ -5,6 +5,7 @@ import { MemberParam } from '../../../../types';
5
5
  export declare const CSysEditor: React.FC<{
6
6
  param: MemberParam<PointMemValue[]>;
7
7
  csysRow: CSysRows;
8
+ iconUrl?: string;
8
9
  caption?: string;
9
10
  validator?: (x: PointMemValue, pName?: string) => string[];
10
11
  }>;
@@ -4,6 +4,7 @@ import { MemberParam, APIParam } from '../../../../types';
4
4
  export declare const NumberEditor: React.FC<{
5
5
  param: MemberParam<APIParam<number>>;
6
6
  drawingId: DrawingID;
7
+ iconUrl?: string;
7
8
  caption?: string;
8
9
  validator?: (numParam: APIParam<number>, pName?: string) => string[];
9
10
  allowExpr?: boolean;
@@ -4,6 +4,7 @@ import { MemberParam, APIParam } from '../../../../types';
4
4
  export declare const PointEditor: React.FC<{
5
5
  param: MemberParam<APIParam<PointMemValue>>;
6
6
  drawingId: DrawingID;
7
+ iconUrl?: string;
7
8
  caption?: string;
8
9
  validator?: (x: APIParam<PointMemValue>, pName?: string) => string[];
9
10
  }>;
@@ -6,6 +6,7 @@ import { MateParam } from './useMateParam';
6
6
  export declare const MateEditor: React.FC<{
7
7
  param: MemberParam<MateParam>;
8
8
  drawingId: DrawingID;
9
+ iconUrl?: string;
9
10
  caption?: string;
10
11
  selectorsOrder?: SelectorsOrderT;
11
12
  validator?: (ref: ObjectID | undefined, pName?: string) => string[];
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { DrawingID, SelectorID } from '@buerli.io/core';
3
+ import { MemberParam } from '../../../../types';
4
+ import { MateParam } from './useMateParam';
5
+ export declare const MateOrientationEditor: React.FC<{
6
+ param: MemberParam<MateParam>;
7
+ drawingId: DrawingID;
8
+ selectorId: SelectorID | undefined;
9
+ }>;
@@ -9,6 +9,7 @@ export declare const RefEditor: React.FC<{
9
9
  drawingId: DrawingID;
10
10
  filter: any;
11
11
  customIdPicker?: (data: any) => ObjectID;
12
+ iconUrl?: string;
12
13
  caption?: string;
13
14
  idxOfRef?: number;
14
15
  selectorsOrder?: SelectorsOrderT;
@@ -7,6 +7,7 @@ export declare const RefsEditor: React.FC<{
7
7
  drawingId: DrawingID;
8
8
  filter: any;
9
9
  customIdPicker?: (data: any) => ObjectID;
10
+ iconUrl?: string;
10
11
  caption?: string;
11
12
  selectorsOrder?: SelectorsOrderT;
12
13
  maxLen?: number;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export declare const TypeWrapper: React.FC<{
3
+ justifyEnd?: boolean;
4
+ children?: React.ReactNode;
5
+ }>;
@@ -2,7 +2,8 @@ import React from 'react';
2
2
  export declare const Wrapper: React.FC<{
3
3
  highlighted?: boolean;
4
4
  minor?: boolean;
5
- caption: string | undefined;
5
+ caption?: string;
6
+ iconUrl?: string;
6
7
  contentWidth?: number;
7
8
  children?: React.ReactNode;
8
9
  }>;