rimelight-components 2.0.96 → 2.0.98
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 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +4 -1
- package/dist/runtime/app.config.d.ts +14 -4
- package/dist/types.d.mts +2 -0
- package/package.json +1 -1
- package/dist/runtime/types/app.config.d.ts +0 -14
package/dist/module.d.mts
CHANGED
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.98";
|
|
8
8
|
const homepage = "https://rimelight.com/tools/rimelight-components";
|
|
9
9
|
|
|
10
10
|
const defaultOptions = {
|
|
@@ -217,6 +217,9 @@ const module$1 = defineNuxtModule().with({
|
|
|
217
217
|
});
|
|
218
218
|
const blockEditorTemplate = addEditorBlockMapTemplates(blockEditorNames);
|
|
219
219
|
nuxt.options.alias["#build/rimelight-block-editor-map"] = blockEditorTemplate.dst;
|
|
220
|
+
nuxt.hook("prepare:types", ({ references }) => {
|
|
221
|
+
references.push({ path: resolve("./runtime/app.config.d.ts") });
|
|
222
|
+
});
|
|
220
223
|
}
|
|
221
224
|
});
|
|
222
225
|
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
declare module '#build/app.config' {
|
|
2
|
+
import type { AppConfig } from '@nuxt/schema'
|
|
3
|
+
|
|
4
|
+
interface RimelightComponentsConfig {
|
|
5
|
+
[key: string]: any
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
interface CustomAppConfig extends AppConfig {
|
|
9
|
+
rimelightComponents?: RimelightComponentsConfig
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
const _default: CustomAppConfig
|
|
13
|
+
export default _default
|
|
14
|
+
}
|
package/dist/types.d.mts
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
declare module '#build/app.config' {
|
|
2
|
-
import type { AppConfig } from '@nuxt/schema'
|
|
3
|
-
|
|
4
|
-
interface RimelightComponentsConfig {
|
|
5
|
-
[key: string]: any
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
interface CustomAppConfig extends AppConfig {
|
|
9
|
-
rimelightComponents?: RimelightComponentsConfig
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
const _default: CustomAppConfig
|
|
13
|
-
export default _default
|
|
14
|
-
}
|