Compare commits

...

8 Commits

Author SHA1 Message Date
d6047f2e78 1.0.169 2023-04-12 00:40:40 +02:00
03769c8412 fix(core): update 2023-04-12 00:40:40 +02:00
1a782eb4ee 1.0.168 2023-04-10 00:26:55 +02:00
a27adf25cb fix(core): update 2023-04-10 00:26:55 +02:00
96e237b9af 1.0.167 2023-04-10 00:18:17 +02:00
710e06b2f1 fix(core): update 2023-04-10 00:18:16 +02:00
a3bc25c4ac 1.0.166 2023-04-10 00:17:38 +02:00
ee5b712a37 fix(core): update 2023-04-10 00:17:38 +02:00
5 changed files with 13 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-catalog",
"version": "1.0.165",
"version": "1.0.169",
"private": false,
"description": "website for lossless.com",
"main": "dist_ts_web/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@designestate/dees-catalog',
version: '1.0.165',
version: '1.0.169',
description: 'website for lossless.com'
}

View File

@ -164,10 +164,10 @@ export class DeesDataviewCodebox extends DeesElement {
}
});
if (this.codeToDisplay && this.codeToDisplay !== this.codeToDisplayStore) {
this.codeToDisplayStore = smartstring.indent.normalize(this.codeToDisplay);
this.codeToDisplayStore = smartstring.indent.normalize(this.codeToDisplay).trimStart();
}
if (slottedCodeNodes[0] && slottedCodeNodes[0].wholeText && !this.codeToDisplay) {
this.codeToDisplayStore = smartstring.indent.normalize(slottedCodeNodes[0].wholeText);
this.codeToDisplayStore = smartstring.indent.normalize(slottedCodeNodes[0].wholeText).trimStart();
this.codeToDisplay = this.codeToDisplayStore;
}
await domtools.plugins.smartdelay.delayFor(0);

View File

@ -46,7 +46,7 @@ export class DeesDataviewStatusobject extends DeesElement {
},
{
name: 'Detail 4',
value: 'Value 4',
value: 'Value 4 jhdkfjhalskdfjhfdjskalsdkfjhfdjskalskdjfhjdkslaksjdhfjdkslaskdfjhfjdkslaskdjfhjdskalskdjhfdjskalskdjfhdjskl',
status: 'ok',
statusText: 'OK',
},
@ -117,7 +117,7 @@ export class DeesDataviewStatusobject extends DeesElement {
}
.detail {
height: 60px;
minheight: 60px;
align-items: center;
display: grid;
grid-template-columns: 40px auto;
@ -125,7 +125,10 @@ export class DeesDataviewStatusobject extends DeesElement {
}
.detail .detailsText {
overflow: auto;
padding-top: 8px;
padding-bottom: 8px;
padding-right: 8px;
word-break: break-all;
}
.detail .detailsText .label {

View File

@ -201,7 +201,9 @@ export class DeesStepper extends DeesElement {
}
public updated() {
this.setScrollStatus();
if (this.selectedStep) {
this.setScrollStatus();
}
}
public scroller: typeof domtools.plugins.SweetScroll.prototype;