rimelight-components 2.1.47 → 2.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/dist/module.json +2 -2
- package/dist/module.mjs +3 -9
- package/dist/runtime/components/content/Section.vue +1 -1
- package/dist/runtime/components/dashboard/customers/AddModal.vue +2 -2
- package/dist/runtime/components/page/PagePropertiesRenderer.vue +1 -1
- package/dist/runtime/components/swatches/ColorSwatch.vue +1 -1
- package/package.json +17 -31
package/dist/module.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rimelight-components",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.52",
|
|
4
4
|
"docs": "https://rimelight.com/tools/rimelight-components",
|
|
5
5
|
"configKey": "rimelightComponents",
|
|
6
6
|
"compatibility": {
|
|
7
|
-
"nuxt": ">=4.
|
|
7
|
+
"nuxt": ">=4.3.0"
|
|
8
8
|
},
|
|
9
9
|
"builder": {
|
|
10
10
|
"@nuxt/module-builder": "1.0.2",
|
package/dist/module.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { readdirSync } from 'node:fs';
|
|
|
4
4
|
import { basename } from 'node:path';
|
|
5
5
|
|
|
6
6
|
const name = "rimelight-components";
|
|
7
|
-
const version = "2.1.
|
|
7
|
+
const version = "2.1.52";
|
|
8
8
|
const homepage = "https://rimelight.com/tools/rimelight-components";
|
|
9
9
|
|
|
10
10
|
const defaultOptions = {
|
|
@@ -141,7 +141,7 @@ const module$1 = defineNuxtModule().with({
|
|
|
141
141
|
docs: homepage,
|
|
142
142
|
configKey: "rimelightComponents",
|
|
143
143
|
compatibility: {
|
|
144
|
-
nuxt: ">=4.
|
|
144
|
+
nuxt: ">=4.3.0"
|
|
145
145
|
}
|
|
146
146
|
},
|
|
147
147
|
defaults: defaultOptions,
|
|
@@ -163,7 +163,7 @@ const module$1 = defineNuxtModule().with({
|
|
|
163
163
|
}
|
|
164
164
|
},
|
|
165
165
|
"@nuxt/ui": {
|
|
166
|
-
version: ">=4.
|
|
166
|
+
version: ">=4.4.0",
|
|
167
167
|
optional: false,
|
|
168
168
|
overrides: {},
|
|
169
169
|
defaults: {
|
|
@@ -187,12 +187,6 @@ const module$1 = defineNuxtModule().with({
|
|
|
187
187
|
};
|
|
188
188
|
return dependencies;
|
|
189
189
|
},
|
|
190
|
-
onInstall(_nuxt) {
|
|
191
|
-
console.log(`Setting up ${name}.`);
|
|
192
|
-
},
|
|
193
|
-
onUpgrade(_nuxt, _options, previousVersion) {
|
|
194
|
-
console.log(`Upgrading ${name} from ${previousVersion} to ${version}.`);
|
|
195
|
-
},
|
|
196
190
|
setup(options, nuxt) {
|
|
197
191
|
const { resolve } = createResolver(import.meta.url);
|
|
198
192
|
nuxt.options.appConfig.rimelightComponents = defu(
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { useRoute } from "#imports";
|
|
3
3
|
import { computed } from "vue";
|
|
4
4
|
import { useClipboard } from "@vueuse/core";
|
|
5
|
-
import { useToast } from "@nuxt/ui/composables";
|
|
5
|
+
import { useToast } from "@nuxt/ui/composables/useToast";
|
|
6
6
|
import { tv } from "../../internal/tv";
|
|
7
7
|
import { useRC } from "../../composables";
|
|
8
8
|
import { slugify } from "../../utils";
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import * as z from "zod";
|
|
3
3
|
import {} from "@nuxt/ui";
|
|
4
|
-
import { useToast } from "@nuxt/ui/composables";
|
|
5
4
|
import { ref, reactive } from "vue";
|
|
5
|
+
import { useToast } from "@nuxt/ui/composables/useToast";
|
|
6
6
|
const schema = z.object({
|
|
7
7
|
name: z.string().min(2, "Too short"),
|
|
8
|
-
email: z.
|
|
8
|
+
email: z.email("Invalid email")
|
|
9
9
|
});
|
|
10
10
|
const open = ref(false);
|
|
11
11
|
const state = reactive({
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { computed } from "vue";
|
|
3
3
|
import { getLocalizedContent } from "../../utils";
|
|
4
4
|
import { usePageRegistry, useInfobox, useRC } from "../../composables";
|
|
5
|
-
import { useToast } from "@nuxt/ui/composables";
|
|
5
|
+
import { useToast } from "@nuxt/ui/composables/useToast";
|
|
6
6
|
import {} from "@nuxt/ui/components/Tabs.vue";
|
|
7
7
|
import { useI18n } from "vue-i18n";
|
|
8
8
|
import { useShare, useClipboard } from "@vueuse/core";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { computed } from "vue";
|
|
3
3
|
import { useClipboard } from "@vueuse/core";
|
|
4
|
-
import { useToast } from "@nuxt/ui/composables";
|
|
4
|
+
import { useToast } from "@nuxt/ui/composables/useToast";
|
|
5
5
|
import { tv } from "../../internal/tv";
|
|
6
6
|
import { useRC } from "../../composables";
|
|
7
7
|
const { name, hex, rgb, hsl, oklch, cmyk, rc: rcProp } = defineProps({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rimelight-components",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.52",
|
|
4
4
|
"description": "A component library by Rimelight Entertainment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nuxt",
|
|
@@ -22,11 +22,6 @@
|
|
|
22
22
|
},
|
|
23
23
|
"exports": {
|
|
24
24
|
".": "./dist/module.mjs",
|
|
25
|
-
"./components": {
|
|
26
|
-
"types": "./dist/runtime/components/index.d.ts",
|
|
27
|
-
"import": "./dist/runtime/components/index.mjs",
|
|
28
|
-
"default": "./dist/runtime/components/index.mjs"
|
|
29
|
-
},
|
|
30
25
|
"./components/*": "./dist/runtime/components/*",
|
|
31
26
|
"./composables": {
|
|
32
27
|
"types": "./dist/runtime/composables/index.d.ts",
|
|
@@ -47,11 +42,6 @@
|
|
|
47
42
|
"types": "./dist/runtime/utils/index.d.ts",
|
|
48
43
|
"import": "./dist/runtime/utils/index.mjs",
|
|
49
44
|
"default": "./dist/runtime/utils/index.mjs"
|
|
50
|
-
},
|
|
51
|
-
"./auth": {
|
|
52
|
-
"types": "./dist/runtime/auth/index.d.ts",
|
|
53
|
-
"import": "./dist/runtime/auth/index.mjs",
|
|
54
|
-
"default": "./dist/runtime/auth/index.mjs"
|
|
55
45
|
}
|
|
56
46
|
},
|
|
57
47
|
"style": "./dist/runtime/index.css",
|
|
@@ -78,16 +68,20 @@
|
|
|
78
68
|
"rimelight-components": "workspace:*"
|
|
79
69
|
},
|
|
80
70
|
"dependencies": {
|
|
71
|
+
"@nuxt/kit": "^4.3.0",
|
|
72
|
+
"@tauri-apps/plugin-http": "^2.5.7",
|
|
73
|
+
"@vueuse/core": "^14.1.0",
|
|
74
|
+
"better-auth": "^1.4.18",
|
|
81
75
|
"date-fns": "^4.1.0",
|
|
82
76
|
"defu": "^6.1.4",
|
|
77
|
+
"drizzle-orm": "^0.45.1",
|
|
83
78
|
"tailwind-variants": "^3.2.2",
|
|
84
|
-
"
|
|
85
|
-
"
|
|
79
|
+
"uuid": "^13.0.0",
|
|
80
|
+
"vue": "^3.5.27",
|
|
81
|
+
"zod": "^4.3.6"
|
|
86
82
|
},
|
|
87
83
|
"devDependencies": {
|
|
88
|
-
"
|
|
89
|
-
"@nuxt/kit": "^4.3.0",
|
|
90
|
-
"@iconify-json/lucide": "^1.2.87",
|
|
84
|
+
"@iconify-json/lucide": "^1.2.86",
|
|
91
85
|
"@nuxt/devtools": "^3.1.1",
|
|
92
86
|
"@nuxt/image": "^2.0.0",
|
|
93
87
|
"@nuxt/module-builder": "^1.0.2",
|
|
@@ -96,31 +90,23 @@
|
|
|
96
90
|
"@nuxt/ui": "^4.4.0",
|
|
97
91
|
"@nuxtjs/i18n": "^10.2.1",
|
|
98
92
|
"@types/node": "latest",
|
|
99
|
-
"@vueuse/
|
|
100
|
-
"@vueuse/nuxt": "^14.2.0",
|
|
93
|
+
"@vueuse/nuxt": "^14.1.0",
|
|
101
94
|
"changelogen": "^0.6.2",
|
|
102
|
-
"drizzle-orm": "^0.45.1",
|
|
103
95
|
"nuxt": "^4.3.0",
|
|
104
|
-
"oxfmt": "^0.
|
|
105
|
-
"oxlint": "^1.
|
|
96
|
+
"oxfmt": "^0.18.0",
|
|
97
|
+
"oxlint": "^1.41.0",
|
|
106
98
|
"release-it": "^19.2.4",
|
|
107
99
|
"tailwind-merge": "^3.4.0",
|
|
108
100
|
"typescript": "^5.9.3",
|
|
109
101
|
"vitest": "^4.0.18",
|
|
110
|
-
"vue-tsc": "^3.2.
|
|
111
|
-
"better-auth": "^1.4.18"
|
|
102
|
+
"vue-tsc": "^3.2.3"
|
|
112
103
|
},
|
|
113
104
|
"peerDependencies": {
|
|
114
|
-
"better-auth": "^1.4.18",
|
|
115
|
-
"@tauri-apps/plugin-http": "^2.5.6",
|
|
116
|
-
"@nuxt/image": "^2.0.0",
|
|
117
105
|
"@nuxt/ui": "^4.4.0",
|
|
106
|
+
"@nuxt/image": "^2.0.0",
|
|
118
107
|
"@nuxtjs/i18n": "^10.2.1",
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"@vueuse/nuxt": "^14.2.0",
|
|
122
|
-
"nuxt": "^4.3.0",
|
|
123
|
-
"vue": "^3.5.27"
|
|
108
|
+
"@vueuse/nuxt": "^14.1.0",
|
|
109
|
+
"nuxt": "^4.3.0"
|
|
124
110
|
},
|
|
125
111
|
"trustedDependencies": [
|
|
126
112
|
"@parcel/watcher",
|