@momentum-design/components 0.4.2 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/browser/index.js +10 -10
- package/dist/browser/index.js.map +2 -2
- package/dist/components/themeprovider/themeprovider.component.d.ts +0 -1
- package/dist/components/themeprovider/themeprovider.component.js +0 -5
- package/dist/components/themeprovider/themeprovider.constants.d.ts +0 -1
- package/dist/components/themeprovider/themeprovider.constants.js +0 -1
- package/package.json +1 -1
@@ -48,7 +48,6 @@ declare class ThemeProvider extends Provider<ThemeProviderContext> {
|
|
48
48
|
* Default: 'mds-theme-stable-darkWebex'
|
49
49
|
*/
|
50
50
|
themeclass: string;
|
51
|
-
connectedCallback(): void;
|
52
51
|
protected updated(changedProperties: Map<string, any>): void;
|
53
52
|
/**
|
54
53
|
* Update all observing components of this
|
@@ -53,11 +53,6 @@ class ThemeProvider extends models_1.Provider {
|
|
53
53
|
static get Context() {
|
54
54
|
return themeprovider_context_1.default.context;
|
55
55
|
}
|
56
|
-
connectedCallback() {
|
57
|
-
super.connectedCallback();
|
58
|
-
// Set the default typography class
|
59
|
-
this.classList.add(themeprovider_constants_1.DEFAULTS.TYPOGRAPHYCLASS);
|
60
|
-
}
|
61
56
|
updated(changedProperties) {
|
62
57
|
super.updated(changedProperties);
|
63
58
|
if (changedProperties.has('themeclass')) {
|
package/package.json
CHANGED