Browse Source

refactor(gui-v2): export currencyUtils

pull/2963/head
Wing-Kam Wong 2 years ago
parent
commit
55a52216c5
  1. 2
      packages/nc-gui-v2/components/smartsheet-column/CurrencyOptions.vue
  2. 1
      packages/nc-gui-v2/utils/index.ts

2
packages/nc-gui-v2/components/smartsheet-column/CurrencyOptions.vue

@ -1,6 +1,6 @@
<script setup lang="ts">
import { useColumnCreateStoreOrThrow, useProject } from '#imports'
import { currencyCodes, currencyLocales, validateCurrencyCode, validateCurrencyLocale } from '@/utils/currencyUtils'
import { currencyCodes, currencyLocales, validateCurrencyCode, validateCurrencyLocale } from '@/utils'
interface Option {
label: string

1
packages/nc-gui-v2/utils/index.ts

@ -10,3 +10,4 @@ export * from './projectCreateUtils'
export * from './urlUtils'
export * from './validation'
export * from './viewUtils'
export * from './currencyUtils'

Loading…
Cancel
Save