qcobjects-sdk 2.5.105-beta → 2.6.2
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/.github/workflows/npmpublish.yml +49 -0
- package/.gitmodules +4 -0
- package/CHANGELOG.md +15 -0
- package/LICENSE.txt +21 -0
- package/README.md +7 -1
- package/VERSION +1 -1
- package/build/index.js +128 -35
- package/build/{js → ts}/org.qcobjects.cloud.auth.session.data.js +3 -12
- package/build/{js → ts}/org.qcobjects.cloud.auth.session.usertoken.js +3 -12
- package/build/{js → ts}/org.qcobjects.components.grid.js +3 -12
- package/build/{js → ts}/org.qcobjects.components.js +3 -12
- package/build/{js → ts}/org.qcobjects.components.list.js +3 -12
- package/build/{js → ts}/org.qcobjects.components.notifications.js +3 -12
- package/build/{js → ts}/org.qcobjects.components.slider.js +3 -12
- package/build/{js → ts}/org.qcobjects.components.splashscreen.js +3 -12
- package/build/{js → ts}/org.qcobjects.controllers.form.js +4 -13
- package/build/{js → ts}/org.qcobjects.controllers.grid.js +3 -12
- package/build/ts/org.qcobjects.controllers.js +25 -0
- package/build/{js → ts}/org.qcobjects.controllers.list.js +3 -12
- package/build/{js → ts}/org.qcobjects.controllers.slider.js +3 -12
- package/build/{js → ts}/org.qcobjects.controllers.swagger.js +3 -12
- package/build/{js → ts}/org.qcobjects.effects.base.js +3 -19
- package/build/{js → ts}/org.qcobjects.effects.extended.js +13 -70
- package/build/{js → ts}/org.qcobjects.effects.js +3 -12
- package/build/{js → ts}/org.qcobjects.i18n_messages.js +3 -12
- package/build/{js → ts}/org.qcobjects.modal.controllers.js +3 -12
- package/build/{js → ts}/org.qcobjects.modal.effects.js +3 -12
- package/build/ts/org.qcobjects.models.js +25 -0
- package/build/{js → ts}/org.qcobjects.tools.canvas.js +3 -12
- package/build/{js → ts}/org.qcobjects.tools.js +3 -12
- package/build/{js → ts}/org.qcobjects.tools.layouts.js +3 -12
- package/build/ts/org.qcobjects.views.js +25 -0
- package/build-esbuild.js +1 -3
- package/docs/CNAME +1 -0
- package/package.json +6 -6
- package/public/browser/index.js +81 -7072
- package/public/browser/index.js.map +4 -4
- package/public/cjs/index.cjs +140 -7073
- package/public/cjs/index.cjs.map +4 -4
- package/public/esm/index.mjs +386 -7396
- package/public/esm/index.mjs.map +4 -4
- package/public/types/index.d.ts +60 -153
- package/src/css/basic-layout.css +4 -16
- package/src/index.ts +118 -2
- package/src/{js → ts}/org.qcobjects.cloud.auth.session.data.ts +3 -12
- package/src/{js → ts}/org.qcobjects.cloud.auth.session.usertoken.ts +3 -12
- package/src/{js → ts}/org.qcobjects.components.grid.ts +3 -12
- package/src/{js → ts}/org.qcobjects.components.list.ts +3 -12
- package/src/{js → ts}/org.qcobjects.components.notifications.ts +3 -12
- package/src/{js → ts}/org.qcobjects.components.slider.ts +3 -12
- package/src/{js → ts}/org.qcobjects.components.splashscreen.ts +3 -12
- package/src/{js → ts}/org.qcobjects.components.ts +3 -12
- package/src/{js → ts}/org.qcobjects.controllers.form.ts +4 -13
- package/src/{js → ts}/org.qcobjects.controllers.grid.ts +6 -15
- package/src/{js → ts}/org.qcobjects.controllers.list.ts +4 -13
- package/src/{js → ts}/org.qcobjects.controllers.slider.ts +4 -13
- package/src/{js → ts}/org.qcobjects.controllers.swagger.ts +3 -12
- package/src/ts/org.qcobjects.controllers.ts +26 -0
- package/src/{js → ts}/org.qcobjects.effects.base.ts +9 -25
- package/src/{js → ts}/org.qcobjects.effects.extended.ts +33 -90
- package/src/{js → ts}/org.qcobjects.effects.ts +3 -12
- package/src/{js → ts}/org.qcobjects.i18n_messages.ts +3 -12
- package/src/{js → ts}/org.qcobjects.modal.controllers.ts +3 -12
- package/src/{js → ts}/org.qcobjects.modal.effects.ts +3 -12
- package/src/ts/org.qcobjects.models.ts +25 -0
- package/src/{js → ts}/org.qcobjects.tools.canvas.ts +3 -12
- package/src/{js → ts}/org.qcobjects.tools.layouts.ts +3 -12
- package/src/{js → ts}/org.qcobjects.tools.ts +3 -12
- package/src/ts/org.qcobjects.views.ts +30 -0
- package/.github/workflows/npmpublish-beta.yml +0 -40
- package/.github/workflows/npmpublish-lts.yml +0 -40
- package/.github/workflows/npmpublish-main.yml +0 -40
- package/build/QCObjects-SDK.js +0 -139
- package/build/js/org.qcobjects.controllers.js +0 -34
- package/build/js/org.qcobjects.models.js +0 -34
- package/build/js/org.qcobjects.views.js +0 -34
- package/src/QCObjects-SDK.ts +0 -127
- package/src/js/org.qcobjects.controllers.ts +0 -35
- package/src/js/org.qcobjects.models.ts +0 -34
- package/src/js/org.qcobjects.views.ts +0 -39
- /package/build/{js → ts}/org.qcobjects.base.components.js +0 -0
- /package/src/{js → ts}/org.qcobjects.base.components.ts +0 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: Node.js Publish
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*.*.*'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: actions/checkout@v6
|
|
13
|
+
with:
|
|
14
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
15
|
+
ref: ${{ github.ref }}
|
|
16
|
+
- uses: actions/setup-node@v6
|
|
17
|
+
with:
|
|
18
|
+
node-version: 22
|
|
19
|
+
- run: npm i --legacy-peer-deps
|
|
20
|
+
- run: npm run build
|
|
21
|
+
- run: npm test
|
|
22
|
+
|
|
23
|
+
publish-npm:
|
|
24
|
+
needs: build
|
|
25
|
+
runs-on: ubuntu-latest
|
|
26
|
+
permissions:
|
|
27
|
+
contents: read
|
|
28
|
+
id-token: write
|
|
29
|
+
steps:
|
|
30
|
+
- uses: actions/checkout@v6
|
|
31
|
+
with:
|
|
32
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
33
|
+
ref: ${{ github.ref }}
|
|
34
|
+
- uses: actions/setup-node@v6
|
|
35
|
+
with:
|
|
36
|
+
node-version: 22
|
|
37
|
+
- name: Upgrade npm for OIDC support (requires >=11.5.1)
|
|
38
|
+
run: npm install -g npm@latest
|
|
39
|
+
- run: npm i --legacy-peer-deps
|
|
40
|
+
- run: npm run build
|
|
41
|
+
- name: Publish to npm
|
|
42
|
+
run: |
|
|
43
|
+
if [[ "${{ github.ref }}" == *-beta ]]; then
|
|
44
|
+
npm publish --tag beta
|
|
45
|
+
elif [[ "${{ github.ref }}" == *-lts ]]; then
|
|
46
|
+
npm publish --tag lts
|
|
47
|
+
else
|
|
48
|
+
npm publish
|
|
49
|
+
fi
|
package/.gitmodules
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
This is an automatic Changelog history of versions generated using the command: **qcobjects v-changelog > CHANGELOG.md**
|
|
4
4
|
|
|
5
|
+
## v2.6.2
|
|
6
|
+
|
|
7
|
+
- fix: repository.url QuickCorp -> QCObjects/qcobjects-sdk (Sigstore provenance E422)
|
|
8
|
+
|
|
9
|
+
## v2.6.1
|
|
10
|
+
|
|
11
|
+
- fix: externalize qcobjects in the bundle (stop inlining stale core; no more node:process in dist)
|
|
12
|
+
- fix: devDependencies/peerDependencies qcobjects range -> >=2.5.142
|
|
13
|
+
- fix: bugs.url QuickCorp -> QCObjects (Sigstore provenance E422 guard)
|
|
14
|
+
|
|
15
|
+
## v2.6.0
|
|
16
|
+
|
|
17
|
+
- License migration LGPLv3 → MIT (LICENSE.txt, package.json, source headers)
|
|
18
|
+
- See product-specs 09-license and 15-unified-vision-v3 (Phase 1)
|
|
19
|
+
|
|
5
20
|
## v0 -> v0.0
|
|
6
21
|
|
|
7
22
|
- DataGridController exec runComponentHelpers when done for subcomponents
|
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015 Jean Machuca,<correojean@gmail.com>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
> **Official repository.** This is the maintained QCObjects SDK
|
|
2
|
+
> (MIT license). Normative specifications live in
|
|
3
|
+
> [QCObjects/product-specs](https://github.com/QCObjects/product-specs)
|
|
4
|
+
> ([docs](https://qcobjects.github.io/product-specs/)).
|
|
5
|
+
>
|
|
6
|
+
> 
|
|
2
7
|
[](https://app.fossa.com/projects/git%2Bgithub.com%2FQuickCorp%2FQCObjects-SDK?ref=badge_shield)
|
|
3
8
|
|
|
4
9
|
QCObjects SDK
|
|
@@ -16,6 +21,7 @@ If you like this code please [DONATE ](https://www.paypal.com/cgi-bin/webscr?cmd
|
|
|
16
21
|
|
|
17
22
|
[QCObjects SDK](https://sdk.qcobjects.dev) is a set of Controllers, Views and Components that are elementary and useful to assist developers to build applications under MVC patterns using [QCObjects](https://qcobjects.dev).
|
|
18
23
|
|
|
24
|
+
Checkout the [QCObjects SDK 2.4 beta version](https://sdk.qcobjects.dev/v2.4/)
|
|
19
25
|
|
|
20
26
|
If you like more code samples feel free to write your questions to info@quickcorp.cl
|
|
21
27
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.
|
|
1
|
+
2.6.2
|
package/build/index.js
CHANGED
|
@@ -1,37 +1,130 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-empty-function */
|
|
3
|
+
/**
|
|
4
|
+
* QCObjects Framework SDK
|
|
5
|
+
* ________________
|
|
6
|
+
*
|
|
7
|
+
* Author: Jean Machuca <correojean@gmail.com>
|
|
8
|
+
*
|
|
9
|
+
* Cross Browser Javascript Framework for MVC Patterns
|
|
10
|
+
* QCObjects is licensed under the MIT License
|
|
11
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
12
|
+
*
|
|
13
|
+
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
14
|
+
*
|
|
15
|
+
* Everyone is permitted to copy and distribute verbatim copies of this
|
|
16
|
+
* license document, but changing it is not allowed.
|
|
17
|
+
*/
|
|
35
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
-
|
|
37
|
-
exports.
|
|
19
|
+
exports.ModalController = exports.ModalMoveDown = exports.ModalMoveUp = exports.ModalFade = exports.WipeDown = exports.WipeUp = exports.WipeRight = exports.WipeLeft = exports.Resize = exports.Radius = exports.Rotate = exports.RotateZ = exports.RotateY = exports.RotateX = exports.MoveYInFromTop = exports.MoveYInFromBottom = exports.MoveXInFromLeft = exports.MoveXInFromRight = exports.Move = exports.Fade = exports.SwaggerUIController = exports.FormValidations = exports.FormController = exports.SliderController = exports.DataGridController = exports.GridController = exports.ListController = exports.GenericController = exports.CubeSplashScreenComponent = exports.VideoSplashScreenComponent = exports.SplashScreenComponent = exports.NotificationComponent = exports.SliderComponent = exports.SlideItemComponent = exports.SlideListComponent = exports.ListComponent = exports.ListItemComponent = exports.GridItemComponent = exports.GridComponent = exports.FormField = exports.SwaggerUIComponent = exports.ModalComponent = exports.ModalEnclosureComponent = exports.EmailField = exports.TextField = exports.InputField = exports.ButtonField = exports.ShadowedComponent = exports.Contact = exports.i18n_messages = void 0;
|
|
20
|
+
exports.SessionData = exports.SessionUserToken = exports.BasicLayout = exports.CanvasTool = exports.GridView = void 0;
|
|
21
|
+
const qcobjects_1 = require("qcobjects");
|
|
22
|
+
var org_qcobjects_i18n_messages_1 = require("./ts/org.qcobjects.i18n_messages");
|
|
23
|
+
Object.defineProperty(exports, "i18n_messages", { enumerable: true, get: function () { return org_qcobjects_i18n_messages_1.i18n_messages; } });
|
|
24
|
+
var org_qcobjects_models_1 = require("./ts/org.qcobjects.models");
|
|
25
|
+
Object.defineProperty(exports, "Contact", { enumerable: true, get: function () { return org_qcobjects_models_1.Contact; } });
|
|
26
|
+
var org_qcobjects_components_1 = require("./ts/org.qcobjects.components");
|
|
27
|
+
Object.defineProperty(exports, "ShadowedComponent", { enumerable: true, get: function () { return org_qcobjects_components_1.ShadowedComponent; } });
|
|
28
|
+
Object.defineProperty(exports, "ButtonField", { enumerable: true, get: function () { return org_qcobjects_components_1.ButtonField; } });
|
|
29
|
+
Object.defineProperty(exports, "InputField", { enumerable: true, get: function () { return org_qcobjects_components_1.InputField; } });
|
|
30
|
+
Object.defineProperty(exports, "TextField", { enumerable: true, get: function () { return org_qcobjects_components_1.TextField; } });
|
|
31
|
+
Object.defineProperty(exports, "EmailField", { enumerable: true, get: function () { return org_qcobjects_components_1.EmailField; } });
|
|
32
|
+
Object.defineProperty(exports, "ModalEnclosureComponent", { enumerable: true, get: function () { return org_qcobjects_components_1.ModalEnclosureComponent; } });
|
|
33
|
+
Object.defineProperty(exports, "ModalComponent", { enumerable: true, get: function () { return org_qcobjects_components_1.ModalComponent; } });
|
|
34
|
+
Object.defineProperty(exports, "SwaggerUIComponent", { enumerable: true, get: function () { return org_qcobjects_components_1.SwaggerUIComponent; } });
|
|
35
|
+
var org_qcobjects_base_components_1 = require("./ts/org.qcobjects.base.components");
|
|
36
|
+
Object.defineProperty(exports, "FormField", { enumerable: true, get: function () { return org_qcobjects_base_components_1.FormField; } });
|
|
37
|
+
var org_qcobjects_components_grid_1 = require("./ts/org.qcobjects.components.grid");
|
|
38
|
+
Object.defineProperty(exports, "GridComponent", { enumerable: true, get: function () { return org_qcobjects_components_grid_1.GridComponent; } });
|
|
39
|
+
Object.defineProperty(exports, "GridItemComponent", { enumerable: true, get: function () { return org_qcobjects_components_grid_1.GridItemComponent; } });
|
|
40
|
+
var org_qcobjects_components_list_1 = require("./ts/org.qcobjects.components.list");
|
|
41
|
+
Object.defineProperty(exports, "ListItemComponent", { enumerable: true, get: function () { return org_qcobjects_components_list_1.ListItemComponent; } });
|
|
42
|
+
Object.defineProperty(exports, "ListComponent", { enumerable: true, get: function () { return org_qcobjects_components_list_1.ListComponent; } });
|
|
43
|
+
var org_qcobjects_components_slider_1 = require("./ts/org.qcobjects.components.slider");
|
|
44
|
+
Object.defineProperty(exports, "SlideListComponent", { enumerable: true, get: function () { return org_qcobjects_components_slider_1.SlideListComponent; } });
|
|
45
|
+
Object.defineProperty(exports, "SlideItemComponent", { enumerable: true, get: function () { return org_qcobjects_components_slider_1.SlideItemComponent; } });
|
|
46
|
+
Object.defineProperty(exports, "SliderComponent", { enumerable: true, get: function () { return org_qcobjects_components_slider_1.SliderComponent; } });
|
|
47
|
+
var org_qcobjects_components_notifications_1 = require("./ts/org.qcobjects.components.notifications");
|
|
48
|
+
Object.defineProperty(exports, "NotificationComponent", { enumerable: true, get: function () { return org_qcobjects_components_notifications_1.NotificationComponent; } });
|
|
49
|
+
var org_qcobjects_components_splashscreen_1 = require("./ts/org.qcobjects.components.splashscreen");
|
|
50
|
+
Object.defineProperty(exports, "SplashScreenComponent", { enumerable: true, get: function () { return org_qcobjects_components_splashscreen_1.SplashScreenComponent; } });
|
|
51
|
+
Object.defineProperty(exports, "VideoSplashScreenComponent", { enumerable: true, get: function () { return org_qcobjects_components_splashscreen_1.VideoSplashScreenComponent; } });
|
|
52
|
+
Object.defineProperty(exports, "CubeSplashScreenComponent", { enumerable: true, get: function () { return org_qcobjects_components_splashscreen_1.CubeSplashScreenComponent; } });
|
|
53
|
+
var org_qcobjects_controllers_1 = require("./ts/org.qcobjects.controllers");
|
|
54
|
+
Object.defineProperty(exports, "GenericController", { enumerable: true, get: function () { return org_qcobjects_controllers_1.GenericController; } });
|
|
55
|
+
var org_qcobjects_controllers_list_1 = require("./ts/org.qcobjects.controllers.list");
|
|
56
|
+
Object.defineProperty(exports, "ListController", { enumerable: true, get: function () { return org_qcobjects_controllers_list_1.ListController; } });
|
|
57
|
+
var org_qcobjects_controllers_grid_1 = require("./ts/org.qcobjects.controllers.grid");
|
|
58
|
+
Object.defineProperty(exports, "GridController", { enumerable: true, get: function () { return org_qcobjects_controllers_grid_1.GridController; } });
|
|
59
|
+
Object.defineProperty(exports, "DataGridController", { enumerable: true, get: function () { return org_qcobjects_controllers_grid_1.DataGridController; } });
|
|
60
|
+
var org_qcobjects_controllers_slider_1 = require("./ts/org.qcobjects.controllers.slider");
|
|
61
|
+
Object.defineProperty(exports, "SliderController", { enumerable: true, get: function () { return org_qcobjects_controllers_slider_1.SliderController; } });
|
|
62
|
+
var org_qcobjects_controllers_form_1 = require("./ts/org.qcobjects.controllers.form");
|
|
63
|
+
Object.defineProperty(exports, "FormController", { enumerable: true, get: function () { return org_qcobjects_controllers_form_1.FormController; } });
|
|
64
|
+
Object.defineProperty(exports, "FormValidations", { enumerable: true, get: function () { return org_qcobjects_controllers_form_1.FormValidations; } });
|
|
65
|
+
var org_qcobjects_controllers_swagger_1 = require("./ts/org.qcobjects.controllers.swagger");
|
|
66
|
+
Object.defineProperty(exports, "SwaggerUIController", { enumerable: true, get: function () { return org_qcobjects_controllers_swagger_1.SwaggerUIController; } });
|
|
67
|
+
var org_qcobjects_effects_1 = require("./ts/org.qcobjects.effects");
|
|
68
|
+
Object.defineProperty(exports, "Fade", { enumerable: true, get: function () { return org_qcobjects_effects_1.Fade; } });
|
|
69
|
+
Object.defineProperty(exports, "Move", { enumerable: true, get: function () { return org_qcobjects_effects_1.Move; } });
|
|
70
|
+
Object.defineProperty(exports, "MoveXInFromRight", { enumerable: true, get: function () { return org_qcobjects_effects_1.MoveXInFromRight; } });
|
|
71
|
+
Object.defineProperty(exports, "MoveXInFromLeft", { enumerable: true, get: function () { return org_qcobjects_effects_1.MoveXInFromLeft; } });
|
|
72
|
+
Object.defineProperty(exports, "MoveYInFromBottom", { enumerable: true, get: function () { return org_qcobjects_effects_1.MoveYInFromBottom; } });
|
|
73
|
+
Object.defineProperty(exports, "MoveYInFromTop", { enumerable: true, get: function () { return org_qcobjects_effects_1.MoveYInFromTop; } });
|
|
74
|
+
Object.defineProperty(exports, "RotateX", { enumerable: true, get: function () { return org_qcobjects_effects_1.RotateX; } });
|
|
75
|
+
Object.defineProperty(exports, "RotateY", { enumerable: true, get: function () { return org_qcobjects_effects_1.RotateY; } });
|
|
76
|
+
Object.defineProperty(exports, "RotateZ", { enumerable: true, get: function () { return org_qcobjects_effects_1.RotateZ; } });
|
|
77
|
+
Object.defineProperty(exports, "Rotate", { enumerable: true, get: function () { return org_qcobjects_effects_1.Rotate; } });
|
|
78
|
+
Object.defineProperty(exports, "Radius", { enumerable: true, get: function () { return org_qcobjects_effects_1.Radius; } });
|
|
79
|
+
Object.defineProperty(exports, "Resize", { enumerable: true, get: function () { return org_qcobjects_effects_1.Resize; } });
|
|
80
|
+
Object.defineProperty(exports, "WipeLeft", { enumerable: true, get: function () { return org_qcobjects_effects_1.WipeLeft; } });
|
|
81
|
+
Object.defineProperty(exports, "WipeRight", { enumerable: true, get: function () { return org_qcobjects_effects_1.WipeRight; } });
|
|
82
|
+
Object.defineProperty(exports, "WipeUp", { enumerable: true, get: function () { return org_qcobjects_effects_1.WipeUp; } });
|
|
83
|
+
Object.defineProperty(exports, "WipeDown", { enumerable: true, get: function () { return org_qcobjects_effects_1.WipeDown; } });
|
|
84
|
+
Object.defineProperty(exports, "ModalFade", { enumerable: true, get: function () { return org_qcobjects_effects_1.ModalFade; } });
|
|
85
|
+
Object.defineProperty(exports, "ModalMoveUp", { enumerable: true, get: function () { return org_qcobjects_effects_1.ModalMoveUp; } });
|
|
86
|
+
Object.defineProperty(exports, "ModalMoveDown", { enumerable: true, get: function () { return org_qcobjects_effects_1.ModalMoveDown; } });
|
|
87
|
+
var org_qcobjects_modal_controllers_1 = require("./ts/org.qcobjects.modal.controllers");
|
|
88
|
+
Object.defineProperty(exports, "ModalController", { enumerable: true, get: function () { return org_qcobjects_modal_controllers_1.ModalController; } });
|
|
89
|
+
var org_qcobjects_views_1 = require("./ts/org.qcobjects.views");
|
|
90
|
+
Object.defineProperty(exports, "GridView", { enumerable: true, get: function () { return org_qcobjects_views_1.GridView; } });
|
|
91
|
+
var org_qcobjects_tools_canvas_1 = require("./ts/org.qcobjects.tools.canvas");
|
|
92
|
+
Object.defineProperty(exports, "CanvasTool", { enumerable: true, get: function () { return org_qcobjects_tools_canvas_1.CanvasTool; } });
|
|
93
|
+
var org_qcobjects_tools_layouts_1 = require("./ts/org.qcobjects.tools.layouts");
|
|
94
|
+
Object.defineProperty(exports, "BasicLayout", { enumerable: true, get: function () { return org_qcobjects_tools_layouts_1.BasicLayout; } });
|
|
95
|
+
var org_qcobjects_cloud_auth_session_usertoken_1 = require("./ts/org.qcobjects.cloud.auth.session.usertoken");
|
|
96
|
+
Object.defineProperty(exports, "SessionUserToken", { enumerable: true, get: function () { return org_qcobjects_cloud_auth_session_usertoken_1.SessionUserToken; } });
|
|
97
|
+
var org_qcobjects_cloud_auth_session_data_1 = require("./ts/org.qcobjects.cloud.auth.session.data");
|
|
98
|
+
Object.defineProperty(exports, "SessionData", { enumerable: true, get: function () { return org_qcobjects_cloud_auth_session_data_1.SessionData; } });
|
|
99
|
+
// eslint-disable-next-line camelcase
|
|
100
|
+
(function __qcobjects_sdk__(_top) {
|
|
101
|
+
"use strict";
|
|
102
|
+
if (typeof Object.defineProperty !== "undefined" && typeof _top !== "undefined") {
|
|
103
|
+
try {
|
|
104
|
+
Object.defineProperty(_top, "__qcobjects_sdk__", {
|
|
105
|
+
enumerable: true,
|
|
106
|
+
configurable: false,
|
|
107
|
+
writable: false,
|
|
108
|
+
// eslint-disable-next-line camelcase
|
|
109
|
+
value: __qcobjects_sdk__,
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
catch (e) {
|
|
113
|
+
if (typeof _top.__qcobjects_sdk__ !== "undefined") {
|
|
114
|
+
_top.__qcobjects_sdk__.__loaded__ = true;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
if (typeof _top.__qcobjects_sdk__.__loaded__ === "undefined") {
|
|
119
|
+
_top.__qcobjects_sdk__.__loaded__ = true;
|
|
120
|
+
if (typeof _top === "undefined") {
|
|
121
|
+
throw Error("Top context empty: It should either global, module or window");
|
|
122
|
+
}
|
|
123
|
+
const __start__ = qcobjects_1.GlobalSettings.__start__.bind(_top);
|
|
124
|
+
_top._sdk_ = Promise.resolve().then(() => {
|
|
125
|
+
qcobjects_1.CONFIG.set("useSDK", true);
|
|
126
|
+
__start__();
|
|
127
|
+
});
|
|
128
|
+
}
|
|
129
|
+
})(qcobjects_1._top);
|
|
130
|
+
exports.default = qcobjects_1._top;
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -84,7 +75,7 @@ class FormController extends qcobjects_1.Controller {
|
|
|
84
75
|
data: this.component.data
|
|
85
76
|
}), false).then(() => {
|
|
86
77
|
// This will show the service response as a plain text
|
|
87
|
-
|
|
78
|
+
qcobjects_1.logger.info("DONE SERVICE COMPONENT");
|
|
88
79
|
location.href = this.formSettings.nextRouting;
|
|
89
80
|
}, (failedResponse) => {
|
|
90
81
|
qcobjects_1.logger.debug(failedResponse);
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
|
+
* ________________
|
|
4
|
+
*
|
|
5
|
+
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
|
+
*
|
|
7
|
+
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
10
|
+
*
|
|
11
|
+
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
12
|
+
*
|
|
13
|
+
* Everyone is permitted to copy and distribute verbatim copies of this
|
|
14
|
+
* license document, but changing it is not allowed.
|
|
15
|
+
*/
|
|
16
|
+
"use strict";
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.GenericController = void 0;
|
|
19
|
+
const qcobjects_1 = require("qcobjects");
|
|
20
|
+
class GenericController extends qcobjects_1.Controller {
|
|
21
|
+
}
|
|
22
|
+
exports.GenericController = GenericController;
|
|
23
|
+
(0, qcobjects_1.Package)("org.qcobjects.controllers", [
|
|
24
|
+
GenericController
|
|
25
|
+
]);
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|
|
@@ -1,21 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* QCObjects SDK
|
|
2
|
+
* QCObjects Framework SDK
|
|
3
3
|
* ________________
|
|
4
4
|
*
|
|
5
5
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
6
6
|
*
|
|
7
7
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
8
|
-
*
|
|
9
|
-
*
|
|
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.
|
|
8
|
+
* QCObjects is licensed under the MIT License
|
|
9
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
19
10
|
*
|
|
20
11
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
21
12
|
*
|