rimelight-components 2.0.12 → 2.0.14
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.d.mts +1 -41
- package/dist/module.json +1 -1
- package/dist/module.mjs +47 -50
- package/dist/runtime/components/swatches/ColorSwatch.vue +1 -1
- package/package.json +2 -2
package/dist/module.d.mts
CHANGED
|
@@ -22,47 +22,7 @@ interface ModuleOptions {
|
|
|
22
22
|
source: CalloutOptions;
|
|
23
23
|
};
|
|
24
24
|
}
|
|
25
|
-
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions,
|
|
26
|
-
enabled: boolean;
|
|
27
|
-
prefix: string;
|
|
28
|
-
callouts: {
|
|
29
|
-
info: {
|
|
30
|
-
icon: string;
|
|
31
|
-
title: string;
|
|
32
|
-
tooltip: string;
|
|
33
|
-
};
|
|
34
|
-
success: {
|
|
35
|
-
icon: string;
|
|
36
|
-
title: string;
|
|
37
|
-
tooltip: string;
|
|
38
|
-
};
|
|
39
|
-
warning: {
|
|
40
|
-
icon: string;
|
|
41
|
-
title: string;
|
|
42
|
-
tooltip: string;
|
|
43
|
-
};
|
|
44
|
-
error: {
|
|
45
|
-
icon: string;
|
|
46
|
-
title: string;
|
|
47
|
-
tooltip: string;
|
|
48
|
-
};
|
|
49
|
-
commentary: {
|
|
50
|
-
icon: string;
|
|
51
|
-
title: string;
|
|
52
|
-
tooltip: string;
|
|
53
|
-
};
|
|
54
|
-
ideation: {
|
|
55
|
-
icon: string;
|
|
56
|
-
title: string;
|
|
57
|
-
tooltip: string;
|
|
58
|
-
};
|
|
59
|
-
source: {
|
|
60
|
-
icon: string;
|
|
61
|
-
title: string;
|
|
62
|
-
tooltip: string;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
}, true>;
|
|
25
|
+
declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
|
|
66
26
|
|
|
67
27
|
export { _default as default };
|
|
68
28
|
export type { ModuleOptions };
|
package/dist/module.json
CHANGED
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.0.
|
|
7
|
+
const version = "2.0.14";
|
|
8
8
|
const homepage = "https://rimelight.com/tools/rimelight-components";
|
|
9
9
|
|
|
10
10
|
const defaultOptions = {
|
|
@@ -85,7 +85,7 @@ function addBlockMapTemplates(blockNames) {
|
|
|
85
85
|
return template;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
const module = defineNuxtModule(
|
|
88
|
+
const module = defineNuxtModule({
|
|
89
89
|
meta: {
|
|
90
90
|
name,
|
|
91
91
|
version,
|
|
@@ -97,56 +97,53 @@ const module = defineNuxtModule().with({
|
|
|
97
97
|
},
|
|
98
98
|
hooks: {},
|
|
99
99
|
defaults: defaultOptions,
|
|
100
|
-
moduleDependencies
|
|
101
|
-
|
|
102
|
-
"
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
]
|
|
133
|
-
}
|
|
100
|
+
moduleDependencies: {
|
|
101
|
+
"@nuxt/image": {
|
|
102
|
+
version: ">=1.0.0",
|
|
103
|
+
optional: false,
|
|
104
|
+
overrides: {},
|
|
105
|
+
defaults: {}
|
|
106
|
+
},
|
|
107
|
+
"@nuxtjs/i18n": {
|
|
108
|
+
version: ">=10.1.1",
|
|
109
|
+
optional: false,
|
|
110
|
+
overrides: {},
|
|
111
|
+
defaults: {}
|
|
112
|
+
},
|
|
113
|
+
"@nuxt/ui": {
|
|
114
|
+
version: ">=4.0.0",
|
|
115
|
+
optional: false,
|
|
116
|
+
overrides: {},
|
|
117
|
+
defaults: {
|
|
118
|
+
prefix: "U",
|
|
119
|
+
theme: {
|
|
120
|
+
colors: [
|
|
121
|
+
"neutral",
|
|
122
|
+
"primary",
|
|
123
|
+
"secondary",
|
|
124
|
+
"info",
|
|
125
|
+
"success",
|
|
126
|
+
"warning",
|
|
127
|
+
"error",
|
|
128
|
+
"commentary",
|
|
129
|
+
"ideation",
|
|
130
|
+
"source"
|
|
131
|
+
]
|
|
134
132
|
}
|
|
135
|
-
},
|
|
136
|
-
"@vueuse/nuxt": {
|
|
137
|
-
version: ">=13.9.0",
|
|
138
|
-
optional: false,
|
|
139
|
-
overrides: {},
|
|
140
|
-
defaults: {}
|
|
141
|
-
},
|
|
142
|
-
"motion-v/nuxt": {
|
|
143
|
-
version: ">=1.7.2",
|
|
144
|
-
optional: false,
|
|
145
|
-
overrides: {},
|
|
146
|
-
defaults: {}
|
|
147
133
|
}
|
|
148
|
-
}
|
|
149
|
-
|
|
134
|
+
},
|
|
135
|
+
"@vueuse/nuxt": {
|
|
136
|
+
version: ">=13.9.0",
|
|
137
|
+
optional: false,
|
|
138
|
+
overrides: {},
|
|
139
|
+
defaults: {}
|
|
140
|
+
},
|
|
141
|
+
"motion-v/nuxt": {
|
|
142
|
+
version: ">=1.7.2",
|
|
143
|
+
optional: false,
|
|
144
|
+
overrides: {},
|
|
145
|
+
defaults: {}
|
|
146
|
+
}
|
|
150
147
|
},
|
|
151
148
|
onInstall(_nuxt) {
|
|
152
149
|
console.log(`Setting up ${name}.`);
|
|
@@ -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 "
|
|
4
|
+
import { useToast } from "#imports";
|
|
5
5
|
const { copy } = useClipboard();
|
|
6
6
|
const toast = useToast();
|
|
7
7
|
const { name, hex, rgb, hsl, oklch, cmyk } = defineProps({
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"type": "module",
|
|
3
2
|
"name": "rimelight-components",
|
|
4
3
|
"description": "A component library by Rimelight Entertainment.",
|
|
5
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.14",
|
|
5
|
+
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/Rimelight-Entertainment/rimelight-components.git"
|