rimelight-components 2.1.21 → 2.1.22
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 +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +1 -1
- package/dist/runtime/components/blocks/renderer/TestBlockRenderer.d.vue.ts +0 -20
- package/dist/runtime/components/blocks/renderer/TestBlockRenderer.vue +0 -23
- package/dist/runtime/components/blocks/renderer/TestBlockRenderer.vue.d.ts +0 -20
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.1.
|
|
7
|
+
const version = "2.1.22";
|
|
8
8
|
const homepage = "https://rimelight.com/tools/rimelight-components";
|
|
9
9
|
|
|
10
10
|
const defaultOptions = {
|
package/package.json
CHANGED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { TestBlockProps } from "../../../types/index.js";
|
|
2
|
-
export interface TestBlockRendererProps extends TestBlockProps {
|
|
3
|
-
rc?: {
|
|
4
|
-
root?: string;
|
|
5
|
-
};
|
|
6
|
-
}
|
|
7
|
-
export interface TestBlockRendererEmits {
|
|
8
|
-
}
|
|
9
|
-
export interface TestBlockRendererSlots {
|
|
10
|
-
}
|
|
11
|
-
type __VLS_Slots = TestBlockRendererSlots;
|
|
12
|
-
declare const __VLS_base: import("vue").DefineComponent<TestBlockRendererProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TestBlockRendererProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
-
declare const _default: typeof __VLS_export;
|
|
15
|
-
export default _default;
|
|
16
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
17
|
-
new (): {
|
|
18
|
-
$slots: S;
|
|
19
|
-
};
|
|
20
|
-
};
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<script setup>
|
|
2
|
-
import { tv } from "../../../internal/tv";
|
|
3
|
-
import { useRC } from "~/src/runtime/composables";
|
|
4
|
-
const { text, rc: rcProp } = defineProps({
|
|
5
|
-
rc: { type: Object, required: false },
|
|
6
|
-
text: { type: String, required: true }
|
|
7
|
-
});
|
|
8
|
-
const emit = defineEmits([]);
|
|
9
|
-
const slots = defineSlots();
|
|
10
|
-
const { rc } = useRC("TestBlockRenderer", rcProp);
|
|
11
|
-
const testBlockRendererStyles = tv({
|
|
12
|
-
slots: {
|
|
13
|
-
root: ""
|
|
14
|
-
}
|
|
15
|
-
});
|
|
16
|
-
const { root } = testBlockRendererStyles();
|
|
17
|
-
</script>
|
|
18
|
-
|
|
19
|
-
<template>
|
|
20
|
-
<div :class="root({ class: rc.root })">
|
|
21
|
-
<RCTest :text="text" />
|
|
22
|
-
</div>
|
|
23
|
-
</template>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import type { TestBlockProps } from "../../../types/index.js";
|
|
2
|
-
export interface TestBlockRendererProps extends TestBlockProps {
|
|
3
|
-
rc?: {
|
|
4
|
-
root?: string;
|
|
5
|
-
};
|
|
6
|
-
}
|
|
7
|
-
export interface TestBlockRendererEmits {
|
|
8
|
-
}
|
|
9
|
-
export interface TestBlockRendererSlots {
|
|
10
|
-
}
|
|
11
|
-
type __VLS_Slots = TestBlockRendererSlots;
|
|
12
|
-
declare const __VLS_base: import("vue").DefineComponent<TestBlockRendererProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<TestBlockRendererProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
-
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
-
declare const _default: typeof __VLS_export;
|
|
15
|
-
export default _default;
|
|
16
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
17
|
-
new (): {
|
|
18
|
-
$slots: S;
|
|
19
|
-
};
|
|
20
|
-
};
|