next-flow-interface 0.24.19 → 0.24.21
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/index.d.ts +4 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2954,6 +2954,7 @@ export declare class MixPartialData {
|
|
|
2954
2954
|
push(attribute: BaseAttribute, path: string | RvPath, value: unknown): void
|
|
2955
2955
|
forEach(callback: (attribute: BaseAttribute, path: RvPath, value: unknown) => void): void
|
|
2956
2956
|
forEachWithStringPath(callback: (attribute: BaseAttribute, path: string, value: unknown) => void): void
|
|
2957
|
+
toPartialData(): PartialData
|
|
2957
2958
|
}
|
|
2958
2959
|
|
|
2959
2960
|
/**
|
|
@@ -3569,6 +3570,7 @@ export declare class PartialData {
|
|
|
3569
3570
|
push(path: string | RvPath, value: unknown): void
|
|
3570
3571
|
forEach(callback: (path: RvPath, value: unknown) => void): void
|
|
3571
3572
|
forEachWithStringPath(callback: (path: string, value: unknown) => void): void
|
|
3573
|
+
toMixPartialData(attribute: BaseAttribute): MixPartialData
|
|
3572
3574
|
}
|
|
3573
3575
|
|
|
3574
3576
|
/**
|
|
@@ -5982,9 +5984,8 @@ export declare function showAttributeContextMenu<T = unknown>(options: ShowAttri
|
|
|
5982
5984
|
export declare interface ShowAttributeContextMenuOptions<T> {
|
|
5983
5985
|
event: MouseEvent_2
|
|
5984
5986
|
label?: string
|
|
5985
|
-
|
|
5986
|
-
|
|
5987
|
-
batchApply?: (value: T) => void
|
|
5987
|
+
copy?: () => void
|
|
5988
|
+
batchApply?: () => void
|
|
5988
5989
|
jumpToLearn?: () => void
|
|
5989
5990
|
reset?: () => void
|
|
5990
5991
|
}
|