@design.estate/dees-catalog 1.0.226 → 1.0.227

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.226",
3
+ "version": "1.0.227",
4
4
  "private": false,
5
5
  "description": "website for lossless.com",
6
6
  "main": "dist_ts_web/index.js",
@@ -15,18 +15,18 @@
15
15
  "author": "Lossless GmbH",
16
16
  "license": "MIT",
17
17
  "dependencies": {
18
- "@design.estate/dees-domtools": "^2.0.51",
19
- "@design.estate/dees-element": "^2.0.29",
18
+ "@design.estate/dees-domtools": "^2.0.55",
19
+ "@design.estate/dees-element": "^2.0.31",
20
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",
24
24
  "@fortawesome/free-solid-svg-icons": "^6.4.2",
25
- "@push.rocks/smarti18n": "^1.0.3",
25
+ "@push.rocks/smarti18n": "^1.0.4",
26
26
  "@push.rocks/smartpromise": "^4.0.3",
27
27
  "@push.rocks/smartstring": "^4.0.9",
28
- "@tsclass/tsclass": "^4.0.43",
29
- "highlight.js": "11.8.0",
28
+ "@tsclass/tsclass": "^4.0.46",
29
+ "highlight.js": "11.9.0",
30
30
  "ibantools": "^4.3.5",
31
31
  "pdfjs-dist": "^3.11.174"
32
32
  },
@@ -37,7 +37,7 @@
37
37
  "@gitzone/tswatch": "^2.0.7",
38
38
  "@push.rocks/projectinfo": "^5.0.2",
39
39
  "@push.rocks/tapbundle": "^5.0.15",
40
- "@types/node": "^20.8.3"
40
+ "@types/node": "^20.8.7"
41
41
  },
42
42
  "files": [
43
43
  "ts/**/*",
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@design.estate/dees-catalog',
6
- version: '1.0.226',
6
+ version: '1.0.227',
7
7
  description: 'website for lossless.com'
8
8
  }
@@ -45,7 +45,7 @@ export class DeesForm extends DeesElement {
45
45
  public static demo = demoFunc;
46
46
 
47
47
  public name: string = 'myform';
48
- public changeSubject = new domtools.rxjs.Subject();
48
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
49
49
  public readyDeferred = domtools.plugins.smartpromise.defer();
50
50
 
51
51
  public render(): TemplateResult {
@@ -22,7 +22,7 @@ export class DeesInputCheckbox extends DeesElement {
22
22
  public static demo = () => html`<dees-input-checkbox></dees-input-checkbox>`;
23
23
 
24
24
  // INSTANCE
25
- public changeSubject = new domtools.rxjs.Subject();
25
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
26
26
 
27
27
  @property({
28
28
  type: String,
@@ -20,7 +20,7 @@ export class DeesInputDropdown extends DeesElement {
20
20
  `
21
21
 
22
22
  // INSTANCE
23
- public changeSubject = new domtools.rxjs.Subject();
23
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
24
24
 
25
25
  @property({
26
26
  type: String,
@@ -22,7 +22,7 @@ export class DeesInputFileupload extends DeesElement {
22
22
  public static demo = () => html`<dees-input-fileupload .label=${'Attachments'}></dees-input-fileupload>`;
23
23
 
24
24
  // INSTANCE
25
- public changeSubject = new domtools.rxjs.Subject();
25
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
26
26
 
27
27
  @property({
28
28
  type: String,
@@ -48,7 +48,7 @@ export class DeesInputIban extends DeesElement {
48
48
  })
49
49
  public value = '';
50
50
 
51
- public changeSubject = new domtools.rxjs.Subject<DeesInputIban>();
51
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject<DeesInputIban>();
52
52
 
53
53
  public render(): TemplateResult {
54
54
  return html`
@@ -12,7 +12,7 @@ export class DeesInputQuantitySelector extends DeesElement {
12
12
  public static demo = () => html`<dees-input-quantityselector></dees-input-quantityselector>`;
13
13
 
14
14
  // INSTANCE
15
- public changeSubject = new domtools.rxjs.Subject();
15
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
16
16
 
17
17
  @property()
18
18
  public label: string = 'Label';
@@ -12,7 +12,7 @@ export class DeesInputRadio extends DeesElement {
12
12
  public static demo = () => html`<dees-input-radio></dees-input-radio>`;
13
13
 
14
14
  // INSTANCE
15
- public changeSubject = new domtools.rxjs.Subject();
15
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
16
16
 
17
17
  @property({
18
18
  type: String,
@@ -24,7 +24,7 @@ export class DeesInputText extends DeesElement {
24
24
  `;
25
25
 
26
26
  // INSTANCE
27
- public changeSubject = new domtools.rxjs.Subject<DeesInputText>();
27
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject<DeesInputText>();
28
28
 
29
29
  @property({
30
30
  type: String,
@@ -113,7 +113,7 @@ export class DeesTable<T> extends DeesElement {
113
113
  return this.data;
114
114
  }
115
115
  set value(valueArg) {}
116
- public changeSubject = new domtools.rxjs.Subject<DeesTable<T>>();
116
+ public changeSubject = new domtools.plugins.smartrx.rxjs.Subject<DeesTable<T>>();
117
117
  // end dees-form compatibility -----------------------------------------
118
118
 
119
119
  @property({