rimelight-components 1.7.14 → 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 +1 -3
- package/dist/runtime/components/content/Callout.vue +1 -23
- package/dist/runtime/components/content/Callout.vue.d.ts +1 -3
- 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 __VLS_19: {}
|
|
7
|
+
declare var __VLS_19: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
9
|
default?: (props: typeof __VLS_19) => any;
|
|
10
|
-
} & {
|
|
11
|
-
default?: (props: typeof __VLS_45) => 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,7 +20,7 @@ const tooltip = computed(() => config.value.tooltip);
|
|
|
20
20
|
</script>
|
|
21
21
|
|
|
22
22
|
<template>
|
|
23
|
-
<NuxtLink
|
|
23
|
+
<NuxtLink :to="to" :target="target">
|
|
24
24
|
<UAlert
|
|
25
25
|
:title="$t(title)"
|
|
26
26
|
:color="variant"
|
|
@@ -45,26 +45,4 @@ const tooltip = computed(() => config.value.tooltip);
|
|
|
45
45
|
</template>
|
|
46
46
|
</UAlert>
|
|
47
47
|
</NuxtLink>
|
|
48
|
-
|
|
49
|
-
<UAlert
|
|
50
|
-
v-else
|
|
51
|
-
:title="$t(title)"
|
|
52
|
-
:color="variant"
|
|
53
|
-
variant="subtle"
|
|
54
|
-
:close="{
|
|
55
|
-
class: 'pointer-events-none focus-visible:outline-none'
|
|
56
|
-
}"
|
|
57
|
-
>
|
|
58
|
-
<template #leading>
|
|
59
|
-
<UIcon :name="icon" class="size-6" />
|
|
60
|
-
</template>
|
|
61
|
-
<template #description>
|
|
62
|
-
<slot />
|
|
63
|
-
</template>
|
|
64
|
-
<template #close>
|
|
65
|
-
<UTooltip v-if="tooltip" :text="$t(tooltip)">
|
|
66
|
-
<UIcon name="lucide:circle-question-mark" class="size-5" />
|
|
67
|
-
</UTooltip>
|
|
68
|
-
</template>
|
|
69
|
-
</UAlert>
|
|
70
48
|
</template>
|
|
@@ -4,11 +4,9 @@ type __VLS_Props = {
|
|
|
4
4
|
to?: string;
|
|
5
5
|
target?: string;
|
|
6
6
|
};
|
|
7
|
-
declare var __VLS_19: {}
|
|
7
|
+
declare var __VLS_19: {};
|
|
8
8
|
type __VLS_Slots = {} & {
|
|
9
9
|
default?: (props: typeof __VLS_19) => any;
|
|
10
|
-
} & {
|
|
11
|
-
default?: (props: typeof __VLS_45) => 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
|
}
|