@qooxdoo/framework 7.7.1 → 7.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -125,7 +125,7 @@ if (typeof global !== "undefined") {
125
125
  "qx.promise.warnings": true,
126
126
  "qx.promise.longStackTraces": true,
127
127
  "qx.compiler": true,
128
- "qx.compiler.version": "7.7.1",
128
+ "qx.compiler.version": "7.7.2",
129
129
  "qx.version": null,
130
130
  "qx.compiler.targetType": "source",
131
131
  "qx.compiler.outputDir": "compiled/node/build/",
@@ -5130,16 +5130,18 @@ try {
5130
5130
  break;
5131
5131
  }
5132
5132
  }
5133
+
5133
5134
  // Try looking in the class itself
5134
5135
  if (!fn && mixedInAt.prototype[methodName]) {
5135
- fn = mixedInAt.prototype[methodName].base;
5136
- // if fn.self is set fn is an overloaded mixin method from
5137
- // another mixin. In this case fn.base contains the original
5138
- // class method.
5139
- if (fn && fn.self) {
5136
+ fn = mixedInAt.prototype[methodName];
5137
+ for (let i = 0; i < mixedInAt.$$flatIncludes.length; i++) {
5138
+ if (!mixedInAt.$$flatIncludes[i].$$members[methodName]) {
5139
+ continue;
5140
+ }
5140
5141
  fn = fn.base;
5141
5142
  }
5142
5143
  }
5144
+
5143
5145
  // Try looking in the superclass
5144
5146
  if (!fn && mixedInAt.superclass) {
5145
5147
  fn = mixedInAt.superclass.prototype[methodName];
@@ -8501,7 +8503,7 @@ try {
8501
8503
  // Validate keys
8502
8504
  var allowed = config.type === "static" ? this.__P_142_11 : this.__P_142_10;
8503
8505
  for (var key in config) {
8504
- if (!allowed[key]) {
8506
+ if (!(key in allowed)) {
8505
8507
  throw new Error('The configuration key "' + key + '" in class "' + name + '" is not allowed!');
8506
8508
  }
8507
8509
  if (config[key] == null) {
@@ -13961,7 +13963,7 @@ try {
13961
13963
  if (!(options.self || options.args || options.delay != null || options.periodical != null || options.attempt || options.always)) {
13962
13964
  return func;
13963
13965
  }
13964
- return function (event) {
13966
+ let result = function (event) {
13965
13967
  // Convert (and copy) incoming arguments
13966
13968
  var args = qx.lang.Array.fromArguments(arguments);
13967
13969
 
@@ -13992,6 +13994,7 @@ try {
13992
13994
  return func.apply(options.self || this, args);
13993
13995
  }
13994
13996
  };
13997
+ return result;
13995
13998
  },
13996
13999
  /**
13997
14000
  * Returns a function whose "this" is altered.
@@ -32836,7 +32839,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
32836
32839
  * @return {String}
32837
32840
  */
32838
32841
  getCompilerVersion() {
32839
- return "7.7.1";
32842
+ return "7.7.2";
32840
32843
  },
32841
32844
  /**
32842
32845
  * Returns the qooxdoo version used in the application in the current or given
@@ -41772,9 +41775,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
41772
41775
  await scanImpl(dir);
41773
41776
  }
41774
41777
  for (let filename of classFiles) {
41775
- if (this.argv.verbose) {
41776
- qx.tool.compiler.Console.info(`Processing ${filename} ...`);
41777
- }
41778
41778
  await metaDb.addFile(filename, !!this.argv.clean);
41779
41779
  }
41780
41780
  await metaDb.reparseAll();
@@ -42894,8 +42894,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
42894
42894
  var appRootDir = this.getApplicationRoot(application);
42895
42895
  let mapTo = this.getPathMapping(path.join(appRootDir, this.getOutputDir(), "transpiled/"));
42896
42896
  appMeta.setSourceUri(mapTo ? mapTo : targetUri + "transpiled/");
42897
- mapTo = this.getPathMapping(path.join(appRootDir, this.getOutputDir(), "resource/"));
42898
- appMeta.setResourceUri(mapTo ? mapTo : targetUri + "resource/");
42897
+ mapTo = this.getPathMapping(path.join(appRootDir, this.getOutputDir(), "resource"));
42898
+ appMeta.setResourceUri(mapTo ? mapTo : targetUri + "resource");
42899
42899
  const requiredLibs = application.getRequiredLibraries();
42900
42900
  await qx.tool.utils.Utils.makeDirs(appRootDir);
42901
42901
  appMeta.setEnvironment({
@@ -48485,8 +48485,9 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
48485
48485
  t.__P_21_29 = true;
48486
48486
  t.__P_21_24 = true;
48487
48487
  }
48488
- t.__P_21_26.functionName = FUNCTION_NAMES[keyName] || keyName;
48489
- if (FUNCTION_NAMES[keyName] !== undefined) {
48488
+ var isSpecialFunctionName = Object.keys(FUNCTION_NAMES).includes(keyName);
48489
+ t.__P_21_26.functionName = isSpecialFunctionName ? FUNCTION_NAMES[keyName] : keyName;
48490
+ if (isSpecialFunctionName) {
48490
48491
  makeMeta(keyName, null, functionNode);
48491
48492
  }
48492
48493
  enterFunction(path, functionNode);
@@ -48526,7 +48527,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
48526
48527
  }
48527
48528
  var keyName = getKeyName(prop.key);
48528
48529
  checkValidTopLevel(path);
48529
- if (FUNCTION_NAMES[keyName] !== undefined) {
48530
+ var isSpecialFunctionName = Object.keys(FUNCTION_NAMES).includes(keyName);
48531
+ if (isSpecialFunctionName) {
48530
48532
  let val = path.node.value;
48531
48533
  val.leadingComments = (path.node.leadingComments || []).concat(val.leadingComments || []);
48532
48534
  handleTopLevelMethods(path, keyName, val);
@@ -66921,6 +66923,30 @@ qx.$$packageData['0'] = {
66921
66923
  }
66922
66924
  },
66923
66925
  "resources": {
66926
+ "qx/decoration/Simple/checkbox/checked-disabled.png": [
66927
+ 6,
66928
+ 6,
66929
+ "png",
66930
+ "qx"
66931
+ ],
66932
+ "qx/decoration/Simple/checkbox/checked.png": [
66933
+ 6,
66934
+ 6,
66935
+ "png",
66936
+ "qx"
66937
+ ],
66938
+ "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
66939
+ 6,
66940
+ 2,
66941
+ "png",
66942
+ "qx"
66943
+ ],
66944
+ "qx/decoration/Simple/checkbox/undetermined.png": [
66945
+ 6,
66946
+ 2,
66947
+ "png",
66948
+ "qx"
66949
+ ],
66924
66950
  "qx/decoration/Simple/arrows/down-invert.gif": [
66925
66951
  7,
66926
66952
  4,
@@ -66933,6 +66959,12 @@ qx.$$packageData['0'] = {
66933
66959
  "gif",
66934
66960
  "qx"
66935
66961
  ],
66962
+ "qx/decoration/Simple/arrows/down.gif": [
66963
+ 7,
66964
+ 4,
66965
+ "gif",
66966
+ "qx"
66967
+ ],
66936
66968
  "qx/decoration/Simple/arrows/forward.gif": [
66937
66969
  8,
66938
66970
  7,
@@ -66963,15 +66995,15 @@ qx.$$packageData['0'] = {
66963
66995
  "gif",
66964
66996
  "qx"
66965
66997
  ],
66966
- "qx/decoration/Simple/arrows/down.gif": [
66967
- 7,
66998
+ "qx/decoration/Simple/arrows/right.gif": [
66968
66999
  4,
67000
+ 7,
66969
67001
  "gif",
66970
67002
  "qx"
66971
67003
  ],
66972
- "qx/decoration/Simple/arrows/right.gif": [
66973
- 4,
67004
+ "qx/decoration/Simple/arrows/up-invert.gif": [
66974
67005
  7,
67006
+ 4,
66975
67007
  "gif",
66976
67008
  "qx"
66977
67009
  ],
@@ -66981,40 +67013,34 @@ qx.$$packageData['0'] = {
66981
67013
  "gif",
66982
67014
  "qx"
66983
67015
  ],
66984
- "qx/decoration/Simple/arrows/up-invert.gif": [
66985
- 7,
66986
- 4,
66987
- "gif",
66988
- "qx"
66989
- ],
66990
67016
  "qx/decoration/Simple/arrows/up.gif": [
66991
67017
  7,
66992
67018
  4,
66993
67019
  "gif",
66994
67020
  "qx"
66995
67021
  ],
66996
- "qx/decoration/Simple/checkbox/checked-disabled.png": [
66997
- 6,
66998
- 6,
67022
+ "qx/decoration/Simple/colorselector/brightness-field.png": [
67023
+ 19,
67024
+ 256,
66999
67025
  "png",
67000
67026
  "qx"
67001
67027
  ],
67002
- "qx/decoration/Simple/checkbox/checked.png": [
67003
- 6,
67004
- 6,
67005
- "png",
67028
+ "qx/decoration/Simple/colorselector/brightness-handle.gif": [
67029
+ 35,
67030
+ 11,
67031
+ "gif",
67006
67032
  "qx"
67007
67033
  ],
67008
- "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
67009
- 6,
67010
- 2,
67011
- "png",
67034
+ "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
67035
+ 256,
67036
+ 256,
67037
+ "jpg",
67012
67038
  "qx"
67013
67039
  ],
67014
- "qx/decoration/Simple/checkbox/undetermined.png": [
67015
- 6,
67016
- 2,
67017
- "png",
67040
+ "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
67041
+ 11,
67042
+ 11,
67043
+ "gif",
67018
67044
  "qx"
67019
67045
  ],
67020
67046
  "qx/decoration/Simple/cursors/alias.gif": [
@@ -67041,66 +67067,36 @@ qx.$$packageData['0'] = {
67041
67067
  "gif",
67042
67068
  "qx"
67043
67069
  ],
67044
- "qx/decoration/Simple/colorselector/brightness-field.png": [
67045
- 19,
67046
- 256,
67070
+ "qx/decoration/Simple/splitpane/knob-horizontal.png": [
67071
+ 1,
67072
+ 8,
67047
67073
  "png",
67048
67074
  "qx"
67049
67075
  ],
67050
- "qx/decoration/Simple/colorselector/brightness-handle.gif": [
67051
- 35,
67052
- 11,
67053
- "gif",
67054
- "qx"
67055
- ],
67056
- "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
67057
- 11,
67058
- 11,
67059
- "gif",
67060
- "qx"
67061
- ],
67062
- "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
67063
- 256,
67064
- 256,
67065
- "jpg",
67066
- "qx"
67067
- ],
67068
- "qx/decoration/Simple/menu/checkbox-invert.gif": [
67069
- 16,
67070
- 7,
67071
- "gif",
67076
+ "qx/decoration/Simple/splitpane/knob-vertical.png": [
67077
+ 8,
67078
+ 1,
67079
+ "png",
67072
67080
  "qx"
67073
67081
  ],
67074
- "qx/decoration/Simple/menu/checkbox.gif": [
67075
- 16,
67076
- 7,
67082
+ "qx/decoration/Simple/tabview/close.gif": [
67083
+ 10,
67084
+ 9,
67077
67085
  "gif",
67078
67086
  "qx"
67079
67087
  ],
67080
- "qx/decoration/Simple/menu/radiobutton-invert.gif": [
67088
+ "qx/decoration/Simple/tree/minus.gif": [
67089
+ 19,
67081
67090
  16,
67082
- 5,
67083
67091
  "gif",
67084
67092
  "qx"
67085
67093
  ],
67086
- "qx/decoration/Simple/menu/radiobutton.gif": [
67094
+ "qx/decoration/Simple/tree/plus.gif": [
67095
+ 19,
67087
67096
  16,
67088
- 5,
67089
67097
  "gif",
67090
67098
  "qx"
67091
67099
  ],
67092
- "qx/decoration/Simple/splitpane/knob-horizontal.png": [
67093
- 1,
67094
- 8,
67095
- "png",
67096
- "qx"
67097
- ],
67098
- "qx/decoration/Simple/splitpane/knob-vertical.png": [
67099
- 8,
67100
- 1,
67101
- "png",
67102
- "qx"
67103
- ],
67104
67100
  "qx/decoration/Simple/table/ascending-invert.png": [
67105
67101
  10,
67106
67102
  10,
@@ -67113,12 +67109,6 @@ qx.$$packageData['0'] = {
67113
67109
  "png",
67114
67110
  "qx"
67115
67111
  ],
67116
- "qx/decoration/Simple/table/boolean-true.png": [
67117
- 11,
67118
- 11,
67119
- "png",
67120
- "qx"
67121
- ],
67122
67112
  "qx/decoration/Simple/table/boolean-false.png": [
67123
67113
  11,
67124
67114
  11,
@@ -67131,6 +67121,12 @@ qx.$$packageData['0'] = {
67131
67121
  "png",
67132
67122
  "qx"
67133
67123
  ],
67124
+ "qx/decoration/Simple/table/boolean-true.png": [
67125
+ 11,
67126
+ 11,
67127
+ "png",
67128
+ "qx"
67129
+ ],
67134
67130
  "qx/decoration/Simple/table/descending.png": [
67135
67131
  10,
67136
67132
  10,
@@ -67143,141 +67139,147 @@ qx.$$packageData['0'] = {
67143
67139
  "png",
67144
67140
  "qx"
67145
67141
  ],
67146
- "qx/decoration/Simple/tabview/close.gif": [
67147
- 10,
67148
- 9,
67142
+ "qx/decoration/Simple/menu/checkbox-invert.gif": [
67143
+ 16,
67144
+ 7,
67149
67145
  "gif",
67150
67146
  "qx"
67151
67147
  ],
67152
- "qx/decoration/Simple/tree/minus.gif": [
67153
- 19,
67148
+ "qx/decoration/Simple/menu/checkbox.gif": [
67154
67149
  16,
67150
+ 7,
67155
67151
  "gif",
67156
67152
  "qx"
67157
67153
  ],
67158
- "qx/decoration/Simple/tree/plus.gif": [
67159
- 19,
67154
+ "qx/decoration/Simple/menu/radiobutton-invert.gif": [
67160
67155
  16,
67156
+ 5,
67161
67157
  "gif",
67162
67158
  "qx"
67163
67159
  ],
67164
- "qx/decoration/Simple/treevirtual/cross_minus.gif": [
67165
- 19,
67160
+ "qx/decoration/Simple/menu/radiobutton.gif": [
67166
67161
  16,
67162
+ 5,
67167
67163
  "gif",
67168
67164
  "qx"
67169
67165
  ],
67170
- "qx/decoration/Simple/treevirtual/cross_plus.gif": [
67171
- 19,
67172
- 16,
67166
+ "qx/decoration/Simple/window/close-white.gif": [
67167
+ 10,
67168
+ 9,
67173
67169
  "gif",
67174
67170
  "qx"
67175
67171
  ],
67176
- "qx/decoration/Simple/treevirtual/end.gif": [
67177
- 19,
67178
- 16,
67172
+ "qx/decoration/Simple/window/close.gif": [
67173
+ 10,
67174
+ 9,
67179
67175
  "gif",
67180
67176
  "qx"
67181
67177
  ],
67182
- "qx/decoration/Simple/treevirtual/end_minus.gif": [
67183
- 19,
67184
- 16,
67178
+ "qx/decoration/Simple/window/maximize-white.gif": [
67179
+ 9,
67180
+ 9,
67185
67181
  "gif",
67186
67182
  "qx"
67187
67183
  ],
67188
- "qx/decoration/Simple/treevirtual/cross.gif": [
67189
- 19,
67190
- 16,
67184
+ "qx/decoration/Simple/window/maximize.gif": [
67185
+ 9,
67186
+ 9,
67191
67187
  "gif",
67192
67188
  "qx"
67193
67189
  ],
67194
- "qx/decoration/Simple/treevirtual/end_plus.gif": [
67195
- 19,
67196
- 16,
67190
+ "qx/decoration/Simple/window/minimize-white.gif": [
67191
+ 9,
67192
+ 9,
67197
67193
  "gif",
67198
67194
  "qx"
67199
67195
  ],
67200
- "qx/decoration/Simple/treevirtual/line.gif": [
67201
- 19,
67202
- 16,
67196
+ "qx/decoration/Simple/window/minimize.gif": [
67197
+ 9,
67198
+ 9,
67203
67199
  "gif",
67204
67200
  "qx"
67205
67201
  ],
67206
- "qx/decoration/Simple/treevirtual/only_minus.gif": [
67207
- 19,
67208
- 16,
67202
+ "qx/decoration/Simple/window/restore-white.gif": [
67203
+ 8,
67204
+ 9,
67209
67205
  "gif",
67210
67206
  "qx"
67211
67207
  ],
67212
- "qx/decoration/Simple/treevirtual/start.gif": [
67208
+ "qx/decoration/Simple/window/restore.gif": [
67209
+ 8,
67210
+ 9,
67211
+ "gif",
67212
+ "qx"
67213
+ ],
67214
+ "qx/decoration/Simple/treevirtual/cross.gif": [
67213
67215
  19,
67214
67216
  16,
67215
67217
  "gif",
67216
67218
  "qx"
67217
67219
  ],
67218
- "qx/decoration/Simple/treevirtual/only_plus.gif": [
67220
+ "qx/decoration/Simple/treevirtual/cross_minus.gif": [
67219
67221
  19,
67220
67222
  16,
67221
67223
  "gif",
67222
67224
  "qx"
67223
67225
  ],
67224
- "qx/decoration/Simple/treevirtual/start_minus.gif": [
67226
+ "qx/decoration/Simple/treevirtual/cross_plus.gif": [
67225
67227
  19,
67226
67228
  16,
67227
67229
  "gif",
67228
67230
  "qx"
67229
67231
  ],
67230
- "qx/decoration/Simple/treevirtual/start_plus.gif": [
67232
+ "qx/decoration/Simple/treevirtual/end.gif": [
67231
67233
  19,
67232
67234
  16,
67233
67235
  "gif",
67234
67236
  "qx"
67235
67237
  ],
67236
- "qx/decoration/Simple/window/close-white.gif": [
67237
- 10,
67238
- 9,
67238
+ "qx/decoration/Simple/treevirtual/end_minus.gif": [
67239
+ 19,
67240
+ 16,
67239
67241
  "gif",
67240
67242
  "qx"
67241
67243
  ],
67242
- "qx/decoration/Simple/window/close.gif": [
67243
- 10,
67244
- 9,
67244
+ "qx/decoration/Simple/treevirtual/end_plus.gif": [
67245
+ 19,
67246
+ 16,
67245
67247
  "gif",
67246
67248
  "qx"
67247
67249
  ],
67248
- "qx/decoration/Simple/window/maximize-white.gif": [
67249
- 9,
67250
- 9,
67250
+ "qx/decoration/Simple/treevirtual/line.gif": [
67251
+ 19,
67252
+ 16,
67251
67253
  "gif",
67252
67254
  "qx"
67253
67255
  ],
67254
- "qx/decoration/Simple/window/maximize.gif": [
67255
- 9,
67256
- 9,
67256
+ "qx/decoration/Simple/treevirtual/only_minus.gif": [
67257
+ 19,
67258
+ 16,
67257
67259
  "gif",
67258
67260
  "qx"
67259
67261
  ],
67260
- "qx/decoration/Simple/window/minimize-white.gif": [
67261
- 9,
67262
- 9,
67262
+ "qx/decoration/Simple/treevirtual/only_plus.gif": [
67263
+ 19,
67264
+ 16,
67263
67265
  "gif",
67264
67266
  "qx"
67265
67267
  ],
67266
- "qx/decoration/Simple/window/minimize.gif": [
67267
- 9,
67268
- 9,
67268
+ "qx/decoration/Simple/treevirtual/start.gif": [
67269
+ 19,
67270
+ 16,
67269
67271
  "gif",
67270
67272
  "qx"
67271
67273
  ],
67272
- "qx/decoration/Simple/window/restore-white.gif": [
67273
- 8,
67274
- 9,
67274
+ "qx/decoration/Simple/treevirtual/start_minus.gif": [
67275
+ 19,
67276
+ 16,
67275
67277
  "gif",
67276
67278
  "qx"
67277
67279
  ],
67278
- "qx/decoration/Simple/window/restore.gif": [
67279
- 8,
67280
- 9,
67280
+ "qx/decoration/Simple/treevirtual/start_plus.gif": [
67281
+ 19,
67282
+ 16,
67281
67283
  "gif",
67282
67284
  "qx"
67283
67285
  ],
@@ -67323,13 +67325,13 @@ qx.$$packageData['0'] = {
67323
67325
  "json",
67324
67326
  "qx"
67325
67327
  ],
67326
- "qx/tool/schema/Manifest-2-0-0.json": [
67328
+ "qx/tool/schema/qooxdoo-1-0-0.json": [
67327
67329
  null,
67328
67330
  null,
67329
67331
  "json",
67330
67332
  "qx"
67331
67333
  ],
67332
- "qx/tool/schema/qooxdoo-1-0-0.json": [
67334
+ "qx/tool/schema/Manifest-2-0-0.json": [
67333
67335
  null,
67334
67336
  null,
67335
67337
  "json",
@@ -67353,12 +67355,6 @@ qx.$$packageData['0'] = {
67353
67355
  "ts",
67354
67356
  "qx"
67355
67357
  ],
67356
- "qx/tool/website/layouts/default.dot": [
67357
- null,
67358
- null,
67359
- "dot",
67360
- "qx"
67361
- ],
67362
67358
  "qx/tool/website/build/404.html": [
67363
67359
  null,
67364
67360
  null,
@@ -67383,6 +67379,12 @@ qx.$$packageData['0'] = {
67383
67379
  "css",
67384
67380
  "qx"
67385
67381
  ],
67382
+ "qx/tool/website/layouts/default.dot": [
67383
+ null,
67384
+ null,
67385
+ "dot",
67386
+ "qx"
67387
+ ],
67386
67388
  "qx/tool/website/sass/qooxdoo.scss": [
67387
67389
  null,
67388
67390
  null,
@@ -67401,13 +67403,13 @@ qx.$$packageData['0'] = {
67401
67403
  "html",
67402
67404
  "qx"
67403
67405
  ],
67404
- "qx/tool/website/partials/icon-github.html": [
67406
+ "qx/tool/website/partials/header.html": [
67405
67407
  null,
67406
67408
  null,
67407
67409
  "html",
67408
67410
  "qx"
67409
67411
  ],
67410
- "qx/tool/website/partials/header.html": [
67412
+ "qx/tool/website/partials/icon-github.html": [
67411
67413
  null,
67412
67414
  null,
67413
67415
  "html",
@@ -67611,43 +67613,25 @@ qx.$$packageData['0'] = {
67611
67613
  "js",
67612
67614
  "qx"
67613
67615
  ],
67614
- "qx/tool/website/src/diagnostics/dependson.html": [
67615
- null,
67616
- null,
67617
- "html",
67618
- "qx"
67619
- ],
67620
- "qx/tool/website/src/diagnostics/dependson.js": [
67621
- null,
67622
- null,
67623
- "js",
67624
- "qx"
67625
- ],
67626
- "qx/tool/website/src/diagnostics/requiredby.html": [
67616
+ "qx/tool/website/src/assets/abel.css": [
67627
67617
  null,
67628
67618
  null,
67629
- "html",
67619
+ "css",
67630
67620
  "qx"
67631
67621
  ],
67632
- "qx/tool/website/src/diagnostics/requiredby.js": [
67622
+ "qx/tool/website/src/assets/bluebird.min.js": [
67633
67623
  null,
67634
67624
  null,
67635
67625
  "js",
67636
67626
  "qx"
67637
67627
  ],
67638
- "qx/tool/website/src/assets/abel.css": [
67628
+ "qx/tool/website/src/assets/bootstrap.css": [
67639
67629
  null,
67640
67630
  null,
67641
67631
  "css",
67642
67632
  "qx"
67643
67633
  ],
67644
- "qx/tool/website/src/assets/bluebird.min.js": [
67645
- null,
67646
- null,
67647
- "js",
67648
- "qx"
67649
- ],
67650
- "qx/tool/website/src/assets/bootstrap.css": [
67634
+ "qx/tool/website/src/assets/bootstrap.min.css": [
67651
67635
  null,
67652
67636
  null,
67653
67637
  "css",
@@ -67659,13 +67643,13 @@ qx.$$packageData['0'] = {
67659
67643
  "map",
67660
67644
  "qx"
67661
67645
  ],
67662
- "qx/tool/website/src/assets/bootstrap.min.css": [
67646
+ "qx/tool/website/src/assets/buttons.js": [
67663
67647
  null,
67664
67648
  null,
67665
- "css",
67649
+ "js",
67666
67650
  "qx"
67667
67651
  ],
67668
- "qx/tool/website/src/assets/buttons.js": [
67652
+ "qx/tool/website/src/assets/fontawesome-all.js": [
67669
67653
  null,
67670
67654
  null,
67671
67655
  "js",
@@ -67677,12 +67661,6 @@ qx.$$packageData['0'] = {
67677
67661
  "png",
67678
67662
  "qx"
67679
67663
  ],
67680
- "qx/tool/website/src/assets/fontawesome-all.js": [
67681
- null,
67682
- null,
67683
- "js",
67684
- "qx"
67685
- ],
67686
67664
  "qx/tool/website/src/assets/jquery.js": [
67687
67665
  null,
67688
67666
  null,
@@ -67695,18 +67673,18 @@ qx.$$packageData['0'] = {
67695
67673
  "svg",
67696
67674
  "qx"
67697
67675
  ],
67698
- "qx/tool/website/src/assets/qx-api.png": [
67699
- 1144,
67700
- 640,
67701
- "png",
67702
- "qx"
67703
- ],
67704
67676
  "qx/tool/website/src/assets/qx-ide.png": [
67705
67677
  3183,
67706
67678
  1752,
67707
67679
  "png",
67708
67680
  "qx"
67709
67681
  ],
67682
+ "qx/tool/website/src/assets/qx-api.png": [
67683
+ 1144,
67684
+ 640,
67685
+ "png",
67686
+ "qx"
67687
+ ],
67710
67688
  "qx/tool/website/src/assets/qx-oo.png": [
67711
67689
  870,
67712
67690
  502,
@@ -67719,6 +67697,30 @@ qx.$$packageData['0'] = {
67719
67697
  "svg",
67720
67698
  "qx"
67721
67699
  ],
67700
+ "qx/tool/website/src/diagnostics/dependson.html": [
67701
+ null,
67702
+ null,
67703
+ "html",
67704
+ "qx"
67705
+ ],
67706
+ "qx/tool/website/src/diagnostics/dependson.js": [
67707
+ null,
67708
+ null,
67709
+ "js",
67710
+ "qx"
67711
+ ],
67712
+ "qx/tool/website/src/diagnostics/requiredby.html": [
67713
+ null,
67714
+ null,
67715
+ "html",
67716
+ "qx"
67717
+ ],
67718
+ "qx/tool/website/src/diagnostics/requiredby.js": [
67719
+ null,
67720
+ null,
67721
+ "js",
67722
+ "qx"
67723
+ ],
67722
67724
  "qx/tool/website/src/scripts/serve.js": [
67723
67725
  null,
67724
67726
  null,
@@ -67737,16 +67739,16 @@ qx.$$packageData['0'] = {
67737
67739
  "json",
67738
67740
  "qx"
67739
67741
  ],
67740
- "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
67742
+ "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
67741
67743
  null,
67742
67744
  null,
67743
- "md",
67745
+ "json",
67744
67746
  "qx"
67745
67747
  ],
67746
- "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
67748
+ "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
67747
67749
  null,
67748
67750
  null,
67749
- "json",
67751
+ "md",
67750
67752
  "qx"
67751
67753
  ],
67752
67754
  "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
@@ -67755,70 +67757,70 @@ qx.$$packageData['0'] = {
67755
67757
  "tmpl",
67756
67758
  "qx"
67757
67759
  ],
67758
- "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
67760
+ "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
67759
67761
  null,
67760
67762
  null,
67761
67763
  "json",
67762
67764
  "qx"
67763
67765
  ],
67764
- "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
67766
+ "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
67765
67767
  null,
67766
67768
  null,
67767
- "md",
67769
+ "json",
67768
67770
  "qx"
67769
67771
  ],
67770
- "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
67772
+ "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
67771
67773
  null,
67772
67774
  null,
67773
- "json",
67775
+ "md",
67774
67776
  "qx"
67775
67777
  ],
67776
- "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
67778
+ "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
67777
67779
  null,
67778
67780
  null,
67779
67781
  "tmpl",
67780
67782
  "qx"
67781
67783
  ],
67782
- "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
67784
+ "qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
67783
67785
  null,
67784
67786
  null,
67785
67787
  "json",
67786
67788
  "qx"
67787
67789
  ],
67788
- "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
67790
+ "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
67789
67791
  null,
67790
67792
  null,
67791
67793
  "json",
67792
67794
  "qx"
67793
67795
  ],
67794
- "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
67796
+ "qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
67795
67797
  null,
67796
67798
  null,
67797
- "md",
67799
+ "txt",
67798
67800
  "qx"
67799
67801
  ],
67800
- "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
67802
+ "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
67801
67803
  null,
67802
67804
  null,
67803
67805
  "tmpl",
67804
67806
  "qx"
67805
67807
  ],
67806
- "qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
67808
+ "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
67807
67809
  null,
67808
67810
  null,
67809
67811
  "json",
67810
67812
  "qx"
67811
67813
  ],
67812
- "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
67814
+ "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
67813
67815
  null,
67814
67816
  null,
67815
67817
  "json",
67816
67818
  "qx"
67817
67819
  ],
67818
- "qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
67820
+ "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
67819
67821
  null,
67820
67822
  null,
67821
- "txt",
67823
+ "md",
67822
67824
  "qx"
67823
67825
  ],
67824
67826
  "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
@@ -67833,13 +67835,13 @@ qx.$$packageData['0'] = {
67833
67835
  "html",
67834
67836
  "qx"
67835
67837
  ],
67836
- "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
67838
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
67837
67839
  null,
67838
67840
  null,
67839
67841
  "html",
67840
67842
  "qx"
67841
67843
  ],
67842
- "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
67844
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
67843
67845
  null,
67844
67846
  null,
67845
67847
  "html",
@@ -67857,28 +67859,16 @@ qx.$$packageData['0'] = {
67857
67859
  "txt",
67858
67860
  "qx"
67859
67861
  ],
67860
- "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
67861
- null,
67862
- null,
67863
- "txt",
67864
- "qx"
67865
- ],
67866
67862
  "qx/tool/cli/templates/skeleton/server/source/translation/readme.txt": [
67867
67863
  null,
67868
67864
  null,
67869
67865
  "txt",
67870
67866
  "qx"
67871
67867
  ],
67872
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
67873
- null,
67874
- null,
67875
- "js",
67876
- "qx"
67877
- ],
67878
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
67868
+ "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
67879
67869
  null,
67880
67870
  null,
67881
- "js",
67871
+ "txt",
67882
67872
  "qx"
67883
67873
  ],
67884
67874
  "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
@@ -67905,6 +67895,30 @@ qx.$$packageData['0'] = {
67905
67895
  "png",
67906
67896
  "qx"
67907
67897
  ],
67898
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
67899
+ null,
67900
+ null,
67901
+ "js",
67902
+ "qx"
67903
+ ],
67904
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
67905
+ null,
67906
+ null,
67907
+ "js",
67908
+ "qx"
67909
+ ],
67910
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
67911
+ null,
67912
+ null,
67913
+ "js",
67914
+ "qx"
67915
+ ],
67916
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
67917
+ null,
67918
+ null,
67919
+ "js",
67920
+ "qx"
67921
+ ],
67908
67922
  "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
67909
67923
  180,
67910
67924
  180,
@@ -67923,18 +67937,24 @@ qx.$$packageData['0'] = {
67923
67937
  "png",
67924
67938
  "qx"
67925
67939
  ],
67926
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
67940
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
67927
67941
  null,
67928
67942
  null,
67929
67943
  "js",
67930
67944
  "qx"
67931
67945
  ],
67932
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
67946
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
67933
67947
  null,
67934
67948
  null,
67935
67949
  "js",
67936
67950
  "qx"
67937
67951
  ],
67952
+ "qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
67953
+ null,
67954
+ null,
67955
+ "tmpl",
67956
+ "qx"
67957
+ ],
67938
67958
  "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
67939
67959
  null,
67940
67960
  null,
@@ -67953,31 +67973,31 @@ qx.$$packageData['0'] = {
67953
67973
  "png",
67954
67974
  "qx"
67955
67975
  ],
67956
- "qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
67976
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
67957
67977
  null,
67958
67978
  null,
67959
- "tmpl",
67979
+ "js",
67960
67980
  "qx"
67961
67981
  ],
67962
- "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
67982
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
67963
67983
  null,
67964
67984
  null,
67965
67985
  "js",
67966
67986
  "qx"
67967
67987
  ],
67968
- "qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
67988
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
67969
67989
  null,
67970
67990
  null,
67971
67991
  "js",
67972
67992
  "qx"
67973
67993
  ],
67974
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
67994
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
67975
67995
  null,
67976
67996
  null,
67977
67997
  "js",
67978
67998
  "qx"
67979
67999
  ],
67980
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
68000
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
67981
68001
  null,
67982
68002
  null,
67983
68003
  "js",
@@ -67989,19 +68009,19 @@ qx.$$packageData['0'] = {
67989
68009
  "js",
67990
68010
  "qx"
67991
68011
  ],
67992
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
68012
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
67993
68013
  null,
67994
68014
  null,
67995
68015
  "js",
67996
68016
  "qx"
67997
68017
  ],
67998
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
68018
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
67999
68019
  null,
68000
68020
  null,
68001
68021
  "js",
68002
68022
  "qx"
68003
68023
  ],
68004
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
68024
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
68005
68025
  null,
68006
68026
  null,
68007
68027
  "js",
@@ -68013,34 +68033,22 @@ qx.$$packageData['0'] = {
68013
68033
  "tmpl",
68014
68034
  "qx"
68015
68035
  ],
68016
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
68017
- null,
68018
- null,
68019
- "scss",
68020
- "qx"
68021
- ],
68022
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
68023
- null,
68024
- null,
68025
- "scss",
68026
- "qx"
68027
- ],
68028
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
68036
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
68029
68037
  null,
68030
68038
  null,
68031
68039
  "js",
68032
68040
  "qx"
68033
68041
  ],
68034
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
68042
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
68035
68043
  null,
68036
68044
  null,
68037
- "js",
68045
+ "scss",
68038
68046
  "qx"
68039
68047
  ],
68040
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
68048
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
68041
68049
  null,
68042
68050
  null,
68043
- "js",
68051
+ "scss",
68044
68052
  "qx"
68045
68053
  ],
68046
68054
  "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
@@ -68049,12 +68057,6 @@ qx.$$packageData['0'] = {
68049
68057
  "js",
68050
68058
  "qx"
68051
68059
  ],
68052
- "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
68053
- null,
68054
- null,
68055
- "js",
68056
- "qx"
68057
- ],
68058
68060
  "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
68059
68061
  null,
68060
68062
  null,
@@ -68067,13 +68069,13 @@ qx.$$packageData['0'] = {
68067
68069
  "js",
68068
68070
  "qx"
68069
68071
  ],
68070
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
68072
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
68071
68073
  null,
68072
68074
  null,
68073
68075
  "js",
68074
68076
  "qx"
68075
68077
  ],
68076
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
68078
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
68077
68079
  null,
68078
68080
  null,
68079
68081
  "js",
@@ -68085,7 +68087,7 @@ qx.$$packageData['0'] = {
68085
68087
  "js",
68086
68088
  "qx"
68087
68089
  ],
68088
- "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
68090
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
68089
68091
  null,
68090
68092
  null,
68091
68093
  "js",