@qooxdoo/framework 7.4.0 → 7.4.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.
@@ -96,7 +96,7 @@ if (typeof global !== "undefined") {
96
96
  "qx.application": "qx.tool.cli.Application",
97
97
  "qx.revision": "",
98
98
  "qx.theme": "qx.theme.Simple",
99
- "qx.version": "7.4.0",
99
+ "qx.version": "7.4.2",
100
100
  "qx.compiler.targetType": "source",
101
101
  "qx.compiler.outputDir": "compiled/node/build/",
102
102
  "true": true,
@@ -128,7 +128,7 @@ if (typeof global !== "undefined") {
128
128
  "qx.promise.warnings": true,
129
129
  "qx.promise.longStackTraces": true,
130
130
  "qx.compiler": true,
131
- "qx.compiler.version": "7.4.0",
131
+ "qx.compiler.version": "7.4.2",
132
132
  "qx.headless": true,
133
133
  "qx.compiler.applicationType": "node",
134
134
  "qx.compiler.applicationName": "compiler"
@@ -36534,7 +36534,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
36534
36534
  * @return {String}
36535
36535
  */
36536
36536
  getCompilerVersion() {
36537
- return "7.4.0";
36537
+ return "7.4.2";
36538
36538
  },
36539
36539
 
36540
36540
  /**
@@ -51111,8 +51111,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
51111
51111
 
51112
51112
  var async = require("async");
51113
51113
 
51114
- var pathModule = require("upath");
51115
-
51116
51114
  var log = qx.tool.utils.LogManager.createLog("analyser");
51117
51115
  /**
51118
51116
  * Helper method that collapses the MemberExpression into a string
@@ -52804,7 +52802,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
52804
52802
  if (typeof arg.value != "string") {
52805
52803
  t.addMarker("compiler.requireLiteralArguments", path.node.loc, arg.value);
52806
52804
  } else {
52807
- qx.tool.compiler.Console.log(`${t.__P_22_1}:${path.node.loc.start.line}:` + ` automatically detected \'require(${arg.value})\``);
52805
+ if (qx.tool.compiler.Console.getInstance().getVerbose()) {
52806
+ qx.tool.compiler.Console.log(`${t.__P_22_1}:${path.node.loc.start.line}:` + ` automatically detected \'require(${arg.value})\``);
52807
+ }
52808
+
52808
52809
  t.addCommonjsModule(arg.value, t.__P_22_1, path.node.loc.start.line); // Don't show "unresolved" error for `require` since the
52809
52810
  // browserified code defines it as a global
52810
52811
 
@@ -55101,8 +55102,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55101
55102
 
55102
55103
  construct(appMeta) {
55103
55104
  qx.tool.compiler.targets.meta.AbstractJavascriptMeta.constructor.call(this, appMeta, `${appMeta.getApplicationRoot()}commonjs-browserify.js`);
55104
- this.__P_44_0 = [];
55105
- this.__P_44_1 = {};
55106
55105
  this.setNeedsWriteToDisk(true);
55107
55106
  },
55108
55107
 
@@ -55111,36 +55110,41 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55111
55110
  __P_44_1: null,
55112
55111
 
55113
55112
  __P_44_2() {
55114
- let commonjsModules = new Set();
55115
- let references = {};
55116
- const db = this.getAppMeta().getAnalyser().getDatabase();
55117
- const localModules = this.getAppMeta().getApplication().getLocalModules() || {}; // Get a Set of unique `require`d CommonJS module names from
55118
- // all classes
55119
-
55120
- for (let className in db.classInfo) {
55121
- let classInfo = db.classInfo[className];
55122
-
55123
- if (classInfo.commonjsModules) {
55124
- Object.keys(classInfo.commonjsModules).forEach(moduleName => {
55125
- // Ignore this found `require()` if its a local modules
55126
- if (!(moduleName in localModules)) {
55127
- // Add this module name to the set of module names
55128
- commonjsModules.add(moduleName);
55129
- } // Add the list of references from which this module was require()d
55130
-
55131
-
55132
- if (!references[moduleName]) {
55133
- references[moduleName] = new Set();
55134
- }
55113
+ if (this.__P_44_0 === null) {
55114
+ let commonjsModules = new Set();
55115
+ let references = {};
55116
+ const db = this.getAppMeta().getAnalyser().getDatabase();
55117
+ const localModules = this.getAppMeta().getApplication().getLocalModules() || {}; // Get a Set of unique `require`d CommonJS module names from
55118
+ // all classes
55119
+
55120
+ for (let className in db.classInfo) {
55121
+ let classInfo = db.classInfo[className];
55122
+
55123
+ if (classInfo.commonjsModules) {
55124
+ Object.keys(classInfo.commonjsModules).forEach(moduleName => {
55125
+ // Ignore this found `require()` if its a local modules
55126
+ if (!(moduleName in localModules)) {
55127
+ // Add this module name to the set of module names
55128
+ commonjsModules.add(moduleName);
55129
+ } // Add the list of references from which this module was require()d
55130
+
55131
+
55132
+ if (!references[moduleName]) {
55133
+ references[moduleName] = new Set();
55134
+ }
55135
55135
 
55136
- references[moduleName].add([...classInfo.commonjsModules[moduleName]]);
55137
- });
55136
+ references[moduleName].add([...classInfo.commonjsModules[moduleName]]);
55137
+ });
55138
+ }
55138
55139
  }
55140
+
55141
+ this.__P_44_0 = [...commonjsModules];
55142
+ this.__P_44_1 = references;
55139
55143
  }
55140
55144
 
55141
55145
  return {
55142
- commonjsModules: [...commonjsModules],
55143
- references: references
55146
+ commonjsModules: this.__P_44_0,
55147
+ references: this.__P_44_1
55144
55148
  };
55145
55149
  },
55146
55150
 
@@ -55154,8 +55158,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55154
55158
  let db = this.getAppMeta().getAnalyser().getDatabase();
55155
55159
 
55156
55160
  const {
55157
- commonjsModules,
55158
- references
55161
+ commonjsModules
55159
55162
  } = this.__P_44_2();
55160
55163
 
55161
55164
  let modules = [];
@@ -55187,8 +55190,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55187
55190
  if (doIt) {
55188
55191
  db.modulesInfo = modulesInfo;
55189
55192
  await this.getAppMeta().getAnalyser().saveDatabase();
55190
- this.__P_44_0 = commonjsModules;
55191
- this.__P_44_1 = references;
55192
55193
  }
55193
55194
 
55194
55195
  this.setNeedsWriteToDisk(doIt);
@@ -55205,8 +55206,13 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55205
55206
  if (this.getAppMeta().getEnvironmentValue("qx.compiler.applicationType") == "browser") {
55206
55207
  const localModules = this.getAppMeta().getApplication().getLocalModules();
55207
55208
 
55208
- if (this.__P_44_0 || localModules) {
55209
- await this.__P_44_3(this.__P_44_0, this.__P_44_1, localModules, ws);
55209
+ const {
55210
+ commonjsModules,
55211
+ references
55212
+ } = this.__P_44_2();
55213
+
55214
+ if (commonjsModules.length > 0 || localModules) {
55215
+ await this.__P_44_3(commonjsModules, references, localModules, ws);
55210
55216
  }
55211
55217
  }
55212
55218
 
@@ -72177,6 +72183,48 @@ qx.$$packageData['0'] = {
72177
72183
  }
72178
72184
  },
72179
72185
  "resources": {
72186
+ "qx/decoration/Simple/checkbox/checked-disabled.png": [
72187
+ 6,
72188
+ 6,
72189
+ "png",
72190
+ "qx"
72191
+ ],
72192
+ "qx/decoration/Simple/checkbox/checked.png": [
72193
+ 6,
72194
+ 6,
72195
+ "png",
72196
+ "qx"
72197
+ ],
72198
+ "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72199
+ 6,
72200
+ 2,
72201
+ "png",
72202
+ "qx"
72203
+ ],
72204
+ "qx/decoration/Simple/checkbox/undetermined.png": [
72205
+ 6,
72206
+ 2,
72207
+ "png",
72208
+ "qx"
72209
+ ],
72210
+ "qx/decoration/Simple/colorselector/brightness-field.png": [
72211
+ 19,
72212
+ 256,
72213
+ "png",
72214
+ "qx"
72215
+ ],
72216
+ "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72217
+ 35,
72218
+ 11,
72219
+ "gif",
72220
+ "qx"
72221
+ ],
72222
+ "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72223
+ 256,
72224
+ 256,
72225
+ "jpg",
72226
+ "qx"
72227
+ ],
72180
72228
  "qx/decoration/Simple/arrows/down-invert.gif": [
72181
72229
  7,
72182
72230
  4,
@@ -72189,19 +72237,31 @@ qx.$$packageData['0'] = {
72189
72237
  "gif",
72190
72238
  "qx"
72191
72239
  ],
72240
+ "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72241
+ 11,
72242
+ 11,
72243
+ "gif",
72244
+ "qx"
72245
+ ],
72192
72246
  "qx/decoration/Simple/arrows/down.gif": [
72193
72247
  7,
72194
72248
  4,
72195
72249
  "gif",
72196
72250
  "qx"
72197
72251
  ],
72252
+ "qx/decoration/Simple/arrows/forward.gif": [
72253
+ 8,
72254
+ 7,
72255
+ "gif",
72256
+ "qx"
72257
+ ],
72198
72258
  "qx/decoration/Simple/arrows/left-invert.gif": [
72199
72259
  4,
72200
72260
  7,
72201
72261
  "gif",
72202
72262
  "qx"
72203
72263
  ],
72204
- "qx/decoration/Simple/arrows/forward.gif": [
72264
+ "qx/decoration/Simple/arrows/rewind.gif": [
72205
72265
  8,
72206
72266
  7,
72207
72267
  "gif",
@@ -72219,8 +72279,8 @@ qx.$$packageData['0'] = {
72219
72279
  "gif",
72220
72280
  "qx"
72221
72281
  ],
72222
- "qx/decoration/Simple/arrows/rewind.gif": [
72223
- 8,
72282
+ "qx/decoration/Simple/arrows/right.gif": [
72283
+ 4,
72224
72284
  7,
72225
72285
  "gif",
72226
72286
  "qx"
@@ -72231,9 +72291,9 @@ qx.$$packageData['0'] = {
72231
72291
  "gif",
72232
72292
  "qx"
72233
72293
  ],
72234
- "qx/decoration/Simple/arrows/right.gif": [
72235
- 4,
72294
+ "qx/decoration/Simple/arrows/up.gif": [
72236
72295
  7,
72296
+ 4,
72237
72297
  "gif",
72238
72298
  "qx"
72239
72299
  ],
@@ -72243,61 +72303,31 @@ qx.$$packageData['0'] = {
72243
72303
  "gif",
72244
72304
  "qx"
72245
72305
  ],
72246
- "qx/decoration/Simple/colorselector/brightness-field.png": [
72247
- 19,
72248
- 256,
72249
- "png",
72250
- "qx"
72251
- ],
72252
- "qx/decoration/Simple/arrows/up.gif": [
72306
+ "qx/decoration/Simple/menu/checkbox-invert.gif": [
72307
+ 16,
72253
72308
  7,
72254
- 4,
72255
72309
  "gif",
72256
72310
  "qx"
72257
72311
  ],
72258
- "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72259
- 35,
72260
- 11,
72312
+ "qx/decoration/Simple/menu/checkbox.gif": [
72313
+ 16,
72314
+ 7,
72261
72315
  "gif",
72262
72316
  "qx"
72263
72317
  ],
72264
- "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72265
- 256,
72266
- 256,
72267
- "jpg",
72268
- "qx"
72269
- ],
72270
- "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72271
- 11,
72272
- 11,
72318
+ "qx/decoration/Simple/menu/radiobutton-invert.gif": [
72319
+ 16,
72320
+ 5,
72273
72321
  "gif",
72274
72322
  "qx"
72275
72323
  ],
72276
- "qx/decoration/Simple/checkbox/checked-disabled.png": [
72277
- 6,
72278
- 6,
72279
- "png",
72280
- "qx"
72281
- ],
72282
- "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72283
- 6,
72284
- 2,
72285
- "png",
72286
- "qx"
72287
- ],
72288
- "qx/decoration/Simple/checkbox/checked.png": [
72289
- 6,
72290
- 6,
72291
- "png",
72292
- "qx"
72293
- ],
72294
- "qx/decoration/Simple/checkbox/undetermined.png": [
72295
- 6,
72296
- 2,
72297
- "png",
72324
+ "qx/decoration/Simple/menu/radiobutton.gif": [
72325
+ 16,
72326
+ 5,
72327
+ "gif",
72298
72328
  "qx"
72299
72329
  ],
72300
- "qx/decoration/Simple/cursors/copy.gif": [
72330
+ "qx/decoration/Simple/cursors/alias.gif": [
72301
72331
  19,
72302
72332
  15,
72303
72333
  "gif",
@@ -72309,51 +72339,27 @@ qx.$$packageData['0'] = {
72309
72339
  "gif",
72310
72340
  "qx"
72311
72341
  ],
72312
- "qx/decoration/Simple/cursors/alias.gif": [
72342
+ "qx/decoration/Simple/cursors/copy.gif": [
72313
72343
  19,
72314
72344
  15,
72315
72345
  "gif",
72316
72346
  "qx"
72317
72347
  ],
72318
- "qx/decoration/Simple/cursors/move.gif": [
72319
- 13,
72320
- 9,
72321
- "gif",
72322
- "qx"
72323
- ],
72324
- "qx/decoration/Simple/menu/checkbox-invert.gif": [
72325
- 16,
72326
- 7,
72327
- "gif",
72328
- "qx"
72329
- ],
72330
- "qx/decoration/Simple/menu/checkbox.gif": [
72331
- 16,
72332
- 7,
72333
- "gif",
72334
- "qx"
72335
- ],
72336
- "qx/decoration/Simple/menu/radiobutton-invert.gif": [
72337
- 16,
72338
- 5,
72339
- "gif",
72340
- "qx"
72341
- ],
72342
- "qx/decoration/Simple/menu/radiobutton.gif": [
72343
- 16,
72344
- 5,
72345
- "gif",
72348
+ "qx/decoration/Simple/splitpane/knob-horizontal.png": [
72349
+ 1,
72350
+ 8,
72351
+ "png",
72346
72352
  "qx"
72347
72353
  ],
72348
- "qx/decoration/Simple/tabview/close.gif": [
72349
- 10,
72354
+ "qx/decoration/Simple/cursors/move.gif": [
72355
+ 13,
72350
72356
  9,
72351
72357
  "gif",
72352
72358
  "qx"
72353
72359
  ],
72354
- "qx/decoration/Simple/splitpane/knob-horizontal.png": [
72355
- 1,
72360
+ "qx/decoration/Simple/splitpane/knob-vertical.png": [
72356
72361
  8,
72362
+ 1,
72357
72363
  "png",
72358
72364
  "qx"
72359
72365
  ],
@@ -72363,9 +72369,9 @@ qx.$$packageData['0'] = {
72363
72369
  "png",
72364
72370
  "qx"
72365
72371
  ],
72366
- "qx/decoration/Simple/splitpane/knob-vertical.png": [
72367
- 8,
72368
- 1,
72372
+ "qx/decoration/Simple/table/ascending-invert.png": [
72373
+ 10,
72374
+ 10,
72369
72375
  "png",
72370
72376
  "qx"
72371
72377
  ],
@@ -72375,25 +72381,19 @@ qx.$$packageData['0'] = {
72375
72381
  "png",
72376
72382
  "qx"
72377
72383
  ],
72378
- "qx/decoration/Simple/table/ascending-invert.png": [
72379
- 10,
72380
- 10,
72381
- "png",
72382
- "qx"
72383
- ],
72384
72384
  "qx/decoration/Simple/table/boolean-true.png": [
72385
72385
  11,
72386
72386
  11,
72387
72387
  "png",
72388
72388
  "qx"
72389
72389
  ],
72390
- "qx/decoration/Simple/table/descending.png": [
72390
+ "qx/decoration/Simple/table/descending-invert.png": [
72391
72391
  10,
72392
72392
  10,
72393
72393
  "png",
72394
72394
  "qx"
72395
72395
  ],
72396
- "qx/decoration/Simple/table/descending-invert.png": [
72396
+ "qx/decoration/Simple/table/descending.png": [
72397
72397
  10,
72398
72398
  10,
72399
72399
  "png",
@@ -72411,9 +72411,9 @@ qx.$$packageData['0'] = {
72411
72411
  "gif",
72412
72412
  "qx"
72413
72413
  ],
72414
- "qx/decoration/Simple/treevirtual/cross_minus.gif": [
72415
- 19,
72416
- 16,
72414
+ "qx/decoration/Simple/tabview/close.gif": [
72415
+ 10,
72416
+ 9,
72417
72417
  "gif",
72418
72418
  "qx"
72419
72419
  ],
@@ -72441,25 +72441,31 @@ qx.$$packageData['0'] = {
72441
72441
  "gif",
72442
72442
  "qx"
72443
72443
  ],
72444
- "qx/decoration/Simple/treevirtual/only_plus.gif": [
72444
+ "qx/decoration/Simple/treevirtual/line.gif": [
72445
72445
  19,
72446
72446
  16,
72447
72447
  "gif",
72448
72448
  "qx"
72449
72449
  ],
72450
- "qx/decoration/Simple/treevirtual/start.gif": [
72450
+ "qx/decoration/Simple/treevirtual/only_minus.gif": [
72451
72451
  19,
72452
72452
  16,
72453
72453
  "gif",
72454
72454
  "qx"
72455
72455
  ],
72456
- "qx/decoration/Simple/treevirtual/line.gif": [
72456
+ "qx/decoration/Simple/treevirtual/only_plus.gif": [
72457
72457
  19,
72458
72458
  16,
72459
72459
  "gif",
72460
72460
  "qx"
72461
72461
  ],
72462
- "qx/decoration/Simple/treevirtual/only_minus.gif": [
72462
+ "qx/decoration/Simple/treevirtual/start.gif": [
72463
+ 19,
72464
+ 16,
72465
+ "gif",
72466
+ "qx"
72467
+ ],
72468
+ "qx/decoration/Simple/treevirtual/cross_minus.gif": [
72463
72469
  19,
72464
72470
  16,
72465
72471
  "gif",
@@ -72555,13 +72561,13 @@ qx.$$packageData['0'] = {
72555
72561
  "",
72556
72562
  "qx"
72557
72563
  ],
72558
- "qx/tool/bin/download-assets": [
72564
+ "qx/tool/bin/build-website": [
72559
72565
  null,
72560
72566
  null,
72561
72567
  "",
72562
72568
  "qx"
72563
72569
  ],
72564
- "qx/tool/bin/build-website": [
72570
+ "qx/tool/bin/download-assets": [
72565
72571
  null,
72566
72572
  null,
72567
72573
  "",
@@ -72573,19 +72579,19 @@ qx.$$packageData['0'] = {
72573
72579
  "json",
72574
72580
  "qx"
72575
72581
  ],
72576
- "qx/tool/schema/Manifest-1-0-0.json": [
72582
+ "qx/tool/schema/qooxdoo-1-0-0.json": [
72577
72583
  null,
72578
72584
  null,
72579
72585
  "json",
72580
72586
  "qx"
72581
72587
  ],
72582
- "qx/tool/schema/Manifest-2-0-0.json": [
72588
+ "qx/tool/schema/Manifest-1-0-0.json": [
72583
72589
  null,
72584
72590
  null,
72585
72591
  "json",
72586
72592
  "qx"
72587
72593
  ],
72588
- "qx/tool/schema/qooxdoo-1-0-0.json": [
72594
+ "qx/tool/schema/Manifest-2-0-0.json": [
72589
72595
  null,
72590
72596
  null,
72591
72597
  "json",
@@ -72597,31 +72603,25 @@ qx.$$packageData['0'] = {
72597
72603
  "",
72598
72604
  "qx"
72599
72605
  ],
72600
- "qx/tool/cli/templates/template_vars.js": [
72601
- null,
72602
- null,
72603
- "js",
72604
- "qx"
72605
- ],
72606
72606
  "qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt": [
72607
72607
  null,
72608
72608
  null,
72609
72609
  "txt",
72610
72610
  "qx"
72611
72611
  ],
72612
- "qx/tool/website/sass/qooxdoo.scss": [
72612
+ "qx/tool/cli/templates/template_vars.js": [
72613
72613
  null,
72614
72614
  null,
72615
- "scss",
72615
+ "js",
72616
72616
  "qx"
72617
72617
  ],
72618
- "qx/tool/website/build/about.html": [
72618
+ "qx/tool/website/build/404.html": [
72619
72619
  null,
72620
72620
  null,
72621
72621
  "html",
72622
72622
  "qx"
72623
72623
  ],
72624
- "qx/tool/website/build/404.html": [
72624
+ "qx/tool/website/build/about.html": [
72625
72625
  null,
72626
72626
  null,
72627
72627
  "html",
@@ -72639,24 +72639,36 @@ qx.$$packageData['0'] = {
72639
72639
  "css",
72640
72640
  "qx"
72641
72641
  ],
72642
+ "qx/tool/website/layouts/default.dot": [
72643
+ null,
72644
+ null,
72645
+ "dot",
72646
+ "qx"
72647
+ ],
72642
72648
  "qx/tool/website/partials/footer.html": [
72643
72649
  null,
72644
72650
  null,
72645
72651
  "html",
72646
72652
  "qx"
72647
72653
  ],
72648
- "qx/tool/website/partials/header.html": [
72654
+ "qx/tool/website/partials/head.html": [
72649
72655
  null,
72650
72656
  null,
72651
72657
  "html",
72652
72658
  "qx"
72653
72659
  ],
72654
- "qx/tool/website/partials/head.html": [
72660
+ "qx/tool/website/partials/header.html": [
72655
72661
  null,
72656
72662
  null,
72657
72663
  "html",
72658
72664
  "qx"
72659
72665
  ],
72666
+ "qx/tool/website/partials/icon-github.svg": [
72667
+ 16,
72668
+ 16,
72669
+ "svg",
72670
+ "qx"
72671
+ ],
72660
72672
  "qx/tool/website/partials/icon-github.html": [
72661
72673
  null,
72662
72674
  null,
@@ -72675,16 +72687,10 @@ qx.$$packageData['0'] = {
72675
72687
  "svg",
72676
72688
  "qx"
72677
72689
  ],
72678
- "qx/tool/website/partials/icon-github.svg": [
72679
- 16,
72680
- 16,
72681
- "svg",
72682
- "qx"
72683
- ],
72684
- "qx/tool/website/layouts/default.dot": [
72690
+ "qx/tool/website/sass/qooxdoo.scss": [
72685
72691
  null,
72686
72692
  null,
72687
- "dot",
72693
+ "scss",
72688
72694
  "qx"
72689
72695
  ],
72690
72696
  "qx/tool/website/src/404.html": [
@@ -72705,64 +72711,64 @@ qx.$$packageData['0'] = {
72705
72711
  "html",
72706
72712
  "qx"
72707
72713
  ],
72708
- "qx/tool/cli/templates/class/default.tmpl.js": [
72714
+ "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
72709
72715
  null,
72710
72716
  null,
72711
72717
  "js",
72712
72718
  "qx"
72713
72719
  ],
72714
- "qx/tool/cli/templates/class/header.tmpl.js": [
72720
+ "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
72715
72721
  null,
72716
72722
  null,
72717
72723
  "js",
72718
72724
  "qx"
72719
72725
  ],
72720
- "qx/tool/cli/templates/class/singleton.tmpl.js": [
72726
+ "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
72721
72727
  null,
72722
72728
  null,
72723
72729
  "js",
72724
72730
  "qx"
72725
72731
  ],
72726
- "qx/tool/cli/templates/class/interface.tmpl.js": [
72732
+ "qx/tool/cli/templates/class/default.tmpl.js": [
72727
72733
  null,
72728
72734
  null,
72729
72735
  "js",
72730
72736
  "qx"
72731
72737
  ],
72732
- "qx/tool/cli/templates/class/mixin.tmpl.js": [
72738
+ "qx/tool/cli/templates/class/header.tmpl.js": [
72733
72739
  null,
72734
72740
  null,
72735
72741
  "js",
72736
72742
  "qx"
72737
72743
  ],
72738
- "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
72744
+ "qx/tool/cli/templates/class/interface.tmpl.js": [
72739
72745
  null,
72740
72746
  null,
72741
72747
  "js",
72742
72748
  "qx"
72743
72749
  ],
72744
- "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
72750
+ "qx/tool/cli/templates/class/singleton.tmpl.js": [
72745
72751
  null,
72746
72752
  null,
72747
72753
  "js",
72748
72754
  "qx"
72749
72755
  ],
72750
- "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
72756
+ "qx/tool/cli/templates/class/mixin.tmpl.js": [
72751
72757
  null,
72752
72758
  null,
72753
72759
  "js",
72754
72760
  "qx"
72755
72761
  ],
72756
- "qx/tool/website/build/diagnostics/dependson.js": [
72762
+ "qx/tool/website/build/diagnostics/dependson.html": [
72757
72763
  null,
72758
72764
  null,
72759
- "js",
72765
+ "html",
72760
72766
  "qx"
72761
72767
  ],
72762
- "qx/tool/website/build/diagnostics/dependson.html": [
72768
+ "qx/tool/website/build/diagnostics/dependson.js": [
72763
72769
  null,
72764
72770
  null,
72765
- "html",
72771
+ "js",
72766
72772
  "qx"
72767
72773
  ],
72768
72774
  "qx/tool/website/build/diagnostics/requiredby.html": [
@@ -72777,25 +72783,25 @@ qx.$$packageData['0'] = {
72777
72783
  "js",
72778
72784
  "qx"
72779
72785
  ],
72780
- "qx/tool/website/build/assets/bluebird.min.js": [
72786
+ "qx/tool/website/build/assets/abel.css": [
72781
72787
  null,
72782
72788
  null,
72783
- "js",
72789
+ "css",
72784
72790
  "qx"
72785
72791
  ],
72786
- "qx/tool/website/build/assets/abel.css": [
72792
+ "qx/tool/website/build/assets/bluebird.min.js": [
72787
72793
  null,
72788
72794
  null,
72789
- "css",
72795
+ "js",
72790
72796
  "qx"
72791
72797
  ],
72792
- "qx/tool/website/build/assets/bootstrap.css": [
72798
+ "qx/tool/website/build/assets/bootstrap.min.css": [
72793
72799
  null,
72794
72800
  null,
72795
72801
  "css",
72796
72802
  "qx"
72797
72803
  ],
72798
- "qx/tool/website/build/assets/bootstrap.min.css": [
72804
+ "qx/tool/website/build/assets/bootstrap.css": [
72799
72805
  null,
72800
72806
  null,
72801
72807
  "css",
@@ -72819,36 +72825,36 @@ qx.$$packageData['0'] = {
72819
72825
  "png",
72820
72826
  "qx"
72821
72827
  ],
72822
- "qx/tool/website/build/assets/jquery.js": [
72823
- null,
72824
- null,
72825
- "js",
72826
- "qx"
72827
- ],
72828
72828
  "qx/tool/website/build/assets/fontawesome-all.js": [
72829
72829
  null,
72830
72830
  null,
72831
72831
  "js",
72832
72832
  "qx"
72833
72833
  ],
72834
- "qx/tool/website/build/assets/qx-ide.png": [
72835
- 3183,
72836
- 1752,
72837
- "png",
72838
- "qx"
72839
- ],
72840
72834
  "qx/tool/website/build/assets/qx-api.png": [
72841
72835
  1144,
72842
72836
  640,
72843
72837
  "png",
72844
72838
  "qx"
72845
72839
  ],
72840
+ "qx/tool/website/build/assets/jquery.js": [
72841
+ null,
72842
+ null,
72843
+ "js",
72844
+ "qx"
72845
+ ],
72846
72846
  "qx/tool/website/build/assets/logo.svg": [
72847
72847
  512,
72848
72848
  145,
72849
72849
  "svg",
72850
72850
  "qx"
72851
72851
  ],
72852
+ "qx/tool/website/build/assets/qx-ide.png": [
72853
+ 3183,
72854
+ 1752,
72855
+ "png",
72856
+ "qx"
72857
+ ],
72852
72858
  "qx/tool/website/build/assets/qx-oo.png": [
72853
72859
  870,
72854
72860
  502,
@@ -72867,46 +72873,64 @@ qx.$$packageData['0'] = {
72867
72873
  "js",
72868
72874
  "qx"
72869
72875
  ],
72870
- "qx/tool/website/src/assets/bluebird.min.js": [
72876
+ "qx/tool/website/src/diagnostics/dependson.html": [
72877
+ null,
72878
+ null,
72879
+ "html",
72880
+ "qx"
72881
+ ],
72882
+ "qx/tool/website/src/diagnostics/dependson.js": [
72871
72883
  null,
72872
72884
  null,
72873
72885
  "js",
72874
72886
  "qx"
72875
72887
  ],
72876
- "qx/tool/website/src/assets/abel.css": [
72888
+ "qx/tool/website/src/diagnostics/requiredby.html": [
72877
72889
  null,
72878
72890
  null,
72879
- "css",
72891
+ "html",
72880
72892
  "qx"
72881
72893
  ],
72882
- "qx/tool/website/src/assets/bootstrap.min.css": [
72894
+ "qx/tool/website/src/diagnostics/requiredby.js": [
72883
72895
  null,
72884
72896
  null,
72885
- "css",
72897
+ "js",
72886
72898
  "qx"
72887
72899
  ],
72888
- "qx/tool/website/src/assets/bootstrap.css": [
72900
+ "qx/tool/website/src/assets/abel.css": [
72889
72901
  null,
72890
72902
  null,
72891
72903
  "css",
72892
72904
  "qx"
72893
72905
  ],
72906
+ "qx/tool/website/src/assets/bluebird.min.js": [
72907
+ null,
72908
+ null,
72909
+ "js",
72910
+ "qx"
72911
+ ],
72894
72912
  "qx/tool/website/src/assets/bootstrap.min.css.map": [
72895
72913
  null,
72896
72914
  null,
72897
72915
  "map",
72898
72916
  "qx"
72899
72917
  ],
72918
+ "qx/tool/website/src/assets/bootstrap.css": [
72919
+ null,
72920
+ null,
72921
+ "css",
72922
+ "qx"
72923
+ ],
72900
72924
  "qx/tool/website/src/assets/buttons.js": [
72901
72925
  null,
72902
72926
  null,
72903
72927
  "js",
72904
72928
  "qx"
72905
72929
  ],
72906
- "qx/tool/website/src/assets/jquery.js": [
72930
+ "qx/tool/website/src/assets/bootstrap.min.css": [
72907
72931
  null,
72908
72932
  null,
72909
- "js",
72933
+ "css",
72910
72934
  "qx"
72911
72935
  ],
72912
72936
  "qx/tool/website/src/assets/favicon.png": [
@@ -72915,6 +72939,12 @@ qx.$$packageData['0'] = {
72915
72939
  "png",
72916
72940
  "qx"
72917
72941
  ],
72942
+ "qx/tool/website/src/assets/jquery.js": [
72943
+ null,
72944
+ null,
72945
+ "js",
72946
+ "qx"
72947
+ ],
72918
72948
  "qx/tool/website/src/assets/fontawesome-all.js": [
72919
72949
  null,
72920
72950
  null,
@@ -72951,106 +72981,82 @@ qx.$$packageData['0'] = {
72951
72981
  "svg",
72952
72982
  "qx"
72953
72983
  ],
72954
- "qx/tool/website/src/diagnostics/dependson.html": [
72955
- null,
72956
- null,
72957
- "html",
72958
- "qx"
72959
- ],
72960
- "qx/tool/website/src/diagnostics/dependson.js": [
72961
- null,
72962
- null,
72963
- "js",
72964
- "qx"
72965
- ],
72966
- "qx/tool/website/src/diagnostics/requiredby.html": [
72967
- null,
72968
- null,
72969
- "html",
72970
- "qx"
72971
- ],
72972
- "qx/tool/website/src/diagnostics/requiredby.js": [
72973
- null,
72974
- null,
72975
- "js",
72976
- "qx"
72977
- ],
72978
72984
  "qx/tool/website/src/scripts/serve.js": [
72979
72985
  null,
72980
72986
  null,
72981
72987
  "js",
72982
72988
  "qx"
72983
72989
  ],
72984
- "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
72990
+ "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
72985
72991
  null,
72986
72992
  null,
72987
72993
  "tmpl",
72988
72994
  "qx"
72989
72995
  ],
72990
- "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
72996
+ "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
72991
72997
  null,
72992
72998
  null,
72993
72999
  "json",
72994
73000
  "qx"
72995
73001
  ],
72996
- "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
73002
+ "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
72997
73003
  null,
72998
73004
  null,
72999
73005
  "json",
73000
73006
  "qx"
73001
73007
  ],
73002
- "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
73008
+ "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
73003
73009
  null,
73004
73010
  null,
73005
73011
  "md",
73006
73012
  "qx"
73007
73013
  ],
73008
- "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
73014
+ "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
73009
73015
  null,
73010
73016
  null,
73011
73017
  "tmpl",
73012
73018
  "qx"
73013
73019
  ],
73014
- "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
73020
+ "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
73015
73021
  null,
73016
73022
  null,
73017
73023
  "json",
73018
73024
  "qx"
73019
73025
  ],
73020
- "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
73026
+ "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
73021
73027
  null,
73022
73028
  null,
73023
- "json",
73029
+ "md",
73024
73030
  "qx"
73025
73031
  ],
73026
- "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
73032
+ "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
73027
73033
  null,
73028
73034
  null,
73029
- "md",
73035
+ "json",
73030
73036
  "qx"
73031
73037
  ],
73032
- "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
73038
+ "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
73033
73039
  null,
73034
73040
  null,
73035
73041
  "tmpl",
73036
73042
  "qx"
73037
73043
  ],
73038
- "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
73044
+ "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
73039
73045
  null,
73040
73046
  null,
73041
73047
  "json",
73042
73048
  "qx"
73043
73049
  ],
73044
- "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
73050
+ "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
73045
73051
  null,
73046
73052
  null,
73047
- "json",
73053
+ "md",
73048
73054
  "qx"
73049
73055
  ],
73050
- "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
73056
+ "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
73051
73057
  null,
73052
73058
  null,
73053
- "md",
73059
+ "json",
73054
73060
  "qx"
73055
73061
  ],
73056
73062
  "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
@@ -73077,19 +73083,19 @@ qx.$$packageData['0'] = {
73077
73083
  "txt",
73078
73084
  "qx"
73079
73085
  ],
73080
- "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
73086
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
73081
73087
  null,
73082
73088
  null,
73083
73089
  "html",
73084
73090
  "qx"
73085
73091
  ],
73086
- "qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
73092
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
73087
73093
  null,
73088
73094
  null,
73089
73095
  "html",
73090
73096
  "qx"
73091
73097
  ],
73092
- "qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
73098
+ "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
73093
73099
  null,
73094
73100
  null,
73095
73101
  "txt",
@@ -73101,19 +73107,19 @@ qx.$$packageData['0'] = {
73101
73107
  "txt",
73102
73108
  "qx"
73103
73109
  ],
73104
- "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
73110
+ "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
73105
73111
  null,
73106
73112
  null,
73107
73113
  "html",
73108
73114
  "qx"
73109
73115
  ],
73110
- "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
73116
+ "qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
73111
73117
  null,
73112
73118
  null,
73113
73119
  "html",
73114
73120
  "qx"
73115
73121
  ],
73116
- "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
73122
+ "qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
73117
73123
  null,
73118
73124
  null,
73119
73125
  "txt",
@@ -73125,45 +73131,33 @@ qx.$$packageData['0'] = {
73125
73131
  "txt",
73126
73132
  "qx"
73127
73133
  ],
73128
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
73129
- 180,
73130
- 180,
73131
- "png",
73132
- "qx"
73133
- ],
73134
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png": [
73135
- 32,
73136
- 32,
73137
- "png",
73134
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
73135
+ null,
73136
+ null,
73137
+ "js",
73138
73138
  "qx"
73139
73139
  ],
73140
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
73140
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
73141
73141
  null,
73142
73142
  null,
73143
73143
  "js",
73144
73144
  "qx"
73145
73145
  ],
73146
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
73146
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
73147
73147
  32,
73148
73148
  32,
73149
73149
  "png",
73150
73150
  "qx"
73151
73151
  ],
73152
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
73153
- 256,
73154
- 256,
73152
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
73153
+ 180,
73154
+ 180,
73155
73155
  "png",
73156
73156
  "qx"
73157
73157
  ],
73158
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
73159
- null,
73160
- null,
73161
- "js",
73162
- "qx"
73163
- ],
73164
- "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
73165
- 32,
73166
- 32,
73158
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
73159
+ 256,
73160
+ 256,
73167
73161
  "png",
73168
73162
  "qx"
73169
73163
  ],
@@ -73173,39 +73167,51 @@ qx.$$packageData['0'] = {
73173
73167
  "js",
73174
73168
  "qx"
73175
73169
  ],
73176
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
73170
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73177
73171
  null,
73178
73172
  null,
73179
73173
  "js",
73180
73174
  "qx"
73181
73175
  ],
73182
- "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73176
+ "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
73177
+ 32,
73178
+ 32,
73179
+ "png",
73180
+ "qx"
73181
+ ],
73182
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
73183
73183
  null,
73184
73184
  null,
73185
73185
  "js",
73186
73186
  "qx"
73187
73187
  ],
73188
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
73188
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
73189
73189
  null,
73190
73190
  null,
73191
73191
  "js",
73192
73192
  "qx"
73193
73193
  ],
73194
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
73194
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
73195
73195
  180,
73196
73196
  180,
73197
73197
  "png",
73198
73198
  "qx"
73199
73199
  ],
73200
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
73200
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
73201
+ 256,
73202
+ 256,
73203
+ "png",
73204
+ "qx"
73205
+ ],
73206
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png": [
73201
73207
  32,
73202
73208
  32,
73203
73209
  "png",
73204
73210
  "qx"
73205
73211
  ],
73206
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
73207
- 256,
73208
- 256,
73212
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
73213
+ 32,
73214
+ 32,
73209
73215
  "png",
73210
73216
  "qx"
73211
73217
  ],
@@ -73227,118 +73233,118 @@ qx.$$packageData['0'] = {
73227
73233
  "tmpl",
73228
73234
  "qx"
73229
73235
  ],
73230
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
73236
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73231
73237
  null,
73232
73238
  null,
73233
73239
  "js",
73234
73240
  "qx"
73235
73241
  ],
73236
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
73242
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73237
73243
  null,
73238
73244
  null,
73239
73245
  "js",
73240
73246
  "qx"
73241
73247
  ],
73242
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
73248
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73243
73249
  null,
73244
73250
  null,
73245
73251
  "js",
73246
73252
  "qx"
73247
73253
  ],
73248
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
73254
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73249
73255
  null,
73250
73256
  null,
73251
- "js",
73257
+ "tmpl",
73252
73258
  "qx"
73253
73259
  ],
73254
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
73260
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73255
73261
  null,
73256
73262
  null,
73257
73263
  "js",
73258
73264
  "qx"
73259
73265
  ],
73260
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
73266
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73261
73267
  null,
73262
73268
  null,
73263
73269
  "js",
73264
73270
  "qx"
73265
73271
  ],
73266
- "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73272
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
73267
73273
  null,
73268
73274
  null,
73269
73275
  "js",
73270
73276
  "qx"
73271
73277
  ],
73272
- "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73278
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
73273
73279
  null,
73274
73280
  null,
73275
73281
  "js",
73276
73282
  "qx"
73277
73283
  ],
73278
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
73284
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
73279
73285
  null,
73280
73286
  null,
73281
73287
  "js",
73282
73288
  "qx"
73283
73289
  ],
73284
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
73290
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73285
73291
  null,
73286
73292
  null,
73287
73293
  "js",
73288
73294
  "qx"
73289
73295
  ],
73290
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73296
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73291
73297
  null,
73292
73298
  null,
73293
73299
  "js",
73294
73300
  "qx"
73295
73301
  ],
73296
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
73302
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
73297
73303
  null,
73298
73304
  null,
73299
- "js",
73305
+ "scss",
73300
73306
  "qx"
73301
73307
  ],
73302
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73308
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
73303
73309
  null,
73304
73310
  null,
73305
- "js",
73311
+ "scss",
73306
73312
  "qx"
73307
73313
  ],
73308
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73314
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
73309
73315
  null,
73310
73316
  null,
73311
73317
  "js",
73312
73318
  "qx"
73313
73319
  ],
73314
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73320
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
73315
73321
  null,
73316
73322
  null,
73317
73323
  "js",
73318
73324
  "qx"
73319
73325
  ],
73320
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73326
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
73321
73327
  null,
73322
73328
  null,
73323
73329
  "js",
73324
73330
  "qx"
73325
73331
  ],
73326
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73332
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
73327
73333
  null,
73328
73334
  null,
73329
- "tmpl",
73335
+ "js",
73330
73336
  "qx"
73331
73337
  ],
73332
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
73338
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
73333
73339
  null,
73334
73340
  null,
73335
- "scss",
73341
+ "js",
73336
73342
  "qx"
73337
73343
  ],
73338
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
73344
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
73339
73345
  null,
73340
73346
  null,
73341
- "scss",
73347
+ "js",
73342
73348
  "qx"
73343
73349
  ],
73344
73350
  "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [