next-flow-interface 0.20.7 → 0.20.8
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/rsd/rsd-target-info-props.d.ts +1 -0
- package/dist/components/rsd/rsd-target-info-props.d.ts.map +1 -1
- package/dist/hook/use-all-selected-info.type.d.ts +1 -1
- package/dist/hook/use-all-selected-info.type.d.ts.map +1 -1
- package/dist/hook/use-last-selected-info.type.d.ts +1 -1
- package/dist/hook/use-last-selected-info.type.d.ts.map +1 -1
- package/dist/hook/use-selected-info.type.d.ts +1 -1
- package/dist/hook/use-selected-info.type.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rsd-target-info-props.d.ts","sourceRoot":"","sources":["../../../src/components/rsd/rsd-target-info-props.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAA;AAElE,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,GAAG,EAAE,MAAM,CAAA;IACX,cAAc,CAAC,IAAI,MAAM,CAAA;IACzB,UAAU,CAAC,IAAI,MAAM,CAAA;IACrB,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B"}
|
|
1
|
+
{"version":3,"file":"rsd-target-info-props.d.ts","sourceRoot":"","sources":["../../../src/components/rsd/rsd-target-info-props.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAA;AAElE,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,GAAG,EAAE,MAAM,CAAA;IACX,cAAc,CAAC,IAAI,MAAM,CAAA;IACzB,UAAU,CAAC,IAAI,MAAM,CAAA;IACrB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,kBAAkB,CAAC,EAAE,OAAO,CAAA;CAC7B"}
|
|
@@ -3,6 +3,6 @@ import { RsSelectionMaterialInfo } from '../service/engine/operate/selection/dto
|
|
|
3
3
|
export type UseAllSelectedInfo = () => {
|
|
4
4
|
selected: RsSelectionNodeInfo[];
|
|
5
5
|
materialInfo: RsSelectionMaterialInfo;
|
|
6
|
-
last: RsSelectionNodeInfo;
|
|
6
|
+
last: RsSelectionNodeInfo | null;
|
|
7
7
|
};
|
|
8
8
|
//# sourceMappingURL=use-all-selected-info.type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-all-selected-info.type.d.ts","sourceRoot":"","sources":["../../src/hook/use-all-selected-info.type.ts"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,MAAM,+DAA+D,CAAA;AAC/F,OAAO,EAAE,uBAAuB,EAAE,MAAM,qEAAqE,CAAA;AAE7G,MAAM,MAAM,kBAAkB,GAAG,MAAM;IACrC,QAAQ,EAAE,mBAAmB,EAAE,CAAA;IAC/B,YAAY,EAAE,uBAAuB,CAAA;IACrC,IAAI,EAAE,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"use-all-selected-info.type.d.ts","sourceRoot":"","sources":["../../src/hook/use-all-selected-info.type.ts"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,MAAM,+DAA+D,CAAA;AAC/F,OAAO,EAAE,uBAAuB,EAAE,MAAM,qEAAqE,CAAA;AAE7G,MAAM,MAAM,kBAAkB,GAAG,MAAM;IACrC,QAAQ,EAAE,mBAAmB,EAAE,CAAA;IAC/B,YAAY,EAAE,uBAAuB,CAAA;IACrC,IAAI,EAAE,mBAAmB,GAAG,IAAI,CAAA;CACjC,CAAA"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as RsSelectionNodeInfo } from '../service/engine/operate/selection/dto/rs-selection-node-info';
|
|
2
|
-
export type UseLastSelectedInfo = () => RsSelectionNodeInfo
|
|
2
|
+
export type UseLastSelectedInfo = () => RsSelectionNodeInfo | null;
|
|
3
3
|
//# sourceMappingURL=use-last-selected-info.type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-last-selected-info.type.d.ts","sourceRoot":"","sources":["../../src/hook/use-last-selected-info.type.ts"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,MAAM,+DAA+D,CAAA;AAE/F,MAAM,MAAM,mBAAmB,GAAG,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"use-last-selected-info.type.d.ts","sourceRoot":"","sources":["../../src/hook/use-last-selected-info.type.ts"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,MAAM,+DAA+D,CAAA;AAE/F,MAAM,MAAM,mBAAmB,GAAG,MAAM,mBAAmB,GAAG,IAAI,CAAA"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { default as RsSelectionNodeInfo } from '../service/engine/operate/selection/dto/rs-selection-node-info';
|
|
2
|
-
export type UseSelectedInfo = () => RsSelectionNodeInfo;
|
|
2
|
+
export type UseSelectedInfo = () => RsSelectionNodeInfo[];
|
|
3
3
|
//# sourceMappingURL=use-selected-info.type.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-selected-info.type.d.ts","sourceRoot":"","sources":["../../src/hook/use-selected-info.type.ts"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,MAAM,+DAA+D,CAAA;AAE/F,MAAM,MAAM,eAAe,GAAG,MAAM,mBAAmB,CAAA"}
|
|
1
|
+
{"version":3,"file":"use-selected-info.type.d.ts","sourceRoot":"","sources":["../../src/hook/use-selected-info.type.ts"],"names":[],"mappings":"AAAA,OAAO,mBAAmB,MAAM,+DAA+D,CAAA;AAE/F,MAAM,MAAM,eAAe,GAAG,MAAM,mBAAmB,EAAE,CAAA"}
|
package/package.json
CHANGED