@profitliga/ui 1.2.78 → 1.2.80

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.
@@ -1,26 +1,26 @@
1
1
  import { RowSelectionState, SortingState } from '@tanstack/vue-table';
2
- import { IDataTableProps } from './DataTable.types';
3
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
4
- type __VLS_Props = IDataTableProps<T>;
5
- type __VLS_PublicProps = {
6
- 'page'?: number;
7
- 'rows'?: number;
8
- 'rowSelection'?: RowSelectionState;
9
- } & __VLS_Props;
10
- declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
11
- "update:page": (value: number) => any;
12
- "update:rows": (value: number) => any;
13
- "update:rowSelection": (value: RowSelectionState) => any;
14
- } & {
15
- "update:sort": (value: SortingState) => any;
16
- "update:selected": (value: RowSelectionState) => any;
17
- "update:page": (value: number) => any;
18
- "update:rows": (value: number) => any;
19
- }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
20
- "onUpdate:sort"?: ((value: SortingState) => any) | undefined;
21
- "onUpdate:selected"?: ((value: RowSelectionState) => any) | undefined;
22
- "onUpdate:page"?: ((value: number) => any) | undefined;
23
- "onUpdate:rows"?: ((value: number) => any) | undefined;
24
- "onUpdate:rowSelection"?: ((value: RowSelectionState) => any) | undefined;
25
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2
+ import { IDataTableEmits, IDataTableProps } from './DataTable.types';
3
+ import { VNodeProps, AllowedComponentProps, ComponentCustomProps, PublicProps, ShallowUnwrapRef, VNode } from 'vue';
4
+ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
5
+ props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
6
+ readonly "onUpdate:sort"?: ((value: SortingState) => any) | undefined;
7
+ readonly "onUpdate:selected"?: ((value: RowSelectionState) => any) | undefined;
8
+ readonly "onUpdate:page"?: ((value: number) => any) | undefined;
9
+ readonly "onUpdate:rows"?: ((value: number) => any) | undefined;
10
+ readonly "onUpdate:rowSelection"?: ((value: RowSelectionState) => any) | undefined;
11
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate:page" | "onUpdate:rows" | "onUpdate:sort" | "onUpdate:selected" | "onUpdate:rowSelection"> & ({
12
+ page?: number;
13
+ rows?: number;
14
+ rowSelection?: RowSelectionState;
15
+ } & IDataTableProps<T>) & Partial<{}>> & PublicProps;
16
+ expose(exposed: ShallowUnwrapRef<{}>): void;
17
+ attrs: any;
18
+ slots: {};
19
+ emit: IDataTableEmits & (((evt: "update:page", value: number) => void) & ((evt: "update:rows", value: number) => void) & ((evt: "update:rowSelection", value: RowSelectionState) => void));
20
+ }>) => VNode & {
21
+ __ctx?: Awaited<typeof __VLS_setup>;
22
+ };
26
23
  export default _default;
24
+ type __VLS_PrettifyLocal<T> = {
25
+ [K in keyof T]: T[K];
26
+ } & {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@profitliga/ui",
3
- "version": "1.2.78",
3
+ "version": "1.2.80",
4
4
  "author": "Profit League<dev@pr-lg.ru>",
5
5
  "license": "MIT",
6
6
  "description": "Vue 3 UI component library with TypeScript and SCSS",
@@ -56,7 +56,7 @@
56
56
  ]
57
57
  },
58
58
  "peerDependencies": {
59
- "@internationalized/date": "3.10.1",
59
+ "@internationalized/date": "^3.12.0",
60
60
  "@lucide/vue": "^1.7.0",
61
61
  "@tanstack/vue-table": "8.21.3",
62
62
  "@vueuse/core": "14.1.0",
@@ -68,7 +68,8 @@
68
68
  "devDependencies": {
69
69
  "@chromatic-com/storybook": "^5.0.0",
70
70
  "@eslint/js": "^9.39.2",
71
- "@internationalized/date": "3.10.1",
71
+ "@internationalized/date": "^3.12.0",
72
+ "@lucide/vue": "^1.7.0",
72
73
  "@storybook/addon-a11y": "^10.2.0",
73
74
  "@storybook/addon-docs": "^10.2.0",
74
75
  "@storybook/addon-mcp": "^0.2.2",
@@ -122,6 +123,7 @@
122
123
  "scss"
123
124
  ],
124
125
  "resolutions": {
125
- "@microsoft/api-extractor": "7.48.1"
126
+ "@microsoft/api-extractor": "7.48.1",
127
+ "@internationalized/date": "3.12.0"
126
128
  }
127
129
  }