@rebilly/revel 12.16.3 → 12.17.0
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 +3 -3
- package/dist/components/r-button/r-button.vue.d.ts +1 -1
- package/dist/components/r-icon/r-icon-sprites.d.ts +11 -0
- package/dist/components/r-icon/r-icon.vue.d.ts +7 -2
- package/dist/components/r-select/r-select.vue.d.ts +4 -3
- package/dist/revel.mjs +3482 -3418
- package/dist/revel.umd.js +1097 -1046
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
1
|
+
## [12.17.0](https://github.com/Rebilly/rebilly/compare/revel-v12.16.4...revel-v12.17.0) (2026-02-09)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Features
|
|
5
5
|
|
|
6
|
-
* **revel:**
|
|
6
|
+
* **revel:** Add minor icons ([#18623](https://github.com/Rebilly/rebilly/issues/18623)) ([f367aa1](https://github.com/Rebilly/rebilly/commit/f367aa1021a4b489066f32f79f2aeef0db227e7c))
|
|
@@ -63,8 +63,8 @@ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {},
|
|
|
63
63
|
loading: boolean;
|
|
64
64
|
link: boolean;
|
|
65
65
|
icon: IconNames;
|
|
66
|
-
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
67
66
|
size: "small" | "regular" | "large";
|
|
67
|
+
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
68
68
|
href: string;
|
|
69
69
|
disabled: boolean;
|
|
70
70
|
active: boolean;
|
|
@@ -129,6 +129,16 @@ export declare const RIconNames: {
|
|
|
129
129
|
games: string;
|
|
130
130
|
dice: string;
|
|
131
131
|
};
|
|
132
|
+
export declare const RIconMinorNames: {
|
|
133
|
+
copy: string;
|
|
134
|
+
'external-link': string;
|
|
135
|
+
close: string;
|
|
136
|
+
check: string;
|
|
137
|
+
'caret-down': string;
|
|
138
|
+
'caret-up': string;
|
|
139
|
+
'caret-left': string;
|
|
140
|
+
'caret-right': string;
|
|
141
|
+
};
|
|
132
142
|
export declare const RIconColors: {
|
|
133
143
|
default: string;
|
|
134
144
|
'on-surface': string;
|
|
@@ -140,5 +150,6 @@ export declare const RIconColors: {
|
|
|
140
150
|
};
|
|
141
151
|
export type IconColor = keyof typeof RIconColors;
|
|
142
152
|
export type IconNames = keyof typeof RIconNames;
|
|
153
|
+
export type IconMinorNames = keyof typeof RIconMinorNames;
|
|
143
154
|
export declare const RIconSprites: string;
|
|
144
155
|
export declare function RIconSpritesAppend(el?: HTMLElement | DocumentFragment | null): void;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type { IconColor, IconNames } from './r-icon-sprites';
|
|
1
|
+
import type { IconColor, IconNames, IconMinorNames } from './r-icon-sprites';
|
|
2
2
|
export interface Props {
|
|
3
3
|
/**
|
|
4
4
|
* Select any icon available in our svg sprite
|
|
5
5
|
*/
|
|
6
|
-
icon: Nullable<IconNames>;
|
|
6
|
+
icon: Nullable<IconNames | IconMinorNames>;
|
|
7
7
|
/**
|
|
8
8
|
* Choose any color from our status color palette
|
|
9
9
|
* primary, on-surface, success, warning, danger, info
|
|
@@ -13,6 +13,10 @@ export interface Props {
|
|
|
13
13
|
* Prevent native click events from capturing in parent components
|
|
14
14
|
*/
|
|
15
15
|
stopPropagation?: boolean;
|
|
16
|
+
/**
|
|
17
|
+
* Choose icon size
|
|
18
|
+
*/
|
|
19
|
+
size?: 'major' | 'minor';
|
|
16
20
|
}
|
|
17
21
|
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
18
22
|
click: (event: MouseEvent) => any;
|
|
@@ -21,5 +25,6 @@ declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
21
25
|
}>, {
|
|
22
26
|
color: IconColor;
|
|
23
27
|
stopPropagation: boolean;
|
|
28
|
+
size: "major" | "minor";
|
|
24
29
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
25
30
|
export default _default;
|
|
@@ -770,14 +770,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
770
770
|
}>, {
|
|
771
771
|
color: import("../r-icon/r-icon-sprites.ts").IconColor;
|
|
772
772
|
stopPropagation: boolean;
|
|
773
|
+
size: "major" | "minor";
|
|
773
774
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
774
775
|
RButton: {
|
|
775
776
|
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("../r-button/r-button.vue").Props> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
|
|
776
777
|
loading: boolean;
|
|
777
778
|
link: boolean;
|
|
778
779
|
icon: import("../r-icon/r-icon-sprites.ts").IconNames;
|
|
779
|
-
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
780
780
|
size: "small" | "regular" | "large";
|
|
781
|
+
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
781
782
|
href: string;
|
|
782
783
|
disabled: boolean;
|
|
783
784
|
active: boolean;
|
|
@@ -796,8 +797,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
796
797
|
loading: boolean;
|
|
797
798
|
link: boolean;
|
|
798
799
|
icon: import("../r-icon/r-icon-sprites.ts").IconNames;
|
|
799
|
-
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
800
800
|
size: "small" | "regular" | "large";
|
|
801
|
+
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
801
802
|
href: string;
|
|
802
803
|
disabled: boolean;
|
|
803
804
|
active: boolean;
|
|
@@ -813,8 +814,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
813
814
|
loading: boolean;
|
|
814
815
|
link: boolean;
|
|
815
816
|
icon: import("../r-icon/r-icon-sprites.ts").IconNames;
|
|
816
|
-
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
817
817
|
size: "small" | "regular" | "large";
|
|
818
|
+
type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
|
|
818
819
|
href: string;
|
|
819
820
|
disabled: boolean;
|
|
820
821
|
active: boolean;
|