Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added old dialog names to adapter-react-v5 again #2800

Merged
merged 4 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading