@medyll/idae-machine 0.104.0 → 0.106.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/db/dbFields.js
CHANGED
package/dist/db/dbSchema.js
CHANGED
|
@@ -452,4 +452,4 @@ export const schemeModel = {
|
|
|
452
452
|
...schemeModelDb
|
|
453
453
|
};
|
|
454
454
|
const idbqStore = createIdbqDb(schemeModel, 13);
|
|
455
|
-
export const { idbql, idbqlState, idbDatabase, idbqModel } = idbqStore.create('
|
|
455
|
+
export const { idbql, idbqlState, idbDatabase, idbqModel } = idbqStore.create('idae-machine');
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
-->
|
|
5
5
|
<script lang="ts" generics="COL">
|
|
6
6
|
import { Button, openWindow } from '@medyll/idae-slotui-svelte';
|
|
7
|
-
import CreateUpdate from '
|
|
7
|
+
import CreateUpdate from './CreateUpdate.svelte';
|
|
8
8
|
import { type CreateUpdateProps } from './types';
|
|
9
9
|
|
|
10
10
|
type CollectionButtonProps = {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
-->
|
|
16
16
|
<script lang="ts">
|
|
17
|
-
import { IDbCollections } from '../db/dbFields';
|
|
17
|
+
import { IDbCollections } from '../db/dbFields.js';
|
|
18
18
|
import { schemeModel, idbqlState } from '../db/dbSchema';
|
|
19
19
|
import type { Tpl, TplCollectionName, Where } from '@medyll/idae-idbql';
|
|
20
20
|
import { Looper } from '@medyll/idae-slotui-svelte';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!-- Component: CollectionFieldValue.svelte (ancien nom CollectionFieldInput.svelte) -->
|
|
2
2
|
<script lang="ts" generics="COL = Record<string,any>">
|
|
3
3
|
// Importation des types et composants nécessaires
|
|
4
|
-
import { IDbCollectionFieldForge, IDbCollectionValues } from '../db/dbFields';
|
|
4
|
+
import { IDbCollectionFieldForge, IDbCollectionValues } from '../db/dbFields.js';
|
|
5
5
|
import type { TplCollectionName } from '@medyll/idae-idbql';
|
|
6
6
|
import { IconButton } from '@medyll/idae-slotui-svelte';
|
|
7
7
|
import { getAllContexts, getContext } from 'svelte';
|