@qooxdoo/framework 7.4.1 → 7.5.0

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.
Files changed (36) hide show
  1. package/Manifest.json +1 -1
  2. package/lib/compiler/compile-info.json +58 -58
  3. package/lib/compiler/index.js +289 -265
  4. package/package.json +1 -1
  5. package/source/class/qx/Class.js +3 -3
  6. package/source/class/qx/bom/Cookie.js +1 -1
  7. package/source/class/qx/data/Array.js +3 -3
  8. package/source/class/qx/data/SingleValueBinding.js +1 -1
  9. package/source/class/qx/dom/Hierarchy.js +2 -2
  10. package/source/class/qx/event/Manager.js +1 -1
  11. package/source/class/qx/event/handler/TouchCore.js +1 -1
  12. package/source/class/qx/html/Jsx.js +1 -1
  13. package/source/class/qx/lang/Array.js +2 -2
  14. package/source/class/qx/lang/Function.js +19 -22
  15. package/source/class/qx/locale/MTranslation.js +4 -4
  16. package/source/class/qx/locale/Manager.js +7 -7
  17. package/source/class/qx/module/util/Array.js +2 -2
  18. package/source/class/qx/theme/IndigoDark.js +28 -0
  19. package/source/class/qx/theme/indigo/AppearanceDark.js +186 -0
  20. package/source/class/qx/theme/indigo/ColorDark.js +117 -0
  21. package/source/class/qx/theme/indigo/ImageDark.js +101 -0
  22. package/source/class/qx/tool/cli/Watch.js +24 -22
  23. package/source/class/qx/tool/cli/commands/package/Publish.js +16 -4
  24. package/source/class/qx/tool/compiler/targets/meta/Browserify.js +19 -9
  25. package/source/class/qx/ui/command/Group.js +2 -2
  26. package/source/class/qx/ui/command/GroupManager.js +3 -3
  27. package/source/class/qx/ui/control/ColorSelector.js +1 -1
  28. package/source/class/qx/ui/core/MMultiSelectionHandling.js +1 -1
  29. package/source/class/qx/ui/core/SingleSelectionManager.js +1 -1
  30. package/source/class/qx/ui/core/scroll/MRoll.js +5 -0
  31. package/source/class/qx/ui/form/Form.js +1 -1
  32. package/source/class/qx/ui/list/List.js +1 -1
  33. package/source/class/qx/ui/mobile/form/Form.js +2 -2
  34. package/source/class/qx/ui/treevirtual/MNode.js +1 -1
  35. package/source/class/qx/util/OOUtil.js +1 -1
  36. package/source/resource/qx/scss/_gradients.scss +1 -1
@@ -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.1",
99
+ "qx.version": "7.5.0",
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.1",
131
+ "qx.compiler.version": "7.5.0",
132
132
  "qx.headless": true,
133
133
  "qx.compiler.applicationType": "node",
134
134
  "qx.compiler.applicationName": "compiler"
