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
|
@@ -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
|
*
|
|
@@ -11,7 +11,7 @@ class Fade extends qcobjects_1.Effect {
|
|
|
11
11
|
}
|
|
12
12
|
apply(element, alphaFrom, alphaTo) {
|
|
13
13
|
const da = alphaTo - alphaFrom;
|
|
14
|
-
|
|
14
|
+
super.animate({
|
|
15
15
|
duration: this.duration,
|
|
16
16
|
timing(timeFraction) {
|
|
17
17
|
return timeFraction;
|
|
@@ -26,7 +26,7 @@ class Fade extends qcobjects_1.Effect {
|
|
|
26
26
|
}
|
|
27
27
|
static apply(element, alphaFrom, alphaTo) {
|
|
28
28
|
const da = alphaTo - alphaFrom;
|
|
29
|
-
|
|
29
|
+
super.animate({
|
|
30
30
|
duration: this.duration,
|
|
31
31
|
timing(timeFraction) {
|
|
32
32
|
return timeFraction;
|
|
@@ -39,14 +39,6 @@ class Fade extends qcobjects_1.Effect {
|
|
|
39
39
|
}
|
|
40
40
|
});
|
|
41
41
|
}
|
|
42
|
-
// eslint-disable-next-line no-unused-vars
|
|
43
|
-
static animate(arg0) {
|
|
44
|
-
throw new Error("Method not implemented.");
|
|
45
|
-
}
|
|
46
|
-
// eslint-disable-next-line no-unused-vars
|
|
47
|
-
animate(arg0) {
|
|
48
|
-
throw new Error("Method not implemented.");
|
|
49
|
-
}
|
|
50
42
|
}
|
|
51
43
|
exports.Fade = Fade;
|
|
52
44
|
class Move extends qcobjects_1.Effect {
|
|
@@ -56,7 +48,7 @@ class Move extends qcobjects_1.Effect {
|
|
|
56
48
|
const dx = xto - xfrom;
|
|
57
49
|
const dy = yto - yfrom;
|
|
58
50
|
element.style.transform = "translate(" + xfrom + "px," + yfrom + "px)";
|
|
59
|
-
|
|
51
|
+
super.animate({
|
|
60
52
|
duration: this.duration,
|
|
61
53
|
timing(timeFraction) {
|
|
62
54
|
return timeFraction;
|
|
@@ -70,14 +62,6 @@ class Move extends qcobjects_1.Effect {
|
|
|
70
62
|
}
|
|
71
63
|
});
|
|
72
64
|
}
|
|
73
|
-
// eslint-disable-next-line no-unused-vars
|
|
74
|
-
static animate(arg0) {
|
|
75
|
-
throw new Error("Method not implemented.");
|
|
76
|
-
}
|
|
77
|
-
// eslint-disable-next-line no-unused-vars
|
|
78
|
-
animate(arg0) {
|
|
79
|
-
throw new Error("Method not implemented.");
|
|
80
|
-
}
|
|
81
65
|
}
|
|
82
66
|
exports.Move = Move;
|
|
83
67
|
(0, qcobjects_1.Package)("org.qcobjects.effects.base", [
|
|
@@ -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
|
*
|
|
@@ -60,7 +51,7 @@ class RotateX extends qcobjects_1.Effect {
|
|
|
60
51
|
static duration;
|
|
61
52
|
static apply(element, angleFrom, angleTo) {
|
|
62
53
|
const da = angleTo - angleFrom;
|
|
63
|
-
|
|
54
|
+
super.animate({
|
|
64
55
|
duration: this.duration,
|
|
65
56
|
timing(timeFraction) {
|
|
66
57
|
return timeFraction;
|
|
@@ -73,14 +64,6 @@ class RotateX extends qcobjects_1.Effect {
|
|
|
73
64
|
}
|
|
74
65
|
});
|
|
75
66
|
}
|
|
76
|
-
// eslint-disable-next-line no-unused-vars
|
|
77
|
-
static animate(arg0) {
|
|
78
|
-
throw new Error("Method not implemented.");
|
|
79
|
-
}
|
|
80
|
-
// eslint-disable-next-line no-unused-vars
|
|
81
|
-
animate(arg0) {
|
|
82
|
-
throw new Error("Method not implemented.");
|
|
83
|
-
}
|
|
84
67
|
}
|
|
85
68
|
exports.RotateX = RotateX;
|
|
86
69
|
class RotateY extends qcobjects_1.Effect {
|
|
@@ -88,7 +71,7 @@ class RotateY extends qcobjects_1.Effect {
|
|
|
88
71
|
static duration;
|
|
89
72
|
static apply(element, angleFrom, angleTo) {
|
|
90
73
|
const da = angleTo - angleFrom;
|
|
91
|
-
|
|
74
|
+
super.animate({
|
|
92
75
|
duration: this.duration,
|
|
93
76
|
timing(timeFraction) {
|
|
94
77
|
return timeFraction;
|
|
@@ -101,21 +84,13 @@ class RotateY extends qcobjects_1.Effect {
|
|
|
101
84
|
}
|
|
102
85
|
});
|
|
103
86
|
}
|
|
104
|
-
// eslint-disable-next-line no-unused-vars
|
|
105
|
-
static animate(arg0) {
|
|
106
|
-
throw new Error("Method not implemented.");
|
|
107
|
-
}
|
|
108
|
-
// eslint-disable-next-line no-unused-vars
|
|
109
|
-
animate(arg0) {
|
|
110
|
-
throw new Error("Method not implemented.");
|
|
111
|
-
}
|
|
112
87
|
}
|
|
113
88
|
exports.RotateY = RotateY;
|
|
114
89
|
class RotateZ extends qcobjects_1.Effect {
|
|
115
90
|
duration = 1000;
|
|
116
91
|
apply(element, angleFrom, angleTo) {
|
|
117
92
|
const da = angleTo - angleFrom;
|
|
118
|
-
|
|
93
|
+
super.animate({
|
|
119
94
|
duration: this.duration,
|
|
120
95
|
timing(timeFraction) {
|
|
121
96
|
return timeFraction;
|
|
@@ -128,17 +103,13 @@ class RotateZ extends qcobjects_1.Effect {
|
|
|
128
103
|
}
|
|
129
104
|
});
|
|
130
105
|
}
|
|
131
|
-
// eslint-disable-next-line no-unused-vars
|
|
132
|
-
animate(arg0) {
|
|
133
|
-
throw new Error("Method not implemented.");
|
|
134
|
-
}
|
|
135
106
|
}
|
|
136
107
|
exports.RotateZ = RotateZ;
|
|
137
108
|
class Rotate extends qcobjects_1.Effect {
|
|
138
109
|
duration = 1000;
|
|
139
110
|
apply(element, angleFrom, angleTo) {
|
|
140
111
|
const da = angleTo - angleFrom;
|
|
141
|
-
|
|
112
|
+
super.animate({
|
|
142
113
|
duration: this.duration,
|
|
143
114
|
timing(timeFraction) {
|
|
144
115
|
return timeFraction;
|
|
@@ -151,17 +122,13 @@ class Rotate extends qcobjects_1.Effect {
|
|
|
151
122
|
}
|
|
152
123
|
});
|
|
153
124
|
}
|
|
154
|
-
// eslint-disable-next-line no-unused-vars
|
|
155
|
-
animate(arg0) {
|
|
156
|
-
throw new Error("Method not implemented.");
|
|
157
|
-
}
|
|
158
125
|
}
|
|
159
126
|
exports.Rotate = Rotate;
|
|
160
127
|
class Radius extends qcobjects_1.Effect {
|
|
161
128
|
duration = 1000;
|
|
162
129
|
apply(element, radiusFrom, radiusTo) {
|
|
163
130
|
const dr = radiusTo - radiusFrom;
|
|
164
|
-
|
|
131
|
+
super.animate({
|
|
165
132
|
duration: this.duration,
|
|
166
133
|
timing(timeFraction) {
|
|
167
134
|
return timeFraction;
|
|
@@ -174,17 +141,13 @@ class Radius extends qcobjects_1.Effect {
|
|
|
174
141
|
}
|
|
175
142
|
});
|
|
176
143
|
}
|
|
177
|
-
// eslint-disable-next-line no-unused-vars
|
|
178
|
-
animate(arg0) {
|
|
179
|
-
throw new Error("Method not implemented.");
|
|
180
|
-
}
|
|
181
144
|
}
|
|
182
145
|
exports.Radius = Radius;
|
|
183
146
|
class Resize extends qcobjects_1.Effect {
|
|
184
147
|
duration = 1000;
|
|
185
148
|
apply(element, scaleFrom, scaleTo) {
|
|
186
149
|
const ds = scaleTo - scaleFrom;
|
|
187
|
-
|
|
150
|
+
super.animate({
|
|
188
151
|
duration: this.duration,
|
|
189
152
|
timing(timeFraction) {
|
|
190
153
|
return timeFraction;
|
|
@@ -198,17 +161,13 @@ class Resize extends qcobjects_1.Effect {
|
|
|
198
161
|
}
|
|
199
162
|
});
|
|
200
163
|
}
|
|
201
|
-
// eslint-disable-next-line no-unused-vars
|
|
202
|
-
animate(arg0) {
|
|
203
|
-
throw new Error("Method not implemented.");
|
|
204
|
-
}
|
|
205
164
|
}
|
|
206
165
|
exports.Resize = Resize;
|
|
207
166
|
class WipeLeft extends qcobjects_1.Effect {
|
|
208
167
|
duration = 1000;
|
|
209
168
|
apply(element, scaleFrom, scaleTo) {
|
|
210
169
|
const ds = scaleTo - scaleFrom;
|
|
211
|
-
|
|
170
|
+
super.animate({
|
|
212
171
|
duration: this.duration,
|
|
213
172
|
timing(timeFraction) {
|
|
214
173
|
return timeFraction;
|
|
@@ -222,17 +181,13 @@ class WipeLeft extends qcobjects_1.Effect {
|
|
|
222
181
|
}
|
|
223
182
|
});
|
|
224
183
|
}
|
|
225
|
-
// eslint-disable-next-line no-unused-vars
|
|
226
|
-
animate(arg0) {
|
|
227
|
-
throw new Error("Method not implemented.");
|
|
228
|
-
}
|
|
229
184
|
}
|
|
230
185
|
exports.WipeLeft = WipeLeft;
|
|
231
186
|
class WipeRight extends qcobjects_1.Effect {
|
|
232
187
|
duration = 1000;
|
|
233
188
|
apply(element, scaleFrom, scaleTo) {
|
|
234
189
|
const ds = scaleTo - scaleFrom;
|
|
235
|
-
|
|
190
|
+
super.animate({
|
|
236
191
|
duration: this.duration,
|
|
237
192
|
timing(timeFraction) {
|
|
238
193
|
return timeFraction;
|
|
@@ -246,17 +201,13 @@ class WipeRight extends qcobjects_1.Effect {
|
|
|
246
201
|
}
|
|
247
202
|
});
|
|
248
203
|
}
|
|
249
|
-
// eslint-disable-next-line no-unused-vars
|
|
250
|
-
animate(arg0) {
|
|
251
|
-
throw new Error("Method not implemented.");
|
|
252
|
-
}
|
|
253
204
|
}
|
|
254
205
|
exports.WipeRight = WipeRight;
|
|
255
206
|
class WipeUp extends qcobjects_1.Effect {
|
|
256
207
|
duration = 1000;
|
|
257
208
|
apply(element, scaleFrom, scaleTo) {
|
|
258
209
|
const ds = scaleTo - scaleFrom;
|
|
259
|
-
|
|
210
|
+
super.animate({
|
|
260
211
|
duration: this.duration,
|
|
261
212
|
timing(timeFraction) {
|
|
262
213
|
return timeFraction;
|
|
@@ -270,17 +221,13 @@ class WipeUp extends qcobjects_1.Effect {
|
|
|
270
221
|
}
|
|
271
222
|
});
|
|
272
223
|
}
|
|
273
|
-
// eslint-disable-next-line no-unused-vars
|
|
274
|
-
animate(arg0) {
|
|
275
|
-
throw new Error("Method not implemented.");
|
|
276
|
-
}
|
|
277
224
|
}
|
|
278
225
|
exports.WipeUp = WipeUp;
|
|
279
226
|
class WipeDown extends qcobjects_1.Effect {
|
|
280
227
|
duration = 1000;
|
|
281
228
|
apply(element, scaleFrom, scaleTo) {
|
|
282
229
|
const ds = scaleTo - scaleFrom;
|
|
283
|
-
|
|
230
|
+
super.animate({
|
|
284
231
|
duration: this.duration,
|
|
285
232
|
timing(timeFraction) {
|
|
286
233
|
return timeFraction;
|
|
@@ -294,10 +241,6 @@ class WipeDown extends qcobjects_1.Effect {
|
|
|
294
241
|
}
|
|
295
242
|
});
|
|
296
243
|
}
|
|
297
|
-
// eslint-disable-next-line no-unused-vars
|
|
298
|
-
animate(arg0) {
|
|
299
|
-
throw new Error("Method not implemented.");
|
|
300
|
-
}
|
|
301
244
|
}
|
|
302
245
|
exports.WipeDown = WipeDown;
|
|
303
246
|
(0, qcobjects_1.Package)("org.qcobjects.effects.extended", [
|
|
@@ -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
|
*
|
|
@@ -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.Contact = void 0;
|
|
19
|
+
const qcobjects_1 = require("qcobjects");
|
|
20
|
+
class Contact extends qcobjects_1.VO {
|
|
21
|
+
}
|
|
22
|
+
exports.Contact = Contact;
|
|
23
|
+
(0, qcobjects_1.Package)("org.qcobjects.models", [
|
|
24
|
+
Contact
|
|
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
|
*
|
|
@@ -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
|
*
|
|
@@ -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.GridView = void 0;
|
|
19
|
+
const qcobjects_1 = require("qcobjects");
|
|
20
|
+
class GridView extends qcobjects_1.View {
|
|
21
|
+
}
|
|
22
|
+
exports.GridView = GridView;
|
|
23
|
+
(0, qcobjects_1.Package)("org.qcobjects.views", [
|
|
24
|
+
GridView
|
|
25
|
+
]);
|
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
|
}
|