@acmekit/dashboard 2.13.33 → 2.13.35

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.
Files changed (87) hide show
  1. package/dist/{api-key-management-create-4AG76FJV.mjs → api-key-management-create-U37VC624.mjs} +3 -3
  2. package/dist/{api-key-management-detail-T2TB4KST.mjs → api-key-management-detail-ZYKL4ATI.mjs} +10 -10
  3. package/dist/{api-key-management-edit-R44OHS7B.mjs → api-key-management-edit-TSZGMIBL.mjs} +3 -3
  4. package/dist/{api-key-management-list-QK4Q7Y5I.mjs → api-key-management-list-HCJFJWWB.mjs} +3 -3
  5. package/dist/app.css +31 -0
  6. package/dist/app.js +3726 -1386
  7. package/dist/app.mjs +240 -38
  8. package/dist/{chunk-GBFVWROS.mjs → chunk-5IEHCYJO.mjs} +1 -1
  9. package/dist/{chunk-DQCEH3X2.mjs → chunk-7F3CWXUH.mjs} +1 -1
  10. package/dist/chunk-A7ULKHDE.mjs +126 -0
  11. package/dist/{chunk-DN3MIYQH.mjs → chunk-FKTMBR44.mjs} +1 -1
  12. package/dist/chunk-GBPAZAJK.mjs +34 -0
  13. package/dist/{chunk-YRWSG3YM.mjs → chunk-HHPPTD3B.mjs} +1 -1
  14. package/dist/chunk-LP6CPB7N.mjs +213 -0
  15. package/dist/{chunk-EFRMWHRX.mjs → chunk-PFZQYK7R.mjs} +1 -1
  16. package/dist/{chunk-XIM7X4FB.mjs → chunk-SYACY6AL.mjs} +1 -1
  17. package/dist/{chunk-2U3RK3JG.mjs → chunk-VEI6HW6L.mjs} +3 -5
  18. package/dist/{chunk-ST2YB7JN.mjs → chunk-WLRJXEKL.mjs} +1 -1
  19. package/dist/{chunk-ULSPL3DR.mjs → chunk-XIP35KXF.mjs} +1 -1
  20. package/dist/{chunk-DTY37DDZ.mjs → chunk-YKIWIMJX.mjs} +1 -0
  21. package/dist/en.json +132 -3
  22. package/dist/{invite-XGPZZBUP.mjs → invite-3JSNOA2B.mjs} +3 -3
  23. package/dist/{login-GNP3QIPI.mjs → login-BEJ5EFGE.mjs} +9 -9
  24. package/dist/{profile-detail-YX27F7N6.mjs → profile-detail-QVTJC4JC.mjs} +3 -3
  25. package/dist/{profile-edit-2VRDU75O.mjs → profile-edit-MIO62TWH.mjs} +3 -3
  26. package/dist/{reset-password-TWRNZO6Z.mjs → reset-password-BN4KAJQL.mjs} +2 -2
  27. package/dist/{settings-3XWLL5LG.mjs → settings-GH5IWXHE.mjs} +3 -3
  28. package/dist/{translation-list-CCEQJNED.mjs → translation-list-JA22BUKN.mjs} +10 -10
  29. package/dist/{translations-edit-E57GVUFV.mjs → translations-edit-STTMANVT.mjs} +11 -11
  30. package/dist/{user-detail-KUSRRVNX.mjs → user-detail-WCXBFRGS.mjs} +3 -3
  31. package/dist/{user-edit-HTN3ZGCL.mjs → user-edit-XDVMJOS4.mjs} +3 -3
  32. package/dist/{user-invite-E3FAAU3V.mjs → user-invite-73ZDSDFC.mjs} +3 -3
  33. package/dist/{user-list-KNJ5S3IM.mjs → user-list-MPJXE3CA.mjs} +5 -5
  34. package/dist/{user-metadata-5GQK75DT.mjs → user-metadata-ADNTL3LT.mjs} +10 -10
  35. package/dist/workflow-analytics-4WCI4ODQ.mjs +152 -0
  36. package/dist/workflow-definition-detail-GI6CFBMG.mjs +94 -0
  37. package/dist/workflow-definition-list-GF3XAEPS.mjs +142 -0
  38. package/dist/workflow-execution-complete-step-WSRLO572.mjs +245 -0
  39. package/dist/workflow-execution-detail-3RH6EQSS.mjs +1411 -0
  40. package/dist/workflow-execution-list-AQEGAME4.mjs +596 -0
  41. package/dist/workflow-execution-rerun-WCYLYL3Q.mjs +138 -0
  42. package/dist/workflow-execution-run-MWN5KWNY.mjs +135 -0
  43. package/dist/workflow-scheduled-list-ZPXR7CZM.mjs +174 -0
  44. package/package.json +9 -9
  45. package/src/components/layout/main-layout/main-layout.tsx +28 -1
  46. package/src/dashboard-app/routes/get-route.map.tsx +71 -0
  47. package/src/hooks/api/workflow-definitions.tsx +79 -0
  48. package/src/hooks/api/workflow-executions.tsx +145 -1
  49. package/src/hooks/api/workflow-metrics.tsx +48 -0
  50. package/src/hooks/use-workflow-sse.tsx +78 -0
  51. package/src/i18n/translations/$schema.json +534 -4
  52. package/src/i18n/translations/en.json +132 -3
  53. package/src/routes/workflow-analytics/workflow-analytics.tsx +167 -0
  54. package/src/routes/workflow-definitions/workflow-definition-detail/workflow-definition-detail.tsx +98 -0
  55. package/src/routes/workflow-definitions/workflow-definition-list/components/workflow-definition-list-table/use-workflow-definition-table-columns.tsx +78 -0
  56. package/src/routes/workflow-definitions/workflow-definition-list/components/workflow-definition-list-table/workflow-definition-list-table.tsx +65 -0
  57. package/src/routes/workflow-definitions/workflow-definition-list/workflow-definition-list.tsx +15 -0
  58. package/src/routes/workflow-executions/constants.ts +16 -0
  59. package/src/routes/workflow-executions/utils.ts +170 -14
  60. package/src/routes/workflow-executions/workflow-execution-complete-step/workflow-execution-complete-step.tsx +270 -0
  61. package/src/routes/workflow-executions/workflow-execution-detail/breadcrumb.tsx +7 -1
  62. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-action-bar/index.ts +1 -0
  63. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-action-bar/workflow-execution-action-bar.tsx +212 -0
  64. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-error-card/index.ts +1 -0
  65. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-error-card/workflow-execution-error-card.tsx +59 -0
  66. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-history-section/workflow-execution-history-section.tsx +157 -6
  67. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-payload-section/workflow-execution-payload-section.tsx +122 -6
  68. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-timeline-section/workflow-execution-timeline-section.tsx +7 -1
  69. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-waiting-banner/index.ts +1 -0
  70. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-waiting-banner/workflow-execution-waiting-banner.tsx +63 -0
  71. package/src/routes/workflow-executions/workflow-execution-detail/workflow-detail.tsx +46 -1
  72. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-columns.tsx +7 -0
  73. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-filters.tsx +7 -1
  74. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-query.tsx +4 -2
  75. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-auto-refresh.tsx +73 -0
  76. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-list-table.tsx +17 -1
  77. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-row-actions.tsx +116 -0
  78. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-saved-views.tsx +84 -0
  79. package/src/routes/workflow-executions/workflow-execution-list/workflow-execution-list.tsx +1 -1
  80. package/src/routes/workflow-executions/workflow-execution-rerun/workflow-execution-rerun.tsx +159 -0
  81. package/src/routes/workflow-executions/workflow-execution-run/workflow-execution-run.tsx +139 -0
  82. package/src/routes/workflow-scheduled/workflow-scheduled-list.tsx +269 -0
  83. package/dist/chunk-LKWTBYYC.mjs +0 -35
  84. package/dist/chunk-RPAL6FHW.mjs +0 -73
  85. package/dist/workflow-execution-detail-5O5VCXL3.mjs +0 -870
  86. package/dist/workflow-execution-list-DETG4MRT.mjs +0 -347
  87. /package/dist/{chunk-22YYMH6M.mjs → chunk-RISX76YT.mjs} +0 -0
