@elevasis/ui 2.2.1 → 2.3.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.
Files changed (46) hide show
  1. package/dist/{chunk-F6RBK7NJ.js → chunk-22UVE3RA.js} +1 -1
  2. package/dist/{chunk-O6KZ46EJ.js → chunk-2VEXBZNO.js} +5 -5
  3. package/dist/{chunk-2JTCPVZX.js → chunk-3MQKSLZ7.js} +2 -2
  4. package/dist/{chunk-3WMJWXZY.js → chunk-47YILFON.js} +96 -68
  5. package/dist/{chunk-J5TBNCMD.js → chunk-IPRMGSCV.js} +4 -4
  6. package/dist/{chunk-MZPVNRPL.js → chunk-ISHNN42L.js} +134 -10
  7. package/dist/{chunk-LH7RCX4Y.js → chunk-JT7WDIZI.js} +2 -2
  8. package/dist/{chunk-JT3FN6TE.js → chunk-PEZ4WOPF.js} +2 -2
  9. package/dist/{chunk-YOZEGIZA.js → chunk-U2CEWNXK.js} +3893 -1559
  10. package/dist/{chunk-M66JAN7R.js → chunk-VNUOQQNY.js} +1 -1
  11. package/dist/{chunk-5KBVISVJ.js → chunk-WN764MR7.js} +3 -3
  12. package/dist/{chunk-PFONCU6C.js → chunk-ZG7MLOBE.js} +1 -1
  13. package/dist/components/index.css +17 -14
  14. package/dist/components/index.d.ts +12 -1
  15. package/dist/components/index.js +852 -43
  16. package/dist/features/auth/index.css +17 -14
  17. package/dist/features/dashboard/index.css +17 -14
  18. package/dist/features/dashboard/index.d.ts +4 -0
  19. package/dist/features/dashboard/index.js +7 -7
  20. package/dist/features/monitoring/index.css +17 -14
  21. package/dist/features/monitoring/index.d.ts +4 -0
  22. package/dist/features/monitoring/index.js +8 -8
  23. package/dist/features/operations/index.css +17 -14
  24. package/dist/features/operations/index.d.ts +26 -14
  25. package/dist/features/operations/index.js +9 -9
  26. package/dist/features/settings/index.css +17 -14
  27. package/dist/features/settings/index.d.ts +4 -0
  28. package/dist/features/settings/index.js +8 -8
  29. package/dist/graph/index.css +0 -14
  30. package/dist/graph/index.js +1 -1
  31. package/dist/hooks/index.css +17 -14
  32. package/dist/hooks/index.d.ts +4 -1
  33. package/dist/hooks/index.js +6 -6
  34. package/dist/hooks/published.css +17 -14
  35. package/dist/hooks/published.d.ts +4 -1
  36. package/dist/hooks/published.js +5 -5
  37. package/dist/index.css +17 -14
  38. package/dist/index.d.ts +307 -249
  39. package/dist/index.js +7 -7
  40. package/dist/provider/index.css +7 -0
  41. package/dist/provider/index.d.ts +58 -2
  42. package/dist/provider/index.js +3 -3
  43. package/dist/provider/published.d.ts +58 -2
  44. package/dist/provider/published.js +1 -1
  45. package/dist/theme/index.js +2 -2
  46. package/package.json +9 -3
@@ -196,6 +196,13 @@
196
196
  .recharts-surface:focus {
197
197
  outline: none;
198
198
  }
199
+ .hide-scrollbar {
200
+ scrollbar-width: none;
201
+ -ms-overflow-style: none;
202
+ }
203
+ .hide-scrollbar::-webkit-scrollbar {
204
+ display: none;
205
+ }
199
206
 
200
207
  /* src/graph/Graph.module.css */
201
208
  @keyframes edgeFlow {
@@ -292,14 +299,6 @@
292
299
  opacity: 0;
293
300
  }
294
301
  }
295
- .graphContainer :global(.react-flow__node.selected),
296
- .graphContainer :global(.react-flow__node:focus),
297
- .graphContainer :global(.react-flow__node:focus-visible) {
298
- outline: none !important;
299
- }
300
- .graphContainer :global(.react-flow__node.selected > *) {
301
- box-shadow: none;
302
- }
303
302
  .graphContainer {
304
303
  position: relative;
305
304
  background-image:
@@ -340,12 +339,6 @@
340
339
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
341
340
  position: relative;
342
341
  }
343
- .node :global(.react-flow__node.selected),
344
- .node :global(.react-flow__node:focus),
345
- .node :global(.react-flow__node:focus-visible) {
346
- outline: none !important;
347
- box-shadow: none !important;
348
- }
349
342
  .node:nth-child(1) {
350
343
  animation-delay: 0.05s;
351
344
  }
