@qooxdoo/framework 7.4.2 → 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 (33) hide show
  1. package/Manifest.json +1 -1
  2. package/lib/compiler/compile-info.json +86 -86
  3. package/lib/compiler/index.js +317 -293
  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/form/Form.js +1 -1
  31. package/source/class/qx/ui/list/List.js +1 -1
  32. package/source/class/qx/ui/mobile/form/Form.js +2 -2
  33. package/source/class/qx/util/OOUtil.js +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.2",
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.2",
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.2";
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 {
@@ -72189,15 +72213,15 @@ qx.$$packageData['0'] = {
72189
72213
  "png",
72190
72214
  "qx"
72191
72215
  ],
72192
- "qx/decoration/Simple/checkbox/checked.png": [
72193
- 6,
72216
+ "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72194
72217
  6,
72218
+ 2,
72195
72219
  "png",
72196
72220
  "qx"
72197
72221
  ],
72198
- "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72222
+ "qx/decoration/Simple/checkbox/checked.png": [
72223
+ 6,
72199
72224
  6,
72200
- 2,
72201
72225
  "png",
72202
72226
  "qx"
72203
72227
  ],
@@ -72207,22 +72231,28 @@ qx.$$packageData['0'] = {
72207
72231
  "png",
72208
72232
  "qx"
72209
72233
  ],
72210
- "qx/decoration/Simple/colorselector/brightness-field.png": [
72234
+ "qx/decoration/Simple/cursors/alias.gif": [
72211
72235
  19,
72212
- 256,
72213
- "png",
72236
+ 15,
72237
+ "gif",
72214
72238
  "qx"
72215
72239
  ],
72216
- "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72217
- 35,
72218
- 11,
72240
+ "qx/decoration/Simple/cursors/nodrop.gif": [
72241
+ 20,
72242
+ 20,
72219
72243
  "gif",
72220
72244
  "qx"
72221
72245
  ],
72222
- "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72223
- 256,
72224
- 256,
72225
- "jpg",
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",
72226
72256
  "qx"
72227
72257
  ],
72228
72258
  "qx/decoration/Simple/arrows/down-invert.gif": [
@@ -72237,12 +72267,6 @@ qx.$$packageData['0'] = {
72237
72267
  "gif",
72238
72268
  "qx"
72239
72269
  ],
72240
- "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72241
- 11,
72242
- 11,
72243
- "gif",
72244
- "qx"
72245
- ],
72246
72270
  "qx/decoration/Simple/arrows/down.gif": [
72247
72271
  7,
72248
72272
  4,
@@ -72255,7 +72279,7 @@ qx.$$packageData['0'] = {
72255
72279
  "gif",
72256
72280
  "qx"
72257
72281
  ],
72258
- "qx/decoration/Simple/arrows/left-invert.gif": [
72282
+ "qx/decoration/Simple/arrows/left.gif": [
72259
72283
  4,
72260
72284
  7,
72261
72285
  "gif",
@@ -72267,19 +72291,19 @@ qx.$$packageData['0'] = {
72267
72291
  "gif",
72268
72292
  "qx"
72269
72293
  ],
72270
- "qx/decoration/Simple/arrows/left.gif": [
72294
+ "qx/decoration/Simple/arrows/left-invert.gif": [
72271
72295
  4,
72272
72296
  7,
72273
72297
  "gif",
72274
72298
  "qx"
72275
72299
  ],
72276
- "qx/decoration/Simple/arrows/right-invert.gif": [
72300
+ "qx/decoration/Simple/arrows/right.gif": [
72277
72301
  4,
72278
72302
  7,
72279
72303
  "gif",
72280
72304
  "qx"
72281
72305
  ],
72282
- "qx/decoration/Simple/arrows/right.gif": [
72306
+ "qx/decoration/Simple/arrows/right-invert.gif": [
72283
72307
  4,
72284
72308
  7,
72285
72309
  "gif",
@@ -72291,33 +72315,27 @@ qx.$$packageData['0'] = {
72291
72315
  "gif",
72292
72316
  "qx"
72293
72317
  ],
72294
- "qx/decoration/Simple/arrows/up.gif": [
72295
- 7,
72296
- 4,
72297
- "gif",
72298
- "qx"
72299
- ],
72300
72318
  "qx/decoration/Simple/arrows/up-small.gif": [
72301
72319
  5,
72302
72320
  3,
72303
72321
  "gif",
72304
72322
  "qx"
72305
72323
  ],
72306
- "qx/decoration/Simple/menu/checkbox-invert.gif": [
72307
- 16,
72324
+ "qx/decoration/Simple/arrows/up.gif": [
72308
72325
  7,
72326
+ 4,
72309
72327
  "gif",
72310
72328
  "qx"
72311
72329
  ],
72312
- "qx/decoration/Simple/menu/checkbox.gif": [
72330
+ "qx/decoration/Simple/menu/checkbox-invert.gif": [
72313
72331
  16,
72314
72332
  7,
72315
72333
  "gif",
72316
72334
  "qx"
72317
72335
  ],
72318
- "qx/decoration/Simple/menu/radiobutton-invert.gif": [
72336
+ "qx/decoration/Simple/menu/checkbox.gif": [
72319
72337
  16,
72320
- 5,
72338
+ 7,
72321
72339
  "gif",
72322
72340
  "qx"
72323
72341
  ],
@@ -72327,21 +72345,9 @@ qx.$$packageData['0'] = {
72327
72345
  "gif",
72328
72346
  "qx"
72329
72347
  ],
72330
- "qx/decoration/Simple/cursors/alias.gif": [
72331
- 19,
72332
- 15,
72333
- "gif",
72334
- "qx"
72335
- ],
72336
- "qx/decoration/Simple/cursors/nodrop.gif": [
72337
- 20,
72338
- 20,
72339
- "gif",
72340
- "qx"
72341
- ],
72342
- "qx/decoration/Simple/cursors/copy.gif": [
72343
- 19,
72344
- 15,
72348
+ "qx/decoration/Simple/menu/radiobutton-invert.gif": [
72349
+ 16,
72350
+ 5,
72345
72351
  "gif",
72346
72352
  "qx"
72347
72353
  ],
@@ -72351,25 +72357,19 @@ qx.$$packageData['0'] = {
72351
72357
  "png",
72352
72358
  "qx"
72353
72359
  ],
72354
- "qx/decoration/Simple/cursors/move.gif": [
72355
- 13,
72356
- 9,
72357
- "gif",
72358
- "qx"
72359
- ],
72360
72360
  "qx/decoration/Simple/splitpane/knob-vertical.png": [
72361
72361
  8,
72362
72362
  1,
72363
72363
  "png",
72364
72364
  "qx"
72365
72365
  ],
72366
- "qx/decoration/Simple/table/ascending.png": [
72366
+ "qx/decoration/Simple/table/ascending-invert.png": [
72367
72367
  10,
72368
72368
  10,
72369
72369
  "png",
72370
72370
  "qx"
72371
72371
  ],
72372
- "qx/decoration/Simple/table/ascending-invert.png": [
72372
+ "qx/decoration/Simple/table/ascending.png": [
72373
72373
  10,
72374
72374
  10,
72375
72375
  "png",
@@ -72387,109 +72387,133 @@ qx.$$packageData['0'] = {
72387
72387
  "png",
72388
72388
  "qx"
72389
72389
  ],
72390
- "qx/decoration/Simple/table/descending-invert.png": [
72390
+ "qx/decoration/Simple/table/descending.png": [
72391
72391
  10,
72392
72392
  10,
72393
72393
  "png",
72394
72394
  "qx"
72395
72395
  ],
72396
- "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": [
72397
72403
  10,
72398
72404
  10,
72399
72405
  "png",
72400
72406
  "qx"
72401
72407
  ],
72402
- "qx/decoration/Simple/table/select-column-order.png": [
72408
+ "qx/decoration/Simple/tabview/close.gif": [
72403
72409
  10,
72404
72410
  9,
72405
- "png",
72411
+ "gif",
72406
72412
  "qx"
72407
72413
  ],
72408
- "qx/decoration/Simple/treevirtual/cross.gif": [
72414
+ "qx/decoration/Simple/colorselector/brightness-field.png": [
72409
72415
  19,
72410
- 16,
72416
+ 256,
72417
+ "png",
72418
+ "qx"
72419
+ ],
72420
+ "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72421
+ 35,
72422
+ 11,
72411
72423
  "gif",
72412
72424
  "qx"
72413
72425
  ],
72414
- "qx/decoration/Simple/tabview/close.gif": [
72415
- 10,
72416
- 9,
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,
72417
72435
  "gif",
72418
72436
  "qx"
72419
72437
  ],
72420
- "qx/decoration/Simple/treevirtual/cross_plus.gif": [
72438
+ "qx/decoration/Simple/tree/minus.gif": [
72421
72439
  19,
72422
72440
  16,
72423
72441
  "gif",
72424
72442
  "qx"
72425
72443
  ],
72426
- "qx/decoration/Simple/treevirtual/end.gif": [
72444
+ "qx/decoration/Simple/tree/plus.gif": [
72427
72445
  19,
72428
72446
  16,
72429
72447
  "gif",
72430
72448
  "qx"
72431
72449
  ],
72432
- "qx/decoration/Simple/treevirtual/end_minus.gif": [
72450
+ "qx/decoration/Simple/treevirtual/cross.gif": [
72433
72451
  19,
72434
72452
  16,
72435
72453
  "gif",
72436
72454
  "qx"
72437
72455
  ],
72438
- "qx/decoration/Simple/treevirtual/end_plus.gif": [
72456
+ "qx/decoration/Simple/treevirtual/cross_minus.gif": [
72439
72457
  19,
72440
72458
  16,
72441
72459
  "gif",
72442
72460
  "qx"
72443
72461
  ],
72444
- "qx/decoration/Simple/treevirtual/line.gif": [
72462
+ "qx/decoration/Simple/treevirtual/cross_plus.gif": [
72445
72463
  19,
72446
72464
  16,
72447
72465
  "gif",
72448
72466
  "qx"
72449
72467
  ],
72450
- "qx/decoration/Simple/treevirtual/only_minus.gif": [
72468
+ "qx/decoration/Simple/treevirtual/end.gif": [
72451
72469
  19,
72452
72470
  16,
72453
72471
  "gif",
72454
72472
  "qx"
72455
72473
  ],
72456
- "qx/decoration/Simple/treevirtual/only_plus.gif": [
72474
+ "qx/decoration/Simple/treevirtual/end_plus.gif": [
72457
72475
  19,
72458
72476
  16,
72459
72477
  "gif",
72460
72478
  "qx"
72461
72479
  ],
72462
- "qx/decoration/Simple/treevirtual/start.gif": [
72480
+ "qx/decoration/Simple/treevirtual/line.gif": [
72463
72481
  19,
72464
72482
  16,
72465
72483
  "gif",
72466
72484
  "qx"
72467
72485
  ],
72468
- "qx/decoration/Simple/treevirtual/cross_minus.gif": [
72486
+ "qx/decoration/Simple/treevirtual/end_minus.gif": [
72469
72487
  19,
72470
72488
  16,
72471
72489
  "gif",
72472
72490
  "qx"
72473
72491
  ],
72474
- "qx/decoration/Simple/treevirtual/start_minus.gif": [
72492
+ "qx/decoration/Simple/treevirtual/only_minus.gif": [
72475
72493
  19,
72476
72494
  16,
72477
72495
  "gif",
72478
72496
  "qx"
72479
72497
  ],
72480
- "qx/decoration/Simple/treevirtual/start_plus.gif": [
72498
+ "qx/decoration/Simple/treevirtual/only_plus.gif": [
72481
72499
  19,
72482
72500
  16,
72483
72501
  "gif",
72484
72502
  "qx"
72485
72503
  ],
72486
- "qx/decoration/Simple/tree/minus.gif": [
72504
+ "qx/decoration/Simple/treevirtual/start.gif": [
72487
72505
  19,
72488
72506
  16,
72489
72507
  "gif",
72490
72508
  "qx"
72491
72509
  ],
72492
- "qx/decoration/Simple/tree/plus.gif": [
72510
+ "qx/decoration/Simple/treevirtual/start_minus.gif": [
72511
+ 19,
72512
+ 16,
72513
+ "gif",
72514
+ "qx"
72515
+ ],
72516
+ "qx/decoration/Simple/treevirtual/start_plus.gif": [
72493
72517
  19,
72494
72518
  16,
72495
72519
  "gif",
@@ -72507,25 +72531,25 @@ qx.$$packageData['0'] = {
72507
72531
  "gif",
72508
72532
  "qx"
72509
72533
  ],
72510
- "qx/decoration/Simple/window/maximize.gif": [
72534
+ "qx/decoration/Simple/window/maximize-white.gif": [
72511
72535
  9,
72512
72536
  9,
72513
72537
  "gif",
72514
72538
  "qx"
72515
72539
  ],
72516
- "qx/decoration/Simple/window/maximize-white.gif": [
72540
+ "qx/decoration/Simple/window/maximize.gif": [
72517
72541
  9,
72518
72542
  9,
72519
72543
  "gif",
72520
72544
  "qx"
72521
72545
  ],
72522
- "qx/decoration/Simple/window/minimize.gif": [
72546
+ "qx/decoration/Simple/window/minimize-white.gif": [
72523
72547
  9,
72524
72548
  9,
72525
72549
  "gif",
72526
72550
  "qx"
72527
72551
  ],
72528
- "qx/decoration/Simple/window/minimize-white.gif": [
72552
+ "qx/decoration/Simple/window/minimize.gif": [
72529
72553
  9,
72530
72554
  9,
72531
72555
  "gif",
@@ -72573,19 +72597,19 @@ qx.$$packageData['0'] = {
72573
72597
  "",
72574
72598
  "qx"
72575
72599
  ],
72576
- "qx/tool/schema/compile-1-0-0.json": [
72600
+ "qx/tool/website/.gitignore": [
72577
72601
  null,
72578
72602
  null,
72579
- "json",
72603
+ "",
72580
72604
  "qx"
72581
72605
  ],
72582
- "qx/tool/schema/qooxdoo-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",
@@ -72597,22 +72621,22 @@ qx.$$packageData['0'] = {
72597
72621
  "json",
72598
72622
  "qx"
72599
72623
  ],
72600
- "qx/tool/website/.gitignore": [
72624
+ "qx/tool/schema/qooxdoo-1-0-0.json": [
72601
72625
  null,
72602
72626
  null,
72603
- "",
72627
+ "json",
72604
72628
  "qx"
72605
72629
  ],
72606
- "qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt": [
72630
+ "qx/tool/cli/templates/template_vars.js": [
72607
72631
  null,
72608
72632
  null,
72609
- "txt",
72633
+ "js",
72610
72634
  "qx"
72611
72635
  ],
72612
- "qx/tool/cli/templates/template_vars.js": [
72636
+ "qx/tool/cli/templates/TypeScriptWriter-base_declaration.txt": [
72613
72637
  null,
72614
72638
  null,
72615
- "js",
72639
+ "txt",
72616
72640
  "qx"
72617
72641
  ],
72618
72642
  "qx/tool/website/build/404.html": [
@@ -72663,18 +72687,18 @@ qx.$$packageData['0'] = {
72663
72687
  "html",
72664
72688
  "qx"
72665
72689
  ],
72666
- "qx/tool/website/partials/icon-github.svg": [
72667
- 16,
72668
- 16,
72669
- "svg",
72670
- "qx"
72671
- ],
72672
72690
  "qx/tool/website/partials/icon-github.html": [
72673
72691
  null,
72674
72692
  null,
72675
72693
  "html",
72676
72694
  "qx"
72677
72695
  ],
72696
+ "qx/tool/website/partials/icon-github.svg": [
72697
+ 16,
72698
+ 16,
72699
+ "svg",
72700
+ "qx"
72701
+ ],
72678
72702
  "qx/tool/website/partials/icon-twitter.html": [
72679
72703
  null,
72680
72704
  null,
@@ -72687,12 +72711,6 @@ qx.$$packageData['0'] = {
72687
72711
  "svg",
72688
72712
  "qx"
72689
72713
  ],
72690
- "qx/tool/website/sass/qooxdoo.scss": [
72691
- null,
72692
- null,
72693
- "scss",
72694
- "qx"
72695
- ],
72696
72714
  "qx/tool/website/src/404.html": [
72697
72715
  null,
72698
72716
  null,
@@ -72711,64 +72729,64 @@ qx.$$packageData['0'] = {
72711
72729
  "html",
72712
72730
  "qx"
72713
72731
  ],
72714
- "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
72732
+ "qx/tool/website/sass/qooxdoo.scss": [
72715
72733
  null,
72716
72734
  null,
72717
- "js",
72735
+ "scss",
72718
72736
  "qx"
72719
72737
  ],
72720
- "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
72738
+ "qx/tool/cli/templates/class/default.tmpl.js": [
72721
72739
  null,
72722
72740
  null,
72723
72741
  "js",
72724
72742
  "qx"
72725
72743
  ],
72726
- "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
72744
+ "qx/tool/cli/templates/class/header.tmpl.js": [
72727
72745
  null,
72728
72746
  null,
72729
72747
  "js",
72730
72748
  "qx"
72731
72749
  ],
72732
- "qx/tool/cli/templates/class/default.tmpl.js": [
72750
+ "qx/tool/cli/templates/class/interface.tmpl.js": [
72733
72751
  null,
72734
72752
  null,
72735
72753
  "js",
72736
72754
  "qx"
72737
72755
  ],
72738
- "qx/tool/cli/templates/class/header.tmpl.js": [
72756
+ "qx/tool/cli/templates/class/mixin.tmpl.js": [
72739
72757
  null,
72740
72758
  null,
72741
72759
  "js",
72742
72760
  "qx"
72743
72761
  ],
72744
- "qx/tool/cli/templates/class/interface.tmpl.js": [
72762
+ "qx/tool/cli/templates/class/singleton.tmpl.js": [
72745
72763
  null,
72746
72764
  null,
72747
72765
  "js",
72748
72766
  "qx"
72749
72767
  ],
72750
- "qx/tool/cli/templates/class/singleton.tmpl.js": [
72768
+ "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
72751
72769
  null,
72752
72770
  null,
72753
72771
  "js",
72754
72772
  "qx"
72755
72773
  ],
72756
- "qx/tool/cli/templates/class/mixin.tmpl.js": [
72774
+ "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
72757
72775
  null,
72758
72776
  null,
72759
72777
  "js",
72760
72778
  "qx"
72761
72779
  ],
72762
- "qx/tool/website/build/diagnostics/dependson.html": [
72780
+ "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
72763
72781
  null,
72764
72782
  null,
72765
- "html",
72783
+ "js",
72766
72784
  "qx"
72767
72785
  ],
72768
- "qx/tool/website/build/diagnostics/dependson.js": [
72786
+ "qx/tool/website/build/diagnostics/dependson.html": [
72769
72787
  null,
72770
72788
  null,
72771
- "js",
72789
+ "html",
72772
72790
  "qx"
72773
72791
  ],
72774
72792
  "qx/tool/website/build/diagnostics/requiredby.html": [
@@ -72783,10 +72801,10 @@ qx.$$packageData['0'] = {
72783
72801
  "js",
72784
72802
  "qx"
72785
72803
  ],
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,6 +72825,12 @@ qx.$$packageData['0'] = {
72807
72825
  "css",
72808
72826
  "qx"
72809
72827
  ],
72828
+ "qx/tool/website/build/assets/bootstrap.min.css": [
72829
+ null,
72830
+ null,
72831
+ "css",
72832
+ "qx"
72833
+ ],
72810
72834
  "qx/tool/website/build/assets/bootstrap.min.css.map": [
72811
72835
  null,
72812
72836
  null,
@@ -72831,10 +72855,10 @@ qx.$$packageData['0'] = {
72831
72855
  "js",
72832
72856
  "qx"
72833
72857
  ],
72834
- "qx/tool/website/build/assets/qx-api.png": [
72835
- 1144,
72836
- 640,
72837
- "png",
72858
+ "qx/tool/website/build/assets/logo.svg": [
72859
+ 512,
72860
+ 145,
72861
+ "svg",
72838
72862
  "qx"
72839
72863
  ],
72840
72864
  "qx/tool/website/build/assets/jquery.js": [
@@ -72843,10 +72867,10 @@ qx.$$packageData['0'] = {
72843
72867
  "js",
72844
72868
  "qx"
72845
72869
  ],
72846
- "qx/tool/website/build/assets/logo.svg": [
72847
- 512,
72848
- 145,
72849
- "svg",
72870
+ "qx/tool/website/build/assets/qx-api.png": [
72871
+ 1144,
72872
+ 640,
72873
+ "png",
72850
72874
  "qx"
72851
72875
  ],
72852
72876
  "qx/tool/website/build/assets/qx-ide.png": [
@@ -72873,10 +72897,10 @@ 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
72906
  "qx/tool/website/src/diagnostics/dependson.js": [
@@ -72885,6 +72909,12 @@ qx.$$packageData['0'] = {
72885
72909
  "js",
72886
72910
  "qx"
72887
72911
  ],
72912
+ "qx/tool/website/src/diagnostics/dependson.html": [
72913
+ null,
72914
+ null,
72915
+ "html",
72916
+ "qx"
72917
+ ],
72888
72918
  "qx/tool/website/src/diagnostics/requiredby.html": [
72889
72919
  null,
72890
72920
  null,
@@ -72903,6 +72933,12 @@ qx.$$packageData['0'] = {
72903
72933
  "css",
72904
72934
  "qx"
72905
72935
  ],
72936
+ "qx/tool/website/src/assets/bootstrap.css": [
72937
+ null,
72938
+ null,
72939
+ "css",
72940
+ "qx"
72941
+ ],
72906
72942
  "qx/tool/website/src/assets/bluebird.min.js": [
72907
72943
  null,
72908
72944
  null,
@@ -72915,7 +72951,7 @@ qx.$$packageData['0'] = {
72915
72951
  "map",
72916
72952
  "qx"
72917
72953
  ],
72918
- "qx/tool/website/src/assets/bootstrap.css": [
72954
+ "qx/tool/website/src/assets/bootstrap.min.css": [
72919
72955
  null,
72920
72956
  null,
72921
72957
  "css",
@@ -72927,10 +72963,10 @@ qx.$$packageData['0'] = {
72927
72963
  "js",
72928
72964
  "qx"
72929
72965
  ],
72930
- "qx/tool/website/src/assets/bootstrap.min.css": [
72966
+ "qx/tool/website/src/assets/fontawesome-all.js": [
72931
72967
  null,
72932
72968
  null,
72933
- "css",
72969
+ "js",
72934
72970
  "qx"
72935
72971
  ],
72936
72972
  "qx/tool/website/src/assets/favicon.png": [
@@ -72945,67 +72981,49 @@ qx.$$packageData['0'] = {
72945
72981
  "js",
72946
72982
  "qx"
72947
72983
  ],
72948
- "qx/tool/website/src/assets/fontawesome-all.js": [
72949
- null,
72950
- null,
72951
- "js",
72952
- "qx"
72953
- ],
72954
72984
  "qx/tool/website/src/assets/logo.svg": [
72955
72985
  512,
72956
72986
  145,
72957
72987
  "svg",
72958
72988
  "qx"
72959
72989
  ],
72960
- "qx/tool/website/src/assets/qx-api.png": [
72961
- 1144,
72962
- 640,
72963
- "png",
72964
- "qx"
72965
- ],
72966
72990
  "qx/tool/website/src/assets/qx-ide.png": [
72967
72991
  3183,
72968
72992
  1752,
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/mobile/.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
- "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
73014
+ "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
72997
73015
  null,
72998
73016
  null,
72999
73017
  "json",
73000
73018
  "qx"
73001
73019
  ],
73002
- "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
73020
+ "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
73003
73021
  null,
73004
73022
  null,
73005
73023
  "json",
73006
73024
  "qx"
73007
73025
  ],
73008
- "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
73026
+ "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
73009
73027
  null,
73010
73028
  null,
73011
73029
  "md",
@@ -73017,109 +73035,109 @@ qx.$$packageData['0'] = {
73017
73035
  "tmpl",
73018
73036
  "qx"
73019
73037
  ],
73020
- "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
73038
+ "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
73039
+ null,
73040
+ null,
73041
+ "tmpl",
73042
+ "qx"
73043
+ ],
73044
+ "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
73021
73045
  null,
73022
73046
  null,
73023
73047
  "json",
73024
73048
  "qx"
73025
73049
  ],
73026
- "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
73050
+ "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
73027
73051
  null,
73028
73052
  null,
73029
73053
  "md",
73030
73054
  "qx"
73031
73055
  ],
73032
- "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
73056
+ "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
73033
73057
  null,
73034
73058
  null,
73035
73059
  "json",
73036
73060
  "qx"
73037
73061
  ],
73038
- "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
73062
+ "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
73039
73063
  null,
73040
73064
  null,
73041
73065
  "tmpl",
73042
73066
  "qx"
73043
73067
  ],
73044
- "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
73068
+ "qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
73045
73069
  null,
73046
73070
  null,
73047
73071
  "json",
73048
73072
  "qx"
73049
73073
  ],
73050
- "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
73074
+ "qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
73051
73075
  null,
73052
73076
  null,
73053
- "md",
73077
+ "txt",
73054
73078
  "qx"
73055
73079
  ],
73056
- "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
73080
+ "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
73057
73081
  null,
73058
73082
  null,
73059
73083
  "json",
73060
73084
  "qx"
73061
73085
  ],
73062
- "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
73086
+ "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
73063
73087
  null,
73064
73088
  null,
73065
73089
  "tmpl",
73066
73090
  "qx"
73067
73091
  ],
73068
- "qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
73092
+ "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
73069
73093
  null,
73070
73094
  null,
73071
73095
  "json",
73072
73096
  "qx"
73073
73097
  ],
73074
- "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
73098
+ "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
73075
73099
  null,
73076
73100
  null,
73077
73101
  "json",
73078
73102
  "qx"
73079
73103
  ],
73080
- "qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
73104
+ "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
73081
73105
  null,
73082
73106
  null,
73083
- "txt",
73107
+ "md",
73084
73108
  "qx"
73085
73109
  ],
73086
- "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
73110
+ "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
73087
73111
  null,
73088
73112
  null,
73089
73113
  "html",
73090
73114
  "qx"
73091
73115
  ],
73092
- "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
73116
+ "qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
73093
73117
  null,
73094
73118
  null,
73095
73119
  "html",
73096
73120
  "qx"
73097
73121
  ],
73098
- "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
73099
- null,
73100
- null,
73101
- "txt",
73102
- "qx"
73103
- ],
73104
- "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
73122
+ "qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
73105
73123
  null,
73106
73124
  null,
73107
73125
  "txt",
73108
73126
  "qx"
73109
73127
  ],
73110
- "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
73128
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
73111
73129
  null,
73112
73130
  null,
73113
73131
  "html",
73114
73132
  "qx"
73115
73133
  ],
73116
- "qx/tool/cli/templates/skeleton/desktop/source/boot/nojs.tmpl.html": [
73134
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
73117
73135
  null,
73118
73136
  null,
73119
73137
  "html",
73120
73138
  "qx"
73121
73139
  ],
73122
- "qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
73140
+ "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
73123
73141
  null,
73124
73142
  null,
73125
73143
  "txt",
@@ -73131,49 +73149,31 @@ qx.$$packageData['0'] = {
73131
73149
  "txt",
73132
73150
  "qx"
73133
73151
  ],
73134
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
73152
+ "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
73135
73153
  null,
73136
73154
  null,
73137
- "js",
73155
+ "txt",
73138
73156
  "qx"
73139
73157
  ],
73140
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
73141
- null,
73142
- null,
73143
- "js",
73158
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
73159
+ 180,
73160
+ 180,
73161
+ "png",
73144
73162
  "qx"
73145
73163
  ],
73146
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
73164
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/favicon.png": [
73147
73165
  32,
73148
73166
  32,
73149
73167
  "png",
73150
73168
  "qx"
73151
73169
  ],
73152
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
73153
- 180,
73154
- 180,
73155
- "png",
73156
- "qx"
73157
- ],
73158
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
73170
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
73159
73171
  256,
73160
73172
  256,
73161
73173
  "png",
73162
73174
  "qx"
73163
73175
  ],
73164
- "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
73165
- null,
73166
- null,
73167
- "js",
73168
- "qx"
73169
- ],
73170
- "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73171
- null,
73172
- null,
73173
- "js",
73174
- "qx"
73175
- ],
73176
- "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
73176
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
73177
73177
  32,
73178
73178
  32,
73179
73179
  "png",
@@ -73191,37 +73191,31 @@ qx.$$packageData['0'] = {
73191
73191
  "js",
73192
73192
  "qx"
73193
73193
  ],
73194
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
73194
+ "qx/tool/cli/templates/skeleton/mobile/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/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": [
73200
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
73207
73201
  32,
73208
73202
  32,
73209
73203
  "png",
73210
73204
  "qx"
73211
73205
  ],
73212
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
73213
- 32,
73214
- 32,
73206
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
73207
+ 256,
73208
+ 256,
73215
73209
  "png",
73216
73210
  "qx"
73217
73211
  ],
73218
- "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": [
73219
73213
  null,
73220
73214
  null,
73221
73215
  "js",
73222
73216
  "qx"
73223
73217
  ],
73224
- "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": [
73225
73219
  null,
73226
73220
  null,
73227
73221
  "js",
@@ -73233,70 +73227,76 @@ qx.$$packageData['0'] = {
73233
73227
  "tmpl",
73234
73228
  "qx"
73235
73229
  ],
73236
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73230
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
73237
73231
  null,
73238
73232
  null,
73239
73233
  "js",
73240
73234
  "qx"
73241
73235
  ],
73242
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73236
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
73243
73237
  null,
73244
73238
  null,
73245
73239
  "js",
73246
73240
  "qx"
73247
73241
  ],
73248
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73242
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
73249
73243
  null,
73250
73244
  null,
73251
73245
  "js",
73252
73246
  "qx"
73253
73247
  ],
73254
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73248
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73255
73249
  null,
73256
73250
  null,
73257
- "tmpl",
73251
+ "js",
73258
73252
  "qx"
73259
73253
  ],
73260
- "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.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": [
73261
73261
  null,
73262
73262
  null,
73263
73263
  "js",
73264
73264
  "qx"
73265
73265
  ],
73266
- "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73266
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
73267
73267
  null,
73268
73268
  null,
73269
73269
  "js",
73270
73270
  "qx"
73271
73271
  ],
73272
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
73272
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
73273
73273
  null,
73274
73274
  null,
73275
73275
  "js",
73276
73276
  "qx"
73277
73277
  ],
73278
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
73278
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
73279
73279
  null,
73280
73280
  null,
73281
73281
  "js",
73282
73282
  "qx"
73283
73283
  ],
73284
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
73284
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
73285
73285
  null,
73286
73286
  null,
73287
73287
  "js",
73288
73288
  "qx"
73289
73289
  ],
73290
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73290
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
73291
73291
  null,
73292
73292
  null,
73293
73293
  "js",
73294
73294
  "qx"
73295
73295
  ],
73296
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73296
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73297
73297
  null,
73298
73298
  null,
73299
- "js",
73299
+ "tmpl",
73300
73300
  "qx"
73301
73301
  ],
73302
73302
  "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
@@ -73311,43 +73311,67 @@ qx.$$packageData['0'] = {
73311
73311
  "scss",
73312
73312
  "qx"
73313
73313
  ],
73314
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
73314
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73315
73315
  null,
73316
73316
  null,
73317
73317
  "js",
73318
73318
  "qx"
73319
73319
  ],
73320
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
73320
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73321
73321
  null,
73322
73322
  null,
73323
73323
  "js",
73324
73324
  "qx"
73325
73325
  ],
73326
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
73326
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73327
73327
  null,
73328
73328
  null,
73329
73329
  "js",
73330
73330
  "qx"
73331
73331
  ],
73332
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
73332
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
73333
73333
  null,
73334
73334
  null,
73335
73335
  "js",
73336
73336
  "qx"
73337
73337
  ],
73338
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
73338
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73339
73339
  null,
73340
73340
  null,
73341
73341
  "js",
73342
73342
  "qx"
73343
73343
  ],
73344
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
73344
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
73345
73345
  null,
73346
73346
  null,
73347
73347
  "js",
73348
73348
  "qx"
73349
73349
  ],
73350
- "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
73350
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
73351
+ null,
73352
+ null,
73353
+ "js",
73354
+ "qx"
73355
+ ],
73356
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73357
+ null,
73358
+ null,
73359
+ "js",
73360
+ "qx"
73361
+ ],
73362
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73363
+ null,
73364
+ null,
73365
+ "js",
73366
+ "qx"
73367
+ ],
73368
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
73369
+ null,
73370
+ null,
73371
+ "js",
73372
+ "qx"
73373
+ ],
73374
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73351
73375
  null,
73352
73376
  null,
73353
73377
  "js",