canvasxpress-cli 60.5.1 → 60.7.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/package.json +1 -1
- package/src/canvasXpress.css +164 -32
- package/src/canvasXpress.js +3 -3
package/package.json
CHANGED
package/src/canvasXpress.css
CHANGED
|
@@ -248,6 +248,15 @@ svg.cX-code {
|
|
|
248
248
|
cursor: -webkit-grabbing;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
+
/****************
|
|
252
|
+
* Hover / Active *
|
|
253
|
+
*****************/
|
|
254
|
+
|
|
255
|
+
.simulate-hover {
|
|
256
|
+
border-color: var(--cx-background-border-hover-color) !important;
|
|
257
|
+
background: var(--cx-background-hover-color) !important;
|
|
258
|
+
}
|
|
259
|
+
|
|
251
260
|
/*****************
|
|
252
261
|
* Loading Timer *
|
|
253
262
|
*****************/
|
|
@@ -2216,49 +2225,171 @@ span.CanvasXpressMousePosition {
|
|
|
2216
2225
|
* Motion *
|
|
2217
2226
|
**********/
|
|
2218
2227
|
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
font: var(--cx-font);
|
|
2222
|
-
overflow-x: hidden;
|
|
2223
|
-
position: absolute;
|
|
2224
|
-
white-space: nowrap;
|
|
2228
|
+
.cX-Container-Motion {
|
|
2229
|
+
transition: all var(--cx-transition-speed) ease-in-out;
|
|
2225
2230
|
}
|
|
2226
2231
|
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
margin: 0px !important;
|
|
2230
|
-
background: var(--cx-color-transparent) !important;
|
|
2231
|
-
border: 0px none !important;
|
|
2232
|
-
box-shadow: 0 0 0px var(--cx-color-transparent) !important;
|
|
2232
|
+
.cX-Workflow-Wrapper {
|
|
2233
|
+
position: relative;
|
|
2233
2234
|
}
|
|
2234
2235
|
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
background-repeat: repeat-x;
|
|
2236
|
+
.cX-Workflow-Wrapper.cX-Workflow-Mode-Repro {
|
|
2237
|
+
flex-direction: row !important;
|
|
2238
|
+
align-items: flex-start;
|
|
2239
2239
|
}
|
|
2240
2240
|
|
|
2241
|
-
|
|
2241
|
+
.cX-Workflow-Wrapper.cX-Workflow-Mode-Repro .cX-Workflow-Widget {
|
|
2242
|
+
background: rgba(255, 255, 255, 0.95);
|
|
2243
|
+
border: 1px solid var(--cx-color-widgets);
|
|
2244
|
+
border-radius: 12px;
|
|
2245
|
+
padding: 15px;
|
|
2246
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
|
|
2247
|
+
backdrop-filter: blur(8px);
|
|
2242
2248
|
box-sizing: border-box;
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2249
|
+
order: -1;
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
.cX-Workflow-Wrapper.cX-Workflow-Mode-Repro .cX-Workflow-Timeline-Container {
|
|
2253
|
+
display: block;
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
.cX-Workflow-Wrapper.cX-Workflow-Mode-Repro .cX-Workflow-Close-Btn {
|
|
2257
|
+
display: flex;
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
.cX-Workflow-Wrapper.cX-Workflow-Mode-Filter {
|
|
2261
|
+
flex-direction: column !important;
|
|
2262
|
+
align-items: center;
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
.cX-Workflow-Wrapper.cX-Workflow-Mode-Filter .cX-Workflow-Widget {
|
|
2247
2266
|
position: relative;
|
|
2248
|
-
|
|
2249
|
-
|
|
2267
|
+
border: none !important;
|
|
2268
|
+
width: 90% !important;
|
|
2269
|
+
left: 5% !important;
|
|
2270
|
+
order: 1;
|
|
2250
2271
|
}
|
|
2251
2272
|
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2273
|
+
.cX-Workflow-Wrapper.cX-Workflow-Mode-Filter .cX-Workflow-Timeline-Container {
|
|
2274
|
+
display: none;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
.cX-Workflow-Wrapper.cX-Workflow-Mode-Filter .cX-Workflow-Close-Btn {
|
|
2278
|
+
display: none;
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
/* Animation State: Hidden */
|
|
2282
|
+
.cX-Workflow-Wrapper.cX-Workflow-Hidden {
|
|
2283
|
+
opacity: 0 !important;
|
|
2284
|
+
pointer-events: none;
|
|
2285
|
+
}
|
|
2286
|
+
|
|
2287
|
+
/* Specific transitions based on layout context */
|
|
2288
|
+
.cX-Workflow-Wrapper .cX-Workflow-Mode-Repro {
|
|
2289
|
+
transition: transform var(--cx-transition-speed) ease, opacity var(--cx-transition-speed) ease;
|
|
2290
|
+
transform: translateX(0);
|
|
2291
|
+
}
|
|
2292
|
+
.cX-Workflow-Wrapper.cX-Workflow-Hidden .cX-Workflow-Mode-Repro {
|
|
2293
|
+
transform: translateX(-20px);
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
.cX-Workflow-Widget {
|
|
2297
|
+
font-family: var(--cx-font-family);
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
.cX-Workflow-Header {
|
|
2301
|
+
display: flex;
|
|
2302
|
+
justify-content: space-between;
|
|
2303
|
+
align-items: center;
|
|
2304
|
+
margin-bottom: 12px;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
.cX-Workflow-Close-Btn {
|
|
2308
|
+
cursor: pointer;
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
.cX-Workflow-Controls {
|
|
2312
|
+
display: flex;
|
|
2313
|
+
align-items: center;
|
|
2314
|
+
gap: 18px;
|
|
2315
|
+
padding-bottom: 5px;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
.cX-Workflow-Play-Btn {
|
|
2319
|
+
cursor: pointer;
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
.cX-Workflow-Slider-Area {
|
|
2323
|
+
flex-grow: 1;
|
|
2260
2324
|
position: relative;
|
|
2261
|
-
|
|
2325
|
+
}
|
|
2326
|
+
|
|
2327
|
+
.cX-Workflow-Slider-Track {
|
|
2328
|
+
position: relative;
|
|
2329
|
+
height: 6px;
|
|
2330
|
+
background: var(--cx-color-extra-light-gray);
|
|
2331
|
+
border-radius: 10px;
|
|
2332
|
+
cursor: pointer;
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
.cX-Workflow-Slider-Fill {
|
|
2336
|
+
position: absolute;
|
|
2337
|
+
height: 100%;
|
|
2338
|
+
background: var(--cx-color-widgets);
|
|
2339
|
+
border-radius: 10px;
|
|
2340
|
+
width: 0%;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
.cX-Workflow-Slider-Thumb {
|
|
2344
|
+
position: absolute;
|
|
2345
|
+
top: 50%;
|
|
2346
|
+
width: 22px;
|
|
2347
|
+
height: 22px;
|
|
2348
|
+
background: var(--cx-color-widgets);
|
|
2349
|
+
border: 2px solid white;
|
|
2350
|
+
border-radius: 50%;
|
|
2351
|
+
transform: translate(-50%, -50%);
|
|
2352
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
|
|
2353
|
+
z-index: 10;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.cX-Workflow-Timeline-Container {
|
|
2357
|
+
border-top: 1px solid #e2e8f0;
|
|
2358
|
+
margin-top: 10px;
|
|
2359
|
+
padding-top: 10px;
|
|
2360
|
+
max-height: 200px;
|
|
2361
|
+
overflow-y: auto;
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
.cX-Workflow-Timeline-Item {
|
|
2365
|
+
display: flex;
|
|
2366
|
+
align-items: center;
|
|
2367
|
+
gap: 8px;
|
|
2368
|
+
padding: 6px 0;
|
|
2369
|
+
cursor: pointer;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
.cX-Workflow-List-Label {
|
|
2373
|
+
position: absolute;
|
|
2374
|
+
transform: translateX(-50%);
|
|
2375
|
+
font-size: var(--cx-small-font-size);
|
|
2376
|
+
color: var(--cx-color-dark-gray);
|
|
2377
|
+
white-space: nowrap;
|
|
2378
|
+
}
|
|
2379
|
+
|
|
2380
|
+
.cX-Workflow-List-Tick {
|
|
2381
|
+
position: absolute;
|
|
2382
|
+
transform: translateX(-50%);
|
|
2383
|
+
font-size: 8px;
|
|
2384
|
+
color: var(--cx-color-light-gray);
|
|
2385
|
+
}
|
|
2386
|
+
|
|
2387
|
+
/* Specific active state for the Workflow Timeline List */
|
|
2388
|
+
.cX-Workflow-Timeline-Item.active {
|
|
2389
|
+
background-color: var(--cx-background-hover-color) !important;
|
|
2390
|
+
color: var(--cx-color-widgets) !important;
|
|
2391
|
+
border-radius: var(--cx-border-radius) !important;
|
|
2392
|
+
font-weight: bold;
|
|
2262
2393
|
}
|
|
2263
2394
|
|
|
2264
2395
|
/*************
|
|
@@ -3744,6 +3875,7 @@ div.cX-DataFilter-Container-Item::selection {
|
|
|
3744
3875
|
position: sticky;
|
|
3745
3876
|
z-index: 100000;
|
|
3746
3877
|
background: transparent;
|
|
3878
|
+
height: 0px;
|
|
3747
3879
|
}
|
|
3748
3880
|
|
|
3749
3881
|
div.CanvasXpressLink {
|