@design.estate/dees-wcctools 1.0.78 → 1.0.80
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.
- package/dist_bundle/bundle.js +14434 -25550
- package/dist_bundle/bundle.js.map +4 -4
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/wcc-dashboard.js +1 -2
- package/dist_ts_web/elements/wcc-frame.d.ts +1 -1
- package/dist_ts_web/elements/wcc-sidebar.js +1 -1
- package/dist_ts_web/pages/index.d.ts +1 -0
- package/dist_ts_web/pages/index.js +2 -0
- package/dist_watch/bundle.js +27660 -0
- package/dist_watch/bundle.js.map +7 -0
- package/dist_watch/index.html +30 -0
- package/package.json +5 -5
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/wcc-dashboard.ts +0 -1
- package/ts_web/elements/wcc-sidebar.ts +1 -1
- package/ts_web/pages/index.ts +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
<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">
|
|
18
|
+
|
|
19
|
+
<style>
|
|
20
|
+
body {
|
|
21
|
+
margin: 0px;
|
|
22
|
+
background: #222222;
|
|
23
|
+
}
|
|
24
|
+
</style>
|
|
25
|
+
|
|
26
|
+
<script type="module" src="/bundle.js"></script>
|
|
27
|
+
</head>
|
|
28
|
+
<body>
|
|
29
|
+
</body>
|
|
30
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@design.estate/dees-wcctools",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.80",
|
|
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.
|
|
19
|
-
"@design.estate/dees-element": "^2.0.
|
|
18
|
+
"@design.estate/dees-domtools": "^2.0.50",
|
|
19
|
+
"@design.estate/dees-element": "^2.0.29",
|
|
20
20
|
"@gitzone/tsrun": "^1.2.44",
|
|
21
21
|
"@push.rocks/smartdelay": "^3.0.5",
|
|
22
22
|
"lit": "^2.8.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@api.global/typedserver": "^3.0.
|
|
25
|
+
"@api.global/typedserver": "^3.0.5",
|
|
26
26
|
"@gitzone/tsbuild": "^2.1.66",
|
|
27
27
|
"@gitzone/tsbundle": "^2.0.8",
|
|
28
28
|
"@gitzone/tswatch": "^2.0.7",
|
|
29
|
-
"@push.rocks/projectinfo": "^5.0.
|
|
29
|
+
"@push.rocks/projectinfo": "^5.0.2"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"ts/**/*",
|
|
@@ -25,7 +25,7 @@ export class WccSidebar extends DeesElement {
|
|
|
25
25
|
:host {
|
|
26
26
|
display: block;
|
|
27
27
|
border-right: 1px solid #999;
|
|
28
|
-
font-family: '
|
|
28
|
+
font-family: 'Roboto', 'Inter', sans-serif;
|
|
29
29
|
box-sizing: border-box;
|
|
30
30
|
position: absolute;
|
|
31
31
|
left: 0px;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const page1 = null;
|