@solidxai/core-ui 0.1.12-beta.0 → 0.1.12-beta.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.
- package/dist/components/auth/SolidLogin.d.ts.map +1 -1
- package/dist/components/auth/SolidLogin.js +6 -3
- package/dist/components/auth/SolidLogin.js.map +1 -1
- package/dist/components/auth/SolidLogin.tsx +16 -2
- package/dist/components/auth/SolidRegister.d.ts.map +1 -1
- package/dist/components/auth/SolidRegister.js +7 -4
- package/dist/components/auth/SolidRegister.js.map +1 -1
- package/dist/components/auth/SolidRegister.tsx +16 -2
- package/dist/components/common/SolidLoadingState.d.ts +10 -0
- package/dist/components/common/SolidLoadingState.d.ts.map +1 -0
- package/dist/components/common/SolidLoadingState.js +8 -0
- package/dist/components/common/SolidLoadingState.js.map +1 -0
- package/dist/components/common/SolidLoadingState.module.css +56 -0
- package/dist/components/common/SolidLoadingState.tsx +28 -0
- package/dist/components/core/json/SolidJsonEditor.css +195 -0
- package/dist/components/core/json/SolidJsonEditor.d.ts +19 -0
- package/dist/components/core/json/SolidJsonEditor.d.ts.map +1 -0
- package/dist/components/core/json/SolidJsonEditor.js +109 -0
- package/dist/components/core/json/SolidJsonEditor.js.map +1 -0
- package/dist/components/core/json/SolidJsonEditor.tsx +150 -0
- package/dist/components/core/module/CreateModule.css +70 -2
- package/dist/components/core/module/CreateModule.d.ts.map +1 -1
- package/dist/components/core/module/CreateModule.js +2 -2
- package/dist/components/core/module/CreateModule.js.map +1 -1
- package/dist/components/core/module/CreateModule.tsx +13 -1
- package/dist/components/shad-cn-ui/SolidTabs.d.ts.map +1 -1
- package/dist/components/shad-cn-ui/SolidTabs.js +1 -1
- package/dist/components/shad-cn-ui/SolidTabs.js.map +1 -1
- package/dist/components/shad-cn-ui/SolidTabs.tsx +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.ts +14 -0
- package/dist/redux/api/datasourceIntrospectionApi.d.ts +203 -0
- package/dist/redux/api/datasourceIntrospectionApi.d.ts.map +1 -0
- package/dist/redux/api/datasourceIntrospectionApi.js +71 -0
- package/dist/redux/api/datasourceIntrospectionApi.js.map +1 -0
- package/dist/redux/api/datasourceIntrospectionApi.ts +261 -0
- package/dist/redux/api/datasourceManagementApi.d.ts +46 -0
- package/dist/redux/api/datasourceManagementApi.d.ts.map +1 -0
- package/dist/redux/api/datasourceManagementApi.js +35 -0
- package/dist/redux/api/datasourceManagementApi.js.map +1 -0
- package/dist/redux/api/datasourceManagementApi.ts +86 -0
- package/dist/redux/store/StoreProvider.d.ts.map +1 -1
- package/dist/redux/store/StoreProvider.js +4 -2
- package/dist/redux/store/StoreProvider.js.map +1 -1
- package/dist/redux/store/StoreProvider.tsx +9 -1
- package/dist/redux/store/defaultStoreConfig.d.ts +23 -0
- package/dist/redux/store/defaultStoreConfig.d.ts.map +1 -1
- package/dist/redux/store/defaultStoreConfig.js +4 -0
- package/dist/redux/store/defaultStoreConfig.js.map +1 -1
- package/dist/redux/store/defaultStoreConfig.ts +4 -0
- package/dist/resources/solid-custom.css +70 -16
- package/dist/routes/guards/AdminGuard.d.ts.map +1 -1
- package/dist/routes/guards/AdminGuard.js +2 -1
- package/dist/routes/guards/AdminGuard.js.map +1 -1
- package/dist/routes/guards/AdminGuard.tsx +7 -1
- package/dist/routes/guards/AuthGuard.d.ts.map +1 -1
- package/dist/routes/guards/AuthGuard.js +2 -1
- package/dist/routes/guards/AuthGuard.js.map +1 -1
- package/dist/routes/guards/AuthGuard.tsx +8 -2
- package/dist/routes/guards/GuestGuard.d.ts.map +1 -1
- package/dist/routes/guards/GuestGuard.js +2 -1
- package/dist/routes/guards/GuestGuard.js.map +1 -1
- package/dist/routes/guards/GuestGuard.tsx +8 -2
- package/dist/routes/pages/admin/core/DashboardPage.d.ts.map +1 -1
- package/dist/routes/pages/admin/core/DashboardPage.js +7 -5
- package/dist/routes/pages/admin/core/DashboardPage.js.map +1 -1
- package/dist/routes/pages/admin/core/DashboardPage.module.css +18 -0
- package/dist/routes/pages/admin/core/DashboardPage.tsx +50 -32
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.css +828 -0
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.d.ts +3 -0
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.d.ts.map +1 -0
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.js +947 -0
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.js.map +1 -0
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.tsx +1719 -0
- package/dist/routes/pages/admin/core/DatasourcesPage.css +337 -0
- package/dist/routes/pages/admin/core/DatasourcesPage.d.ts +3 -0
- package/dist/routes/pages/admin/core/DatasourcesPage.d.ts.map +1 -0
- package/dist/routes/pages/admin/core/DatasourcesPage.js +221 -0
- package/dist/routes/pages/admin/core/DatasourcesPage.js.map +1 -0
- package/dist/routes/pages/admin/core/DatasourcesPage.tsx +540 -0
- package/dist/routes/solidRoutes.d.ts.map +1 -1
- package/dist/routes/solidRoutes.js +5 -1
- package/dist/routes/solidRoutes.js.map +1 -1
- package/dist/routes/solidRoutes.tsx +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,828 @@
|
|
|
1
|
+
.sdix-page {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
gap: 0.85rem;
|
|
5
|
+
padding: 0.95rem 1.15rem 1.1rem;
|
|
6
|
+
min-height: calc(100vh - 7.5rem);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.sdix-toolbar {
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
gap: 0.9rem;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.sdix-toolbar__left,
|
|
17
|
+
.sdix-toolbar__actions {
|
|
18
|
+
display: flex;
|
|
19
|
+
align-items: center;
|
|
20
|
+
gap: 0.7rem;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.sdix-toolbar-select {
|
|
24
|
+
min-width: min(34rem, 62vw);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.sdix-toolbar-select--compact {
|
|
28
|
+
min-width: 14rem;
|
|
29
|
+
width: 14rem;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.sdix-toolbar-search {
|
|
33
|
+
display: flex;
|
|
34
|
+
align-items: center;
|
|
35
|
+
gap: 0.65rem;
|
|
36
|
+
width: min(26rem, 48vw);
|
|
37
|
+
padding: 0.34rem 0.72rem;
|
|
38
|
+
border: 1px solid #e6e9f4;
|
|
39
|
+
border-radius: 0.78rem;
|
|
40
|
+
background: #fff;
|
|
41
|
+
color: #6a7288;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.sdix-toolbar-search svg {
|
|
45
|
+
flex-shrink: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.sdix-toolbar-search .solid-input {
|
|
49
|
+
border: none;
|
|
50
|
+
background: transparent;
|
|
51
|
+
padding: 0;
|
|
52
|
+
box-shadow: none;
|
|
53
|
+
min-height: 1.5rem;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.sdix-toolbar-search .solid-input:focus {
|
|
57
|
+
box-shadow: none;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.sdix-inline-status {
|
|
61
|
+
display: inline-flex;
|
|
62
|
+
align-items: center;
|
|
63
|
+
gap: 0.45rem;
|
|
64
|
+
padding: 0.42rem 0.72rem;
|
|
65
|
+
border-radius: 999px;
|
|
66
|
+
background: #f3f6ff;
|
|
67
|
+
color: #5d647b;
|
|
68
|
+
font-size: 0.88rem;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.sdix-icon-button {
|
|
72
|
+
min-width: 2.15rem;
|
|
73
|
+
width: 2.15rem;
|
|
74
|
+
min-height: 2.15rem;
|
|
75
|
+
height: 2.15rem;
|
|
76
|
+
padding: 0;
|
|
77
|
+
justify-content: center;
|
|
78
|
+
border-radius: 0.8rem;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.sdix-workbench {
|
|
82
|
+
display: flex;
|
|
83
|
+
flex-direction: column;
|
|
84
|
+
min-height: 0;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.sdix-table-shell {
|
|
88
|
+
border: 1px solid #e8ebf4;
|
|
89
|
+
border-radius: 1rem;
|
|
90
|
+
background: #fff;
|
|
91
|
+
overflow: hidden;
|
|
92
|
+
min-height: 0;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.sdix-table-area {
|
|
96
|
+
min-height: 0;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.sdix-table-area .solid-table-density-compact .solid-data-table-th {
|
|
100
|
+
height: 30px;
|
|
101
|
+
padding: 0.22rem 0.5rem;
|
|
102
|
+
font-size: 0.77rem;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.sdix-table-area .solid-table-density-compact .solid-data-table-td {
|
|
106
|
+
height: 30px;
|
|
107
|
+
padding: 0.26rem 0.5rem;
|
|
108
|
+
vertical-align: top;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.sdix-table-primary-cell {
|
|
112
|
+
display: flex;
|
|
113
|
+
flex-direction: column;
|
|
114
|
+
gap: 0.08rem;
|
|
115
|
+
line-height: 1.12;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.sdix-table-primary-cell strong {
|
|
119
|
+
color: #20263a;
|
|
120
|
+
font-weight: 600;
|
|
121
|
+
line-height: 1.15;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.sdix-table-primary-cell span,
|
|
125
|
+
.sdix-muted-cell {
|
|
126
|
+
color: #6b7388;
|
|
127
|
+
font-size: 0.76rem;
|
|
128
|
+
line-height: 1.1;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.sdix-table-row-selected {
|
|
132
|
+
background: color-mix(in srgb, var(--primary) 12%, transparent);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.sdix-status-badge {
|
|
136
|
+
display: inline-flex;
|
|
137
|
+
align-items: center;
|
|
138
|
+
width: fit-content;
|
|
139
|
+
border-radius: 999px;
|
|
140
|
+
padding: 0.28rem 0.62rem;
|
|
141
|
+
font-size: 0.75rem;
|
|
142
|
+
font-weight: 600;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.sdix-status-badge.is-mapped {
|
|
146
|
+
background: #eef6f4;
|
|
147
|
+
color: #2d746d;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.sdix-status-badge.is-unmapped {
|
|
151
|
+
background: #f0edff;
|
|
152
|
+
color: #6751d6;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.sdix-status-badge.is-superclass {
|
|
156
|
+
background: #eef2fb;
|
|
157
|
+
color: #56627f;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.sdix-status-badge.is-muted {
|
|
161
|
+
background: #f4f6fb;
|
|
162
|
+
color: #7a8398;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.sdix-provider-mark {
|
|
166
|
+
width: 2.35rem;
|
|
167
|
+
height: 2.35rem;
|
|
168
|
+
border-radius: 0.95rem;
|
|
169
|
+
display: inline-flex;
|
|
170
|
+
align-items: center;
|
|
171
|
+
justify-content: center;
|
|
172
|
+
color: #fff;
|
|
173
|
+
font-size: 0.84rem;
|
|
174
|
+
font-weight: 700;
|
|
175
|
+
letter-spacing: 0.04em;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.sdix-provider-mark--postgres {
|
|
179
|
+
background: linear-gradient(135deg, #1f5ea8 0%, #3e7ec3 100%);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.sdix-provider-mark--mysql {
|
|
183
|
+
background: linear-gradient(135deg, #0b6f77 0%, #1fa4ad 100%);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.sdix-provider-mark--mssql {
|
|
187
|
+
background: linear-gradient(135deg, #b4372d 0%, #e15443 100%);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.sdix-blocker,
|
|
191
|
+
.sdix-detail-callout {
|
|
192
|
+
display: flex;
|
|
193
|
+
flex-direction: column;
|
|
194
|
+
gap: 0.75rem;
|
|
195
|
+
padding: 1rem 1.05rem;
|
|
196
|
+
border-radius: 1rem;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.sdix-blocker {
|
|
200
|
+
flex-direction: row;
|
|
201
|
+
align-items: flex-start;
|
|
202
|
+
background: #fff8ed;
|
|
203
|
+
border: 1px solid #f6d9aa;
|
|
204
|
+
color: #8c5c14;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.sdix-blocker h3,
|
|
208
|
+
.sdix-blocker p,
|
|
209
|
+
.sdix-detail-callout h3,
|
|
210
|
+
.sdix-detail-callout p {
|
|
211
|
+
margin: 0;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.sdix-loading,
|
|
215
|
+
.sdix-empty-state,
|
|
216
|
+
.sdix-error {
|
|
217
|
+
display: flex;
|
|
218
|
+
flex-direction: column;
|
|
219
|
+
align-items: center;
|
|
220
|
+
justify-content: center;
|
|
221
|
+
gap: 0.7rem;
|
|
222
|
+
min-height: 16rem;
|
|
223
|
+
padding: 1.5rem;
|
|
224
|
+
text-align: center;
|
|
225
|
+
color: #5e6680;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.sdix-loading.is-inline,
|
|
229
|
+
.sdix-empty-state.is-inline,
|
|
230
|
+
.sdix-error.is-inline {
|
|
231
|
+
min-height: 10rem;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.sdix-error {
|
|
235
|
+
border: 1px dashed #efc3c3;
|
|
236
|
+
border-radius: 1rem;
|
|
237
|
+
background: #fffafa;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.sdix-settings-grid {
|
|
241
|
+
display: flex;
|
|
242
|
+
flex-direction: column;
|
|
243
|
+
gap: 0.95rem;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.sdix-settings-tabs .solid-tabs-list {
|
|
247
|
+
margin-bottom: 0.85rem;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.sdix-settings-tab-panel {
|
|
251
|
+
padding-inline: 0;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.sdix-settings-static {
|
|
255
|
+
display: flex;
|
|
256
|
+
flex-direction: column;
|
|
257
|
+
gap: 0.22rem;
|
|
258
|
+
padding: 0.9rem 1rem;
|
|
259
|
+
border: 1px solid #e6e9f4;
|
|
260
|
+
border-radius: 0.9rem;
|
|
261
|
+
background: #fbfbfe;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.sdix-settings-static span,
|
|
265
|
+
.sdix-preview-card span,
|
|
266
|
+
.sdix-metadata-preview span,
|
|
267
|
+
.sdix-form-row label {
|
|
268
|
+
font-size: 0.8rem;
|
|
269
|
+
color: #6b7388;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.sdix-settings-static strong,
|
|
273
|
+
.sdix-preview-card strong,
|
|
274
|
+
.sdix-metadata-preview strong {
|
|
275
|
+
color: #20263a;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.sdix-settings-row {
|
|
279
|
+
display: flex;
|
|
280
|
+
align-items: center;
|
|
281
|
+
justify-content: space-between;
|
|
282
|
+
gap: 1rem;
|
|
283
|
+
padding: 0.95rem 1rem;
|
|
284
|
+
border: 1px solid #e6e9f4;
|
|
285
|
+
border-radius: 0.95rem;
|
|
286
|
+
background: #fff;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.sdix-settings-row label {
|
|
290
|
+
display: block;
|
|
291
|
+
margin: 0 0 0.18rem;
|
|
292
|
+
color: #20263a;
|
|
293
|
+
font-size: 0.9rem;
|
|
294
|
+
font-weight: 600;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.sdix-settings-row p {
|
|
298
|
+
margin: 0;
|
|
299
|
+
color: #6b7388;
|
|
300
|
+
font-size: 0.82rem;
|
|
301
|
+
max-width: 24rem;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.sdix-drawer-overlay {
|
|
305
|
+
background: rgba(15, 23, 42, 0.32);
|
|
306
|
+
backdrop-filter: blur(2px);
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.sdix-drawer.solid-radix-dialog-content {
|
|
310
|
+
top: 0;
|
|
311
|
+
right: 0;
|
|
312
|
+
left: auto;
|
|
313
|
+
transform: none;
|
|
314
|
+
width: min(60vw, 1120px);
|
|
315
|
+
max-width: min(60vw, 1120px);
|
|
316
|
+
height: 100dvh;
|
|
317
|
+
max-height: 100dvh;
|
|
318
|
+
border-radius: 0;
|
|
319
|
+
border-right: none;
|
|
320
|
+
border-top: none;
|
|
321
|
+
border-bottom: none;
|
|
322
|
+
overflow: hidden;
|
|
323
|
+
display: flex;
|
|
324
|
+
flex-direction: column;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.sdix-drawer-header {
|
|
328
|
+
display: flex;
|
|
329
|
+
align-items: center;
|
|
330
|
+
justify-content: space-between;
|
|
331
|
+
gap: 0.85rem;
|
|
332
|
+
padding-top: 0.72rem;
|
|
333
|
+
padding-bottom: 0.55rem;
|
|
334
|
+
flex-shrink: 0;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.sdix-drawer-header__identity {
|
|
338
|
+
display: flex;
|
|
339
|
+
align-items: baseline;
|
|
340
|
+
gap: 0.8rem;
|
|
341
|
+
min-width: 0;
|
|
342
|
+
flex: 1 1 auto;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.sdix-drawer-header__identity .solid-radix-dialog-title {
|
|
346
|
+
margin: 0;
|
|
347
|
+
flex: 0 1 auto;
|
|
348
|
+
min-width: 0;
|
|
349
|
+
white-space: nowrap;
|
|
350
|
+
overflow: hidden;
|
|
351
|
+
text-overflow: ellipsis;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.sdix-drawer-header__meta {
|
|
355
|
+
margin: 0;
|
|
356
|
+
color: #6b7388;
|
|
357
|
+
font-size: 0.86rem;
|
|
358
|
+
text-align: right;
|
|
359
|
+
white-space: nowrap;
|
|
360
|
+
overflow: hidden;
|
|
361
|
+
text-overflow: ellipsis;
|
|
362
|
+
flex: 1 1 auto;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.sdix-drawer-body {
|
|
366
|
+
display: flex;
|
|
367
|
+
flex-direction: column;
|
|
368
|
+
flex: 1 1 auto;
|
|
369
|
+
min-height: 0;
|
|
370
|
+
overflow: auto;
|
|
371
|
+
overflow-x: hidden;
|
|
372
|
+
padding-bottom: 1rem;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.sdix-drawer-stack {
|
|
376
|
+
display: flex;
|
|
377
|
+
flex-direction: column;
|
|
378
|
+
flex: 1 1 auto;
|
|
379
|
+
gap: 1rem;
|
|
380
|
+
min-height: 0;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.sdix-detail-callout {
|
|
384
|
+
background: #fbfcff;
|
|
385
|
+
border: 1px solid #e4e9f7;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
.sdix-system-fields-callout {
|
|
389
|
+
gap: 0.4rem;
|
|
390
|
+
padding: 0.85rem 0.95rem;
|
|
391
|
+
background: #f8faff;
|
|
392
|
+
border-color: #dbe5fb;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.sdix-system-fields-callout h3 {
|
|
396
|
+
color: #24304d;
|
|
397
|
+
font-size: 0.9rem;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.sdix-system-fields-callout p {
|
|
401
|
+
color: #5d6882;
|
|
402
|
+
font-size: 0.8rem;
|
|
403
|
+
line-height: 1.45;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
.sdix-system-fields-callout code {
|
|
407
|
+
font-family: "SFMono-Regular", "Menlo", "Monaco", "Consolas", monospace;
|
|
408
|
+
font-size: 0.78rem;
|
|
409
|
+
color: #3c4a71;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.sdix-preview-grid,
|
|
413
|
+
.sdix-metadata-preview {
|
|
414
|
+
display: grid;
|
|
415
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
416
|
+
gap: 0.75rem;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.sdix-drawer-tabs .solid-tabs-list {
|
|
420
|
+
margin-bottom: 0.15rem;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.sdix-drawer-tabs {
|
|
424
|
+
display: flex;
|
|
425
|
+
flex: 1 1 auto;
|
|
426
|
+
flex-direction: column;
|
|
427
|
+
min-height: 0;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
.sdix-drawer-tab-panel {
|
|
431
|
+
display: flex;
|
|
432
|
+
flex: 1 1 auto;
|
|
433
|
+
flex-direction: column;
|
|
434
|
+
min-height: 0;
|
|
435
|
+
padding-inline: 0;
|
|
436
|
+
overflow-x: hidden;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.sdix-drawer-form {
|
|
440
|
+
display: flex;
|
|
441
|
+
flex-direction: column;
|
|
442
|
+
gap: 1.35rem;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
.sdix-form-section {
|
|
446
|
+
display: flex;
|
|
447
|
+
flex-direction: column;
|
|
448
|
+
gap: 0.95rem;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.sdix-form-section .solid-form-layout-label {
|
|
452
|
+
margin-bottom: 0;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.sdix-form-grid {
|
|
456
|
+
display: grid;
|
|
457
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
458
|
+
gap: 0.95rem;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.sdix-form-field {
|
|
462
|
+
display: flex;
|
|
463
|
+
flex-direction: column;
|
|
464
|
+
gap: 0.38rem;
|
|
465
|
+
min-width: 0;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.sdix-form-field label {
|
|
469
|
+
color: #606983;
|
|
470
|
+
font-size: 0.82rem;
|
|
471
|
+
font-weight: 600;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.sdix-form-field--full {
|
|
475
|
+
grid-column: 1 / -1;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.sdix-preview-card,
|
|
479
|
+
.sdix-metadata-preview > div,
|
|
480
|
+
.sdix-drawer-section {
|
|
481
|
+
display: flex;
|
|
482
|
+
flex-direction: column;
|
|
483
|
+
gap: 0.26rem;
|
|
484
|
+
padding: 0.9rem 0.95rem;
|
|
485
|
+
border: 1px solid #e7eaf4;
|
|
486
|
+
border-radius: 0.95rem;
|
|
487
|
+
background: #fff;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
.sdix-columns {
|
|
491
|
+
display: flex;
|
|
492
|
+
flex-direction: column;
|
|
493
|
+
gap: 0.45rem;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.sdix-columns__toolbar {
|
|
497
|
+
display: flex;
|
|
498
|
+
align-items: center;
|
|
499
|
+
justify-content: flex-end;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.sdix-columns__header {
|
|
503
|
+
display: flex;
|
|
504
|
+
align-items: flex-start;
|
|
505
|
+
justify-content: space-between;
|
|
506
|
+
gap: 0.85rem;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.sdix-columns__header h4 {
|
|
510
|
+
margin: 0 0 0.18rem;
|
|
511
|
+
color: #20263a;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.sdix-columns__header p {
|
|
515
|
+
margin: 0;
|
|
516
|
+
color: #6f768d;
|
|
517
|
+
font-size: 0.82rem;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.sdix-columns__legend {
|
|
521
|
+
display: inline-flex;
|
|
522
|
+
align-items: center;
|
|
523
|
+
gap: 0.45rem;
|
|
524
|
+
flex-wrap: wrap;
|
|
525
|
+
justify-content: flex-end;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.sdix-column-table {
|
|
529
|
+
display: grid;
|
|
530
|
+
gap: 0;
|
|
531
|
+
border: 1px solid #e7ebf3;
|
|
532
|
+
border-radius: 0.9rem;
|
|
533
|
+
overflow-x: auto;
|
|
534
|
+
overflow-y: hidden;
|
|
535
|
+
background: #fff;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
.sdix-column-row {
|
|
539
|
+
display: grid;
|
|
540
|
+
grid-template-columns: 1.3fr 1fr 1fr 0.9fr 1.2fr;
|
|
541
|
+
gap: 0.75rem;
|
|
542
|
+
padding: 0.5rem 0.8rem;
|
|
543
|
+
border-top: 1px solid #eef1f7;
|
|
544
|
+
font-size: 0.82rem;
|
|
545
|
+
color: #45506a;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.sdix-column-row--head {
|
|
549
|
+
border-top: none;
|
|
550
|
+
background: #f8f9fd;
|
|
551
|
+
font-size: 0.72rem;
|
|
552
|
+
font-weight: 700;
|
|
553
|
+
text-transform: uppercase;
|
|
554
|
+
letter-spacing: 0.03em;
|
|
555
|
+
color: #5e6680;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.sdix-column-row--mapping {
|
|
559
|
+
grid-template-columns: 1.25fr 1.2fr 0.85fr 0.7fr 0.95fr 1fr 0.95fr;
|
|
560
|
+
align-items: center;
|
|
561
|
+
min-width: 920px;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.sdix-column-meta {
|
|
565
|
+
display: flex;
|
|
566
|
+
flex-direction: column;
|
|
567
|
+
gap: 0.12rem;
|
|
568
|
+
line-height: 1.12;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.sdix-column-meta strong {
|
|
572
|
+
color: #20263a;
|
|
573
|
+
font-size: 0.82rem;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.sdix-column-meta small,
|
|
577
|
+
.sdix-inline-note {
|
|
578
|
+
color: #6b7388;
|
|
579
|
+
font-size: 0.7rem;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
.sdix-column-action {
|
|
583
|
+
display: flex;
|
|
584
|
+
justify-content: flex-end;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.sdix-column-include {
|
|
588
|
+
display: flex;
|
|
589
|
+
align-items: center;
|
|
590
|
+
justify-content: center;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.sdix-column-select-header {
|
|
594
|
+
display: flex;
|
|
595
|
+
align-items: center;
|
|
596
|
+
justify-content: center;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.sdix-column-select-header .solid-checkbox {
|
|
600
|
+
justify-content: center;
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.sdix-column-placeholder {
|
|
604
|
+
color: #8a93a8;
|
|
605
|
+
font-size: 0.86rem;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.sdix-column-row .solid-input {
|
|
609
|
+
min-height: 2rem;
|
|
610
|
+
padding-block: 0.34rem;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.sdix-column-row .solid-select-trigger {
|
|
614
|
+
min-height: 2rem;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.sdix-column-row .solid-button {
|
|
618
|
+
min-height: 1.9rem;
|
|
619
|
+
padding-inline: 0.65rem;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.sdix-drawer-footer {
|
|
623
|
+
display: flex;
|
|
624
|
+
align-items: center;
|
|
625
|
+
justify-content: space-between;
|
|
626
|
+
gap: 1rem;
|
|
627
|
+
flex-shrink: 0;
|
|
628
|
+
border-top: 1px solid #e6eaf5;
|
|
629
|
+
background: rgba(255, 255, 255, 0.96);
|
|
630
|
+
backdrop-filter: blur(8px);
|
|
631
|
+
padding-top: 0.58rem;
|
|
632
|
+
padding-bottom: 0.62rem;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.sdix-drawer-footer__meta {
|
|
636
|
+
color: #616b84;
|
|
637
|
+
font-size: 0.8rem;
|
|
638
|
+
line-height: 1.3;
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
.sdix-drawer-footer__meta strong {
|
|
642
|
+
color: #20263a;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.sdix-drawer-footer__actions {
|
|
646
|
+
display: flex;
|
|
647
|
+
align-items: center;
|
|
648
|
+
gap: 0.55rem;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
.sdix-drawer-footer__actions .solid-button {
|
|
652
|
+
min-height: 2rem;
|
|
653
|
+
padding-inline: 0.8rem;
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.sdix-ddl-tab {
|
|
657
|
+
display: flex;
|
|
658
|
+
flex-direction: column;
|
|
659
|
+
gap: 0.45rem;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.sdix-review-panel {
|
|
663
|
+
display: flex;
|
|
664
|
+
flex-direction: column;
|
|
665
|
+
gap: 0.8rem;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.sdix-review-panel--metadata {
|
|
669
|
+
flex: 1 1 auto;
|
|
670
|
+
min-height: 0;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.sdix-review-panel--migration {
|
|
674
|
+
flex: 1 1 auto;
|
|
675
|
+
min-height: 0;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.sdix-review-meta {
|
|
679
|
+
display: flex;
|
|
680
|
+
flex-direction: column;
|
|
681
|
+
gap: 0.18rem;
|
|
682
|
+
padding: 0.72rem 0.82rem;
|
|
683
|
+
border: 1px solid #e7ebf3;
|
|
684
|
+
border-radius: 0.8rem;
|
|
685
|
+
background: #fbfcff;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.sdix-review-meta--compact {
|
|
689
|
+
padding: 0.46rem 0.62rem;
|
|
690
|
+
gap: 0.08rem;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.sdix-review-meta span {
|
|
694
|
+
font-size: 0.68rem;
|
|
695
|
+
color: #6b7388;
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.sdix-review-meta strong {
|
|
699
|
+
color: #20263a;
|
|
700
|
+
font-size: 0.8rem;
|
|
701
|
+
line-height: 1.3;
|
|
702
|
+
word-break: break-word;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.sdix-review-note {
|
|
706
|
+
margin: 0;
|
|
707
|
+
color: #6f768d;
|
|
708
|
+
font-size: 0.78rem;
|
|
709
|
+
line-height: 1.45;
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
.sdix-ddl-code {
|
|
713
|
+
margin: 0;
|
|
714
|
+
padding: 1rem 1.05rem;
|
|
715
|
+
border: 1px solid #e7ebf3;
|
|
716
|
+
border-radius: 0.9rem;
|
|
717
|
+
background: #fbfcff;
|
|
718
|
+
color: #1f2638;
|
|
719
|
+
font-size: 0.82rem;
|
|
720
|
+
line-height: 1.55;
|
|
721
|
+
font-family: "SFMono-Regular", "Menlo", "Monaco", "Consolas", monospace;
|
|
722
|
+
white-space: pre;
|
|
723
|
+
overflow: auto;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.sdix-ddl-code--fill {
|
|
727
|
+
flex: 1 1 auto;
|
|
728
|
+
min-height: 16rem;
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
.sdix-ddl-empty {
|
|
732
|
+
align-items: flex-start;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.sdix-json-editor {
|
|
736
|
+
flex: 1 1 auto;
|
|
737
|
+
min-height: 0;
|
|
738
|
+
font-family: "SFMono-Regular", "Menlo", "Monaco", "Consolas", monospace;
|
|
739
|
+
font-size: 0.8rem;
|
|
740
|
+
line-height: 1.55;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.sdix-json-validation-error {
|
|
744
|
+
padding: 0.72rem 0.82rem;
|
|
745
|
+
border: 1px solid #f2c6c6;
|
|
746
|
+
border-radius: 0.8rem;
|
|
747
|
+
background: #fff7f7;
|
|
748
|
+
color: #a34040;
|
|
749
|
+
font-size: 0.8rem;
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
@media (max-width: 1180px) {
|
|
753
|
+
.sdix-toolbar {
|
|
754
|
+
flex-direction: column;
|
|
755
|
+
align-items: stretch;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
.sdix-toolbar__left,
|
|
759
|
+
.sdix-toolbar__actions {
|
|
760
|
+
justify-content: space-between;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.sdix-toolbar-select {
|
|
764
|
+
min-width: 0;
|
|
765
|
+
width: 100%;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.sdix-toolbar-search {
|
|
769
|
+
width: 100%;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.sdix-drawer.solid-radix-dialog-content {
|
|
773
|
+
width: min(78vw, 1120px);
|
|
774
|
+
max-width: min(78vw, 1120px);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.sdix-columns__header {
|
|
778
|
+
flex-direction: column;
|
|
779
|
+
align-items: flex-start;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.sdix-columns__legend {
|
|
783
|
+
justify-content: flex-start;
|
|
784
|
+
}
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
@media (max-width: 840px) {
|
|
788
|
+
.sdix-page {
|
|
789
|
+
padding-inline: 0.8rem;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.sdix-preview-grid,
|
|
793
|
+
.sdix-metadata-preview,
|
|
794
|
+
.sdix-form-grid,
|
|
795
|
+
.sdix-column-row,
|
|
796
|
+
.sdix-column-row--head {
|
|
797
|
+
grid-template-columns: 1fr;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.sdix-settings-row {
|
|
801
|
+
align-items: flex-start;
|
|
802
|
+
flex-direction: column;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.sdix-drawer.solid-radix-dialog-content {
|
|
806
|
+
width: calc(100vw - 1rem);
|
|
807
|
+
max-width: calc(100vw - 1rem);
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.sdix-drawer-header__identity {
|
|
811
|
+
align-items: flex-start;
|
|
812
|
+
flex-direction: column;
|
|
813
|
+
gap: 0.18rem;
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
.sdix-drawer-header__meta {
|
|
817
|
+
text-align: left;
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
.sdix-drawer-footer {
|
|
821
|
+
flex-direction: column;
|
|
822
|
+
align-items: stretch;
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.sdix-drawer-footer__actions {
|
|
826
|
+
justify-content: flex-end;
|
|
827
|
+
}
|
|
828
|
+
}
|