@qooxdoo/framework 7.9.0 → 7.9.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/Manifest.json +2 -2
- package/lib/compiler/compile-info.json +87 -87
- package/lib/compiler/index.js +268 -267
- package/package.json +3 -2
- package/source/class/qx/event/handler/TouchCore.js +3 -1
- package/source/class/qx/test/theme/manager/Color.js +23 -15
- package/source/class/qx/test/theme/manager/Decoration.js +23 -15
- package/source/class/qx/test/theme/manager/Font.js +23 -15
- package/source/class/qx/test/theme/manager/Icon.js +23 -15
- package/source/class/qx/test/theme/manager/Meta.js +26 -15
- package/source/class/qx/ui/core/MExecutable.js +14 -12
- package/source/class/qx/ui/table/pane/Scroller.js +6 -8
package/lib/compiler/index.js
CHANGED
|
@@ -125,8 +125,8 @@ if (typeof global !== "undefined") {
|
|
|
125
125
|
"qx.promise.warnings": true,
|
|
126
126
|
"qx.promise.longStackTraces": true,
|
|
127
127
|
"qx.compiler": true,
|
|
128
|
-
"qx.compiler.version": "7.9.
|
|
129
|
-
"qx.version": "7.9.
|
|
128
|
+
"qx.compiler.version": "7.9.2",
|
|
129
|
+
"qx.version": "7.9.2",
|
|
130
130
|
"qx.compiler.targetType": "source",
|
|
131
131
|
"qx.compiler.outputDir": "compiled/node/build/",
|
|
132
132
|
"qx.target.privateArtifacts": false,
|
|
@@ -580,8 +580,9 @@ var runtime = (function (exports) {
|
|
|
580
580
|
throw arg;
|
|
581
581
|
}
|
|
582
582
|
|
|
583
|
-
// Be forgiving, per
|
|
584
|
-
// https://
|
|
583
|
+
// Be forgiving, per GeneratorResume behavior specified since ES2015:
|
|
584
|
+
// ES2015 spec, step 3: https://262.ecma-international.org/6.0/#sec-generatorresume
|
|
585
|
+
// Latest spec, step 2: https://tc39.es/ecma262/#sec-generatorresume
|
|
585
586
|
return doneResult();
|
|
586
587
|
}
|
|
587
588
|
|
|
@@ -654,7 +655,7 @@ var runtime = (function (exports) {
|
|
|
654
655
|
var method = delegate.iterator[methodName];
|
|
655
656
|
if (method === undefined) {
|
|
656
657
|
// A .throw or .return when the delegate iterator has no .throw
|
|
657
|
-
// method, or a missing .next
|
|
658
|
+
// method, or a missing .next method, always terminate the
|
|
658
659
|
// yield* loop.
|
|
659
660
|
context.delegate = null;
|
|
660
661
|
|
|
@@ -808,7 +809,7 @@ var runtime = (function (exports) {
|
|
|
808
809
|
};
|
|
809
810
|
|
|
810
811
|
function values(iterable) {
|
|
811
|
-
if (iterable
|
|
812
|
+
if (iterable != null) {
|
|
812
813
|
var iteratorMethod = iterable[iteratorSymbol];
|
|
813
814
|
if (iteratorMethod) {
|
|
814
815
|
return iteratorMethod.call(iterable);
|
|
@@ -33833,7 +33834,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
|
|
|
33833
33834
|
* @return {String}
|
|
33834
33835
|
*/
|
|
33835
33836
|
getCompilerVersion() {
|
|
33836
|
-
return "7.9.
|
|
33837
|
+
return "7.9.2";
|
|
33837
33838
|
},
|
|
33838
33839
|
/**
|
|
33839
33840
|
* Returns the qooxdoo version used in the application in the current or given
|
|
@@ -67958,6 +67959,30 @@ qx.$$packageData['0'] = {
|
|
|
67958
67959
|
}
|
|
67959
67960
|
},
|
|
67960
67961
|
"resources": {
|
|
67962
|
+
"qx/decoration/Simple/colorselector/brightness-field.png": [
|
|
67963
|
+
19,
|
|
67964
|
+
256,
|
|
67965
|
+
"png",
|
|
67966
|
+
"qx"
|
|
67967
|
+
],
|
|
67968
|
+
"qx/decoration/Simple/colorselector/brightness-handle.gif": [
|
|
67969
|
+
35,
|
|
67970
|
+
11,
|
|
67971
|
+
"gif",
|
|
67972
|
+
"qx"
|
|
67973
|
+
],
|
|
67974
|
+
"qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
|
|
67975
|
+
256,
|
|
67976
|
+
256,
|
|
67977
|
+
"jpg",
|
|
67978
|
+
"qx"
|
|
67979
|
+
],
|
|
67980
|
+
"qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
|
|
67981
|
+
11,
|
|
67982
|
+
11,
|
|
67983
|
+
"gif",
|
|
67984
|
+
"qx"
|
|
67985
|
+
],
|
|
67961
67986
|
"qx/decoration/Simple/arrows/down-invert.gif": [
|
|
67962
67987
|
7,
|
|
67963
67988
|
4,
|
|
@@ -68042,39 +68067,39 @@ qx.$$packageData['0'] = {
|
|
|
68042
68067
|
"png",
|
|
68043
68068
|
"qx"
|
|
68044
68069
|
],
|
|
68045
|
-
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
68070
|
+
"qx/decoration/Simple/checkbox/undetermined-disabled.png": [
|
|
68046
68071
|
6,
|
|
68047
68072
|
2,
|
|
68048
68073
|
"png",
|
|
68049
68074
|
"qx"
|
|
68050
68075
|
],
|
|
68051
|
-
"qx/decoration/Simple/checkbox/undetermined
|
|
68076
|
+
"qx/decoration/Simple/checkbox/undetermined.png": [
|
|
68052
68077
|
6,
|
|
68053
68078
|
2,
|
|
68054
68079
|
"png",
|
|
68055
68080
|
"qx"
|
|
68056
68081
|
],
|
|
68057
|
-
"qx/decoration/Simple/
|
|
68058
|
-
|
|
68059
|
-
|
|
68060
|
-
"
|
|
68082
|
+
"qx/decoration/Simple/menu/checkbox-invert.gif": [
|
|
68083
|
+
16,
|
|
68084
|
+
7,
|
|
68085
|
+
"gif",
|
|
68061
68086
|
"qx"
|
|
68062
68087
|
],
|
|
68063
|
-
"qx/decoration/Simple/
|
|
68064
|
-
|
|
68065
|
-
|
|
68088
|
+
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
68089
|
+
16,
|
|
68090
|
+
7,
|
|
68066
68091
|
"gif",
|
|
68067
68092
|
"qx"
|
|
68068
68093
|
],
|
|
68069
|
-
"qx/decoration/Simple/
|
|
68070
|
-
|
|
68071
|
-
|
|
68072
|
-
"
|
|
68094
|
+
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
68095
|
+
16,
|
|
68096
|
+
5,
|
|
68097
|
+
"gif",
|
|
68073
68098
|
"qx"
|
|
68074
68099
|
],
|
|
68075
|
-
"qx/decoration/Simple/
|
|
68076
|
-
|
|
68077
|
-
|
|
68100
|
+
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
68101
|
+
16,
|
|
68102
|
+
5,
|
|
68078
68103
|
"gif",
|
|
68079
68104
|
"qx"
|
|
68080
68105
|
],
|
|
@@ -68102,55 +68127,13 @@ qx.$$packageData['0'] = {
|
|
|
68102
68127
|
"gif",
|
|
68103
68128
|
"qx"
|
|
68104
68129
|
],
|
|
68105
|
-
"qx/decoration/Simple/
|
|
68106
|
-
|
|
68107
|
-
|
|
68108
|
-
"gif",
|
|
68109
|
-
"qx"
|
|
68110
|
-
],
|
|
68111
|
-
"qx/decoration/Simple/menu/checkbox.gif": [
|
|
68112
|
-
16,
|
|
68113
|
-
7,
|
|
68114
|
-
"gif",
|
|
68115
|
-
"qx"
|
|
68116
|
-
],
|
|
68117
|
-
"qx/decoration/Simple/menu/radiobutton.gif": [
|
|
68118
|
-
16,
|
|
68119
|
-
5,
|
|
68120
|
-
"gif",
|
|
68121
|
-
"qx"
|
|
68122
|
-
],
|
|
68123
|
-
"qx/decoration/Simple/menu/radiobutton-invert.gif": [
|
|
68124
|
-
16,
|
|
68125
|
-
5,
|
|
68126
|
-
"gif",
|
|
68127
|
-
"qx"
|
|
68128
|
-
],
|
|
68129
|
-
"qx/decoration/Simple/splitpane/knob-horizontal.png": [
|
|
68130
|
-
1,
|
|
68131
|
-
8,
|
|
68132
|
-
"png",
|
|
68133
|
-
"qx"
|
|
68134
|
-
],
|
|
68135
|
-
"qx/decoration/Simple/splitpane/knob-vertical.png": [
|
|
68136
|
-
8,
|
|
68137
|
-
1,
|
|
68130
|
+
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
68131
|
+
10,
|
|
68132
|
+
10,
|
|
68138
68133
|
"png",
|
|
68139
68134
|
"qx"
|
|
68140
68135
|
],
|
|
68141
|
-
"qx/decoration/Simple/
|
|
68142
|
-
19,
|
|
68143
|
-
16,
|
|
68144
|
-
"gif",
|
|
68145
|
-
"qx"
|
|
68146
|
-
],
|
|
68147
|
-
"qx/decoration/Simple/tree/plus.gif": [
|
|
68148
|
-
19,
|
|
68149
|
-
16,
|
|
68150
|
-
"gif",
|
|
68151
|
-
"qx"
|
|
68152
|
-
],
|
|
68153
|
-
"qx/decoration/Simple/table/ascending-invert.png": [
|
|
68136
|
+
"qx/decoration/Simple/table/ascending.png": [
|
|
68154
68137
|
10,
|
|
68155
68138
|
10,
|
|
68156
68139
|
"png",
|
|
@@ -68168,13 +68151,13 @@ qx.$$packageData['0'] = {
|
|
|
68168
68151
|
"png",
|
|
68169
68152
|
"qx"
|
|
68170
68153
|
],
|
|
68171
|
-
"qx/decoration/Simple/table/
|
|
68154
|
+
"qx/decoration/Simple/table/descending-invert.png": [
|
|
68172
68155
|
10,
|
|
68173
68156
|
10,
|
|
68174
68157
|
"png",
|
|
68175
68158
|
"qx"
|
|
68176
68159
|
],
|
|
68177
|
-
"qx/decoration/Simple/table/descending
|
|
68160
|
+
"qx/decoration/Simple/table/descending.png": [
|
|
68178
68161
|
10,
|
|
68179
68162
|
10,
|
|
68180
68163
|
"png",
|
|
@@ -68186,9 +68169,15 @@ qx.$$packageData['0'] = {
|
|
|
68186
68169
|
"png",
|
|
68187
68170
|
"qx"
|
|
68188
68171
|
],
|
|
68189
|
-
"qx/decoration/Simple/
|
|
68190
|
-
|
|
68191
|
-
|
|
68172
|
+
"qx/decoration/Simple/splitpane/knob-horizontal.png": [
|
|
68173
|
+
1,
|
|
68174
|
+
8,
|
|
68175
|
+
"png",
|
|
68176
|
+
"qx"
|
|
68177
|
+
],
|
|
68178
|
+
"qx/decoration/Simple/splitpane/knob-vertical.png": [
|
|
68179
|
+
8,
|
|
68180
|
+
1,
|
|
68192
68181
|
"png",
|
|
68193
68182
|
"qx"
|
|
68194
68183
|
],
|
|
@@ -68198,6 +68187,18 @@ qx.$$packageData['0'] = {
|
|
|
68198
68187
|
"gif",
|
|
68199
68188
|
"qx"
|
|
68200
68189
|
],
|
|
68190
|
+
"qx/decoration/Simple/tree/minus.gif": [
|
|
68191
|
+
19,
|
|
68192
|
+
16,
|
|
68193
|
+
"gif",
|
|
68194
|
+
"qx"
|
|
68195
|
+
],
|
|
68196
|
+
"qx/decoration/Simple/tree/plus.gif": [
|
|
68197
|
+
19,
|
|
68198
|
+
16,
|
|
68199
|
+
"gif",
|
|
68200
|
+
"qx"
|
|
68201
|
+
],
|
|
68201
68202
|
"qx/decoration/Simple/treevirtual/cross.gif": [
|
|
68202
68203
|
19,
|
|
68203
68204
|
16,
|
|
@@ -68270,13 +68271,13 @@ qx.$$packageData['0'] = {
|
|
|
68270
68271
|
"gif",
|
|
68271
68272
|
"qx"
|
|
68272
68273
|
],
|
|
68273
|
-
"qx/decoration/Simple/window/close.gif": [
|
|
68274
|
+
"qx/decoration/Simple/window/close-white.gif": [
|
|
68274
68275
|
10,
|
|
68275
68276
|
9,
|
|
68276
68277
|
"gif",
|
|
68277
68278
|
"qx"
|
|
68278
68279
|
],
|
|
68279
|
-
"qx/decoration/Simple/window/close
|
|
68280
|
+
"qx/decoration/Simple/window/close.gif": [
|
|
68280
68281
|
10,
|
|
68281
68282
|
9,
|
|
68282
68283
|
"gif",
|
|
@@ -68288,19 +68289,19 @@ qx.$$packageData['0'] = {
|
|
|
68288
68289
|
"gif",
|
|
68289
68290
|
"qx"
|
|
68290
68291
|
],
|
|
68291
|
-
"qx/decoration/Simple/window/
|
|
68292
|
+
"qx/decoration/Simple/window/maximize.gif": [
|
|
68292
68293
|
9,
|
|
68293
68294
|
9,
|
|
68294
68295
|
"gif",
|
|
68295
68296
|
"qx"
|
|
68296
68297
|
],
|
|
68297
|
-
"qx/decoration/Simple/window/minimize.gif": [
|
|
68298
|
+
"qx/decoration/Simple/window/minimize-white.gif": [
|
|
68298
68299
|
9,
|
|
68299
68300
|
9,
|
|
68300
68301
|
"gif",
|
|
68301
68302
|
"qx"
|
|
68302
68303
|
],
|
|
68303
|
-
"qx/decoration/Simple/window/
|
|
68304
|
+
"qx/decoration/Simple/window/minimize.gif": [
|
|
68304
68305
|
9,
|
|
68305
68306
|
9,
|
|
68306
68307
|
"gif",
|
|
@@ -68348,19 +68349,19 @@ qx.$$packageData['0'] = {
|
|
|
68348
68349
|
"",
|
|
68349
68350
|
"qx"
|
|
68350
68351
|
],
|
|
68351
|
-
"qx/tool/schema/
|
|
68352
|
+
"qx/tool/schema/compile-1-0-0.json": [
|
|
68352
68353
|
null,
|
|
68353
68354
|
null,
|
|
68354
68355
|
"json",
|
|
68355
68356
|
"qx"
|
|
68356
68357
|
],
|
|
68357
|
-
"qx/tool/schema/Manifest-
|
|
68358
|
+
"qx/tool/schema/Manifest-1-0-0.json": [
|
|
68358
68359
|
null,
|
|
68359
68360
|
null,
|
|
68360
68361
|
"json",
|
|
68361
68362
|
"qx"
|
|
68362
68363
|
],
|
|
68363
|
-
"qx/tool/schema/
|
|
68364
|
+
"qx/tool/schema/Manifest-2-0-0.json": [
|
|
68364
68365
|
null,
|
|
68365
68366
|
null,
|
|
68366
68367
|
"json",
|
|
@@ -68378,37 +68379,37 @@ qx.$$packageData['0'] = {
|
|
|
68378
68379
|
"",
|
|
68379
68380
|
"qx"
|
|
68380
68381
|
],
|
|
68381
|
-
"qx/tool/
|
|
68382
|
+
"qx/tool/website/build/404.html": [
|
|
68382
68383
|
null,
|
|
68383
68384
|
null,
|
|
68384
|
-
"
|
|
68385
|
+
"html",
|
|
68385
68386
|
"qx"
|
|
68386
68387
|
],
|
|
68387
|
-
"qx/tool/
|
|
68388
|
+
"qx/tool/website/build/about.html": [
|
|
68388
68389
|
null,
|
|
68389
68390
|
null,
|
|
68390
|
-
"
|
|
68391
|
+
"html",
|
|
68391
68392
|
"qx"
|
|
68392
68393
|
],
|
|
68393
|
-
"qx/tool/website/
|
|
68394
|
+
"qx/tool/website/build/index.html": [
|
|
68394
68395
|
null,
|
|
68395
68396
|
null,
|
|
68396
|
-
"
|
|
68397
|
+
"html",
|
|
68397
68398
|
"qx"
|
|
68398
68399
|
],
|
|
68399
|
-
"qx/tool/website/
|
|
68400
|
+
"qx/tool/website/build/qooxdoo.css": [
|
|
68400
68401
|
null,
|
|
68401
68402
|
null,
|
|
68402
|
-
"
|
|
68403
|
+
"css",
|
|
68403
68404
|
"qx"
|
|
68404
68405
|
],
|
|
68405
|
-
"qx/tool/website/partials/
|
|
68406
|
+
"qx/tool/website/partials/footer.html": [
|
|
68406
68407
|
null,
|
|
68407
68408
|
null,
|
|
68408
68409
|
"html",
|
|
68409
68410
|
"qx"
|
|
68410
68411
|
],
|
|
68411
|
-
"qx/tool/website/partials/
|
|
68412
|
+
"qx/tool/website/partials/head.html": [
|
|
68412
68413
|
null,
|
|
68413
68414
|
null,
|
|
68414
68415
|
"html",
|
|
@@ -68432,13 +68433,25 @@ qx.$$packageData['0'] = {
|
|
|
68432
68433
|
"svg",
|
|
68433
68434
|
"qx"
|
|
68434
68435
|
],
|
|
68436
|
+
"qx/tool/website/partials/icon-twitter.html": [
|
|
68437
|
+
null,
|
|
68438
|
+
null,
|
|
68439
|
+
"html",
|
|
68440
|
+
"qx"
|
|
68441
|
+
],
|
|
68435
68442
|
"qx/tool/website/partials/icon-twitter.svg": [
|
|
68436
68443
|
16,
|
|
68437
68444
|
16,
|
|
68438
68445
|
"svg",
|
|
68439
68446
|
"qx"
|
|
68440
68447
|
],
|
|
68441
|
-
"qx/tool/website/
|
|
68448
|
+
"qx/tool/website/sass/qooxdoo.scss": [
|
|
68449
|
+
null,
|
|
68450
|
+
null,
|
|
68451
|
+
"scss",
|
|
68452
|
+
"qx"
|
|
68453
|
+
],
|
|
68454
|
+
"qx/tool/website/src/404.html": [
|
|
68442
68455
|
null,
|
|
68443
68456
|
null,
|
|
68444
68457
|
"html",
|
|
@@ -68450,103 +68463,157 @@ qx.$$packageData['0'] = {
|
|
|
68450
68463
|
"md",
|
|
68451
68464
|
"qx"
|
|
68452
68465
|
],
|
|
68453
|
-
"qx/tool/website/src/
|
|
68466
|
+
"qx/tool/website/src/index.html": [
|
|
68454
68467
|
null,
|
|
68455
68468
|
null,
|
|
68456
68469
|
"html",
|
|
68457
68470
|
"qx"
|
|
68458
68471
|
],
|
|
68459
|
-
"qx/tool/website/
|
|
68472
|
+
"qx/tool/website/layouts/default.dot": [
|
|
68460
68473
|
null,
|
|
68461
68474
|
null,
|
|
68462
|
-
"
|
|
68475
|
+
"dot",
|
|
68463
68476
|
"qx"
|
|
68464
68477
|
],
|
|
68465
|
-
"qx/tool/
|
|
68478
|
+
"qx/tool/cli/templates/template_vars.js": [
|
|
68466
68479
|
null,
|
|
68467
68480
|
null,
|
|
68468
|
-
"
|
|
68481
|
+
"js",
|
|
68469
68482
|
"qx"
|
|
68470
68483
|
],
|
|
68471
|
-
"qx/tool/
|
|
68484
|
+
"qx/tool/cli/templates/TypeScriptWriter-base_declaration.d.ts": [
|
|
68472
68485
|
null,
|
|
68473
68486
|
null,
|
|
68474
|
-
"
|
|
68487
|
+
"ts",
|
|
68475
68488
|
"qx"
|
|
68476
68489
|
],
|
|
68477
|
-
"qx/tool/website/build/
|
|
68490
|
+
"qx/tool/website/build/assets/abel.css": [
|
|
68478
68491
|
null,
|
|
68479
68492
|
null,
|
|
68480
|
-
"
|
|
68493
|
+
"css",
|
|
68481
68494
|
"qx"
|
|
68482
68495
|
],
|
|
68483
|
-
"qx/tool/website/build/
|
|
68496
|
+
"qx/tool/website/build/assets/bootstrap.css": [
|
|
68484
68497
|
null,
|
|
68485
68498
|
null,
|
|
68486
68499
|
"css",
|
|
68487
68500
|
"qx"
|
|
68488
68501
|
],
|
|
68489
|
-
"qx/tool/
|
|
68502
|
+
"qx/tool/website/build/assets/bootstrap.min.css": [
|
|
68490
68503
|
null,
|
|
68491
68504
|
null,
|
|
68492
|
-
"
|
|
68505
|
+
"css",
|
|
68493
68506
|
"qx"
|
|
68494
68507
|
],
|
|
68495
|
-
"qx/tool/
|
|
68508
|
+
"qx/tool/website/build/assets/bootstrap.min.css.map": [
|
|
68496
68509
|
null,
|
|
68497
68510
|
null,
|
|
68498
|
-
"
|
|
68511
|
+
"map",
|
|
68499
68512
|
"qx"
|
|
68500
68513
|
],
|
|
68501
|
-
"qx/tool/
|
|
68514
|
+
"qx/tool/website/build/assets/buttons.js": [
|
|
68502
68515
|
null,
|
|
68503
68516
|
null,
|
|
68504
68517
|
"js",
|
|
68505
68518
|
"qx"
|
|
68506
68519
|
],
|
|
68507
|
-
"qx/tool/
|
|
68520
|
+
"qx/tool/website/build/assets/common.js": [
|
|
68508
68521
|
null,
|
|
68509
68522
|
null,
|
|
68510
68523
|
"js",
|
|
68511
68524
|
"qx"
|
|
68512
68525
|
],
|
|
68513
|
-
"qx/tool/
|
|
68526
|
+
"qx/tool/website/build/assets/favicon.png": [
|
|
68527
|
+
32,
|
|
68528
|
+
32,
|
|
68529
|
+
"png",
|
|
68530
|
+
"qx"
|
|
68531
|
+
],
|
|
68532
|
+
"qx/tool/website/build/assets/fontawesome-all.js": [
|
|
68514
68533
|
null,
|
|
68515
68534
|
null,
|
|
68516
68535
|
"js",
|
|
68517
68536
|
"qx"
|
|
68518
68537
|
],
|
|
68519
|
-
"qx/tool/
|
|
68538
|
+
"qx/tool/website/build/assets/jquery.js": [
|
|
68520
68539
|
null,
|
|
68521
68540
|
null,
|
|
68522
68541
|
"js",
|
|
68523
68542
|
"qx"
|
|
68524
68543
|
],
|
|
68525
|
-
"qx/tool/
|
|
68544
|
+
"qx/tool/website/build/assets/logo.svg": [
|
|
68545
|
+
512,
|
|
68546
|
+
145,
|
|
68547
|
+
"svg",
|
|
68548
|
+
"qx"
|
|
68549
|
+
],
|
|
68550
|
+
"qx/tool/website/build/assets/qx-api.png": [
|
|
68551
|
+
1144,
|
|
68552
|
+
640,
|
|
68553
|
+
"png",
|
|
68554
|
+
"qx"
|
|
68555
|
+
],
|
|
68556
|
+
"qx/tool/website/build/assets/qx-ide.png": [
|
|
68557
|
+
3183,
|
|
68558
|
+
1752,
|
|
68559
|
+
"png",
|
|
68560
|
+
"qx"
|
|
68561
|
+
],
|
|
68562
|
+
"qx/tool/website/build/assets/qx-oo.png": [
|
|
68563
|
+
870,
|
|
68564
|
+
502,
|
|
68565
|
+
"png",
|
|
68566
|
+
"qx"
|
|
68567
|
+
],
|
|
68568
|
+
"qx/tool/website/build/assets/qx-white.svg": [
|
|
68569
|
+
64,
|
|
68570
|
+
65,
|
|
68571
|
+
"svg",
|
|
68572
|
+
"qx"
|
|
68573
|
+
],
|
|
68574
|
+
"qx/tool/website/build/diagnostics/dependson.html": [
|
|
68575
|
+
null,
|
|
68576
|
+
null,
|
|
68577
|
+
"html",
|
|
68578
|
+
"qx"
|
|
68579
|
+
],
|
|
68580
|
+
"qx/tool/website/build/diagnostics/dependson.js": [
|
|
68526
68581
|
null,
|
|
68527
68582
|
null,
|
|
68528
68583
|
"js",
|
|
68529
68584
|
"qx"
|
|
68530
68585
|
],
|
|
68531
|
-
"qx/tool/
|
|
68586
|
+
"qx/tool/website/build/diagnostics/requiredby.html": [
|
|
68587
|
+
null,
|
|
68588
|
+
null,
|
|
68589
|
+
"html",
|
|
68590
|
+
"qx"
|
|
68591
|
+
],
|
|
68592
|
+
"qx/tool/website/build/diagnostics/requiredby.js": [
|
|
68532
68593
|
null,
|
|
68533
68594
|
null,
|
|
68534
68595
|
"js",
|
|
68535
68596
|
"qx"
|
|
68536
68597
|
],
|
|
68537
|
-
"qx/tool/website/
|
|
68598
|
+
"qx/tool/website/build/scripts/serve.js": [
|
|
68538
68599
|
null,
|
|
68539
68600
|
null,
|
|
68540
68601
|
"js",
|
|
68541
68602
|
"qx"
|
|
68542
68603
|
],
|
|
68604
|
+
"qx/tool/website/src/assets/abel.css": [
|
|
68605
|
+
null,
|
|
68606
|
+
null,
|
|
68607
|
+
"css",
|
|
68608
|
+
"qx"
|
|
68609
|
+
],
|
|
68543
68610
|
"qx/tool/website/src/assets/bootstrap.css": [
|
|
68544
68611
|
null,
|
|
68545
68612
|
null,
|
|
68546
68613
|
"css",
|
|
68547
68614
|
"qx"
|
|
68548
68615
|
],
|
|
68549
|
-
"qx/tool/website/src/assets/
|
|
68616
|
+
"qx/tool/website/src/assets/bootstrap.min.css": [
|
|
68550
68617
|
null,
|
|
68551
68618
|
null,
|
|
68552
68619
|
"css",
|
|
@@ -68570,13 +68637,13 @@ qx.$$packageData['0'] = {
|
|
|
68570
68637
|
"png",
|
|
68571
68638
|
"qx"
|
|
68572
68639
|
],
|
|
68573
|
-
"qx/tool/website/src/assets/
|
|
68640
|
+
"qx/tool/website/src/assets/fontawesome-all.js": [
|
|
68574
68641
|
null,
|
|
68575
68642
|
null,
|
|
68576
|
-
"
|
|
68643
|
+
"js",
|
|
68577
68644
|
"qx"
|
|
68578
68645
|
],
|
|
68579
|
-
"qx/tool/website/src/assets/
|
|
68646
|
+
"qx/tool/website/src/assets/jquery.js": [
|
|
68580
68647
|
null,
|
|
68581
68648
|
null,
|
|
68582
68649
|
"js",
|
|
@@ -68588,12 +68655,6 @@ qx.$$packageData['0'] = {
|
|
|
68588
68655
|
"svg",
|
|
68589
68656
|
"qx"
|
|
68590
68657
|
],
|
|
68591
|
-
"qx/tool/website/src/assets/jquery.js": [
|
|
68592
|
-
null,
|
|
68593
|
-
null,
|
|
68594
|
-
"js",
|
|
68595
|
-
"qx"
|
|
68596
|
-
],
|
|
68597
68658
|
"qx/tool/website/src/assets/qx-api.png": [
|
|
68598
68659
|
1144,
|
|
68599
68660
|
640,
|
|
@@ -68618,7 +68679,7 @@ qx.$$packageData['0'] = {
|
|
|
68618
68679
|
"svg",
|
|
68619
68680
|
"qx"
|
|
68620
68681
|
],
|
|
68621
|
-
"qx/tool/website/src/
|
|
68682
|
+
"qx/tool/website/src/scripts/serve.js": [
|
|
68622
68683
|
null,
|
|
68623
68684
|
null,
|
|
68624
68685
|
"js",
|
|
@@ -68630,6 +68691,12 @@ qx.$$packageData['0'] = {
|
|
|
68630
68691
|
"html",
|
|
68631
68692
|
"qx"
|
|
68632
68693
|
],
|
|
68694
|
+
"qx/tool/website/src/diagnostics/dependson.js": [
|
|
68695
|
+
null,
|
|
68696
|
+
null,
|
|
68697
|
+
"js",
|
|
68698
|
+
"qx"
|
|
68699
|
+
],
|
|
68633
68700
|
"qx/tool/website/src/diagnostics/requiredby.html": [
|
|
68634
68701
|
null,
|
|
68635
68702
|
null,
|
|
@@ -68642,118 +68709,82 @@ qx.$$packageData['0'] = {
|
|
|
68642
68709
|
"js",
|
|
68643
68710
|
"qx"
|
|
68644
68711
|
],
|
|
68645
|
-
"qx/tool/
|
|
68712
|
+
"qx/tool/cli/templates/class/default.tmpl.js": [
|
|
68646
68713
|
null,
|
|
68647
68714
|
null,
|
|
68648
|
-
"
|
|
68715
|
+
"js",
|
|
68649
68716
|
"qx"
|
|
68650
68717
|
],
|
|
68651
|
-
"qx/tool/
|
|
68718
|
+
"qx/tool/cli/templates/class/header.tmpl.js": [
|
|
68652
68719
|
null,
|
|
68653
68720
|
null,
|
|
68654
|
-
"
|
|
68721
|
+
"js",
|
|
68655
68722
|
"qx"
|
|
68656
68723
|
],
|
|
68657
|
-
"qx/tool/
|
|
68724
|
+
"qx/tool/cli/templates/class/interface.tmpl.js": [
|
|
68658
68725
|
null,
|
|
68659
68726
|
null,
|
|
68660
|
-
"
|
|
68727
|
+
"js",
|
|
68661
68728
|
"qx"
|
|
68662
68729
|
],
|
|
68663
|
-
"qx/tool/
|
|
68730
|
+
"qx/tool/cli/templates/class/mixin.tmpl.js": [
|
|
68664
68731
|
null,
|
|
68665
68732
|
null,
|
|
68666
|
-
"
|
|
68733
|
+
"js",
|
|
68667
68734
|
"qx"
|
|
68668
68735
|
],
|
|
68669
|
-
"qx/tool/
|
|
68736
|
+
"qx/tool/cli/templates/class/singleton.tmpl.js": [
|
|
68670
68737
|
null,
|
|
68671
68738
|
null,
|
|
68672
68739
|
"js",
|
|
68673
68740
|
"qx"
|
|
68674
68741
|
],
|
|
68675
|
-
"qx/tool/
|
|
68742
|
+
"qx/tool/cli/templates/loader/loader-node.tmpl.js": [
|
|
68676
68743
|
null,
|
|
68677
68744
|
null,
|
|
68678
68745
|
"js",
|
|
68679
68746
|
"qx"
|
|
68680
68747
|
],
|
|
68681
|
-
"qx/tool/
|
|
68682
|
-
32,
|
|
68683
|
-
32,
|
|
68684
|
-
"png",
|
|
68685
|
-
"qx"
|
|
68686
|
-
],
|
|
68687
|
-
"qx/tool/website/build/assets/fontawesome-all.js": [
|
|
68748
|
+
"qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
|
|
68688
68749
|
null,
|
|
68689
68750
|
null,
|
|
68690
68751
|
"js",
|
|
68691
68752
|
"qx"
|
|
68692
68753
|
],
|
|
68693
|
-
"qx/tool/
|
|
68754
|
+
"qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
|
|
68694
68755
|
null,
|
|
68695
68756
|
null,
|
|
68696
68757
|
"js",
|
|
68697
68758
|
"qx"
|
|
68698
68759
|
],
|
|
68699
|
-
"qx/tool/
|
|
68700
|
-
512,
|
|
68701
|
-
145,
|
|
68702
|
-
"svg",
|
|
68703
|
-
"qx"
|
|
68704
|
-
],
|
|
68705
|
-
"qx/tool/website/build/assets/qx-api.png": [
|
|
68706
|
-
1144,
|
|
68707
|
-
640,
|
|
68708
|
-
"png",
|
|
68709
|
-
"qx"
|
|
68710
|
-
],
|
|
68711
|
-
"qx/tool/website/build/assets/qx-ide.png": [
|
|
68712
|
-
3183,
|
|
68713
|
-
1752,
|
|
68714
|
-
"png",
|
|
68715
|
-
"qx"
|
|
68716
|
-
],
|
|
68717
|
-
"qx/tool/website/build/assets/qx-oo.png": [
|
|
68718
|
-
870,
|
|
68719
|
-
502,
|
|
68720
|
-
"png",
|
|
68721
|
-
"qx"
|
|
68722
|
-
],
|
|
68723
|
-
"qx/tool/website/build/assets/qx-white.svg": [
|
|
68724
|
-
64,
|
|
68725
|
-
65,
|
|
68726
|
-
"svg",
|
|
68727
|
-
"qx"
|
|
68728
|
-
],
|
|
68729
|
-
"qx/tool/website/build/diagnostics/dependson.html": [
|
|
68760
|
+
"qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
|
|
68730
68761
|
null,
|
|
68731
68762
|
null,
|
|
68732
|
-
"
|
|
68763
|
+
"json",
|
|
68733
68764
|
"qx"
|
|
68734
68765
|
],
|
|
68735
|
-
"qx/tool/
|
|
68766
|
+
"qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
|
|
68736
68767
|
null,
|
|
68737
68768
|
null,
|
|
68738
|
-
"
|
|
68769
|
+
"json",
|
|
68739
68770
|
"qx"
|
|
68740
68771
|
],
|
|
68741
|
-
"qx/tool/
|
|
68772
|
+
"qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
|
|
68742
68773
|
null,
|
|
68743
68774
|
null,
|
|
68744
|
-
"
|
|
68775
|
+
"tmpl",
|
|
68745
68776
|
"qx"
|
|
68746
68777
|
],
|
|
68747
|
-
"qx/tool/
|
|
68778
|
+
"qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
|
|
68748
68779
|
null,
|
|
68749
68780
|
null,
|
|
68750
|
-
"
|
|
68781
|
+
"md",
|
|
68751
68782
|
"qx"
|
|
68752
68783
|
],
|
|
68753
|
-
"qx/tool/
|
|
68784
|
+
"qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
|
|
68754
68785
|
null,
|
|
68755
68786
|
null,
|
|
68756
|
-
"
|
|
68787
|
+
"tmpl",
|
|
68757
68788
|
"qx"
|
|
68758
68789
|
],
|
|
68759
68790
|
"qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
|
|
@@ -68762,10 +68793,10 @@ qx.$$packageData['0'] = {
|
|
|
68762
68793
|
"json",
|
|
68763
68794
|
"qx"
|
|
68764
68795
|
],
|
|
68765
|
-
"qx/tool/cli/templates/skeleton/desktop
|
|
68796
|
+
"qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
|
|
68766
68797
|
null,
|
|
68767
68798
|
null,
|
|
68768
|
-
"
|
|
68799
|
+
"md",
|
|
68769
68800
|
"qx"
|
|
68770
68801
|
],
|
|
68771
68802
|
"qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
|
|
@@ -68774,10 +68805,10 @@ qx.$$packageData['0'] = {
|
|
|
68774
68805
|
"json",
|
|
68775
68806
|
"qx"
|
|
68776
68807
|
],
|
|
68777
|
-
"qx/tool/cli/templates/skeleton/
|
|
68808
|
+
"qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
|
|
68778
68809
|
null,
|
|
68779
68810
|
null,
|
|
68780
|
-
"
|
|
68811
|
+
"json",
|
|
68781
68812
|
"qx"
|
|
68782
68813
|
],
|
|
68783
68814
|
"qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
|
|
@@ -68786,28 +68817,28 @@ qx.$$packageData['0'] = {
|
|
|
68786
68817
|
"tmpl",
|
|
68787
68818
|
"qx"
|
|
68788
68819
|
],
|
|
68789
|
-
"qx/tool/cli/templates/skeleton/server/
|
|
68820
|
+
"qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
|
|
68790
68821
|
null,
|
|
68791
68822
|
null,
|
|
68792
|
-
"
|
|
68823
|
+
"txt",
|
|
68793
68824
|
"qx"
|
|
68794
68825
|
],
|
|
68795
|
-
"qx/tool/cli/templates/skeleton/server/
|
|
68826
|
+
"qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
|
|
68796
68827
|
null,
|
|
68797
68828
|
null,
|
|
68798
68829
|
"json",
|
|
68799
68830
|
"qx"
|
|
68800
68831
|
],
|
|
68801
|
-
"qx/tool/cli/templates/skeleton/
|
|
68832
|
+
"qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
|
|
68802
68833
|
null,
|
|
68803
68834
|
null,
|
|
68804
|
-
"
|
|
68835
|
+
"tmpl",
|
|
68805
68836
|
"qx"
|
|
68806
68837
|
],
|
|
68807
|
-
"qx/tool/cli/templates/skeleton/mobile
|
|
68838
|
+
"qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
|
|
68808
68839
|
null,
|
|
68809
68840
|
null,
|
|
68810
|
-
"
|
|
68841
|
+
"json",
|
|
68811
68842
|
"qx"
|
|
68812
68843
|
],
|
|
68813
68844
|
"qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
|
|
@@ -68822,82 +68853,70 @@ qx.$$packageData['0'] = {
|
|
|
68822
68853
|
"md",
|
|
68823
68854
|
"qx"
|
|
68824
68855
|
],
|
|
68825
|
-
"qx/tool/cli/templates/skeleton/
|
|
68826
|
-
null,
|
|
68827
|
-
null,
|
|
68828
|
-
"json",
|
|
68829
|
-
"qx"
|
|
68830
|
-
],
|
|
68831
|
-
"qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
|
|
68856
|
+
"qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
|
|
68832
68857
|
null,
|
|
68833
68858
|
null,
|
|
68834
|
-
"
|
|
68859
|
+
"txt",
|
|
68835
68860
|
"qx"
|
|
68836
68861
|
],
|
|
68837
|
-
"qx/tool/cli/templates/skeleton/
|
|
68862
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
|
|
68838
68863
|
null,
|
|
68839
68864
|
null,
|
|
68840
|
-
"
|
|
68865
|
+
"html",
|
|
68841
68866
|
"qx"
|
|
68842
68867
|
],
|
|
68843
|
-
"qx/tool/cli/templates/skeleton/
|
|
68868
|
+
"qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
|
|
68844
68869
|
null,
|
|
68845
68870
|
null,
|
|
68846
|
-
"
|
|
68871
|
+
"html",
|
|
68847
68872
|
"qx"
|
|
68848
68873
|
],
|
|
68849
|
-
"qx/tool/cli/templates/skeleton/
|
|
68874
|
+
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
|
|
68850
68875
|
null,
|
|
68851
68876
|
null,
|
|
68852
|
-
"
|
|
68877
|
+
"txt",
|
|
68853
68878
|
"qx"
|
|
68854
68879
|
],
|
|
68855
|
-
"qx/tool/cli/templates/skeleton/
|
|
68880
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
|
|
68856
68881
|
null,
|
|
68857
68882
|
null,
|
|
68858
68883
|
"html",
|
|
68859
68884
|
"qx"
|
|
68860
68885
|
],
|
|
68861
|
-
"qx/tool/cli/templates/skeleton/
|
|
68886
|
+
"qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
|
|
68862
68887
|
null,
|
|
68863
68888
|
null,
|
|
68864
68889
|
"html",
|
|
68865
68890
|
"qx"
|
|
68866
68891
|
],
|
|
68867
|
-
"qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
|
|
68868
|
-
null,
|
|
68869
|
-
null,
|
|
68870
|
-
"txt",
|
|
68871
|
-
"qx"
|
|
68872
|
-
],
|
|
68873
68892
|
"qx/tool/cli/templates/skeleton/server/source/translation/readme.txt": [
|
|
68874
68893
|
null,
|
|
68875
68894
|
null,
|
|
68876
68895
|
"txt",
|
|
68877
68896
|
"qx"
|
|
68878
68897
|
],
|
|
68879
|
-
"qx/tool/cli/templates/skeleton/
|
|
68898
|
+
"qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
|
|
68880
68899
|
null,
|
|
68881
68900
|
null,
|
|
68882
68901
|
"txt",
|
|
68883
68902
|
"qx"
|
|
68884
68903
|
],
|
|
68885
|
-
"qx/tool/cli/templates/skeleton/
|
|
68886
|
-
|
|
68887
|
-
|
|
68888
|
-
"
|
|
68904
|
+
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
68905
|
+
32,
|
|
68906
|
+
32,
|
|
68907
|
+
"png",
|
|
68889
68908
|
"qx"
|
|
68890
68909
|
],
|
|
68891
|
-
"qx/tool/cli/templates/skeleton/
|
|
68910
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
|
|
68892
68911
|
null,
|
|
68893
68912
|
null,
|
|
68894
|
-
"
|
|
68913
|
+
"js",
|
|
68895
68914
|
"qx"
|
|
68896
68915
|
],
|
|
68897
|
-
"qx/tool/cli/templates/skeleton/
|
|
68916
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
|
|
68898
68917
|
null,
|
|
68899
68918
|
null,
|
|
68900
|
-
"
|
|
68919
|
+
"js",
|
|
68901
68920
|
"qx"
|
|
68902
68921
|
],
|
|
68903
68922
|
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
|
|
@@ -68954,24 +68973,18 @@ qx.$$packageData['0'] = {
|
|
|
68954
68973
|
"js",
|
|
68955
68974
|
"qx"
|
|
68956
68975
|
],
|
|
68957
|
-
"qx/tool/cli/templates/skeleton/
|
|
68976
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
|
|
68958
68977
|
null,
|
|
68959
68978
|
null,
|
|
68960
68979
|
"js",
|
|
68961
68980
|
"qx"
|
|
68962
68981
|
],
|
|
68963
|
-
"qx/tool/cli/templates/skeleton/
|
|
68982
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
|
|
68964
68983
|
null,
|
|
68965
68984
|
null,
|
|
68966
68985
|
"js",
|
|
68967
68986
|
"qx"
|
|
68968
68987
|
],
|
|
68969
|
-
"qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
|
|
68970
|
-
32,
|
|
68971
|
-
32,
|
|
68972
|
-
"png",
|
|
68973
|
-
"qx"
|
|
68974
|
-
],
|
|
68975
68988
|
"qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
|
|
68976
68989
|
180,
|
|
68977
68990
|
180,
|
|
@@ -68990,97 +69003,103 @@ qx.$$packageData['0'] = {
|
|
|
68990
69003
|
"png",
|
|
68991
69004
|
"qx"
|
|
68992
69005
|
],
|
|
68993
|
-
"qx/tool/cli/templates/skeleton/
|
|
69006
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
|
|
68994
69007
|
null,
|
|
68995
69008
|
null,
|
|
68996
69009
|
"js",
|
|
68997
69010
|
"qx"
|
|
68998
69011
|
],
|
|
68999
|
-
"qx/tool/cli/templates/skeleton/
|
|
69012
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
|
|
69000
69013
|
null,
|
|
69001
69014
|
null,
|
|
69002
69015
|
"js",
|
|
69003
69016
|
"qx"
|
|
69004
69017
|
],
|
|
69005
|
-
"qx/tool/cli/templates/skeleton/
|
|
69018
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
|
|
69006
69019
|
null,
|
|
69007
69020
|
null,
|
|
69008
69021
|
"js",
|
|
69009
69022
|
"qx"
|
|
69010
69023
|
],
|
|
69011
|
-
"qx/tool/cli/templates/skeleton/
|
|
69024
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
|
|
69012
69025
|
null,
|
|
69013
69026
|
null,
|
|
69014
69027
|
"js",
|
|
69015
69028
|
"qx"
|
|
69016
69029
|
],
|
|
69017
|
-
"qx/tool/cli/templates/skeleton/
|
|
69030
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
|
|
69018
69031
|
null,
|
|
69019
69032
|
null,
|
|
69020
69033
|
"js",
|
|
69021
69034
|
"qx"
|
|
69022
69035
|
],
|
|
69023
|
-
"qx/tool/cli/templates/skeleton/
|
|
69036
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
|
|
69024
69037
|
null,
|
|
69025
69038
|
null,
|
|
69026
69039
|
"js",
|
|
69027
69040
|
"qx"
|
|
69028
69041
|
],
|
|
69029
|
-
"qx/tool/cli/templates/skeleton/
|
|
69042
|
+
"qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
|
|
69030
69043
|
null,
|
|
69031
69044
|
null,
|
|
69032
69045
|
"js",
|
|
69033
69046
|
"qx"
|
|
69034
69047
|
],
|
|
69035
|
-
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/
|
|
69048
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
|
|
69036
69049
|
null,
|
|
69037
69050
|
null,
|
|
69038
69051
|
"js",
|
|
69039
69052
|
"qx"
|
|
69040
69053
|
],
|
|
69041
|
-
"qx/tool/cli/templates/skeleton/
|
|
69054
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
|
|
69042
69055
|
null,
|
|
69043
69056
|
null,
|
|
69044
69057
|
"js",
|
|
69045
69058
|
"qx"
|
|
69046
69059
|
],
|
|
69047
|
-
"qx/tool/cli/templates/skeleton/
|
|
69060
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
|
|
69048
69061
|
null,
|
|
69049
69062
|
null,
|
|
69050
69063
|
"js",
|
|
69051
69064
|
"qx"
|
|
69052
69065
|
],
|
|
69053
|
-
"qx/tool/cli/templates/skeleton/
|
|
69066
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
|
|
69054
69067
|
null,
|
|
69055
69068
|
null,
|
|
69056
69069
|
"js",
|
|
69057
69070
|
"qx"
|
|
69058
69071
|
],
|
|
69059
|
-
"qx/tool/cli/templates/skeleton/
|
|
69072
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
|
|
69060
69073
|
null,
|
|
69061
69074
|
null,
|
|
69062
69075
|
"js",
|
|
69063
69076
|
"qx"
|
|
69064
69077
|
],
|
|
69065
|
-
"qx/tool/cli/templates/skeleton/
|
|
69078
|
+
"qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
|
|
69066
69079
|
null,
|
|
69067
69080
|
null,
|
|
69068
69081
|
"js",
|
|
69069
69082
|
"qx"
|
|
69070
69083
|
],
|
|
69071
|
-
"qx/tool/cli/templates/skeleton/
|
|
69084
|
+
"qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
|
|
69072
69085
|
null,
|
|
69073
69086
|
null,
|
|
69074
69087
|
"js",
|
|
69075
69088
|
"qx"
|
|
69076
69089
|
],
|
|
69077
|
-
"qx/tool/cli/templates/skeleton/
|
|
69090
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
69078
69091
|
null,
|
|
69079
69092
|
null,
|
|
69080
69093
|
"js",
|
|
69081
69094
|
"qx"
|
|
69082
69095
|
],
|
|
69083
|
-
"qx/tool/cli/templates/skeleton/
|
|
69096
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
|
|
69097
|
+
null,
|
|
69098
|
+
null,
|
|
69099
|
+
"js",
|
|
69100
|
+
"qx"
|
|
69101
|
+
],
|
|
69102
|
+
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
|
|
69084
69103
|
null,
|
|
69085
69104
|
null,
|
|
69086
69105
|
"js",
|
|
@@ -69104,24 +69123,6 @@ qx.$$packageData['0'] = {
|
|
|
69104
69123
|
"scss",
|
|
69105
69124
|
"qx"
|
|
69106
69125
|
],
|
|
69107
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
|
|
69108
|
-
null,
|
|
69109
|
-
null,
|
|
69110
|
-
"js",
|
|
69111
|
-
"qx"
|
|
69112
|
-
],
|
|
69113
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
|
|
69114
|
-
null,
|
|
69115
|
-
null,
|
|
69116
|
-
"js",
|
|
69117
|
-
"qx"
|
|
69118
|
-
],
|
|
69119
|
-
"qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
|
|
69120
|
-
null,
|
|
69121
|
-
null,
|
|
69122
|
-
"js",
|
|
69123
|
-
"qx"
|
|
69124
|
-
],
|
|
69125
69126
|
"qx/tool/cli/templates/skeleton/package/source/class/custom/resource/custom/test.png": [
|
|
69126
69127
|
32,
|
|
69127
69128
|
32,
|