-
Notifications
You must be signed in to change notification settings - Fork 16
Add a Type definition for uiType used in the text-editor #3293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Documentation has been published to https://lundalogik.github.io/lime-elements/versions/PR-3293/ |
src/components/text-editor/types.ts
Outdated
| node: CustomElementDefinition[]; | ||
| }; | ||
|
|
||
| export type EditorUiTypes = 'standard' | 'minimal'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Singular
| export type EditorUiTypes = 'standard' | 'minimal'; | |
| export type EditorUiType = 'standard' | 'minimal'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😄 Updated
e18c3f8 to
c65260e
Compare
| node: CustomElementDefinition[]; | ||
| }; | ||
|
|
||
| export type EditorUiType = 'standard' | 'minimal'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a missing release tag on this type
71ac81e to
6b070d1
Compare
|
🎉 This PR is included in version 37.66.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Fixes https://github.com/Lundalogik/crm-feature/issues/4455
May need separate PR's in both building blocks and lime-crm-components to then import and use the Type definition.