@design.estate/dees-catalog 1.0.281 → 1.0.282
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 +5 -5
- package/dist_bundle/bundle.js.map +1 -1
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/dees-chart-area.d.ts +1 -1
- package/dist_ts_web/elements/dees-chart-area.demo.js +1 -1
- package/dist_ts_web/elements/dees-chart-area.js +3 -3
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/dees-chart-area.demo.ts +1 -1
- package/ts_web/elements/dees-chart-area.ts +2 -2
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@design.estate/dees-catalog',
|
|
6
|
-
version: '1.0.
|
|
6
|
+
version: '1.0.282',
|
|
7
7
|
description: 'website for lossless.com'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHNfd2ViLzAwX2NvbW1pdGluZm9fZGF0YS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUNILE1BQU0sQ0FBQyxNQUFNLFVBQVUsR0FBRztJQUN4QixJQUFJLEVBQUUsNkJBQTZCO0lBQ25DLE9BQU8sRUFBRSxTQUFTO0lBQ2xCLFdBQVcsRUFBRSwwQkFBMEI7Q0FDeEMsQ0FBQSJ9
|
|
@@ -15,7 +15,7 @@ let DeesChartArea = class DeesChartArea extends DeesElement {
|
|
|
15
15
|
static { this.demo = demoFunc; }
|
|
16
16
|
constructor() {
|
|
17
17
|
super();
|
|
18
|
-
this.
|
|
18
|
+
this.label = 'Untitled Chart';
|
|
19
19
|
domtools.elementBasic.setup();
|
|
20
20
|
}
|
|
21
21
|
static { this.styles = [
|
|
@@ -54,7 +54,7 @@ let DeesChartArea = class DeesChartArea extends DeesElement {
|
|
|
54
54
|
]; }
|
|
55
55
|
render() {
|
|
56
56
|
return html ` <div class="mainbox">
|
|
57
|
-
<div class="chartTitle">${this.
|
|
57
|
+
<div class="chartTitle">${this.label}</div>
|
|
58
58
|
<div class="chartContainer"></div>
|
|
59
59
|
</div> `;
|
|
60
60
|
}
|
|
@@ -171,7 +171,7 @@ __decorate([
|
|
|
171
171
|
__decorate([
|
|
172
172
|
property(),
|
|
173
173
|
__metadata("design:type", String)
|
|
174
|
-
], DeesChartArea.prototype, "
|
|
174
|
+
], DeesChartArea.prototype, "label", void 0);
|
|
175
175
|
DeesChartArea = __decorate([
|
|
176
176
|
customElement('dees-chart-area'),
|
|
177
177
|
__metadata("design:paramtypes", [])
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@ export class DeesChartArea extends DeesElement {
|
|
|
30
30
|
public chart: ApexCharts;
|
|
31
31
|
|
|
32
32
|
@property()
|
|
33
|
-
public
|
|
33
|
+
public label: string = 'Untitled Chart';
|
|
34
34
|
|
|
35
35
|
constructor() {
|
|
36
36
|
super();
|
|
@@ -74,7 +74,7 @@ export class DeesChartArea extends DeesElement {
|
|
|
74
74
|
|
|
75
75
|
public render(): TemplateResult {
|
|
76
76
|
return html` <div class="mainbox">
|
|
77
|
-
<div class="chartTitle">${this.
|
|
77
|
+
<div class="chartTitle">${this.label}</div>
|
|
78
78
|
<div class="chartContainer"></div>
|
|
79
79
|
</div> `;
|
|
80
80
|
}
|