fix(core): update

This commit is contained in:
Philipp Kunz 2023-10-06 11:05:58 +02:00
parent 1bf9d4b5dc
commit fcb58605b3
7 changed files with 950 additions and 623 deletions

View File

@ -15,19 +15,19 @@
"author": "Lossless GmbH", "author": "Lossless GmbH",
"license": "UNLICENSED", "license": "UNLICENSED",
"dependencies": { "dependencies": {
"@design.estate/dees-catalog": "^1.0.185", "@design.estate/dees-catalog": "^1.0.216",
"@design.estate/dees-domtools": "^2.0.34", "@design.estate/dees-domtools": "^2.0.50",
"@design.estate/dees-element": "^2.0.27", "@design.estate/dees-element": "^2.0.29",
"@design.estate/dees-wcctools": "^1.0.78", "@design.estate/dees-wcctools": "^1.0.80",
"@losslessone_private/loint-pubapi": "^1.0.13" "@losslessone_private/loint-pubapi": "^1.0.13"
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.1.70", "@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsbundle": "^2.0.8", "@git.zone/tsbundle": "^2.0.10",
"@git.zone/tsrun": "^1.2.46", "@git.zone/tsrun": "^1.2.46",
"@git.zone/tswatch": "^2.0.11", "@git.zone/tswatch": "^2.0.13",
"@push.rocks/projectinfo": "^5.0.2", "@push.rocks/projectinfo": "^5.0.2",
"@types/node": "^20.5.9" "@types/node": "^20.8.2"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@losslessone_private/lele-appui-catalog', name: '@losslessone_private/lele-appui-catalog',
version: '1.0.79', version: '1.0.80',
description: 'a catalog with app webcomponents' description: 'a catalog with app webcomponents'
} }

View File

@ -53,7 +53,7 @@ export class DeapActivitylog extends DeesElement {
padding-top: 8px; padding-top: 8px;
font-weight: 500; font-weight: 500;
font-size: 14px; font-size: 14px;
font-family: 'Hubot Sans', sans-serif; font-family: 'Roboto', 'Inter', sans-serif;
} }
.activityContainer { .activityContainer {

View File

@ -57,7 +57,7 @@ export class DeapMaincontent extends DeesElement {
.topbar .heading { .topbar .heading {
padding: 8px 24px 8px 24px; padding: 8px 24px 8px 24px;
font-family: 'Hubot Sans', sans-serif; font-family: 'Roboto', 'Inter', sans-serif;
font-weight: 600; font-weight: 600;
line-height: 24px; line-height: 24px;
font-size: 16px; font-size: 16px;

View File

@ -1,3 +1,4 @@
import * as plugins from '../plugins.js';
import * as interfaces from './interfaces/index.js'; import * as interfaces from './interfaces/index.js';
import { import {
@ -21,6 +22,10 @@ export class DeapMainselector extends DeesElement {
// INSTANCE // INSTANCE
@property() @property()
public selectionOptions: interfaces.ISelectionOption[] = [ public selectionOptions: interfaces.ISelectionOption[] = [
{
key: 'Overview',
action: () => {},
},
{ {
key: 'option 1', key: 'option 1',
action: () => {}, action: () => {},
@ -64,7 +69,7 @@ export class DeapMainselector extends DeesElement {
padding-left: 16px; padding-left: 16px;
padding-top: 8px; padding-top: 8px;
line-height: 24px; line-height: 24px;
font-family: 'Hubot Sans', sans-serif; font-family: 'Roboto', 'Inter', sans-serif;
font-weight: 600; font-weight: 600;
font-size: 14px; font-size: 14px;
} }
@ -75,7 +80,7 @@ export class DeapMainselector extends DeesElement {
padding-top: 8px; padding-top: 8px;
left: 0px; left: 0px;
width: 100%; width: 100%;
font-family: 'Mona Sans', sans-serif; font-family: 'Roboto', 'Inter', sans-serif;
font-size: 14px; font-size: 14px;
} }
@ -124,6 +129,9 @@ export class DeapMainselector extends DeesElement {
@click="${() => { @click="${() => {
this.selectOption(selectionOptionArg); this.selectOption(selectionOptionArg);
}}" }}"
@contextmenu="${(eventArg: MouseEvent) => {
plugins.deesCatalog.DeesContextmenu.openContextMenuWithOptions(eventArg, []);
}}"
> >
${selectionOptionArg.key} ${selectionOptionArg.key}
</div> </div>

5
ts_web/plugins.ts Normal file
View File

@ -0,0 +1,5 @@
import * as deesCatalog from '@design.estate/dees-catalog';
export {
deesCatalog,
}