@vandeurenglenn/lite-elements 0.3.23 → 0.3.25
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/exports/bundle/column-D2XB0lDz.js +1 -0
- package/exports/bundle/demo-shell.js +1 -1
- package/exports/bundle/drawer-layout.js +2 -2
- package/exports/bundle/elements.js +1 -1
- package/exports/bundle/notification-Dwr0-l4e.js +91 -0
- package/exports/bundle/notification.js +1 -0
- package/exports/bundle/notifications.js +359 -0
- package/exports/bundle/row-DNgwBcX5.js +33 -0
- package/exports/bundle/summary-mirror.js +20 -0
- package/exports/bundle/summary.js +25 -0
- package/exports/bundle/top-app-bar.js +82 -1
- package/exports/demo-shell.js +6 -0
- package/exports/elements.d.ts +5 -1
- package/exports/elements.js +6 -0
- package/exports/notification/notification.d.ts +13 -0
- package/exports/notification/notifications.d.ts +16 -0
- package/exports/notification.js +100 -0
- package/exports/notifications.js +146 -0
- package/exports/summary/summary-mirror.d.ts +8 -0
- package/exports/summary/summary.d.ts +5 -0
- package/exports/summary-mirror.js +67 -0
- package/exports/summary.js +55 -0
- package/package.json +493 -461
- package/exports/bundle/top-app-bar-DZJ8jFM2.js +0 -114
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { _ as __esDecorate, a as __runInitializers } from './tslib.es6-CFl_-KPR.js';
|
|
2
|
+
import { customElement, css, html, LiteElement } from '@vandeurenglenn/lite';
|
|
3
|
+
|
|
4
|
+
let CustomSummary = (() => {
|
|
5
|
+
let _classDecorators = [customElement('custom-summary')];
|
|
6
|
+
let _classDescriptor;
|
|
7
|
+
let _classExtraInitializers = [];
|
|
8
|
+
let _classThis;
|
|
9
|
+
let _classSuper = LiteElement;
|
|
10
|
+
(class extends _classSuper {
|
|
11
|
+
static { _classThis = this; }
|
|
12
|
+
static {
|
|
13
|
+
const _metadata = typeof Symbol === "function" && Symbol.metadata ? Object.create(_classSuper[Symbol.metadata] ?? null) : void 0;
|
|
14
|
+
__esDecorate(null, _classDescriptor = { value: _classThis }, _classDecorators, { kind: "class", name: _classThis.name, metadata: _metadata }, null, _classExtraInitializers);
|
|
15
|
+
_classThis = _classDescriptor.value;
|
|
16
|
+
if (_metadata) Object.defineProperty(_classThis, Symbol.metadata, { enumerable: true, configurable: true, writable: true, value: _metadata });
|
|
17
|
+
}
|
|
18
|
+
static styles = [
|
|
19
|
+
css `
|
|
20
|
+
:host {
|
|
21
|
+
display: flex;
|
|
22
|
+
flex-direction: column;
|
|
23
|
+
height: 100%;
|
|
24
|
+
min-height: 400px;
|
|
25
|
+
max-width: 1200px;
|
|
26
|
+
}
|
|
27
|
+
::slotted([slot='left']) {
|
|
28
|
+
padding-bottom: 24px;
|
|
29
|
+
}
|
|
30
|
+
@media (min-width: 1200px) {
|
|
31
|
+
:host {
|
|
32
|
+
flex-direction: row;
|
|
33
|
+
width: 80%;
|
|
34
|
+
}
|
|
35
|
+
::slotted([slot='left']) {
|
|
36
|
+
padding-right: 24px;
|
|
37
|
+
padding-bottom: 0;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
`
|
|
41
|
+
];
|
|
42
|
+
render() {
|
|
43
|
+
return html `
|
|
44
|
+
<slot name="left"></slot>
|
|
45
|
+
<slot name="right"></slot>
|
|
46
|
+
`;
|
|
47
|
+
}
|
|
48
|
+
static {
|
|
49
|
+
__runInitializers(_classThis, _classExtraInitializers);
|
|
50
|
+
}
|
|
51
|
+
});
|
|
52
|
+
return _classThis;
|
|
53
|
+
})();
|
|
54
|
+
|
|
55
|
+
export { CustomSummary };
|