@pb33f/cowboy-components 0.0.3 → 0.0.4
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.
|
@@ -8,9 +8,9 @@ import { customElement, property, state } from "lit/decorators.js";
|
|
|
8
8
|
import { html, LitElement } from "lit";
|
|
9
9
|
import { marked } from "marked";
|
|
10
10
|
import { unsafeHTML } from "lit/directives/unsafe-html.js";
|
|
11
|
-
import changelogCss from "./changelog.css";
|
|
12
|
-
import sharedCss from "../../css/shared.css";
|
|
13
|
-
import alertsCss from "../../css/alerts.css";
|
|
11
|
+
import changelogCss from "./changelog.css.js";
|
|
12
|
+
import sharedCss from "../../css/shared.css.js";
|
|
13
|
+
import alertsCss from "../../css/alerts.css.js";
|
|
14
14
|
let ChangelogComponent = class ChangelogComponent extends LitElement {
|
|
15
15
|
constructor() {
|
|
16
16
|
super();
|
|
@@ -7,9 +7,9 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
7
7
|
import { customElement, property } from "lit/decorators.js";
|
|
8
8
|
import { html, LitElement } from "lit";
|
|
9
9
|
import { unsafeHTML } from "lit/directives/unsafe-html.js";
|
|
10
|
-
import { KVViewComponent } from "../kv-view/kv-view";
|
|
11
|
-
import releaseCss from "./release.css";
|
|
12
|
-
import sharedCss from "../../css/shared.css";
|
|
10
|
+
import { KVViewComponent } from "../kv-view/kv-view.js";
|
|
11
|
+
import releaseCss from "./release.css.js";
|
|
12
|
+
import sharedCss from "../../css/shared.css.js";
|
|
13
13
|
let ReleaseComponent = class ReleaseComponent extends LitElement {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
@@ -6,7 +6,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
6
6
|
};
|
|
7
7
|
import { LitElement, html } from 'lit';
|
|
8
8
|
import { customElement } from 'lit/decorators.js';
|
|
9
|
-
import terminalExampleCss from "./terminal-example.css";
|
|
9
|
+
import terminalExampleCss from "./terminal-example.css.js";
|
|
10
10
|
let TerminalExampleComponent = class TerminalExampleComponent extends LitElement {
|
|
11
11
|
getValue() {
|
|
12
12
|
const slot = this.shadowRoot?.querySelector('slot.command');
|
package/package.json
CHANGED