qcobjects-sdk 2.4.66 → 2.5.105

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.
Files changed (177) hide show
  1. package/.github/workflows/npmpublish.yml +47 -0
  2. package/README.md +0 -1
  3. package/VERSION +1 -1
  4. package/build/index.js +137 -25
  5. package/build/ts/org.qcobjects.base.components.js +75 -0
  6. package/build/ts/org.qcobjects.cloud.auth.session.data.js +122 -0
  7. package/build/ts/org.qcobjects.cloud.auth.session.usertoken.js +97 -0
  8. package/build/ts/org.qcobjects.components.grid.js +63 -0
  9. package/build/ts/org.qcobjects.components.js +200 -0
  10. package/build/{js/org.qcobjects.modal.effects.js → ts/org.qcobjects.components.list.js} +40 -29
  11. package/build/ts/org.qcobjects.components.notifications.js +180 -0
  12. package/build/ts/org.qcobjects.components.slider.js +207 -0
  13. package/build/{js → ts}/org.qcobjects.components.splashscreen.js +123 -130
  14. package/build/ts/org.qcobjects.controllers.form.js +180 -0
  15. package/build/ts/org.qcobjects.controllers.grid.js +269 -0
  16. package/build/{js → ts}/org.qcobjects.controllers.js +11 -11
  17. package/build/ts/org.qcobjects.controllers.list.js +235 -0
  18. package/build/ts/org.qcobjects.controllers.slider.js +126 -0
  19. package/build/ts/org.qcobjects.controllers.swagger.js +75 -0
  20. package/build/ts/org.qcobjects.effects.base.js +70 -0
  21. package/build/ts/org.qcobjects.effects.extended.js +270 -0
  22. package/build/ts/org.qcobjects.effects.js +49 -0
  23. package/build/ts/org.qcobjects.i18n_messages.js +59 -0
  24. package/build/{js → ts}/org.qcobjects.modal.controllers.js +16 -15
  25. package/build/ts/org.qcobjects.modal.effects.js +46 -0
  26. package/build/{js → ts}/org.qcobjects.models.js +11 -11
  27. package/{src/js/org.qcobjects.tools.canvas.ts → build/ts/org.qcobjects.tools.canvas.js} +16 -21
  28. package/build/{js → ts}/org.qcobjects.tools.js +10 -3
  29. package/build/ts/org.qcobjects.tools.layouts.js +74 -0
  30. package/build/{js → ts}/org.qcobjects.views.js +11 -11
  31. package/build-esbuild.js +72 -0
  32. package/eslint.config.mjs +88 -0
  33. package/package.json +67 -63
  34. package/postbuild.js +10 -0
  35. package/public/browser/index.js +9829 -0
  36. package/public/browser/index.js.map +7 -0
  37. package/public/cjs/index.cjs +9879 -0
  38. package/public/cjs/index.cjs.map +7 -0
  39. package/public/esm/index.mjs +9819 -0
  40. package/public/esm/index.mjs.map +7 -0
  41. package/public/types/index.d.ts +614 -0
  42. package/spec/helpers/mock-sdk.helper.ts +2 -0
  43. package/spec/mocks/qcobjects-sdk.mock.ts +1 -0
  44. package/spec/support/jasmine.json +7 -4
  45. package/src/index.ts +127 -2
  46. package/src/ts/org.qcobjects.base.components.ts +83 -0
  47. package/src/ts/org.qcobjects.cloud.auth.session.data.ts +134 -0
  48. package/src/ts/org.qcobjects.cloud.auth.session.usertoken.ts +108 -0
  49. package/src/ts/org.qcobjects.components.grid.ts +68 -0
  50. package/src/{js → ts}/org.qcobjects.components.list.ts +15 -31
  51. package/src/{js → ts}/org.qcobjects.components.notifications.ts +12 -12
  52. package/src/ts/org.qcobjects.components.slider.ts +216 -0
  53. package/src/{js → ts}/org.qcobjects.components.splashscreen.ts +31 -39
  54. package/src/ts/org.qcobjects.components.ts +226 -0
  55. package/src/ts/org.qcobjects.controllers.form.ts +209 -0
  56. package/src/ts/org.qcobjects.controllers.grid.ts +291 -0
  57. package/src/ts/org.qcobjects.controllers.list.ts +256 -0
  58. package/src/ts/org.qcobjects.controllers.slider.ts +153 -0
  59. package/src/ts/org.qcobjects.controllers.swagger.ts +83 -0
  60. package/src/{js → ts}/org.qcobjects.controllers.ts +7 -9
  61. package/src/ts/org.qcobjects.effects.base.ts +81 -0
  62. package/src/{js/org.qcobjects.effects.ts → ts/org.qcobjects.effects.extended.ts} +70 -198
  63. package/src/ts/org.qcobjects.effects.ts +42 -0
  64. package/src/ts/org.qcobjects.i18n_messages.ts +68 -0
  65. package/src/{js → ts}/org.qcobjects.modal.controllers.ts +12 -14
  66. package/src/{js → ts}/org.qcobjects.modal.effects.ts +22 -18
  67. package/src/{js → ts}/org.qcobjects.models.ts +8 -11
  68. package/src/ts/org.qcobjects.tools.canvas.ts +57 -0
  69. package/src/ts/org.qcobjects.tools.layouts.ts +82 -0
  70. package/src/{js → ts}/org.qcobjects.tools.ts +7 -1
  71. package/src/{js → ts}/org.qcobjects.views.ts +9 -8
  72. package/src/types/global/index.d.ts +181 -0
  73. package/transpile.js +65 -0
  74. package/tsconfig.d.json +65 -3
  75. package/tsconfig.jasmine.json +64 -0
  76. package/tsconfig.json +71 -7
  77. package/.eslintignore +0 -4
  78. package/.eslintrc.cjs +0 -6
  79. package/.github/workflows/npmpublish-beta.yml +0 -38
  80. package/.github/workflows/npmpublish-lts.yml +0 -38
  81. package/.github/workflows/npmpublish-main.yml +0 -40
  82. package/.gitmodules +0 -4
  83. package/build/QCObjects-SDK.js +0 -97
  84. package/build/css/base-modal.css +0 -43
  85. package/build/css/basic-layout-embedded-nav.css +0 -14
  86. package/build/css/basic-layout.css +0 -76
  87. package/build/css/components/horizontal-list.css +0 -64
  88. package/build/css/components/list.css +0 -57
  89. package/build/css/components/splashscreen.css +0 -111
  90. package/build/css/modal.css +0 -46
  91. package/build/index.cjs +0 -4
  92. package/build/index.mjs +0 -2
  93. package/build/js/org.qcobjects.cloud.auth.session.data.js +0 -125
  94. package/build/js/org.qcobjects.cloud.auth.session.usertoken.js +0 -109
  95. package/build/js/org.qcobjects.components.grid.js +0 -81
  96. package/build/js/org.qcobjects.components.js +0 -292
  97. package/build/js/org.qcobjects.components.list.js +0 -71
  98. package/build/js/org.qcobjects.components.notifications.js +0 -179
  99. package/build/js/org.qcobjects.components.slider.js +0 -193
  100. package/build/js/org.qcobjects.controllers.form.js +0 -178
  101. package/build/js/org.qcobjects.controllers.grid.js +0 -258
  102. package/build/js/org.qcobjects.controllers.list.js +0 -228
  103. package/build/js/org.qcobjects.controllers.slider.js +0 -131
  104. package/build/js/org.qcobjects.controllers.swagger.js +0 -50
  105. package/build/js/org.qcobjects.effects.js +0 -417
  106. package/build/js/org.qcobjects.i18n_messages.js +0 -72
  107. package/build/js/org.qcobjects.tools.canvas.js +0 -53
  108. package/build/js/org.qcobjects.tools.layouts.js +0 -73
  109. package/build/templates/components/modalyoulose.tpl.html +0 -3
  110. package/build/templates/components/modalyouwin.tpl.html +0 -4
  111. package/build/templates/components/splashscreen.tpl.html +0 -128
  112. package/build/templates/components/swagger-ui.tpl.html +0 -22
  113. package/docs/CNAME +0 -1
  114. package/public/QCObjects-SDK.js +0 -696
  115. package/public/QCObjects-SDK.js.map +0 -7
  116. package/public/css/base-modal.css +0 -2
  117. package/public/css/base-modal.css.map +0 -7
  118. package/public/css/basic-layout-embedded-nav.css +0 -2
  119. package/public/css/basic-layout-embedded-nav.css.map +0 -7
  120. package/public/css/basic-layout.css +0 -2
  121. package/public/css/basic-layout.css.map +0 -7
  122. package/public/css/components/horizontal-list.css +0 -2
  123. package/public/css/components/horizontal-list.css.map +0 -7
  124. package/public/css/components/list.css +0 -2
  125. package/public/css/components/list.css.map +0 -7
  126. package/public/css/components/splashscreen.css +0 -2
  127. package/public/css/components/splashscreen.css.map +0 -7
  128. package/public/css/modal.css +0 -2
  129. package/public/css/modal.css.map +0 -7
  130. package/public/index.cjs +0 -4
  131. package/public/index.js +0 -27
  132. package/public/index.mjs +0 -2
  133. package/public/templates/components/modalyoulose.tpl.html +0 -3
  134. package/public/templates/components/modalyouwin.tpl.html +0 -4
  135. package/public/templates/components/splashscreen.tpl.html +0 -128
  136. package/public/templates/components/swagger-ui.tpl.html +0 -22
  137. package/src/QCObjects-SDK.d.ts +0 -26
  138. package/src/QCObjects-SDK.ts +0 -108
  139. package/src/index.cts +0 -2
  140. package/src/index.d.ts +0 -2
  141. package/src/index.mts +0 -2
  142. package/src/js/org.qcobjects.cloud.auth.session.data.d.ts +0 -1
  143. package/src/js/org.qcobjects.cloud.auth.session.data.ts +0 -135
  144. package/src/js/org.qcobjects.cloud.auth.session.usertoken.d.ts +0 -2
  145. package/src/js/org.qcobjects.cloud.auth.session.usertoken.ts +0 -128
  146. package/src/js/org.qcobjects.components.d.ts +0 -10
  147. package/src/js/org.qcobjects.components.grid.d.ts +0 -3
  148. package/src/js/org.qcobjects.components.grid.ts +0 -95
  149. package/src/js/org.qcobjects.components.list.d.ts +0 -3
  150. package/src/js/org.qcobjects.components.notifications.d.ts +0 -1
  151. package/src/js/org.qcobjects.components.slider.d.ts +0 -1
  152. package/src/js/org.qcobjects.components.slider.ts +0 -205
  153. package/src/js/org.qcobjects.components.splashscreen.d.ts +0 -28
  154. package/src/js/org.qcobjects.components.ts +0 -336
  155. package/src/js/org.qcobjects.controllers.d.ts +0 -1
  156. package/src/js/org.qcobjects.controllers.form.d.ts +0 -1
  157. package/src/js/org.qcobjects.controllers.form.ts +0 -206
  158. package/src/js/org.qcobjects.controllers.grid.d.ts +0 -1
  159. package/src/js/org.qcobjects.controllers.grid.ts +0 -287
  160. package/src/js/org.qcobjects.controllers.list.d.ts +0 -1
  161. package/src/js/org.qcobjects.controllers.list.ts +0 -254
  162. package/src/js/org.qcobjects.controllers.slider.d.ts +0 -1
  163. package/src/js/org.qcobjects.controllers.slider.ts +0 -158
  164. package/src/js/org.qcobjects.controllers.swagger.d.ts +0 -1
  165. package/src/js/org.qcobjects.controllers.swagger.ts +0 -83
  166. package/src/js/org.qcobjects.effects.d.ts +0 -20
  167. package/src/js/org.qcobjects.i18n_messages.d.ts +0 -1
  168. package/src/js/org.qcobjects.i18n_messages.ts +0 -82
  169. package/src/js/org.qcobjects.modal.controllers.d.ts +0 -1
  170. package/src/js/org.qcobjects.modal.effects.d.ts +0 -1
  171. package/src/js/org.qcobjects.models.d.ts +0 -1
  172. package/src/js/org.qcobjects.tools.canvas.d.ts +0 -1
  173. package/src/js/org.qcobjects.tools.d.ts +0 -1
  174. package/src/js/org.qcobjects.tools.layouts.d.ts +0 -1
  175. package/src/js/org.qcobjects.tools.layouts.ts +0 -85
  176. package/src/js/org.qcobjects.views.d.ts +0 -1
  177. /package/spec/{testsSpec.js → testsSpec.ts} +0 -0
