Skip to content

Commit

Permalink
Sync test-app blueprint with [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Astapov committed Aug 8, 2023
1 parent 8bcfb2f commit 2b12177
Show file tree
Hide file tree
Showing 28 changed files with 2,919 additions and 913 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.17.0",
"@ember/optional-features": "^2.0.0",
"@ember/test-helpers": "^2.8.1",
"@ember/test-helpers": "^3.2.0",
"@glimmer/component": "^1.1.2",
"@glimmer/tracking": "^1.1.2",
"broccoli-asset-rev": "^3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion ember-css-transitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
}
},
"exports": {
".": "./dist/addon-main.js",
".": "./dist/addon-main.cjs",
"./*": {
"types": "./types/*.d.ts",
"default": "./dist/*.js"
Expand Down
4 changes: 2 additions & 2 deletions ember-css-transitions/types/modifiers/css-transition.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Modifier from 'ember-modifier';

export interface CssTransitionModifierSignature {
export interface CssTransitionSignature {
Element?: HTMLElement;
Args: {
Positional?: [transitionName: string];
Expand All @@ -20,4 +20,4 @@ export interface CssTransitionModifierSignature {
};
}

export default class CssTransitionModifier extends Modifier<CssTransitionModifierSignature> {}
export default class CssTransitionModifier extends Modifier<CssTransitionSignature> {}
Loading

0 comments on commit 2b12177

Please sign in to comment.