Skip to content

Commit

Permalink
refactor: remove lazy image
Browse files Browse the repository at this point in the history
  • Loading branch information
AmauryD committed Jan 3, 2025
1 parent 8505fbc commit ebff5f0
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 52 deletions.
1 change: 0 additions & 1 deletion doc-app/app/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Router.map(function (this: RouterDSL) {
this.route('confirm-modal')
})
this.route('installation');
this.route('lazy-image');
this.route('actions-menu');
this.route('modal');
this.route('table-generic');
Expand Down
1 change: 0 additions & 1 deletion doc-app/app/templates/docs.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<nav.item @label="Install" @route="docs.ember-ui.installation" />
<nav.item @label="Actions menu" @route="docs.ember-ui.actions-menu" />
<nav.item @label="File list" @route="docs.ember-ui.file-list" />
<nav.item @label="Lazy image" @route="docs.ember-ui.lazy-image" />
<nav.item @label="Modal" @route="docs.ember-ui.modal" />
<nav.item @label="Stack list" @route="docs.ember-ui.stack-list" />
<nav.item @label="Table generic" @route="docs.ember-ui.table-generic" />
Expand Down
11 changes: 0 additions & 11 deletions doc-app/app/templates/docs/ember-ui/lazy-image.md

This file was deleted.

1 change: 0 additions & 1 deletion packages/ember-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@
"./components/tpk-confirm-modal.js": "./dist/_app_/components/tpk-confirm-modal.js",
"./components/tpk-confirm-modal/cancel.js": "./dist/_app_/components/tpk-confirm-modal/cancel.js",
"./components/tpk-confirm-modal/confirm.js": "./dist/_app_/components/tpk-confirm-modal/confirm.js",
"./components/tpk-lazy-image.js": "./dist/_app_/components/tpk-lazy-image.js",
"./components/tpk-loading-indicator.js": "./dist/_app_/components/tpk-loading-indicator.js",
"./components/tpk-modal.js": "./dist/_app_/components/tpk-modal.js",
"./components/tpk-modal/content.js": "./dist/_app_/components/tpk-modal/content.js",
Expand Down
35 changes: 0 additions & 35 deletions packages/ember-ui/src/components/tpk-lazy-image.gts

This file was deleted.

3 changes: 0 additions & 3 deletions packages/ember-ui/src/template-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,13 @@ import type StackListItemComponent from './components/tpk-stack-list/item.gts';
import type TpkStackListContentComponent from './components/tpk-stack-list/content.gts';
import type TpkActionsMenuElementComponent from './components/tpk-actions-menu/element.gts';
import type TpkStackListTitleComponent from './components/tpk-stack-list/title.gts';
import type TpkLazyImageComponent from './components/tpk-lazy-image.gts';
import type TpkConfirmModalPrefabComponent from './components/prefabs/tpk-confirm-modal-prefab.gts';

export default interface Registry {
'tpk-actions-menu/element': typeof TpkActionsMenuElementComponent;
'tpk-stack-list/title': typeof TpkStackListTitleComponent;
'tpk-stack-list/content': typeof TpkStackListContentComponent;
'tpk-stack-list/item': typeof StackListItemComponent;
'tpk-lazy-image': typeof TpkLazyImageComponent;
TpkLazyImage: typeof TpkLazyImageComponent;
'TpkStackList::Item': typeof StackListItemComponent;
'tpk-stack-list/head': typeof TpkStackListHeadComponent;
'TpkStackList::Head': typeof TpkStackListHeadComponent;
Expand Down

0 comments on commit ebff5f0

Please sign in to comment.