@qooxdoo/framework 7.9.1 → 7.9.3

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 (34) hide show
  1. package/Manifest.json +1 -1
  2. package/lib/compiler/compile-info.json +54 -54
  3. package/lib/compiler/index.js +249 -216
  4. package/lib/resource/qx/tool/cli/templates/skeleton/mobile/source/theme/custom/css/custom.css.map +1 -1
  5. package/package.json +2 -2
  6. package/source/class/qx/locale/Manager.js +13 -0
  7. package/source/class/qx/test/compiler/ClassFile.js +13 -0
  8. package/source/class/qx/test/theme/manager/Color.js +23 -15
  9. package/source/class/qx/test/theme/manager/Decoration.js +23 -15
  10. package/source/class/qx/test/theme/manager/Font.js +23 -15
  11. package/source/class/qx/test/theme/manager/Icon.js +23 -15
  12. package/source/class/qx/test/theme/manager/Meta.js +26 -15
  13. package/source/class/qx/test/ui/basic/Label.js +106 -0
  14. package/source/class/qx/test/ui/core/Blocker.js +121 -0
  15. package/source/class/qx/test/ui/tree/virtual/Tree.js +36 -0
  16. package/source/class/qx/test/util/DateFormat.js +1 -1
  17. package/source/class/qx/theme/classic/Appearance.js +21 -0
  18. package/source/class/qx/theme/indigo/ColorDark.js +2 -0
  19. package/source/class/qx/theme/modern/Appearance.js +21 -0
  20. package/source/class/qx/theme/simple/Appearance.js +27 -5
  21. package/source/class/qx/theme/tangible/Appearance.js +2 -0
  22. package/source/class/qx/tool/compiler/ClassFile.js +18 -6
  23. package/source/class/qx/tool/compiler/resources/Asset.js +1 -1
  24. package/source/class/qx/tool/compiler/targets/meta/PackageJavascript.js +6 -2
  25. package/source/class/qx/ui/core/Blocker.js +16 -3
  26. package/source/class/qx/ui/core/MExecutable.js +14 -12
  27. package/source/class/qx/ui/form/validation/Manager.js +1 -1
  28. package/source/class/qx/ui/mobile/dialog/Popup.js +13 -1
  29. package/source/class/qx/ui/table/Table.js +5 -4
  30. package/source/class/qx/ui/table/pane/Scroller.js +6 -8
  31. package/source/class/qx/ui/tree/VirtualTree.js +4 -1
  32. package/source/class/qx/util/format/DateFormat.js +3 -2
  33. package/source/resource/qx/decoration/Modern/table/boolean-false.png +0 -0
  34. package/source/resource/qx/decoration/Modern/table/boolean-true.png +0 -0
