@vef-framework-react/approval-flow-editor 2.4.0 → 2.4.1
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/LICENSE +201 -0
- package/dist/es/components/accent-icon-badge.js +1 -1
- package/dist/es/components/approval-flow-editor.js +1 -1
- package/dist/es/components/config/approval-node-config.js +1 -1
- package/dist/es/components/config/assignee-list.js +1 -1
- package/dist/es/components/config/basic-node-config.js +1 -1
- package/dist/es/components/config/cc-list.js +1 -1
- package/dist/es/components/config/cc-node-config.js +1 -1
- package/dist/es/components/config/condition-config.js +1 -1
- package/dist/es/components/config/condition-editor-modal.js +1 -1
- package/dist/es/components/config/condition-operators.js +1 -1
- package/dist/es/components/config/condition-rule-item.js +1 -1
- package/dist/es/components/config/field-permission-table.js +1 -1
- package/dist/es/components/config/handle-node-config.js +1 -1
- package/dist/es/components/config/principal-picker.js +1 -1
- package/dist/es/components/config/shared.js +1 -1
- package/dist/es/components/config-panel.js +1 -1
- package/dist/es/components/edges/approval-edge.js +1 -1
- package/dist/es/components/edges/index.js +1 -1
- package/dist/es/components/editor-toolbar.js +1 -1
- package/dist/es/components/nodes/approval-node.js +1 -1
- package/dist/es/components/nodes/base-node.js +1 -1
- package/dist/es/components/nodes/cc-node.js +1 -1
- package/dist/es/components/nodes/condition-node.js +1 -1
- package/dist/es/components/nodes/end-node.js +1 -1
- package/dist/es/components/nodes/handle-node.js +1 -1
- package/dist/es/components/nodes/index.js +1 -1
- package/dist/es/components/nodes/node-shell.js +1 -1
- package/dist/es/components/nodes/start-node.js +1 -1
- package/dist/es/components/validation-indicator.js +1 -1
- package/dist/es/components/zoom-control.js +1 -1
- package/dist/es/constants.js +1 -1
- package/dist/es/hooks/use-auto-layout.js +1 -1
- package/dist/es/hooks/use-connection-validation.js +1 -1
- package/dist/es/hooks/use-drag-drop.js +1 -1
- package/dist/es/hooks/use-history-shortcuts.js +1 -1
- package/dist/es/hooks/use-row-keys.js +1 -1
- package/dist/es/icons.js +1 -1
- package/dist/es/index.js +1 -1
- package/dist/es/plugins/context.js +1 -1
- package/dist/es/plugins/index.js +1 -1
- package/dist/es/shared/connection-rules.js +1 -1
- package/dist/es/shared/flow-validation.js +1 -1
- package/dist/es/shared/node-placement.js +1 -1
- package/dist/es/shared/normalize-node-data.js +1 -1
- package/dist/es/shared/seed-flow.js +1 -1
- package/dist/es/shared/serialization.js +1 -1
- package/dist/es/specifications/approval.js +1 -1
- package/dist/es/specifications/cc.js +1 -1
- package/dist/es/specifications/condition.js +1 -1
- package/dist/es/specifications/end.js +1 -1
- package/dist/es/specifications/handle.js +1 -1
- package/dist/es/specifications/index.js +1 -1
- package/dist/es/specifications/start.js +1 -1
- package/dist/es/store/editor.js +1 -1
- package/dist/es/store/flow-slice.js +1 -1
- package/dist/es/store/graph-slice.js +1 -1
- package/dist/es/store/history-slice.js +1 -1
- package/dist/es/store/index.js +1 -1
- package/dist/es/store/interaction-slice.js +1 -1
- package/dist/es/store/validation-slice.js +1 -1
- package/dist/es/styles/base.js +1 -1
- package/dist/es/styles/index.js +1 -1
- package/dist/es/styles/node-colors.js +1 -1
- package/dist/es/styles/theme.js +1 -1
- package/dist/es/types.js +1 -1
- package/package.json +5 -5
- /package/dist/types/{src/components → components}/accent-icon-badge.d.ts +0 -0
- /package/dist/types/{src/components → components}/approval-flow-editor.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/approval-node-config.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/assignee-list.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/basic-node-config.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/cc-list.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/cc-node-config.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/condition-config.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/condition-editor-modal.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/condition-operators.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/condition-rule-item.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/field-permission-table.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/handle-node-config.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/principal-picker.d.ts +0 -0
- /package/dist/types/{src/components → components}/config/shared.d.ts +0 -0
- /package/dist/types/{src/components → components}/config-panel.d.ts +0 -0
- /package/dist/types/{src/components → components}/edges/approval-edge.d.ts +0 -0
- /package/dist/types/{src/components → components}/edges/index.d.ts +0 -0
- /package/dist/types/{src/components → components}/editor-toolbar.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/approval-node.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/base-node.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/cc-node.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/condition-node.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/end-node.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/handle-node.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/index.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/node-shell.d.ts +0 -0
- /package/dist/types/{src/components → components}/nodes/start-node.d.ts +0 -0
- /package/dist/types/{src/components → components}/validation-indicator.d.ts +0 -0
- /package/dist/types/{src/components → components}/zoom-control.d.ts +0 -0
- /package/dist/types/{src/constants.d.ts → constants.d.ts} +0 -0
- /package/dist/types/{src/hooks → hooks}/use-auto-layout.d.ts +0 -0
- /package/dist/types/{src/hooks → hooks}/use-connection-validation.d.ts +0 -0
- /package/dist/types/{src/hooks → hooks}/use-drag-drop.d.ts +0 -0
- /package/dist/types/{src/hooks → hooks}/use-history-shortcuts.d.ts +0 -0
- /package/dist/types/{src/hooks → hooks}/use-row-keys.d.ts +0 -0
- /package/dist/types/{src/icons.d.ts → icons.d.ts} +0 -0
- /package/dist/types/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/types/{src/plugins → plugins}/context.d.ts +0 -0
- /package/dist/types/{src/plugins → plugins}/index.d.ts +0 -0
- /package/dist/types/{src/plugins → plugins}/types.d.ts +0 -0
- /package/dist/types/{src/shared → shared}/connection-rules.d.ts +0 -0
- /package/dist/types/{src/shared → shared}/flow-validation.d.ts +0 -0
- /package/dist/types/{src/shared → shared}/node-placement.d.ts +0 -0
- /package/dist/types/{src/shared → shared}/normalize-node-data.d.ts +0 -0
- /package/dist/types/{src/shared → shared}/seed-flow.d.ts +0 -0
- /package/dist/types/{src/shared → shared}/serialization.d.ts +0 -0
- /package/dist/types/{src/specifications → specifications}/approval.d.ts +0 -0
- /package/dist/types/{src/specifications → specifications}/cc.d.ts +0 -0
- /package/dist/types/{src/specifications → specifications}/condition.d.ts +0 -0
- /package/dist/types/{src/specifications → specifications}/end.d.ts +0 -0
- /package/dist/types/{src/specifications → specifications}/handle.d.ts +0 -0
- /package/dist/types/{src/specifications → specifications}/index.d.ts +0 -0
- /package/dist/types/{src/specifications → specifications}/start.d.ts +0 -0
- /package/dist/types/{src/specifications → specifications}/types.d.ts +0 -0
- /package/dist/types/{src/store → store}/editor.d.ts +0 -0
- /package/dist/types/{src/store → store}/flow-slice.d.ts +0 -0
- /package/dist/types/{src/store → store}/graph-slice.d.ts +0 -0
- /package/dist/types/{src/store → store}/history-slice.d.ts +0 -0
- /package/dist/types/{src/store → store}/index.d.ts +0 -0
- /package/dist/types/{src/store → store}/interaction-slice.d.ts +0 -0
- /package/dist/types/{src/store → store}/types.d.ts +0 -0
- /package/dist/types/{src/store → store}/validation-slice.d.ts +0 -0
- /package/dist/types/{src/styles → styles}/base.d.ts +0 -0
- /package/dist/types/{src/styles → styles}/index.d.ts +0 -0
- /package/dist/types/{src/styles → styles}/node-colors.d.ts +0 -0
- /package/dist/types/{src/styles → styles}/theme.d.ts +0 -0
- /package/dist/types/{src/types.d.ts → types.d.ts} +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import "@emotion/react";
|
|
3
3
|
import { globalCssVars as e } from "@vef-framework-react/components";
|
|
4
4
|
import { jsx as t } from "@emotion/react/jsx-runtime";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { EDGE_MARKER_END as e, isNodeKind as t } from "../constants.js";
|
|
3
3
|
import { explainConnectionRejection as n } from "../shared/connection-rules.js";
|
|
4
4
|
import { fromFlowDefinition as r, toFlowDefinition as i } from "../shared/serialization.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../../store/editor.js";
|
|
3
3
|
import { PrincipalPicker as t } from "./principal-picker.js";
|
|
4
4
|
import { CheckboxList as n, ConfigSection as r, FormField as i } from "./shared.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { fullWidthStyle as e } from "../../styles/theme.js";
|
|
3
3
|
import { useRowKeys as t } from "../../hooks/use-row-keys.js";
|
|
4
4
|
import { isPrincipalKind as n } from "../../types.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../../store/editor.js";
|
|
3
3
|
import { ConfigSection as t, FormField as n } from "./shared.js";
|
|
4
4
|
import { Input as r } from "@vef-framework-react/components";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { fullWidthStyle as e } from "../../styles/theme.js";
|
|
3
3
|
import { useRowKeys as t } from "../../hooks/use-row-keys.js";
|
|
4
4
|
import { isPrincipalKind as n } from "../../types.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../../store/editor.js";
|
|
3
3
|
import { CheckboxList as t, ConfigSection as n, FormField as r } from "./shared.js";
|
|
4
4
|
import { CcList as i } from "./cc-list.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../../store/editor.js";
|
|
3
3
|
import { ConfigSection as t, FormField as n } from "./shared.js";
|
|
4
4
|
import { ConditionEditorModal as r } from "./condition-editor-modal.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useRowKeys as e } from "../../hooks/use-row-keys.js";
|
|
3
3
|
import { ConditionRuleItem as t } from "./condition-rule-item.js";
|
|
4
4
|
import { css as n } from "@emotion/react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
//#region src/components/config/condition-operators.ts
|
|
3
3
|
var e = {
|
|
4
4
|
eq: "等于",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorPlugins as e } from "../../plugins/context.js";
|
|
3
3
|
import { MULTI_VALUE_OPERATORS as t, NO_VALUE_OPERATORS as n, OPERATOR_LABELS as r, getOperatorsForFieldKind as i } from "./condition-operators.js";
|
|
4
4
|
import { css as a } from "@emotion/react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorPlugins as e } from "../../plugins/context.js";
|
|
3
3
|
import { css as t } from "@emotion/react";
|
|
4
4
|
import { Radio as n, globalCssVars as r } from "@vef-framework-react/components";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../../store/editor.js";
|
|
3
3
|
import { PrincipalPicker as t } from "./principal-picker.js";
|
|
4
4
|
import { CheckboxList as n, ConfigSection as r, FormField as i } from "./shared.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorPlugins as e } from "../../plugins/context.js";
|
|
3
3
|
import { css as t } from "@emotion/react";
|
|
4
4
|
import { globalCssVars as n } from "@vef-framework-react/components";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { configSectionContentStyle as e, configSectionStyle as t, formFieldLabelStyle as n, formFieldStyle as r } from "../../styles/theme.js";
|
|
3
3
|
import { ChevronRightIcon as i } from "../../icons.js";
|
|
4
4
|
import { isPrincipalKind as a } from "../../types.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../store/editor.js";
|
|
3
3
|
import { configPanelBodyStyle as t, configPanelCloseStyle as n, configPanelDeleteStyle as r, configPanelHeaderStyle as i, configPanelKindChipStyle as a, configPanelTitleStyle as o, configPanelWrapperStyle as s } from "../styles/theme.js";
|
|
4
4
|
import { XIcon as c } from "../icons.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../../store/editor.js";
|
|
3
3
|
import { css as t } from "@emotion/react";
|
|
4
4
|
import { globalCssVars as n } from "@vef-framework-react/components";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { ApprovalEdge as e } from "./approval-edge.js";
|
|
3
3
|
//#region src/components/edges/index.ts
|
|
4
4
|
var t = { approval: e };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_DIMENSIONS as e } from "../constants.js";
|
|
3
3
|
import { useEditorStore as t, useEditorStoreApi as n } from "../store/editor.js";
|
|
4
4
|
import { handleDragStart as r } from "../hooks/use-drag-drop.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { BaseNode as e } from "./base-node.js";
|
|
3
3
|
import { Handle as t, Position as n } from "@xyflow/react";
|
|
4
4
|
import { memo as r } from "react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { getSpecification as e } from "../../specifications/index.js";
|
|
3
3
|
import { AccentIconBadge as t } from "../accent-icon-badge.js";
|
|
4
4
|
import { NodeShell as n } from "./node-shell.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { BaseNode as e } from "./base-node.js";
|
|
3
3
|
import { Handle as t, Position as n } from "@xyflow/react";
|
|
4
4
|
import { memo as r } from "react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { BaseNode as e } from "./base-node.js";
|
|
3
3
|
import { css as t } from "@emotion/react";
|
|
4
4
|
import { globalCssVars as n } from "@vef-framework-react/components";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { BaseNode as e } from "./base-node.js";
|
|
3
3
|
import { Handle as t, Position as n } from "@xyflow/react";
|
|
4
4
|
import { memo as r } from "react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { BaseNode as e } from "./base-node.js";
|
|
3
3
|
import { Handle as t, Position as n } from "@xyflow/react";
|
|
4
4
|
import { memo as r } from "react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { ApprovalNode as e } from "./approval-node.js";
|
|
3
3
|
import { CcNode as t } from "./cc-node.js";
|
|
4
4
|
import { ConditionNode as n } from "./condition-node.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../../store/editor.js";
|
|
3
3
|
import { nodeContainerStyle as t } from "../../styles/theme.js";
|
|
4
4
|
import { getSpecification as n } from "../../specifications/index.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { BaseNode as e } from "./base-node.js";
|
|
3
3
|
import { Handle as t, Position as n } from "@xyflow/react";
|
|
4
4
|
import { memo as r } from "react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStore as e } from "../store/editor.js";
|
|
3
3
|
import { getSpecification as t } from "../specifications/index.js";
|
|
4
4
|
import { css as n, keyframes as r } from "@emotion/react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { css as e, keyframes as t } from "@emotion/react";
|
|
3
3
|
import { globalCssVars as n } from "@vef-framework-react/components";
|
|
4
4
|
import { Panel as r, useReactFlow as i, useStore as a } from "@xyflow/react";
|
package/dist/es/constants.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { MarkerType as e } from "@xyflow/react";
|
|
3
3
|
//#region src/constants.ts
|
|
4
4
|
var t = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_DIMENSIONS as e } from "../constants.js";
|
|
3
3
|
import { useEditorStoreApi as t } from "../store/editor.js";
|
|
4
4
|
import { showErrorMessage as n } from "@vef-framework-react/components";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { validateConnection as e } from "../shared/connection-rules.js";
|
|
3
3
|
import { useEditorStoreApi as t } from "../store/editor.js";
|
|
4
4
|
import { useCallback as n } from "react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { isNodeKind as e } from "../constants.js";
|
|
3
3
|
import { useEditorStore as t } from "../store/editor.js";
|
|
4
4
|
import { useReactFlow as n } from "@xyflow/react";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useEditorStoreApi as e } from "../store/editor.js";
|
|
3
3
|
import { useEffect as t } from "react";
|
|
4
4
|
//#region src/hooks/use-history-shortcuts.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { useRef as e } from "react";
|
|
3
3
|
import { generateId as t } from "@vef-framework-react/shared";
|
|
4
4
|
//#region src/hooks/use-row-keys.ts
|
package/dist/es/icons.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { BadgeCheckIcon as e, ChevronRightIcon as t, CirclePlayIcon as n, CircleStopIcon as r, ClipboardPenIcon as i, GitForkIcon as a, MailIcon as o, XIcon as s } from "lucide-react";
|
|
3
3
|
export { e as ApprovalIcon, o as CcIcon, t as ChevronRightIcon, a as ConditionIcon, r as EndIcon, i as HandleIcon, n as StartIcon, s as XIcon };
|
package/dist/es/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { DEFAULT_NODE_DATA as e, NODE_KINDS as t, NODE_KIND_LABELS as n, NODE_RULES as r, isNodeKind as i } from "./constants.js";
|
|
3
3
|
import { fromFlowDefinition as a, toFlowDefinition as o } from "./shared/serialization.js";
|
|
4
4
|
import { useEditorStore as s, useEditorStoreApi as c } from "./store/editor.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { createContext as e, use as t } from "react";
|
|
3
3
|
//#region src/plugins/context.ts
|
|
4
4
|
var n = e({});
|
package/dist/es/plugins/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import "./context.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
//#region src/shared/connection-rules.ts
|
|
3
3
|
function e(e, t, n) {
|
|
4
4
|
let r = /* @__PURE__ */ new Set(), i = [t];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { isNodeKind as e } from "../constants.js";
|
|
3
3
|
import { CONDITION_OPERATORS as t } from "@vef-framework-react/expression";
|
|
4
4
|
//#region src/shared/flow-validation.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
//#region src/shared/node-placement.ts
|
|
3
3
|
var e = 24, t = 32, n = 50;
|
|
4
4
|
function r(r, i) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
//#region src/shared/normalize-node-data.ts
|
|
3
3
|
var e = {
|
|
4
4
|
executionType: "manual",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_DIMENSIONS as e, NODE_KIND_LABELS as t } from "../constants.js";
|
|
3
3
|
import { fromFlowDefinition as n } from "./serialization.js";
|
|
4
4
|
import { generateId as r } from "@vef-framework-react/shared";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { EDGE_MARKER_END as e, NODE_RULES as t } from "../constants.js";
|
|
3
3
|
import { normalizeNodeData as n } from "./normalize-node-data.js";
|
|
4
4
|
import { generateId as r } from "@vef-framework-react/shared";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_KIND_LABELS as e } from "../constants.js";
|
|
3
3
|
import { NODE_KIND_COLORS as t } from "../styles/node-colors.js";
|
|
4
4
|
import { ApprovalIcon as n } from "../icons.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_KIND_LABELS as e } from "../constants.js";
|
|
3
3
|
import { NODE_KIND_COLORS as t } from "../styles/node-colors.js";
|
|
4
4
|
import { CcIcon as n } from "../icons.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_KIND_LABELS as e } from "../constants.js";
|
|
3
3
|
import { NODE_KIND_COLORS as t } from "../styles/node-colors.js";
|
|
4
4
|
import { ConditionIcon as n } from "../icons.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_KIND_LABELS as e } from "../constants.js";
|
|
3
3
|
import { NODE_KIND_COLORS as t } from "../styles/node-colors.js";
|
|
4
4
|
import { EndIcon as n } from "../icons.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_KIND_LABELS as e } from "../constants.js";
|
|
3
3
|
import { NODE_KIND_COLORS as t } from "../styles/node-colors.js";
|
|
4
4
|
import { HandleIcon as n } from "../icons.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_RULES as e } from "../constants.js";
|
|
3
3
|
import { approvalSpecification as t } from "./approval.js";
|
|
4
4
|
import { ccSpecification as n } from "./cc.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { NODE_KIND_LABELS as e } from "../constants.js";
|
|
3
3
|
import { NODE_KIND_COLORS as t } from "../styles/node-colors.js";
|
|
4
4
|
import { StartIcon as n } from "../icons.js";
|
package/dist/es/store/editor.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { createFlowSlice as e } from "./flow-slice.js";
|
|
3
3
|
import { createGraphSlice as t } from "./graph-slice.js";
|
|
4
4
|
import { createHistorySlice as n } from "./history-slice.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { fromFlowDefinition as e, toFlowDefinition as t } from "../shared/serialization.js";
|
|
3
3
|
import { createSeedFlow as n } from "../shared/seed-flow.js";
|
|
4
4
|
//#region src/store/flow-slice.ts
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { DEFAULT_NODE_DATA as e, NODE_RULES as t } from "../constants.js";
|
|
3
3
|
import { validateConnection as n } from "../shared/connection-rules.js";
|
|
4
4
|
import { normalizeNodeData as r } from "../shared/normalize-node-data.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
//#region src/store/history-slice.ts
|
|
3
3
|
var e = 100, t = (t, n) => {
|
|
4
4
|
let r = null, i = () => {
|
package/dist/es/store/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import "./editor.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
//#region src/store/interaction-slice.ts
|
|
3
3
|
var e = (e, t) => ({
|
|
4
4
|
selectedNodeId: null,
|
package/dist/es/styles/base.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { css as e } from "@emotion/react";
|
|
3
3
|
import t from "@xyflow/react/dist/base.css?raw";
|
|
4
4
|
//#region src/styles/base.ts
|
package/dist/es/styles/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { globalCssVars as e } from "@vef-framework-react/components";
|
|
3
3
|
//#region src/styles/node-colors.ts
|
|
4
4
|
var t = {
|
package/dist/es/styles/theme.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @vef-framework-react/approval-flow-editor v2.4.
|
|
1
|
+
/*! @vef-framework-react/approval-flow-editor v2.4.1 made by Venus | 2026-06-17T13:09:55.866Z */
|
|
2
2
|
import { css as e } from "@emotion/react";
|
|
3
3
|
import { globalCssVars as t } from "@vef-framework-react/components";
|
|
4
4
|
//#region src/styles/theme.ts
|
package/dist/es/types.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vef-framework-react/approval-flow-editor",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.4.
|
|
4
|
+
"version": "2.4.1",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Approval flow editor for VEF framework",
|
|
7
7
|
"author": {
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"dayjs": "^1.11.0",
|
|
56
56
|
"elkjs": "^0.11.1",
|
|
57
57
|
"lucide-react": "^1.17.0",
|
|
58
|
-
"@vef-framework-react/components": "2.4.
|
|
59
|
-
"@vef-framework-react/
|
|
60
|
-
"@vef-framework-react/expression": "2.4.
|
|
61
|
-
"@vef-framework-react/
|
|
58
|
+
"@vef-framework-react/components": "2.4.1",
|
|
59
|
+
"@vef-framework-react/shared": "2.4.1",
|
|
60
|
+
"@vef-framework-react/expression": "2.4.1",
|
|
61
|
+
"@vef-framework-react/core": "2.4.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"react": "^19.2.7"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|