generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into chore/update-dependencies
- Loading branch information
Showing
74 changed files
with
18,176 additions
and
411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,43 @@ | ||
# @sap-ux/generator-simple-fe | ||
|
||
## 1.0.109 | ||
|
||
### Patch Changes | ||
|
||
- 77b0800: Adds support for entity related prompting. Update some exported types `fiori-elements-writer`, `fiori-freestyle-writer` to remove problematic enum usage. | ||
The major version updates for modules `@sap-ux/fiori-elements-writer` and `@sap-ux/fiori-freestyle-writer` indicates a breaking change of type definitions: | ||
|
||
`@sap-ux/fiori-elements-writer`: | ||
`TemplateType` | ||
`TableType` | ||
`TableSelectionMode` | ||
|
||
`@sap-ux/fiori-freestyle-writer`: | ||
`TemplateType` | ||
|
||
These changes are required to reduce the impact of importing these types by consumers. Previously defined as enums, requiring full dependencies and bloating | ||
consumer code where only these types are required. The new type defintions still allow both uses (type or value) but the `enums` are now defined as `const`. | ||
This change requires updates to consuming code where the type is imported and referenced. | ||
Example where a single enum was used as a value type: | ||
|
||
``` | ||
type Template = { | ||
template: TemplateType.ListReportObjectPage | ||
} | ||
``` | ||
should now be defined as: | ||
``` | ||
type Template = { | ||
template: typeof TemplateType.ListReportObjectPage | ||
} | ||
``` | ||
- Updated dependencies [77b0800] | ||
- @sap-ux/[email protected] | ||
- @sap-ux/[email protected] | ||
## 1.0.108 | ||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.