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

Update changelog #108

Merged
merged 3 commits into from
Sep 12, 2022
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
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,29 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- ### Fixed -->

<!-- ## [x.y.z] - YYYY-MM-DD -->

## Unreleased

<!-- ### Changed -->

### Added

- Added an optional `"syntax"` field to CSSCustomProperty to describe the property syntax using CSS Properties and Values API's syntax strings. Fixes
https://github.com/webcomponents/custom-elements-manifest/issues/68
https://github.com/webcomponents/custom-elements-manifest/issues/68

- Added CustomElementField that extends ClassField with the ability to describe associated attributes. Fixes https://github.com/webcomponents/custom-elements-manifest/issues/36 ([#75](https://github.com/webcomponents/custom-elements-manifest/pull/75))

- Added CustomElementField that extends ClassField with the ability to
describe associated attributes. Fixes https://github.com/webcomponents/custom-elements-manifest/issues/36
- Added a `"deprecated"` field to all declarations (functions and methods) ([#89](https://github.com/webcomponents/custom-elements-manifest/pull/89), [#105](https://github.com/webcomponents/custom-elements-manifest/pull/105))

- Added a `"rest"` field to parameters. ([#83](https://github.com/webcomponents/custom-elements-manifest/pull/83))

<!-- ### Removed -->

### Fixed

- Fixed how custom element declarations extend class declarations. Previously CustomElementDeclaration didn't include CustomElement properties, and MixinDeclaration required some CustomElement properties. Added new CustomElementMixinDeclaration interface. Fixes https://github.com/webcomponents/custom-elements-manifest/issues/69
- Fixed how custom element declarations extend class declarations. Previously CustomElementDeclaration didn't include CustomElement properties, and MixinDeclaration required some CustomElement properties. Added new CustomElementMixinDeclaration interface. Fixes https://github.com/webcomponents/custom-elements-manifest/issues/69 ([#103](https://github.com/webcomponents/custom-elements-manifest/pull/103))

- Clarified that module paths should point to importable files in the package. ([#104](https://github.com/webcomponents/custom-elements-manifest/pull/104))

## [1.0.0] - 2021-06-10

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,16 +121,14 @@ The manifest would look like:
"kind": "js",
"name": "MyElement",
"declaration": {
"name": "MyElement",
"module": "my-project/my-element.js"
"name": "MyElement"
}
},
{
"kind": "custom-element-definition",
"name": "my-element",
"declaration": {
"name": "MyElement",
"module": "my-project/my-element.js"
"name": "MyElement"
}
}
]
Expand Down
6 changes: 2 additions & 4 deletions examples/simple-element.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,14 @@
"kind": "js",
"name": "MyElement",
"declaration": {
"name": "MyElement",
"module": "my-project/my-element.js"
"name": "MyElement"
}
},
{
"kind": "custom-element-definition",
"name": "my-element",
"declaration": {
"name": "MyElement",
"module": "my-project/my-element.js"
"name": "MyElement"
}
}
]
Expand Down