@wise/dynamic-flow-client-internal 5.12.1 → 5.13.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/build/main.css +36 -0
- package/build/main.js +583 -448
- package/build/main.mjs +568 -433
- package/build/tsconfig.types.tsbuildinfo +1 -1
- package/build/types/dynamicFlow/DynamicFlow.d.ts.map +1 -1
- package/build/types/dynamicFlow/context-menu/useContextMenu.d.ts +14 -0
- package/build/types/dynamicFlow/context-menu/useContextMenu.d.ts.map +1 -0
- package/build/types/dynamicFlow/context-menu/useDFContextMenu.d.ts +9 -0
- package/build/types/dynamicFlow/context-menu/useDFContextMenu.d.ts.map +1 -0
- package/build/types/dynamicFlow/renderers.d.ts +1 -1
- package/package.json +15 -15
package/build/main.css
CHANGED
|
@@ -221,3 +221,39 @@
|
|
|
221
221
|
margin-left: auto;
|
|
222
222
|
margin-right: auto;
|
|
223
223
|
}
|
|
224
|
+
.df-context-menu {
|
|
225
|
+
position: fixed;
|
|
226
|
+
z-index: 10;
|
|
227
|
+
background-color: #fff;
|
|
228
|
+
border: 1px solid #ddd;
|
|
229
|
+
border-radius: 8px;
|
|
230
|
+
box-shadow: 0 8px 24px rgb(0 0 0 / 25%);
|
|
231
|
+
|
|
232
|
+
.menu-header {
|
|
233
|
+
font-weight: bold;
|
|
234
|
+
padding: 6px 8px;
|
|
235
|
+
border-bottom: 1px solid #ddd;
|
|
236
|
+
margin: 4px;
|
|
237
|
+
margin-bottom: 8px;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.menu-button {
|
|
241
|
+
display: block;
|
|
242
|
+
width: 100%;
|
|
243
|
+
border: 0;
|
|
244
|
+
text-align: left;
|
|
245
|
+
background: transparent;
|
|
246
|
+
cursor: pointer;
|
|
247
|
+
font-size: 14px;
|
|
248
|
+
padding: 6px 8px;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.menu-button:last-child {
|
|
252
|
+
margin-bottom: 4px;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.menu-button:hover {
|
|
256
|
+
background: #555;
|
|
257
|
+
color: #fff;
|
|
258
|
+
}
|
|
259
|
+
}
|