You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi and thanks for your awesome project, We have an Material Angular application which is use Material Theme for UI and we need to use image-cropping component from Alyle-UI .
We need to use it without any dependencies. How can we use this component without it's theme?
this.theme is an instance of LyTheme2 , and it imports STYLES to use css classes: readonly classes = this.theme.addStyleSheet(STYLES);
Hi, this component requires LyTheme2 to render the styles in the DOM (like those styles you just mentioned). What I could do is load an empty theme, since if only the cropper is going to be used.
e.g.
// Use this instead of MinimaLight,// with this you won't have to load all the themes for the componentsexportclassEmptyTheme{name='empty-theme';direction=Dir.ltr;}
Hi and thanks for your awesome project, We have an Material Angular application which is use Material Theme for UI and we need to use image-cropping component from Alyle-UI .
We need to use it without any dependencies. How can we use this component without it's theme?
this.theme
is an instance of LyTheme2 , and it importsSTYLES
to use css classes:readonly classes = this.theme.addStyleSheet(STYLES);
and here is the STYLES constant:
Thank you for your support
The text was updated successfully, but these errors were encountered: