@returnless/focus-ui 0.0.39 → 0.0.41
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/focus-ui.js +4375 -4330
- package/dist/focus-ui.umd.cjs +26 -26
- package/dist/src/components/AspectRatio/AspectRatio.vue.d.ts +5 -3
- package/dist/src/components/BarChart/BarChart.vue.d.ts +1 -1
- package/dist/src/components/BarChart/BarChartLegend.vue.d.ts +1 -1
- package/dist/src/components/BarChart/BarChartTooltip.vue.d.ts +1 -1
- package/dist/src/components/Card/CardLayout.vue.d.ts +2 -2
- package/dist/src/components/DataTable/DataTable.vue.d.ts +1 -1
- package/dist/src/components/DataTable/DataTableCell.vue.d.ts +1 -1
- package/dist/src/components/DataTable/DataTableRoot.vue.d.ts +1 -1
- package/package.json +5 -5
|
@@ -7,14 +7,16 @@ declare function __VLS_template(): {
|
|
|
7
7
|
};
|
|
8
8
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
9
|
declare const __VLS_component: import("vue").DefineComponent<{
|
|
10
|
+
/** The object-fit property of the element. */
|
|
11
|
+
fit?: "cover" | "contain";
|
|
10
12
|
/** The aspect ratio of the element. */
|
|
11
13
|
ratio?: number;
|
|
12
14
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
15
|
+
/** The object-fit property of the element. */
|
|
16
|
+
fit?: "cover" | "contain";
|
|
13
17
|
/** The aspect ratio of the element. */
|
|
14
18
|
ratio?: number;
|
|
15
|
-
}> & Readonly<{}>, {
|
|
16
|
-
ratio: number;
|
|
17
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
20
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
21
|
export default _default;
|
|
20
22
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type BarChartCategory } from './types';
|
|
2
2
|
declare const _default: <T extends Record<string, any>>(__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<{
|
|
3
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & {
|
|
4
4
|
/** Select the categories from your data. Used to populate the legend and tooltip. */
|
|
5
5
|
categories: BarChartCategory<T>[];
|
|
6
6
|
/** The source data, in which each entry is a dictionary. */
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
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<{
|
|
2
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
2
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & {}> & import("vue").PublicProps;
|
|
3
3
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
4
4
|
attrs: any;
|
|
5
5
|
slots: {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Ref } from 'vue';
|
|
2
2
|
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<{
|
|
3
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & {}> & import("vue").PublicProps;
|
|
4
4
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
5
5
|
$tooltip: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6
6
|
}>): void;
|
|
@@ -7,9 +7,9 @@ declare function __VLS_template(): {
|
|
|
7
7
|
};
|
|
8
8
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
9
9
|
declare const __VLS_component: import("vue").DefineComponent<{
|
|
10
|
-
columns
|
|
10
|
+
columns?: number;
|
|
11
11
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
|
|
12
|
-
columns
|
|
12
|
+
columns?: number;
|
|
13
13
|
}> & Readonly<{}>, {
|
|
14
14
|
columns: number;
|
|
15
15
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { RowDef } from './types';
|
|
2
2
|
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<{
|
|
3
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & {}> & import("vue").PublicProps;
|
|
4
4
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
5
5
|
attrs: any;
|
|
6
6
|
slots: Partial<Record<NonNullable<keyof T>, (_: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ColumnDef } from '@/components/DataTable/types';
|
|
2
2
|
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<{
|
|
3
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & {
|
|
4
4
|
as?: "th" | "td";
|
|
5
5
|
column: ColumnDef<T>;
|
|
6
6
|
}> & import("vue").PublicProps;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ColumnDef } from './types';
|
|
2
2
|
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<{
|
|
3
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & {
|
|
4
4
|
columns: ColumnDef<T>[];
|
|
5
5
|
rows: T[];
|
|
6
6
|
}> & import("vue").PublicProps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@returnless/focus-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.41",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@testing-library/jest-dom": "^6.5.0",
|
|
27
27
|
"@testing-library/vue": "^8.1.0",
|
|
28
28
|
"@types/jest-axe": "^3.5.9",
|
|
29
|
-
"@types/node": "^22.7.
|
|
29
|
+
"@types/node": "^22.7.5",
|
|
30
30
|
"@types/sortablejs": "^1.15.8",
|
|
31
31
|
"@typescript-eslint/eslint-plugin": "^7.11.0",
|
|
32
32
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"collect.js": "^4.36.1",
|
|
38
38
|
"dayjs": "^1.11.11",
|
|
39
39
|
"eslint": "^8.57.0",
|
|
40
|
-
"eslint-plugin-tailwindcss": "^3.17.
|
|
41
|
-
"eslint-plugin-vue": "^9.
|
|
40
|
+
"eslint-plugin-tailwindcss": "^3.17.5",
|
|
41
|
+
"eslint-plugin-vue": "^9.29.0",
|
|
42
42
|
"front-matter": "^4.0.2",
|
|
43
43
|
"jest-axe": "^9.0.0",
|
|
44
44
|
"jsdom": "^25.0.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"rimraf": "^6.0.1",
|
|
48
48
|
"sortablejs": "^1.15.2",
|
|
49
49
|
"tailwindcss": "^3.4.3",
|
|
50
|
-
"typescript": "^5.
|
|
50
|
+
"typescript": "^5.6.3",
|
|
51
51
|
"vite": "^5.2.12",
|
|
52
52
|
"vitepress": "^1.4.0",
|
|
53
53
|
"vitest": "^2.0.5",
|