@@ -3,19 +3,19 @@ import {
3
3
  } from "./chunk-J6XIB6ZU.mjs";
4
4
  import {
5
5
  useCreateApiKey
6
- } from "./chunk-EFRMWHRX.mjs";
6
+ } from "./chunk-PFZQYK7R.mjs";
7
7
  import "./chunk-IUCDCPJU.mjs";
8
8
  import {
9
9
  KeyboundForm,
10
10
  RouteFocusModal,
11
11
  useRouteModal
12
- } from "./chunk-2U3RK3JG.mjs";
12
+ } from "./chunk-VEI6HW6L.mjs";
13
13
  import {
14
14
  Form
15
15
  } from "./chunk-ND3ODI36.mjs";
16
16
  import "./chunk-FXYH54JP.mjs";
17
17
  import "./chunk-774WSTCC.mjs";
18
- import "./chunk-DTY37DDZ.mjs";
18
+ import "./chunk-YKIWIMJX.mjs";
19
19
  import "./chunk-QZ7TP4HQ.mjs";
20
20
 
21
21
  // src/routes/api-key-management/api-key-management-create/api-key-management-create.tsx
@@ -9,25 +9,25 @@ import {
9
9
  import "./chunk-535OVBXR.mjs";
10
10
  import {
11
11
  SingleColumnPage
12
- } from "./chunk-22YYMH6M.mjs";
12
+ } from "./chunk-RISX76YT.mjs";
13
13
  import {
14
14
  useExtension
15
15
  } from "./chunk-C5P5PL3E.mjs";
