-
Notifications
You must be signed in to change notification settings - Fork 13
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
Add a Type definition for uiType used in the text-editor #3293
base: main
Are you sure you want to change the base?
Conversation
Documentation has been published to https://lundalogik.github.io/lime-elements/versions/PR-3293/ |
src/components/text-editor/types.ts
Outdated
@@ -7,3 +7,5 @@ import { CustomElementDefinition } from '../../global/shared-types/custom-elemen | |||
export type TextEditorPlugin = { | |||
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
@@ -7,3 +7,5 @@ import { CustomElementDefinition } from '../../global/shared-types/custom-elemen | |||
export type TextEditorPlugin = { | |||
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
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.