@design.estate/dees-wcctools 1.0.78 → 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.
@@ -0,0 +1,28 @@
1
+ <!--gitzone element-->
2
+ <!-- made by Task Venture Capital GmbH -->
3
+ <!-- checkout https://maintainedby.lossless.com for awesome OpenSource projects -->
4
+ <html lang="en">
5
+ <head>
6
+ <!--Lets set some basic meta tags-->
7
+ <meta
8
+ name="viewport"
9
+ content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height"
10
+ />
11
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12
+
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">
16
+
17
+ <style>
18
+ body {
19
+ margin: 0px;
20
+ background: #222222;
21
+ }
22
+ </style>
23
+
24
+ <script type="module" src="/bundle.js"></script>
25
+ </head>
26
+ <body>
27
+ </body>
28
+ </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-wcctools",
3
- "version": "1.0.78",
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,18 +15,18 @@
15
15
  "author": "Lossless GmbH",
16
16
  "license": "UNLICENSED",
17
17
  "dependencies": {
18
- "@design.estate/dees-domtools": "^2.0.6",
19
- "@design.estate/dees-element": "^2.0.6",
20
- "@gitzone/tsrun": "^1.2.44",
18
+ "@design.estate/dees-domtools": "^2.0.51",
19
+ "@design.estate/dees-element": "^2.0.29",
21
20
  "@push.rocks/smartdelay": "^3.0.5",
22
21
  "lit": "^2.8.0"
23
22
  },
24
23
  "devDependencies": {
25
- "@api.global/typedserver": "^3.0.4",
26
- "@gitzone/tsbuild": "^2.1.66",
27
- "@gitzone/tsbundle": "^2.0.8",
28
- "@gitzone/tswatch": "^2.0.7",
29
- "@push.rocks/projectinfo": "^5.0.1"
24
+ "@api.global/typedserver": "^3.0.5",
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
+ "@push.rocks/projectinfo": "^5.0.2"
30
30
  },
31
31
  "files": [
32
32
  "ts/**/*",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-wcctools',
6
- version: '1.0.78',
6
+ version: '1.0.81',
7
7
  description: 'wcc tools for creating element catalogues'
8
8
  }
@@ -61,7 +61,6 @@ export class WccDashboard extends DeesElement {
61
61
  return html`
62
62
  <style>
63
63
  :host {
64
- font-family: 'Mona Sans', 'Inter', sans-serif;
65
64
  background: #fcfcfc;
66
65
  display: block;
67
66
  box-sizing: border-box;
@@ -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
 
@@ -25,7 +22,8 @@ export class WccSidebar extends DeesElement {
25
22
  :host {
26
23
  display: block;
27
24
  border-right: 1px solid #999;
28
- font-family: 'Mona Sans', 'Inter', sans-serif;
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
 
@@ -0,0 +1 @@
1
+ export const page1 = null;