@finema/core 3.3.0 → 3.4.0

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": "3.3.0",
3
+ "version": "3.4.0",
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 = "3.3.0";
7
+ const version = "3.4.0";
8
8
 
9
9
  const nuxtAppOptions = {
10
10
  head: {
@@ -28,6 +28,7 @@ import FormInputNumber from "./InputNumber/index.vue";
28
28
  import FormInputCurrency from "./InputCurrency/index.vue";
29
29
  import FormInputToggle from "./InputToggle/index.vue";
30
30
  import FormInputCheckbox from "./InputCheckbox/index.vue";
31
+ import FormInputCheckboxGroup from "./InputCheckboxGroup/index.vue";
31
32
  import FormInputSelect from "./InputSelect/index.vue";
32
33
  import FormInputSelectMultiple from "./InputSelectMultiple/index.vue";
33
34
  import FormInputComponent from "./InputComponent/index.vue";
@@ -73,6 +74,10 @@ const componentMap = {
73
74
  component: FormInputCheckbox,
74
75
  props: {}
75
76
  },
77
+ [INPUT_TYPES.CHECKBOX_GROUP]: {
78
+ component: FormInputCheckboxGroup,
79
+ props: {}
80
+ },
76
81
  [INPUT_TYPES.SELECT]: {
77
82
  component: FormInputSelect,
78
83
  props: {}
@@ -0,0 +1,8 @@
1
+ import type { ICheckboxGroupFieldProps } from '#core/components/Form/InputCheckboxGroup/types';
2
+ declare const __VLS_export: import("vue").DefineComponent<ICheckboxGroupFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
+ change: (...args: any[]) => void;
4
+ }, string, import("vue").PublicProps, Readonly<ICheckboxGroupFieldProps> & Readonly<{
5
+ onChange?: ((...args: any[]) => any) | undefined;
6
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
@@ -0,0 +1,59 @@
1
+ <template>
2
+ <FieldWrapper
3
+ v-bind="wrapperProps"
4
+ label=""
5
+ description=""
6
+ >
7
+ <CheckboxGroup
8
+ :model-value="value"
9
+ :disabled="wrapperProps.disabled"
10
+ :name="name"
11
+ :label="label"
12
+ :items="options"
13
+ :description="description"
14
+ :required="required"
15
+ :variant="variant"
16
+ :indicator="indicator"
17
+ :value-key="valueKey"
18
+ :orientation="orientation"
19
+ :ui="ui"
20
+ @update:model-value="onChange"
21
+ />
22
+ </FieldWrapper>
23
+ </template>
24
+
25
+ <script setup>
26
+ import { useFieldHOC } from "#core/composables/useForm";
27
+ import FieldWrapper from "#core/components/Form/FieldWrapper.vue";
28
+ const emits = defineEmits(["change"]);
29
+ const props = defineProps({
30
+ label: { type: String, required: false },
31
+ description: { type: String, required: false },
32
+ variant: { type: String, required: false },
33
+ orientation: { type: String, required: false },
34
+ indicator: { type: String, required: false },
35
+ options: { type: Array, required: true },
36
+ valueKey: { type: String, required: false },
37
+ form: { type: Object, required: false },
38
+ name: { type: String, required: true },
39
+ errorMessage: { type: String, required: false },
40
+ hint: { type: String, required: false },
41
+ rules: { type: null, required: false },
42
+ autoFocus: { type: Boolean, required: false },
43
+ placeholder: { type: String, required: false },
44
+ disabled: { type: Boolean, required: false },
45
+ readonly: { type: Boolean, required: false },
46
+ required: { type: Boolean, required: false },
47
+ help: { type: String, required: false },
48
+ ui: { type: null, required: false }
49
+ });
50
+ const {
51
+ value,
52
+ wrapperProps,
53
+ handleChange
54
+ } = useFieldHOC(props);
55
+ const onChange = (value2) => {
56
+ handleChange(value2);
57
+ emits("change", value2);
58
+ };
59
+ </script>
@@ -0,0 +1,8 @@
1
+ import type { ICheckboxGroupFieldProps } from '#core/components/Form/InputCheckboxGroup/types';
2
+ declare const __VLS_export: import("vue").DefineComponent<ICheckboxGroupFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
+ change: (...args: any[]) => void;
4
+ }, string, import("vue").PublicProps, Readonly<ICheckboxGroupFieldProps> & Readonly<{
5
+ onChange?: ((...args: any[]) => any) | undefined;
6
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ declare const _default: typeof __VLS_export;
8
+ export default _default;
@@ -0,0 +1,21 @@
1
+ import type { IFieldProps, IFormFieldBase, INPUT_TYPES } from '#core/components/Form/types';
2
+ import type { IOption } from '#core/types/common';
3
+ export type CheckboxOption = IOption & {
4
+ label?: string;
5
+ value?: any;
6
+ description?: string;
7
+ disabled?: boolean;
8
+ class?: any;
9
+ };
10
+ export interface ICheckboxGroupFieldProps extends IFieldProps {
11
+ label?: string;
12
+ description?: string;
13
+ variant?: 'list' | 'card' | 'table';
14
+ orientation?: 'horizontal' | 'vertical';
15
+ indicator?: 'start' | 'end' | 'hidden';
16
+ options: CheckboxOption[];
17
+ valueKey?: string;
18
+ }
19
+ export type ICheckboxGroupField = IFormFieldBase<INPUT_TYPES.CHECKBOX_GROUP, ICheckboxGroupFieldProps, {
20
+ change?: (value: any) => void;
21
+ }>;
@@ -13,6 +13,7 @@
13
13
  :max-date="maxDate"
14
14
  :min-time="minTime"
15
15
  :max-time="maxTime"
16
+ :six-weeks="true"
16
17
  :start-time="startTime"
17
18
  :teleport="teleport"
18
19
  :required="required"
@@ -15,6 +15,7 @@
15
15
  :max-date="maxDate"
16
16
  :min-time="minTime"
17
17
  :max-time="maxTime"
18
+ :six-weeks="true"
18
19
  :start-time="startTime"
19
20
  :multi-calendars="!isDisabledMultiCalendar"
20
21
  :required="required"
@@ -17,7 +17,15 @@
17
17
  @update:modelValue="onChange"
18
18
  @update:searchTerm="onSearch"
19
19
  >
20
- <template #default="{ modelValue }">
20
+ <template #default="{ modelValue, ui: selectMenuUi }">
21
+ <Chip
22
+ v-if="options.find((item) => item.value === modelValue)?.chip"
23
+ v-bind="options.find((item) => item.value === modelValue)?.chip"
24
+ inset
25
+ standalone
26
+ :size="selectMenuUi.itemLeadingChipSize()"
27
+ :class="selectMenuUi.itemLeadingChip()"
28
+ />
21
29
  <div
22
30
  v-if="value"
23
31
  :class="theme.selectedWrapper({
@@ -17,7 +17,7 @@
17
17
  @update:model-value="onChange"
18
18
  @update:searchTerm="onSearch"
19
19
  >
20
- <template #default="{ modelValue }">
20
+ <template #default="{ modelValue, ui: selectMenuUi }">
21
21
  <div
22
22
  v-if="!ArrayHelper.isEmpty(value)"
23
23
  :class="theme.tagsWrapper({
@@ -31,6 +31,25 @@
31
31
  class: [ui?.tagsItem]
32
32
  })"
33
33
  >
34
+ <Chip
35
+ v-if="options.find((item) => item.value === _value)?.chip"
36
+ v-bind="options.find((item) => item.value === _value)?.chip"
37
+ inset
38
+ standalone
39
+ :size="selectMenuUi.itemLeadingChipSize()"
40
+ class="p-1"
41
+ />
42
+ <Icon
43
+ v-if="options.find((item) => item.value === _value)?.icon"
44
+ :name="options.find((item) => item.value === _value)?.icon"
45
+ class="size-4"
46
+ />
47
+ <Avatar
48
+ v-if="options.find((item) => item.value === _value)?.avatar"
49
+ v-bind="options.find((item) => item.value === _value)?.avatar"
50
+ :class="selectMenuUi.itemLeadingAvatar()"
51
+ size="2xs"
52
+ />
34
53
  <div
35
54
  :class="theme.tagsItemText({
36
55
  class: [ui?.tagsItemText]
@@ -2,10 +2,12 @@ import type { ITagsFieldProps } from '#core/components/Form/InputTags/types';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ITagsFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
3
  add: (...args: any[]) => void;
4
4
  change: (...args: any[]) => void;
5
+ selected: (...args: any[]) => void;
5
6
  remove: (...args: any[]) => void;
6
7
  }, string, import("vue").PublicProps, Readonly<ITagsFieldProps> & Readonly<{
7
8
  onAdd?: ((...args: any[]) => any) | undefined;
8
9
  onChange?: ((...args: any[]) => any) | undefined;
10
+ onSelected?: ((...args: any[]) => any) | undefined;
9
11
  onRemove?: ((...args: any[]) => any) | undefined;
10
12
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
13
  declare const _default: typeof __VLS_export;
@@ -1,43 +1,82 @@
1
1
  <template>
2
2
  <FieldWrapper v-bind="wrapperProps">
3
- <InputTags
4
- :model-value="value"
5
- :disabled="wrapperProps.disabled"
6
- :leading-icon="leadingIcon"
7
- :max-length="maxLength"
8
- :varant="variant"
9
- :delete-icon="deleteIcon"
10
- :size="size"
11
- :trailing-icon="trailingIcon"
12
- :loading="loading"
13
- :loading-icon="loadingIcon"
14
- :name="name"
15
- :placeholder="wrapperProps.placeholder"
16
- :autofocus="!!autoFocus"
17
- :icon="icon"
18
- :readonly="readonly"
19
- :ui="ui"
20
- @update:model-value="onChange"
21
- @addTag="onAdd"
22
- @removeTag="onRemove"
23
- />
3
+ <Popover
4
+ v-model:open="showSuggestions"
5
+ :dismissible="false"
6
+ :ui="{ content: 'w-(--reka-popper-anchor-width)' }"
7
+ >
8
+ <template #anchor>
9
+ <InputTags
10
+ :model-value="value"
11
+ :disabled="wrapperProps.disabled"
12
+ :leading-icon="leadingIcon"
13
+ :max-length="maxLength"
14
+ :variant="variant"
15
+ :delete-icon="deleteIcon"
16
+ :size="size"
17
+ :trailing-icon="trailingIcon"
18
+ :loading="loading"
19
+ :loading-icon="loadingIcon"
20
+ :name="name"
21
+ :placeholder="wrapperProps.placeholder"
22
+ :autofocus="!!autoFocus"
23
+ :icon="icon"
24
+ :readonly="readonly"
25
+ :ui="ui"
26
+ @update:model-value="onChange"
27
+ @addTag="onAdd"
28
+ @removeTag="onRemove"
29
+ @focus="onFocus"
30
+ @blur="onBlur"
31
+ @keydown="onKeydown"
32
+ @input="onInput"
33
+ />
34
+ </template>
35
+
36
+ <template #content>
37
+ <div
38
+ v-if="showSuggestions && filteredSuggestions.length > 0"
39
+ ref="suggestionsContainerRef"
40
+ :class="theme.suggestionsContainer()"
41
+ >
42
+ <div
43
+ v-for="(suggestion, index) in filteredSuggestions"
44
+ :key="suggestion"
45
+ :ref="(el) => setSuggestionItemRef(el, index)"
46
+ :class="[
47
+ theme.suggestionItem(),
48
+ {
49
+ [theme.suggestionItemActive()]: index === selectedSuggestionIndex
50
+ }
51
+ ]"
52
+ @mousedown.prevent="selectSuggestion(suggestion, index)"
53
+ @mouseenter="selectedSuggestionIndex = index"
54
+ >
55
+ {{ suggestion }}
56
+ </div>
57
+ </div>
58
+ </template>
59
+ </Popover>
24
60
  </FieldWrapper>
