@medyll/idae-machine 0.123.0 → 0.124.0
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/main/machineDb.d.ts
CHANGED
|
@@ -103,7 +103,7 @@ export declare class MachineDb {
|
|
|
103
103
|
export declare class IDbCollection {
|
|
104
104
|
#private;
|
|
105
105
|
collection: TplCollectionName;
|
|
106
|
-
constructor(
|
|
106
|
+
constructor(collectionName: TplCollectionName, idbBase: MachineDb, model: IdbqModel);
|
|
107
107
|
get model(): CollectionModel<Record<string, any>>;
|
|
108
108
|
get fields(): TplFields;
|
|
109
109
|
getPresentation(): string;
|
package/dist/main/machineDb.js
CHANGED
|
@@ -252,10 +252,10 @@ export class IDbCollection {
|
|
|
252
252
|
#template;
|
|
253
253
|
#machineDb;
|
|
254
254
|
#model;
|
|
255
|
-
constructor(
|
|
256
|
-
this.collection =
|
|
255
|
+
constructor(collectionName, idbBase, model) {
|
|
256
|
+
this.collection = collectionName;
|
|
257
257
|
this.#machineDb = idbBase;
|
|
258
|
-
this.#model = model[String(
|
|
258
|
+
this.#model = model[String(collectionName)];
|
|
259
259
|
this.#template = this.#model['template'];
|
|
260
260
|
}
|
|
261
261
|
get model() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medyll/idae-machine",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.124.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist",
|
|
6
6
|
"!dist/**/*.test.*",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"scope": "@medyll",
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@huggingface/prettier-plugin-vertical-align": "^0.2.3",
|
|
52
|
-
"@medyll/idae-slotui-svelte": "0.
|
|
53
|
-
"@medyll/idae-idbql": "0.
|
|
52
|
+
"@medyll/idae-slotui-svelte": "0.177.0",
|
|
53
|
+
"@medyll/idae-idbql": "0.174.0"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"dev": "vite dev",
|