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
|
*
|
|
@@ -65,13 +56,13 @@ export class MoveXInFromRight extends Move {
|
|
|
65
56
|
|
|
66
57
|
static apply(element:HTMLElement, angleFrom:number, angleTo:number) {
|
|
67
58
|
const da = angleTo - angleFrom;
|
|
68
|
-
|
|
59
|
+
super.animate({
|
|
69
60
|
duration: this.duration,
|
|
70
|
-
timing(timeFraction) {
|
|
61
|
+
timing(timeFraction: number) {
|
|
71
62
|
|
|
72
63
|
return timeFraction;
|
|
73
64
|
},
|
|
74
|
-
draw(progress) {
|
|
65
|
+
draw(progress: number) {
|
|
75
66
|
logger.debug("animation progress: " + progress.toString());
|
|
76
67
|
const angle = Math.round(angleFrom + (progress * da / 100));
|
|
77
68
|
logger.debug("angle: " + angle.toString());
|
|
@@ -79,14 +70,6 @@ export class MoveXInFromRight extends Move {
|
|
|
79
70
|
}
|
|
80
71
|
});
|
|
81
72
|
}
|
|
82
|
-
// eslint-disable-next-line no-unused-vars
|
|
83
|
-
static animate(arg0: { duration: any; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
84
|
-
throw new Error("Method not implemented.");
|
|
85
|
-
}
|
|
86
|
-
// eslint-disable-next-line no-unused-vars
|
|
87
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
88
|
-
throw new Error("Method not implemented.");
|
|
89
|
-
}
|
|
90
73
|
|
|
91
74
|
}
|
|
92
75
|
|
|
@@ -96,13 +79,13 @@ export class MoveXInFromRight extends Move {
|
|
|
96
79
|
|
|
97
80
|
static apply(element:HTMLElement, angleFrom:number, angleTo:number) {
|
|
98
81
|
const da = angleTo - angleFrom;
|
|
99
|
-
|
|
82
|
+
super.animate({
|
|
100
83
|
duration: this.duration,
|
|
101
|
-
timing(timeFraction) {
|
|
84
|
+
timing(timeFraction: number) {
|
|
102
85
|
|
|
103
86
|
return timeFraction;
|
|
104
87
|
},
|
|
105
|
-
draw(progress) {
|
|
88
|
+
draw(progress: number) {
|
|
106
89
|
logger.debug("animation progress: " + progress.toString());
|
|
107
90
|
const angle = Math.round(angleFrom + (progress * da / 100));
|
|
108
91
|
logger.debug("angle: " + angle.toString());
|
|
@@ -110,14 +93,6 @@ export class MoveXInFromRight extends Move {
|
|
|
110
93
|
}
|
|
111
94
|
});
|
|
112
95
|
}
|
|
113
|
-
// eslint-disable-next-line no-unused-vars
|
|
114
|
-
static animate(arg0: { duration: any; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
115
|
-
throw new Error("Method not implemented.");
|
|
116
|
-
}
|
|
117
|
-
// eslint-disable-next-line no-unused-vars
|
|
118
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
119
|
-
throw new Error("Method not implemented.");
|
|
120
|
-
}
|
|
121
96
|
}
|
|
122
97
|
|
|
123
98
|
export class RotateZ extends Effect {
|
|
@@ -125,13 +100,13 @@ export class MoveXInFromRight extends Move {
|
|
|
125
100
|
|
|
126
101
|
apply(element:HTMLElement, angleFrom:number, angleTo:number) {
|
|
127
102
|
const da = angleTo - angleFrom;
|
|
128
|
-
|
|
103
|
+
super.animate({
|
|
129
104
|
duration: this.duration,
|
|
130
|
-
timing(timeFraction) {
|
|
105
|
+
timing(timeFraction: number) {
|
|
131
106
|
|
|
132
107
|
return timeFraction;
|
|
133
108
|
},
|
|
134
|
-
draw(progress) {
|
|
109
|
+
draw(progress: number) {
|
|
135
110
|
logger.debug("animation progress: " + progress.toString());
|
|
136
111
|
const angle = Math.round(angleFrom + (progress * da / 100));
|
|
137
112
|
logger.debug("angle: " + angle.toString());
|
|
@@ -139,10 +114,6 @@ export class MoveXInFromRight extends Move {
|
|
|
139
114
|
}
|
|
140
115
|
});
|
|
141
116
|
}
|
|
142
|
-
// eslint-disable-next-line no-unused-vars
|
|
143
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
144
|
-
throw new Error("Method not implemented.");
|
|
145
|
-
}
|
|
146
117
|
|
|
147
118
|
}
|
|
148
119
|
|
|
@@ -151,13 +122,13 @@ export class MoveXInFromRight extends Move {
|
|
|
151
122
|
|
|
152
123
|
apply(element:HTMLElement, angleFrom:number, angleTo:number) {
|
|
153
124
|
const da = angleTo - angleFrom;
|
|
154
|
-
|
|
125
|
+
super.animate({
|
|
155
126
|
duration: this.duration,
|
|
156
|
-
timing(timeFraction) {
|
|
127
|
+
timing(timeFraction: number) {
|
|
157
128
|
|
|
158
129
|
return timeFraction;
|
|
159
130
|
},
|
|
160
|
-
draw(progress) {
|
|
131
|
+
draw(progress: number) {
|
|
161
132
|
logger.debug("animation progress: " + progress.toString());
|
|
162
133
|
const angle = Math.round(angleFrom + (progress * da / 100));
|
|
163
134
|
logger.debug("angle: " + angle.toString());
|
|
@@ -165,10 +136,6 @@ export class MoveXInFromRight extends Move {
|
|
|
165
136
|
}
|
|
166
137
|
});
|
|
167
138
|
}
|
|
168
|
-
// eslint-disable-next-line no-unused-vars
|
|
169
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
170
|
-
throw new Error("Method not implemented.");
|
|
171
|
-
}
|
|
172
139
|
}
|
|
173
140
|
|
|
174
141
|
export class Radius extends Effect {
|
|
@@ -176,13 +143,13 @@ export class MoveXInFromRight extends Move {
|
|
|
176
143
|
|
|
177
144
|
apply(element:HTMLElement, radiusFrom:number, radiusTo:number) {
|
|
178
145
|
const dr = radiusTo - radiusFrom;
|
|
179
|
-
|
|
146
|
+
super.animate({
|
|
180
147
|
duration: this.duration,
|
|
181
|
-
timing(timeFraction) {
|
|
148
|
+
timing(timeFraction: number) {
|
|
182
149
|
|
|
183
150
|
return timeFraction;
|
|
184
151
|
},
|
|
185
|
-
draw(progress) {
|
|
152
|
+
draw(progress: number) {
|
|
186
153
|
logger.debug("animation progress: " + progress.toString());
|
|
187
154
|
const radius = radiusFrom + (progress * dr / 100);
|
|
188
155
|
logger.debug("radius: " + radius.toString());
|
|
@@ -190,10 +157,6 @@ export class MoveXInFromRight extends Move {
|
|
|
190
157
|
}
|
|
191
158
|
});
|
|
192
159
|
}
|
|
193
|
-
// eslint-disable-next-line no-unused-vars
|
|
194
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
195
|
-
throw new Error("Method not implemented.");
|
|
196
|
-
}
|
|
197
160
|
|
|
198
161
|
}
|
|
199
162
|
|
|
@@ -202,13 +165,13 @@ export class MoveXInFromRight extends Move {
|
|
|
202
165
|
|
|
203
166
|
apply(element:HTMLElement, scaleFrom:number, scaleTo:number) {
|
|
204
167
|
const ds = scaleTo - scaleFrom;
|
|
205
|
-
|
|
168
|
+
super.animate({
|
|
206
169
|
duration: this.duration,
|
|
207
|
-
timing(timeFraction) {
|
|
170
|
+
timing(timeFraction: number) {
|
|
208
171
|
|
|
209
172
|
return timeFraction;
|
|
210
173
|
},
|
|
211
|
-
draw(progress) {
|
|
174
|
+
draw(progress: number) {
|
|
212
175
|
logger.debug("animation progress: " + progress.toString());
|
|
213
176
|
const scale = scaleFrom + (progress * ds / 100);
|
|
214
177
|
logger.debug("resize: " + scale.toString());
|
|
@@ -217,10 +180,6 @@ export class MoveXInFromRight extends Move {
|
|
|
217
180
|
}
|
|
218
181
|
});
|
|
219
182
|
}
|
|
220
|
-
// eslint-disable-next-line no-unused-vars
|
|
221
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
222
|
-
throw new Error("Method not implemented.");
|
|
223
|
-
}
|
|
224
183
|
|
|
225
184
|
}
|
|
226
185
|
|
|
@@ -229,13 +188,13 @@ export class MoveXInFromRight extends Move {
|
|
|
229
188
|
|
|
230
189
|
apply(element:HTMLElement, scaleFrom:number, scaleTo:number) {
|
|
231
190
|
const ds = scaleTo - scaleFrom;
|
|
232
|
-
|
|
191
|
+
super.animate({
|
|
233
192
|
duration: this.duration,
|
|
234
|
-
timing(timeFraction) {
|
|
193
|
+
timing(timeFraction: number) {
|
|
235
194
|
|
|
236
195
|
return timeFraction;
|
|
237
196
|
},
|
|
238
|
-
draw(progress) {
|
|
197
|
+
draw(progress: number) {
|
|
239
198
|
logger.debug("animation progress: " + progress.toString());
|
|
240
199
|
const scale = scaleFrom + (progress * ds / 100);
|
|
241
200
|
logger.debug("wipe: " + scale.toString());
|
|
@@ -244,10 +203,6 @@ export class MoveXInFromRight extends Move {
|
|
|
244
203
|
}
|
|
245
204
|
});
|
|
246
205
|
}
|
|
247
|
-
// eslint-disable-next-line no-unused-vars
|
|
248
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
249
|
-
throw new Error("Method not implemented.");
|
|
250
|
-
}
|
|
251
206
|
|
|
252
207
|
}
|
|
253
208
|
|
|
@@ -256,13 +211,13 @@ export class MoveXInFromRight extends Move {
|
|
|
256
211
|
|
|
257
212
|
apply(element:HTMLElement, scaleFrom:number, scaleTo:number) {
|
|
258
213
|
const ds = scaleTo - scaleFrom;
|
|
259
|
-
|
|
214
|
+
super.animate({
|
|
260
215
|
duration: this.duration,
|
|
261
|
-
timing(timeFraction) {
|
|
216
|
+
timing(timeFraction: number) {
|
|
262
217
|
|
|
263
218
|
return timeFraction;
|
|
264
219
|
},
|
|
265
|
-
draw(progress) {
|
|
220
|
+
draw(progress: number) {
|
|
266
221
|
logger.debug("animation progress: " + progress.toString());
|
|
267
222
|
const scale = scaleFrom + (progress * ds / 100);
|
|
268
223
|
logger.debug("wipe: " + scale.toString());
|
|
@@ -271,10 +226,6 @@ export class MoveXInFromRight extends Move {
|
|
|
271
226
|
}
|
|
272
227
|
});
|
|
273
228
|
}
|
|
274
|
-
// eslint-disable-next-line no-unused-vars
|
|
275
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
276
|
-
throw new Error("Method not implemented.");
|
|
277
|
-
}
|
|
278
229
|
|
|
279
230
|
}
|
|
280
231
|
|
|
@@ -284,13 +235,13 @@ export class MoveXInFromRight extends Move {
|
|
|
284
235
|
|
|
285
236
|
apply(element:HTMLElement, scaleFrom:number, scaleTo:number) {
|
|
286
237
|
const ds = scaleTo - scaleFrom;
|
|
287
|
-
|
|
238
|
+
super.animate({
|
|
288
239
|
duration: this.duration,
|
|
289
|
-
timing(timeFraction) {
|
|
240
|
+
timing(timeFraction: number) {
|
|
290
241
|
|
|
291
242
|
return timeFraction;
|
|
292
243
|
},
|
|
293
|
-
draw(progress) {
|
|
244
|
+
draw(progress: number) {
|
|
294
245
|
logger.debug("animation progress: " + progress.toString());
|
|
295
246
|
const scale = scaleFrom + (progress * ds / 100);
|
|
296
247
|
logger.debug("wipe: " + scale.toString());
|
|
@@ -299,10 +250,6 @@ export class MoveXInFromRight extends Move {
|
|
|
299
250
|
}
|
|
300
251
|
});
|
|
301
252
|
}
|
|
302
|
-
// eslint-disable-next-line no-unused-vars
|
|
303
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
304
|
-
throw new Error("Method not implemented.");
|
|
305
|
-
}
|
|
306
253
|
|
|
307
254
|
}
|
|
308
255
|
|
|
@@ -311,13 +258,13 @@ export class MoveXInFromRight extends Move {
|
|
|
311
258
|
|
|
312
259
|
apply(element:HTMLElement, scaleFrom:number, scaleTo:number) {
|
|
313
260
|
const ds = scaleTo - scaleFrom;
|
|
314
|
-
|
|
261
|
+
super.animate({
|
|
315
262
|
duration: this.duration,
|
|
316
|
-
timing(timeFraction) {
|
|
263
|
+
timing(timeFraction: number) {
|
|
317
264
|
|
|
318
265
|
return timeFraction;
|
|
319
266
|
},
|
|
320
|
-
draw(progress) {
|
|
267
|
+
draw(progress: number) {
|
|
321
268
|
logger.debug("animation progress: " + progress.toString());
|
|
322
269
|
const scale = scaleFrom + (progress * ds / 100);
|
|
323
270
|
logger.debug("wipe: " + scale.toString());
|
|
@@ -326,10 +273,6 @@ export class MoveXInFromRight extends Move {
|
|
|
326
273
|
}
|
|
327
274
|
});
|
|
328
275
|
}
|
|
329
|
-
// eslint-disable-next-line no-unused-vars
|
|
330
|
-
animate(arg0: { duration: number; timing(timeFraction: any): any; draw(progress: any): void; }) {
|
|
331
|
-
throw new Error("Method not implemented.");
|
|
332
|
-
}
|
|
333
276
|
}
|
|
334
277
|
Package("org.qcobjects.effects.extended", [
|
|
335
278
|
MoveXInFromRight,
|
|
@@ -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
|
+
import { Package, VO } from "qcobjects";
|
|
18
|
+
export class Contact extends VO {
|
|
19
|
+
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
Package("org.qcobjects.models", [
|
|
23
|
+
Contact
|
|
24
|
+
|
|
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,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
|
*
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
import { Package, View } from "qcobjects";
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
export class GridView extends View {
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
Package("org.qcobjects.views", [
|
|
27
|
+
|
|
28
|
+
GridView
|
|
29
|
+
]);
|
|
30
|
+
|
|
@@ -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 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: 22
|
|
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: 22
|
|
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 --tag ${GITHUB_REF##*/}
|
|
39
|
-
env:
|
|
40
|
-
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 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: 22
|
|
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: 22
|
|
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 --tag ${GITHUB_REF##*/}
|
|
39
|
-
env:
|
|
40
|
-
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: 22
|
|
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: 22
|
|
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}}
|