@graphty/layout 1.0.0 → 1.0.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.
@@ -178,7 +178,7 @@
178
178
  </div>
179
179
 
180
180
  <script type="module">
181
- import { arfLayout } from './layout.js';
181
+ import { arfLayout } from '../layout.js';
182
182
 
183
183
  let currentGraph = null;
184
184
  let currentSeed = Math.floor(Math.random() * 1000);
@@ -149,7 +149,7 @@
149
149
  </div>
150
150
 
151
151
  <script type="module">
152
- import { bfsLayout } from './layout.js';
152
+ import { bfsLayout } from '../layout.js';
153
153
 
154
154
  let currentGraph = null;
155
155
 
@@ -149,7 +149,7 @@
149
149
  </div>
150
150
 
151
151
  <script type="module">
152
- import { bipartiteLayout } from './layout.js';
152
+ import { bipartiteLayout } from '../layout.js';
153
153
 
154
154
  let currentGraph = null;
155
155
 
@@ -136,7 +136,7 @@
136
136
  </div>
137
137
 
138
138
  <script type="module">
139
- import { circularLayout } from './layout.js';
139
+ import { circularLayout } from '../layout.js';
140
140
 
141
141
  let currentGraph = null;
142
142
 
@@ -185,7 +185,7 @@
185
185
  </div>
186
186
 
187
187
  <script type="module">
188
- import { forceatlas2Layout } from './layout.js';
188
+ import { forceatlas2Layout } from '../layout.js';
189
189
 
190
190
  let currentGraph = null;
191
191
  let currentSeed = Math.floor(Math.random() * 1000);
@@ -157,7 +157,7 @@
157
157
  </div>
158
158
 
159
159
  <script type="module">
160
- import { kamadaKawaiLayout } from './layout.js';
160
+ import { kamadaKawaiLayout } from '../layout.js';
161
161
 
162
162
  let currentGraph = null;
163
163
  let distances = null;
@@ -147,7 +147,7 @@
147
147
  </div>
148
148
 
149
149
  <script type="module">
150
- import { multipartiteLayout } from './layout.js';
150
+ import { multipartiteLayout } from '../layout.js';
151
151
 
152
152
  let currentGraph = null;
153
153
 
@@ -161,7 +161,7 @@
161
161
  </div>
162
162
 
163
163
  <script type="module">
164
- import { planarLayout } from './layout.js';
164
+ import { planarLayout } from '../layout.js';
165
165
 
166
166
  let currentGraph = null;
167
167
 
@@ -142,7 +142,7 @@
142
142
  </div>
143
143
 
144
144
  <script type="module">
145
- import { randomLayout } from './layout.js';
145
+ import { randomLayout } from '../layout.js';
146
146
 
147
147
  let currentGraph = null;
148
148
 
@@ -129,7 +129,7 @@
129
129
  </div>
130
130
 
131
131
  <script type="module">
132
- import { shellLayout } from './layout.js';
132
+ import { shellLayout } from '../layout.js';
133
133
 
134
134
  let currentGraph = null;
135
135
 
@@ -135,7 +135,7 @@
135
135
  </div>
136
136
 
137
137
  <script type="module">
138
- import { spectralLayout } from './layout.js';
138
+ import { spectralLayout } from '../layout.js';
139
139
 
140
140
  let currentGraph = null;
141
141
 
@@ -171,7 +171,7 @@
171
171
  </div>
172
172
 
173
173
  <script type="module">
174
- import { spiralLayout } from './layout.js';
174
+ import { spiralLayout } from '../layout.js';
175
175
 
176
176
  let currentGraph = null;
177
177
 
@@ -141,7 +141,7 @@
141
141
  </div>
142
142
 
143
143
  <script type="module">
144
- import { springLayout } from './layout.js';
144
+ import { springLayout } from '../layout.js';
145
145
 
146
146
  let currentGraph = null;
147
147
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphty/layout",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "graph layout algorithms based on networkx",
5
5
  "main": "layout.js",
6
6
  "directories": {
@@ -36,4 +36,4 @@
36
36
  "cz-conventional-changelog": "^3.3.0",
37
37
  "husky": "^9.1.7"
38
38
  }
39
- }
39
+ }