The ember implementation of UIkit

Overview

ember-uikit

npm version Test codecov Ember Observer Score Semantic Release

This addon is a wrapper for the CSS library UIkit which exposes certain components to give users an easy way for using UIkit in ember apps.

ember-uikit is heavily inspired by Vuikit which does a tremendous job in bringing UIkit to Vue apps.

Installation

Install the ember-cli addon in your ember-cli project:

$ ember install ember-uikit

This will also install ember-cli-sass and add the needed SASS include to app/styles/app.scss.

Usage

To learn about using ember-uikit check the interactive documentation at adfinis-sygroup.github.io/ember-uikit. Feel free to open an issue if you encounter problems or something is not clear enough.

License

This addon is licensed under the MIT license

Comments
  • fix(modal): choose correct UIkit event

    fix(modal): choose correct UIkit event

    We have the problem that in Internet Explorer the container of the modal dialogs is not hidden on close via Escape key.

    After much debugging it turns out that the change of the visible variable initiated by the on-hide action in the template interferes with the hiding process. In effect the promise that (when resolved) triggers the removal of the display property throws undefined and leaves the user with a transparent container over the whole page which prevents any further interaction with the page.

    https://github.com/uikit/uikit/blob/develop/src/js/mixin/togglable.js#L144

    Changing the UIkit event we listen to in our Ember component fixes the problem as the newly chosen event occurs after UIkit has done its deed and we cannot mess up the hiding process anymore.

    "hide" -> "hidden" https://getuikit.com/docs/modal#events

    bug released 
    opened by fkm 8
  • @import dependencies failed

    @import dependencies failed

    Hello,

    I tried to install this package but transitive dependencies downloading like "ember-uikit/variable-themes" failed.

    I use broccoli-sass to compile scss file which content : @import "node_modules/ember-uikit/app/styles/ember-uikit.scss"

    I would not use "ember-cli-sass" because I have already several transformations of css files in my Ember App.

    Thanks for your help.

    opened by ronny35 5
  • Update husky to the latest version 🚀

    Update husky to the latest version 🚀

    The devDependency husky was updated from 0.14.3 to 1.0.0.

    This version is not covered by your current version range.

    If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.


    Find out more about this release.

    FAQ and help

    There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


    Your Greenkeeper bot :palm_tree:

    greenkeeper 
    opened by greenkeeper[bot] 5
  • An in-range update of uikit is breaking the build 🚨

    An in-range update of uikit is breaking the build 🚨

    The dependency uikit was updated from 3.0.0-rc.9-dev.bd39d353 to 3.0.0-rc.16.

    🚨 View failing branch.

    This version is covered by your current version range and after updating it in your project the build failed.

    uikit is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.

    Status Details
    • continuous-integration/travis-ci/push: The Travis CI build could not complete due to an error (Details).

    Release Notes for v3.0.0-rc.16

    Fixed

    • Fix regression in Overflow Auto component
    Commits

    The new version differs by 75 commits.

    • 0cdd172 Merge tag 'v3.0.0-rc.16' into develop
    • b2e1ef1 Merge branch 'release/v3.0.0-rc.16'
    • 53b3fb2 v3.0.0-rc.16
    • 6fac5bb Fix regression in Overflow Auto component
    • d004bda Merge tag 'v3.0.0-rc.15' into develop
    • dfdb5b9 Merge branch 'release/v3.0.0-rc.15'
    • c95395e v3.0.0-rc.15
    • 4dd8f60 typo
    • 8160f31 Rename selModal to selContainer adn selPanel to selContent in Overflow Auto component
    • b8709a5 add overflow auto test to utility component
    • a0d0320 cleanup video test text
    • de76a09 improve isNode check
    • de71b8d fix: isInView function for elements with zero width and height
    • 60d0a08 Merge branch 'release/v3.0.0-rc.14'
    • a7f7466 Merge tag 'v3.0.0-rc.14' into develop

    There are 75 commits in total.

    See the full diff

    FAQ and help

    There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


    Your Greenkeeper Bot :palm_tree:

    greenkeeper 
    opened by greenkeeper[bot] 5
  • Page scrolls up on click anywhere

    Page scrolls up on click anywhere

    When using a modal and having a scroll, under some circumstances when clicking anywhere the page will scroll to the top again.

    The issue seems to come from focus-trap, this is a issue with a similar problem https://github.com/davidtheclark/focus-trap/issues/104

    Currently there is no released version of focus-trap with the fix, which could be used in ember-focus-trap, to potentially fix the scrolling problem.

    bug 
    opened by Yelinz 4
  • add Event handling for uk-switcher component

    add Event handling for uk-switcher component

    is it possible to add the following code to the item sub-component of uk-switcher: setEvents() { let events = { beforeshow: this.getWithDefault("on-beforeshow", noop), show: this.getWithDefault("on-show", noop), shown: this.getWithDefault("on-shown", noop), beforehide: this.getWithDefault("on-beforehide", noop), hide: this.getWithDefault("on-hide", noop), hidden: this.getWithDefault("on-hidden", noop) };

    for (let event in events) {
      UIkit.util.on(this.element, event, events[event]);
    }
    

    }, didInsertElement() { this._super(...arguments); this.setEvents(); } to enable the event handling. Thanks

    opened by stefanhofmann2 4
  • chore(deps): bump ember-cli-babel from 7.26.5 to 7.26.6

    chore(deps): bump ember-cli-babel from 7.26.5 to 7.26.6

    ⚠️ Dependabot Preview has been deactivated ⚠️

    This pull request was created by Dependabot Preview, and you've upgraded to Dependabot. This means it won't respond to dependabot commands nor will it be automatically closed if a new version is found.

    If you close this pull request, Dependabot will re-create it the next time it checks for updates and everything will work as expected.


    Bumps ember-cli-babel from 7.26.5 to 7.26.6.

    Release notes

    Sourced from ember-cli-babel's releases.

    v7.26.6

    :bug: Bug Fix

    • #407 Fix combination usages of compileModules along with other flags. (@​rwjblue)

    Committers: 1

    Changelog

    Sourced from ember-cli-babel's changelog.

    v7.26.6 (2021-05-18)

    :bug: Bug Fix

    • #407 Fix combination usages of compileModules along with other flags. (@​rwjblue)

    Committers: 1

    Commits
    • 4c3b909 v7.26.6
    • 085c408 Merge pull request #407 from babel/more-compileModules-combinations
    • 89245f9 Fix combination usages of compileModules along with other flags.
    • See full diff in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in the .dependabot/config.yml file in this repo:

    • Update frequency
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    released dependencies released on @beta 
    opened by dependabot-preview[bot] 3
  • fix(deps): update dependencies and drop ember-cli-eslint

    fix(deps): update dependencies and drop ember-cli-eslint

    ember-source can't be updated to v3.10.0 for now because something breaks it without any error message..

    Closes #120 Closes #132 Closes #152 Closes #127 Closes #133 Closes #121 Closes #103 Closes #151 Closes #150 Closes #125 Closes #96 Closes #129 Closes #147 Closes #128 Closes #143 Closes #149

    released 
    opened by anehx 3
  • Update ember-cli to the latest version 🚀

    Update ember-cli to the latest version 🚀

    ☝️ Greenkeeper’s updated Terms of Service will come into effect on April 6th, 2018.

    Version 3.1.0 of ember-cli was just published.

    Dependency ember-cli
    Current Version 3.0.3
    Type devDependency

    The version 3.1.0 is not covered by your current version range.

    If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

    It might be worth looking into these changes and trying to get this project onto the latest version of ember-cli.

    If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


    FAQ and help

    There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


    Your Greenkeeper bot :palm_tree:

    greenkeeper 
    opened by greenkeeper[bot] 3
  • Update broccoli-merge-trees to the latest version 🚀

    Update broccoli-merge-trees to the latest version 🚀

    Version 3.0.0 of broccoli-merge-trees was just published.

    Dependency broccoli-merge-trees
    Current Version 2.0.0
    Type dependency

    The version 3.0.0 is not covered by your current version range.

    If you don’t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

    It might be worth looking into these changes and trying to get this project onto the latest version of broccoli-merge-trees.

    If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you don’t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


    Commits

    The new version differs by 3 commits.

    • 98187b1 Release version 3.0.0
    • 7b6f8c2 Update .travis.yml and appveyor.yml
    • 545a157 Upgrade to node-merge-trees ^2.0.0; this requires Node 6.0.0 or greater

    See the full diff

    FAQ and help

    There is a collection of frequently asked questions. If those don’t help, you can always ask the humans behind Greenkeeper.


    Your Greenkeeper bot :palm_tree:

    greenkeeper 
    opened by greenkeeper[bot] 3
  • Add Sortable Component

    Add Sortable Component

    I made a component today for UIkit's sortable component. I still need to add some more tests and finish the template for the demo site. Before I go too far with the demo site, I'd like some feedback on my approach to adding the component specific events and attributes. I noticed the evented mixin, it didn't seem right to add component specific events there. I'm sure I didn't follow some of your style conventions.

    Anyway, I'll make whatever style/design adjustments and work on the demo page if y'all are interested in a PR.

    Here's the commit to my fork: https://github.com/jayvarner/ember-uikit/commit/c42851356e300b6667fa3ef576d66fd98da9fbf3

    enhancement feature 
    opened by jayvarner 3
  • chore(deps): bump uikit from 3.15.17 to 3.15.19

    chore(deps): bump uikit from 3.15.17 to 3.15.19

    Bumps uikit from 3.15.17 to 3.15.19.

    Release notes

    Sourced from uikit's releases.

    v3.15.19

    Changed

    • removeAttr no longer accepts a space separated list of attribute names

    Fixed

    • Fix stacking context if using position: sticky in Sticky component
    • Fix height calculation for box-sizing: border-box on Accordion content
    • Fix error in console if image can't be loaded in Svg component with stroke-animation: true
    • Fix scrollIntoView() no longer considers elements with position: clip as scrollable parents
    • Fix Slider shows not centered initially with center: true

    v3.15.18

    Fixed

    • Fix positioning of Tooltip and Drop components if target is inline element
    • Fix Sticky component resizing on clsBelow class causes stutter
    • Fix Sticky component correctly resets on becoming inactive
    • Fix detection of finite mode in Slider component with center option enabled
    Changelog

    Sourced from uikit's changelog.

    3.15.19 (December 20, 2022)

    Changed

    • removeAttr no longer accepts a space separated list of attribute names

    Fixed

    • Fix stacking context if using position: sticky in Sticky component
    • Fix height calculation for box-sizing: border-box on Accordion content
    • Fix error in console if image can't be loaded in Svg component with stroke-animation: true
    • Fix scrollIntoView() no longer considers elements with position: clip as scrollable parents
    • Fix Slider shows not centered initially with center: true

    3.15.18 (December 13, 2022)

    Fixed

    • Fix positioning of Tooltip and Drop components if target is inline element
    • Fix Sticky component resizing on clsBelow class causes stutter
    • Fix Sticky component correctly resets on becoming inactive
    • Fix detection of finite mode in Slider component with center option enabled
    Commits
    • 7055116 Merge branch 'release/v3.15.19'
    • 1e9461a v3.15.19
    • 3fdb2ae chore: changelog
    • d90b157 fix: Slider shows not centered initially with center: true
    • 9419e20 chore: do not alter html in debug mode
    • 5a8dc03 chore: upgrade dependencies
    • 4781cd9 chore: remove trailing whitespace
    • 818a491 fix: scrollIntoView() no longer considers elements with position: clip as...
    • 9941d4b fix: accordion scrolls direct scrollable parent only
    • 2cbf6d3 fix: error in console if image can't be loaded in Svg component with `stroke-...
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump @ember/test-helpers from 2.8.1 to 2.9.3

    chore(deps-dev): bump @ember/test-helpers from 2.8.1 to 2.9.3

    Bumps @ember/test-helpers from 2.8.1 to 2.9.3.

    Release notes

    Sourced from @​ember/test-helpers's releases.

    Release 2.9.3

    :bug: Bug Fix

    Committers: 1

    Release 2.9.2

    :bug: Bug Fix

    Committers: 1

    Release 2.9.1

    Note: these were all back-ported from master since they could go out on 2.9. This will be the last 2.9 release unless there are critical bug fixes here!

    :bug: Bug Fix

    • Let ESLint have its way about docstring location (a8fac83)
    • DOC: API: add render helper examples (f476a20)
    • Tweak TS style for indexing multiple types (for getElement) (f01ad9f)
    • Use export type for RenderingTestContext (2dc5077)
    • Tweak TS style for indexing multiple types (3214483)
    • Address PR feedback (5e87a54)
    • DOC: API: add DOM query helper examples (83b7f5f)
    • Export type for Target (335019d)
    • Upgrade expect-type and fix issues the new version reveals (bae5e33)
    • Correctly handle special char keyCodes with Shift (d537923)
    • Add tab type test (64f40d5)
    • Generate documentation (939f29f)
    • Ensure types reflect optional-ness of tab options (95285cc)
    • Fix typesVersions config again (53fa899)
    • Clean up public-types after pack (b9dcbca)

    Release 2.9.0

    :rocket: Enhancement

    :bug: Bug Fix

    ... (truncated)

    Changelog

    Sourced from @​ember/test-helpers's changelog.

    v2.9.3 (2022-12-21)

    :bug: Bug Fix

    Committers: 1

    v2.9.2 (2022-12-21)

    :bug: Bug Fix

    Committers: 1

    v2.9.1 (2022-12-16)

    Note: these were all back-ported from master since they could go out on 2.9. This will be the last 2.9 release unless there are critical bug fixes here!

    :bug: Bug Fix

    • Let ESLint have its way about docstring location (a8fac83)
    • DOC: API: add render helper examples (f476a20)
    • Tweak TS style for indexing multiple types (for getElement) (f01ad9f)
    • Use export type for RenderingTestContext (2dc5077)
    • Tweak TS style for indexing multiple types (3214483)
    • Address PR feedback (5e87a54)
    • DOC: API: add DOM query helper examples (83b7f5f)
    • Export type for Target (335019d)
    • Upgrade expect-type and fix issues the new version reveals (bae5e33)
    • Correctly handle special char keyCodes with Shift (d537923)
    • Add tab type test (64f40d5)
    • Generate documentation (939f29f)
    • Ensure types reflect optional-ness of tab options (95285cc)
    • Fix typesVersions config again (53fa899)
    • Clean up public-types after pack (b9dcbca)

    v2.9.0 (2022-12-14)

    :rocket: Enhancement

    :bug: Bug Fix

    ... (truncated)

    Commits
    • 51804d7 Release 2.9.3
    • caef86e Merge pull request #1305 from dfreeman/render-any-object-v2
    • 20c6cf9 Avoid unnecessarily relying on Glimmer's internal component manager type
    • 421d2a0 render accepts any object with a component manager
    • e3f1cb8 Release 2.9.2
    • 6675e10 Merge pull request #1302 from emberjs/backport-fix
    • a34c29b Remove the index signature from TestContext
    • b487c05 Merge pull request #1303 from emberjs/fix-resumeTest
    • 1d22a8e TestContext.resumeTest() returns void, not Promise\<void>
    • 6d57025 Fix up CHANGELOG for 2.9.1
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by chriskrycho, a new releaser for @​ember/test-helpers since your current version.


    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump eslint-plugin-ember from 11.2.0 to 11.3.1

    chore(deps-dev): bump eslint-plugin-ember from 11.2.0 to 11.3.1

    Bumps eslint-plugin-ember from 11.2.0 to 11.3.1.

    Release notes

    Sourced from eslint-plugin-ember's releases.

    Release 11.3.1

    :bug: Bug Fix

    :house: Internal

    Committers: 2

    Release 11.3.0

    :rocket: Enhancement

    :memo: Documentation

    • #1693 Mention ESLint overrides for glob patterns in no-restricted-service-injections rule doc (@​bmish)

    Committers: 3

    Release 11.2.1

    :bug: Bug Fix

    • #1687 Don't lose optional chaining with objectAt in autofix for no-array-prototype-extensions rule (@​52052100)

    :house: Internal

    Committers: 2

    Changelog

    Sourced from eslint-plugin-ember's changelog.

    v11.3.1 (2022-12-21)

    :bug: Bug Fix

    :house: Internal

    Committers: 2

    v11.3.0 (2022-12-20)

    :rocket: Enhancement

    :memo: Documentation

    • #1693 Mention ESLint overrides for glob patterns in no-restricted-service-injections rule doc (@​bmish)

    Committers: 3

    v11.2.1 (2022-11-30)

    :bug: Bug Fix

    • #1687 Don't lose optional chaining with objectAt in autofix for no-array-prototype-extensions rule (@​52052100)

    :house: Internal

    Committers: 2

    Commits
    • dcff4c3 Release 11.3.1
    • 389234a Fix crash with no-tracked-properties-from-args rule (#1712)
    • 1c76eca Switch to config file for eslint-doc-generator (#1713)
    • b192a26 Release 11.3.0
    • f73b1fb build(deps-dev): Bump eslint-plugin-eslint-plugin from 5.0.6 to 5.0.7 (#1705)
    • f7e3324 build(deps-dev): Bump jquery from 3.6.1 to 3.6.2 (#1704)
    • 3c5f537 build(deps-dev): Bump eslint from 8.29.0 to 8.30.0 (#1706)
    • b6e88c8 build(deps): Bump css-tree from 2.3.0 to 2.3.1 (#1707)
    • 1dd5609 build(deps-dev): Bump eslint-doc-generator from 1.0.2 to 1.1.0 (#1708)
    • 4fb2b88 build(deps-dev): Bump eslint-plugin-jest from 27.1.6 to 27.1.7 (#1709)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump ember-template-lint-plugin-prettier from 4.0.0 to 4.1.0

    chore(deps-dev): bump ember-template-lint-plugin-prettier from 4.0.0 to 4.1.0

    Bumps ember-template-lint-plugin-prettier from 4.0.0 to 4.1.0.

    Release notes

    Sourced from ember-template-lint-plugin-prettier's releases.

    Release 4.1.0

    :rocket: Enhancement

    :house: Internal

    Committers: 2

    Changelog

    Sourced from ember-template-lint-plugin-prettier's changelog.

    v4.1.0 (2022-11-24)

    :rocket: Enhancement

    :house: Internal

    Committers: 2

    Commits
    • 0728ebc Release 4.1.0
    • d5e48d4 Merge pull request #245 from ember-template-lint/ember-template-lint-v5-internal
    • 5cadf98 chore(deps): update to ember-template-lint v5
    • 2b24498 Merge pull request #243 from ember-template-lint/markdownlint-tweak
    • fb5ec6b docs: ensure markdownlint runs on all files
    • bf41db6 Merge pull request #242 from ember-template-lint/readme-engine-fix
    • ed657d1 docs: update peer dep in readme
    • c5cba51 Merge pull request #241 from ember-template-lint/dependabot/npm_and_yarn/rele...
    • 3f9a624 Bump release-it from 14.12.5 to 15.5.0
    • ab72c4a Merge pull request #234 from ember-template-lint/dependabot/npm_and_yarn/esli...
    • Additional commits viewable in compare view
    Maintainer changes

    This version was pushed to npm by bmishkin, a new releaser for ember-template-lint-plugin-prettier since your current version.


    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump ember-cli from 4.8.0 to 4.9.2

    chore(deps-dev): bump ember-cli from 4.8.0 to 4.9.2

    Bumps ember-cli from 4.8.0 to 4.9.2.

    Release notes

    Sourced from ember-cli's releases.

    Release 4.9.2

    Blueprint Changes

    Changelog

    Thank you to all who took the time to contribute!

    Release 4.9.1

    Blueprint Changes

    Changelog

    • #10101 [BUGFIX release] Correctly instantiate Watcher instance when running ember test --serve @​bertdeblock

    Thank you to all who took the time to contribute!

    Release 4.9.0

    Blueprint Changes

    Changelog

    ... (truncated)

    Changelog

    Sourced from ember-cli's changelog.

    v4.9.2

    Blueprint Changes

    Changelog

    v4.9.1

    Blueprint Changes

    Changelog

    • #10101 [BUGFIX release] Correctly instantiate Watcher instance when running ember test --serve @​bertdeblock

    Thank you to all who took the time to contribute!

    v4.10.0-beta.0

    Blueprint Changes

    Changelog

    • #10048 Make addAddonsToProject support creating a new project with custom target directory @​simonihmig
    • #10054 [ENHANCEMENT] Conditionally apply ESLint parser options in app and addon blueprints @​Windvis
    • #10056 [INTERNAL] Use eslint-plugin-n instead of eslint-plugin-node @​bertdeblock
    • #10060 [ENHANCEMENT] Replace eslint-plugin-node with eslint-plugin-n in blueprints @​Windvis
    • #10062 [ENHANCEMENT] Update Prettier config in blueprints to only use single quotes for .js and .ts files @​Windvis

    Thank you to all who took the time to contribute!

    v4.9.0

    Blueprint Changes

    Changelog

    ... (truncated)

    Commits
    • 44a223c Release 4.9.2
    • 7c2cee0 update changelog
    • 5bc4e4d Merge pull request #10108 from bertdeblock/correctly-instantiate-server-watcher
    • 25e82ad Correctly instantiate server watcher
    • a11f096 Release 4.9.1
    • 99e3f88 update changelog
    • 12f9262 Merge pull request #10101 from bertdeblock/fix-ember-test-server
    • add7fa9 Correctly instantiate Watcher instance when running ember test --serve
    • dcb36aa Release 4.9.0
    • f420b7f update changelog
    • Additional commits viewable in compare view

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
  • chore(deps-dev): bump @embroider/test-setup from 1.8.3 to 2.0.2

    chore(deps-dev): bump @embroider/test-setup from 1.8.3 to 2.0.2

    Bumps @embroider/test-setup from 1.8.3 to 2.0.2.

    Changelog

    Sourced from @​embroider/test-setup's changelog.

    @embroider/compat, @embroider/core, @embroider/test-setup, @embroider/webpack 2.0.1 -> 2.0.2

    • BUGFIX: detect ember-template-compliation plugin correctly when other plugins are preventing parallelization 1299

    Release 2022-11-28.0

    @embroider/compat, @embroider/core, @embroider/test-setup, @embroider/webpack 2.0.0 -> 2.0.1

    • BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms 1294, 1295

    Release 2022-11-23.0

    @embroider/addon-dev 2.0.0 -> 3.0.0

    • BREAKING: @embroider/addon-template/template-transform-plugin is removed because babel-plugin-ember-template-compilation >= 2.0.0 now directly supports source-to-source transformation.

      This plugin was used to run any custom AST transformations on your templates before publishing. To replace it:

      1. Add babel-plugin-ember-template-compilation@^2.0.0 as a devDependency.

      2. Make sure you also have a devDependency on ember-source, so we have a template compiler.

      3. Update the babel config like:

        plugins: [
        -   [
        -     '@embroider/addon-dev/template-transform-plugin',
        -     {
        -       astTransforms: [
        -         ...yourPluginsHere
        -       ]
        -     }
        -   ],
        +   [
        +     'babel-plugin-ember-template-compilation',
        +     {
        +       compilerPath: 'ember-source/dist/ember-template-compiler',
        +       targetFormat: 'hbs',
        +       transforms: [
        +         ...yourPluginsHere
        +        ]
        +     }
        +   ]
        ]
        

      See https://github.com/emberjs/babel-plugin-ember-template-compilation for the complete docs on these options.

    Commits

    Dependabot compatibility score

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    dependencies javascript 
    opened by dependabot[bot] 0
Releases(v6.1.1)
Ember-cli addon for using Bootstrap as native Ember components.

ember-bootstrap An ember-cli addon for using Bootstrap 4 und 5 in Ember applications. The addon includes the Bootstrap CSS (or Sass, Less) in your pro

kaliber5 491 Dec 25, 2022
Ember.js addon allowing you to easily implement non-CRUD actions for your Ember Data models

@mainmatter/ember-api-actions This is an Ember.js addon allowing you to easily implement non-CRUD actions for your Ember Data models. Compatibility Em

Mainmatter 6 Dec 15, 2022
Ember implementation of Google's Material Design

No longer maintained This project is no longer maintained. For an up-to-date material design project, please use Ember Paper. Ember-material-design Th

Mike Wilson 121 Mar 1, 2022
Ember implementation of the game

Ember implementation of the game

null 9 Apr 27, 2022
📓 The UI component explorer. Develop, document, & test React, Vue, Angular, Web Components, Ember, Svelte & more!

Build bulletproof UI components faster Storybook is a development environment for UI components. It allows you to browse a component library, view the

Storybook 75.8k Jan 4, 2023
An accessible dropdown component for use in Ember apps.

ember-a11y-dropdown This is an accessible dropdown that you can use in your Ember app for a menu dropdown. I'm making it so people can stop using the

Melanie Sumner 2 Feb 10, 2022
Demonstration of how to use statecharts as and with actors in Ember.js

statechart-actors This app demonstrate how we can use ember-statecharts and XState's actor feature together. The demo-use case: Show a blog posts over

Michael Klein 3 Jan 9, 2022
An Ember CLI Addon that provides a variety of UI components.

We use https://waffle.io/softlayer/sl-ember-components to work our issues. What sl-ember-components is An Ember CLI Addon that provides UI components

SoftLayer 115 May 7, 2022
Official Semantic UI Integration for Ember

Semantic-UI-Ember This is the official Ember library for the Semantic-UI modules. Support The NodeJS and EmberJS versions respective tags are tested o

Semantic Org 335 Oct 1, 2022
Material Design Lite for Ember.js Apps

ember-material-lite Google's Material Design Lite for Ember.js apps This addon requires ember >= 1.11.0 Installation # ember-cli < 0.2.3 ember install

Mike North 148 Dec 17, 2021
Bootstrap for Ember.js

Please use our CLI-ADDONS instead We rewrote almost all components from scratch and packed them as Ember-Addons, Please avoid using this project and u

null 708 Nov 17, 2022
Rich components for Ember.js framework.

Ember Components Ember Components is a comprehensive set of rich web components written purely in Ember.js that let you create an astonishing UI for a

Indexia Technologies, ltd. 185 Dec 18, 2020
Bugsnag integration for Ember applications.

Ember Bugsnag Bugsnag integration for Ember applications.

Bagaar 1 Apr 28, 2022
A demo app to illustrate core and latest concepts in Ember.js

ember-workshop A demo app to illustrate core and latest concepts in Ember.js Setup Installation Clone this repo. git clone [email protected]:ijlee2/ember

Isaac Lee 15 Dec 17, 2022
Codemod to un-pod Ember apps, addons, and engines

ember-codemod-pod-to-octane Codemod to un-pod Ember apps, addons, and engines Usage Step 1. Quickly return to default Octane. cd <your/project/path> n

Isaac Lee 9 Nov 30, 2022
This command line helps you create components, pages and even redux implementation for your react project

react-help-create This command line helps you create components, pages and even redux implementation for your react project. How to install it? To ins

Omar 27 Dec 10, 2022
KochSnowFlake - implementation of Koch Snowflake with React+ TS

Koch Snowflake if you just want to play with it, follow, FOLLOW THIS LINK if you are curios about math of this project, FOLLOW THIS LINK installation

Mahyar 1 Mar 13, 2022
Plock is a responsive masonry layout implementation for React. Very simple to use and easy to understand.

About Plock ?? Plock is a responsive masonry layout implementation for React. Very simple to use and easy to understand. Can I see a demo? ?? The demo

Renato Pozzi 130 Dec 9, 2022
An implementation of React v15.x that optimizes for small script size

react-lite Introduction react-lite is an implementation of React that optimizes for small script size. Note: react-lite dose not support React v16.x n

工业聚 1.7k Dec 10, 2022