@finema/core 1.4.62 → 1.4.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/Alert.vue +1 -1
- package/dist/runtime/components/Avatar.vue +1 -1
- package/dist/runtime/components/Badge.vue +1 -1
- package/dist/runtime/components/Breadcrumb.vue +1 -2
- package/dist/runtime/components/Button/Group.vue +4 -4
- package/dist/runtime/components/Button/index.vue +2 -3
- package/dist/runtime/components/Card.vue +1 -1
- package/dist/runtime/components/Dropdown/index.vue +1 -2
- package/dist/runtime/components/Form/FieldWrapper.vue +1 -1
- package/dist/runtime/components/Form/InputDateTime/index.vue +0 -1
- package/dist/runtime/components/SimplePagination.vue +2 -2
- package/dist/runtime/components/Tabs/index.vue +1 -1
- package/package.json +2 -2
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
<script lang="ts" setup>
|
|
8
8
|
import { type PropType } from 'vue'
|
|
9
|
-
import { type AlertColor, type AlertVariant, type Avatar, type Button } from '#ui/types'
|
|
10
9
|
import type { Strategy } from '#core/types/utils'
|
|
11
10
|
import { type alert } from '#ui/ui.config'
|
|
11
|
+
import type { AlertColor, AlertVariant, Avatar, Button } from '#ui/types'
|
|
12
12
|
|
|
13
13
|
defineProps({
|
|
14
14
|
title: {
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
|
|
15
15
|
<script setup lang="ts">
|
|
16
16
|
import { useUiConfig, type PropType, useUI, toRef } from '#imports'
|
|
17
|
-
import { type BadgeSize, type BadgeColor, type BadgeVariant } from '#ui/types'
|
|
18
17
|
import { badge } from '#core/ui.config'
|
|
19
18
|
import type { Strategy } from '#core/types/utils'
|
|
19
|
+
import type { BadgeColor, BadgeSize, BadgeVariant } from '#ui/types'
|
|
20
20
|
|
|
21
21
|
const config = useUiConfig<typeof badge>(badge, 'badge')
|
|
22
22
|
|
|
@@ -16,9 +16,8 @@
|
|
|
16
16
|
|
|
17
17
|
<script setup lang="ts">
|
|
18
18
|
import { useUiConfig, type PropType, useUI, toRef } from '#imports'
|
|
19
|
-
import { type BreadcrumbLink } from '#ui/types'
|
|
20
|
-
import type { Strategy } from '#core/types/utils'
|
|
21
19
|
import { breadcrumb } from '#core/ui.config'
|
|
20
|
+
import type { BreadcrumbLink, Strategy } from '#ui/types'
|
|
22
21
|
|
|
23
22
|
const config = useUiConfig<typeof breadcrumb>(breadcrumb, 'breadcrumb')
|
|
24
23
|
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
</template>
|
|
6
6
|
|
|
7
7
|
<script lang="ts" setup>
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import { type
|
|
11
|
-
import
|
|
8
|
+
import type { PropType } from 'vue'
|
|
9
|
+
import type { ButtonSize } from '#ui/types/button'
|
|
10
|
+
import { button, type buttonGroup } from '#ui/ui.config'
|
|
11
|
+
import type { Strategy } from '#ui/types'
|
|
12
12
|
|
|
13
13
|
defineProps({
|
|
14
14
|
size: {
|
|
@@ -7,11 +7,10 @@
|
|
|
7
7
|
</template>
|
|
8
8
|
|
|
9
9
|
<script lang="ts" setup>
|
|
10
|
-
import { type PropType } from '#imports'
|
|
11
|
-
import { type ButtonSize, type ButtonColor, type ButtonVariant } from '#ui/types/button'
|
|
12
|
-
import { type Strategy } from '#core/types/utils'
|
|
13
10
|
import { type button } from '#ui/ui.config'
|
|
14
11
|
import { UButton } from '#components'
|
|
12
|
+
import type { ButtonColor, ButtonSize, ButtonVariant } from '#ui/types/button'
|
|
13
|
+
import type { PropType } from 'vue'
|
|
15
14
|
|
|
16
15
|
defineProps({
|
|
17
16
|
...UButton.props,
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
|
|
15
15
|
<script setup lang="ts">
|
|
16
16
|
import { useUiConfig, type PropType, useUI, toRef } from '#imports'
|
|
17
|
-
import type { Strategy } from '#core/types/utils'
|
|
18
17
|
import { card } from '#core/ui.config'
|
|
18
|
+
import type { Strategy } from '#ui/types'
|
|
19
19
|
|
|
20
20
|
const config = useUiConfig<typeof card>(card, 'card')
|
|
21
21
|
|
|
@@ -19,10 +19,9 @@
|
|
|
19
19
|
|
|
20
20
|
<script lang="ts" setup>
|
|
21
21
|
import { type PropType, useUiConfig, useUI, toRef } from '#imports'
|
|
22
|
-
import { type DropdownItem } from '#ui/types'
|
|
23
|
-
import type { Strategy } from '#core/types/utils'
|
|
24
22
|
import { dropdown } from '#ui/ui.config'
|
|
25
23
|
import { DropdownPlacementArray, type DropdownPlacement } from './types'
|
|
24
|
+
import type { DropdownItem, Strategy } from '#ui/types'
|
|
26
25
|
|
|
27
26
|
const config = useUiConfig<typeof dropdown>(dropdown, 'dropdown')
|
|
28
27
|
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
<script lang="ts" setup>
|
|
26
26
|
import { useUiConfig } from '../composables/useConfig'
|
|
27
27
|
import { pagination } from '#core/ui.config'
|
|
28
|
-
import { type ButtonSize } from '#ui/types'
|
|
29
28
|
import { useUI, type PropType, toRef, computed } from '#imports'
|
|
30
|
-
import {
|
|
29
|
+
import type { ButtonSize } from '#ui/types/button'
|
|
30
|
+
import type { Strategy } from '#ui/types'
|
|
31
31
|
|
|
32
32
|
const config = useUiConfig<typeof pagination>(pagination, 'pagination')
|
|
33
33
|
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
|
|
22
22
|
<script setup lang="ts">
|
|
23
23
|
import { useUiConfig, type PropType, useUI, toRef } from '#imports'
|
|
24
|
-
import { type TabItem } from '#ui/types'
|
|
25
24
|
import type { Strategy } from '#core/types/utils'
|
|
26
25
|
import { tabs } from '#core/ui.config'
|
|
26
|
+
import type { TabItem } from '#ui/types'
|
|
27
27
|
|
|
28
28
|
const config = useUiConfig<typeof tabs>(tabs, 'tabs')
|
|
29
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finema/core",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.64",
|
|
4
4
|
"repository": "https://gitlab.finema.co/finema/ui-kit",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Finema Dev Core Team",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@pinia/nuxt": "^0.5.1",
|
|
39
39
|
"@vee-validate/nuxt": "^4.12.5",
|
|
40
40
|
"@vee-validate/zod": "^4.12.5",
|
|
41
|
-
"@vuepic/vue-datepicker": "^
|
|
41
|
+
"@vuepic/vue-datepicker": "^8.1.0",
|
|
42
42
|
"axios": "^1.6.7",
|
|
43
43
|
"date-fns": "^3.3.1",
|
|
44
44
|
"i18next": "^23.8.2",
|