@iobroker/dm-gui-components 6.13.9 → 6.13.13

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.
@@ -1,6 +1,6 @@
1
1
  import React, { Component } from 'react';
2
2
  import { Connection } from '@iobroker/adapter-react-v5';
3
- import { ActionBase, ControlBase, ControlState } from '@iobroker/dm-utils/build/types/base';
3
+ import type { ActionBase, ControlBase, ControlState } from '@iobroker/dm-utils/build/types/base';
4
4
  export type CommunicationProps = {
5
5
  socket: Connection;
6
6
  selectedInstance: string;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ActionBase } from '@iobroker/dm-utils/build/types/base';
2
+ import type { ActionBase } from '@iobroker/dm-utils/build/types/base';
3
3
  interface DeviceActionButtonProps {
4
4
  deviceId: string;
5
5
  action: any;
@@ -1,5 +1,5 @@
1
1
  import React, { Component } from 'react';
2
- import { ControlBase, ControlState } from '@iobroker/dm-utils/build/types/base';
2
+ import type { ControlBase, ControlState } from '@iobroker/dm-utils/build/types/base';
3
3
  interface DeviceControlProps {
4
4
  deviceId: string;
5
5
  control: any;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { Connection } from '@iobroker/adapter-react-v5';
2
+ import type { Connection } from '@iobroker/adapter-react-v5';
3
3
  interface DeviceImageUploadProps {
4
4
  socket: Connection;
5
5
  manufacturer?: string;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { DeviceInfo, InstanceDetails } from '@iobroker/dm-utils';
2
+ import type { DeviceInfo, InstanceDetails } from '@iobroker/dm-utils';
3
3
  import Communication, { CommunicationProps, CommunicationState } from './Communication';
4
4
  interface DeviceListProps extends CommunicationProps {
5
5
  uploadImagesToInstance?: string;
package/build/Utils.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ControlBase } from '@iobroker/dm-utils/build/types/base';
2
+ import type { ControlBase } from '@iobroker/dm-utils/build/types/base';
3
3
  export declare function renderIcon(action: ControlBase, colors?: {
4
4
  primary: string;
5
5
  secondary: string;
@@ -11,9 +11,9 @@
11
11
  "noInstanceSelectedText": "Bitte Instanz auswählen",
12
12
  "filterLabelText": "Nach Name filtern",
13
13
  "instanceLabelText": "Instanz",
14
- "refreshInstanceList": "Instanz Liste aktualisieren",
15
- "copied": " Kopiert",
16
- "toClipboard": " in die Zwischenablage kopiert",
14
+ "refreshInstanceList": "Instanzliste aktualisieren",
15
+ "copied": "Kopiert",
16
+ "toClipboard": "in die Zwischenablage kopiert",
17
17
  "allDevicesFilteredOut": "Alle Geräte herausgefiltert",
18
18
  "closeButtonText": "Schließen",
19
19
  "instanceNotAlive": "Instanz ist nicht aktiv",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iobroker/dm-gui-components",
3
- "version": "6.13.9",
3
+ "version": "6.13.13",
4
4
  "description": "ReactJS components to develop admin interface for ioBroker device manager.",
5
5
  "author": {
6
6
  "name": "Jey Cee",
@@ -45,5 +45,6 @@
45
45
  "homepage": "https://github.com/ioBroker/dm-gui-components#readme",
46
46
  "dependencies": {
47
47
  "@iobroker/adapter-react-v5": "^4.9.1"
48
- }
48
+ },
49
+ "gitHead": "5bd42cd2c475301b4682a95d87dc72a53fd6aa19"
49
50
  }