ice-entity-designer 0.1.0 → 0.2.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/README.md +7 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/react.cjs +1 -1
- package/dist/react.mjs +1 -1
- package/dist/types/bpmn/BpmnSimulator.d.mts +1 -1
- package/dist/types/bpmn/BpmnSimulator.d.ts +1 -1
- package/dist/types/bpmn/bpmn_shapes.d.mts +8 -8
- package/dist/types/bpmn/bpmn_shapes.d.ts +8 -8
- package/dist/types/er-component/Entity.d.mts +1 -1
- package/dist/types/er-component/Entity.d.ts +1 -1
- package/dist/types/er-component/Relation.d.mts +1 -1
- package/dist/types/er-component/Relation.d.ts +1 -1
- package/dist/types/flow/FlowNode.d.mts +1 -1
- package/dist/types/flow/FlowNode.d.ts +1 -1
- package/dist/types/flow/flow_shapes.d.mts +2 -2
- package/dist/types/flow/flow_shapes.d.ts +2 -2
- package/dist/types/gantt/GanttDependency.d.mts +1 -1
- package/dist/types/gantt/GanttDependency.d.ts +1 -1
- package/dist/types/gantt/GanttRuler.d.mts +1 -1
- package/dist/types/gantt/GanttRuler.d.ts +1 -1
- package/dist/types/gantt/GanttTask.d.mts +1 -1
- package/dist/types/gantt/GanttTask.d.ts +1 -1
- package/dist/types/power/PowerDesigner.d.mts +1 -1
- package/dist/types/power/PowerDesigner.d.ts +1 -1
- package/dist/types/power/power_shapes.d.mts +1 -1
- package/dist/types/power/power_shapes.d.ts +1 -1
- package/dist/types/secondary/SecondaryDesigner.d.mts +1 -1
- package/dist/types/secondary/SecondaryDesigner.d.ts +1 -1
- package/dist/types/secondary/secondary_shapes.d.mts +2 -2
- package/dist/types/secondary/secondary_shapes.d.ts +2 -2
- package/dist/types/statechart/StateNode.d.mts +1 -1
- package/dist/types/statechart/StateNode.d.ts +1 -1
- package/dist/types/statechart/StateTransition.d.mts +1 -1
- package/dist/types/statechart/StateTransition.d.ts +1 -1
- package/dist/types/uml/UmlClass.d.mts +1 -1
- package/dist/types/uml/UmlClass.d.ts +1 -1
- package/dist/types/uml/UmlRelation.d.mts +1 -1
- package/dist/types/uml/UmlRelation.d.ts +1 -1
- package/dist/types/utils/component_type_util.d.mts +4 -0
- package/dist/types/utils/component_type_util.d.ts +4 -0
- package/dist/types/utils/type-registry.d.mts +11 -0
- package/dist/types/utils/type-registry.d.ts +11 -0
- package/package.json +3 -3
|
@@ -56,7 +56,7 @@ export declare const FLOW_NODE_KINDS: Record<FlowNodeKind, FlowNodePreset>;
|
|
|
56
56
|
*/
|
|
57
57
|
export default class FlowNode extends ICEGroup {
|
|
58
58
|
/** 稳定的类型标识(下游打包会 mangle 类名,判型不要用 constructor.name) */
|
|
59
|
-
static readonly typeId = "FlowNode";
|
|
59
|
+
static readonly typeId = "ice-entity-designer:FlowNode";
|
|
60
60
|
protected shapeComponent: any;
|
|
61
61
|
protected labelComponent: any;
|
|
62
62
|
/** BPMN 装饰件(任务角标 / 子流程标记),随形状一起重建 */
|
|
@@ -56,7 +56,7 @@ export declare const FLOW_NODE_KINDS: Record<FlowNodeKind, FlowNodePreset>;
|
|
|
56
56
|
*/
|
|
57
57
|
export default class FlowNode extends ICEGroup {
|
|
58
58
|
/** 稳定的类型标识(下游打包会 mangle 类名,判型不要用 constructor.name) */
|
|
59
|
-
static readonly typeId = "FlowNode";
|
|
59
|
+
static readonly typeId = "ice-entity-designer:FlowNode";
|
|
60
60
|
protected shapeComponent: any;
|
|
61
61
|
protected labelComponent: any;
|
|
62
62
|
/** BPMN 装饰件(任务角标 / 子流程标记),随形状一起重建 */
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
import { ICEPath } from 'ice-render';
|
|
9
9
|
/** 判定节点:菱形 */
|
|
10
10
|
export declare class FlowDiamond extends ICEPath {
|
|
11
|
-
static readonly typeId = "FlowDiamond";
|
|
11
|
+
static readonly typeId = "ice-entity-designer:FlowDiamond";
|
|
12
12
|
protected createPathObject(): any;
|
|
13
13
|
}
|
|
14
14
|
/** 输入 / 输出节点:平行四边形 */
|
|
15
15
|
export declare class FlowParallelogram extends ICEPath {
|
|
16
|
-
static readonly typeId = "FlowParallelogram";
|
|
16
|
+
static readonly typeId = "ice-entity-designer:FlowParallelogram";
|
|
17
17
|
protected createPathObject(): any;
|
|
18
18
|
}
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
import { ICEPath } from 'ice-render';
|
|
9
9
|
/** 判定节点:菱形 */
|
|
10
10
|
export declare class FlowDiamond extends ICEPath {
|
|
11
|
-
static readonly typeId = "FlowDiamond";
|
|
11
|
+
static readonly typeId = "ice-entity-designer:FlowDiamond";
|
|
12
12
|
protected createPathObject(): any;
|
|
13
13
|
}
|
|
14
14
|
/** 输入 / 输出节点:平行四边形 */
|
|
15
15
|
export declare class FlowParallelogram extends ICEPath {
|
|
16
|
-
static readonly typeId = "FlowParallelogram";
|
|
16
|
+
static readonly typeId = "ice-entity-designer:FlowParallelogram";
|
|
17
17
|
protected createPathObject(): any;
|
|
18
18
|
}
|
|
@@ -13,6 +13,6 @@ import { ICEPolyLine } from 'ice-render';
|
|
|
13
13
|
* 依赖只表达约束,不改变条的位置(自动排程是后续能力,不属于本包 v1)。
|
|
14
14
|
*/
|
|
15
15
|
export default class GanttDependency extends ICEPolyLine {
|
|
16
|
-
static readonly typeId = "GanttDependency";
|
|
16
|
+
static readonly typeId = "ice-entity-designer:GanttDependency";
|
|
17
17
|
constructor(props?: any);
|
|
18
18
|
}
|
|
@@ -13,6 +13,6 @@ import { ICEPolyLine } from 'ice-render';
|
|
|
13
13
|
* 依赖只表达约束,不改变条的位置(自动排程是后续能力,不属于本包 v1)。
|
|
14
14
|
*/
|
|
15
15
|
export default class GanttDependency extends ICEPolyLine {
|
|
16
|
-
static readonly typeId = "GanttDependency";
|
|
16
|
+
static readonly typeId = "ice-entity-designer:GanttDependency";
|
|
17
17
|
constructor(props?: any);
|
|
18
18
|
}
|
|
@@ -31,7 +31,7 @@ export type GanttRulerOptions = {
|
|
|
31
31
|
* 避免长排期把画布画满文字(这也是甘特工具通行做法)。
|
|
32
32
|
*/
|
|
33
33
|
export default class GanttRuler extends ICEGroup {
|
|
34
|
-
static readonly typeId = "GanttRuler";
|
|
34
|
+
static readonly typeId = "ice-entity-designer:GanttRuler";
|
|
35
35
|
constructor();
|
|
36
36
|
hasDerivedChildren(): boolean;
|
|
37
37
|
/** 按当前任务模型重建框架 */
|
|
@@ -31,7 +31,7 @@ export type GanttRulerOptions = {
|
|
|
31
31
|
* 避免长排期把画布画满文字(这也是甘特工具通行做法)。
|
|
32
32
|
*/
|
|
33
33
|
export default class GanttRuler extends ICEGroup {
|
|
34
|
-
static readonly typeId = "GanttRuler";
|
|
34
|
+
static readonly typeId = "ice-entity-designer:GanttRuler";
|
|
35
35
|
constructor();
|
|
36
36
|
hasDerivedChildren(): boolean;
|
|
37
37
|
/** 按当前任务模型重建框架 */
|
|
@@ -15,7 +15,7 @@ import { ICEGroup, ICERect, ICEText } from 'ice-render';
|
|
|
15
15
|
* 并据此反推起始日期 —— 拖动不会产生「3 月 5 日的 13:47 开工」这种排期。
|
|
16
16
|
*/
|
|
17
17
|
export default class GanttTask extends ICEGroup {
|
|
18
|
-
static readonly typeId = "GanttTask";
|
|
18
|
+
static readonly typeId = "ice-entity-designer:GanttTask";
|
|
19
19
|
protected barComponent: ICERect | null;
|
|
20
20
|
protected progressComponent: ICERect | null;
|
|
21
21
|
protected labelComponent: ICEText | null;
|
|
@@ -15,7 +15,7 @@ import { ICEGroup, ICERect, ICEText } from 'ice-render';
|
|
|
15
15
|
* 并据此反推起始日期 —— 拖动不会产生「3 月 5 日的 13:47 开工」这种排期。
|
|
16
16
|
*/
|
|
17
17
|
export default class GanttTask extends ICEGroup {
|
|
18
|
-
static readonly typeId = "GanttTask";
|
|
18
|
+
static readonly typeId = "ice-entity-designer:GanttTask";
|
|
19
19
|
protected barComponent: ICERect | null;
|
|
20
20
|
protected progressComponent: ICERect | null;
|
|
21
21
|
protected labelComponent: ICEText | null;
|
|
@@ -33,7 +33,7 @@ export type PowerTopology = {
|
|
|
33
33
|
};
|
|
34
34
|
/** 一次系统图的导线(导体)—— 复用引擎折线,颜色跟电压等级走 */
|
|
35
35
|
export declare class PowerLine extends FlowEdge {
|
|
36
|
-
static readonly typeId = "PowerLine";
|
|
36
|
+
static readonly typeId = "ice-entity-designer:PowerLine";
|
|
37
37
|
constructor(props?: any);
|
|
38
38
|
/** 电压等级 → 线色(不标等级时用中性色) */
|
|
39
39
|
applyVoltageColor(table?: Record<string, string>): void;
|
|
@@ -33,7 +33,7 @@ export type PowerTopology = {
|
|
|
33
33
|
};
|
|
34
34
|
/** 一次系统图的导线(导体)—— 复用引擎折线,颜色跟电压等级走 */
|
|
35
35
|
export declare class PowerLine extends FlowEdge {
|
|
36
|
-
static readonly typeId = "PowerLine";
|
|
36
|
+
static readonly typeId = "ice-entity-designer:PowerLine";
|
|
37
37
|
constructor(props?: any);
|
|
38
38
|
/** 电压等级 → 线色(不标等级时用中性色) */
|
|
39
39
|
applyVoltageColor(table?: Record<string, string>): void;
|
|
@@ -66,7 +66,7 @@ export type PowerSwitchState = 'open' | 'closed';
|
|
|
66
66
|
* **不用位置去猜**。
|
|
67
67
|
*/
|
|
68
68
|
export default class PowerSymbol extends ICEGroup {
|
|
69
|
-
static readonly typeId = "PowerSymbol";
|
|
69
|
+
static readonly typeId = "ice-entity-designer:PowerSymbol";
|
|
70
70
|
/** 派生部件:`{ role, component }` 列表(按添加顺序) */
|
|
71
71
|
parts: Array<{
|
|
72
72
|
role: string;
|
|
@@ -66,7 +66,7 @@ export type PowerSwitchState = 'open' | 'closed';
|
|
|
66
66
|
* **不用位置去猜**。
|
|
67
67
|
*/
|
|
68
68
|
export default class PowerSymbol extends ICEGroup {
|
|
69
|
-
static readonly typeId = "PowerSymbol";
|
|
69
|
+
static readonly typeId = "ice-entity-designer:PowerSymbol";
|
|
70
70
|
/** 派生部件:`{ role, component }` 列表(按添加顺序) */
|
|
71
71
|
parts: Array<{
|
|
72
72
|
role: string;
|
|
@@ -24,7 +24,7 @@ export type SecondaryIssue = {
|
|
|
24
24
|
};
|
|
25
25
|
/** 二次回路的导线:复用引擎折线(插槽吸附 / 正交路由 / 标签),额外带回路编号与电缆编号 */
|
|
26
26
|
export declare class SecondaryWire extends FlowEdge {
|
|
27
|
-
static readonly typeId = "SecondaryWire";
|
|
27
|
+
static readonly typeId = "ice-entity-designer:SecondaryWire";
|
|
28
28
|
constructor(props?: any);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
@@ -24,7 +24,7 @@ export type SecondaryIssue = {
|
|
|
24
24
|
};
|
|
25
25
|
/** 二次回路的导线:复用引擎折线(插槽吸附 / 正交路由 / 标签),额外带回路编号与电缆编号 */
|
|
26
26
|
export declare class SecondaryWire extends FlowEdge {
|
|
27
|
-
static readonly typeId = "SecondaryWire";
|
|
27
|
+
static readonly typeId = "ice-entity-designer:SecondaryWire";
|
|
28
28
|
constructor(props?: any);
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
@@ -41,7 +41,7 @@ export declare const SECONDARY_STYLE: {
|
|
|
41
41
|
* 每个派生部件带稳定 `role`,测试按 role 认记法。
|
|
42
42
|
*/
|
|
43
43
|
export default class SecondarySymbol extends ICEGroup {
|
|
44
|
-
static readonly typeId = "SecondarySymbol";
|
|
44
|
+
static readonly typeId = "ice-entity-designer:SecondarySymbol";
|
|
45
45
|
parts: Array<{
|
|
46
46
|
role: string;
|
|
47
47
|
component: any;
|
|
@@ -70,6 +70,6 @@ export default class SecondarySymbol extends ICEGroup {
|
|
|
70
70
|
* 跳过全部子节点,端子排的端子在快照往返时会整套丢掉(BPMN 池/泳道目前就踩了这个坑)。
|
|
71
71
|
*/
|
|
72
72
|
export declare class TerminalStrip extends ICEGroup {
|
|
73
|
-
static readonly typeId = "TerminalStrip";
|
|
73
|
+
static readonly typeId = "ice-entity-designer:TerminalStrip";
|
|
74
74
|
constructor(props?: any);
|
|
75
75
|
}
|
|
@@ -41,7 +41,7 @@ export declare const SECONDARY_STYLE: {
|
|
|
41
41
|
* 每个派生部件带稳定 `role`,测试按 role 认记法。
|
|
42
42
|
*/
|
|
43
43
|
export default class SecondarySymbol extends ICEGroup {
|
|
44
|
-
static readonly typeId = "SecondarySymbol";
|
|
44
|
+
static readonly typeId = "ice-entity-designer:SecondarySymbol";
|
|
45
45
|
parts: Array<{
|
|
46
46
|
role: string;
|
|
47
47
|
component: any;
|
|
@@ -70,6 +70,6 @@ export default class SecondarySymbol extends ICEGroup {
|
|
|
70
70
|
* 跳过全部子节点,端子排的端子在快照往返时会整套丢掉(BPMN 池/泳道目前就踩了这个坑)。
|
|
71
71
|
*/
|
|
72
72
|
export declare class TerminalStrip extends ICEGroup {
|
|
73
|
-
static readonly typeId = "TerminalStrip";
|
|
73
|
+
static readonly typeId = "ice-entity-designer:TerminalStrip";
|
|
74
74
|
constructor(props?: any);
|
|
75
75
|
}
|
|
@@ -19,7 +19,7 @@ export type StatechartNodeKind = (typeof STATECHART_NODE_KINDS)[number];
|
|
|
19
19
|
* - `composite` 复合状态:**容器** —— 名字靠左上,框里留给子状态;拖动它子状态一起走(引擎容器能力)
|
|
20
20
|
*/
|
|
21
21
|
export default class StateNode extends ICEGroup {
|
|
22
|
-
static readonly typeId = "StateNode";
|
|
22
|
+
static readonly typeId = "ice-entity-designer:StateNode";
|
|
23
23
|
protected shapeComponent: any;
|
|
24
24
|
protected innerRingComponent: any;
|
|
25
25
|
protected labelComponent: ICEText | null;
|
|
@@ -19,7 +19,7 @@ export type StatechartNodeKind = (typeof STATECHART_NODE_KINDS)[number];
|
|
|
19
19
|
* - `composite` 复合状态:**容器** —— 名字靠左上,框里留给子状态;拖动它子状态一起走(引擎容器能力)
|
|
20
20
|
*/
|
|
21
21
|
export default class StateNode extends ICEGroup {
|
|
22
|
-
static readonly typeId = "StateNode";
|
|
22
|
+
static readonly typeId = "ice-entity-designer:StateNode";
|
|
23
23
|
protected shapeComponent: any;
|
|
24
24
|
protected innerRingComponent: any;
|
|
25
25
|
protected labelComponent: ICEText | null;
|
|
@@ -16,7 +16,7 @@ import { ICEPolyLine } from 'ice-render';
|
|
|
16
16
|
* 判型与序列化都靠它(应用层不要用 constructor.name,打包会 mangle)。
|
|
17
17
|
*/
|
|
18
18
|
export default class StateTransition extends ICEPolyLine {
|
|
19
|
-
static readonly typeId = "StateTransition";
|
|
19
|
+
static readonly typeId = "ice-entity-designer:StateTransition";
|
|
20
20
|
constructor(props?: any);
|
|
21
21
|
protected static arrangeParam(props?: any): any;
|
|
22
22
|
/**
|
|
@@ -16,7 +16,7 @@ import { ICEPolyLine } from 'ice-render';
|
|
|
16
16
|
* 判型与序列化都靠它(应用层不要用 constructor.name,打包会 mangle)。
|
|
17
17
|
*/
|
|
18
18
|
export default class StateTransition extends ICEPolyLine {
|
|
19
|
-
static readonly typeId = "StateTransition";
|
|
19
|
+
static readonly typeId = "ice-entity-designer:StateTransition";
|
|
20
20
|
constructor(props?: any);
|
|
21
21
|
protected static arrangeParam(props?: any): any;
|
|
22
22
|
/**
|
|
@@ -21,7 +21,7 @@ export type UmlClassKind = 'class' | 'interface' | 'enum';
|
|
|
21
21
|
*/
|
|
22
22
|
export default class UmlClass extends ICEGroup {
|
|
23
23
|
/** 稳定类型标识(判型/序列化都用它,不要用 constructor.name:打包会被 mangle) */
|
|
24
|
-
static readonly typeId = "UmlClass";
|
|
24
|
+
static readonly typeId = "ice-entity-designer:UmlClass";
|
|
25
25
|
protected stereotypeComponent: ICEText | null;
|
|
26
26
|
protected nameComponent: ICEText | null;
|
|
27
27
|
protected headerBackgroundComponent: ICERect | null;
|
|
@@ -21,7 +21,7 @@ export type UmlClassKind = 'class' | 'interface' | 'enum';
|
|
|
21
21
|
*/
|
|
22
22
|
export default class UmlClass extends ICEGroup {
|
|
23
23
|
/** 稳定类型标识(判型/序列化都用它,不要用 constructor.name:打包会被 mangle) */
|
|
24
|
-
static readonly typeId = "UmlClass";
|
|
24
|
+
static readonly typeId = "ice-entity-designer:UmlClass";
|
|
25
25
|
protected stereotypeComponent: ICEText | null;
|
|
26
26
|
protected nameComponent: ICEText | null;
|
|
27
27
|
protected headerBackgroundComponent: ICERect | null;
|
|
@@ -50,7 +50,7 @@ export declare const UML_RELATION_COLOR: Record<UmlRelationKind, string>;
|
|
|
50
50
|
* - 包围盒、命中检测也跟着正确。
|
|
51
51
|
*/
|
|
52
52
|
export default class UmlRelation extends ICEPolyLine {
|
|
53
|
-
static readonly typeId = "UmlRelation";
|
|
53
|
+
static readonly typeId = "ice-entity-designer:UmlRelation";
|
|
54
54
|
constructor(props?: any);
|
|
55
55
|
protected static arrangeParam(props: any): any;
|
|
56
56
|
setState(patch: any): void;
|
|
@@ -50,7 +50,7 @@ export declare const UML_RELATION_COLOR: Record<UmlRelationKind, string>;
|
|
|
50
50
|
* - 包围盒、命中检测也跟着正确。
|
|
51
51
|
*/
|
|
52
52
|
export default class UmlRelation extends ICEPolyLine {
|
|
53
|
-
static readonly typeId = "UmlRelation";
|
|
53
|
+
static readonly typeId = "ice-entity-designer:UmlRelation";
|
|
54
54
|
constructor(props?: any);
|
|
55
55
|
protected static arrangeParam(props: any): any;
|
|
56
56
|
setState(patch: any): void;
|
|
@@ -2,3 +2,7 @@
|
|
|
2
2
|
export declare function isEntity(component: any): boolean;
|
|
3
3
|
/** 是否为关系(连线)组件(含其子类) */
|
|
4
4
|
export declare function isRelation(component: any): boolean;
|
|
5
|
+
/** 领域快照里的 typeId 是否代表 Entity。 */
|
|
6
|
+
export declare function isEntityTypeId(typeId: unknown): boolean;
|
|
7
|
+
/** 领域快照里的 typeId 是否代表 Relation。 */
|
|
8
|
+
export declare function isRelationTypeId(typeId: unknown): boolean;
|
|
@@ -2,3 +2,7 @@
|
|
|
2
2
|
export declare function isEntity(component: any): boolean;
|
|
3
3
|
/** 是否为关系(连线)组件(含其子类) */
|
|
4
4
|
export declare function isRelation(component: any): boolean;
|
|
5
|
+
/** 领域快照里的 typeId 是否代表 Entity。 */
|
|
6
|
+
export declare function isEntityTypeId(typeId: unknown): boolean;
|
|
7
|
+
/** 领域快照里的 typeId 是否代表 Relation。 */
|
|
8
|
+
export declare function isRelationTypeId(typeId: unknown): boolean;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ice-entity-designer 的类型注册命名空间。
|
|
3
|
+
*
|
|
4
|
+
* typeId 统一为 `ice-entity-designer:Type`(引擎侧只认 `namespace:Type` 一种形式,
|
|
5
|
+
* 不做「旧的无 namespace 类名」兼容 —— 家族仍在发布初期,改名比养一套别名简单)。
|
|
6
|
+
*/
|
|
7
|
+
export declare const IED_NAMESPACE = "ice-entity-designer";
|
|
8
|
+
export declare function iedTypeId(type: string): string;
|
|
9
|
+
export declare function registerIEDType(ice: any, Clazz: {
|
|
10
|
+
typeId: string;
|
|
11
|
+
}): void;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ice-entity-designer 的类型注册命名空间。
|
|
3
|
+
*
|
|
4
|
+
* typeId 统一为 `ice-entity-designer:Type`(引擎侧只认 `namespace:Type` 一种形式,
|
|
5
|
+
* 不做「旧的无 namespace 类名」兼容 —— 家族仍在发布初期,改名比养一套别名简单)。
|
|
6
|
+
*/
|
|
7
|
+
export declare const IED_NAMESPACE = "ice-entity-designer";
|
|
8
|
+
export declare function iedTypeId(type: string): string;
|
|
9
|
+
export declare function registerIEDType(ice: any, Clazz: {
|
|
10
|
+
typeId: string;
|
|
11
|
+
}): void;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "大漠穷秋",
|
|
3
3
|
"name": "ice-entity-designer",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.2.0",
|
|
5
5
|
"description": "An entity designer based on ice-render.",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"types:watch": "npm run types:check -- --watch"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"ice-render": "^
|
|
62
|
+
"ice-render": "^2.0.0",
|
|
63
63
|
"react": "^18 || ^19",
|
|
64
64
|
"react-dom": "^18 || ^19"
|
|
65
65
|
},
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
102
102
|
"http-server": "14.1.1",
|
|
103
103
|
"husky": "8.0.3",
|
|
104
|
-
"ice-render": "^
|
|
104
|
+
"ice-render": "^2.0.0",
|
|
105
105
|
"jest": "29.7.0",
|
|
106
106
|
"jest-environment-jsdom": "29.7.0",
|
|
107
107
|
"lint-staged": "15.5.2",
|