@@ -584,3 +577,13 @@
584
577
  transform: none;
585
578
  }
586
579
  }
580
+
581
+ /* src/graph/Graph.globals.css */
582
+ .elevasis-graph-root .react-flow__node.selected,
583
+ .elevasis-graph-root .react-flow__node:focus,
584
+ .elevasis-graph-root .react-flow__node:focus-visible {
585
+ outline: none !important;
586
+ }
587
+ .elevasis-graph-root .react-flow__node.selected > * {
588
+ box-shadow: none;
589
+ }
@@ -7174,6 +7174,9 @@ declare function useDeploymentDocs(selectedDeploymentId?: string): {
7174
7174
  */
7175
7175
  declare function useCommandViewData(): _tanstack_react_query.UseQueryResult<CommandViewData, Error>;
7176
7176
 
7177
+ interface UseCommandViewStatsOptions {
7178
+ enabled?: boolean;
7179
+ }
7177
7180
  /**
7178
7181
  * Fetches Command View stats for the current organization
7179
7182
  *
@@ -7183,7 +7186,7 @@ declare function useCommandViewData(): _tanstack_react_query.UseQueryResult<Comm
7183
7186
  * @param timeRange - Time range for stats aggregation ('24h' or '7d')
7184
7187
  * @returns TanStack Query result with CommandViewStatsResponse
7185
7188
  */
7186
- declare function useCommandViewStats(timeRange?: StatsTimeRange): _tanstack_react_query.UseQueryResult<CommandViewStatsResponse, Error>;
7189
+ declare function useCommandViewStats(timeRange?: StatsTimeRange, options?: UseCommandViewStatsOptions): _tanstack_react_query.UseQueryResult<CommandViewStatsResponse, Error>;
7187
7190
 
7188
7191
  /**
7189
7192
  * Command View Types
@@ -1,10 +1,10 @@
1
- export { OperationsService, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateCompany, useCreateContact, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteCompanies, useDeleteContacts, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-J5TBNCMD.js';
1
+ export { OperationsService, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateCompany, useCreateContact, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteCompanies, useDeleteContacts, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-IPRMGSCV.js';
2
2
  export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
3
- import '../chunk-F6RBK7NJ.js';
4
- import '../chunk-LH7RCX4Y.js';
5
- import '../chunk-3WMJWXZY.js';
3
+ import '../chunk-22UVE3RA.js';
4
+ import '../chunk-JT7WDIZI.js';
5
+ import '../chunk-47YILFON.js';
6
6
  import '../chunk-CYXZHBP4.js';
7
- export { createUseFeatureAccess } from '../chunk-MZPVNRPL.js';
7
+ export { createUseFeatureAccess } from '../chunk-ISHNN42L.js';
8
8
  import '../chunk-RX4UWZZR.js';
9
9
  import '../chunk-Y3D3WFJG.js';
10
10
  import '../chunk-3KMDHCAR.js';
package/dist/index.css CHANGED
@@ -93,14 +93,6 @@
93
93
  opacity: 0;
94
94
  }
95
95
  }
96
- .graphContainer :global(.react-flow__node.selected),
97
- .graphContainer :global(.react-flow__node:focus),
98
- .graphContainer :global(.react-flow__node:focus-visible) {
99
- outline: none !important;
100
- }
101
- .graphContainer :global(.react-flow__node.selected > *) {
102
- box-shadow: none;
103
- }
104
96
  .graphContainer {
105
97
  position: relative;
106
98
  background-image:
@@ -141,12 +133,6 @@
141
133
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
142
134
  position: relative;
143
135
  }
144
- .node :global(.react-flow__node.selected),
145
- .node :global(.react-flow__node:focus),
146
- .node :global(.react-flow__node:focus-visible) {
147
- outline: none !important;
148
- box-shadow: none !important;
149
- }
150
136
  .node:nth-child(1) {
151
137
  animation-delay: 0.05s;
152
138
  }
@@ -584,3 +570,20 @@
584
570
  .recharts-surface:focus {
585
571
  outline: none;
586
572
  }
573
+ .hide-scrollbar {
574
+ scrollbar-width: none;
575
+ -ms-overflow-style: none;
576
+ }
577
+ .hide-scrollbar::-webkit-scrollbar {
578
+ display: none;
579
+ }
580
+
581
+ /* src/graph/Graph.globals.css */
582
+ .elevasis-graph-root .react-flow__node.selected,
583
+ .elevasis-graph-root .react-flow__node:focus,
584
+ .elevasis-graph-root .react-flow__node:focus-visible {
585
+ outline: none !important;
586
+ }
587
+ .elevasis-graph-root .react-flow__node.selected > * {
588
+ box-shadow: none;
589
+ }