Skip to content

Commit

Permalink
Merge 1d6a1be into 42b38a3
Browse files Browse the repository at this point in the history
  • Loading branch information
LiliumCandidum committed Apr 16, 2024
2 parents 42b38a3 + 1d6a1be commit 35096c4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [1.0.18] - 2024-04-15

- `events`: add properties `dateFormat` and `timezone` to `ExportUserConfig` event

## [1.0.17] - 2024-02-28

- `dataschema`: format `html-editor` is now available
Expand Down
2 changes: 2 additions & 0 deletions docs/events/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,8 @@ sends user configuration payload to perform export
filters: "all" | "filtered" | "selected"
columns: string[]
columnName: "id" | "label"
dateFormat?: string
timezone?: string
}
```

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@micro-lc/back-kit-engine",
"version": "1.0.17",
"version": "1.0.18-rc1",
"description": "engine to sync react over webcomponents scaffolding + backoffice utils and types/interfaces",
"license": "SEE LICENSE IN LICENSE",
"author": "Mia Platform Core Team <core@mia-platform.eu>",
Expand Down Expand Up @@ -180,5 +180,6 @@
"open@8.4.0": {
"unplugged": true
}
}
},
"stableVersion": "1.0.17"
}
2 changes: 2 additions & 0 deletions src/events/bk/exportData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export type ExportUserConfig = {
filters: ExportFiltering
columns: string[]
columnName: ExportColumnName
dateFormat?: string
timezone?: string
}

/**
Expand Down

0 comments on commit 35096c4

Please sign in to comment.