Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e8cc4c7c90 | |||
| 187ebed3ab | |||
| b909617271 | |||
| 9c2fe9f739 | |||
| ed49de64bc | |||
| 162003ba7a |
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-catalog",
|
"name": "@designestate/dees-catalog",
|
||||||
"version": "1.0.82",
|
"version": "1.0.85",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@designestate/dees-catalog",
|
"name": "@designestate/dees-catalog",
|
||||||
"version": "1.0.82",
|
"version": "1.0.85",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@designestate/dees-domtools": "^2.0.22",
|
"@designestate/dees-domtools": "^2.0.22",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-catalog",
|
"name": "@designestate/dees-catalog",
|
||||||
"version": "1.0.82",
|
"version": "1.0.85",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "website for lossless.com",
|
"description": "website for lossless.com",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@designestate/dees-catalog',
|
name: '@designestate/dees-catalog',
|
||||||
version: '1.0.82',
|
version: '1.0.85',
|
||||||
description: 'website for lossless.com'
|
description: 'website for lossless.com'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ export class DeesSpeechbubble extends DeesElement {
|
|||||||
position: relative;
|
position: relative;
|
||||||
display: block;
|
display: block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
color: #fff;
|
color: ${cssManager.bdTheme('#333', '#fff')};
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
@@ -61,20 +61,21 @@ export class DeesSpeechbubble extends DeesElement {
|
|||||||
.arrow {
|
.arrow {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
transform: rotate(45deg);
|
transform: rotate(45deg);
|
||||||
background: #333;
|
background: ${cssManager.bdTheme('#fff', '#333')};
|
||||||
height: 20px;
|
height: 15px;
|
||||||
width: 20px;
|
width: 15px;
|
||||||
left: 5px;
|
left: 4px;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
border-radius: 3px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.maincontainer {
|
.maincontainer {
|
||||||
background: #333;
|
background: ${cssManager.bdTheme('#fff', '#333')};
|
||||||
padding: 0px 10px;
|
padding: 0px 10px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
line-height: 30px;
|
line-height: 25px;
|
||||||
|
font-size: 12px;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
left: 8px;
|
left: 8px;
|
||||||
}
|
}
|
||||||
@@ -118,24 +119,19 @@ export class DeesSpeechbubble extends DeesElement {
|
|||||||
|
|
||||||
public render(): TemplateResult {
|
public render(): TemplateResult {
|
||||||
return html`
|
return html`
|
||||||
|
<div class="container" @click=${this.handleClick}>
|
||||||
<div class="arrow"></div>
|
<div class="arrow"></div>
|
||||||
<div class="maincontainer"><span class="wave">👋</span> Hey! We are consulting.</div>
|
<div class="maincontainer"><span class="wave">👋</span> Hey! We are consulting.</div>
|
||||||
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async dispatchClick() {
|
public async handleClick() {
|
||||||
if (this.disabled) {
|
if (this.disabled) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.dispatchEvent(
|
globalThis.location.href = "https://lossless.consulting"
|
||||||
new CustomEvent('clicked', {
|
|
||||||
detail: {
|
|
||||||
data: null,
|
|
||||||
},
|
|
||||||
bubbles: true,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public async firstUpdated() {
|
public async firstUpdated() {
|
||||||
|
|||||||
Reference in New Issue
Block a user