@profitlich/template-toolkit 2.7.0 → 2.7.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.
@@ -14,7 +14,7 @@ export class Toolbar {
14
14
  const saved = localStorage.getItem('devTools');
15
15
  this.#state = saved
16
16
  ? JSON.parse(saved)
17
- : { visible: false, grid: 'aus', imageSize: false };
17
+ : { visible: false, grid: 'aus', imageSize: false, contentType: false };
18
18
 
19
19
  // Grid-Overlay DOM-Element erstellen
20
20
  const gridOverlay = document.createElement('div');
@@ -40,7 +40,7 @@ export class Toolbar {
40
40
  .name('Bildgrössen')
41
41
  .onChange(() => this.#onStateChange());
42
42
 
43
- this.#gui.add(this.#state, 'contentType')
43
+ this.#gui.add(this.#state, 'contentType')
44
44
  .name('Inhaltstypen')
45
45
  .onChange(() => this.#onStateChange());
46
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@profitlich/template-toolkit",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
4
4
  "description": "Shared SCSS layout system, JS utilities, components and build scripts for profitlich template repos",
5
5
  "type": "module",
6
6
  "exports": {