@wakastellar/ui 2.1.1 → 2.3.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/dist/blocks/apm-overview/index.d.ts +58 -0
- package/dist/blocks/auth-2fa/index.d.ts +38 -0
- package/dist/blocks/chat-interface/index.d.ts +66 -0
- package/dist/blocks/checkout-flow/index.d.ts +76 -0
- package/dist/blocks/cicd-builder/index.d.ts +47 -0
- package/dist/blocks/cloud-cost-dashboard/index.d.ts +49 -0
- package/dist/blocks/container-orchestrator/index.d.ts +63 -0
- package/dist/blocks/dashboard-kpi/index.d.ts +69 -0
- package/dist/blocks/database-admin/index.d.ts +84 -0
- package/dist/blocks/deployment-dashboard/index.d.ts +68 -0
- package/dist/blocks/gitops-sync-status/index.d.ts +45 -0
- package/dist/blocks/incident-manager/index.d.ts +44 -0
- package/dist/blocks/index.d.ts +17 -0
- package/dist/blocks/infrastructure-map/index.d.ts +32 -0
- package/dist/blocks/on-call-schedule/index.d.ts +43 -0
- package/dist/blocks/player-profile/index.d.ts +78 -0
- package/dist/blocks/release-notes/index.d.ts +49 -0
- package/dist/components/index.d.ts +19 -0
- package/dist/components/waka-alert-panel/index.d.ts +45 -0
- package/dist/components/waka-artifact-list/index.d.ts +32 -0
- package/dist/components/waka-build-matrix/index.d.ts +36 -0
- package/dist/components/waka-config-comparator/index.d.ts +37 -0
- package/dist/components/waka-container-list/index.d.ts +51 -0
- package/dist/components/waka-database-card/index.d.ts +46 -0
- package/dist/components/waka-dependency-tree/index.d.ts +38 -0
- package/dist/components/waka-env-var-editor/index.d.ts +30 -0
- package/dist/components/waka-feature-flag-row/index.d.ts +45 -0
- package/dist/components/waka-kubernetes-overview/index.d.ts +98 -0
- package/dist/components/waka-log-viewer/index.d.ts +38 -0
- package/dist/components/waka-migration-list/index.d.ts +36 -0
- package/dist/components/waka-pod-card/index.d.ts +73 -0
- package/dist/components/waka-query-explain/index.d.ts +48 -0
- package/dist/components/waka-secret-card/index.d.ts +43 -0
- package/dist/components/waka-security-scan-result/index.d.ts +45 -0
- package/dist/components/waka-service-graph/index.d.ts +44 -0
- package/dist/components/waka-test-report/index.d.ts +60 -0
- package/dist/components/waka-trace-viewer/index.d.ts +36 -0
- package/dist/index.cjs.js +246 -199
- package/dist/index.es.js +48239 -36286
- package/package.json +1 -1
- package/src/blocks/apm-overview/index.tsx +672 -0
- package/src/blocks/auth-2fa/index.tsx +655 -0
- package/src/blocks/chat-interface/index.tsx +611 -0
- package/src/blocks/checkout-flow/index.tsx +771 -0
- package/src/blocks/cicd-builder/index.tsx +738 -0
- package/src/blocks/cloud-cost-dashboard/index.tsx +597 -0
- package/src/blocks/container-orchestrator/index.tsx +729 -0
- package/src/blocks/dashboard-kpi/index.tsx +424 -0
- package/src/blocks/database-admin/index.tsx +679 -0
- package/src/blocks/deployment-dashboard/index.tsx +609 -0
- package/src/blocks/gitops-sync-status/index.tsx +557 -0
- package/src/blocks/incident-manager/index.tsx +586 -0
- package/src/blocks/index.ts +143 -0
- package/src/blocks/infrastructure-map/index.tsx +638 -0
- package/src/blocks/on-call-schedule/index.tsx +615 -0
- package/src/blocks/player-profile/index.tsx +541 -0
- package/src/blocks/release-notes/index.tsx +643 -0
- package/src/components/index.ts +189 -0
- package/src/components/language-selector/index.tsx +21 -11
- package/src/components/waka-alert-panel/index.tsx +493 -0
- package/src/components/waka-artifact-list/index.tsx +416 -0
- package/src/components/waka-build-matrix/index.tsx +396 -0
- package/src/components/waka-config-comparator/index.tsx +416 -0
- package/src/components/waka-container-list/index.tsx +475 -0
- package/src/components/waka-database-card/index.tsx +473 -0
- package/src/components/waka-dependency-tree/index.tsx +542 -0
- package/src/components/waka-env-var-editor/index.tsx +417 -0
- package/src/components/waka-feature-flag-row/index.tsx +386 -0
- package/src/components/waka-kubernetes-overview/index.tsx +536 -0
- package/src/components/waka-log-viewer/index.tsx +386 -0
- package/src/components/waka-migration-list/index.tsx +487 -0
- package/src/components/waka-pod-card/index.tsx +528 -0
- package/src/components/waka-query-explain/index.tsx +657 -0
- package/src/components/waka-secret-card/index.tsx +371 -0
- package/src/components/waka-security-scan-result/index.tsx +473 -0
- package/src/components/waka-service-graph/index.tsx +445 -0
- package/src/components/waka-test-report/index.tsx +469 -0
- package/src/components/waka-trace-viewer/index.tsx +490 -0
package/src/blocks/index.ts
CHANGED
|
@@ -78,3 +78,146 @@ export * from './wizard'
|
|
|
78
78
|
// Theme & i18n
|
|
79
79
|
// export * from './theme-creator-block' // TODO: Refactor to match new theme-provider API
|
|
80
80
|
export * from './i18n-editor'
|
|
81
|
+
|
|
82
|
+
// New Blocks - KPI, E-commerce, Gaming, Security, Communication, DevOps
|
|
83
|
+
export * from './dashboard-kpi'
|
|
84
|
+
export * from './checkout-flow'
|
|
85
|
+
export * from './player-profile'
|
|
86
|
+
export * from './auth-2fa'
|
|
87
|
+
|
|
88
|
+
// Chat Interface - export with aliases to avoid conflicts with ./chat block
|
|
89
|
+
export {
|
|
90
|
+
ChatInterface,
|
|
91
|
+
defaultUsers as defaultChatInterfaceUsers,
|
|
92
|
+
defaultConversations as defaultChatInterfaceConversations,
|
|
93
|
+
defaultMessages as defaultChatInterfaceMessages,
|
|
94
|
+
} from './chat-interface'
|
|
95
|
+
export type {
|
|
96
|
+
ChatInterfaceProps,
|
|
97
|
+
ChatUser as ChatInterfaceUser,
|
|
98
|
+
ChatMessage as ChatInterfaceMessage,
|
|
99
|
+
ChatConversation as ChatInterfaceConversation,
|
|
100
|
+
ChatAttachment as ChatInterfaceAttachment,
|
|
101
|
+
ChatReaction as ChatInterfaceReaction,
|
|
102
|
+
} from './chat-interface'
|
|
103
|
+
|
|
104
|
+
export * from './deployment-dashboard'
|
|
105
|
+
|
|
106
|
+
// DevOps Blocks
|
|
107
|
+
export {
|
|
108
|
+
IncidentManager,
|
|
109
|
+
defaultIncidents,
|
|
110
|
+
type Incident,
|
|
111
|
+
type IncidentSeverity,
|
|
112
|
+
type IncidentStatus,
|
|
113
|
+
type IncidentResponder,
|
|
114
|
+
type IncidentEvent,
|
|
115
|
+
type IncidentManagerProps,
|
|
116
|
+
} from './incident-manager'
|
|
117
|
+
|
|
118
|
+
export {
|
|
119
|
+
InfrastructureMap,
|
|
120
|
+
defaultInfraResources,
|
|
121
|
+
type InfraResource,
|
|
122
|
+
type ResourceType as InfraResourceType,
|
|
123
|
+
type ResourceStatus as InfraResourceStatus,
|
|
124
|
+
type CloudProvider as InfraCloudProvider,
|
|
125
|
+
type InfrastructureMapProps,
|
|
126
|
+
} from './infrastructure-map'
|
|
127
|
+
|
|
128
|
+
export {
|
|
129
|
+
CICDBuilder,
|
|
130
|
+
defaultPipeline,
|
|
131
|
+
type Pipeline as CICDPipeline,
|
|
132
|
+
type PipelineStage as CICDPipelineStage,
|
|
133
|
+
type PipelineStep,
|
|
134
|
+
type StepType,
|
|
135
|
+
type StepStatus,
|
|
136
|
+
type CICDBuilderProps,
|
|
137
|
+
} from './cicd-builder'
|
|
138
|
+
|
|
139
|
+
export {
|
|
140
|
+
ReleaseNotes,
|
|
141
|
+
defaultReleases,
|
|
142
|
+
type Release,
|
|
143
|
+
type ReleaseType,
|
|
144
|
+
type ReleaseStatus,
|
|
145
|
+
type ChangeItem,
|
|
146
|
+
type ChangeType,
|
|
147
|
+
type Contributor,
|
|
148
|
+
type ReleaseNotesProps,
|
|
149
|
+
} from './release-notes'
|
|
150
|
+
|
|
151
|
+
export {
|
|
152
|
+
OnCallScheduleBlock,
|
|
153
|
+
defaultOnCallSchedule,
|
|
154
|
+
type OnCallSchedule,
|
|
155
|
+
type OnCallShift,
|
|
156
|
+
type OnCallUser,
|
|
157
|
+
type RotationType,
|
|
158
|
+
type EscalationLevel,
|
|
159
|
+
type OnCallScheduleBlockProps,
|
|
160
|
+
} from './on-call-schedule'
|
|
161
|
+
|
|
162
|
+
export {
|
|
163
|
+
CloudCostDashboard,
|
|
164
|
+
defaultCloudCostSummary,
|
|
165
|
+
defaultCloudCostItems,
|
|
166
|
+
defaultCostAnomalies,
|
|
167
|
+
type CostSummary,
|
|
168
|
+
type CostItem,
|
|
169
|
+
type CostAnomaly,
|
|
170
|
+
type CostCategory,
|
|
171
|
+
type CloudProvider as CostCloudProvider,
|
|
172
|
+
type TimeRange as CostTimeRange,
|
|
173
|
+
type CloudCostDashboardProps,
|
|
174
|
+
} from './cloud-cost-dashboard'
|
|
175
|
+
|
|
176
|
+
export {
|
|
177
|
+
GitOpsSyncStatus,
|
|
178
|
+
defaultGitOpsApplications,
|
|
179
|
+
type GitOpsApplication,
|
|
180
|
+
type GitOpsResource,
|
|
181
|
+
type SyncStatus,
|
|
182
|
+
type HealthStatus as GitOpsHealthStatus,
|
|
183
|
+
type ResourceKind,
|
|
184
|
+
type GitOpsSyncStatusProps,
|
|
185
|
+
} from './gitops-sync-status'
|
|
186
|
+
|
|
187
|
+
export {
|
|
188
|
+
APMOverview,
|
|
189
|
+
defaultAPMServices,
|
|
190
|
+
defaultAPMTransactions,
|
|
191
|
+
type APMService,
|
|
192
|
+
type APMTransaction,
|
|
193
|
+
type ServiceMetrics as APMServiceMetrics,
|
|
194
|
+
type ServiceEndpoint as APMServiceEndpoint,
|
|
195
|
+
type ServiceStatus as APMServiceStatus,
|
|
196
|
+
type TimeRange as APMTimeRange,
|
|
197
|
+
type APMOverviewProps,
|
|
198
|
+
} from './apm-overview'
|
|
199
|
+
|
|
200
|
+
export {
|
|
201
|
+
ContainerOrchestrator,
|
|
202
|
+
defaultOrchestratorServices,
|
|
203
|
+
type OrchestratorService,
|
|
204
|
+
type OrchestratorContainer,
|
|
205
|
+
type ContainerStatus as OrchestratorContainerStatus,
|
|
206
|
+
type ServiceStatus as OrchestratorServiceStatus,
|
|
207
|
+
type ContainerResource,
|
|
208
|
+
type ContainerOrchestratorProps,
|
|
209
|
+
} from './container-orchestrator'
|
|
210
|
+
|
|
211
|
+
export {
|
|
212
|
+
DatabaseAdmin,
|
|
213
|
+
defaultDatabaseInstance,
|
|
214
|
+
type DatabaseInstance,
|
|
215
|
+
type DatabaseConnection,
|
|
216
|
+
type DatabaseBackup,
|
|
217
|
+
type SlowQuery,
|
|
218
|
+
type DatabaseMetrics as AdminDatabaseMetrics,
|
|
219
|
+
type DatabaseStatus as AdminDatabaseStatus,
|
|
220
|
+
type BackupStatus,
|
|
221
|
+
type QueryStatus,
|
|
222
|
+
type DatabaseAdminProps,
|
|
223
|
+
} from './database-admin'
|