25
61
  </template>
26
62
 
27
63
  <script setup>
28
64
  import { useFieldHOC } from "#core/composables/useForm";
29
65
  import FieldWrapper from "#core/components/Form/FieldWrapper.vue";
30
- const emits = defineEmits(["change", "add", "remove"]);
66
+ import { ref, computed, nextTick, useUiConfig } from "#imports";
67
+ import { inputTheme } from "#core/theme/input";
68
+ const emits = defineEmits(["change", "add", "remove", "selected"]);
31
69
  const props = defineProps({
32
70
  leadingIcon: { type: null, required: false },
33
71
  trailingIcon: { type: null, required: false },
34
72
  loading: { type: Boolean, required: false },
35
73
  loadingIcon: { type: null, required: false },
36
74
  icon: { type: String, required: false },
37
- maxLength: { type: String, required: false },
75
+ maxLength: { type: Number, required: false },
38
76
  variant: { type: String, required: false },
39
77
  size: { type: String, required: false },
40
78
  deleteIcon: { type: String, required: false },
79
+ suggestions: { type: Array, required: false },
41
80
  form: { type: Object, required: false },
42
81
  name: { type: String, required: true },
43
82
  errorMessage: { type: String, required: false },
@@ -53,11 +92,18 @@ const props = defineProps({
53
92
  help: { type: String, required: false },
54
93
  ui: { type: null, required: false }
55
94
  });
95
+ const theme = computed(() => useUiConfig(inputTheme, "input")());
56
96
  const {
57
97
  value,
58
98
  wrapperProps,
59
99
  handleChange
60
100
  } = useFieldHOC(props);
101
+ const showSuggestions = ref(false);
102
+ const selectedSuggestionIndex = ref(-1);
103
+ const suggestionsContainerRef = ref();
104
+ const suggestionItemRefs = ref([]);
105
+ const inputRef = ref();
106
+ const currentInput = ref("");
61
107
  const onChange = (value2) => {
62
108
  handleChange(value2);
63
109
  emits("change", value2);
@@ -68,4 +114,112 @@ const onAdd = (value2) => {
68
114
  const onRemove = (value2) => {
69
115
  emits("remove", value2);
70
116
  };
117
+ const onInput = (event) => {
118
+ const target = event.target;
119
+ currentInput.value = target.value.toLowerCase();
120
+ };
121
+ const setSuggestionItemRef = (el, index) => {
122
+ if (suggestionItemRefs.value) {
123
+ suggestionItemRefs.value[index] = el;
124
+ }
125
+ };
126
+ const filteredSuggestions = computed(() => {
127
+ if (!props.suggestions) return [];
128
+ const inputVal = currentInput.value?.trim().toLowerCase() || "";
129
+ if (!inputVal) {
130
+ return props.suggestions.filter((s) => !value.value?.includes(s));
131
+ }
132
+ return props.suggestions.filter(
133
+ (suggestion) => suggestion.toLowerCase().includes(inputVal) && !value.value?.includes(suggestion)
134
+ );
135
+ });
136
+ const onFocus = () => {
137
+ if (props.suggestions && props.suggestions.length > 0) {
138
+ showSuggestions.value = true;
139
+ selectedSuggestionIndex.value = -1;
140
+ }
141
+ };
142
+ const onBlur = (event) => {
143
+ setTimeout(() => {
144
+ showSuggestions.value = false;
145
+ selectedSuggestionIndex.value = -1;
146
+ }, 150);
147
+ };
148
+ const onKeydown = (event) => {
149
+ if (!showSuggestions.value || filteredSuggestions.value.length === 0) {
150
+ return;
151
+ }
152
+ switch (event.key) {
153
+ case "ArrowDown":
154
+ event.preventDefault();
155
+ selectedSuggestionIndex.value = selectedSuggestionIndex.value < filteredSuggestions.value.length - 1 ? selectedSuggestionIndex.value + 1 : 0;
156
+ scrollToSelectedSuggestion();
157
+ break;
158
+ case "ArrowUp":
159
+ event.preventDefault();
160
+ selectedSuggestionIndex.value = selectedSuggestionIndex.value > 0 ? selectedSuggestionIndex.value - 1 : filteredSuggestions.value.length - 1;
161
+ scrollToSelectedSuggestion();
162
+ break;
163
+ case "Enter":
164
+ if (selectedSuggestionIndex.value === -1) {
165
+ return;
166
+ }
167
+ event.preventDefault();
168
+ if (selectedSuggestionIndex.value >= 0) {
169
+ const suggestion = filteredSuggestions.value[selectedSuggestionIndex.value];
170
+ if (suggestion) {
171
+ selectSuggestion(suggestion, selectedSuggestionIndex.value);
172
+ }
173
+ }
174
+ break;
175
+ case "Escape":
176
+ showSuggestions.value = false;
177
+ selectedSuggestionIndex.value = -1;
178
+ break;
179
+ }
180
+ };
181
+ const selectSuggestion = (suggestion, index) => {
182
+ if (index !== void 0) {
183
+ scrollToSuggestionByIndex(index);
184
+ }
185
+ const newValue = [...value.value || [], suggestion];
186
+ handleChange(newValue);
187
+ emits("selected", suggestion);
188
+ emits("change", newValue);
189
+ showSuggestions.value = false;
190
+ selectedSuggestionIndex.value = -1;
191
+ currentInput.value = "";
192
+ nextTick(() => {
193
+ if (inputRef.value) {
194
+ inputRef.value.$el.querySelector("input")?.focus();
195
+ }
196
+ });
197
+ };
198
+ const scrollToSelectedSuggestion = () => {
199
+ nextTick(() => {
200
+ if (selectedSuggestionIndex.value >= 0) {
201
+ scrollToSuggestionByIndex(selectedSuggestionIndex.value);
202
+ }
203
+ });
204
+ };
205
+ const scrollToSuggestionByIndex = (index) => {
206
+ if (!suggestionsContainerRef.value || !suggestionItemRefs.value[index]) {
207
+ return;
208
+ }
209
+ const container = suggestionsContainerRef.value;
210
+ const item = suggestionItemRefs.value[index];
211
+ if (item) {
212
+ const containerRect = container.getBoundingClientRect();
213
+ const itemRect = item.getBoundingClientRect();
214
+ const isAboveView = itemRect.top < containerRect.top;
215
+ const isBelowView = itemRect.bottom > containerRect.bottom;
216
+ if (isAboveView || isBelowView) {
217
+ item.scrollIntoView({
218
+ behavior: "smooth",
219
+ block: "nearest",
220
+ inline: "nearest"
221
+ });
222
+ }
223
+ }
224
+ };
71
225
  </script>
@@ -2,10 +2,12 @@ import type { ITagsFieldProps } from '#core/components/Form/InputTags/types';
2
2
  declare const __VLS_export: import("vue").DefineComponent<ITagsFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
3
  add: (...args: any[]) => void;
4
4
  change: (...args: any[]) => void;
5
+ selected: (...args: any[]) => void;
5
6
  remove: (...args: any[]) => void;
6
7
  }, string, import("vue").PublicProps, Readonly<ITagsFieldProps> & Readonly<{
7
8
  onAdd?: ((...args: any[]) => any) | undefined;
8
9
  onChange?: ((...args: any[]) => any) | undefined;
10
+ onSelected?: ((...args: any[]) => any) | undefined;
9
11
  onRemove?: ((...args: any[]) => any) | undefined;
10
12
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
13
  declare const _default: typeof __VLS_export;
@@ -5,13 +5,15 @@ export interface ITagsFieldProps extends IFieldProps {
5
5
  loading?: boolean;
6
6
  loadingIcon?: any;
7
7
  icon?: string;
8
- maxLength?: string;
9
- variant?: string;
10
- size?: string;
8
+ maxLength?: number;
9
+ variant?: 'outline' | 'soft' | 'subtle' | 'ghost' | 'none';
10
+ size?: 'xl' | 'xs' | 'sm' | 'md' | 'lg';
11
11
  deleteIcon?: string;
12
+ suggestions?: string[];
12
13
  }
13
14
  export type ITagsField = IFormFieldBase<INPUT_TYPES.TAGS, ITagsFieldProps, {
14
15
  change?: (value: string[]) => void;
15
16
  add?: (value: string) => void;
16
17
  remove?: (value: string) => void;
18
+ selected?: (value: string) => void;
17
19
  }>;
@@ -21,6 +21,7 @@ import type { IWYSIWYGField } from '#core/components/Form/InputWYSIWYG/types';
21
21
  import type { IComponentField } from '#core/components/Form/InputComponent/types';
22
22
  import type { ITagsField } from '#core/components/Form/InputTags/types';
23
23
  import type { ICurrencyField } from '#core/components/Form/InputCurrency/types';
24
+ import type { ICheckboxGroupField } from '#core/components/Form/InputCheckboxGroup/types';
24
25
  export declare enum INPUT_TYPES {
25
26
  TEXT = "TEXT",
26
27
  SEARCH = "SEARCH",
@@ -36,6 +37,7 @@ export declare enum INPUT_TYPES {
36
37
  SELECT_MULTIPLE = "SELECT_MULTIPLE",
37
38
  RADIO = "RADIO",
38
39
  CHECKBOX = "CHECKBOX",
40
+ CHECKBOX_GROUP = "CHECKBOX_GROUP",
39
41
  DATE_TIME = "DATE_TIME",
40
42
  TIME = "TIME",
41
43
  DATE = "DATE",
@@ -77,7 +79,7 @@ export interface IFormFieldBase<I extends INPUT_TYPES, P extends IFieldProps, O>
77
79
  props: P;
78
80
  on?: O;
79
81
  }
80
- export type IFormField = ITextField | ISearchField | INumberField | ICurrencyField | ITextareaField | IToggleField | ISelectField | ICheckboxField | ISelectMultipleField | IRadioField | IDateTimeField | ITimeField | IMonthField | IDateTimeRangeField | IUploadDropzoneField | IUploadDropzoneAutoField | IUploadDropzoneAutoMultipleField | IUploadImageAutoField | IWYSIWYGField | IComponentField | ITagsField | IFormFieldBase<INPUT_TYPES.COMPONENT, any, any>;
82
+ export type IFormField = ITextField | ISearchField | INumberField | ICurrencyField | ITextareaField | IToggleField | ISelectField | ICheckboxField | ICheckboxGroupField | ISelectMultipleField | IRadioField | IDateTimeField | ITimeField | IMonthField | IDateTimeRangeField | IUploadDropzoneField | IUploadDropzoneAutoField | IUploadDropzoneAutoMultipleField | IUploadImageAutoField | IWYSIWYGField | IComponentField | ITagsField | IFormFieldBase<INPUT_TYPES.COMPONENT, any, any>;
81
83
  export interface IFileValue {
82
84
  url: string;
83
85
  path?: string;
@@ -13,6 +13,7 @@ export var INPUT_TYPES = /* @__PURE__ */ ((INPUT_TYPES2) => {
13
13
  INPUT_TYPES2["SELECT_MULTIPLE"] = "SELECT_MULTIPLE";
14
14
  INPUT_TYPES2["RADIO"] = "RADIO";
15
15
  INPUT_TYPES2["CHECKBOX"] = "CHECKBOX";
16
+ INPUT_TYPES2["CHECKBOX_GROUP"] = "CHECKBOX_GROUP";
16
17
  INPUT_TYPES2["DATE_TIME"] = "DATE_TIME";
17
18
  INPUT_TYPES2["TIME"] = "TIME";
18
19
  INPUT_TYPES2["DATE"] = "DATE";
@@ -2,7 +2,11 @@ import type { TableColumn } from '@nuxt/ui';
2
2
  type __VLS_Props = {
3
3
  value: any;
4
4
  row: any;
5
- column: TableColumn<any>;
5
+ column: TableColumn<any> & {
6
+ meta: {
7
+ max: number;
8
+ };
9
+ };
6
10
  };
7
11
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
12
  declare const _default: typeof __VLS_export;
@@ -2,7 +2,11 @@ import type { TableColumn } from '@nuxt/ui';
2
2
  type __VLS_Props = {
3
3
  value: any;
4
4
  row: any;
5
- column: TableColumn<any>;
5
+ column: TableColumn<any> & {
6
+ meta: {
7
+ max: number;
8
+ };
9
+ };
6
10
  };
7
11
  declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
8
12
  declare const _default: typeof __VLS_export;
@@ -1 +1 @@
1
- @import "tailwindcss";@import "@nuxt/ui";@plugin "@tailwindcss/typography";@source inline("prose");@theme{--font-sans:"Noto Sans Thai","Noto Sans Thai Looped","Public Sans",sans-serif;--font-display:"Noto Sans Thai","Noto Sans Thai Looped","Public Sans",sans-serif}:root{--ui-text:var(--ui-color-neutral-800);--color-main:#1570ef;--color-main-50:#ebeeff;--color-main-100:#d1e9ff;--color-main-200:#b2ddff;--color-main-300:#84caff;--color-main-400:#53b1fd;--color-main-500:#1570ef;--color-main-600:#1570ef;--color-main-700:#175cd3;--color-main-800:#1849a9;--color-main-900:#194185;--color-main-950:#102a56;--color-warning:#f79009;--color-warning-50:#fffaeb;--color-warning-100:#fef0c7;--color-warning-200:#fedf89;--color-warning-300:#fec84b;--color-warning-400:#fdb022;--color-warning-500:#f79009;--color-warning-600:#dc6803;--color-warning-700:#b54708;--color-warning-800:#93370d;--color-warning-900:#7a2e0e;--color-warning-950:#4e1d09;--color-success:#17b26a;--color-success-50:#ecfdf3;--color-success-100:#dcfae6;--color-success-200:#abefc6;--color-success-300:#75e0a7;--color-success-400:#47cd89;--color-success-500:#17b26a;--color-success-600:#079455;--color-success-700:#067647;--color-success-800:#085d3a;--color-success-900:#074d31;--color-success-950:#053321;--color-error:#e11d48;--color-error-50:#fef2f2;--color-error-100:#fee2e2;--color-error-200:#f0899f;--color-error-300:#eb6582;--color-error-400:#e64065;--color-error-500:#e11d48;--color-error-600:#af1738;--color-error-700:#7e1028;--color-error-800:#4c0a18;--color-error-900:#1a0308;--color-error-950:#010000;--color-info:#2563eb;--color-info-50:#dde9ff;--color-info-100:#c8dfff;--color-info-200:#a1c4ff;--color-info-300:#7aa9ff;--color-info-400:#538eff;--color-info-500:#2563eb;--color-info-600:#1a4aaf;--color-info-700:#0f318a;--color-info-800:#081f65;--color-info-900:#020b3a;--color-info-950:#000;--color-white:#fff;--color-white-50:#fff;--color-white-100:#fff;--color-white-200:#fff;--color-white-300:#fff;--color-white-400:#fff;--color-white-500:#fff;--color-white-600:#e3e3e3;--color-white-700:#c7c7c7;--color-white-800:#ababab;--color-white-900:#8f8f8f;--color-white-950:#818181}html{@apply text-sm lg:text-base;font-family:Noto Sans Thai,Noto Sans Thai Looped,Public Sans,sans-serif}::-webkit-scrollbar{-webkit-appearance:none;height:10px;width:10px}::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border-radius:4px;box-shadow:0 0 1px hsla(0,0%,100%,.5)}:root{--dp-font-family:inherit!important}.dp__theme_light{--dp-primary-color:var(--color-main)!important;--dp-primary-disabled-color:var(--color-main-200)!important}.dp__outer_menu_wrap{@apply ring-1 ring-gray-200}[role=dialog]{pointer-events:auto!important}#__nuxt,body,html{@apply w-full h-full}.dp__main{display:block!important}.dp__menu{border:none!important}.dp__pointer{height:44px!important}.dp__outer_menu_wrap{box-shadow:none!important}.dp--menu-wrapper{@apply ring-1 ring-slate-300}
1
+ @import "tailwindcss";@import "@nuxt/ui";@plugin "@tailwindcss/typography";@source inline("prose");@theme{--font-sans:"Noto Sans Thai","Noto Sans Thai Looped","Public Sans",sans-serif;--font-display:"Noto Sans Thai","Noto Sans Thai Looped","Public Sans",sans-serif}:root{--ui-text:var(--ui-color-neutral-800);--color-main:#1570ef;--color-main-50:#eff8ff;--color-main-100:#d1e9ff;--color-main-200:#b2ddff;--color-main-300:#84caff;--color-main-400:#53b1fd;--color-main-500:#1570ef;--color-main-600:#1570ef;--color-main-700:#175cd3;--color-main-800:#1849a9;--color-main-900:#194185;--color-main-950:#102a56;--color-warning:#f79009;--color-warning-50:#fffaeb;--color-warning-100:#fef0c7;--color-warning-200:#fedf89;--color-warning-300:#fec84b;--color-warning-400:#fdb022;--color-warning-500:#f79009;--color-warning-600:#dc6803;--color-warning-700:#b54708;--color-warning-800:#93370d;--color-warning-900:#7a2e0e;--color-warning-950:#4e1d09;--color-success:#17b26a;--color-success-50:#ecfdf3;--color-success-100:#dcfae6;--color-success-200:#abefc6;--color-success-300:#75e0a7;--color-success-400:#47cd89;--color-success-500:#17b26a;--color-success-600:#079455;--color-success-700:#067647;--color-success-800:#085d3a;--color-success-900:#074d31;--color-success-950:#053321;--color-error:#e11d48;--color-error-50:#fef2f2;--color-error-100:#fee2e2;--color-error-200:#f0899f;--color-error-300:#eb6582;--color-error-400:#e64065;--color-error-500:#e11d48;--color-error-600:#af1738;--color-error-700:#7e1028;--color-error-800:#4c0a18;--color-error-900:#1a0308;--color-error-950:#010000;--color-info:#2563eb;--color-info-50:#dde9ff;--color-info-100:#c8dfff;--color-info-200:#a1c4ff;--color-info-300:#7aa9ff;--color-info-400:#538eff;--color-info-500:#2563eb;--color-info-600:#1a4aaf;--color-info-700:#0f318a;--color-info-800:#081f65;--color-info-900:#020b3a;--color-info-950:#000;--color-white:#fff;--color-white-50:#fff;--color-white-100:#fff;--color-white-200:#fff;--color-white-300:#fff;--color-white-400:#fff;--color-white-500:#fff;--color-white-600:#e3e3e3;--color-white-700:#c7c7c7;--color-white-800:#ababab;--color-white-900:#8f8f8f;--color-white-950:#818181}html{@apply text-sm lg:text-base;font-family:Noto Sans Thai,Noto Sans Thai Looped,Public Sans,sans-serif}::-webkit-scrollbar{-webkit-appearance:none;height:10px;width:10px}::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border-radius:4px;box-shadow:0 0 1px hsla(0,0%,100%,.5)}:root{--dp-font-family:inherit!important}.dp__theme_light{--dp-primary-color:var(--color-main)!important;--dp-primary-disabled-color:var(--color-main-200)!important}.dp__outer_menu_wrap{@apply ring-1 ring-gray-200}[role=dialog]{pointer-events:auto!important}#__nuxt,body,html{@apply w-full h-full}.dp__main{display:block!important}.dp__menu{border:none!important}.dp__pointer{height:44px!important}.dp__outer_menu_wrap{box-shadow:none!important}.dp--menu-wrapper{@apply ring-1 ring-slate-300}
@@ -7,10 +7,10 @@ export const selectMenuTheme = {
7
7
  clearIcon: "size-6 bg-gray-400 hover:bg-gray-400/75",
8
8
  item: "cursor-pointer max-sm:h-14",
9
9
  tagsWrapper: "flex flex-wrap gap-x-2 gap-y-1",
10
- tagsItem: "px-1.5 py-0.5 rounded-sm inline-flex items-center gap-0.5 bg-primary text-white data-disabled:cursor-not-allowed data-disabled:opacity-75",
10
+ tagsItem: "px-1.5 py-0.5 rounded-sm inline-flex items-center gap-0.5 ring-1 ring-gray-300 bg-white data-disabled:cursor-not-allowed data-disabled:opacity-75",
11
11
  tagsItemText: "flex items-center gap-x-1 text-sm",
12
12
  tagsItemDelete: [
13
- "inline-flex items-center text-white disabled:pointer-events-none",
13
+ "inline-flex items-center hover:text-gray-500 disabled:pointer-events-none",
14
14
  "transition-colors cursor-pointer"
15
15
  ],
16
16
  tagsItemDeleteIcon: "ph:x"
@@ -14,7 +14,7 @@ export const tableTheme = {
14
14
  thead: "",
15
15
  th: "text-[#475467] whitespace-nowrap font-medium text-xs",
16
16
  td: "text-[#475467]",
17
- tr: ""
17
+ tr: "hover:bg-gray-50"
18
18
  },
19
19
  variants: {
20
20
  pinned: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finema/core",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "repository": "https://gitlab.finema.co/finema/ui-kit",
5
5
  "license": "MIT",
6
6
  "author": "Finema Dev Core Team",