@rebilly/revel 12.50.3 → 12.50.5

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/CHANGELOG.md CHANGED
@@ -1,6 +1 @@
1
- ## [12.50.3](https://github.com/Rebilly/rebilly/compare/revel-v12.50.2...revel-v12.50.3) (2026-08-12)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * **recomm, revel:** add From/To labels and fix month casing on Replay report periods ([#24740](https://github.com/Rebilly/rebilly/issues/24740)) ([056a29b](https://github.com/Rebilly/rebilly/commit/056a29bede33dbf568eb333da32f3bde55e1a1e6))
1
+ ## [12.50.5](https://github.com/Rebilly/rebilly/compare/revel-v12.50.4...revel-v12.50.5) (2026-09-02)
@@ -32,6 +32,7 @@ export type { OptionItem, ComplexOptionItem, Options } from './r-select/types';
32
32
  export { default as RTab } from './r-tabs/r-tab.vue';
33
33
  export { default as RTabs } from './r-tabs/r-tabs.vue';
34
34
  export { default as RTile } from './r-tile/r-tile.vue';
35
+ export { default as RTileContent } from './r-tile/r-tile-content.vue';
35
36
  export { default as RToast } from './r-toast/r-toast.vue';
36
37
  export { default as RToggle } from './r-toggle/r-toggle.vue';
37
38
  export { default as RMultistep } from './r-multistep/r-multistep.vue';
@@ -0,0 +1,27 @@
1
+ export type TileContentType = 'primary' | 'secondary';
2
+ export interface Props {
3
+ /**
4
+ * Visual variant of the tile content
5
+ */
6
+ type?: TileContentType;
7
+ /**
8
+ * Title text displayed in the content header
9
+ */
10
+ title?: string;
11
+ }
12
+ declare var __VLS_1: {};
13
+ type __VLS_Slots = {} & {
14
+ default?: (props: typeof __VLS_1) => any;
15
+ };
16
+ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
17
+ title: string;
18
+ type: TileContentType;
19
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
21
+ declare const _default: typeof __VLS_export;
22
+ export default _default;
23
+ type __VLS_WithSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
@@ -1,18 +1,30 @@
1
- declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}, __VLS_7: {}, __VLS_9: {}, __VLS_11: {};
1
+ export type TileType = 'default' | 'plain' | 'description';
2
+ export type TileInset = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | '10' | '11' | '12';
3
+ export interface Props {
4
+ /**
5
+ * Visual variant of the tile
6
+ */
7
+ type?: TileType;
8
+ /**
9
+ * Title text displayed in the tile header
10
+ */
11
+ title?: string;
12
+ /**
13
+ * Padding scale for the title and content. Maps to `--r-space-*`.
14
+ */
15
+ inset?: TileInset;
16
+ }
17
+ declare var __VLS_1: {}, __VLS_3: {};
2
18
  type __VLS_Slots = {} & {
3
- title?: (props: typeof __VLS_1) => any;
19
+ actions?: (props: typeof __VLS_1) => any;
4
20
  } & {
5
- titleActions?: (props: typeof __VLS_3) => any;
6
- } & {
7
- contents?: (props: typeof __VLS_5) => any;
8
- } & {
9
- primary?: (props: typeof __VLS_7) => any;
10
- } & {
11
- secondary?: (props: typeof __VLS_9) => any;
12
- } & {
13
- actions?: (props: typeof __VLS_11) => any;
21
+ default?: (props: typeof __VLS_3) => any;
14
22
  };
15
- declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
23
+ declare const __VLS_base: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
24
+ title: string;
25
+ type: TileType;
26
+ inset: TileInset;
27
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
28
  declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
17
29
  declare const _default: typeof __VLS_export;
18
30
  export default _default;