Skip to content

Commit

Permalink
Added old dialog names to adapter-react-v5 again (#2800)
Browse files Browse the repository at this point in the history
Added old dialog names to adapter-react-v5 again
  • Loading branch information
GermanBluefox authored Nov 13, 2024
1 parent 088b976 commit 437a756
Show file tree
Hide file tree
Showing 3 changed files with 592 additions and 598 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ And with rest-api instance: `https://iobroker.mydomain.com/ioBrokerAPI/ => http:
You can add the following lines into Reverse Proxy tab to let Intro tab run behind reverse proxy properly:

| Global path | Instance | Instance path behind proxy |
| ----------------- | ------------- | -------------------------- |
|-------------------|---------------|----------------------------|
| `/ioBrokerAdmin/` | `web.0` | `/ioBrokerWeb/` |
| | `rest-api.0` | `/ioBrokerAPI/` |
| | `admin.0` | `/ioBrokerAdmin/` |
Expand All @@ -89,6 +89,7 @@ The icons may not be reused in other projects without the proper flaticon licens
-->
### **WORK IN PROGRESS**
- (@GermanBluefox) Corrected cloud icon for admin
- (@GermanBluefox) Added old dialog names to adapter-react-v5 again

### 7.2.6 (2024-10-11)

Expand Down
9 changes: 9 additions & 0 deletions packages/adapter-react-v5/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,23 @@ export { IconNoIcon } from './icons/IconNoIcon';
export { IconDocumentReadOnly } from './icons/IconDocumentReadOnly';
export { IconClearFilter } from './icons/IconClearFilter';
export { DialogComplexCron } from './Dialogs/ComplexCron';
export { DialogComplexCron as ComplexCronDialog } from './Dialogs/ComplexCron'; // deprecated
export { DialogConfirm } from './Dialogs/Confirm';
export { DialogConfirm as Confirm } from './Dialogs/Confirm'; // deprecated
export { DialogCron } from './Dialogs/Cron';
export { DialogCron as Cron } from './Dialogs/Cron'; // deprecated
export { DialogError } from './Dialogs/Error';
export { DialogError as Error } from './Dialogs/Error'; // deprecated
export { DialogMessage } from './Dialogs/Message';
export { DialogMessage as Message } from './Dialogs/Message'; // deprecated
export { DialogSelectID } from './Dialogs/SelectID';
export { DialogSelectID as SelectID } from './Dialogs/SelectID'; // deprecated
export { DialogSelectFile } from './Dialogs/SelectFile';
export { DialogSelectFile as SelectFile } from './Dialogs/SelectFile'; // deprecated
export { DialogSimpleCron } from './Dialogs/SimpleCron';
export { DialogSimpleCron as SimpleCronDialog } from './Dialogs/SimpleCron'; // deprecated
export { DialogTextInput } from './Dialogs/TextInput';
export { DialogTextInput as TextInput } from './Dialogs/TextInput'; // deprecated
export { Connection, PROGRESS, ERRORS, PERMISSION_ERROR } from './Connection';
export { AdminConnection } from './AdminConnection';
export { dictionary } from './dictionary';
Expand Down
Loading

0 comments on commit 437a756

Please sign in to comment.