16
16
  import {
17
17
  ActionMenu
18
18
  } from "./chunk-S3REQHPQ.mjs";
19
- import "./chunk-ST2YB7JN.mjs";
20
- import "./chunk-GBFVWROS.mjs";
19
+ import "./chunk-WLRJXEKL.mjs";
20
+ import "./chunk-5IEHCYJO.mjs";
21
+ import "./chunk-XIP35KXF.mjs";
21
22
  import {
22
23
  apiKeysQueryKeys,
23
24
  useApiKey,
24
25
  useDeleteApiKey,
25
26
  useRevokeApiKey
26
- } from "./chunk-EFRMWHRX.mjs";
27
- import "./chunk-LKWTBYYC.mjs";
28
- import "./chunk-ULSPL3DR.mjs";
29
- import "./chunk-DN3MIYQH.mjs";
30
- import "./chunk-XIM7X4FB.mjs";
27
+ } from "./chunk-PFZQYK7R.mjs";
28
+ import "./chunk-A7ULKHDE.mjs";
29
+ import "./chunk-FKTMBR44.mjs";
30
+ import "./chunk-SYACY6AL.mjs";
31
31
  import {
32
32
  SingleColumnPageSkeleton,
33
33
  Skeleton
@@ -36,14 +36,14 @@ import "./chunk-OAHCJFG3.mjs";
36
36
  import "./chunk-S4DMV3ZT.mjs";
37
37
  import {
38
38
  useUser
39
- } from "./chunk-YRWSG3YM.mjs";
39
+ } from "./chunk-HHPPTD3B.mjs";
40
40
  import {
41
41
  queryClient
42
42
  } from "./chunk-FXYH54JP.mjs";
43
43
  import "./chunk-774WSTCC.mjs";
44
44
  import {
45
45
  sdk
46
- } from "./chunk-DTY37DDZ.mjs";
46
+ } from "./chunk-YKIWIMJX.mjs";
47
47
  import "./chunk-QZ7TP4HQ.mjs";
48
48
 
49
49
  // src/routes/api-key-management/api-key-management-detail/api-key-management-detail.tsx
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  useApiKey,
3
3
  useUpdateApiKey
4
- } from "./chunk-EFRMWHRX.mjs";
4
+ } from "./chunk-PFZQYK7R.mjs";
5
5
  import "./chunk-IUCDCPJU.mjs";
6
6
  import {
7
7
  KeyboundForm,
8
8
  RouteDrawer,
9
9
  useRouteModal
10
- } from "./chunk-2U3RK3JG.mjs";
10
+ } from "./chunk-VEI6HW6L.mjs";
11
11
  import {
12
12
  Form
13
13
  } from "./chunk-ND3ODI36.mjs";
14
14
  import "./chunk-FXYH54JP.mjs";
15
15
  import "./chunk-774WSTCC.mjs";
16
- import "./chunk-DTY37DDZ.mjs";
16
+ import "./chunk-YKIWIMJX.mjs";
17
17
  import "./chunk-QZ7TP4HQ.mjs";
18
18
 
19
19
  // src/routes/api-key-management/api-key-management-edit/api-key-management-edit.tsx
@@ -19,7 +19,7 @@ import "./chunk-DFFLVEZ5.mjs";
19
19
  import "./chunk-535OVBXR.mjs";
20
20
  import {
21
21
  SingleColumnPage
22
- } from "./chunk-22YYMH6M.mjs";
22
+ } from "./chunk-RISX76YT.mjs";
23
23
  import {
24
24
  useExtension
25
25
  } from "./chunk-C5P5PL3E.mjs";
@@ -30,7 +30,7 @@ import {
30
30
  useApiKeys,
31
31
  useDeleteApiKey,
32
32
  useRevokeApiKey
33
- } from "./chunk-EFRMWHRX.mjs";
33
+ } from "./chunk-PFZQYK7R.mjs";
34
34
  import "./chunk-ITNQKZQQ.mjs";
