Skip to content

Commit

Permalink
chore: apply latest changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 17, 2025
1 parent 77b0800 commit ab7cc10
Show file tree
Hide file tree
Showing 9 changed files with 144 additions and 40 deletions.
36 changes: 0 additions & 36 deletions .changeset/clever-eyes-greet.md

This file was deleted.

38 changes: 38 additions & 0 deletions examples/simple-generator/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sap-ux/generator-simple-fe",
"version": "1.0.108",
"version": "1.0.109",
"description": "Simple example of a yeoman generator for Fiori elements.",
"license": "Apache-2.0",
"private": true,
Expand Down
34 changes: 34 additions & 0 deletions packages/fiori-elements-writer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @sap-ux/fiori-elements-writer

## 2.0.0

### Major 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
}
```
## 1.3.46
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fiori-elements-writer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sap-ux/fiori-elements-writer",
"description": "SAP Fiori elements application writer",
"version": "1.3.46",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
Expand Down
34 changes: 34 additions & 0 deletions packages/fiori-freestyle-writer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @sap-ux/fiori-freestyle-writer

## 2.0.0

### Major 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
}
```
## 1.2.41
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/fiori-freestyle-writer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sap-ux/fiori-freestyle-writer",
"description": "SAP Fiori freestyle application writer",
"version": "1.2.41",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
Expand Down
34 changes: 34 additions & 0 deletions packages/odata-service-inquirer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# @sap-ux/odata-service-inquirer

## 1.0.0

### Major 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
}
```
## 0.8.8
### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/odata-service-inquirer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sap-ux/odata-service-inquirer",
"description": "Prompts module that can prompt users for inputs required for odata service writing",
"version": "0.8.8",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
Expand Down

0 comments on commit ab7cc10

Please sign in to comment.