qcobjects-sdk 2.5.105 → 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 +6 -4
- 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 +3 -12
- package/build/ts/org.qcobjects.cloud.auth.session.data.js +3 -12
- package/build/ts/org.qcobjects.cloud.auth.session.usertoken.js +3 -12
- package/build/ts/org.qcobjects.components.grid.js +3 -12
- package/build/ts/org.qcobjects.components.js +3 -12
- package/build/ts/org.qcobjects.components.list.js +3 -12
- package/build/ts/org.qcobjects.components.notifications.js +3 -12
- package/build/ts/org.qcobjects.components.slider.js +3 -12
- package/build/ts/org.qcobjects.components.splashscreen.js +3 -12
- package/build/ts/org.qcobjects.controllers.form.js +4 -13
- package/build/ts/org.qcobjects.controllers.grid.js +3 -12
- package/build/ts/org.qcobjects.controllers.js +3 -12
- package/build/ts/org.qcobjects.controllers.list.js +3 -12
- package/build/ts/org.qcobjects.controllers.slider.js +3 -12
- package/build/ts/org.qcobjects.controllers.swagger.js +3 -12
- package/build/ts/org.qcobjects.effects.extended.js +3 -12
- package/build/ts/org.qcobjects.effects.js +3 -12
- package/build/ts/org.qcobjects.i18n_messages.js +3 -12
- package/build/ts/org.qcobjects.modal.controllers.js +3 -12
- package/build/ts/org.qcobjects.modal.effects.js +3 -12
- package/build/ts/org.qcobjects.models.js +3 -12
- package/build/ts/org.qcobjects.tools.canvas.js +3 -12
- package/build/ts/org.qcobjects.tools.js +3 -12
- package/build/ts/org.qcobjects.tools.layouts.js +3 -12
- package/build/ts/org.qcobjects.views.js +3 -12
- package/build-esbuild.js +1 -3
- package/docs/CNAME +1 -0
- package/package.json +6 -6
- package/public/browser/index.js +28 -6946
- package/public/browser/index.js.map +4 -4
- package/public/cjs/index.cjs +28 -6946
- package/public/cjs/index.cjs.map +4 -4
- package/public/esm/index.mjs +290 -7225
- package/public/esm/index.mjs.map +4 -4
- package/public/types/index.d.ts +3 -12
- package/src/css/basic-layout.css +4 -16
- package/src/index.ts +3 -12
- package/src/ts/org.qcobjects.cloud.auth.session.data.ts +3 -12
- package/src/ts/org.qcobjects.cloud.auth.session.usertoken.ts +3 -12
- package/src/ts/org.qcobjects.components.grid.ts +3 -12
- package/src/ts/org.qcobjects.components.list.ts +3 -12
- package/src/ts/org.qcobjects.components.notifications.ts +3 -12
- package/src/ts/org.qcobjects.components.slider.ts +3 -12
- package/src/ts/org.qcobjects.components.splashscreen.ts +3 -12
- package/src/ts/org.qcobjects.components.ts +3 -12
- package/src/ts/org.qcobjects.controllers.form.ts +4 -13
- package/src/ts/org.qcobjects.controllers.grid.ts +6 -15
- package/src/ts/org.qcobjects.controllers.list.ts +4 -13
- package/src/ts/org.qcobjects.controllers.slider.ts +4 -13
- package/src/ts/org.qcobjects.controllers.swagger.ts +3 -12
- package/src/ts/org.qcobjects.controllers.ts +3 -12
- package/src/ts/org.qcobjects.effects.extended.ts +3 -12
- package/src/ts/org.qcobjects.effects.ts +3 -12
- package/src/ts/org.qcobjects.i18n_messages.ts +3 -12
- package/src/ts/org.qcobjects.modal.controllers.ts +3 -12
- package/src/ts/org.qcobjects.modal.effects.ts +3 -12
- package/src/ts/org.qcobjects.models.ts +3 -12
- package/src/ts/org.qcobjects.tools.canvas.ts +3 -12
- package/src/ts/org.qcobjects.tools.layouts.ts +3 -12
- package/src/ts/org.qcobjects.tools.ts +3 -12
- package/src/ts/org.qcobjects.views.ts +3 -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,22 +1,13 @@
|
|
|
1
1
|
/* eslint-disable array-callback-return */
|
|
2
2
|
/**
|
|
3
|
-
* QCObjects SDK
|
|
3
|
+
* QCObjects Framework SDK
|
|
4
4
|
* ________________
|
|
5
5
|
*
|
|
6
6
|
* Author: Jean Machuca <correojean@gmail.com>
|
|
7
7
|
*
|
|
8
8
|
* Cross Browser Javascript Framework for MVC Patterns
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* [LICENSE] (https://github.com/QuickCorp/QCObjects/blob/master/LICENSE.txt)
|
|
12
|
-
*
|
|
13
|
-
* Permissions of this copyleft license are conditioned on making available
|
|
14
|
-
* complete source code of licensed works and modifications under the same
|
|
15
|
-
* license or the GNU GPLv3. Copyright and license notices must be preserved.
|
|
16
|
-
* Contributors provide an express grant of patent rights. However, a larger
|
|
17
|
-
* work using the licensed work through interfaces provided by the licensed
|
|
18
|
-
* work may be distributed under different terms and without source code for
|
|
19
|
-
* the larger work.
|
|
9
|
+
* QCObjects is licensed under the MIT License
|
|
10
|
+
* [LICENSE] (https://github.com/QCObjects/qcobjects-sdk/blob/main/LICENSE.txt)
|
|
20
11
|
*
|
|
21
12
|
* Copyright (C) 2015 Jean Machuca,<correojean@gmail.com>
|
|
22
13
|
*
|
|
@@ -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
|
*
|
package/build-esbuild.js
CHANGED
|
@@ -18,9 +18,7 @@ const baseSettings = {
|
|
|
18
18
|
chunkNames: "chunks/[name]-[hash]",
|
|
19
19
|
plugins: [
|
|
20
20
|
alias({
|
|
21
|
-
"types": path.join(__dirname, "src/types/global/index.d.ts")
|
|
22
|
-
"qcobjects": path.join(__dirname, "node_modules/qcobjects/build/QCObjects.js"),
|
|
23
|
-
"qcobjects-sdk": path.join(__dirname, "src/QCObjects-SDK.ts")
|
|
21
|
+
"types": path.join(__dirname, "src/types/global/index.d.ts")
|
|
24
22
|
})
|
|
25
23
|
],
|
|
26
24
|
external: ["os", "path", "http", "url",
|
package/docs/CNAME
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sdk.qcobjects.dev
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qcobjects-sdk",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"description": "QCObjects SDK is a set of Controllers, Views and Components that are elementary and useful to assist developers to build applications under MVC patterns using QCObjects, Cross Browser Javascript Framework for MVC Patterns",
|
|
5
5
|
"main": "public/cjs/index.cjs",
|
|
6
6
|
"module": "public/esm/index.mjs",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"./js/org.qcobjects.cloud.auth.session.data": "./build/js/org.qcobjects.cloud.auth.session.data.js",
|
|
37
37
|
"./QCObjects-SDK": "./build/QCObjects-SDK.js"
|
|
38
38
|
},
|
|
39
|
-
"license": "
|
|
39
|
+
"license": "MIT",
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "npm run build:ts-types && npm run build:ts && npm run build:browser",
|
|
42
42
|
"postbuild": "node ./postbuild.js",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
},
|
|
65
65
|
"repository": {
|
|
66
66
|
"type": "git",
|
|
67
|
-
"url": "
|
|
67
|
+
"url": "https://github.com/QCObjects/qcobjects-sdk"
|
|
68
68
|
},
|
|
69
69
|
"keywords": [
|
|
70
70
|
"node",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"hint": "^2.0.0",
|
|
102
102
|
"install": "^0.13.0",
|
|
103
103
|
"jasmine": "^3.99.0",
|
|
104
|
-
"qcobjects": "
|
|
104
|
+
"qcobjects": ">=2.5.142",
|
|
105
105
|
"ts-node": "^10.9.2",
|
|
106
106
|
"tsconfig-paths": "^4.2.0",
|
|
107
107
|
"typescript": "^5.7.3",
|
|
@@ -113,10 +113,10 @@
|
|
|
113
113
|
},
|
|
114
114
|
"author": "Jean Machuca <correojean@gmail.com>",
|
|
115
115
|
"bugs": {
|
|
116
|
-
"url": "https://github.com/
|
|
116
|
+
"url": "https://github.com/QCObjects/qcobjects-sdk/issues"
|
|
117
117
|
},
|
|
118
118
|
"homepage": "https://sdk.qcobjects.dev",
|
|
119
119
|
"peerDependencies": {
|
|
120
|
-
"qcobjects": ">=2.5.
|
|
120
|
+
"qcobjects": ">=2.5.142"
|
|
121
121
|
}
|
|
122
122
|
}
|