@wakastellar/ui 2.1.2 → 2.3.2
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/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/database-admin/index.d.ts +84 -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 +10 -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/release-notes/index.d.ts +49 -0
- package/dist/components/index.d.ts +34 -0
- package/dist/components/waka-ad-banner/index.d.ts +36 -0
- package/dist/components/waka-ad-fallback/index.d.ts +33 -0
- package/dist/components/waka-ad-inline/index.d.ts +15 -0
- package/dist/components/waka-ad-interstitial/index.d.ts +26 -0
- package/dist/components/waka-ad-placeholder/index.d.ts +17 -0
- package/dist/components/waka-ad-provider/index.d.ts +103 -0
- package/dist/components/waka-ad-sidebar/index.d.ts +18 -0
- package/dist/components/waka-ad-sticky-footer/index.d.ts +17 -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-content-recommendation/index.d.ts +23 -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-outstream-video/index.d.ts +24 -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-sponsored-badge/index.d.ts +20 -0
- package/dist/components/waka-sponsored-card/index.d.ts +25 -0
- package/dist/components/waka-sponsored-feed/index.d.ts +31 -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/components/waka-video-ad/index.d.ts +32 -0
- package/dist/components/waka-video-overlay/index.d.ts +26 -0
- package/dist/index.cjs.js +251 -200
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +47315 -35823
- package/dist/utils/security.d.ts +96 -0
- package/package.json +4 -4
- package/src/blocks/apm-overview/index.tsx +672 -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/database-admin/index.tsx +679 -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 +119 -0
- package/src/blocks/infrastructure-map/index.tsx +638 -0
- package/src/blocks/on-call-schedule/index.tsx +615 -0
- package/src/blocks/release-notes/index.tsx +643 -0
- package/src/blocks/sidebar/index.tsx +6 -6
- package/src/components/DataTable/templates/index.tsx +3 -2
- package/src/components/index.ts +283 -0
- package/src/components/waka-3d-pie-chart/index.tsx +11 -11
- package/src/components/waka-achievement-unlock/index.tsx +16 -16
- package/src/components/waka-ad-banner/index.tsx +275 -0
- package/src/components/waka-ad-fallback/index.tsx +181 -0
- package/src/components/waka-ad-inline/index.tsx +103 -0
- package/src/components/waka-ad-interstitial/index.tsx +278 -0
- package/src/components/waka-ad-placeholder/index.tsx +84 -0
- package/src/components/waka-ad-provider/index.tsx +329 -0
- package/src/components/waka-ad-sidebar/index.tsx +113 -0
- package/src/components/waka-ad-sticky-footer/index.tsx +125 -0
- package/src/components/waka-alert-panel/index.tsx +493 -0
- package/src/components/waka-artifact-list/index.tsx +416 -0
- package/src/components/waka-badge-showcase/index.tsx +12 -11
- package/src/components/waka-build-matrix/index.tsx +396 -0
- package/src/components/waka-command-bar/index.tsx +2 -1
- package/src/components/waka-config-comparator/index.tsx +416 -0
- package/src/components/waka-container-list/index.tsx +475 -0
- package/src/components/waka-content-recommendation/index.tsx +294 -0
- package/src/components/waka-cost-breakdown/index.tsx +10 -10
- 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-funnel-chart/index.tsx +8 -8
- package/src/components/waka-health-pulse/index.tsx +6 -6
- package/src/components/waka-kubernetes-overview/index.tsx +536 -0
- package/src/components/waka-leaderboard/index.tsx +9 -9
- package/src/components/waka-log-viewer/index.tsx +386 -0
- package/src/components/waka-loot-box/index.tsx +20 -20
- package/src/components/waka-migration-list/index.tsx +487 -0
- package/src/components/waka-outstream-video/index.tsx +240 -0
- package/src/components/waka-player-card/index.tsx +5 -5
- package/src/components/waka-pod-card/index.tsx +528 -0
- package/src/components/waka-query-explain/index.tsx +657 -0
- package/src/components/waka-quota-bar/index.tsx +4 -4
- package/src/components/waka-radar-score/index.tsx +10 -10
- package/src/components/waka-scratch-card/index.tsx +5 -4
- 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-server-rack/index.tsx +28 -27
- package/src/components/waka-service-graph/index.tsx +445 -0
- package/src/components/waka-sponsored-badge/index.tsx +97 -0
- package/src/components/waka-sponsored-card/index.tsx +275 -0
- package/src/components/waka-sponsored-feed/index.tsx +127 -0
- package/src/components/waka-spotlight/index.tsx +2 -1
- package/src/components/waka-success-explosion/index.tsx +4 -4
- package/src/components/waka-test-report/index.tsx +469 -0
- package/src/components/waka-trace-viewer/index.tsx +490 -0
- package/src/components/waka-video-ad/index.tsx +406 -0
- package/src/components/waka-video-overlay/index.tsx +257 -0
- package/src/components/waka-xp-bar/index.tsx +13 -13
- package/src/styles/base.css +16 -0
- package/src/styles/tailwind.preset.js +12 -0
- package/src/styles/themes/forest.css +16 -0
- package/src/styles/themes/monochrome.css +16 -0
- package/src/styles/themes/perpetuity.css +16 -0
- package/src/styles/themes/sunset.css +16 -0
- package/src/styles/themes/twilight.css +16 -0
package/src/blocks/index.ts
CHANGED
|
@@ -102,3 +102,122 @@ export type {
|
|
|
102
102
|
} from './chat-interface'
|
|
103
103
|
|
|
104
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'
|