@@ -8164,7 +8164,7 @@ try {
8164
8164
  *
8165
8165
  * @param clazz {Class} class to look for the interface
8166
8166
  * @param iface {Interface} interface to look for
8167
- * @return {Class | null} the class which directly implements the given interface
8167
+ * @return {Class|null} the class which directly implements the given interface
8168
8168
  */
8169
8169
  getByInterface(clazz, iface) {
8170
8170
  var list, i, l;
@@ -8727,7 +8727,7 @@ try {
8727
8727
  *
8728
8728
  * @param clazz {Class} class to look for the property
8729
8729
  * @param name {String} name of the property
8730
- * @return {Class | null} The class which includes the property
8730
+ * @return {Class|null} The class which includes the property
8731
8731
  */
8732
8732
  getByProperty(clazz, name) {
8733
8733
  while (clazz) {
@@ -8790,7 +8790,7 @@ try {
8790
8790
  *
8791
8791
  * @param clazz {Class} class to look for the mixin
8792
8792
  * @param mixin {Mixin} mixin to look for
8793
- * @return {Class | null} The class which directly includes the given mixin
8793
+ * @return {Class|null} The class which directly includes the given mixin
8794
8794
  */
8795
8795
  getByMixin(clazz, mixin) {
8796
8796
  var list, i, l;
@@ -8855,7 +8855,7 @@ try {
8855
8855
  * @signature function(clazz, iface)
8856
8856
  * @param clazz {Class} class to look for the interface
8857
8857
  * @param iface {Interface} interface to look for
8858
- * @return {Class | null} the class which directly implements the given interface
8858
+ * @return {Class|null} the class which directly implements the given interface
8859
8859
  */
8860
8860
  getByInterface: qx.util.OOUtil.getByInterface,
8861
8861
 
@@ -13278,7 +13278,7 @@ try {
13278
13278
  * @param type {String} Event type
13279
13279
  * @param capture {Boolean ? false} Whether the listener is for the
13280
13280
  * capturing phase of the bubbling phase.
13281
- * @return {Array | null} Array of registered event handlers. May return
13281
+ * @return {Array|null} Array of registered event handlers. May return
13282
13282
  * null when no listener were found.
13283
13283
  */
13284
13284
  getListeners(target, type, capture) {
@@ -14621,7 +14621,7 @@ try {
14621
14621
  * numeric values only.
14622
14622
  *
14623
14623
  * @param arr {Number[]} Array to process
14624
- * @return {Number | null} The highest of all values or undefined if array is empty.
14624
+ * @return {Number|null} The highest of all values or undefined if array is empty.
14625
14625
  */
14626
14626
  max(arr) {
14627
14627
  var i,
@@ -14642,7 +14642,7 @@ try {
14642
14642
  * numeric values only.
14643
14643
  *
14644
14644
  * @param arr {Number[]} Array to process
14645
- * @return {Number | null} The lowest of all values or undefined if array is empty.
14645
+ * @return {Number|null} The lowest of all values or undefined if array is empty.
14646
14646
  */
14647
14647
  min(arr) {
14648
14648
  var i,
@@ -27807,7 +27807,7 @@ try {
27807
27807
  * @param targetProperties {String[]} Array containing the names of the properties
27808
27808
  * @param index {Number?} The array index of the last property to be considered.
27809
27809
  * Default: The last item's index
27810
- * @return {qx.core.Object | null} The object on which the last property
27810
+ * @return {qx.core.Object|null} The object on which the last property
27811
27811
  * should be set.
27812
27812
  */
27813
27813
  __P_74_13(targetObject, targetProperties, index) {
@@ -31564,7 +31564,7 @@ try {
31564
31564
  * Returns the highest value in the given array.
31565
31565
  * Supports numeric values only.
31566
31566
  *
31567
- * @return {Number | null} The highest of all values or undefined if the
31567
+ * @return {Number|null} The highest of all values or undefined if the
31568
31568
  * array is empty.
31569
31569
  */
31570
31570
  max() {
@@ -31583,7 +31583,7 @@ try {
31583
31583
  * Returns the lowest value in the array. Supports
31584
31584
  * numeric values only.
31585
31585
  *
31586
- * @return {Number | null} The lowest of all values or undefined
31586
+ * @return {Number|null} The lowest of all values or undefined
31587
31587
  * if the array is empty.
31588
31588
  */
31589
31589
  min() {
@@ -31658,7 +31658,7 @@ try {
31658
31658
  * <li><code>index</code>: the index of the current item</li>
31659
31659
  * <li><code>array</code>: The native array instance, NOT the data array instance.</li>
31660
31660
  * @param self {var?undefined} The context of the callback.
31661
- * @return {var | undefined} The found item.
31661
+ * @return {var|undefined} The found item.
31662
31662
  */
31663
31663
  find(callback, self) {
31664
31664
  return this.__P_73_0.find(callback, self);
@@ -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.1";
36537
+ return "7.5.0";
36538
36538
  },
36539
36539
 
36540
36540
  /**
@@ -45107,6 +45107,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45107
45107
 
45108
45108
  Authors:
45109
45109
  * John Spackman (john.spackman@zenesis.com, @johnspackman)
45110
+ * Henner Kollmann (Henner.Kollmann@gmx.de, @hkollmann)
45110
45111
 
45111
45112
  ************************************************************************ */
45112
45113
  const fs = require("fs");
@@ -45302,18 +45303,19 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45302
45303
  qx.tool.compiler.Console.debug(`DEBUG: confirmed=${JSON.stringify(confirmed, 2)}`);
45303
45304
  }
45304
45305
 
45305
- var watcher = this._watcher = chokidar.watch(confirmed, {//ignored: /(^|[\/\\])\../
45306
- });
45307
- watcher.on("change", filename => this.__P_5_13("change", filename));
45308
- watcher.on("add", filename => this.__P_5_13("add", filename));
45309
- watcher.on("unlink", filename => this.__P_5_13("unlink", filename));
45310
- watcher.on("ready", () => {
45311
- this.__P_5_7 = true;
45312
-
45313
- this.__P_5_14();
45314
- });
45315
- watcher.on("error", err => {
45316
- qx.tool.compiler.Console.print(err.code == "ENOSPC" ? "qx.tool.cli.watch.enospcError" : "qx.tool.cli.watch.watchError", err);
45306
+ this.__P_5_13().then(() => {
45307
+ var watcher = this._watcher = chokidar.watch(confirmed, {//ignored: /(^|[\/\\])\../
45308
+ });
45309
+ watcher.on("change", filename => this.__P_5_14("change", filename));
45310
+ watcher.on("add", filename => this.__P_5_14("add", filename));
45311
+ watcher.on("unlink", filename => this.__P_5_14("unlink", filename));
45312
+ watcher.on("ready", () => {
45313
+ qx.tool.compiler.Console.log(`Start watching ...`);
45314
+ this.__P_5_7 = true;
45315
+ });
45316
+ watcher.on("error", err => {
45317
+ qx.tool.compiler.Console.print(err.code == "ENOSPC" ? "qx.tool.cli.watch.enospcError" : "qx.tool.cli.watch.watchError", err);
45318
+ });
45317
45319
  });
45318
45320
  });
45319
45321
  },
@@ -45328,7 +45330,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45328
45330
  }
45329
45331
  },
45330
45332
 
45331
- __P_5_14() {
45333
+ __P_5_13() {
45332
45334
  if (this.__P_5_8) {
45333
45335
  this.__P_5_15 = true;
45334
45336
  return this.__P_5_8;
@@ -45422,11 +45424,11 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45422
45424
  clearTimeout(this.__P_5_11);
45423
45425
  }
45424
45426
 
45425
- this.__P_5_11 = setTimeout(() => this.__P_5_14());
45427
+ this.__P_5_11 = setTimeout(() => this.__P_5_13());
45426
45428
  return null;
45427
45429
  },
45428
45430
 
45429
- __P_5_13(type, filename) {
45431
+ __P_5_14(type, filename) {
45430
45432
  const Console = qx.tool.compiler.Console;
45431
45433
 
45432
45434
  if (!this.__P_5_7) {
@@ -55221,7 +55223,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55221
55223
  });
55222
55224
  },
55223
55225
 
55224
- async __P_44_3(commonjsModules, references, localModules, ws) {
55226
+ __P_44_3(commonjsModules, references, localModules, ws) {
55225
55227
  const babelify = require("babelify");
55226
55228
 
55227
55229
  const preset = require("@babel/preset-env");
@@ -55233,7 +55235,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55233
55235
 
55234
55236
 
55235
55237
  builtins.process = builtins._process;
55236
- return new Promise(async resolve => {
55238
+ return new Promise((resolve, reject) => {
55237
55239
  let b = browserify([], {
55238
55240
  builtins: builtins,
55239
55241
  ignoreMissing: true,
@@ -55280,16 +55282,28 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55280
55282
  sourceMaps: false,
55281
55283
  global: true
55282
55284
  });
55283
- b.bundle((e, output) => {
55285
+ b.bundle(function (e, output) {
55284
55286
  if (e) {
55285
- // We've already handled the case of missing module. This is something else.
55286
- qx.tool.compiler.Console.error(`Unable to browserify - this is probably because a module is being require()'d which is not compatible with Browserify: ${e.message}`); // Do not throw an error here, otherwise a problem in the users code will kill the watch with pages of error
55287
-
55288
- resolve(null);
55287
+ // THIS IS A HACK!
55288
+ // In case of error dependency walker never returns from
55289
+ // ```if (self.inputPending > 0) return setTimeout(resolve);```
55290
+ // because inputPending is not decremented anymore.
55291
+ // so set it to 0 here.
55292
+ let d = b.pipeline.get("deps");
55293
+ d.get(0).inputPending = 0;
55294
+ qx.tool.compiler.Console.error(`Unable to browserify - this is probably because a module is being require()'d which is not compatible with Browserify:\n${e.message}`);
55295
+ setTimeout(() => {
55296
+ this.emit("end");
55297
+ });
55289
55298
  return;
55290
- }
55299
+ } // in case of end event output can not be writen.
55300
+ // so catch the error and ignore it
55301
+
55302
+
55303
+ try {
55304
+ ws.write(output);
55305
+ } catch (err) {}
55291
55306
 
55292
- ws.write(output);
55293
55307
  resolve(null);
55294
55308
  });
55295
55309
  });
@@ -64943,9 +64957,9 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
64943
64957
  "qx.tool.cli.commands.Package": {
64944
64958
  "require": true
64945
64959
  },
64960
+ "qx.tool.compiler.Console": {},
64946
64961
  "qx.tool.utils.Utils": {},
64947
64962
  "qx.tool.cli.ConfigDb": {},
64948
- "qx.tool.compiler.Console": {},
64949
64963
  "qx.tool.config.Registry": {},
64950
64964
  "qx.tool.config.Abstract": {},
64951
64965
  "qx.tool.config.Manifest": {},
@@ -65032,6 +65046,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65032
65046
  describe: "Set commit/release message"
65033
65047
  },
65034
65048
  dryrun: {
65049
+ type: "boolean",
65050
+ describe: "Deprecated. Use --dry-run"
65051
+ },
65052
+ "dry-run": {
65035
65053
  type: "boolean",
65036
65054
  alias: "d",
65037
65055
  describe: "Show result only, do not publish to GitHub"
@@ -65087,7 +65105,13 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65087
65105
  async process() {
65088
65106
  await qx.tool.cli.commands.package.Publish.superclass.prototype.process.call(this); // init
65089
65107
 
65090
- const argv = this.argv; // qooxdoo version
65108
+ const argv = this.argv;
65109
+
65110
+ if (argv.dryrun) {
65111
+ qx.tool.compiler.Console.info('The "--dryrun" option is deprecated. Please use "--dry-run" instead.');
65112
+ argv.dryRun = true;
65113
+ } // qooxdoo version
65114
+
65091
65115
 
65092
65116
  let qxVersion = await this.getQxVersion();
65093
65117
 
@@ -65312,7 +65336,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65312
65336
  for (let manifestModel of manifestModels) {
65313
65337
  manifestModel.setValue("requires.@qooxdoo/framework", semver_range).setValue("info.version", new_version);
65314
65338
 
65315
- if (argv.dryrun) {
65339
+ if (argv.dryRun) {
65316
65340
  if (!argv.quiet) {
65317
65341
  qx.tool.compiler.Console.info(`Dry run: Not committing ${manifestModel.getRelativeDataPath()} with the following content:`);
65318
65342
  qx.tool.compiler.Console.info(JSON.stringify(manifestModel.getData(), null, 2));
@@ -65329,7 +65353,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65329
65353
  let data = await qx.tool.utils.Json.loadJsonAsync(package_json_path);
65330
65354
  data.version = new_version;
65331
65355
 
65332
- if (this.argv.dryrun) {
65356
+ if (this.argv.dryRun) {
65333
65357
  qx.tool.compiler.Console.info("Dry run: Not changing package.json version...");
65334
65358
  } else {
65335
65359
  await qx.tool.utils.Json.saveJsonAsync(package_json_path, data);
@@ -65345,7 +65369,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65345
65369
  argv: this.argv
65346
65370
  });
65347
65371
 
65348
- if (argv.dryrun) {
65372
+ if (argv.dryRun) {
65349
65373
  qx.tool.compiler.Console.info(`Dry run: not creating tag and release '${tag}' of ${repo_name}...`);
65350
65374
  return;
65351
65375
  } // commit message
@@ -65468,7 +65492,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
65468
65492
 
65469
65493
  const registryModel = qx.tool.config.Registry.getInstance();
65470
65494
 
65471
- if (argv.dryrun) {
65495
+ if (argv.dryRun) {
65472
65496
  qx.tool.compiler.Console.info(`Dry run: not creating index file ${registryModel.getRelativeDataPath()} with the following content:`);
65473
65497
  qx.tool.compiler.Console.info(data);
65474
65498
  } else {
@@ -72183,6 +72207,54 @@ qx.$$packageData['0'] = {
72183
72207
  }
72184
72208
  },
72185
72209
  "resources": {
72210
+ "qx/decoration/Simple/checkbox/checked-disabled.png": [
72211
+ 6,
72212
+ 6,
72213
+ "png",
72214
+ "qx"
72215
+ ],
72216
+ "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72217
+ 6,
72218
+ 2,
72219
+ "png",
72220
+ "qx"
72221
+ ],
72222
+ "qx/decoration/Simple/checkbox/checked.png": [
72223
+ 6,
72224
+ 6,
72225
+ "png",
72226
+ "qx"
72227
+ ],
72228
+ "qx/decoration/Simple/checkbox/undetermined.png": [
72229
+ 6,
72230
+ 2,
72231
+ "png",
72232
+ "qx"
72233
+ ],
72234
+ "qx/decoration/Simple/cursors/alias.gif": [
72235
+ 19,
72236
+ 15,
72237
+ "gif",
72238
+ "qx"
72239
+ ],
72240
+ "qx/decoration/Simple/cursors/nodrop.gif": [
72241
+ 20,
72242
+ 20,
72243
+ "gif",
72244
+ "qx"
72245
+ ],
72246
+ "qx/decoration/Simple/cursors/copy.gif": [
72247
+ 19,
72248
+ 15,
72249
+ "gif",
72250
+ "qx"
72251
+ ],
72252
+ "qx/decoration/Simple/cursors/move.gif": [
72253
+ 13,
72254
+ 9,
72255
+ "gif",
72256
+ "qx"
72257
+ ],
72186
72258
  "qx/decoration/Simple/arrows/down-invert.gif": [
72187
72259
  7,
72188
72260
  4,
@@ -72207,12 +72279,6 @@ qx.$$packageData['0'] = {
72207
72279
  "gif",
72208
72280
  "qx"
72209
72281
  ],
72210
- "qx/decoration/Simple/arrows/left-invert.gif": [
72211
- 4,
72212
- 7,
72213
- "gif",
72214
- "qx"
72215
- ],
72216
72282
  "qx/decoration/Simple/arrows/left.gif": [
72217
72283
  4,
72218
72284
  7,
@@ -72225,7 +72291,7 @@ qx.$$packageData['0'] = {
72225
72291
  "gif",
72226
72292
  "qx"
72227
72293
  ],
72228
- "qx/decoration/Simple/arrows/right-invert.gif": [
72294
+ "qx/decoration/Simple/arrows/left-invert.gif": [
72229
72295
  4,
72230
72296
  7,
72231
72297
  "gif",
@@ -72237,6 +72303,12 @@ qx.$$packageData['0'] = {
72237
72303
  "gif",
72238
72304
  "qx"
72239
72305
  ],
72306
+ "qx/decoration/Simple/arrows/right-invert.gif": [
72307
+ 4,
72308
+ 7,
72309
+ "gif",
72310
+ "qx"
72311
+ ],
72240
72312
  "qx/decoration/Simple/arrows/up-invert.gif": [
72241
72313
  7,
72242
72314
  4,
@@ -72255,30 +72327,6 @@ qx.$$packageData['0'] = {
72255
72327
  "gif",
72256
72328
  "qx"
72257
72329
  ],
72258
- "qx/decoration/Simple/checkbox/checked-disabled.png": [
72259
- 6,
72260
- 6,
72261
- "png",
72262
- "qx"
72263
- ],
72264
- "qx/decoration/Simple/checkbox/checked.png": [
72265
- 6,
72266
- 6,
72267
- "png",
72268
- "qx"
72269
- ],
72270
- "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72271
- 6,
72272
- 2,
72273
- "png",
72274
- "qx"
72275
- ],
72276
- "qx/decoration/Simple/checkbox/undetermined.png": [
72277
- 6,
72278
- 2,
72279
- "png",
72280
- "qx"
72281
- ],
72282
72330
  "qx/decoration/Simple/menu/checkbox-invert.gif": [
72283
72331
  16,
72284
72332
  7,
@@ -72291,64 +72339,28 @@ qx.$$packageData['0'] = {
72291
72339
  "gif",
72292
72340
  "qx"
72293
72341
  ],
72294
- "qx/decoration/Simple/menu/radiobutton-invert.gif": [
72342
+ "qx/decoration/Simple/menu/radiobutton.gif": [
72295
72343
  16,
72296
72344
  5,
72297
72345
  "gif",
72298
72346
  "qx"
72299
72347
  ],
72300
- "qx/decoration/Simple/menu/radiobutton.gif": [
72348
+ "qx/decoration/Simple/menu/radiobutton-invert.gif": [
72301
72349
  16,
72302
72350
  5,
72303
72351
  "gif",
72304
72352
  "qx"
72305
72353
  ],
72306
- "qx/decoration/Simple/colorselector/brightness-field.png": [
72307
- 19,
72308
- 256,
72354
+ "qx/decoration/Simple/splitpane/knob-horizontal.png": [
72355
+ 1,
72356
+ 8,
72309
72357
  "png",
72310
72358
  "qx"
72311
72359
  ],
72312
- "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72313
- 35,
72314
- 11,
72315
- "gif",
72316
- "qx"
72317
- ],
72318
- "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72319
- 256,
72320
- 256,
72321
- "jpg",
72322
- "qx"
72323
- ],
72324
- "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72325
- 11,
72326
- 11,
72327
- "gif",
72328
- "qx"
72329
- ],
72330
- "qx/decoration/Simple/cursors/alias.gif": [
72331
- 19,
72332
- 15,
72333
- "gif",
72334
- "qx"
72335
- ],
72336
- "qx/decoration/Simple/cursors/copy.gif": [
72337
- 19,
72338
- 15,
72339
- "gif",
72340
- "qx"
72341
- ],
72342
- "qx/decoration/Simple/cursors/move.gif": [
72343
- 13,
72344
- 9,
72345
- "gif",
72346
- "qx"
72347
- ],
72348
- "qx/decoration/Simple/cursors/nodrop.gif": [
72349
- 20,
72350
- 20,
72351
- "gif",
72360
+ "qx/decoration/Simple/splitpane/knob-vertical.png": [
72361
+ 8,
72362
+ 1,
72363
+ "png",
72352
72364
  "qx"
72353
72365
  ],
72354
72366
  "qx/decoration/Simple/table/ascending-invert.png": [
@@ -72375,34 +72387,52 @@ qx.$$packageData['0'] = {
72375
72387
  "png",
72376
72388
  "qx"
72377
72389
  ],
72378
- "qx/decoration/Simple/table/descending-invert.png": [
72390
+ "qx/decoration/Simple/table/descending.png": [
72379
72391
  10,
72380
72392
  10,
72381
72393
  "png",
72382
72394
  "qx"
72383
72395
  ],
72384
- "qx/decoration/Simple/table/descending.png": [
72396
+ "qx/decoration/Simple/table/select-column-order.png": [
72397
+ 10,
72398
+ 9,
72399
+ "png",
72400
+ "qx"
72401
+ ],
72402
+ "qx/decoration/Simple/table/descending-invert.png": [
72385
72403
  10,
72386
72404
  10,
72387
72405
  "png",
72388
72406
  "qx"
72389
72407
  ],
72390
- "qx/decoration/Simple/table/select-column-order.png": [
72408
+ "qx/decoration/Simple/tabview/close.gif": [
72391
72409
  10,
72392
72410
  9,
72393
- "png",
72411
+ "gif",
72394
72412
  "qx"
72395
72413
  ],
72396
- "qx/decoration/Simple/splitpane/knob-horizontal.png": [
72397
- 1,
72398
- 8,
72414
+ "qx/decoration/Simple/colorselector/brightness-field.png": [
72415
+ 19,
72416
+ 256,
72399
72417
  "png",
72400
72418
  "qx"
72401
72419
  ],
72402
- "qx/decoration/Simple/splitpane/knob-vertical.png": [
72403
- 8,
72404
- 1,
72405
- "png",
72420
+ "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72421
+ 35,
72422
+ 11,
72423
+ "gif",
72424
+ "qx"
72425
+ ],
72426
+ "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72427
+ 256,
72428
+ 256,
72429
+ "jpg",
72430
+ "qx"
72431
+ ],
72432
+ "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72433
+ 11,
72434
+ 11,
72435
+ "gif",
72406
72436
  "qx"
72407
72437
  ],
72408
72438
  "qx/decoration/Simple/tree/minus.gif": [
@@ -72417,12 +72447,6 @@ qx.$$packageData['0'] = {
72417
72447
  "gif",
72418
72448
  "qx"
72419
72449
  ],
72420
- "qx/decoration/Simple/tabview/close.gif": [
72421
- 10,
72422
- 9,
72423
- "gif",
72424
- "qx"
72425
- ],
72426
72450
  "qx/decoration/Simple/treevirtual/cross.gif": [
72427
72451
  19,
72428
72452
  16,
@@ -72447,19 +72471,19 @@ qx.$$packageData['0'] = {
72447
72471
  "gif",
72448
72472
  "qx"
72449
72473
  ],
72450
- "qx/decoration/Simple/treevirtual/end_minus.gif": [
72474
+ "qx/decoration/Simple/treevirtual/end_plus.gif": [
72451
72475
  19,
72452
72476
  16,
72453
72477
  "gif",
72454
72478
  "qx"
72455
72479
  ],
72456
- "qx/decoration/Simple/treevirtual/end_plus.gif": [
72480
+ "qx/decoration/Simple/treevirtual/line.gif": [
72457
72481
  19,
72458
72482
  16,
72459
72483
  "gif",
72460
72484
  "qx"
72461
72485
  ],
72462
- "qx/decoration/Simple/treevirtual/line.gif": [
72486
+ "qx/decoration/Simple/treevirtual/end_minus.gif": [
72463
72487
  19,
72464
72488
  16,
72465
72489
  "gif",
@@ -72471,13 +72495,13 @@ qx.$$packageData['0'] = {
72471
72495
  "gif",
72472
72496
  "qx"
72473
72497
  ],
72474
- "qx/decoration/Simple/treevirtual/start.gif": [
72498
+ "qx/decoration/Simple/treevirtual/only_plus.gif": [
72475
72499
  19,
72476
72500
  16,
72477
72501
  "gif",
72478
72502
  "qx"
72479
72503
  ],
72480
- "qx/decoration/Simple/treevirtual/only_plus.gif": [
72504
+ "qx/decoration/Simple/treevirtual/start.gif": [
72481
72505
  19,
72482
72506
  16,
72483
72507
  "gif",
@@ -72579,13 +72603,13 @@ qx.$$packageData['0'] = {
72579
72603
  "",
72580
72604
  "qx"
72581
72605
  ],
72582
- "qx/tool/schema/compile-1-0-0.json": [
72606
+ "qx/tool/schema/Manifest-1-0-0.json": [
72583
72607
  null,
72584
72608
  null,
72585
72609
  "json",
72586
72610
  "qx"
72587
72611
  ],
72588
- "qx/tool/schema/Manifest-1-0-0.json": [
72612
+ "qx/tool/schema/compile-1-0-0.json": [
72589
72613
  null,
72590
72614
  null,
72591
72615
  "json",
@@ -72615,12 +72639,6 @@ qx.$$packageData['0'] = {
72615
72639
  "txt",
72616
72640
  "qx"
72617
72641
  ],
72618
- "qx/tool/website/layouts/default.dot": [
72619
- null,
72620
- null,
72621
- "dot",
72622
- "qx"
72623
- ],
72624
72642
  "qx/tool/website/build/404.html": [
72625
72643
  null,
72626
72644
  null,
@@ -72645,6 +72663,12 @@ qx.$$packageData['0'] = {
72645
72663
  "css",
72646
72664
  "qx"
72647
72665
  ],
72666
+ "qx/tool/website/layouts/default.dot": [
72667
+ null,
72668
+ null,
72669
+ "dot",
72670
+ "qx"
72671
+ ],
72648
72672
  "qx/tool/website/partials/footer.html": [
72649
72673
  null,
72650
72674
  null,
@@ -72711,49 +72735,49 @@ qx.$$packageData['0'] = {
72711
72735
  "scss",
72712
72736
  "qx"
72713
72737
  ],
72714
- "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
72738
+ "qx/tool/cli/templates/class/default.tmpl.js": [
72715
72739
  null,
72716
72740
  null,
72717
72741
  "js",
72718
72742
  "qx"
72719
72743
  ],
72720
- "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
72744
+ "qx/tool/cli/templates/class/header.tmpl.js": [
72721
72745
  null,
72722
72746
  null,
72723
72747
  "js",
72724
72748
  "qx"
72725
72749
  ],
72726
- "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
72750
+ "qx/tool/cli/templates/class/interface.tmpl.js": [
72727
72751
  null,
72728
72752
  null,
72729
72753
  "js",
72730
72754
  "qx"
72731
72755
  ],
72732
- "qx/tool/cli/templates/class/default.tmpl.js": [
72756
+ "qx/tool/cli/templates/class/mixin.tmpl.js": [
72733
72757
  null,
72734
72758
  null,
72735
72759
  "js",
72736
72760
  "qx"
72737
72761
  ],
72738
- "qx/tool/cli/templates/class/header.tmpl.js": [
72762
+ "qx/tool/cli/templates/class/singleton.tmpl.js": [
72739
72763
  null,
72740
72764
  null,
72741
72765
  "js",
72742
72766
  "qx"
72743
72767
  ],
72744
- "qx/tool/cli/templates/class/mixin.tmpl.js": [
72768
+ "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
72745
72769
  null,
72746
72770
  null,
72747
72771
  "js",
72748
72772
  "qx"
72749
72773
  ],
72750
- "qx/tool/cli/templates/class/interface.tmpl.js": [
72774
+ "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
72751
72775
  null,
72752
72776
  null,
72753
72777
  "js",
72754
72778
  "qx"
72755
72779
  ],
72756
- "qx/tool/cli/templates/class/singleton.tmpl.js": [
72780
+ "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
72757
72781
  null,
72758
72782
  null,
72759
72783
  "js",
@@ -72765,10 +72789,10 @@ qx.$$packageData['0'] = {
72765
72789
  "html",
72766
72790
  "qx"
72767
72791
  ],
72768
- "qx/tool/website/build/diagnostics/dependson.js": [
72792
+ "qx/tool/website/build/diagnostics/requiredby.html": [
72769
72793
  null,
72770
72794
  null,
72771
- "js",
72795
+ "html",
72772
72796
  "qx"
72773
72797
  ],
72774
72798
  "qx/tool/website/build/diagnostics/requiredby.js": [
@@ -72777,16 +72801,10 @@ qx.$$packageData['0'] = {
72777
72801
  "js",
72778
72802
  "qx"
72779
72803
  ],
72780
- "qx/tool/website/build/diagnostics/requiredby.html": [
72781
- null,
72782
- null,
72783
- "html",
72784
- "qx"
72785
- ],
72786
- "qx/tool/website/build/assets/abel.css": [
72804
+ "qx/tool/website/build/diagnostics/dependson.js": [
72787
72805
  null,
72788
72806
  null,
72789
- "css",
72807
+ "js",
72790
72808
  "qx"
72791
72809
  ],
72792
72810
  "qx/tool/website/build/assets/bluebird.min.js": [
@@ -72795,7 +72813,7 @@ qx.$$packageData['0'] = {
72795
72813
  "js",
72796
72814
  "qx"
72797
72815
  ],
72798
- "qx/tool/website/build/assets/bootstrap.min.css": [
72816
+ "qx/tool/website/build/assets/abel.css": [
72799
72817
  null,
72800
72818
  null,
72801
72819
  "css",
@@ -72807,10 +72825,10 @@ qx.$$packageData['0'] = {
72807
72825
  "css",
72808
72826
  "qx"
72809
72827
  ],
72810
- "qx/tool/website/build/assets/buttons.js": [
72828
+ "qx/tool/website/build/assets/bootstrap.min.css": [
72811
72829
  null,
72812
72830
  null,
72813
- "js",
72831
+ "css",
72814
72832
  "qx"
72815
72833
  ],
72816
72834
  "qx/tool/website/build/assets/bootstrap.min.css.map": [
@@ -72819,18 +72837,18 @@ qx.$$packageData['0'] = {
72819
72837
  "map",
72820
72838
  "qx"
72821
72839
  ],
72840
+ "qx/tool/website/build/assets/buttons.js": [
72841
+ null,
72842
+ null,
72843
+ "js",
72844
+ "qx"
72845
+ ],
72822
72846
  "qx/tool/website/build/assets/favicon.png": [
72823
72847
  32,
72824
72848
  32,
72825
72849
  "png",
72826
72850
  "qx"
72827
72851
  ],
72828
- "qx/tool/website/build/assets/jquery.js": [
72829
- null,
72830
- null,
72831
- "js",
72832
- "qx"
72833
- ],
72834
72852
  "qx/tool/website/build/assets/fontawesome-all.js": [
72835
72853
  null,
72836
72854
  null,
@@ -72843,6 +72861,12 @@ qx.$$packageData['0'] = {
72843
72861
  "svg",
72844
72862
  "qx"
72845
72863
  ],
72864
+ "qx/tool/website/build/assets/jquery.js": [
72865
+ null,
72866
+ null,
72867
+ "js",
72868
+ "qx"
72869
+ ],
72846
72870
  "qx/tool/website/build/assets/qx-api.png": [
72847
72871
  1144,
72848
72872
  640,
@@ -72873,22 +72897,28 @@ qx.$$packageData['0'] = {
72873
72897
  "js",
72874
72898
  "qx"
72875
72899
  ],
72876
- "qx/tool/website/src/diagnostics/dependson.html": [
72900
+ "qx/tool/website/src/scripts/serve.js": [
72877
72901
  null,
72878
72902
  null,
72879
- "html",
72903
+ "js",
72880
72904
  "qx"
72881
72905
  ],
72882
- "qx/tool/website/src/diagnostics/requiredby.html": [
72906
+ "qx/tool/website/src/diagnostics/dependson.js": [
72907
+ null,
72908
+ null,
72909
+ "js",
72910
+ "qx"
72911
+ ],
72912
+ "qx/tool/website/src/diagnostics/dependson.html": [
72883
72913
  null,
72884
72914
  null,
72885
72915
  "html",
72886
72916
  "qx"
72887
72917
  ],
72888
- "qx/tool/website/src/diagnostics/dependson.js": [
72918
+ "qx/tool/website/src/diagnostics/requiredby.html": [
72889
72919
  null,
72890
72920
  null,
72891
- "js",
72921
+ "html",
72892
72922
  "qx"
72893
72923
  ],
72894
72924
  "qx/tool/website/src/diagnostics/requiredby.js": [
@@ -72903,16 +72933,16 @@ qx.$$packageData['0'] = {
72903
72933
  "css",
72904
72934
  "qx"
72905
72935
  ],
72906
- "qx/tool/website/src/assets/bluebird.min.js": [
72936
+ "qx/tool/website/src/assets/bootstrap.css": [
72907
72937
  null,
72908
72938
  null,
72909
- "js",
72939
+ "css",
72910
72940
  "qx"
72911
72941
  ],
72912
- "qx/tool/website/src/assets/bootstrap.css": [
72942
+ "qx/tool/website/src/assets/bluebird.min.js": [
72913
72943
  null,
72914
72944
  null,
72915
- "css",
72945
+ "js",
72916
72946
  "qx"
72917
72947
  ],
72918
72948
  "qx/tool/website/src/assets/bootstrap.min.css.map": [
@@ -72927,12 +72957,6 @@ qx.$$packageData['0'] = {
72927
72957
  "css",
72928
72958
  "qx"
72929
72959
  ],
72930
- "qx/tool/website/src/assets/favicon.png": [
72931
- 32,
72932
- 32,
72933
- "png",
72934
- "qx"
72935
- ],
72936
72960
  "qx/tool/website/src/assets/buttons.js": [
72937
72961
  null,
72938
72962
  null,
@@ -72945,10 +72969,10 @@ qx.$$packageData['0'] = {
72945
72969
  "js",
72946
72970
  "qx"
72947
72971
  ],
72948
- "qx/tool/website/src/assets/logo.svg": [
72949
- 512,
72950
- 145,
72951
- "svg",
72972
+ "qx/tool/website/src/assets/favicon.png": [
72973
+ 32,
72974
+ 32,
72975
+ "png",
72952
72976
  "qx"
72953
72977
  ],
72954
72978
  "qx/tool/website/src/assets/jquery.js": [
@@ -72957,10 +72981,10 @@ qx.$$packageData['0'] = {
72957
72981
  "js",
72958
72982
  "qx"
72959
72983
  ],
72960
- "qx/tool/website/src/assets/qx-api.png": [
72961
- 1144,
72962
- 640,
72963
- "png",
72984
+ "qx/tool/website/src/assets/logo.svg": [
72985
+ 512,
72986
+ 145,
72987
+ "svg",
72964
72988
  "qx"
72965
72989
  ],
72966
72990
  "qx/tool/website/src/assets/qx-ide.png": [
@@ -72969,28 +72993,22 @@ qx.$$packageData['0'] = {
72969
72993
  "png",
72970
72994
  "qx"
72971
72995
  ],
72972
- "qx/tool/website/src/assets/qx-oo.png": [
72973
- 870,
72974
- 502,
72975
- "png",
72976
- "qx"
72977
- ],
72978
72996
  "qx/tool/website/src/assets/qx-white.svg": [
72979
72997
  64,
72980
72998
  65,
72981
72999
  "svg",
72982
73000
  "qx"
72983
73001
  ],
72984
- "qx/tool/website/src/scripts/serve.js": [
72985
- null,
72986
- null,
72987
- "js",
73002
+ "qx/tool/website/src/assets/qx-api.png": [
73003
+ 1144,
73004
+ 640,
73005
+ "png",
72988
73006
  "qx"
72989
73007
  ],
72990
- "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
72991
- null,
72992
- null,
72993
- "tmpl",
73008
+ "qx/tool/website/src/assets/qx-oo.png": [
73009
+ 870,
73010
+ 502,
73011
+ "png",
72994
73012
  "qx"
72995
73013
  ],
72996
73014
  "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
@@ -73011,19 +73029,19 @@ qx.$$packageData['0'] = {
73011
73029
  "md",
73012
73030
  "qx"
73013
73031
  ],
73014
- "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
73032
+ "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
73015
73033
  null,
73016
73034
  null,
73017
73035
  "tmpl",
73018
73036
  "qx"
73019
73037
  ],
73020
- "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
73038
+ "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
73021
73039
  null,
73022
73040
  null,
73023
- "json",
73041
+ "tmpl",
73024
73042
  "qx"
73025
73043
  ],
73026
- "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
73044
+ "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
73027
73045
  null,
73028
73046
  null,
73029
73047
  "json",
@@ -73035,6 +73053,12 @@ qx.$$packageData['0'] = {
73035
73053
  "md",
73036
73054
  "qx"
73037
73055
  ],
73056
+ "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
73057
+ null,
73058
+ null,
73059
+ "json",
73060
+ "qx"
73061
+ ],
73038
73062
  "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
73039
73063
  null,
73040
73064
  null,
@@ -73047,16 +73071,16 @@ qx.$$packageData['0'] = {
73047
73071
  "json",
73048
73072
  "qx"
73049
73073
  ],
73050
- "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
73074
+ "qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
73051
73075
  null,
73052
73076
  null,
73053
- "json",
73077
+ "txt",
73054
73078
  "qx"
73055
73079
  ],
73056
- "qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
73080
+ "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
73057
73081
  null,
73058
73082
  null,
73059
- "txt",
73083
+ "json",
73060
73084
  "qx"
73061
73085
  ],
73062
73086
  "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
@@ -73131,18 +73155,6 @@ qx.$$packageData['0'] = {
73131
73155
  "txt",
73132
73156
  "qx"
73133
73157
  ],
73134
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
73135
- null,
73136
- null,
73137
- "js",
73138
- "qx"
73139
- ],
73140
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
73141
- null,
73142
- null,
73143
- "js",
73144
- "qx"
73145
- ],
73146
73158
  "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
73147
73159
  180,
73148
73160
  180,
@@ -73167,13 +73179,13 @@ qx.$$packageData['0'] = {
73167
73179
  "png",
73168
73180
  "qx"
73169
73181
  ],
73170
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
73182
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
73171
73183
  null,
73172
73184
  null,
73173
73185
  "js",
73174
73186
  "qx"
73175
73187
  ],
73176
- "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": [
73177
73189
  null,
73178
73190
  null,
73179
73191
  "js",
@@ -73197,13 +73209,13 @@ qx.$$packageData['0'] = {
73197
73209
  "png",
73198
73210
  "qx"
73199
73211
  ],
73200
- "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
73212
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
73201
73213
  null,
73202
73214
  null,
73203
73215
  "js",
73204
73216
  "qx"
73205
73217
  ],
73206
- "qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
73218
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
73207
73219
  null,
73208
73220
  null,
73209
73221
  "js",
@@ -73215,43 +73227,43 @@ qx.$$packageData['0'] = {
73215
73227
  "tmpl",
73216
73228
  "qx"
73217
73229
  ],
73218
- "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
73230
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
73219
73231
  null,
73220
73232
  null,
73221
73233
  "js",
73222
73234
  "qx"
73223
73235
  ],
73224
- "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
73225
- 32,
73226
- 32,
73227
- "png",
73228
- "qx"
73229
- ],
73230
- "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73236
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.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/test/DemoTest.tmpl.js": [
73242
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.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/Appearance.tmpl.js": [
73248
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/__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/Color.tmpl.js": [
73254
+ "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
73255
+ 32,
73256
+ 32,
73257
+ "png",
73258
+ "qx"
73259
+ ],
73260
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
73249
73261
  null,
73250
73262
  null,
73251
73263
  "js",
73252
73264
  "qx"
73253
73265
  ],
73254
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
73266
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
73255
73267
  null,
73256
73268
  null,
73257
73269
  "js",
@@ -73269,55 +73281,61 @@ qx.$$packageData['0'] = {
73269
73281
  "js",
73270
73282
  "qx"
73271
73283
  ],
73272
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73284
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
73273
73285
  null,
73274
73286
  null,
73275
73287
  "js",
73276
73288
  "qx"
73277
73289
  ],
73278
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73290
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
73279
73291
  null,
73280
73292
  null,
73281
73293
  "js",
73282
73294
  "qx"
73283
73295
  ],
73284
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73296
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73285
73297
  null,
73286
73298
  null,
73287
- "js",
73299
+ "tmpl",
73288
73300
  "qx"
73289
73301
  ],
73290
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73302
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
73291
73303
  null,
73292
73304
  null,
73293
- "tmpl",
73305
+ "scss",
73294
73306
  "qx"
73295
73307
  ],
73296
- "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
73308
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
73309
+ null,
73310
+ null,
73311
+ "scss",
73312
+ "qx"
73313
+ ],
73314
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73297
73315
  null,
73298
73316
  null,
73299
73317
  "js",
73300
73318
  "qx"
73301
73319
  ],
73302
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
73320
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73303
73321
  null,
73304
73322
  null,
73305
- "scss",
73323
+ "js",
73306
73324
  "qx"
73307
73325
  ],
73308
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
73326
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73309
73327
  null,
73310
73328
  null,
73311
- "scss",
73329
+ "js",
73312
73330
  "qx"
73313
73331
  ],
73314
- "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73332
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
73315
73333
  null,
73316
73334
  null,
73317
73335
  "js",
73318
73336
  "qx"
73319
73337
  ],
73320
- "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73338
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73321
73339
  null,
73322
73340
  null,
73323
73341
  "js",
@@ -73335,13 +73353,13 @@ qx.$$packageData['0'] = {
73335
73353
  "js",
73336
73354
  "qx"
73337
73355
  ],
73338
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73356
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73339
73357
  null,
73340
73358
  null,
73341
73359
  "js",
73342
73360
  "qx"
73343
73361
  ],
73344
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73362
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73345
73363
  null,
73346
73364
  null,
73347
73365
  "js",
@@ -73353,6 +73371,12 @@ qx.$$packageData['0'] = {
73353
73371
  "js",
73354
73372
  "qx"
73355
73373
  ],
73374
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73375
+ null,
73376
+ null,
73377
+ "js",
73378
+ "qx"
73379
+ ],
73356
73380
  "qx/tool/cli/templates/skeleton/package/source/class/custom/resource/custom/test.png": [
73357
73381
  32,
73358
73382
  32,