rimelight-components 1.7.15 → 1.8.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/runtime/components/backgrounds/FlickeringGrid.d.vue.ts +1 -1
- package/dist/runtime/components/backgrounds/FlickeringGrid.vue.d.ts +1 -1
- package/dist/runtime/components/content/Callout.d.vue.ts +2 -4
- package/dist/runtime/components/content/Callout.vue +6 -30
- package/dist/runtime/components/content/Callout.vue.d.ts +2 -4
- package/package.json +7 -2
|
@@ -9,10 +9,10 @@ interface FlickeringGridProps {
|
|
|
9
9
|
maxOpacity?: number;
|
|
10
10
|
}
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<FlickeringGridProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FlickeringGridProps> & Readonly<{}>, {
|
|
12
|
-
color: string;
|
|
13
12
|
squareSize: number;
|
|
14
13
|
gridGap: number;
|
|
15
14
|
flickerChance: number;
|
|
15
|
+
color: string;
|
|
16
16
|
maxOpacity: number;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
@@ -9,10 +9,10 @@ interface FlickeringGridProps {
|
|
|
9
9
|
maxOpacity?: number;
|
|
10
10
|
}
|
|
11
11
|
declare const __VLS_export: import("vue").DefineComponent<FlickeringGridProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FlickeringGridProps> & Readonly<{}>, {
|
|
12
|
-
color: string;
|
|
13
12
|
squareSize: number;
|
|
14
13
|
gridGap: number;
|
|
15
14
|
flickerChance: number;
|
|
15
|
+
color: string;
|
|
16
16
|
maxOpacity: number;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
@@ -4,11 +4,9 @@ type __VLS_Props = {
|
|
|
4
4
|
to?: string;
|
|
5
5
|
target?: string;
|
|
6
6
|
};
|
|
7
|
-
declare var
|
|
7
|
+
declare var __VLS_19: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
|
-
default?: (props: typeof
|
|
10
|
-
} & {
|
|
11
|
-
default?: (props: typeof __VLS_43) => any;
|
|
9
|
+
default?: (props: typeof __VLS_19) => any;
|
|
12
10
|
};
|
|
13
11
|
declare const __VLS_base: 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>;
|
|
14
12
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -20,35 +20,8 @@ const tooltip = computed(() => config.value.tooltip);
|
|
|
20
20
|
</script>
|
|
21
21
|
|
|
22
22
|
<template>
|
|
23
|
-
<
|
|
24
|
-
<NuxtLink v-if="to" :to="to" :target="target" class="cursor-pointer">
|
|
25
|
-
<UAlert
|
|
26
|
-
:title="$t(title)"
|
|
27
|
-
:color="variant"
|
|
28
|
-
variant="subtle"
|
|
29
|
-
:close="{
|
|
30
|
-
class: 'pointer-events-none focus-visible:outline-none'
|
|
31
|
-
}"
|
|
32
|
-
>
|
|
33
|
-
<template #leading>
|
|
34
|
-
<UIcon :name="icon" class="size-6" />
|
|
35
|
-
</template>
|
|
36
|
-
<template #description>
|
|
37
|
-
<slot />
|
|
38
|
-
</template>
|
|
39
|
-
<template #close>
|
|
40
|
-
<UTooltip v-if="tooltip" :text="$t(tooltip)">
|
|
41
|
-
<UIcon
|
|
42
|
-
name="lucide:circle-question-mark"
|
|
43
|
-
class="pointer-events-auto size-5"
|
|
44
|
-
/>
|
|
45
|
-
</UTooltip>
|
|
46
|
-
</template>
|
|
47
|
-
</UAlert>
|
|
48
|
-
</NuxtLink>
|
|
49
|
-
|
|
23
|
+
<NuxtLink :to="to" :target="target">
|
|
50
24
|
<UAlert
|
|
51
|
-
v-else
|
|
52
25
|
:title="$t(title)"
|
|
53
26
|
:color="variant"
|
|
54
27
|
variant="subtle"
|
|
@@ -64,9 +37,12 @@ const tooltip = computed(() => config.value.tooltip);
|
|
|
64
37
|
</template>
|
|
65
38
|
<template #close>
|
|
66
39
|
<UTooltip v-if="tooltip" :text="$t(tooltip)">
|
|
67
|
-
<UIcon
|
|
40
|
+
<UIcon
|
|
41
|
+
name="lucide:circle-question-mark"
|
|
42
|
+
class="pointer-events-auto size-5"
|
|
43
|
+
/>
|
|
68
44
|
</UTooltip>
|
|
69
45
|
</template>
|
|
70
46
|
</UAlert>
|
|
71
|
-
</
|
|
47
|
+
</NuxtLink>
|
|
72
48
|
</template>
|
|
@@ -4,11 +4,9 @@ type __VLS_Props = {
|
|
|
4
4
|
to?: string;
|
|
5
5
|
target?: string;
|
|
6
6
|
};
|
|
7
|
-
declare var
|
|
7
|
+
declare var __VLS_19: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
|
-
default?: (props: typeof
|
|
10
|
-
} & {
|
|
11
|
-
default?: (props: typeof __VLS_43) => any;
|
|
9
|
+
default?: (props: typeof __VLS_19) => any;
|
|
12
10
|
};
|
|
13
11
|
declare const __VLS_base: 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>;
|
|
14
12
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rimelight-components",
|
|
3
3
|
"description": "My new Nuxt module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.8.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/Rimelight-Entertainment/rimelight-components.git"
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"dev:build": "nuxi build playground",
|
|
51
51
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
52
52
|
"release": "bun run lint && bun run test && bun run prepack && changelogen --release && bun publish && git push --follow-tags",
|
|
53
|
+
"typecheck": "vue-tsc --noEmit && nuxt typecheck",
|
|
53
54
|
"lint": "oxlint .",
|
|
54
55
|
"lint:fix": "oxlint . --fix",
|
|
55
56
|
"test": "vitest run",
|
|
@@ -85,6 +86,7 @@
|
|
|
85
86
|
"oxlint": "^1.25.0",
|
|
86
87
|
"prettier": "^3.6.2",
|
|
87
88
|
"prettier-plugin-tailwindcss": "^0.6.14",
|
|
89
|
+
"release-it": "^19.0.5",
|
|
88
90
|
"tailwind-merge": "^3.3.1",
|
|
89
91
|
"tw-animate-css": "^1.4.0",
|
|
90
92
|
"typescript": "~5.9.3",
|
|
@@ -94,5 +96,8 @@
|
|
|
94
96
|
"trustedDependencies": [
|
|
95
97
|
"@parcel/watcher",
|
|
96
98
|
"@tailwindcss/oxide"
|
|
97
|
-
]
|
|
99
|
+
],
|
|
100
|
+
"npm": {
|
|
101
|
+
"skipChecks": true
|
|
102
|
+
}
|
|
98
103
|
}
|