Skip to content

Commit

Permalink
refactor(#285): props.ts -> make-props.ts
Browse files Browse the repository at this point in the history
Co-Authored-By: Carol Soliman <17387510+carsoli@users.noreply.github.com>
  • Loading branch information
FlorianWendelborn and carsoli committed Sep 24, 2021
1 parent 29217ca commit 1e70461
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-banner/KtBanner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { computed, defineComponent, ref } from '@vue/composition-api'
import { KtButton } from '../kotti-button'
import { useTranslationNamespace } from '../kotti-translation/hooks'
import { makeProps } from '../props'
import { makeProps } from '../make-props'
import { KottiBanner } from './types'
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-breadcrumb/KtBreadcrumb.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<script lang="ts">
import { defineComponent } from '@vue/composition-api'
import { makeProps } from '../props'
import { makeProps } from '../make-props'
import { KottiBreadcrumb } from './types'
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-button/KtButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<script lang="ts">
import { computed, defineComponent } from '@vue/composition-api'
import { makeProps } from '../props'
import { makeProps } from '../make-props'
import { KottiButton } from './types'
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-line/KtLine.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<script lang="ts">
import { defineComponent } from '@vue/composition-api'
import { makeProps } from '../props'
import { makeProps } from '../make-props'
import { KottiLine } from './types'
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-navbar/KtNavbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
import { computed, defineComponent, provide, ref } from '@vue/composition-api'
import { mixin as clickaway } from 'vue-clickaway'
import { makeProps } from '../props'
import { makeProps } from '../make-props'
import NavbarLogo from './components/NavbarLogo.vue'
import NavbarMenu from './components/NavbarMenu.vue'
Expand Down
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-user-menu/KtUserMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ import { mixin as clickaway } from 'vue-clickaway'
import { KtAvatar } from '../kotti-avatar'
import { IS_NAVBAR_NARROW } from '../kotti-navbar/constants'
import { makeProps } from '../props'
import { makeProps } from '../make-props'
import { Kotti } from '../types'
import { KottiUserMenu } from './types'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { PropOptions } from '@vue/composition-api'
import { z } from 'zod'

import { makeProps } from './props'
import { makeProps } from './make-props'
import { silenceConsole } from './test-utils/silence-console'

const expectDefault = (
Expand Down
File renamed without changes.

0 comments on commit 1e70461

Please sign in to comment.