@progressive-development/pd-spa-helper 0.8.4 → 0.8.6
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/store/indexDB.js +0 -3
- package/package.json +9 -9
package/dist/store/indexDB.js
CHANGED
|
@@ -112,7 +112,6 @@ const initDB = (config) => {
|
|
|
112
112
|
dbLogger.info("Upgrade needed", event);
|
|
113
113
|
db = event.target.result;
|
|
114
114
|
switch (event.oldVersion) {
|
|
115
|
-
// first call from client, init db
|
|
116
115
|
case 0:
|
|
117
116
|
db.createObjectStore(USER_COLLECTION, {
|
|
118
117
|
keyPath: "id"
|
|
@@ -121,8 +120,6 @@ const initDB = (config) => {
|
|
|
121
120
|
db.createObjectStore(c.name, c.collectionConf);
|
|
122
121
|
});
|
|
123
122
|
break;
|
|
124
|
-
// depending on our needs, add specific versions here to migrate existing db
|
|
125
|
-
// case X: ....
|
|
126
123
|
default:
|
|
127
124
|
dbLogger.info("Updating database structure for existing version");
|
|
128
125
|
if (!db.objectStoreNames.contains(USER_COLLECTION)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progressive-development/pd-spa-helper",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.6",
|
|
4
4
|
"description": "Webcomponent pd-spa-helper following open-wc recommendations",
|
|
5
5
|
"author": "PD Progressive Development",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@lit/localize": "^0.12.2",
|
|
38
|
-
"@progressive-development/pd-content": "^0.6.
|
|
39
|
-
"@progressive-development/pd-dialog": "^0.6.
|
|
40
|
-
"@progressive-development/pd-forms": "^0.6.
|
|
41
|
-
"@progressive-development/pd-icon": "^0.6.
|
|
42
|
-
"@progressive-development/pd-order": "^0.6.
|
|
43
|
-
"@progressive-development/pd-page": "^0.6.
|
|
38
|
+
"@progressive-development/pd-content": "^0.6.4",
|
|
39
|
+
"@progressive-development/pd-dialog": "^0.6.2",
|
|
40
|
+
"@progressive-development/pd-forms": "^0.6.4",
|
|
41
|
+
"@progressive-development/pd-icon": "^0.6.2",
|
|
42
|
+
"@progressive-development/pd-order": "^0.6.2",
|
|
43
|
+
"@progressive-development/pd-page": "^0.6.2",
|
|
44
44
|
"@progressive-development/pd-shared-styles": "^0.2.1",
|
|
45
|
-
"@progressive-development/pd-wizard": "^0.6.
|
|
45
|
+
"@progressive-development/pd-wizard": "^0.6.2",
|
|
46
46
|
"date-fns": "^2.30.0",
|
|
47
47
|
"firebase": "^10.14.1",
|
|
48
48
|
"lit": "^3.3.0",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"@lit/localize-tools": "^0.6.10",
|
|
59
59
|
"@storybook/addon-essentials": "^8.6.14",
|
|
60
60
|
"@storybook/addon-links": "^8.6.14",
|
|
61
|
-
"@storybook/blocks": "^8.
|
|
61
|
+
"@storybook/blocks": "^8.6.14",
|
|
62
62
|
"@storybook/test": "^8.6.14",
|
|
63
63
|
"@storybook/web-components": "^8.0.10",
|
|
64
64
|
"@storybook/web-components-vite": "^8.6.14",
|