@design.estate/dees-wcctools 1.0.80 → 1.0.81

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.
@@ -10,11 +10,9 @@
10
10
  />
11
11
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12
12
 
13
- <link rel="preconnect" href="https://rsms.me/">
14
- <link rel="preconnect" href="https://fonts.googleapis.com">
15
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
16
- <link rel="stylesheet" href="https://rsms.me/inter/inter.css">
17
- <link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
13
+ <!--Lets load standard fonts-->
14
+ <link rel="preconnect" href="https://assetbroker.lossless.one/" crossorigin>
15
+ <link rel="stylesheet" href="https://assetbroker.lossless.one/fonts/fonts.css">
18
16
 
19
17
  <style>
20
18
  body {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-wcctools",
3
- "version": "1.0.80",
3
+ "version": "1.0.81",
4
4
  "private": false,
5
5
  "description": "wcc tools for creating element catalogues",
6
6
  "main": "dist_ts_web/index.js",
@@ -15,17 +15,17 @@
15
15
  "author": "Lossless GmbH",
16
16
  "license": "UNLICENSED",
17
17
  "dependencies": {
18
- "@design.estate/dees-domtools": "^2.0.50",
18
+ "@design.estate/dees-domtools": "^2.0.51",
19
19
  "@design.estate/dees-element": "^2.0.29",
20
- "@gitzone/tsrun": "^1.2.44",
21
20
  "@push.rocks/smartdelay": "^3.0.5",
22
21
  "lit": "^2.8.0"
23
22
  },
24
23
  "devDependencies": {
25
24
  "@api.global/typedserver": "^3.0.5",
26
- "@gitzone/tsbuild": "^2.1.66",
27
- "@gitzone/tsbundle": "^2.0.8",
28
- "@gitzone/tswatch": "^2.0.7",
25
+ "@git.zone/tsbuild": "^2.1.66",
26
+ "@git.zone/tsbundle": "^2.0.8",
27
+ "@git.zone/tsrun": "^1.2.44",
28
+ "@git.zone/tswatch": "^2.0.7",
29
29
  "@push.rocks/projectinfo": "^5.0.2"
30
30
  },
31
31
  "files": [
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-wcctools',
6
- version: '1.0.80',
6
+ version: '1.0.81',
7
7
  description: 'wcc tools for creating element catalogues'
8
8
  }
@@ -6,9 +6,6 @@ export type TElementType = 'element' | 'page';
6
6
 
7
7
  @customElement('wcc-sidebar')
8
8
  export class WccSidebar extends DeesElement {
9
- @property({type: Array})
10
- public websites: string[] = [];
11
-
12
9
  @property({ attribute: false })
13
10
  public selectedItem: DeesElement | (() => TemplateResult);
14
11
 
@@ -26,6 +23,7 @@ export class WccSidebar extends DeesElement {
26
23
  display: block;
27
24
  border-right: 1px solid #999;
28
25
  font-family: 'Roboto', 'Inter', sans-serif;
26
+ font-size: 12px;
29
27
  box-sizing: border-box;
30
28
  position: absolute;
31
29
  left: 0px;
@@ -54,20 +52,6 @@ export class WccSidebar extends DeesElement {
54
52
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
55
53
  }
56
54
 
57
- .heading {
58
- font-size: 24px;
59
- text-align: center;
60
- margin: 20px 5px 5px 5px;
61
- }
62
-
63
- .heading a {
64
- text-decoration: none;
65
- color: #fff;
66
- }
67
-
68
- .subheading {
69
- text-align: center;
70
- }
71
55
  .selectOption {
72
56
  position: relative;
73
57
  line-height: 24px;
@@ -112,17 +96,7 @@ export class WccSidebar extends DeesElement {
112
96
 
113
97
 
114
98
  </style>
115
- <div class="heading">
116
- <a href="https://gitlab.com/designestate/dees-wcctools" target="_blank">wcctools</a>
117
- </div>
118
- <div class="subheading">
119
- by Lossless GmbH
120
- </div>
121
99
  <div class="menu">
122
- <h3>Live Websites</h3>
123
- ${this.websites.map(website => {
124
- return html`<div class="selectOption"><i class="material-symbols-outlined">ondemand_video</i><div class="text">${website}</div></div>`;
125
- })}
126
100
  <h3>Pages</h3>
127
101
  ${(() => {
128
102
  const pages = Object.keys(this.dashboardRef.pages);
@@ -161,7 +135,7 @@ export class WccSidebar extends DeesElement {
161
135
  `;
162
136
  });
163
137
  })()}
164
- </menu>
138
+ </div>
165
139
  `;
166
140
  }
167
141