@c8y/ngx-components 1023.37.0 → 1023.42.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/context-dashboard/index.d.ts.map +1 -1
- package/fesm2022/c8y-ngx-components-context-dashboard.mjs +2 -1
- package/fesm2022/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-global-context.mjs +39 -11
- package/fesm2022/c8y-ngx-components-global-context.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-trusted-certificates.mjs +2 -2
- package/fesm2022/c8y-ngx-components-trusted-certificates.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-upgrade.mjs +13 -1
- package/fesm2022/c8y-ngx-components-upgrade.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-widgets-implementations-alarms.mjs +1 -1
- package/fesm2022/c8y-ngx-components-widgets-implementations-alarms.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-table.mjs +2 -2
- package/fesm2022/c8y-ngx-components-widgets-implementations-datapoints-table.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-widgets-implementations-markdown.mjs +156 -67
- package/fesm2022/c8y-ngx-components-widgets-implementations-markdown.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components.mjs +10 -2
- package/fesm2022/c8y-ngx-components.mjs.map +1 -1
- package/global-context/index.d.ts +11 -2
- package/global-context/index.d.ts.map +1 -1
- package/index.d.ts +5 -0
- package/index.d.ts.map +1 -1
- package/locales/de.po +189 -93
- package/locales/es.po +129 -33
- package/locales/fr.po +287 -186
- package/locales/ja_JP.po +334 -238
- package/locales/ko.po +130 -34
- package/locales/locales.pot +12 -9
- package/locales/nl.po +130 -34
- package/locales/pl.po +129 -33
- package/locales/pt_BR.po +130 -34
- package/locales/zh_CN.po +129 -33
- package/locales/zh_TW.po +130 -34
- package/package.json +1 -1
- package/upgrade/index.d.ts.map +1 -1
- package/widgets/implementations/markdown/index.d.ts +52 -18
- package/widgets/implementations/markdown/index.d.ts.map +1 -1
|
@@ -14,7 +14,7 @@ import { BasicAuth, FetchClient, QueriesUtil } from '@c8y/client';
|
|
|
14
14
|
import { AppLogsAutoRefreshComponent } from '@c8y/ngx-components/app-logs';
|
|
15
15
|
import { WidgetPreviewWrapperComponent, WidgetConfigService, ContextDashboardService } from '@c8y/ngx-components/context-dashboard';
|
|
16
16
|
import { DatapointSelectionListComponent, DatapointSelectorService } from '@c8y/ngx-components/datapoint-selector';
|
|
17
|
-
import { GlobalContextWidgetWrapperComponent, WidgetConfigMigrationService } from '@c8y/ngx-components/global-context';
|
|
17
|
+
import { GlobalContextWidgetWrapperComponent, GlobalContextConnectorComponent, LocalControlsComponent, WidgetConfigMigrationService } from '@c8y/ngx-components/global-context';
|
|
18
18
|
import { PlatformConfigurationFormComponent } from '@c8y/ngx-components/platform-configuration';
|
|
19
19
|
import { RolesAssetTreeComponent } from '@c8y/ngx-components/user-roles';
|
|
20
20
|
import { PaginationComponent } from 'ngx-bootstrap/pagination';
|
|
@@ -910,6 +910,16 @@ const globalContextWidgetWrapperDowngradedComponent = downgradeComponent({
|
|
|
910
910
|
const widgetPreviewWrapperDowngradedComponent = downgradeComponent({
|
|
911
911
|
component: WidgetPreviewWrapperComponent
|
|
912
912
|
});
|
|
913
|
+
const globalContextConnectorDowngradedComponent = downgradeComponent({
|
|
914
|
+
component: GlobalContextConnectorComponent,
|
|
915
|
+
inputs: ['controls', 'config', 'isLoading', 'dashboardChild', 'linked', 'emitRefresh'],
|
|
916
|
+
outputs: ['configChange', 'refresh', 'linkedChange']
|
|
917
|
+
});
|
|
918
|
+
const localControlsDowngradedComponent = downgradeComponent({
|
|
919
|
+
component: LocalControlsComponent,
|
|
920
|
+
inputs: ['controls', 'displayMode', 'config', 'isLoading', 'disabled'],
|
|
921
|
+
outputs: ['configChange', 'refresh']
|
|
922
|
+
});
|
|
913
923
|
|
|
914
924
|
class ServerMessagesService {
|
|
915
925
|
constructor(translateService, patterns) {
|
|
@@ -1349,6 +1359,8 @@ angular
|
|
|
1349
1359
|
.directive('c8yDatapointSelectionList', datapointSelectionListComponentDowngradedComponent)
|
|
1350
1360
|
.directive('c8yHighlight', highlightComponentDowngradedComponent)
|
|
1351
1361
|
.directive('c8yGlobalContextWidgetWrapper', globalContextWidgetWrapperDowngradedComponent)
|
|
1362
|
+
.directive('c8yGlobalContextConnector', globalContextConnectorDowngradedComponent)
|
|
1363
|
+
.directive('c8yLocalControls', localControlsDowngradedComponent)
|
|
1352
1364
|
.directive('c8yPasswordInput', passwordInputComponentDowngradedComponent)
|
|
1353
1365
|
.directive('pagination', paginationComponentDowngradedComponent)
|
|
1354
1366
|
.directive('c8yRolesAssetTreeDowngraded', rolesAssetTreeComponentDowngradedComponent)
|