-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(img-loader): pass attributes to img element (#111)
* Passthrough of class for image using imgAttributes * Passthrough of class attribute for _useImg * Build for deployment * Pass through attribute dictionary for _useImg * Attribute object definition * Updated include statement in index.ts, Readme documentation. * Updated include statements * Reverted .gitignore * Remove dist files from git repo * Return newline characters to html and css files * Reverting changes to html and css files * Revert tslint changes * @ihadeed requested changes
- Loading branch information
1 parent
a12a61c
commit 482f6b5
Showing
6 changed files
with
92 additions
and
34 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,4 @@ | ||
export interface ImageAttribute { | ||
element: string; | ||
value: string; | ||
} |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export * from './image-loader.module'; | ||
export * from './components/img-loader'; | ||
export * from './providers/image-loader-config'; | ||
export * from './components/image-attribute'; | ||
export * from './providers/image-loader'; |