@@ -125,8 +125,8 @@ if (typeof global !== "undefined") {
125
125
  "qx.promise.warnings": true,
126
126
  "qx.promise.longStackTraces": true,
127
127
  "qx.compiler": true,
128
- "qx.compiler.version": "7.9.1",
129
- "qx.version": "7.9.1",
128
+ "qx.compiler.version": "7.3.3",
129
+ "qx.version": "7.9.3",
130
130
  "qx.compiler.targetType": "source",
131
131
  "qx.compiler.outputDir": "compiled/node/build/",
132
132
  "qx.target.privateArtifacts": false,
@@ -33834,7 +33834,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
33834
33834
  * @return {String}
33835
33835
  */
33836
33836
  getCompilerVersion() {
33837
- return "7.9.1";
33837
+ return "7.3.3";
33838
33838
  },
33839
33839
  /**
33840
33840
  * Returns the qooxdoo version used in the application in the current or given
@@ -49051,7 +49051,13 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
49051
49051
  } else if (param.type == "ArrayPattern") {
49052
49052
  param.elements.forEach(elem => addDecl(elem));
49053
49053
  } else if (param.type == "ObjectPattern") {
49054
- param.properties.forEach(prop => addDecl(prop.value));
49054
+ param.properties.forEach(prop => {
49055
+ if (prop.type == "RestElement") {
49056
+ addDecl(prop);
49057
+ } else {
49058
+ addDecl(prop.value);
49059
+ }
49060
+ });
49055
49061
  } else {
49056
49062
  t.addMarker("testForFunctionParameterType", node.loc, param.type);
49057
49063
  }
@@ -49648,6 +49654,9 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
49648
49654
  });
49649
49655
  }
49650
49656
  path.traverse(VISITOR);
49657
+ } else if (keyName == "delegate") {
49658
+ path.skip();
49659
+ path.traverse(VISITOR);
49651
49660
  } else if (keyName == "aliases") {
49652
49661
  path.skip();
49653
49662
  if (!prop.value.properties) {
@@ -49794,7 +49803,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
49794
49803
  ClassDeclaration: 1,
49795
49804
  ClassMethod: 1,
49796
49805
  LabeledStatement: 1,
49797
- BreakStatement: 1
49806
+ BreakStatement: 1,
49807
+ ContinueStatement: 1
49798
49808
  };
49799
49809
 
49800
49810
  // These are AST node types we expect to find at the root of the identifier, and which will
@@ -50102,7 +50112,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
50102
50112
  } else if (name == "this.tr" || name == "this.marktr" || name == "qx.locale.Manager.tr" || name == "qx.locale.Manager.marktr") {
50103
50113
  let arg0 = getStringArg(0);
50104
50114
  if (!arg0) {
50105
- t.addMarker("translate.invalidMessageId", path.node.loc, arg0);
50115
+ t.addMarker("translate.invalidMessageId", path.node.loc, arg0 !== null && arg0 !== void 0 ? arg0 : "");
50106
50116
  } else {
50107
50117
  addTranslation({
50108
50118
  msgid: arg0
@@ -50112,7 +50122,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
50112
50122
  let arg0 = getStringArg(0);
50113
50123
  let arg1 = getStringArg(1);
50114
50124
  if (!arg0 || !arg1) {
50115
- t.addMarker("translate.invalidMessageIds", path.node.loc, arg0, arg1);
50125
+ t.addMarker("translate.invalidMessageIds", path.node.loc, arg0 !== null && arg0 !== void 0 ? arg0 : "", arg1 !== null && arg1 !== void 0 ? arg1 : "");
50116
50126
  } else {
50117
50127
  addTranslation({
50118
50128
  msgid: arg0,
@@ -50280,7 +50290,9 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
50280
50290
  // Object destructuring `var {a,b} = {...}`
50281
50291
  } else if (decl.id.type == "ObjectPattern") {
50282
50292
  decl.id.properties.forEach(prop => {
50283
- if (prop.value.type == "AssignmentPattern") {
50293
+ if (prop.type == "RestElement") {
50294
+ t.addDeclaration(prop.argument.name);
50295
+ } else if (prop.value.type == "AssignmentPattern") {
50284
50296
  t.addDeclaration(prop.value.left.name);
50285
50297
  } else {
50286
50298
  t.addDeclaration(prop.value.name);
@@ -57121,12 +57133,16 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
57121
57133
  });
57122
57134
  if (pkg.isEmbedAllJavascript()) {
57123
57135
  this.__P_49_1 = [];
57136
+ let packageWs = new qx.tool.utils.Utils.LineCountingTransform();
57124
57137
  let strip = new qx.tool.utils.Utils.StripSourceMapTransform();
57125
- strip.pipe(ws);
57138
+ strip.pipe(packageWs);
57139
+ packageWs.pipe(ws, {
57140
+ end: false
57141
+ });
57126
57142
  await new Promise(async resolve => {
57127
57143
  for (let i = 0; i < pkg.getJavascriptMetas().length; i++) {
57128
57144
  let js = pkg.getJavascriptMetas()[i];
57129
- this.__P_49_1.push(ws.getLineNumber());
57145
+ this.__P_49_1.push(packageWs.getLineNumber());
57130
57146
  await js.unwrap().writeSourceCodeToStream(strip);
57131
57147
  strip.write("\n");
57132
57148
  }
@@ -57624,7 +57640,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
57624
57640
  },
57625
57641
  async load() {
57626
57642
  if (this.__P_37_2) {
57627
- this.__P_37_2.forEach(loader => loader.load(this));
57643
+ await Promise.all(this.__P_37_2.map(loader => loader.load(this)));
57628
57644
  }
57629
57645
  },
57630
57646
  async sync(target) {
@@ -66342,6 +66358,22 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
66342
66358
  };
66343
66359
  }
66344
66360
  },
66361
+ "selectbox-arrow-button": "widget",
66362
+ /*
66363
+ ---------------------------------------------------------------------------
66364
+ CHECKED SELECT BOX
66365
+ ---------------------------------------------------------------------------
66366
+ */
66367
+
66368
+ "checked-selectbox": "selectbox",
66369
+ "checked-selectbox/allNone": {
66370
+ include: "button"
66371
+ },
66372
+ "checked-selectbox/tag": "tag",
66373
+ tag: {
66374
+ alias: "button",
66375
+ include: "button"
66376
+ },
66345
66377
  /*
66346
66378
  ---------------------------------------------------------------------------
66347
66379
  COMBO BOX
@@ -66901,8 +66933,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
66901
66933
  decorator: "datechooser-weekday",
66902
66934
  font: "bold",
66903
66935
  textAlign: "center",
66904
- textColor: states.disabled ? "text-disabled" : states.weekend ? "background-selected-dark" : "background",
66905
- backgroundColor: states.weekend ? "background" : "background-selected-dark",
66936
+ textColor: states.disabled ? "text-disabled" : states.weekend ? "datechooser-background-selected-dark" : "datechooser-background",
66937
+ backgroundColor: states.weekend ? "datechooser-background" : "datechooser-background-selected-dark",
66906
66938
  paddingTop: 2
66907
66939
  };
66908
66940
  }
@@ -66922,7 +66954,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
66922
66954
  style(states) {
66923
66955
  return {
66924
66956
  textAlign: "center",
66925
- textColor: "background-selected-dark",
66957
+ textColor: "datechooser-background",
66958
+ backgroundColor: "datechooser-background-selected-dark",
66926
66959
  padding: [2, 4],
66927
66960
  decorator: states.header ? "datechooser-week-header" : "datechooser-week"
66928
66961
  };
@@ -67959,30 +67992,6 @@ qx.$$packageData['0'] = {
67959
67992
  }
67960
67993
  },
67961
67994
  "resources": {
67962
- "qx/decoration/Simple/checkbox/checked-disabled.png": [
67963
- 6,
67964
- 6,
67965
- "png",
67966
- "qx"
67967
- ],
67968
- "qx/decoration/Simple/checkbox/checked.png": [
67969
- 6,
67970
- 6,
67971
- "png",
67972
- "qx"
67973
- ],
67974
- "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
67975
- 6,
67976
- 2,
67977
- "png",
67978
- "qx"
67979
- ],
67980
- "qx/decoration/Simple/checkbox/undetermined.png": [
67981
- 6,
67982
- 2,
67983
- "png",
67984
- "qx"
67985
- ],
67986
67995
  "qx/decoration/Simple/arrows/down-invert.gif": [
67987
67996
  7,
67988
67997
  4,
@@ -68031,15 +68040,15 @@ qx.$$packageData['0'] = {
68031
68040
  "gif",
68032
68041
  "qx"
68033
68042
  ],
68034
- "qx/decoration/Simple/arrows/up-invert.gif": [
68035
- 7,
68043
+ "qx/decoration/Simple/arrows/right.gif": [
68036
68044
  4,
68045
+ 7,
68037
68046
  "gif",
68038
68047
  "qx"
68039
68048
  ],
68040
- "qx/decoration/Simple/arrows/right.gif": [
68041
- 4,
68049
+ "qx/decoration/Simple/arrows/up-invert.gif": [
68042
68050
  7,
68051
+ 4,
68043
68052
  "gif",
68044
68053
  "qx"
68045
68054
  ],
@@ -68055,6 +68064,30 @@ qx.$$packageData['0'] = {
68055
68064
  "gif",
68056
68065
  "qx"
68057
68066
  ],
68067
+ "qx/decoration/Simple/checkbox/checked-disabled.png": [
68068
+ 6,
68069
+ 6,
68070
+ "png",
68071
+ "qx"
68072
+ ],
68073
+ "qx/decoration/Simple/checkbox/checked.png": [
68074
+ 6,
68075
+ 6,
68076
+ "png",
68077
+ "qx"
68078
+ ],
68079
+ "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
68080
+ 6,
68081
+ 2,
68082
+ "png",
68083
+ "qx"
68084
+ ],
68085
+ "qx/decoration/Simple/checkbox/undetermined.png": [
68086
+ 6,
68087
+ 2,
68088
+ "png",
68089
+ "qx"
68090
+ ],
68058
68091
  "qx/decoration/Simple/colorselector/brightness-field.png": [
68059
68092
  19,
68060
68093
  256,
@@ -68085,24 +68118,36 @@ qx.$$packageData['0'] = {
68085
68118
  "gif",
68086
68119
  "qx"
68087
68120
  ],
68088
- "qx/decoration/Simple/cursors/move.gif": [
68089
- 13,
68090
- 9,
68091
- "gif",
68092
- "qx"
68093
- ],
68094
68121
  "qx/decoration/Simple/cursors/copy.gif": [
68095
68122
  19,
68096
68123
  15,
68097
68124
  "gif",
68098
68125
  "qx"
68099
68126
  ],
68127
+ "qx/decoration/Simple/cursors/move.gif": [
68128
+ 13,
68129
+ 9,
68130
+ "gif",
68131
+ "qx"
68132
+ ],
68100
68133
  "qx/decoration/Simple/cursors/nodrop.gif": [
68101
68134
  20,
68102
68135
  20,
68103
68136
  "gif",
68104
68137
  "qx"
68105
68138
  ],
68139
+ "qx/decoration/Simple/splitpane/knob-horizontal.png": [
68140
+ 1,
68141
+ 8,
68142
+ "png",
68143
+ "qx"
68144
+ ],
68145
+ "qx/decoration/Simple/splitpane/knob-vertical.png": [
68146
+ 8,
68147
+ 1,
68148
+ "png",
68149
+ "qx"
68150
+ ],
68106
68151
  "qx/decoration/Simple/menu/checkbox-invert.gif": [
68107
68152
  16,
68108
68153
  7,
@@ -68169,12 +68214,6 @@ qx.$$packageData['0'] = {
68169
68214
  "png",
68170
68215
  "qx"
68171
68216
  ],
68172
- "qx/decoration/Simple/tabview/close.gif": [
68173
- 10,
68174
- 9,
68175
- "gif",
68176
- "qx"
68177
- ],
68178
68217
  "qx/decoration/Simple/tree/minus.gif": [
68179
68218
  19,
68180
68219
  16,
@@ -68259,16 +68298,10 @@ qx.$$packageData['0'] = {
68259
68298
  "gif",
68260
68299
  "qx"
68261
68300
  ],
68262
- "qx/decoration/Simple/splitpane/knob-horizontal.png": [
68263
- 1,
68264
- 8,
68265
- "png",
68266
- "qx"
68267
- ],
68268
- "qx/decoration/Simple/splitpane/knob-vertical.png": [
68269
- 8,
68270
- 1,
68271
- "png",
68301
+ "qx/decoration/Simple/tabview/close.gif": [
68302
+ 10,
68303
+ 9,
68304
+ "gif",
68272
68305
  "qx"
68273
68306
  ],
68274
68307
  "qx/decoration/Simple/window/close-white.gif": [
@@ -68331,66 +68364,54 @@ qx.$$packageData['0'] = {
68331
68364
  "js",
68332
68365
  "qx"
68333
68366
  ],
68334
- "qx/tool/schema/compile-1-0-0.json": [
68367
+ "qx/tool/bin/build-devtools": [
68335
68368
  null,
68336
68369
  null,
68337
- "json",
68370
+ "",
68338
68371
  "qx"
68339
68372
  ],
68340
- "qx/tool/schema/Manifest-1-0-0.json": [
68373
+ "qx/tool/bin/build-website": [
68341
68374
  null,
68342
68375
  null,
68343
- "json",
68376
+ "",
68344
68377
  "qx"
68345
68378
  ],
68346
- "qx/tool/schema/Manifest-2-0-0.json": [
68379
+ "qx/tool/bin/download-assets": [
68347
68380
  null,
68348
68381
  null,
68349
- "json",
68382
+ "",
68350
68383
  "qx"
68351
68384
  ],
68352
- "qx/tool/schema/qooxdoo-1-0-0.json": [
68385
+ "qx/tool/schema/compile-1-0-0.json": [
68353
68386
  null,
68354
68387
  null,
68355
68388
  "json",
68356
68389
  "qx"
68357
68390
  ],
68358
- "qx/tool/website/.gitignore": [
68391
+ "qx/tool/schema/Manifest-1-0-0.json": [
68359
68392
  null,
68360
68393
  null,
68361
- "",
68394
+ "json",
68362
68395
  "qx"
68363
68396
  ],
68364
- "qx/tool/bin/build-devtools": [
68397
+ "qx/tool/schema/Manifest-2-0-0.json": [
68365
68398
  null,
68366
68399
  null,
68367
- "",
68400
+ "json",
68368
68401
  "qx"
68369
68402
  ],
68370
- "qx/tool/bin/build-website": [
68403
+ "qx/tool/schema/qooxdoo-1-0-0.json": [
68371
68404
  null,
68372
68405
  null,
68373
- "",
68406
+ "json",
68374
68407
  "qx"
68375
68408
  ],
68376
- "qx/tool/bin/download-assets": [
68409
+ "qx/tool/website/.gitignore": [
68377
68410
  null,
68378
68411
  null,
68379
68412
  "",
68380
68413
  "qx"
68381
68414
  ],
68382
- "qx/tool/cli/templates/template_vars.js": [
68383
- null,
68384
- null,
68385
- "js",
68386
- "qx"
68387
- ],
68388
- "qx/tool/cli/templates/TypeScriptWriter-base_declaration.d.ts": [
68389
- null,
68390
- null,
68391
- "ts",
68392
- "qx"
68393
- ],
68394
68415
  "qx/tool/website/build/404.html": [
68395
68416
  null,
68396
68417
  null,
@@ -68469,73 +68490,43 @@ qx.$$packageData['0'] = {
68469
68490
  "scss",
68470
68491
  "qx"
68471
68492
  ],
68472
- "qx/tool/website/src/404.html": [
68473
- null,
68474
- null,
68475
- "html",
68476
- "qx"
68477
- ],
68478
- "qx/tool/website/src/about.md": [
68479
- null,
68480
- null,
68481
- "md",
68482
- "qx"
68483
- ],
68484
- "qx/tool/website/src/index.html": [
68485
- null,
68486
- null,
68487
- "html",
68488
- "qx"
68489
- ],
68490
- "qx/tool/cli/templates/class/default.tmpl.js": [
68491
- null,
68492
- null,
68493
- "js",
68494
- "qx"
68495
- ],
68496
- "qx/tool/cli/templates/class/interface.tmpl.js": [
68497
- null,
68498
- null,
68499
- "js",
68500
- "qx"
68501
- ],
68502
- "qx/tool/cli/templates/class/header.tmpl.js": [
68493
+ "qx/tool/cli/templates/template_vars.js": [
68503
68494
  null,
68504
68495
  null,
68505
68496
  "js",
68506
68497
  "qx"
68507
68498
  ],
68508
- "qx/tool/cli/templates/class/mixin.tmpl.js": [
68499
+ "qx/tool/cli/templates/TypeScriptWriter-base_declaration.d.ts": [
68509
68500
  null,
68510
68501
  null,
68511
- "js",
68502
+ "ts",
68512
68503
  "qx"
68513
68504
  ],
68514
- "qx/tool/cli/templates/class/singleton.tmpl.js": [
68505
+ "qx/tool/website/src/404.html": [
68515
68506
  null,
68516
68507
  null,
68517
- "js",
68508
+ "html",
68518
68509
  "qx"
68519
68510
  ],
68520
- "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
68511
+ "qx/tool/website/src/about.md": [
68521
68512
  null,
68522
68513
  null,
68523
- "js",
68514
+ "md",
68524
68515
  "qx"
68525
68516
  ],
68526
- "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
68517
+ "qx/tool/website/src/index.html": [
68527
68518
  null,
68528
68519
  null,
68529
- "js",
68520
+ "html",
68530
68521
  "qx"
68531
68522
  ],
68532
- "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
68523
+ "qx/tool/website/build/assets/abel.css": [
68533
68524
  null,
68534
68525
  null,
68535
- "js",
68526
+ "css",
68536
68527
  "qx"
68537
68528
  ],
68538
- "qx/tool/website/build/assets/abel.css": [
68529
+ "qx/tool/website/build/assets/bootstrap.css": [
68539
68530
  null,
68540
68531
  null,
68541
68532
  "css",
@@ -68547,10 +68538,10 @@ qx.$$packageData['0'] = {
68547
68538
  "css",
68548
68539
  "qx"
68549
68540
  ],
68550
- "qx/tool/website/build/assets/bootstrap.css": [
68541
+ "qx/tool/website/build/assets/bootstrap.min.css.map": [
68551
68542
  null,
68552
68543
  null,
68553
- "css",
68544
+ "map",
68554
68545
  "qx"
68555
68546
  ],
68556
68547
  "qx/tool/website/build/assets/buttons.js": [
@@ -68565,12 +68556,6 @@ qx.$$packageData['0'] = {
68565
68556
  "js",
68566
68557
  "qx"
68567
68558
  ],
68568
- "qx/tool/website/build/assets/bootstrap.min.css.map": [
68569
- null,
68570
- null,
68571
- "map",
68572
- "qx"
68573
- ],
68574
68559
  "qx/tool/website/build/assets/favicon.png": [
68575
68560
  32,
68576
68561
  32,
@@ -68649,25 +68634,49 @@ qx.$$packageData['0'] = {
68649
68634
  "js",
68650
68635
  "qx"
68651
68636
  ],
68652
- "qx/tool/website/src/diagnostics/dependson.html": [
68637
+ "qx/tool/cli/templates/class/default.tmpl.js": [
68653
68638
  null,
68654
68639
  null,
68655
- "html",
68640
+ "js",
68656
68641
  "qx"
68657
68642
  ],
68658
- "qx/tool/website/src/diagnostics/dependson.js": [
68643
+ "qx/tool/cli/templates/class/header.tmpl.js": [
68659
68644
  null,
68660
68645
  null,
68661
68646
  "js",
68662
68647
  "qx"
68663
68648
  ],
68664
- "qx/tool/website/src/diagnostics/requiredby.html": [
68649
+ "qx/tool/cli/templates/class/interface.tmpl.js": [
68665
68650
  null,
68666
68651
  null,
68667
- "html",
68652
+ "js",
68668
68653
  "qx"
68669
68654
  ],
68670
- "qx/tool/website/src/diagnostics/requiredby.js": [
68655
+ "qx/tool/cli/templates/class/mixin.tmpl.js": [
68656
+ null,
68657
+ null,
68658
+ "js",
68659
+ "qx"
68660
+ ],
68661
+ "qx/tool/cli/templates/class/singleton.tmpl.js": [
68662
+ null,
68663
+ null,
68664
+ "js",
68665
+ "qx"
68666
+ ],
68667
+ "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
68668
+ null,
68669
+ null,
68670
+ "js",
68671
+ "qx"
68672
+ ],
68673
+ "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
68674
+ null,
68675
+ null,
68676
+ "js",
68677
+ "qx"
68678
+ ],
68679
+ "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
68671
68680
  null,
68672
68681
  null,
68673
68682
  "js",
@@ -68679,13 +68688,13 @@ qx.$$packageData['0'] = {
68679
68688
  "css",
68680
68689
  "qx"
68681
68690
  ],
68682
- "qx/tool/website/src/assets/bootstrap.css": [
68691
+ "qx/tool/website/src/assets/bootstrap.min.css": [
68683
68692
  null,
68684
68693
  null,
68685
68694
  "css",
68686
68695
  "qx"
68687
68696
  ],
68688
- "qx/tool/website/src/assets/bootstrap.min.css": [
68697
+ "qx/tool/website/src/assets/bootstrap.css": [
68689
68698
  null,
68690
68699
  null,
68691
68700
  "css",
@@ -68751,34 +68760,34 @@ qx.$$packageData['0'] = {
68751
68760
  "svg",
68752
68761
  "qx"
68753
68762
  ],
68754
- "qx/tool/website/src/scripts/serve.js": [
68763
+ "qx/tool/website/src/diagnostics/dependson.js": [
68755
68764
  null,
68756
68765
  null,
68757
68766
  "js",
68758
68767
  "qx"
68759
68768
  ],
68760
- "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
68769
+ "qx/tool/website/src/diagnostics/requiredby.html": [
68761
68770
  null,
68762
68771
  null,
68763
- "tmpl",
68772
+ "html",
68764
68773
  "qx"
68765
68774
  ],
68766
- "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
68775
+ "qx/tool/website/src/diagnostics/requiredby.js": [
68767
68776
  null,
68768
68777
  null,
68769
- "json",
68778
+ "js",
68770
68779
  "qx"
68771
68780
  ],
68772
- "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
68781
+ "qx/tool/website/src/diagnostics/dependson.html": [
68773
68782
  null,
68774
68783
  null,
68775
- "json",
68784
+ "html",
68776
68785
  "qx"
68777
68786
  ],
68778
- "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
68787
+ "qx/tool/website/src/scripts/serve.js": [
68779
68788
  null,
68780
68789
  null,
68781
- "md",
68790
+ "js",
68782
68791
  "qx"
68783
68792
  ],
68784
68793
  "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
@@ -68793,16 +68802,16 @@ qx.$$packageData['0'] = {
68793
68802
  "json",
68794
68803
  "qx"
68795
68804
  ],
68796
- "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
68805
+ "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
68797
68806
  null,
68798
68807
  null,
68799
- "json",
68808
+ "md",
68800
68809
  "qx"
68801
68810
  ],
68802
- "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
68811
+ "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
68803
68812
  null,
68804
68813
  null,
68805
- "md",
68814
+ "json",
68806
68815
  "qx"
68807
68816
  ],
68808
68817
  "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
@@ -68829,46 +68838,52 @@ qx.$$packageData['0'] = {
68829
68838
  "txt",
68830
68839
  "qx"
68831
68840
  ],
68832
- "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
68841
+ "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
68833
68842
  null,
68834
68843
  null,
68835
68844
  "tmpl",
68836
68845
  "qx"
68837
68846
  ],
68838
- "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
68847
+ "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
68839
68848
  null,
68840
68849
  null,
68841
68850
  "json",
68842
68851
  "qx"
68843
68852
  ],
68844
- "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
68853
+ "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
68854
+ null,
68855
+ null,
68856
+ "md",
68857
+ "qx"
68858
+ ],
68859
+ "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
68845
68860
  null,
68846
68861
  null,
68847
68862
  "json",
68848
68863
  "qx"
68849
68864
  ],
68850
- "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
68865
+ "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
68851
68866
  null,
68852
68867
  null,
68853
- "md",
68868
+ "tmpl",
68854
68869
  "qx"
68855
68870
  ],
68856
- "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
68871
+ "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
68857
68872
  null,
68858
68873
  null,
68859
- "html",
68874
+ "json",
68860
68875
  "qx"
68861
68876
  ],
68862
- "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
68877
+ "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
68863
68878
  null,
68864
68879
  null,
68865
- "html",
68880
+ "json",
68866
68881
  "qx"
68867
68882
  ],
68868
- "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
68883
+ "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
68869
68884
  null,
68870
68885
  null,
68871
- "txt",
68886
+ "md",
68872
68887
  "qx"
68873
68888
  ],
68874
68889
  "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
@@ -68895,40 +68910,40 @@ qx.$$packageData['0'] = {
68895
68910
  "txt",
68896
68911
  "qx"
68897
68912
  ],
68898
- "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
68913
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
68899
68914
  null,
68900
68915
  null,
68901
- "txt",
68916
+ "html",
68902
68917
  "qx"
68903
68918
  ],
68904
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
68919
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
68905
68920
  null,
68906
68921
  null,
68907
- "js",
68922
+ "html",
68908
68923
  "qx"
68909
68924
  ],
68910
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
68925
+ "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
68911
68926
  null,
68912
68927
  null,
68913
- "js",
68928
+ "txt",
68914
68929
  "qx"
68915
68930
  ],
68916
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
68917
- 180,
68918
- 180,
68919
- "png",
68931
+ "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
68932
+ null,
68933
+ null,
68934
+ "txt",
68920
68935
  "qx"
68921
68936
  ],
68922
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
68923
- 32,
68924
- 32,
68925
- "png",
68937
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
68938
+ null,
68939
+ null,
68940
+ "js",
68926
68941
  "qx"
68927
68942
  ],
68928
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
68929
- 256,
68930
- 256,
68931
- "png",
68943
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
68944
+ null,
68945
+ null,
68946
+ "js",
68932
68947
  "qx"
68933
68948
  ],
68934
68949
  "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/app.png": [
@@ -68955,34 +68970,52 @@ qx.$$packageData['0'] = {
68955
68970
  "png",
68956
68971
  "qx"
68957
68972
  ],
68958
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
68973
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
68959
68974
  null,
68960
68975
  null,
68961
68976
  "js",
68962
68977
  "qx"
68963
68978
  ],
68964
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
68979
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
68965
68980
  null,
68966
68981
  null,
68967
68982
  "js",
68968
68983
  "qx"
68969
68984
  ],
68970
- "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
68985
+ "qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
68971
68986
  null,
68972
68987
  null,
68973
- "js",
68988
+ "tmpl",
68974
68989
  "qx"
68975
68990
  ],
68976
- "qx/tool/cli/templates/skeleton/server/source/class/custom/__init__.tmpl.js": [
68991
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
68977
68992
  null,
68978
68993
  null,
68979
68994
  "js",
68980
68995
  "qx"
68981
68996
  ],
68982
- "qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
68997
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/__init__.tmpl.js": [
68983
68998
  null,
68984
68999
  null,
68985
- "tmpl",
69000
+ "js",
69001
+ "qx"
69002
+ ],
69003
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/app.png": [
69004
+ 180,
69005
+ 180,
69006
+ "png",
69007
+ "qx"
69008
+ ],
69009
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/favicon.png": [
69010
+ 32,
69011
+ 32,
69012
+ "png",
69013
+ "qx"
69014
+ ],
69015
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/js_256x256.png": [
69016
+ 256,
69017
+ 256,
69018
+ "png",
68986
69019
  "qx"
68987
69020
  ],
68988
69021
  "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
@@ -69003,82 +69036,82 @@ qx.$$packageData['0'] = {
69003
69036
  "png",
69004
69037
  "qx"
69005
69038
  ],
69006
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
69039
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
69007
69040
  null,
69008
69041
  null,
69009
69042
  "js",
69010
69043
  "qx"
69011
69044
  ],
69012
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
69045
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
69013
69046
  null,
69014
69047
  null,
69015
69048
  "js",
69016
69049
  "qx"
69017
69050
  ],
69018
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
69051
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
69019
69052
  null,
69020
69053
  null,
69021
69054
  "js",
69022
69055
  "qx"
69023
69056
  ],
69024
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
69057
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
69025
69058
  null,
69026
69059
  null,
69027
- "scss",
69060
+ "js",
69028
69061
  "qx"
69029
69062
  ],
69030
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
69063
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
69031
69064
  null,
69032
69065
  null,
69033
- "scss",
69066
+ "js",
69034
69067
  "qx"
69035
69068
  ],
69036
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
69069
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
69037
69070
  null,
69038
69071
  null,
69039
- "tmpl",
69072
+ "js",
69040
69073
  "qx"
69041
69074
  ],
69042
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
69075
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
69043
69076
  null,
69044
69077
  null,
69045
69078
  "js",
69046
69079
  "qx"
69047
69080
  ],
69048
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
69081
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
69049
69082
  null,
69050
69083
  null,
69051
69084
  "js",
69052
69085
  "qx"
69053
69086
  ],
69054
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
69087
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
69055
69088
  null,
69056
69089
  null,
69057
69090
  "js",
69058
69091
  "qx"
69059
69092
  ],
69060
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
69093
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
69061
69094
  null,
69062
69095
  null,
69063
69096
  "js",
69064
69097
  "qx"
69065
69098
  ],
69066
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
69099
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
69067
69100
  null,
69068
69101
  null,
69069
- "js",
69102
+ "tmpl",
69070
69103
  "qx"
69071
69104
  ],
69072
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
69105
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
69073
69106
  null,
69074
69107
  null,
69075
- "js",
69108
+ "scss",
69076
69109
  "qx"
69077
69110
  ],
69078
- "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
69111
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
69079
69112
  null,
69080
69113
  null,
69081
- "js",
69114
+ "scss",
69082
69115
  "qx"
69083
69116
  ],
69084
69117
  "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [