geomui 1.0.35 → 1.0.36

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.
@@ -8,7 +8,7 @@
8
8
  import type { tParam, tParamDef, tParamVal, Figure } from 'geometrix';
9
9
  import { PType, parseParamFile, createParamFile } from 'geometrix';
10
10
  import { sParams } from './stateParams.svelte';
11
- import { downloadParams, generateUrl } from './downloadParams';
11
+ import { downloadParams, generateUrl } from './downloadParams.js';
12
12
  import { browser } from '$app/environment';
13
13
  import { page } from '$app/state';
14
14
  import { asset } from '$app/paths';
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  import type { tPageDef, tAllLink } from 'geometrix';
3
- import { incrStore } from './initStore';
3
+ import { incrStore } from './initStore.js';
4
4
  import DrawingList from './DrawingList.svelte';
5
5
  import ParamDrawExport from './ParamDrawExport.svelte';
6
6
 
@@ -20,7 +20,7 @@
20
20
  import InputParams from './InputParams.svelte';
21
21
  import Drawing from './Drawing.svelte';
22
22
  import SubDesign from './SubDesign.svelte';
23
- import { getContentDownloadParams, downloadParams } from './downloadParams';
23
+ import { getContentDownloadParams, downloadParams } from './downloadParams.js';
24
24
  import { sParams } from './stateParams.svelte';
25
25
  import { afterNavigate } from '$app/navigation';
26
26
 
@@ -1,9 +1,9 @@
1
1
  <script lang="ts">
2
2
  import type { tPosiOrien, tSubDesign, tAllLink } from 'geometrix';
3
3
  import { ffix, radToDeg, paramListToVal } from 'geometrix';
4
- //import { downloadParams, generateUrl } from './downloadParams';
5
- import { downloadParams } from './downloadParams';
6
- import { updateStore } from './initStore';
4
+ //import { downloadParams, generateUrl } from './downloadParams.js';
5
+ import { downloadParams } from './downloadParams.js';
6
+ import { updateStore } from './initStore.js';
7
7
  //import { page } from '$app/state';
8
8
  import { resolve } from '$app/paths';
9
9
  import { goto } from '$app/navigation';
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  import OneDesign from './OneDesign.svelte';
2
- import { initStore } from './initStore';
2
+ import { initStore } from './initStore.ts';
3
3
  export { OneDesign, initStore };
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // Reexport your entry components here
2
2
  import OneDesign from './OneDesign.svelte';
3
- import { initStore } from './initStore';
3
+ import { initStore } from "./initStore.js";
4
4
  export { OneDesign, initStore };
5
5
  //export { OneDesign };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geomui",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "The svelte-library of the webapp-UI of Parametrix",
5
5
  "private": false,
6
6
  "repository": {