@design.estate/dees-catalog 1.0.173
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/dist_bundle/bundle.js +2704 -0
- package/dist_bundle/bundle.js.map +7 -0
- package/dist_ts_web/00_commitinfo_data.d.ts +8 -0
- package/dist_ts_web/00_commitinfo_data.js +9 -0
- package/dist_ts_web/elements/dees-button-exit.d.ts +7 -0
- package/dist_ts_web/elements/dees-button-exit.js +52 -0
- package/dist_ts_web/elements/dees-button.d.ts +20 -0
- package/dist_ts_web/elements/dees-button.js +215 -0
- package/dist_ts_web/elements/dees-chips.d.ts +18 -0
- package/dist_ts_web/elements/dees-chips.js +124 -0
- package/dist_ts_web/elements/dees-contextmenu.d.ts +18 -0
- package/dist_ts_web/elements/dees-contextmenu.js +173 -0
- package/dist_ts_web/elements/dees-dataview-codebox.d.ts +15 -0
- package/dist_ts_web/elements/dees-dataview-codebox.js +177 -0
- package/dist_ts_web/elements/dees-dataview-statusobject.d.ts +14 -0
- package/dist_ts_web/elements/dees-dataview-statusobject.js +163 -0
- package/dist_ts_web/elements/dees-form-submit.d.ts +17 -0
- package/dist_ts_web/elements/dees-form-submit.js +68 -0
- package/dist_ts_web/elements/dees-form.d.ts +29 -0
- package/dist_ts_web/elements/dees-form.js +173 -0
- package/dist_ts_web/elements/dees-icon.d.ts +76 -0
- package/dist_ts_web/elements/dees-icon.js +153 -0
- package/dist_ts_web/elements/dees-input-checkbox.d.ts +18 -0
- package/dist_ts_web/elements/dees-input-checkbox.js +178 -0
- package/dist_ts_web/elements/dees-input-dropdown.d.ts +30 -0
- package/dist_ts_web/elements/dees-input-dropdown.js +185 -0
- package/dist_ts_web/elements/dees-input-fileupload.d.ts +24 -0
- package/dist_ts_web/elements/dees-input-fileupload.js +196 -0
- package/dist_ts_web/elements/dees-input-quantityselector.d.ts +19 -0
- package/dist_ts_web/elements/dees-input-quantityselector.js +122 -0
- package/dist_ts_web/elements/dees-input-radio.d.ts +19 -0
- package/dist_ts_web/elements/dees-input-radio.js +136 -0
- package/dist_ts_web/elements/dees-input-text.d.ts +26 -0
- package/dist_ts_web/elements/dees-input-text.js +183 -0
- package/dist_ts_web/elements/dees-mobilenavigation.d.ts +27 -0
- package/dist_ts_web/elements/dees-mobilenavigation.js +185 -0
- package/dist_ts_web/elements/dees-pdf.d.ts +17 -0
- package/dist_ts_web/elements/dees-pdf.js +108 -0
- package/dist_ts_web/elements/dees-preview.d.ts +1 -0
- package/dist_ts_web/elements/dees-preview.js +2 -0
- package/dist_ts_web/elements/dees-search.d.ts +1 -0
- package/dist_ts_web/elements/dees-search.js +2 -0
- package/dist_ts_web/elements/dees-searchbox.d.ts +1 -0
- package/dist_ts_web/elements/dees-searchbox.js +2 -0
- package/dist_ts_web/elements/dees-speechbubble.d.ts +18 -0
- package/dist_ts_web/elements/dees-speechbubble.js +153 -0
- package/dist_ts_web/elements/dees-spinner.d.ts +15 -0
- package/dist_ts_web/elements/dees-spinner.js +130 -0
- package/dist_ts_web/elements/dees-stepper.d.ts +29 -0
- package/dist_ts_web/elements/dees-stepper.js +231 -0
- package/dist_ts_web/elements/dees-table.d.ts +28 -0
- package/dist_ts_web/elements/dees-table.js +348 -0
- package/dist_ts_web/elements/dees-toast.d.ts +10 -0
- package/dist_ts_web/elements/dees-toast.js +29 -0
- package/dist_ts_web/elements/dees-tooltip.d.ts +1 -0
- package/dist_ts_web/elements/dees-tooltip.js +2 -0
- package/dist_ts_web/elements/dees-updater.d.ts +16 -0
- package/dist_ts_web/elements/dees-updater.js +91 -0
- package/dist_ts_web/elements/dees-windowlayer.d.ts +17 -0
- package/dist_ts_web/elements/dees-windowlayer.js +85 -0
- package/dist_ts_web/elements/index.d.ts +24 -0
- package/dist_ts_web/elements/index.js +25 -0
- package/dist_ts_web/elements/plugins.d.ts +4 -0
- package/dist_ts_web/elements/plugins.js +7 -0
- package/dist_ts_web/index.d.ts +2 -0
- package/dist_ts_web/index.js +3 -0
- package/license +22 -0
- package/npmextra.json +18 -0
- package/package.json +55 -0
- package/readme.md +39 -0
- package/ts_web/00_commitinfo_data.ts +8 -0
- package/ts_web/elements/dees-button-exit.ts +48 -0
- package/ts_web/elements/dees-button.ts +218 -0
- package/ts_web/elements/dees-chips.ts +124 -0
- package/ts_web/elements/dees-contextmenu.ts +181 -0
- package/ts_web/elements/dees-dataview-codebox.ts +178 -0
- package/ts_web/elements/dees-dataview-statusobject.ts +170 -0
- package/ts_web/elements/dees-form-submit.ts +70 -0
- package/ts_web/elements/dees-form.ts +191 -0
- package/ts_web/elements/dees-icon.ts +204 -0
- package/ts_web/elements/dees-input-checkbox.ts +175 -0
- package/ts_web/elements/dees-input-dropdown.ts +173 -0
- package/ts_web/elements/dees-input-fileupload.ts +195 -0
- package/ts_web/elements/dees-input-quantityselector.ts +113 -0
- package/ts_web/elements/dees-input-radio.ts +125 -0
- package/ts_web/elements/dees-input-text.ts +171 -0
- package/ts_web/elements/dees-mobilenavigation.ts +189 -0
- package/ts_web/elements/dees-pdf.ts +119 -0
- package/ts_web/elements/dees-preview.ts +0 -0
- package/ts_web/elements/dees-search.ts +0 -0
- package/ts_web/elements/dees-searchbox.ts +0 -0
- package/ts_web/elements/dees-speechbubble.ts +157 -0
- package/ts_web/elements/dees-spinner.ts +131 -0
- package/ts_web/elements/dees-stepper.ts +262 -0
- package/ts_web/elements/dees-table.ts +360 -0
- package/ts_web/elements/dees-toast.ts +26 -0
- package/ts_web/elements/dees-tooltip.ts +1 -0
- package/ts_web/elements/dees-updater.ts +90 -0
- package/ts_web/elements/dees-windowlayer.ts +85 -0
- package/ts_web/elements/index.ts +24 -0
- package/ts_web/elements/plugins.ts +13 -0
- package/ts_web/index.ts +2 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DeesElement, type TemplateResult, type CSSResult } from '@design.estate/dees-element';
|
|
2
|
+
import './dees-windowlayer';
|
|
3
|
+
declare global {
|
|
4
|
+
interface HTMLElementTagNameMap {
|
|
5
|
+
'dees-updater': DeesUpdater;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
export declare class DeesUpdater extends DeesElement {
|
|
9
|
+
static demo: () => TemplateResult<1>;
|
|
10
|
+
currentVersion: string;
|
|
11
|
+
updatedVersion: string;
|
|
12
|
+
constructor();
|
|
13
|
+
static styles: CSSResult[];
|
|
14
|
+
render(): TemplateResult;
|
|
15
|
+
private windowLayerClicked;
|
|
16
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
import { customElement, DeesElement, html, property, } from '@design.estate/dees-element';
|
|
11
|
+
import * as domtools from '@design.estate/dees-domtools';
|
|
12
|
+
import './dees-windowlayer';
|
|
13
|
+
import { css, cssManager } from '@design.estate/dees-element';
|
|
14
|
+
export let DeesUpdater = class DeesUpdater extends DeesElement {
|
|
15
|
+
static { this.demo = () => html `<dees-updater></dees-updater>`; }
|
|
16
|
+
constructor() {
|
|
17
|
+
super();
|
|
18
|
+
domtools.elementBasic.setup();
|
|
19
|
+
}
|
|
20
|
+
static { this.styles = [
|
|
21
|
+
cssManager.defaultStyles,
|
|
22
|
+
css `
|
|
23
|
+
.modalContainer {
|
|
24
|
+
will-change: transform;
|
|
25
|
+
position: relative;
|
|
26
|
+
background: ${cssManager.bdTheme('#eeeeeb', '#222')};
|
|
27
|
+
margin: auto;
|
|
28
|
+
max-width: 800px;
|
|
29
|
+
border-radius: 3px;
|
|
30
|
+
border-top: 1px solid ${cssManager.bdTheme('#eeeeeb', '#333')};
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.headingContainer {
|
|
34
|
+
display: flex;
|
|
35
|
+
justify-content: center;
|
|
36
|
+
align-items: center;
|
|
37
|
+
padding: 40px 40px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
h1 {
|
|
41
|
+
margin: none;
|
|
42
|
+
font-size: 20px;
|
|
43
|
+
color: ${cssManager.bdTheme('#333', '#fff')};
|
|
44
|
+
margin-left: 20px;
|
|
45
|
+
font-weight: normal;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.buttonContainer {
|
|
49
|
+
display: grid;
|
|
50
|
+
grid-template-columns: 50% 50%;
|
|
51
|
+
}
|
|
52
|
+
`
|
|
53
|
+
]; }
|
|
54
|
+
render() {
|
|
55
|
+
return html `
|
|
56
|
+
<dees-windowlayer @clicked="${this.windowLayerClicked}">
|
|
57
|
+
<div class="modalContainer">
|
|
58
|
+
<div class="headingContainer">
|
|
59
|
+
<dees-spinner .size=${60}></dees-spinner>
|
|
60
|
+
<h1>Updating the application...</h1>
|
|
61
|
+
</div>
|
|
62
|
+
<div class="buttonContainer">
|
|
63
|
+
<dees-button>More info</dees-button>
|
|
64
|
+
<dees-button>Changelog</dees-button>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
</dees-windowlayer>>
|
|
68
|
+
`;
|
|
69
|
+
}
|
|
70
|
+
windowLayerClicked() {
|
|
71
|
+
const windowLayer = this.shadowRoot.querySelector('dees-windowlayer');
|
|
72
|
+
windowLayer.toggleVisibility();
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
__decorate([
|
|
76
|
+
property({
|
|
77
|
+
type: String,
|
|
78
|
+
}),
|
|
79
|
+
__metadata("design:type", String)
|
|
80
|
+
], DeesUpdater.prototype, "currentVersion", void 0);
|
|
81
|
+
__decorate([
|
|
82
|
+
property({
|
|
83
|
+
type: String,
|
|
84
|
+
}),
|
|
85
|
+
__metadata("design:type", String)
|
|
86
|
+
], DeesUpdater.prototype, "updatedVersion", void 0);
|
|
87
|
+
DeesUpdater = __decorate([
|
|
88
|
+
customElement('dees-updater'),
|
|
89
|
+
__metadata("design:paramtypes", [])
|
|
90
|
+
], DeesUpdater);
|
|
91
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVlcy11cGRhdGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHNfd2ViL2VsZW1lbnRzL2RlZXMtdXBkYXRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7Ozs7QUFBQSxPQUFPLEVBQUUsYUFBYSxFQUFFLFdBQVcsRUFBdUIsSUFBSSxFQUFFLFFBQVEsR0FBbUIsTUFBTSw2QkFBNkIsQ0FBQztBQUUvSCxPQUFPLEtBQUssUUFBUSxNQUFNLDhCQUE4QixDQUFDO0FBR3pELE9BQU8sb0JBQW9CLENBQUM7QUFDNUIsT0FBTyxFQUFFLEdBQUcsRUFBRSxVQUFVLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQVN2RCxXQUFNLFdBQVcsR0FBakIsTUFBTSxXQUFZLFNBQVEsV0FBVzthQUM1QixTQUFJLEdBQUcsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFBLCtCQUErQixBQUE1QyxDQUE2QztJQVkvRDtRQUNFLEtBQUssRUFBRSxDQUFDO1FBQ1IsUUFBUSxDQUFDLFlBQVksQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNoQyxDQUFDO2FBRWEsV0FBTSxHQUFHO1FBQ3JCLFVBQVUsQ0FBQyxhQUFhO1FBQ3hCLEdBQUcsQ0FBQTs7Ozt3QkFJaUIsVUFBVSxDQUFDLE9BQU8sQ0FBQyxTQUFTLEVBQUUsTUFBTSxDQUFDOzs7O2tDQUkzQixVQUFVLENBQUMsT0FBTyxDQUFDLFNBQVMsRUFBRSxNQUFNLENBQUM7Ozs7Ozs7Ozs7Ozs7bUJBYXBELFVBQVUsQ0FBQyxPQUFPLENBQUMsTUFBTSxFQUFFLE1BQU0sQ0FBQzs7Ozs7Ozs7O0tBU2hEO0tBQ0YsQUFqQ21CLENBaUNuQjtJQUVNLE1BQU07UUFDWCxPQUFPLElBQUksQ0FBQTtvQ0FDcUIsSUFBSSxDQUFDLGtCQUFrQjs7O2tDQUd6QixFQUFFOzs7Ozs7Ozs7S0FTL0IsQ0FBQztJQUNKLENBQUM7SUFFTyxrQkFBa0I7UUFDeEIsTUFBTSxXQUFXLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsa0JBQWtCLENBQUMsQ0FBQztRQUN0RSxXQUFXLENBQUMsZ0JBQWdCLEVBQUUsQ0FBQztJQUNqQyxDQUFDOztBQW5FRDtJQUhDLFFBQVEsQ0FBQztRQUNSLElBQUksRUFBRSxNQUFNO0tBQ2IsQ0FBQzs7bURBQ3FCO0FBS3ZCO0lBSEMsUUFBUSxDQUFDO1FBQ1IsSUFBSSxFQUFFLE1BQU07S0FDYixDQUFDOzttREFDcUI7QUFYWixXQUFXO0lBRHZCLGFBQWEsQ0FBQyxjQUFjLENBQUM7O0dBQ2pCLFdBQVcsQ0EwRXZCIn0=
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { DeesElement, type TemplateResult } from '@design.estate/dees-element';
|
|
2
|
+
declare global {
|
|
3
|
+
interface HTMLElementTagNameMap {
|
|
4
|
+
'dees-windowlayer': DeesWindowLayer;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
export declare class DeesWindowLayer extends DeesElement {
|
|
8
|
+
static demo: () => TemplateResult<1>;
|
|
9
|
+
visible: boolean;
|
|
10
|
+
constructor();
|
|
11
|
+
render(): TemplateResult;
|
|
12
|
+
firstUpdated(): void;
|
|
13
|
+
dispatchClicked(): void;
|
|
14
|
+
toggleVisibility(): void;
|
|
15
|
+
show(): Promise<void>;
|
|
16
|
+
hide(): Promise<void>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
|
+
};
|
|
10
|
+
import { customElement, DeesElement, html, property, } from '@design.estate/dees-element';
|
|
11
|
+
import * as domtools from '@design.estate/dees-domtools';
|
|
12
|
+
export let DeesWindowLayer = class DeesWindowLayer extends DeesElement {
|
|
13
|
+
// STATIC
|
|
14
|
+
static { this.demo = () => html `<dees-windowlayer></dees-windowlayer>`; }
|
|
15
|
+
constructor() {
|
|
16
|
+
super();
|
|
17
|
+
// INSTANCE
|
|
18
|
+
this.visible = false;
|
|
19
|
+
domtools.elementBasic.setup();
|
|
20
|
+
}
|
|
21
|
+
render() {
|
|
22
|
+
return html `
|
|
23
|
+
${domtools.elementBasic.styles}
|
|
24
|
+
<style>
|
|
25
|
+
.windowOverlay {
|
|
26
|
+
transition: all 0.3s;
|
|
27
|
+
will-change: transform;
|
|
28
|
+
position: fixed;
|
|
29
|
+
top: 0px;
|
|
30
|
+
left: 0px;
|
|
31
|
+
height: 100vh;
|
|
32
|
+
width: 100vw;
|
|
33
|
+
display: flex;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
align-items: center;
|
|
36
|
+
background: rgba(0, 0, 0, 0.0);
|
|
37
|
+
backdrop-filter: brightness(1);
|
|
38
|
+
pointer-events: none;
|
|
39
|
+
z-index: 200;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.visible {
|
|
43
|
+
background: rgba(0, 0, 0, 0.2);
|
|
44
|
+
backdrop-filter: brightness(0.3);
|
|
45
|
+
pointer-events: all;
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
<div @click=${this.dispatchClicked} class="windowOverlay ${this.visible ? 'visible' : null}">
|
|
49
|
+
<slot></slot>
|
|
50
|
+
</div>
|
|
51
|
+
`;
|
|
52
|
+
}
|
|
53
|
+
firstUpdated() {
|
|
54
|
+
setTimeout(() => {
|
|
55
|
+
this.visible = true;
|
|
56
|
+
}, 100);
|
|
57
|
+
}
|
|
58
|
+
dispatchClicked() {
|
|
59
|
+
this.dispatchEvent(new CustomEvent('clicked'));
|
|
60
|
+
}
|
|
61
|
+
toggleVisibility() {
|
|
62
|
+
this.visible = !this.visible;
|
|
63
|
+
}
|
|
64
|
+
async show() {
|
|
65
|
+
const domtools = await this.domtoolsPromise;
|
|
66
|
+
await domtools.convenience.smartdelay.delayFor(0);
|
|
67
|
+
this.visible = true;
|
|
68
|
+
}
|
|
69
|
+
async hide() {
|
|
70
|
+
const domtools = await this.domtoolsPromise;
|
|
71
|
+
await domtools.convenience.smartdelay.delayFor(0);
|
|
72
|
+
this.visible = false;
|
|
73
|
+
}
|
|
74
|
+
};
|
|
75
|
+
__decorate([
|
|
76
|
+
property({
|
|
77
|
+
type: Boolean
|
|
78
|
+
}),
|
|
79
|
+
__metadata("design:type", Object)
|
|
80
|
+
], DeesWindowLayer.prototype, "visible", void 0);
|
|
81
|
+
DeesWindowLayer = __decorate([
|
|
82
|
+
customElement('dees-windowlayer'),
|
|
83
|
+
__metadata("design:paramtypes", [])
|
|
84
|
+
], DeesWindowLayer);
|
|
85
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVlcy13aW5kb3dsYXllci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3RzX3dlYi9lbGVtZW50cy9kZWVzLXdpbmRvd2xheWVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7OztBQUFBLE9BQU8sRUFBRSxhQUFhLEVBQUUsV0FBVyxFQUF1QixJQUFJLEVBQUUsUUFBUSxHQUFtQixNQUFNLDZCQUE2QixDQUFDO0FBRS9ILE9BQU8sS0FBSyxRQUFRLE1BQU0sOEJBQThCLENBQUM7QUFTbEQsV0FBTSxlQUFlLEdBQXJCLE1BQU0sZUFBZ0IsU0FBUSxXQUFXO0lBQzlDLFNBQVM7YUFDSyxTQUFJLEdBQUcsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFBLHVDQUF1QyxBQUFwRCxDQUFxRDtJQVF2RTtRQUNFLEtBQUssRUFBRSxDQUFDO1FBUFYsV0FBVztRQUlKLFlBQU8sR0FBRyxLQUFLLENBQUM7UUFJckIsUUFBUSxDQUFDLFlBQVksQ0FBQyxLQUFLLEVBQUUsQ0FBQztJQUNoQyxDQUFDO0lBRU0sTUFBTTtRQUNYLE9BQU8sSUFBSSxDQUFBO1FBQ1AsUUFBUSxDQUFDLFlBQVksQ0FBQyxNQUFNOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O29CQXlCaEIsSUFBSSxDQUFDLGVBQWUseUJBQXlCLElBQUksQ0FBQyxPQUFPLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsSUFBSTs7O0tBRzNGLENBQUM7SUFDSixDQUFDO0lBRUQsWUFBWTtRQUNWLFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFDZCxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQztRQUN0QixDQUFDLEVBQUUsR0FBRyxDQUFDLENBQUM7SUFDVixDQUFDO0lBRUQsZUFBZTtRQUNiLElBQUksQ0FBQyxhQUFhLENBQUMsSUFBSSxXQUFXLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQztJQUNqRCxDQUFDO0lBRU0sZ0JBQWdCO1FBQ3JCLElBQUksQ0FBQyxPQUFPLEdBQUcsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDO0lBQy9CLENBQUM7SUFFTSxLQUFLLENBQUMsSUFBSTtRQUNmLE1BQU0sUUFBUSxHQUFHLE1BQU0sSUFBSSxDQUFDLGVBQWUsQ0FBQztRQUM1QyxNQUFNLFFBQVEsQ0FBQyxXQUFXLENBQUMsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQztRQUNsRCxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQztJQUN0QixDQUFDO0lBRU0sS0FBSyxDQUFDLElBQUk7UUFDZixNQUFNLFFBQVEsR0FBRyxNQUFNLElBQUksQ0FBQyxlQUFlLENBQUM7UUFDNUMsTUFBTSxRQUFRLENBQUMsV0FBVyxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUM7UUFDbEQsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUM7SUFDdkIsQ0FBQzs7QUFoRU07SUFITixRQUFRLENBQUM7UUFDUixJQUFJLEVBQUUsT0FBTztLQUNkLENBQUM7O2dEQUNxQjtBQVJaLGVBQWU7SUFEM0IsYUFBYSxDQUFDLGtCQUFrQixDQUFDOztHQUNyQixlQUFlLENBeUUzQiJ9
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export * from './dees-button-exit.js';
|
|
2
|
+
export * from './dees-button.js';
|
|
3
|
+
export * from './dees-chips.js';
|
|
4
|
+
export * from './dees-contextmenu.js';
|
|
5
|
+
export * from './dees-dataview-codebox.js';
|
|
6
|
+
export * from './dees-dataview-statusobject.js';
|
|
7
|
+
export * from './dees-form.js';
|
|
8
|
+
export * from './dees-form-submit.js';
|
|
9
|
+
export * from './dees-icon.js';
|
|
10
|
+
export * from './dees-input-checkbox.js';
|
|
11
|
+
export * from './dees-input-dropdown.js';
|
|
12
|
+
export * from './dees-input-fileupload.js';
|
|
13
|
+
export * from './dees-input-quantityselector.js';
|
|
14
|
+
export * from './dees-input-radio.js';
|
|
15
|
+
export * from './dees-input-text.js';
|
|
16
|
+
export * from './dees-mobilenavigation.js';
|
|
17
|
+
export * from './dees-pdf.js';
|
|
18
|
+
export * from './dees-speechbubble.js';
|
|
19
|
+
export * from './dees-spinner.js';
|
|
20
|
+
export * from './dees-stepper.js';
|
|
21
|
+
export * from './dees-table.js';
|
|
22
|
+
export * from './dees-toast.js';
|
|
23
|
+
export * from './dees-updater.js';
|
|
24
|
+
export * from './dees-windowlayer.js';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export * from './dees-button-exit.js';
|
|
2
|
+
export * from './dees-button.js';
|
|
3
|
+
export * from './dees-chips.js';
|
|
4
|
+
export * from './dees-contextmenu.js';
|
|
5
|
+
export * from './dees-dataview-codebox.js';
|
|
6
|
+
export * from './dees-dataview-statusobject.js';
|
|
7
|
+
export * from './dees-form.js';
|
|
8
|
+
export * from './dees-form-submit.js';
|
|
9
|
+
export * from './dees-icon.js';
|
|
10
|
+
export * from './dees-input-checkbox.js';
|
|
11
|
+
export * from './dees-input-dropdown.js';
|
|
12
|
+
export * from './dees-input-fileupload.js';
|
|
13
|
+
export * from './dees-input-quantityselector.js';
|
|
14
|
+
export * from './dees-input-radio.js';
|
|
15
|
+
export * from './dees-input-text.js';
|
|
16
|
+
export * from './dees-mobilenavigation.js';
|
|
17
|
+
export * from './dees-pdf.js';
|
|
18
|
+
export * from './dees-speechbubble.js';
|
|
19
|
+
export * from './dees-spinner.js';
|
|
20
|
+
export * from './dees-stepper.js';
|
|
21
|
+
export * from './dees-table.js';
|
|
22
|
+
export * from './dees-toast.js';
|
|
23
|
+
export * from './dees-updater.js';
|
|
24
|
+
export * from './dees-windowlayer.js';
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90c193ZWIvZWxlbWVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLGtCQUFrQixDQUFDO0FBQ2pDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyxnQkFBZ0IsQ0FBQztBQUMvQixjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsZ0JBQWdCLENBQUM7QUFDL0IsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsNEJBQTRCLENBQUM7QUFDM0MsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLGlCQUFpQixDQUFDO0FBQ2hDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHVCQUF1QixDQUFDIn0=
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// @push.rocks scope
|
|
2
|
+
import * as smartpromise from '@push.rocks/smartpromise';
|
|
3
|
+
export { smartpromise, };
|
|
4
|
+
// @tsclass scope
|
|
5
|
+
import * as tsclass from '@tsclass/tsclass';
|
|
6
|
+
export { tsclass };
|
|
7
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGx1Z2lucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3RzX3dlYi9lbGVtZW50cy9wbHVnaW5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLG9CQUFvQjtBQUNwQixPQUFPLEtBQUssWUFBWSxNQUFNLDBCQUEwQixDQUFDO0FBRXpELE9BQU8sRUFDTCxZQUFZLEdBQ2IsQ0FBQTtBQUVELGlCQUFpQjtBQUNqQixPQUFPLEtBQUssT0FBTyxNQUFNLGtCQUFrQixDQUFDO0FBRTVDLE9BQU8sRUFDTCxPQUFPLEVBQ1IsQ0FBQSJ9
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './elements/index.js';
|
|
2
|
+
export { commitinfo } from './00_commitinfo_data.js';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi90c193ZWIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0seUJBQXlCLENBQUMifQ==
|
package/license
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2020 Lossless GmbH (hello@lossless.com)
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
5
|
+
in the Software without restriction, including without limitation the rights
|
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in all
|
|
11
|
+
copies or substantial portions of the Software. You agree to being mentioned
|
|
12
|
+
as reference by Lossless GmbH. This includes the use of your entity logos
|
|
13
|
+
or profile picture by Lossless GmbH on websites and readme's, also on third party
|
|
14
|
+
pages like gitlab.com or github.com.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
package/npmextra.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"gitzone": {
|
|
3
|
+
"projectType": "wcc",
|
|
4
|
+
"module": {
|
|
5
|
+
"githost": "gitlab.com",
|
|
6
|
+
"gitscope": "design.estate",
|
|
7
|
+
"gitrepo": "dees-catalog",
|
|
8
|
+
"description": "a webcomponents catalog for handling daily stuff on the web",
|
|
9
|
+
"npmPackagename": "@design.estate/dees-catalog",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"projectDomain": "design.estate"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"npmci": {
|
|
15
|
+
"npmGlobalTools": [],
|
|
16
|
+
"npmAccessLevel": "public"
|
|
17
|
+
}
|
|
18
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@design.estate/dees-catalog",
|
|
3
|
+
"version": "1.0.173",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "website for lossless.com",
|
|
6
|
+
"main": "dist_ts_web/index.js",
|
|
7
|
+
"typings": "dist_ts_web/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "tstest test/ --web",
|
|
11
|
+
"build": "tsbuild element --allowimplicitany && tsbundle element --production",
|
|
12
|
+
"watch": "tswatch element",
|
|
13
|
+
"buildDocs": "tsdoc"
|
|
14
|
+
},
|
|
15
|
+
"author": "Lossless GmbH",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@design.estate/dees-domtools": "^2.0.37",
|
|
19
|
+
"@design.estate/dees-element": "^2.0.25",
|
|
20
|
+
"@design.estate/dees-wcctools": "^1.0.78",
|
|
21
|
+
"@fortawesome/fontawesome-svg-core": "^6.4.2",
|
|
22
|
+
"@fortawesome/free-brands-svg-icons": "^6.4.2",
|
|
23
|
+
"@fortawesome/free-regular-svg-icons": "^6.4.2",
|
|
24
|
+
"@fortawesome/free-solid-svg-icons": "^6.4.2",
|
|
25
|
+
"@push.rocks/smartpromise": "^4.0.0",
|
|
26
|
+
"@push.rocks/smartstring": "^4.0.5",
|
|
27
|
+
"@tsclass/tsclass": "^4.0.42",
|
|
28
|
+
"highlight.js": "11.8.0",
|
|
29
|
+
"pdfjs-dist": "^2.15.349"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@gitzone/tsbuild": "^2.1.66",
|
|
33
|
+
"@gitzone/tsbundle": "^2.0.8",
|
|
34
|
+
"@gitzone/tstest": "^1.0.77",
|
|
35
|
+
"@gitzone/tswatch": "^2.0.7",
|
|
36
|
+
"@push.rocks/projectinfo": "^5.0.1",
|
|
37
|
+
"@push.rocks/tapbundle": "^5.0.12",
|
|
38
|
+
"@types/node": "^20.4.8"
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"ts/**/*",
|
|
42
|
+
"ts_web/**/*",
|
|
43
|
+
"dist/**/*",
|
|
44
|
+
"dist_*/**/*",
|
|
45
|
+
"dist_ts/**/*",
|
|
46
|
+
"dist_ts_web/**/*",
|
|
47
|
+
"assets/**/*",
|
|
48
|
+
"cli.js",
|
|
49
|
+
"npmextra.json",
|
|
50
|
+
"readme.md"
|
|
51
|
+
],
|
|
52
|
+
"browserslist": [
|
|
53
|
+
"last 1 chrome versions"
|
|
54
|
+
]
|
|
55
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# @design.estate/dees-catalog
|
|
2
|
+
a webcomponents catalog for handling daily stuff on the web
|
|
3
|
+
|
|
4
|
+
## Availabililty and Links
|
|
5
|
+
* [npmjs.org (npm package)](https://www.npmjs.com/package/@design.estate/dees-catalog)
|
|
6
|
+
* [gitlab.com (source)](https://gitlab.com/design.estate/dees-catalog)
|
|
7
|
+
* [github.com (source mirror)](https://github.com/design.estate/dees-catalog)
|
|
8
|
+
* [docs (typedoc)](https://design.estate.gitlab.io/dees-catalog/)
|
|
9
|
+
|
|
10
|
+
## Status for master
|
|
11
|
+
|
|
12
|
+
Status Category | Status Badge
|
|
13
|
+
-- | --
|
|
14
|
+
GitLab Pipelines | [](https://lossless.cloud)
|
|
15
|
+
GitLab Pipline Test Coverage | [](https://lossless.cloud)
|
|
16
|
+
npm | [](https://lossless.cloud)
|
|
17
|
+
Snyk | [](https://lossless.cloud)
|
|
18
|
+
TypeScript Support | [](https://lossless.cloud)
|
|
19
|
+
node Support | [](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
|
20
|
+
Code Style | [](https://lossless.cloud)
|
|
21
|
+
PackagePhobia (total standalone install weight) | [](https://lossless.cloud)
|
|
22
|
+
PackagePhobia (package size on registry) | [](https://lossless.cloud)
|
|
23
|
+
BundlePhobia (total size when bundled) | [](https://lossless.cloud)
|
|
24
|
+
|
|
25
|
+
## Usage
|
|
26
|
+
|
|
27
|
+
## Contribution
|
|
28
|
+
|
|
29
|
+
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
|
30
|
+
|
|
31
|
+
## Contribution
|
|
32
|
+
|
|
33
|
+
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
|
|
34
|
+
|
|
35
|
+
For further information read the linked docs at the top of this readme.
|
|
36
|
+
|
|
37
|
+
## Legal
|
|
38
|
+
> MIT licensed | **©** [Task Venture Capital GmbH](https://task.vc)
|
|
39
|
+
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import {
|
|
2
|
+
cssManager,
|
|
3
|
+
customElement,
|
|
4
|
+
DeesElement,
|
|
5
|
+
html,
|
|
6
|
+
type TemplateResult,
|
|
7
|
+
css,
|
|
8
|
+
type CSSResult,
|
|
9
|
+
state,
|
|
10
|
+
property
|
|
11
|
+
} from '@design.estate/dees-element';
|
|
12
|
+
|
|
13
|
+
@customElement('dees-button-exit')
|
|
14
|
+
export class DeesButtonExit extends DeesElement {
|
|
15
|
+
// DEMO
|
|
16
|
+
public static demo = () => html`
|
|
17
|
+
<dees-button-exit></dees-button-exit>
|
|
18
|
+
`;
|
|
19
|
+
|
|
20
|
+
// INSTANCE
|
|
21
|
+
@property({
|
|
22
|
+
type: Number
|
|
23
|
+
})
|
|
24
|
+
public size: number = 24;
|
|
25
|
+
|
|
26
|
+
public styles = [
|
|
27
|
+
cssManager.defaultStyles,
|
|
28
|
+
css`
|
|
29
|
+
|
|
30
|
+
`
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
public render (): TemplateResult {
|
|
34
|
+
return html`
|
|
35
|
+
<style>
|
|
36
|
+
.maincontainer {
|
|
37
|
+
position: relative;
|
|
38
|
+
width: ${this.size}px;
|
|
39
|
+
height: ${this.size}px;
|
|
40
|
+
}
|
|
41
|
+
</style>
|
|
42
|
+
<div class="maincontainer">
|
|
43
|
+
<div class="firstLine"></div>
|
|
44
|
+
<div class="secondLine"></div>
|
|
45
|
+
</div>
|
|
46
|
+
`;
|
|
47
|
+
}
|
|
48
|
+
}
|