@solidxai/core-ui 0.1.12-beta.6 → 0.1.12-beta.8
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/AuthLayout.d.ts.map +1 -1
- package/dist/components/auth/AuthLayout.js +19 -17
- package/dist/components/auth/AuthLayout.js.map +1 -1
- package/dist/components/auth/AuthLayout.tsx +59 -34
- package/dist/components/common/BackendReconnectIndicator.d.ts +6 -0
- package/dist/components/common/BackendReconnectIndicator.d.ts.map +1 -0
- package/dist/components/common/BackendReconnectIndicator.js +25 -0
- package/dist/components/common/BackendReconnectIndicator.js.map +1 -0
- package/dist/components/common/BackendReconnectIndicator.tsx +45 -0
- package/dist/components/common/SettingsComponent.d.ts.map +1 -1
- package/dist/components/common/SettingsComponent.js +7 -3
- package/dist/components/common/SettingsComponent.js.map +1 -1
- package/dist/components/common/SettingsComponent.module.css +144 -12
- package/dist/components/common/SettingsComponent.tsx +22 -3
- package/dist/components/common/SolidAdmin.d.ts.map +1 -1
- package/dist/components/common/SolidAdmin.js +7 -2
- package/dist/components/common/SolidAdmin.js.map +1 -1
- package/dist/components/common/SolidAdmin.tsx +7 -2
- package/dist/components/common/SolidBreadcrumb.d.ts.map +1 -1
- package/dist/components/common/SolidBreadcrumb.js +1 -6
- package/dist/components/common/SolidBreadcrumb.js.map +1 -1
- package/dist/components/common/SolidBreadcrumb.tsx +1 -8
- package/dist/components/common/SolidMaterialSymbol.d.ts +10 -0
- package/dist/components/common/SolidMaterialSymbol.d.ts.map +1 -0
- package/dist/components/common/SolidMaterialSymbol.js +69 -0
- package/dist/components/common/SolidMaterialSymbol.js.map +1 -0
- package/dist/components/common/SolidMaterialSymbol.tsx +96 -0
- package/dist/components/common/SolidToastProvider.d.ts.map +1 -1
- package/dist/components/common/SolidToastProvider.js +14 -1
- package/dist/components/common/SolidToastProvider.js.map +1 -1
- package/dist/components/common/SolidToastProvider.tsx +19 -1
- package/dist/components/core/card/CardGrid.d.ts +1 -1
- package/dist/components/core/card/CardGrid.d.ts.map +1 -1
- package/dist/components/core/card/CardGrid.js +2 -2
- package/dist/components/core/card/CardGrid.js.map +1 -1
- package/dist/components/core/card/CardGrid.tsx +4 -0
- package/dist/components/core/card/CardItem.d.ts +2 -0
- package/dist/components/core/card/CardItem.d.ts.map +1 -1
- package/dist/components/core/card/CardItem.js +7 -2
- package/dist/components/core/card/CardItem.js.map +1 -1
- package/dist/components/core/card/CardItem.tsx +30 -8
- package/dist/components/core/card/SolidCardView.d.ts.map +1 -1
- package/dist/components/core/card/SolidCardView.js +87 -21
- package/dist/components/core/card/SolidCardView.js.map +1 -1
- package/dist/components/core/card/SolidCardView.tsx +96 -40
- package/dist/components/core/card/SolidCardViewConfigure.d.ts +1 -1
- package/dist/components/core/card/SolidCardViewConfigure.d.ts.map +1 -1
- package/dist/components/core/card/SolidCardViewConfigure.js +9 -7
- package/dist/components/core/card/SolidCardViewConfigure.js.map +1 -1
- package/dist/components/core/card/SolidCardViewConfigure.tsx +14 -1
- package/dist/components/core/common/SolidAccountSettings/SolidAccountSettings.module.css +3 -1
- package/dist/components/core/common/SolidGlobalSearchElement.d.ts.map +1 -1
- package/dist/components/core/common/SolidGlobalSearchElement.js +4 -3
- package/dist/components/core/common/SolidGlobalSearchElement.js.map +1 -1
- package/dist/components/core/common/SolidGlobalSearchElement.tsx +15 -19
- package/dist/components/core/extension/solid-core/modelMetadata/list/DeleteModelRowAction.d.ts.map +1 -1
- package/dist/components/core/extension/solid-core/modelMetadata/list/DeleteModelRowAction.js +43 -16
- package/dist/components/core/extension/solid-core/modelMetadata/list/DeleteModelRowAction.js.map +1 -1
- package/dist/components/core/extension/solid-core/modelMetadata/list/DeleteModelRowAction.tsx +24 -2
- package/dist/components/core/form/SolidFormFooter.js +1 -1
- package/dist/components/core/form/SolidFormFooter.js.map +1 -1
- package/dist/components/core/form/SolidFormFooter.tsx +1 -1
- package/dist/components/core/form/SolidFormLayouts.js +1 -1
- package/dist/components/core/form/SolidFormLayouts.js.map +1 -1
- package/dist/components/core/form/SolidFormLayouts.tsx +2 -2
- package/dist/components/core/form/fields/SolidMediaMultipleField.d.ts.map +1 -1
- package/dist/components/core/form/fields/SolidMediaMultipleField.js +120 -56
- package/dist/components/core/form/fields/SolidMediaMultipleField.js.map +1 -1
- package/dist/components/core/form/fields/SolidMediaMultipleField.tsx +63 -50
- package/dist/components/core/form/fields/SolidMediaSingleField.d.ts.map +1 -1
- package/dist/components/core/form/fields/SolidMediaSingleField.js +115 -37
- package/dist/components/core/form/fields/SolidMediaSingleField.js.map +1 -1
- package/dist/components/core/form/fields/SolidMediaSingleField.tsx +36 -35
- package/dist/components/core/form/fields/SolidRichTextField.d.ts.map +1 -1
- package/dist/components/core/form/fields/SolidRichTextField.js +67 -4
- package/dist/components/core/form/fields/SolidRichTextField.js.map +1 -1
- package/dist/components/core/form/fields/SolidRichTextField.tsx +89 -7
- package/dist/components/core/form/fields/mediaFieldUtils.d.ts +3 -0
- package/dist/components/core/form/fields/mediaFieldUtils.d.ts.map +1 -0
- package/dist/components/core/form/fields/mediaFieldUtils.js +30 -0
- package/dist/components/core/form/fields/mediaFieldUtils.js.map +1 -0
- package/dist/components/core/form/fields/mediaFieldUtils.ts +45 -0
- package/dist/components/core/form/fields/relations/RolesGroupedByModuleWidget.d.ts.map +1 -1
- package/dist/components/core/form/fields/relations/RolesGroupedByModuleWidget.js +1 -1
- package/dist/components/core/form/fields/relations/RolesGroupedByModuleWidget.js.map +1 -1
- package/dist/components/core/form/fields/relations/RolesGroupedByModuleWidget.tsx +3 -1
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.d.ts.map +1 -1
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.js +22 -23
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.js.map +1 -1
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.tsx +13 -7
- package/dist/components/core/form/fields/widgets/SolidIconEditWidget.d.ts.map +1 -1
- package/dist/components/core/form/fields/widgets/SolidIconEditWidget.js +16 -11
- package/dist/components/core/form/fields/widgets/SolidIconEditWidget.js.map +1 -1
- package/dist/components/core/form/fields/widgets/SolidIconEditWidget.tsx +32 -18
- package/dist/components/core/form/fields/widgets/SolidIconViewWidget.d.ts.map +1 -1
- package/dist/components/core/form/fields/widgets/SolidIconViewWidget.js +3 -1
- package/dist/components/core/form/fields/widgets/SolidIconViewWidget.js.map +1 -1
- package/dist/components/core/form/fields/widgets/SolidIconViewWidget.tsx +11 -5
- package/dist/components/core/kanban/KanbanBoard.d.ts +1 -1
- package/dist/components/core/kanban/KanbanBoard.d.ts.map +1 -1
- package/dist/components/core/kanban/KanbanBoard.js +2 -2
- package/dist/components/core/kanban/KanbanBoard.js.map +1 -1
- package/dist/components/core/kanban/KanbanBoard.tsx +3 -1
- package/dist/components/core/kanban/KanbanCard.d.ts +2 -0
- package/dist/components/core/kanban/KanbanCard.d.ts.map +1 -1
- package/dist/components/core/kanban/KanbanCard.js +10 -5
- package/dist/components/core/kanban/KanbanCard.js.map +1 -1
- package/dist/components/core/kanban/KanbanCard.tsx +28 -12
- package/dist/components/core/kanban/KanbanColumn.d.ts +3 -1
- package/dist/components/core/kanban/KanbanColumn.d.ts.map +1 -1
- package/dist/components/core/kanban/KanbanColumn.js +2 -2
- package/dist/components/core/kanban/KanbanColumn.js.map +1 -1
- package/dist/components/core/kanban/KanbanColumn.tsx +4 -2
- package/dist/components/core/kanban/SolidKanbanView.d.ts.map +1 -1
- package/dist/components/core/kanban/SolidKanbanView.js +154 -25
- package/dist/components/core/kanban/SolidKanbanView.js.map +1 -1
- package/dist/components/core/kanban/SolidKanbanView.tsx +129 -16
- package/dist/components/core/kanban/SolidKanbanViewConfigure.d.ts +1 -1
- package/dist/components/core/kanban/SolidKanbanViewConfigure.d.ts.map +1 -1
- package/dist/components/core/kanban/SolidKanbanViewConfigure.js +13 -10
- package/dist/components/core/kanban/SolidKanbanViewConfigure.js.map +1 -1
- package/dist/components/core/kanban/SolidKanbanViewConfigure.tsx +18 -3
- package/dist/components/core/list/SolidDataTable.d.ts.map +1 -1
- package/dist/components/core/list/SolidDataTable.js +3 -2
- package/dist/components/core/list/SolidDataTable.js.map +1 -1
- package/dist/components/core/list/SolidDataTable.tsx +3 -2
- package/dist/components/core/list/SolidListView.d.ts.map +1 -1
- package/dist/components/core/list/SolidListView.js +16 -5
- package/dist/components/core/list/SolidListView.js.map +1 -1
- package/dist/components/core/list/SolidListView.tsx +20 -8
- package/dist/components/core/list/SolidListViewColumn.d.ts.map +1 -1
- package/dist/components/core/list/SolidListViewColumn.js +1 -0
- package/dist/components/core/list/SolidListViewColumn.js.map +1 -1
- package/dist/components/core/list/SolidListViewColumn.tsx +1 -0
- package/dist/components/core/list/columns/SolidShortTextColumn.d.ts.map +1 -1
- package/dist/components/core/list/columns/SolidShortTextColumn.js +7 -2
- package/dist/components/core/list/columns/SolidShortTextColumn.js.map +1 -1
- package/dist/components/core/list/columns/SolidShortTextColumn.tsx +7 -2
- package/dist/components/core/list/columns/relations/SolidRelationManyToManyColumn.d.ts.map +1 -1
- package/dist/components/core/list/columns/relations/SolidRelationManyToManyColumn.js +4 -1
- package/dist/components/core/list/columns/relations/SolidRelationManyToManyColumn.js.map +1 -1
- package/dist/components/core/list/columns/relations/SolidRelationManyToManyColumn.tsx +5 -2
- package/dist/components/core/list/columns/relations/SolidRelationManyToOneColumn.d.ts.map +1 -1
- package/dist/components/core/list/columns/relations/SolidRelationManyToOneColumn.js +2 -1
- package/dist/components/core/list/columns/relations/SolidRelationManyToOneColumn.js.map +1 -1
- package/dist/components/core/list/columns/relations/SolidRelationManyToOneColumn.tsx +2 -1
- package/dist/components/core/list/columns/relations/SolidRelationOneToManyColumn.d.ts.map +1 -1
- package/dist/components/core/list/columns/relations/SolidRelationOneToManyColumn.js +4 -1
- package/dist/components/core/list/columns/relations/SolidRelationOneToManyColumn.js.map +1 -1
- package/dist/components/core/list/columns/relations/SolidRelationOneToManyColumn.tsx +5 -2
- package/dist/components/core/locales/SolidLocale.d.ts.map +1 -1
- package/dist/components/core/locales/SolidLocale.js +1 -1
- package/dist/components/core/locales/SolidLocale.js.map +1 -1
- package/dist/components/core/locales/SolidLocale.tsx +1 -0
- package/dist/components/core/model/CreateModel.css +26 -0
- package/dist/components/core/model/FieldMetaData.d.ts.map +1 -1
- package/dist/components/core/model/FieldMetaData.js +21 -3
- package/dist/components/core/model/FieldMetaData.js.map +1 -1
- package/dist/components/core/model/FieldMetaData.tsx +45 -4
- package/dist/components/core/model/FieldMetaDataForm.css +82 -0
- package/dist/components/core/model/FieldMetaDataForm.d.ts +1 -0
- package/dist/components/core/model/FieldMetaDataForm.d.ts.map +1 -1
- package/dist/components/core/model/FieldMetaDataForm.js +246 -235
- package/dist/components/core/model/FieldMetaDataForm.js.map +1 -1
- package/dist/components/core/model/FieldMetaDataForm.tsx +46 -34
- package/dist/components/core/model/FieldSelector.js +1 -1
- package/dist/components/core/model/FieldSelector.js.map +1 -1
- package/dist/components/core/model/FieldSelector.tsx +1 -1
- package/dist/components/core/model/ModelMetaData.js +1 -1
- package/dist/components/core/model/ModelMetaData.js.map +1 -1
- package/dist/components/core/model/ModelMetaData.tsx +1 -1
- package/dist/components/core/module/CreateModule.css +55 -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 +3 -2
- package/dist/components/core/module/ModuleMetadataExplorer.css +27 -0
- package/dist/components/core/module/ModuleMetadataExplorer.d.ts.map +1 -1
- package/dist/components/core/module/ModuleMetadataExplorer.js +1 -1
- package/dist/components/core/module/ModuleMetadataExplorer.js.map +1 -1
- package/dist/components/core/module/ModuleMetadataExplorer.tsx +1 -0
- package/dist/components/core/tree/SolidTreeTable.d.ts +2 -1
- package/dist/components/core/tree/SolidTreeTable.d.ts.map +1 -1
- package/dist/components/core/tree/SolidTreeTable.js +2 -2
- package/dist/components/core/tree/SolidTreeTable.js.map +1 -1
- package/dist/components/core/tree/SolidTreeTable.tsx +3 -1
- package/dist/components/core/tree/SolidTreeView.d.ts.map +1 -1
- package/dist/components/core/tree/SolidTreeView.js +44 -16
- package/dist/components/core/tree/SolidTreeView.js.map +1 -1
- package/dist/components/core/tree/SolidTreeView.tsx +55 -24
- package/dist/components/core/users/CreateUser.d.ts.map +1 -1
- package/dist/components/core/users/CreateUser.js +45 -32
- package/dist/components/core/users/CreateUser.js.map +1 -1
- package/dist/components/core/users/CreateUser.tsx +15 -4
- package/dist/components/layout/AdminHeaderActions.d.ts.map +1 -1
- package/dist/components/layout/AdminHeaderActions.js +10 -9
- package/dist/components/layout/AdminHeaderActions.js.map +1 -1
- package/dist/components/layout/AdminHeaderActions.tsx +2 -0
- package/dist/components/layout/AppSidebar.d.ts.map +1 -1
- package/dist/components/layout/AppSidebar.js +2 -1
- package/dist/components/layout/AppSidebar.js.map +1 -1
- package/dist/components/layout/AppSidebar.tsx +12 -5
- package/dist/components/layout/SolidMenuItemIcon.d.ts +9 -0
- package/dist/components/layout/SolidMenuItemIcon.d.ts.map +1 -0
- package/dist/components/layout/SolidMenuItemIcon.js +20 -0
- package/dist/components/layout/SolidMenuItemIcon.js.map +1 -0
- package/dist/components/layout/SolidMenuItemIcon.tsx +45 -0
- package/dist/components/layout/navbar-two-menu.d.ts.map +1 -1
- package/dist/components/layout/navbar-two-menu.js +6 -7
- package/dist/components/layout/navbar-two-menu.js.map +1 -1
- package/dist/components/layout/navbar-two-menu.tsx +4 -12
- package/dist/components/shad-cn-ui/SolidCodeEditor.d.ts.map +1 -1
- package/dist/components/shad-cn-ui/SolidCodeEditor.js +30 -2
- package/dist/components/shad-cn-ui/SolidCodeEditor.js.map +1 -1
- package/dist/components/shad-cn-ui/SolidCodeEditor.tsx +38 -1
- package/dist/helpers/backendHealthMonitor.d.ts +39 -0
- package/dist/helpers/backendHealthMonitor.d.ts.map +1 -0
- package/dist/helpers/backendHealthMonitor.js +255 -0
- package/dist/helpers/backendHealthMonitor.js.map +1 -0
- package/dist/helpers/backendHealthMonitor.ts +177 -0
- package/dist/helpers/helpers.d.ts +1 -0
- package/dist/helpers/helpers.d.ts.map +1 -1
- package/dist/helpers/helpers.js +9 -0
- package/dist/helpers/helpers.js.map +1 -1
- package/dist/helpers/helpers.ts +11 -1
- package/dist/helpers/menuItemIcons.d.ts +34 -0
- package/dist/helpers/menuItemIcons.d.ts.map +1 -0
- package/dist/helpers/menuItemIcons.js +144 -0
- package/dist/helpers/menuItemIcons.js.map +1 -0
- package/dist/helpers/menuItemIcons.ts +191 -0
- package/dist/helpers/relationDisplay.d.ts +3 -0
- package/dist/helpers/relationDisplay.d.ts.map +1 -0
- package/dist/helpers/relationDisplay.js +92 -0
- package/dist/helpers/relationDisplay.js.map +1 -0
- package/dist/helpers/relationDisplay.ts +101 -0
- package/dist/helpers/settingsPayload.d.ts +1 -0
- package/dist/helpers/settingsPayload.d.ts.map +1 -1
- package/dist/helpers/settingsPayload.js.map +1 -1
- package/dist/helpers/settingsPayload.ts +1 -0
- package/dist/helpers/solidIcons.d.ts +2 -0
- package/dist/helpers/solidIcons.d.ts.map +1 -1
- package/dist/helpers/solidIcons.js +8 -0
- package/dist/helpers/solidIcons.js.map +1 -1
- package/dist/helpers/solidIcons.tsx +10 -1
- package/dist/helpers/waitForBackendAvailability.d.ts +1 -0
- package/dist/helpers/waitForBackendAvailability.d.ts.map +1 -1
- package/dist/helpers/waitForBackendAvailability.js +35 -22
- package/dist/helpers/waitForBackendAvailability.js.map +1 -1
- package/dist/helpers/waitForBackendAvailability.ts +18 -12
- package/dist/http/solidHttp.d.ts.map +1 -1
- package/dist/http/solidHttp.js +10 -4
- package/dist/http/solidHttp.js.map +1 -1
- package/dist/http/solidHttp.ts +9 -4
- package/dist/redux/api/datasourceIntrospectionApi.d.ts +4 -0
- package/dist/redux/api/datasourceIntrospectionApi.d.ts.map +1 -1
- package/dist/redux/api/datasourceIntrospectionApi.js.map +1 -1
- package/dist/redux/api/datasourceIntrospectionApi.ts +4 -0
- package/dist/redux/api/fetchBaseQuery.d.ts.map +1 -1
- package/dist/redux/api/fetchBaseQuery.js +9 -3
- package/dist/redux/api/fetchBaseQuery.js.map +1 -1
- package/dist/redux/api/fetchBaseQuery.tsx +9 -3
- package/dist/redux/store/StoreProvider.d.ts.map +1 -1
- package/dist/redux/store/StoreProvider.js +4 -3
- package/dist/redux/store/StoreProvider.js.map +1 -1
- package/dist/redux/store/StoreProvider.tsx +4 -3
- package/dist/redux/store/defaultStoreConfig.d.ts +5 -5
- package/dist/resources/globals.css +341 -49
- package/dist/resources/solid-custom.css +464 -11
- package/dist/resources/solid-responsive.css +31 -20
- package/dist/resources/solid-tailwind-generated.css +1 -1
- package/dist/routes/AppEventListener.d.ts.map +1 -1
- package/dist/routes/AppEventListener.js +23 -0
- package/dist/routes/AppEventListener.js.map +1 -1
- package/dist/routes/AppEventListener.tsx +29 -0
- package/dist/routes/pages/admin/core/DashboardPage.module.css +12 -0
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.css +306 -3
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.d.ts.map +1 -1
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.js +745 -393
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.js.map +1 -1
- package/dist/routes/pages/admin/core/DatasourceIntrospectionPage.tsx +1074 -420
- package/dist/routes/pages/admin/core/DatasourcesPage.css +15 -0
- package/dist/routes/pages/admin/core/DatasourcesPage.d.ts.map +1 -1
- package/dist/routes/pages/admin/core/DatasourcesPage.js +7 -188
- package/dist/routes/pages/admin/core/DatasourcesPage.js.map +1 -1
- package/dist/routes/pages/admin/core/DatasourcesPage.tsx +3 -393
- package/package.json +1 -1
|
@@ -144,6 +144,137 @@
|
|
|
144
144
|
overflow: hidden;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.sdix-workspace-body {
|
|
148
|
+
display: grid;
|
|
149
|
+
grid-template-columns: 17rem minmax(0, 1fr);
|
|
150
|
+
gap: 0.85rem;
|
|
151
|
+
flex: 1 1 auto;
|
|
152
|
+
min-height: 0;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.sdix-workspace-rail {
|
|
156
|
+
display: flex;
|
|
157
|
+
flex-direction: column;
|
|
158
|
+
min-height: 0;
|
|
159
|
+
border: 1px solid #e7ebf3;
|
|
160
|
+
border-radius: 1rem;
|
|
161
|
+
background: #fff;
|
|
162
|
+
overflow: hidden;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.sdix-workspace-rail__header {
|
|
166
|
+
display: flex;
|
|
167
|
+
align-items: center;
|
|
168
|
+
justify-content: space-between;
|
|
169
|
+
gap: 0.5rem;
|
|
170
|
+
padding: 0.85rem 0.95rem 0.75rem;
|
|
171
|
+
border-bottom: 1px solid #edf0f8;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.sdix-workspace-rail__header strong {
|
|
175
|
+
font-size: 0.92rem;
|
|
176
|
+
color: #20263a;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.sdix-workspace-rail__header span {
|
|
180
|
+
display: inline-flex;
|
|
181
|
+
align-items: center;
|
|
182
|
+
justify-content: center;
|
|
183
|
+
min-width: 1.5rem;
|
|
184
|
+
height: 1.5rem;
|
|
185
|
+
padding: 0 0.45rem;
|
|
186
|
+
border-radius: 999px;
|
|
187
|
+
background: #f3f5fb;
|
|
188
|
+
color: #5b647a;
|
|
189
|
+
font-size: 0.75rem;
|
|
190
|
+
font-weight: 600;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.sdix-workspace-rail__list {
|
|
194
|
+
display: flex;
|
|
195
|
+
flex-direction: column;
|
|
196
|
+
gap: 0.35rem;
|
|
197
|
+
padding: 0.6rem;
|
|
198
|
+
min-height: 0;
|
|
199
|
+
overflow: auto;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.sdix-workspace-rail__item {
|
|
203
|
+
display: flex;
|
|
204
|
+
flex-direction: column;
|
|
205
|
+
gap: 0.35rem;
|
|
206
|
+
width: 100%;
|
|
207
|
+
padding: 0.72rem 0.78rem;
|
|
208
|
+
border: 1px solid #ebedf5;
|
|
209
|
+
border-radius: 0.85rem;
|
|
210
|
+
background: #fff;
|
|
211
|
+
text-align: left;
|
|
212
|
+
transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.sdix-workspace-rail__item:hover {
|
|
216
|
+
border-color: #d5daf0;
|
|
217
|
+
background: #fafbff;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.sdix-workspace-rail__item.is-active {
|
|
221
|
+
border-color: #cfc4fb;
|
|
222
|
+
background: #f5f1ff;
|
|
223
|
+
box-shadow: 0 0 0 1px rgba(123, 76, 222, 0.06);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.sdix-workspace-rail__item-main {
|
|
227
|
+
display: flex;
|
|
228
|
+
flex-direction: column;
|
|
229
|
+
gap: 0.15rem;
|
|
230
|
+
min-width: 0;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.sdix-workspace-rail__item-main strong {
|
|
234
|
+
color: #20263a;
|
|
235
|
+
font-size: 0.88rem;
|
|
236
|
+
line-height: 1.25;
|
|
237
|
+
word-break: break-word;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.sdix-workspace-rail__item-main span {
|
|
241
|
+
color: #687287;
|
|
242
|
+
font-size: 0.76rem;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.sdix-workspace-rail__item-status {
|
|
246
|
+
display: flex;
|
|
247
|
+
align-items: center;
|
|
248
|
+
gap: 0.35rem;
|
|
249
|
+
min-height: 1rem;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.sdix-workspace-rail__status {
|
|
253
|
+
font-size: 0.73rem;
|
|
254
|
+
line-height: 1.2;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.sdix-workspace-rail__status--ready,
|
|
258
|
+
.sdix-workspace-rail__status--success {
|
|
259
|
+
color: #22824d;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.sdix-workspace-rail__status--loading {
|
|
263
|
+
color: #5e6790;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.sdix-workspace-rail__status--error {
|
|
267
|
+
color: #bf2d38;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.sdix-workspace-main {
|
|
271
|
+
display: flex;
|
|
272
|
+
flex-direction: column;
|
|
273
|
+
gap: 0.85rem;
|
|
274
|
+
min-width: 0;
|
|
275
|
+
min-height: 0;
|
|
276
|
+
}
|
|
277
|
+
|
|
147
278
|
.sdix-wizard-stepper {
|
|
148
279
|
display: grid;
|
|
149
280
|
grid-template-columns: repeat(5, minmax(0, 1fr));
|
|
@@ -371,6 +502,11 @@
|
|
|
371
502
|
color: #7a8398;
|
|
372
503
|
}
|
|
373
504
|
|
|
505
|
+
.sdix-status-badge.is-blocked {
|
|
506
|
+
background: #fff1f0;
|
|
507
|
+
color: #b9382f;
|
|
508
|
+
}
|
|
509
|
+
|
|
374
510
|
.sdix-provider-mark {
|
|
375
511
|
width: 2.35rem;
|
|
376
512
|
height: 2.35rem;
|
|
@@ -407,9 +543,12 @@
|
|
|
407
543
|
|
|
408
544
|
.sdix-blocker {
|
|
409
545
|
flex-direction: row;
|
|
410
|
-
align-items:
|
|
411
|
-
|
|
412
|
-
|
|
546
|
+
align-items: stretch;
|
|
547
|
+
gap: 1rem;
|
|
548
|
+
padding: 1.15rem 1.2rem;
|
|
549
|
+
background: linear-gradient(135deg, #fff8ef 0%, #fffdf8 100%);
|
|
550
|
+
border: 1px solid #f1d3a2;
|
|
551
|
+
box-shadow: 0 10px 30px rgba(182, 128, 37, 0.08);
|
|
413
552
|
color: #8c5c14;
|
|
414
553
|
}
|
|
415
554
|
|
|
@@ -420,6 +559,80 @@
|
|
|
420
559
|
margin: 0;
|
|
421
560
|
}
|
|
422
561
|
|
|
562
|
+
.sdix-blocker__icon {
|
|
563
|
+
width: 2.8rem;
|
|
564
|
+
height: 2.8rem;
|
|
565
|
+
flex: 0 0 2.8rem;
|
|
566
|
+
display: inline-flex;
|
|
567
|
+
align-items: center;
|
|
568
|
+
justify-content: center;
|
|
569
|
+
border-radius: 0.9rem;
|
|
570
|
+
background: rgba(176, 109, 11, 0.1);
|
|
571
|
+
color: #a15e0d;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.sdix-blocker__content {
|
|
575
|
+
display: flex;
|
|
576
|
+
flex-direction: column;
|
|
577
|
+
gap: 0.28rem;
|
|
578
|
+
min-width: 0;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
.sdix-blocker__eyebrow {
|
|
582
|
+
font-size: 0.72rem;
|
|
583
|
+
font-weight: 800;
|
|
584
|
+
letter-spacing: 0.08em;
|
|
585
|
+
text-transform: uppercase;
|
|
586
|
+
color: #b06c0b;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
.sdix-blocker__content h3 {
|
|
590
|
+
color: #2a3145;
|
|
591
|
+
font-size: 1.08rem;
|
|
592
|
+
line-height: 1.2;
|
|
593
|
+
font-weight: 700;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.sdix-blocker__content p {
|
|
597
|
+
color: #8c5c14;
|
|
598
|
+
font-size: 0.9rem;
|
|
599
|
+
line-height: 1.5;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.sdix-blocker__note {
|
|
603
|
+
margin-top: 0.25rem;
|
|
604
|
+
color: #6a7288;
|
|
605
|
+
font-size: 0.8rem;
|
|
606
|
+
line-height: 1.45;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.sdix-blocker-panel {
|
|
610
|
+
display: flex;
|
|
611
|
+
align-items: center;
|
|
612
|
+
justify-content: center;
|
|
613
|
+
min-height: 12rem;
|
|
614
|
+
padding: 1.5rem;
|
|
615
|
+
border: 1px dashed #e5cfab;
|
|
616
|
+
border-radius: 1rem;
|
|
617
|
+
background:
|
|
618
|
+
radial-gradient(circle at top, rgba(244, 187, 95, 0.12), transparent 45%),
|
|
619
|
+
linear-gradient(180deg, #fffdfa 0%, #fffaf3 100%);
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.sdix-blocker-panel__body {
|
|
623
|
+
display: inline-flex;
|
|
624
|
+
align-items: center;
|
|
625
|
+
gap: 0.7rem;
|
|
626
|
+
padding: 0.9rem 1rem;
|
|
627
|
+
border-radius: 999px;
|
|
628
|
+
background: rgba(255, 255, 255, 0.9);
|
|
629
|
+
border: 1px solid #eedfc3;
|
|
630
|
+
color: #7c6130;
|
|
631
|
+
font-size: 0.88rem;
|
|
632
|
+
font-weight: 600;
|
|
633
|
+
text-align: center;
|
|
634
|
+
}
|
|
635
|
+
|
|
423
636
|
.sdix-loading,
|
|
424
637
|
.sdix-empty-state,
|
|
425
638
|
.sdix-error {
|
|
@@ -794,6 +1007,13 @@
|
|
|
794
1007
|
gap: 0.4rem;
|
|
795
1008
|
}
|
|
796
1009
|
|
|
1010
|
+
.sdix-column-type-cell {
|
|
1011
|
+
display: flex;
|
|
1012
|
+
align-items: center;
|
|
1013
|
+
justify-content: flex-start;
|
|
1014
|
+
gap: 0.45rem;
|
|
1015
|
+
}
|
|
1016
|
+
|
|
797
1017
|
.sdix-column-include {
|
|
798
1018
|
display: flex;
|
|
799
1019
|
align-items: center;
|
|
@@ -829,6 +1049,30 @@
|
|
|
829
1049
|
padding-inline: 0.45rem !important;
|
|
830
1050
|
}
|
|
831
1051
|
|
|
1052
|
+
.sdix-field-config-dialog {
|
|
1053
|
+
max-width: 720px;
|
|
1054
|
+
margin: 0 auto;
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
.sdix-field-config-dialog .solid-fluid {
|
|
1058
|
+
width: 100%;
|
|
1059
|
+
max-width: 720px;
|
|
1060
|
+
margin: 0 auto;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.sdix-field-config-dialog [class~="md:w-1/2"] {
|
|
1064
|
+
width: 100%;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.sdix-field-config-dialog [class~="md:w-1/4"] {
|
|
1068
|
+
width: 100%;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.sdix-field-config-dialog .p-tabview-panels,
|
|
1072
|
+
.sdix-field-config-dialog .p-tabview-panel {
|
|
1073
|
+
padding-inline: 0;
|
|
1074
|
+
}
|
|
1075
|
+
|
|
832
1076
|
.sdix-column-placeholder {
|
|
833
1077
|
color: #8a93a8;
|
|
834
1078
|
font-size: 0.86rem;
|
|
@@ -951,6 +1195,36 @@
|
|
|
951
1195
|
flex: 1 1 auto;
|
|
952
1196
|
}
|
|
953
1197
|
|
|
1198
|
+
.sdix-workspace-summary {
|
|
1199
|
+
display: grid;
|
|
1200
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1201
|
+
gap: 0.65rem;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
.sdix-workspace-summary__item {
|
|
1205
|
+
display: flex;
|
|
1206
|
+
flex-direction: column;
|
|
1207
|
+
gap: 0.16rem;
|
|
1208
|
+
padding: 0.72rem 0.8rem;
|
|
1209
|
+
border: 1px solid #e7ebf3;
|
|
1210
|
+
border-radius: 0.85rem;
|
|
1211
|
+
background: #fbfcff;
|
|
1212
|
+
min-width: 0;
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
.sdix-workspace-summary__item span {
|
|
1216
|
+
color: #6a7288;
|
|
1217
|
+
font-size: 0.75rem;
|
|
1218
|
+
line-height: 1.2;
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1221
|
+
.sdix-workspace-summary__item strong {
|
|
1222
|
+
color: #20263a;
|
|
1223
|
+
font-size: 0.93rem;
|
|
1224
|
+
line-height: 1.25;
|
|
1225
|
+
word-break: break-word;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
954
1228
|
.sdix-stage-panel__actions {
|
|
955
1229
|
display: flex;
|
|
956
1230
|
justify-content: center;
|
|
@@ -1001,6 +1275,12 @@
|
|
|
1001
1275
|
font-size: 1rem;
|
|
1002
1276
|
}
|
|
1003
1277
|
|
|
1278
|
+
@media (max-width: 1200px) {
|
|
1279
|
+
.sdix-workspace-summary {
|
|
1280
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
|
|
1004
1284
|
.sdix-stage-progress p {
|
|
1005
1285
|
margin: 0;
|
|
1006
1286
|
max-width: 40rem;
|
|
@@ -1013,6 +1293,18 @@
|
|
|
1013
1293
|
justify-content: center;
|
|
1014
1294
|
}
|
|
1015
1295
|
|
|
1296
|
+
.sdix-stage-progress--success {
|
|
1297
|
+
min-height: 0;
|
|
1298
|
+
padding: 1rem 1.15rem;
|
|
1299
|
+
border: 1px solid #cfe9d6;
|
|
1300
|
+
border-radius: 0.9rem;
|
|
1301
|
+
background: linear-gradient(180deg, #f6fdf7 0%, #f1faf4 100%);
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
.sdix-stage-progress--success svg {
|
|
1305
|
+
color: #2f9e5b;
|
|
1306
|
+
}
|
|
1307
|
+
|
|
1016
1308
|
.sdix-review-meta {
|
|
1017
1309
|
display: flex;
|
|
1018
1310
|
flex-direction: column;
|
|
@@ -1023,6 +1315,17 @@
|
|
|
1023
1315
|
background: #fbfcff;
|
|
1024
1316
|
}
|
|
1025
1317
|
|
|
1318
|
+
.sdix-review-code-header {
|
|
1319
|
+
display: flex;
|
|
1320
|
+
align-items: center;
|
|
1321
|
+
justify-content: space-between;
|
|
1322
|
+
gap: 0.75rem;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.sdix-review-copy-button {
|
|
1326
|
+
flex-shrink: 0;
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1026
1329
|
.sdix-review-meta--compact {
|
|
1027
1330
|
padding: 0.46rem 0.62rem;
|
|
1028
1331
|
gap: 0.08rem;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DatasourceIntrospectionPage.d.ts","sourceRoot":"","sources":["../../../../../src/routes/pages/admin/core/DatasourceIntrospectionPage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"DatasourceIntrospectionPage.d.ts","sourceRoot":"","sources":["../../../../../src/routes/pages/admin/core/DatasourceIntrospectionPage.tsx"],"names":[],"mappings":"AAyDA,OAAO,mCAAmC,CAAC;AAisB3C,wBAAgB,2BAA2B,4CA+9E1C"}
|