@finema/core 2.52.3 → 2.52.4

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "2.52.3",
3
+ "version": "2.52.4",
4
4
  "configKey": "core",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
package/dist/module.mjs CHANGED
@@ -4,7 +4,7 @@ import * as lodash from 'lodash-es';
4
4
  import * as theme from '../dist/runtime/theme/index.js';
5
5
 
6
6
  const name = "@finema/core";
7
- const version = "2.52.3";
7
+ const version = "2.52.4";
8
8
 
9
9
  const nuxtAppOptions = {
10
10
  head: {
@@ -1,39 +1,49 @@
1
1
  <template>
2
2
  <div
3
- :class="theme.paginationContainer({
4
- class: [ui?.paginationContainer]
5
- })"
3
+ :class="
4
+ theme.paginationContainer({
5
+ class: [ui?.paginationContainer]
6
+ })
7
+ "
6
8
  >
7
9
  <div
8
- :class="theme.paginationInfoWrapper({
9
- class: [ui?.paginationInfoWrapper]
10
- })"
10
+ :class="
11
+ theme.paginationInfoWrapper({
12
+ class: [ui?.paginationInfoWrapper]
13
+ })
14
+ "
11
15
  >
12
16
  <USelect
13
17
  v-if="options.pageOptions && !options.isHideLimitSelect"
14
18
  size="lg"
15
19
  trailing="รายการ"
16
- :class="theme.paginationLimitSelect({
17
- class: [ui?.paginationLimitSelect, 'cursor-pointer']
18
- })"
20
+ :class="
21
+ theme.paginationLimitSelect({
22
+ class: [ui?.paginationLimitSelect, 'cursor-pointer']
23
+ })
24
+ "
19
25
  :items="pageLimitItems"
20
26
  :model-value="pageLimit"
21
27
  @update:modelValue="emits('pageLimitChange', $event)"
22
28
  >
23
29
  <template #default="{ modelValue }">
24
30
  <p
25
- :class="theme.paginationLimitSelectLabel({
26
- class: [ui?.paginationLimitSelectLabel]
27
- })"
31
+ :class="
32
+ theme.paginationLimitSelectLabel({
33
+ class: [ui?.paginationLimitSelectLabel]
34
+ })
35
+ "
28
36
  >
29
- {{ modelValue }} รายการ
37
+ {{ modelValue }} รายการ
30
38
  </p>
31
39
  </template>
32
40
  </USelect>
33
41
  <p
34
- :class="theme.paginationInfo({
35
- class: [ui?.paginationInfo, '']
36
- })"
42
+ :class="
43
+ theme.paginationInfo({
44
+ class: [ui?.paginationInfo, '']
45
+ })
46
+ "
37
47
  >
38
48
  <span v-if="options.pageOptions">{{ pageBetween }} จากทั้งหมด {{ totalCountWithComma }}</span>
39
49
  <span v-else>ทั้งหมด {{ options.rawData.length }} รายการ</span>
@@ -58,7 +68,11 @@
58
68
  </template>
59
69
 
60
70
  <script setup>
61
- import { computed, NumberHelper, useUiConfig } from "#imports";
71
+ import {
72
+ computed,
73
+ NumberHelper,
74
+ useUiConfig
75
+ } from "#imports";
62
76
  import UPagination from "#ui/components/Pagination";
63
77
  import USelect from "#ui/components/Select";
64
78
  import { tableTheme } from "../../theme/table";
@@ -75,12 +89,8 @@ const pageLimitItems = [
75
89
  value: 10
76
90
  },
77
91
  {
78
- label: "20",
79
- value: 20
80
- },
81
- {
82
- label: "30",
83
- value: 30
92
+ label: "25",
93
+ value: 25
84
94
  },
85
95
  {
86
96
  label: "50",
@@ -4,7 +4,7 @@ type __VLS_Props = {
4
4
  page: number;
5
5
  pageLimit: number;
6
6
  options: ITableOptions<any> & ISimpleTableOptions<any>;
7
- ui?: typeof tableTheme['slots'];
7
+ ui?: (typeof tableTheme)['slots'];
8
8
  };
9
9
  declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
10
10
  search: () => any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "2.52.3",
3
+ "version": "2.52.4",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",