@design.estate/dees-catalog 1.0.219 → 1.0.221

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@design.estate/dees-catalog",
3
- "version": "1.0.219",
3
+ "version": "1.0.221",
4
4
  "private": false,
5
5
  "description": "website for lossless.com",
6
6
  "main": "dist_ts_web/index.js",
@@ -15,9 +15,9 @@
15
15
  "author": "Lossless GmbH",
16
16
  "license": "MIT",
17
17
  "dependencies": {
18
- "@design.estate/dees-domtools": "^2.0.50",
18
+ "@design.estate/dees-domtools": "^2.0.51",
19
19
  "@design.estate/dees-element": "^2.0.29",
20
- "@design.estate/dees-wcctools": "^1.0.78",
20
+ "@design.estate/dees-wcctools": "^1.0.81",
21
21
  "@fortawesome/fontawesome-svg-core": "^6.4.2",
22
22
  "@fortawesome/free-brands-svg-icons": "^6.4.2",
23
23
  "@fortawesome/free-regular-svg-icons": "^6.4.2",
@@ -35,7 +35,7 @@
35
35
  "@gitzone/tswatch": "^2.0.7",
36
36
  "@push.rocks/projectinfo": "^5.0.2",
37
37
  "@push.rocks/tapbundle": "^5.0.15",
38
- "@types/node": "^20.8.2"
38
+ "@types/node": "^20.8.3"
39
39
  },
40
40
  "files": [
41
41
  "ts/**/*",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-catalog',
6
- version: '1.0.219',
6
+ version: '1.0.221',
7
7
  description: 'website for lossless.com'
8
8
  }
@@ -0,0 +1,5 @@
1
+ import { html } from '@design.estate/dees-element';
2
+
3
+ export const demoFunc = () => html`
4
+ <dees-hint></dees-hint>
5
+ `;
@@ -0,0 +1,38 @@
1
+ import {
2
+ DeesElement,
3
+ css,
4
+ cssManager,
5
+ customElement,
6
+ html,
7
+ property,
8
+ type CSSResult,
9
+ type TemplateResult,
10
+ } from '@design.estate/dees-element';
11
+
12
+ import * as domtools from '@design.estate/dees-domtools';
13
+ import { demoFunc } from './dees-hint.demo.js';
14
+
15
+ declare global {
16
+ interface HTMLElementTagNameMap {
17
+ 'dees-hint': DeesHint;
18
+ }
19
+ }
20
+
21
+ @customElement('dees-hint')
22
+ export class DeesHint extends DeesElement {
23
+ public static demo = demoFunc;
24
+
25
+ @property({ type: String })
26
+ public type: 'info' | 'warn' | 'error' | 'critical' = 'info';
27
+
28
+ constructor() {
29
+ super();
30
+ domtools.elementBasic.setup();
31
+ }
32
+
33
+ public static styles = [cssManager.defaultStyles, css``];
34
+
35
+ public render(): TemplateResult {
36
+ return html` <div class="mainbox"></div> `;
37
+ }
38
+ }
@@ -48,19 +48,24 @@ import {
48
48
  faDesktop as faDesktopSolid,
49
49
  faEye as faEyeSolid,
50
50
  faEyeSlash as faEyeSlashSolid,
51
+ faFileInvoice as faFileInvoiceSolid,
52
+ faFileInvoiceDollar as faFileInvoiceDollarSolid,
51
53
  faGrip as faGripSolid,
52
54
  faMessage as faMessageSolid,
55
+ faMoneyCheckDollar as faMoneyCheckDollarSolid,
53
56
  faMugHot as faMugHotSolid,
54
57
  faMinus as faMinusSolid,
55
58
  faPaste as faPasteSolid,
56
59
  faPenToSquare as faPenToSquareSolid,
57
60
  faPlus as faPlusSolid,
61
+ faReceipt as faReceiptSolid,
58
62
  faRss as faRssSolid,
59
63
  faUsers as faUsersSolid,
60
64
  faShare as faShareSolid,
61
65
  faSun as faSunSolid,
62
66
  faTrash as faTrashSolid,
63
67
  faTrashCan as faTrashCanSolid,
68
+ faWallet as faWalletSolid,
64
69
  faXmark as faXmarkSolid,
65
70
  } from '@fortawesome/free-solid-svg-icons';