@@ -1,38 +0,0 @@
1
- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
- # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3
-
4
- name: Node.js Publish Beta version
5
-
6
- on:
7
- push:
8
- branches:
9
- - 'v*.*-beta'
10
- tags:
11
- - 'v*.*.*-beta'
12
-
13
- jobs:
14
- build:
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v3.3.0
18
- - uses: actions/setup-node@v3.6.0
19
- with:
20
- node-version: 16
21
- - run: npm ci
22
- - run: npm test
23
-
24
- publish-npm:
25
- needs: build
26
- runs-on: ubuntu-latest
27
- steps:
28
- - uses: actions/checkout@v3.3.0
29
- - uses: actions/setup-node@v3.6.0
30
- with:
31
- node-version: 16
32
- registry-url: https://registry.npmjs.org/
33
- - name: Set up NPM authentication
34
- run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
35
- - run: npm ci
36
- - run: npm publish --tag ${GITHUB_REF##*/}
37
- env:
38
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
@@ -1,38 +0,0 @@
1
- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
- # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3
-
4
- name: Node.js Publish LTS version
5
-
6
- on:
7
- push:
8
- branches:
9
- - 'v*.*-lts'
10
- tags:
11
- - 'v*.*.*-lts'
12
-
13
- jobs:
14
- build:
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v3.3.0
18
- - uses: actions/setup-node@v3.6.0
19
- with:
20
- node-version: 16
21
- - run: npm ci
22
- - run: npm test
23
-
24
- publish-npm:
25
- needs: build
26
- runs-on: ubuntu-latest
27
- steps:
28
- - uses: actions/checkout@v3.3.0
29
- - uses: actions/setup-node@v3.6.0
30
- with:
31
- node-version: 16
32
- registry-url: https://registry.npmjs.org/
33
- - name: Set up NPM authentication
34
- run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
35
- - run: npm ci
36
- - run: npm publish --tag ${GITHUB_REF##*/}
37
- env:
38
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
@@ -1,40 +0,0 @@
1
- # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
- # For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3
-
4
- name: Node.js Publish Package
5
-
6
- on:
7
- push:
8
- branches:
9
- - main
10
- tags:
11
- - 'v*.*.*'
12
-
13
- jobs:
14
- build:
15
- runs-on: ubuntu-latest
16
- steps:
17
- - uses: actions/checkout@v3.3.0
18
- - uses: actions/setup-node@v3.6.0
19
- with:
20
- node-version: 20
21
- - run: npm config set legacy-peer-deps true=true
22
- - run: npm ci
23
- - run: npm test
24
-
25
- publish-npm:
26
- needs: build
27
- runs-on: ubuntu-latest
28
- steps:
29
- - uses: actions/checkout@v3.3.0
30
- - uses: actions/setup-node@v3.6.0
31
- with:
32
- node-version: 20
33
- registry-url: https://registry.npmjs.org/
34
- - name: Set up NPM authentication
35
- run: echo "registry=https://registry.npmjs.org/:_authToken=${{secrets.NPM_TOKEN}}" >> ~/.npmrc
36
- - run: npm config set legacy-peer-deps true=true
37
- - run: npm ci
38
- - run: npm publish
39
- env:
40
- NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
package/.gitmodules DELETED
@@ -1,4 +0,0 @@
1
- [submodule "v2.4"]
2
- path = v2.4
3
- url = https://github.com/QuickCorp/QCObjects-SDK.git
4
- branch = v2.4
@@ -1,97 +0,0 @@
1
- "use strict";
2
- /* eslint-disable @typescript-eslint/no-empty-function */
3
- /**
4
- * QCObjects SDK 2.4
5
- * ________________
6
- *
7
- * Author: Jean Machuca <correojean@gmail.com>
8
- *
9
- * Cross Browser Javascript Framework for MVC Patterns
10
- * QuickCorp/QCObjects is licensed under the
11
- * GNU Lesser General Public License v3.0
12
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
13
- *
14
- * Permissions of this copyleft license are conditioned on making available
15
- * complete source code of licensed works and modifications under the same
16
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
17
- * Contributors provide an express grant of patent rights. However, a larger
18
- * work using the licensed work through interfaces provided by the licensed
19
- * work may be distributed under different terms and without source code for
20
- * the larger work.
21
- *
22
- * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
23
- *
24
- * Everyone is permitted to copy and distribute verbatim copies of this
25
- * license document, but changing it is not allowed.
26
- */
27
- Object.defineProperty(exports, "__esModule", { value: true });
28
- const qcobjects_1 = require("qcobjects");
29
- const _top = (typeof module === "object" && typeof module.exports === "object") ? (module.exports = (typeof globalThis !== "undefined"
30
- ? globalThis
31
- : typeof self !== "undefined"
32
- ? self
33
- : typeof window !== "undefined"
34
- ? window
35
- : typeof global !== "undefined"
36
- ? global
37
- : {})) : ((typeof global === "object") ? (global) : ((typeof window === "object") ? (window) : ({})));
38
- // eslint-disable-next-line camelcase
39
- (function __qcobjects_sdk__(_top) {
40
- "use strict";
41
- if (typeof Object.defineProperty !== "undefined" && typeof _top !== "undefined") {
42
- try {
43
- Object.defineProperty(_top, "__qcobjects_sdk__", {
44
- enumerable: true,
45
- configurable: false,
46
- writable: false,
47
- // eslint-disable-next-line camelcase
48
- value: __qcobjects_sdk__,
49
- });
50
- }
51
- catch (e) {
52
- if (typeof _top.__qcobjects_sdk__ !== "undefined") {
53
- _top.__qcobjects_sdk__.__loaded__ = true;
54
- }
55
- }
56
- }
57
- if (typeof _top.__qcobjects_sdk__.__loaded__ === "undefined") {
58
- _top.__qcobjects_sdk__.__loaded__ = true;
59
- if (typeof _top === "undefined") {
60
- throw Error("Top context empty: It should either global, module or window");
61
- }
62
- const __start__ = qcobjects_1.GlobalSettings.__start__.bind(_top);
63
- let _imports_ = [];
64
- // non-browsers environment // esbuild compatible
65
- _imports_ = [
66
- new Promise((resolve) => {
67
- require("./js/org.qcobjects.i18n_messages");
68
- require("./js/org.qcobjects.models");
69
- require("./js/org.qcobjects.components");
70
- require("./js/org.qcobjects.components.grid");
71
- require("./js/org.qcobjects.components.list");
72
- require("./js/org.qcobjects.components.slider");
73
- require("./js/org.qcobjects.components.notifications");
74
- require("./js/org.qcobjects.components.splashscreen");
75
- require("./js/org.qcobjects.controllers");
76
- require("./js/org.qcobjects.controllers.grid");
77
- require("./js/org.qcobjects.controllers.list");
78
- require("./js/org.qcobjects.controllers.slider");
79
- require("./js/org.qcobjects.controllers.form");
80
- require("./js/org.qcobjects.controllers.swagger");
81
- require("./js/org.qcobjects.effects");
82
- require("./js/org.qcobjects.modal.controllers");
83
- require("./js/org.qcobjects.views");
84
- require("./js/org.qcobjects.tools.canvas");
85
- require("./js/org.qcobjects.tools.layouts");
86
- require("./js/org.qcobjects.cloud.auth.session.usertoken");
87
- require("./js/org.qcobjects.cloud.auth.session.data");
88
- resolve();
89
- })
90
- ];
91
- _top._sdk_ = Promise.all(_imports_).then(() => {
92
- qcobjects_1.CONFIG.set("useSDK", true);
93
- __start__();
94
- });
95
- }
96
- })(_top);
97
- exports.default = _top;
@@ -1,43 +0,0 @@
1
- /* The Modal (background) */
2
- .modal {
3
- display: none; /* Hidden by default */
4
- position: fixed; /* Stay in place */
5
- z-index: 1; /* Sit on top */
6
- padding-top: 100px; /* Location of the box */
7
- left: 0;
8
- top: 0;
9
- width: 100%; /* Full width */
10
- height: 100%; /* Full height */
11
- overflow: auto; /* Enable scroll if needed */
12
- background-color: rgb(0,0,0); /* Fallback color */
13
- background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
14
- border-radius: 12px !important;
15
- border: none !important;
16
- }
17
-
18
- /* Modal Content */
19
- .modal-content {
20
- background-color: #111;
21
- background-image: radial-gradient( #edeeef,#dee3de,#fcfcfc);
22
- margin: auto;
23
- padding: 20px;
24
- border-radius: 12px !important;
25
- border: 1px solid #909090;
26
- width: 80%;
27
- height:auto;
28
- }
29
- /* The Close Button */
30
- .close {
31
- color: #aaaaaa;
32
- float: right;
33
- font-size: 28px;
34
- font-weight: bold;
35
- }
36
-
37
- .close:hover,
38
- .close:focus {
39
- color: #000;
40
- text-decoration: none;
41
- cursor: pointer;
42
- }
43
- .modal * {color:black}
@@ -1,14 +0,0 @@
1
- /* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
2
- @media (max-width: 600px),
3
- @media (max-width:460px),
4
- @media (aspect-ratio: 9/16),
5
- @media (aspect-ratio: 10/16),
6
- @media (aspect-ratio: 5/8),
7
- @media (aspect-ratio: 3/4),
8
- @media (aspect-ratio: 2/3){
9
- nav, article {
10
- width: 100%;
11
- height: auto;
12
- position: relative;
13
- }
14
- }
@@ -1,76 +0,0 @@
1
- /**
2
- * QCObjects SDK 1.0
3
- * ________________
4
- *
5
- * Author: Jean Machuca <correojean@gmail.com>
6
- *
7
- * Cross Browser Javascript Framework for MVC Patterns
8
- * QuickCorp/QCObjects is licensed under the
9
- * GNU Lesser General Public License v3.0
10
- * [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
11
- *
12
- * Permissions of this copyleft license are conditioned on making available
13
- * complete source code of licensed works and modifications under the same
14
- * license or the GNU GPLv3. Copyright and license notices must be preserved.
15
- * Contributors provide an express grant of patent rights. However, a larger
16
- * work using the licensed work through interfaces provided by the licensed
17
- * work may be distributed under different terms and without source code for
18
- * the larger work.
19
- *
20
- * Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
21
- *
22
- * Everyone is permitted to copy and distribute verbatim copies of this
23
- * license document, but changing it is not allowed.
24
- */
25
-
26
- @charset "UTF-8";
27
- /* CSS Document */
28
-
29
- * {
30
- box-sizing: border-box;
31
- }
32
-
33
- body {
34
- font-family: Arial, Helvetica, sans-serif;
35
- }
36
-
37
- /* Style the header */
38
- header {
39
- padding: 30px;
40
- text-align: center;
41
- font-size: 20px;
42
- }
43
-
44
- /* Create two columns/boxes that floats next to each other */
45
- nav {
46
- float: left;
47
- width: 30%;
48
- height: 1080px;
49
- padding: 20px;
50
- }
51
-
52
- /* Style the list inside the menu */
53
- nav ul {
54
- list-style-type: none;
55
- padding: 0;
56
- }
57
-
58
- article {
59
- float: left;
60
- padding: 20px;
61
- width: 70%;
62
- }
63
-
64
- /* Clear floats after the columns */
65
- section:after {
66
- content: "";
67
- display: table;
68
- clear: both;
69
- }
70
-
71
-
72
- /* Style the footer */
73
- footer {
74
- padding: 10px;
75
- text-align: center;
76
- }
@@ -1,64 +0,0 @@
1
- ul {
2
- display: flex;
3
- }
4
-
5
- li {
6
- display: inline;
7
- }
8
-
9
- ul {
10
- padding: 15px 0 15px 0;
11
- background-color: #f7f6f6 !important;
12
- border-radius: 13px;
13
- box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px !important;
14
- }
15
-
16
- ul li {
17
- list-style: none;
18
- margin: 0;
19
- padding: 0;
20
- padding-top: 7px;
21
- padding-bottom: 7px;
22
- padding-left: 10px;
23
- border-bottom: 1px solid white;
24
- }
25
-
26
- ul {
27
- list-style-type: none;
28
- }
29
-
30
-
31
- li:hover {
32
- background: white;
33
- cursor: pointer;
34
- }
35
-
36
- ul li ul {
37
- background: white;
38
- visibility: hidden;
39
- opacity: 0;
40
- min-width: 5rem;
41
- position: relative;
42
- transition: all 0.5s ease;
43
- margin-top: 1rem;
44
- left: 0;
45
- display: none;
46
- }
47
-
48
- ul li:hover > ul,
49
- ul li ul:hover {
50
- visibility: visible;
51
- opacity: 1;
52
- display: inline-block;
53
- margin: 0 auto;
54
- width: 95%;
55
- }
56
-
57
- ul li ul li {
58
- clear: both;
59
- width: 100%;
60
- padding: 1%;
61
- }
62
- ul li {
63
- overflow-x: hidden;
64
- }
@@ -1,57 +0,0 @@
1
- ul {
2
- padding: 15px 0 15px 0;
3
- background-color: #f7f6f6 !important;
4
- border-radius: 13px;
5
- box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 0px !important;
6
- }
7
-
8
- ul li {
9
- list-style: none;
10
- margin: 0;
11
- padding: 0;
12
- padding-top: 7px;
13
- padding-bottom: 7px;
14
- padding-left: 10px;
15
- border-bottom: 1px solid white;
16
- }
17
-
18
- ul {
19
- list-style-type: none;
20
- }
21
-
22
-
23
- ul, li {display: block;}
24
- li:hover {
25
- background: white;
26
- cursor: pointer;
27
- }
28
-
29
- ul li ul {
30
- background: white;
31
- visibility: hidden;
32
- opacity: 0;
33
- min-width: 5rem;
34
- position: relative;
35
- transition: all 0.5s ease;
36
- margin-top: 1rem;
37
- left: 0;
38
- display: none;
39
- }
40
-
41
- ul li:hover > ul,
42
- ul li ul:hover {
43
- visibility: visible;
44
- opacity: 1;
45
- display: inline-block;
46
- margin: 0 auto;
47
- width: 95%;
48
- }
49
-
50
- ul li ul li {
51
- clear: both;
52
- width: 100%;
53
- padding: 1%;
54
- }
55
- ul li {
56
- overflow-x: hidden;
57
- }
@@ -1,111 +0,0 @@
1
- :host * {
2
- box-sizing: border-box;
3
- }
4
-
5
- :host {
6
- zoom: 1.0;
7
- width: device-width;
8
- margin: 0;
9
- top: 0;
10
- left: 0;
11
- right: 0;
12
- bottom: 0;
13
- position: absolute;
14
- padding: 0;
15
- min-width: 100vw;
16
- min-height: 100vh;
17
- width: 100vw;
18
- height: 100vh;
19
- overflow: hidden;
20
- background-color: black;
21
- }
22
- #slot-logo::slotted(img) {
23
- vertical-align: middle;
24
- display: block;
25
- width: 100vw;
26
- left: 0;
27
- margin: 0;
28
- padding: 0;
29
- top: 20vh;
30
- bottom: 20vh;
31
- position: absolute;
32
- z-index: 9999999999;
33
- transform-origin: center;
34
- transform-style: preserve-3d;
35
- filter: blur(0em);
36
- transition: filter 0.5s;
37
- }
38
-
39
- :host * {
40
- -webkit-user-select: none;
41
- -moz-user-select: none;
42
- -ms-user-select: none;
43
- user-select: none;
44
- -webkit-touch-callout: none;
45
- /* prevent callout to copy image, etc when tap to hold */
46
- -webkit-text-size-adjust: none;
47
- /* prevent webkit from resizing text to fit */
48
- -webkit-user-select: none;
49
- /* prevent copy paste, to allow, change 'none' to 'text' */
50
- }
51
-
52
- /* FOCUS */
53
- :host summary:focus,
54
- :host a:focus,
55
- :host button:focus {
56
- outline: none;
57
- }
58
-
59
- .splashscreen,
60
- .fullscreen-bg {
61
- padding: 0;
62
- margin: 0;
63
- top: 0;
64
- left: 0;
65
- right: 0;
66
- bottom: 0;
67
- padding: 0;
68
- background-attachment: fixed;
69
- background-position: center;
70
- background-clip: content-box;
71
- background-size: cover;
72
- position: absolute;
73
- min-width: 100vw;
74
- min-height: 100vh;
75
- width: 100vw;
76
- height: 100vh;
77
- z-index: 0;
78
- overflow: hidden;
79
- }
80
-
81
- .splashscreen .splashcontent {
82
- top: 0;
83
- left: 0;
84
- right: 0;
85
- bottom: 0;
86
- margin: 0 auto;
87
- width: 100vw;
88
- height: 100vh;
89
- padding: 0;
90
- overflow: hidden;
91
- z-index: 1;
92
- }
93
-
94
- .splashscreen .splashcontent p {
95
- color: white;
96
- }
97
-
98
- video.fullscreen-bg__video {
99
- top: 0;
100
- left: 0;
101
- bottom: 0;
102
- right: 0;
103
- margin: 0;
104
- padding: 0;
105
- position: absolute;
106
- min-width: 100vw;
107
- min-height: 100vh;
108
- overflow: hidden;
109
- z-index: 0;
110
- object-fit: cover;
111
- }
@@ -1,46 +0,0 @@
1
- @import url("./base-modal.css");
2
-
3
- .modal details {
4
- border: 1px 0 0 1px solid #aaa;
5
- border-radius: 4px;
6
- padding: .5em .5em 0;
7
- }
8
-
9
- .modal summary {
10
- font-weight: bold;
11
- margin: -.5em -.5em 0;
12
- padding: .5em;
13
- }
14
-
15
- .modal details[open] {
16
- padding: .5em;
17
- }
18
-
19
- .modal details[open] summary {
20
- border-bottom: 1px solid #aaa;
21
- margin-bottom: .5em;
22
- }
23
-
24
- .modal summary::-webkit-details-marker {
25
- display: none
26
- }
27
-
28
- .modal summary:after {
29
- border-radius: 5px;
30
- content: "+";
31
- color: #111111;
32
- float: left;
33
- font-size: 1.5em;
34
- font-weight: bold;
35
- margin: -5px 10px 0 0;
36
- padding: 0;
37
- text-align: center;
38
- width: 20px;
39
- }
40
- .modal details[open] summary:after {
41
- content: "-";
42
- }
43
-
44
- .modal ul {
45
- list-style-type: none;
46
- }
package/build/index.cjs DELETED
@@ -1,4 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const sdk = require("./QCObjects-SDK");
4
- module.exports = sdk;
package/build/index.mjs DELETED
@@ -1,2 +0,0 @@
1
- import sdk from "./QCObjects-SDK.js";
2
- export default sdk;