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

chore: upgrade stencil version and other minor and bugfix dependencies #126 #127

Merged
merged 3 commits into from
Nov 6, 2023
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
19 changes: 19 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## Upcoming

### Changed

- Update drawer icon
- Removed React demo application, a new demo will be introduced

### Fixed

- Typos in documentation
- Display of favicon in documentation
- Not working Datepicker modal demo

### Misc

- Introduced information about minimal compatible node version
- Upgrade Stencil and corresponding output target to latest minor and bugfix release versions
- Upgrade TypeScript to ~5.2.x to match version used in Stencil 4.6.0

## 4.0.3 - 2023-09-28

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ export const proxyInputs = (Cmp: any, inputs: string[]) => {
set(val: any) {
this.z.runOutsideAngular(() => (this.el[item] = val));
},
/**
* In the event that proxyInputs is called
* multiple times re-defining these inputs
* will cause an error to be thrown. As a result
* we set configurable: true to indicate these
* properties can be changed.
*/
configurable: true,
});
});
};
Expand Down
16 changes: 8 additions & 8 deletions libraries/ui-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@
"codeclean": "npm run lint:fix && npm run prettier:fix"
},
"dependencies": {
"@stencil/core": "^4.0.3",
"@stencil/core": "^4.6.0",
"@types/resize-observer-browser": "^0.1.5"
},
"devDependencies": {
"@fontsource/noto-sans": "^4.5.1",
"@fontsource/noto-sans": "^4.5.11",
"@popperjs/core": "^2.5.3",
"@stencil-community/eslint-plugin": "^0.5.0",
"@stencil/angular-output-target": "^0.7.1",
"@stencil/angular-output-target": "^0.8.2",
"@stencil/react-output-target": "^0.5.3",
"@stencil/sass": "^3.0.5",
"@stencil/sass": "^3.0.7",
"@stencil/vue-output-target": "^0.8.6",
"@types/jest": "27.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
Expand All @@ -53,11 +53,11 @@
"eslint-config-prettier": "^8.8.0",
"jest": "27.4.5",
"jest-cli": "27.4.5",
"material-icons": "^1.12.0",
"puppeteer": "^20.2.1",
"replace-in-file": "^6.2.0",
"material-icons": "^1.13.12",
"puppeteer": "^20.9.0",
"replace-in-file": "^6.3.5",
"rimraf": "^3.0.2",
"typescript": "^4.3.2"
"typescript": "~5.2.2"
},
"jest": {
"preset": "@stencil/core/testing",
Expand Down
Loading