qcobjects 2.4.21-beta → 2.4.23-beta

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.
@@ -13,10 +13,10 @@ name: "CodeQL"
13
13
 
14
14
  on:
15
15
  push:
16
- branches: [ master ]
16
+ branches: [ main ]
17
17
  pull_request:
18
18
  # The branches below must be a subset of the branches above
19
- branches: [ master ]
19
+ branches: [ "v2.3", "v2.4" ]
20
20
  schedule:
21
21
  - cron: '23 16 * * 2'
22
22
 
@@ -28,7 +28,7 @@ jobs:
28
28
  - uses: actions/checkout@v2
29
29
  - uses: actions/setup-node@v1
30
30
  with:
31
- node-version: 12
31
+ node-version: 14
32
32
  registry-url: https://registry.npmjs.org/
33
33
  - name: Set up NPM authentication
34
34
  run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
@@ -1,7 +1,7 @@
1
1
  # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
2
  # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3
3
 
4
- name: Node.js Publish Beta version
4
+ name: Node.js Publish LTS version
5
5
 
6
6
  on:
7
7
  push:
@@ -28,7 +28,7 @@ jobs:
28
28
  - uses: actions/checkout@v2
29
29
  - uses: actions/setup-node@v1
30
30
  with:
31
- node-version: 12
31
+ node-version: 14
32
32
  registry-url: https://registry.npmjs.org/
33
33
  - name: Set up NPM authentication
34
34
  run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
package/QCObjects.js CHANGED
@@ -826,12 +826,12 @@
826
826
  return class {};
827
827
  case 1:
828
828
  name = arguments[0];
829
- type = Object;
829
+ type = class {};
830
830
  definition = {};
831
831
  break;
832
832
  case 2:
833
833
  name = arguments[0];
834
- type = Object;
834
+ type = class {};
835
835
  definition = arguments[1];
836
836
  break;
837
837
  case 3:
@@ -1961,7 +1961,7 @@
1961
1961
  }
1962
1962
  }
1963
1963
  };
1964
- Class ("Component", Object, {
1964
+ Class ("Component", class {}, {
1965
1965
  domain: domain,
1966
1966
  basePath: basePath,
1967
1967
  templateURI: "",
@@ -3549,7 +3549,7 @@
3549
3549
 
3550
3550
  _component_.runComponentHelpers();
3551
3551
 
3552
- if ((Tag("component[loaded=true]").length * 100 / Tag("component:not([template-source=none])").length) >= 100) {
3552
+ if ((Tag("component[loaded=true]").length * 100 / Tag("component").length) >= 100) {
3553
3553
  d.dispatchEvent(new CustomEvent("componentsloaded", {
3554
3554
  detail: {
3555
3555
  lastComponent: _component_
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.4.21-beta
1
+ 2.4.23-beta
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qcobjects",
3
- "version": "2.4.21-beta",
3
+ "version": "2.4.23-beta",
4
4
  "description": "QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.",
5
5
  "main": "QCObjects.js",
6
6
  "license": "LGPL-3.0",