35
35
  import {
36
36
  ConditionalTooltip
@@ -38,7 +38,7 @@ import {
38
38
  import "./chunk-S4DMV3ZT.mjs";
39
39
  import "./chunk-FXYH54JP.mjs";
40
40
  import "./chunk-774WSTCC.mjs";
41
- import "./chunk-DTY37DDZ.mjs";
41
+ import "./chunk-YKIWIMJX.mjs";
42
42
  import "./chunk-QZ7TP4HQ.mjs";
43
43
 
44
44
  // src/routes/api-key-management/api-key-management-list/api-key-management-list.tsx
package/dist/app.css CHANGED
@@ -1338,6 +1338,9 @@ video {
1338
1338
  .top-1\/2 {
1339
1339
  top: 50%;
1340
1340
  }
1341
+ .top-14 {
1342
+ top: 3.5rem;
1343
+ }
1341
1344
  .top-\[1100px\] {
1342
1345
  top: 1100px;
1343
1346
  }
@@ -1411,6 +1414,9 @@ video {
1411
1414
  .mb-1 {
1412
1415
  margin-bottom: 0.25rem;
1413
1416
  }
1417
+ .mb-2 {
1418
+ margin-bottom: 0.5rem;
1419
+ }
1414
1420
  .mb-4 {
1415
1421
  margin-bottom: 1rem;
1416
1422
  }
@@ -2126,9 +2132,15 @@ video {
2126
2132
  .grid-cols-2 {
2127
2133
  grid-template-columns: repeat(2, minmax(0, 1fr));
2128
2134
  }
2135
+ .grid-cols-4 {
2136
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2137
+ }
2129
2138
  .grid-cols-\[15px_1fr\] {
2130
2139
  grid-template-columns: 15px 1fr;
2131
2140
  }
2141
+ .grid-cols-\[1fr_1fr_1fr_auto\] {
2142
+ grid-template-columns: 1fr 1fr 1fr auto;
2143
+ }
2132
2144
  .grid-cols-\[1fr_1fr_28px\] {
2133
2145
  grid-template-columns: 1fr 1fr 28px;
2134
2146
  }
@@ -2219,6 +2231,9 @@ video {
2219
2231
  .gap-4 {
2220
2232
  gap: 1rem;
2221
2233
  }
2234
+ .gap-px {
2235
+ gap: 1px;
2236
+ }
2222
2237
  .gap-x-0\.5 {
2223
2238
  -moz-column-gap: 0.125rem;
2224
2239
  column-gap: 0.125rem;
@@ -2859,6 +2874,10 @@ video {
2859
2874
  padding-top: 1.5rem;
2860
2875
  padding-bottom: 1.5rem;
2861
2876
  }
2877
+ .py-8 {
2878
+ padding-top: 2rem;
2879
+ padding-bottom: 2rem;
2880
+ }
2862
2881
  .py-\[2px\] {
2863
2882
  padding-top: 2px;
2864
2883
  padding-bottom: 2px;
@@ -3170,6 +3189,9 @@ video {
3170
3189
  .text-ui-tag-orange-text {
3171
3190
  color: var(--tag-orange-text);
3172
3191
  }
3192
+ .text-ui-tag-purple-icon {
3193
+ color: var(--tag-purple-icon);
3194
+ }
3173
3195
  .text-ui-tag-purple-text {
3174
3196
  color: var(--tag-purple-text);
3175
3197
  }
@@ -3574,6 +3596,9 @@ video {
3574
3596
  .ease-out {
3575
3597
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
3576
3598
  }
3599
+ .running {
3600
+ animation-play-state: running;
3601
+ }
3577
3602
  .worfklow-grid {
3578
3603
  background-image: radial-gradient(black 1px, transparent 0);
3579
3604
  background-size: 40px 40px;
@@ -3721,6 +3746,9 @@ video {
3721
3746
  --tw-content: "";
3722
3747
  content: var(--tw-content);
3723
3748
  }
3749
+ .last\:border-b-0:last-child {
3750
+ border-bottom-width: 0px;
3751
+ }
3724
3752
  .last\:border-r-0:last-child {
3725
3753
  border-right-width: 0px;
3726
3754
  }
@@ -3826,6 +3854,9 @@ video {
3826
3854
  .hover\:text-ui-fg-subtle:hover {
3827
3855
  color: var(--fg-subtle);
3828
3856
  }
3857
+ .hover\:underline:hover {
3858
+ text-decoration-line: underline;
3859
+ }
3829
3860
  .focus\:z-\[1\]:focus {
3830
3861
  z-index: 1;
3831
3862
  }