@design.estate/dees-wcctools 1.0.81 → 1.0.84
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 +2199 -1935
- package/dist_bundle/bundle.js.map +4 -4
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/wcc-properties.js +1 -4
- package/dist_ts_web/elements/wcc-sidebar.js +2 -3
- package/dist_watch/bundle.js +2207 -1943
- package/dist_watch/bundle.js.map +4 -4
- package/package.json +5 -5
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/wcc-properties.ts +0 -3
- package/ts_web/elements/wcc-sidebar.ts +1 -2
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.84",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "wcc tools for creating element catalogues",
|
|
6
6
|
"main": "dist_ts_web/index.js",
|
|
@@ -15,13 +15,13 @@
|
|
|
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.55",
|
|
19
|
+
"@design.estate/dees-element": "^2.0.33",
|
|
20
20
|
"@push.rocks/smartdelay": "^3.0.5",
|
|
21
|
-
"lit": "^
|
|
21
|
+
"lit": "^3.1.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@api.global/typedserver": "^3.0.
|
|
24
|
+
"@api.global/typedserver": "^3.0.9",
|
|
25
25
|
"@git.zone/tsbuild": "^2.1.66",
|
|
26
26
|
"@git.zone/tsbundle": "^2.0.8",
|
|
27
27
|
"@git.zone/tsrun": "^1.2.44",
|
|
@@ -111,7 +111,6 @@ export class WccProperties extends DeesElement {
|
|
|
111
111
|
transition: all 0.2s;
|
|
112
112
|
}
|
|
113
113
|
.button:hover {
|
|
114
|
-
cursor: pointer;
|
|
115
114
|
color: #333;
|
|
116
115
|
background: #fff;
|
|
117
116
|
}
|
|
@@ -121,7 +120,6 @@ export class WccProperties extends DeesElement {
|
|
|
121
120
|
}
|
|
122
121
|
|
|
123
122
|
.button.selected:hover {
|
|
124
|
-
cursor: pointer;
|
|
125
123
|
color: #ffffff;
|
|
126
124
|
background: #455a64;
|
|
127
125
|
}
|
|
@@ -139,7 +137,6 @@ export class WccProperties extends DeesElement {
|
|
|
139
137
|
}
|
|
140
138
|
|
|
141
139
|
.docs:hover {
|
|
142
|
-
cursor: pointer;
|
|
143
140
|
color: #333;
|
|
144
141
|
background: #fff;
|
|
145
142
|
}
|
|
@@ -53,6 +53,7 @@ export class WccSidebar extends DeesElement {
|
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.selectOption {
|
|
56
|
+
user-select: none;
|
|
56
57
|
position: relative;
|
|
57
58
|
line-height: 24px;
|
|
58
59
|
padding: 5px;
|
|
@@ -61,7 +62,6 @@ export class WccSidebar extends DeesElement {
|
|
|
61
62
|
grid-template-columns: 28px auto;
|
|
62
63
|
}
|
|
63
64
|
.selectOption:hover {
|
|
64
|
-
cursor: pointer;
|
|
65
65
|
padding: 5px;
|
|
66
66
|
color: #333;
|
|
67
67
|
background: #fff;
|
|
@@ -72,7 +72,6 @@ export class WccSidebar extends DeesElement {
|
|
|
72
72
|
}
|
|
73
73
|
|
|
74
74
|
.selectOption.selected:hover {
|
|
75
|
-
cursor: pointer;
|
|
76
75
|
color: #ffffff;
|
|
77
76
|
background: #455A64;
|
|
78
77
|
}
|