firstly 0.0.16-next.0 → 0.0.16-next.1
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/CHANGELOG.md +8 -0
- package/esm/ui/Grid2.svelte +2 -2
- package/esm/ui/Grid2.svelte.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# firstly
|
|
2
2
|
|
|
3
|
+
## 0.0.16-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#108](https://github.com/jycouet/firstly/pull/108)
|
|
8
|
+
[`cf100f4`](https://github.com/jycouet/firstly/commit/cf100f40a8462eca51acff3ac5d8779da78816ec)
|
|
9
|
+
Thanks [@jycouet](https://github.com/jycouet)! - fix import paths
|
|
10
|
+
|
|
3
11
|
## 0.0.16-next.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/esm/ui/Grid2.svelte
CHANGED
|
@@ -3,8 +3,6 @@
|
|
|
3
3
|
|
|
4
4
|
import type { EntityOrderBy } from 'remult'
|
|
5
5
|
|
|
6
|
-
import { intersection } from '../../lib/svelte/actions/intersection.js'
|
|
7
|
-
import type { FF_Repo } from '../../lib/svelte/FF_Repo.svelte.js'
|
|
8
6
|
import type { Cell } from '../cellsBuildor.js'
|
|
9
7
|
import {
|
|
10
8
|
displayWithDefaultAndSuffix,
|
|
@@ -14,6 +12,8 @@
|
|
|
14
12
|
getFieldMetaType,
|
|
15
13
|
} from '../helper.js'
|
|
16
14
|
import { LibIcon_Delete, LibIcon_Edit } from '../index.js'
|
|
15
|
+
import { intersection } from '../svelte/actions/intersection.js'
|
|
16
|
+
import type { FF_Repo } from '../svelte/FF_Repo.svelte.js'
|
|
17
17
|
import Button from './Button.svelte'
|
|
18
18
|
import Clipboardable from './Clipboardable.svelte'
|
|
19
19
|
import GridLoading from './GridLoading.svelte'
|
package/esm/ui/Grid2.svelte.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { EntityOrderBy } from 'remult';
|
|
2
|
-
import type { FF_Repo } from '../../lib/svelte/FF_Repo.svelte.js';
|
|
3
2
|
import type { Cell } from '../cellsBuildor.js';
|
|
3
|
+
import type { FF_Repo } from '../svelte/FF_Repo.svelte.js';
|
|
4
4
|
declare class __sveltets_Render<T extends Record<any, any>> {
|
|
5
5
|
props(): {
|
|
6
6
|
cells: Cell<T>[];
|