kempo-ui 0.1.5 → 0.1.6
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.
|
@@ -5,4 +5,8 @@ import ShadowComponent from"./ShadowComponent.js";import{html,css}from"../lit-al
|
|
|
5
5
|
<option value="dark">Dark</option>
|
|
6
6
|
<option value="auto">System Default</option>
|
|
7
7
|
</select>
|
|
8
|
-
`}static
|
|
8
|
+
`}static styles=css`
|
|
9
|
+
:host {
|
|
10
|
+
display: block;
|
|
11
|
+
}
|
|
12
|
+
`;static setTheme(e){theme.set(e)}static getCurrentTheme(){return theme.get()}static getCalculatedCurrentTheme(){return theme.getCalculated()}}customElements.define("k-theme-select",ThemeSelect);
|
|
@@ -5,4 +5,8 @@ import ShadowComponent from"./ShadowComponent.js";import{html,css}from"../lit-al
|
|
|
5
5
|
<option value="dark">Dark</option>
|
|
6
6
|
<option value="auto">System Default</option>
|
|
7
7
|
</select>
|
|
8
|
-
`}static
|
|
8
|
+
`}static styles=css`
|
|
9
|
+
:host {
|
|
10
|
+
display: block;
|
|
11
|
+
}
|
|
12
|
+
`;static setTheme(e){theme.set(e)}static getCurrentTheme(){return theme.get()}static getCalculatedCurrentTheme(){return theme.getCalculated()}}customElements.define("k-theme-select",ThemeSelect);
|
package/package.json
CHANGED