-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): remove ember-composable-helpers dependency
- Loading branch information
Showing
12 changed files
with
143 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import createDecorator from "ember-uikit/-private/decorator"; | ||
|
||
export default createDecorator(function ( | ||
target, | ||
property, | ||
descriptor, | ||
defaultValue = () => {}, | ||
) { | ||
return { | ||
get() { | ||
return this.args[property] ?? defaultValue; | ||
}, | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Component from "@glimmer/component"; | ||
|
||
import optionalArgument from "ember-uikit/-private/optional-argument"; | ||
|
||
export default class UkSortableComponent extends Component { | ||
@optionalArgument onStart; | ||
@optionalArgument onStop; | ||
@optionalArgument onMoved; | ||
@optionalArgument onAdded; | ||
@optionalArgument onRemoved; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import Component from "@glimmer/component"; | ||
|
||
import optionalArgument from "ember-uikit/-private/optional-argument"; | ||
|
||
export default class UkSwitcherContentItemComponent extends Component { | ||
@optionalArgument onBeforeShow; | ||
@optionalArgument onShow; | ||
@optionalArgument onShown; | ||
@optionalArgument onBeforeHide; | ||
@optionalArgument onHide; | ||
@optionalArgument onHidden; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.