@momentum-ui/web-components 2.14.15 → 2.14.17
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/README.md +1 -1
- package/dist/chunks/md-14.js +1 -1
- package/dist/chunks/md-17.js +1 -1
- package/dist/chunks/md-44.js +1 -1
- package/dist/chunks/md-51.js +4 -4
- package/dist/chunks/md-6.js +3 -3
- package/dist/chunks/md-86.js +1 -1
- package/dist/types/components/button/Button.d.ts +2 -0
- package/dist/types/components/input/Input.d.ts +1 -0
- package/dist/types/components/theme/Theme.d.ts +2 -2
- package/package.json +1 -1
|
@@ -54,6 +54,7 @@ export declare namespace Button {
|
|
|
54
54
|
ariaHaspopup: string;
|
|
55
55
|
ariaPressed: string;
|
|
56
56
|
circle: boolean;
|
|
57
|
+
rounded: boolean;
|
|
57
58
|
color: Button.color;
|
|
58
59
|
containerLarge: boolean;
|
|
59
60
|
disabled: boolean;
|
|
@@ -86,6 +87,7 @@ export declare namespace Button {
|
|
|
86
87
|
get buttonClassMap(): {
|
|
87
88
|
[x: string]: boolean;
|
|
88
89
|
"md-button--circle": boolean;
|
|
90
|
+
"md-button--rounded": boolean;
|
|
89
91
|
"md-button--none": boolean;
|
|
90
92
|
"md-button--outline": boolean;
|
|
91
93
|
active: boolean;
|
|
@@ -25,7 +25,7 @@ declare global {
|
|
|
25
25
|
replaceSync: Function;
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
export type ThemeName = "momentum" | "lumos" | "momentumV2"
|
|
28
|
+
export type ThemeName = "momentum" | "lumos" | "momentumV2";
|
|
29
29
|
export declare const ThemeNameValues: ThemeName[];
|
|
30
30
|
export declare namespace Theme {
|
|
31
31
|
type Attributes = {
|
|
@@ -43,7 +43,7 @@ export declare namespace Theme {
|
|
|
43
43
|
class ELEMENT extends LitElement {
|
|
44
44
|
darkTheme: boolean;
|
|
45
45
|
lumos: boolean;
|
|
46
|
-
theme
|
|
46
|
+
theme?: ThemeName;
|
|
47
47
|
private activeTheme;
|
|
48
48
|
virtualWrapper: HTMLDivElement;
|
|
49
49
|
virtualReference: HTMLDivElement;
|