@webitel/ui-datalist 1.1.51 → 1.1.52
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/package.json +2 -2
- package/src/modules/filters/components/search-bar/types/DynamicFilterSearch.ts +5 -0
- package/src/modules/filters/modules/filterConfig/components/talk-duration/talk-duration-filter-value-field.vue +1 -1
- package/src/modules/filters/modules/filterConfig/components/talk-duration/talk-duration-filter-value-preview.vue +1 -1
- package/src/modules/types/tableStore.types.ts +1 -1
- package/src/vite-env.d.ts +1 -0
- package/types/.tsbuildinfo +1 -0
- package/types/modules/filter-presets/stores/createFilterPresetsStore.d.ts +4 -5
- package/types/modules/filters/components/search-bar/types/DynamicFilterSearch.d.ts +3 -0
- package/types/modules/filters/modules/filterConfig/components/queue/index.d.ts +2 -3
- package/types/modules/filters/modules/filterConfig/components/talk-duration/TalkDurationFilter.d.ts +4 -0
- package/types/modules/filters/modules/filterConfig/components/talk-duration/talk-duration-filter-value-field.vue.d.ts +1 -1
- package/types/modules/filters/modules/filterConfig/components/talk-duration/talk-duration-filter-value-preview.vue.d.ts +1 -1
- package/types/modules/filters/modules/filterConfig/components/team/index.d.ts +2 -3
- package/types/modules/filters/modules/filterConfig/components/total-duration/TotalDurationFilter.d.ts +4 -0
- package/types/modules/headers/createTableHeadersStore.d.ts +0 -1
- package/types/modules/table/createTableStore.store.d.ts +4 -5
- package/types/modules/types/tableStore.types.d.ts +1 -1
- package/src/modules/filters/components/search-bar/types/DynamicFilterSearch.d.ts +0 -5
- /package/src/modules/filters/modules/filterConfig/components/talk-duration/{TalkDurationFilter.d.ts → TalkDurationFilter.ts} +0 -0
- /package/src/modules/filters/modules/filterConfig/components/total-duration/{TotalDurationFilter.d.ts → TotalDurationFilter.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-datalist",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.52",
|
|
4
4
|
"description": "Toolkit for building data lists in webitel ui system",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"build:types": "vue-tsc -
|
|
6
|
+
"build:types": "vue-tsc -b tsconfig.build.json",
|
|
7
7
|
"typecheck": "vue-tsc --noEmit -p ./tsconfig.typecheck.json",
|
|
8
8
|
"lint:fix": "npx biome check --write ./src",
|
|
9
9
|
"biome:ci:gh": "biome ci ./src --reporter=github",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
<script lang="ts" setup>
|
|
10
10
|
import DurationFilterValueField from '../_shared/durations/duration-filter-value-field.vue';
|
|
11
|
-
import type { TalkDurationFilterModelValue } from './TalkDurationFilter
|
|
11
|
+
import type { TalkDurationFilterModelValue } from './TalkDurationFilter';
|
|
12
12
|
|
|
13
13
|
const model = defineModel<TalkDurationFilterModelValue>();
|
|
14
14
|
const emit = defineEmits<{
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
import { useI18n } from 'vue-i18n';
|
|
26
26
|
|
|
27
27
|
import { useFromToSecToPreviewTime } from '../../composables/useFromToSecToPreviewTime';
|
|
28
|
-
import type { TalkDurationFilterModelValue } from './TalkDurationFilter
|
|
28
|
+
import type { TalkDurationFilterModelValue } from './TalkDurationFilter';
|
|
29
29
|
|
|
30
30
|
const props = defineProps<{
|
|
31
31
|
value: TalkDurationFilterModelValue;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ApiModule } from '@webitel/ui-sdk/api/types/ApiModule';
|
|
2
|
+
import type { WtTableHeader } from '@webitel/ui-sdk/components/wt-table/types/WtTable';
|
|
2
3
|
import type { Ref } from 'vue';
|
|
3
4
|
|
|
4
|
-
import type { WtTableHeader } from '../../../../../src/components/wt-table/types/WtTable';
|
|
5
5
|
import type { IFiltersManager } from '../filters';
|
|
6
6
|
import type { DatalistStoreProviderType } from './StoreProvider';
|
|
7
7
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/// <reference types="vite/client" />
|