akpm-datapoint-front 0.0.14 → 0.0.16
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/CDN/dp-component.js +7 -4
- package/package.json +2 -2
package/CDN/dp-component.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Version: 0.0.
|
|
1
|
+
/* Version: 0.0.16 */
|
|
2
2
|
var pn = Object.defineProperty;
|
|
3
3
|
var A0 = (r) => {
|
|
4
4
|
throw TypeError(r);
|
|
@@ -4669,7 +4669,7 @@ function Ki(r, e) {
|
|
|
4669
4669
|
Ge(["change"]);
|
|
4670
4670
|
Ce(Ki, { id: {} }, [], [], !0);
|
|
4671
4671
|
class pa {
|
|
4672
|
-
constructor(e, t, a, s, i, n, o, c) {
|
|
4672
|
+
constructor(e, t, a, s, i, n, o, c, v) {
|
|
4673
4673
|
Ke(this, "_id");
|
|
4674
4674
|
Ke(this, "name");
|
|
4675
4675
|
// Univoco per azienda
|
|
@@ -4679,8 +4679,9 @@ class pa {
|
|
|
4679
4679
|
Ke(this, "year");
|
|
4680
4680
|
Ke(this, "confirmed");
|
|
4681
4681
|
Ke(this, "html");
|
|
4682
|
+
Ke(this, "css");
|
|
4682
4683
|
Ke(this, "data");
|
|
4683
|
-
this._id = e, this.name = t, this.datapointId = a, this.companyId = s, this.year = i, this.confirmed = n, this.html = o, this.data =
|
|
4684
|
+
this._id = e, this.name = t, this.datapointId = a, this.companyId = s, this.year = i, this.confirmed = n, this.html = o, this.css = c, this.data = v;
|
|
4684
4685
|
}
|
|
4685
4686
|
toJSON() {
|
|
4686
4687
|
return {
|
|
@@ -4691,6 +4692,7 @@ class pa {
|
|
|
4691
4692
|
year: this.year,
|
|
4692
4693
|
confirmed: this.confirmed,
|
|
4693
4694
|
html: this.html,
|
|
4695
|
+
css: this.css,
|
|
4694
4696
|
data: this.data
|
|
4695
4697
|
};
|
|
4696
4698
|
}
|
|
@@ -4703,6 +4705,7 @@ class pa {
|
|
|
4703
4705
|
e.year,
|
|
4704
4706
|
e.confirmed,
|
|
4705
4707
|
e.html,
|
|
4708
|
+
e.css,
|
|
4706
4709
|
e.data
|
|
4707
4710
|
);
|
|
4708
4711
|
}
|
|
@@ -17227,7 +17230,7 @@ function Ko(r, e) {
|
|
|
17227
17230
|
{
|
|
17228
17231
|
var E = (B) => {
|
|
17229
17232
|
var C = $e(), $ = ye(C);
|
|
17230
|
-
ht($, () => o().html), N(B, C);
|
|
17233
|
+
ht($, () => o().html + o().css), N(B, C);
|
|
17231
17234
|
}, j = (B) => {
|
|
17232
17235
|
var C = $e(), $ = ye(C);
|
|
17233
17236
|
{
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "akpm-datapoint-front",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"dev": "vite dev",
|
|
6
|
-
"build": "vite build
|
|
6
|
+
"build": "vite build",
|
|
7
7
|
"preview": "vite preview",
|
|
8
8
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
9
9
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|