diff --git a/packages/kotti-ui/source/kotti-button-group/KtButtonGroup.vue b/packages/kotti-ui/source/kotti-button-group/KtButtonGroup.vue index 0a04c0bb80..3fb4072db0 100755 --- a/packages/kotti-ui/source/kotti-button-group/KtButtonGroup.vue +++ b/packages/kotti-ui/source/kotti-button-group/KtButtonGroup.vue @@ -1,49 +1,36 @@ - diff --git a/packages/kotti-ui/source/kotti-button-group/index.ts b/packages/kotti-ui/source/kotti-button-group/index.ts index efbfce927e..b6d8561c78 100755 --- a/packages/kotti-ui/source/kotti-button-group/index.ts +++ b/packages/kotti-ui/source/kotti-button-group/index.ts @@ -9,5 +9,7 @@ export const KtButtonGroup = attachMeta(makeInstallable(KtButtonGroupVue), { slots: { default: { description: 'Should contain KtButtons', scope: null }, }, - typeScript: null, + typeScript: { + namespace: 'Kotti.ButtonGroup', + }, }) diff --git a/packages/kotti-ui/source/kotti-button-group/types.ts b/packages/kotti-ui/source/kotti-button-group/types.ts new file mode 100644 index 0000000000..d1d377678e --- /dev/null +++ b/packages/kotti-ui/source/kotti-button-group/types.ts @@ -0,0 +1,7 @@ +import { SpecifyRequiredProps } from '../types/utilities' + +export namespace KottiButtonGroup { + export type PropsInternal = {} + + export type Props = SpecifyRequiredProps +} diff --git a/packages/kotti-ui/source/kotti-comment/KtComment.vue b/packages/kotti-ui/source/kotti-comment/KtComment.vue index cfc6474867..e2baf1ff8b 100644 --- a/packages/kotti-ui/source/kotti-comment/KtComment.vue +++ b/packages/kotti-ui/source/kotti-comment/KtComment.vue @@ -18,7 +18,7 @@ v-model="inlineMessageValue" class="comment-inline-edit-input form-input" > - + diff --git a/packages/kotti-ui/source/kotti-comment/components/CommentReply.vue b/packages/kotti-ui/source/kotti-comment/components/CommentReply.vue index 2201e34771..9d9eafb729 100644 --- a/packages/kotti-ui/source/kotti-comment/components/CommentReply.vue +++ b/packages/kotti-ui/source/kotti-comment/components/CommentReply.vue @@ -28,7 +28,7 @@ v-model="inlineMessageValue" class="comment-inline-edit-input form-input" > - + diff --git a/packages/kotti-ui/source/types/kotti.ts b/packages/kotti-ui/source/types/kotti.ts index 8797a54238..d040fffba8 100644 --- a/packages/kotti-ui/source/types/kotti.ts +++ b/packages/kotti-ui/source/types/kotti.ts @@ -3,6 +3,7 @@ export { KottiAvatarGroup as AvatarGroup } from '../kotti-avatar-group/types' export { KottiBanner as Banner } from '../kotti-banner/types' export { KottiBreadcrumb as Breadcrumb } from '../kotti-breadcrumb/types' export { KottiButton as Button } from '../kotti-button/types' +export { KottiButtonGroup as ButtonGroup } from '../kotti-button-group/types' export { KottiCol as Col } from '../kotti-col/types' export { KottiField as Field } from '../kotti-field/types' export { KottiFieldNumber as FieldNumber } from '../kotti-field-number/types'