66
71
  import { demoFunc } from './dees-icon.demo.js';
@@ -86,15 +91,19 @@ export const faIcons = {
86
91
  desktop: faDesktopSolid,
87
92
  eye: faEyeSolid,
88
93
  eyeSlash: faEyeSlashSolid,
94
+ fileInvoice: faFileInvoiceSolid,
95
+ fileInvoiceDoller: faFileInvoiceDollarSolid,
89
96
  grip: faGripSolid,
90
97
  message: faMessageRegular,
91
98
  messageSolid: faMessageSolid,
99
+ moneyCheckDollar: faMoneyCheckDollarSolid,
92
100
  mugHot: faMugHotSolid,
93
101
  minus: faMinusSolid,
94
102
  paste: faPasteRegular,
95
103
  pasteSolid: faPasteSolid,
96
104
  penToSquare: faPenToSquareSolid,
97
105
  plus: faPlusSolid,
106
+ receipt: faReceiptSolid,
98
107
  rss: faRssSolid,
99
108
  share: faShareSolid,
100
109
  sun: faSunRegular,
@@ -104,6 +113,7 @@ export const faIcons = {
104
113
  trashCan: faTrashCanRegular,
105
114
  trashCanSolid: faTrashCanSolid,
106
115
  users: faUsersSolid,
116
+ wallet: faWalletSolid,
107
117
  xmark: faXmarkSolid,
108
118
  // brands
109
119
  facebook: faFacebook,
@@ -89,8 +89,8 @@ export class DeesMobilenavigation extends DeesElement {
89
89
  right: 0px;
90
90
  top: 0px;
91
91
  bottom: 0px;
92
- background: ${cssManager.bdTheme('#eeeeeb', '#000')};;
93
- border-left: 1px dashed #444;
92
+ background: ${cssManager.bdTheme('#eeeeeb', '#000')};
93
+ border-left: 1px solid ${cssManager.bdTheme('#eeeeeb', '#222')};
94
94
  pointer-events: none;
95
95
  }
96
96
 
@@ -156,6 +156,7 @@ export class DeesMobilenavigation extends DeesElement {
156
156
  const main = this.shadowRoot.querySelector('.main');
157
157
  if (!this.windowLayer) {
158
158
  this.windowLayer = new DeesWindowLayer();
159
+ this.windowLayer.options.blur = true;
159
160
  this.windowLayer.addEventListener('click', () => {
160
161
  this.hide();
161
162
  });
@@ -0,0 +1,5 @@
1
+ import { html } from '@design.estate/dees-element';
2
+
3
+ export const demoFunc = async () => {
4
+ return html`<dees-toast></dees-toast>`;
5
+ }
@@ -1,6 +1,7 @@
1
1
  import { customElement, DeesElement, type TemplateResult, html, type CSSResult, } from '@design.estate/dees-element';
2
2
 
3
3
  import * as domtools from '@design.estate/dees-domtools';
4
+ import { demoFunc } from './dees-toast.demo.js';
4
5
 
5
6
  declare global {
6
7
  interface HTMLElementTagNameMap {
@@ -10,6 +11,7 @@ declare global {
10
11
 
11
12
  @customElement('dees-toast')
12
13
  export class DeesToast extends DeesElement {
14
+ public static demo = demoFunc;
13
15
 
14
16
  constructor() {
15
17
  super();
@@ -6,6 +6,7 @@ export * from './dees-dataview-codebox.js';
6
6
  export * from './dees-dataview-statusobject.js';
7
7
  export * from './dees-form-submit.js';
8
8
  export * from './dees-form.js';
9
+ export * from './dees-hint.js';
9
10
  export * from './dees-icon.js';
10
11
  export * from './dees-input-checkbox.js';
11
12
  export * from './dees-input-dropdown.js';