@qooxdoo/framework 7.9.2 → 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 (27) hide show
  1. package/Manifest.json +1 -1
  2. package/lib/compiler/compile-info.json +48 -48
  3. package/lib/compiler/index.js +247 -214
  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/ui/basic/Label.js +106 -0
  9. package/source/class/qx/test/ui/core/Blocker.js +121 -0
  10. package/source/class/qx/test/ui/tree/virtual/Tree.js +36 -0
  11. package/source/class/qx/test/util/DateFormat.js +1 -1
  12. package/source/class/qx/theme/classic/Appearance.js +21 -0
  13. package/source/class/qx/theme/indigo/ColorDark.js +2 -0
  14. package/source/class/qx/theme/modern/Appearance.js +21 -0
  15. package/source/class/qx/theme/simple/Appearance.js +27 -5
  16. package/source/class/qx/theme/tangible/Appearance.js +2 -0
  17. package/source/class/qx/tool/compiler/ClassFile.js +18 -6
  18. package/source/class/qx/tool/compiler/resources/Asset.js +1 -1
  19. package/source/class/qx/tool/compiler/targets/meta/PackageJavascript.js +6 -2
  20. package/source/class/qx/ui/core/Blocker.js +16 -3
  21. package/source/class/qx/ui/form/validation/Manager.js +1 -1
  22. package/source/class/qx/ui/mobile/dialog/Popup.js +13 -1
  23. package/source/class/qx/ui/table/Table.js +5 -4
  24. package/source/class/qx/ui/tree/VirtualTree.js +4 -1
  25. package/source/class/qx/util/format/DateFormat.js +3 -2
  26. package/source/resource/qx/decoration/Modern/table/boolean-false.png +0 -0
  27. 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.2",
129
- "qx.version": "7.9.2",
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.2";
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/colorselector/brightness-field.png": [
67963
- 19,
67964
- 256,
67965
- "png",
67966
- "qx"
67967
- ],
67968
- "qx/decoration/Simple/colorselector/brightness-handle.gif": [
67969
- 35,
67970
- 11,
67971
- "gif",
67972
- "qx"
67973
- ],
67974
- "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
67975
- 256,
67976
- 256,
67977
- "jpg",
67978
- "qx"
67979
- ],
67980
- "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
67981
- 11,
67982
- 11,
67983
- "gif",
67984
- "qx"
67985
- ],
67986
67995
  "qx/decoration/Simple/arrows/down-invert.gif": [
67987
67996
  7,
67988
67997
  4,
@@ -68079,27 +68088,27 @@ qx.$$packageData['0'] = {
68079
68088
  "png",
68080
68089
  "qx"
68081
68090
  ],
68082
- "qx/decoration/Simple/menu/checkbox-invert.gif": [
68083
- 16,
68084
- 7,
68085
- "gif",
68091
+ "qx/decoration/Simple/colorselector/brightness-field.png": [
68092
+ 19,
68093
+ 256,
68094
+ "png",
68086
68095
  "qx"
68087
68096
  ],
68088
- "qx/decoration/Simple/menu/checkbox.gif": [
68089
- 16,
68090
- 7,
68097
+ "qx/decoration/Simple/colorselector/brightness-handle.gif": [
68098
+ 35,
68099
+ 11,
68091
68100
  "gif",
68092
68101
  "qx"
68093
68102
  ],
68094
- "qx/decoration/Simple/menu/radiobutton-invert.gif": [
68095
- 16,
68096
- 5,
68097
- "gif",
68103
+ "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
68104
+ 256,
68105
+ 256,
68106
+ "jpg",
68098
68107
  "qx"
68099
68108
  ],
68100
- "qx/decoration/Simple/menu/radiobutton.gif": [
68101
- 16,
68102
- 5,
68109
+ "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
68110
+ 11,
68111
+ 11,
68103
68112
  "gif",
68104
68113
  "qx"
68105
68114
  ],
@@ -68127,6 +68136,42 @@ qx.$$packageData['0'] = {
68127
68136
  "gif",
68128
68137
  "qx"
68129
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
+ ],
68151
+ "qx/decoration/Simple/menu/checkbox-invert.gif": [
68152
+ 16,
68153
+ 7,
68154
+ "gif",
68155
+ "qx"
68156
+ ],
68157
+ "qx/decoration/Simple/menu/checkbox.gif": [
68158
+ 16,
68159
+ 7,
68160
+ "gif",
68161
+ "qx"
68162
+ ],
68163
+ "qx/decoration/Simple/menu/radiobutton-invert.gif": [
68164
+ 16,
68165
+ 5,
68166
+ "gif",
68167
+ "qx"
68168
+ ],
68169
+ "qx/decoration/Simple/menu/radiobutton.gif": [
68170
+ 16,
68171
+ 5,
68172
+ "gif",
68173
+ "qx"
68174
+ ],
68130
68175
  "qx/decoration/Simple/table/ascending-invert.png": [
68131
68176
  10,
68132
68177
  10,
@@ -68169,24 +68214,6 @@ qx.$$packageData['0'] = {
68169
68214
  "png",
68170
68215
  "qx"
68171
68216
  ],
68172
- "qx/decoration/Simple/splitpane/knob-horizontal.png": [
68173
- 1,
68174
- 8,
68175
- "png",
68176
- "qx"
68177
- ],
68178
- "qx/decoration/Simple/splitpane/knob-vertical.png": [
68179
- 8,
68180
- 1,
68181
- "png",
68182
- "qx"
68183
- ],
68184
- "qx/decoration/Simple/tabview/close.gif": [
68185
- 10,
68186
- 9,
68187
- "gif",
68188
- "qx"
68189
- ],
68190
68217
  "qx/decoration/Simple/tree/minus.gif": [
68191
68218
  19,
68192
68219
  16,
@@ -68271,6 +68298,12 @@ qx.$$packageData['0'] = {
68271
68298
  "gif",
68272
68299
  "qx"
68273
68300
  ],
68301
+ "qx/decoration/Simple/tabview/close.gif": [
68302
+ 10,
68303
+ 9,
68304
+ "gif",
68305
+ "qx"
68306
+ ],
68274
68307
  "qx/decoration/Simple/window/close-white.gif": [
68275
68308
  10,
68276
68309
  9,
@@ -68403,6 +68436,12 @@ qx.$$packageData['0'] = {
68403
68436
  "css",
68404
68437
  "qx"
68405
68438
  ],
68439
+ "qx/tool/website/layouts/default.dot": [
68440
+ null,
68441
+ null,
68442
+ "dot",
68443
+ "qx"
68444
+ ],
68406
68445
  "qx/tool/website/partials/footer.html": [
68407
68446
  null,
68408
68447
  null,
@@ -68451,40 +68490,34 @@ qx.$$packageData['0'] = {
68451
68490
  "scss",
68452
68491
  "qx"
68453
68492
  ],
68454
- "qx/tool/website/src/404.html": [
68493
+ "qx/tool/cli/templates/template_vars.js": [
68455
68494
  null,
68456
68495
  null,
68457
- "html",
68496
+ "js",
68458
68497
  "qx"
68459
68498
  ],
68460
- "qx/tool/website/src/about.md": [
68499
+ "qx/tool/cli/templates/TypeScriptWriter-base_declaration.d.ts": [
68461
68500
  null,
68462
68501
  null,
68463
- "md",
68502
+ "ts",
68464
68503
  "qx"
68465
68504
  ],
68466
- "qx/tool/website/src/index.html": [
68505
+ "qx/tool/website/src/404.html": [
68467
68506
  null,
68468
68507
  null,
68469
68508
  "html",
68470
68509
  "qx"
68471
68510
  ],
68472
- "qx/tool/website/layouts/default.dot": [
68473
- null,
68474
- null,
68475
- "dot",
68476
- "qx"
68477
- ],
68478
- "qx/tool/cli/templates/template_vars.js": [
68511
+ "qx/tool/website/src/about.md": [
68479
68512
  null,
68480
68513
  null,
68481
- "js",
68514
+ "md",
68482
68515
  "qx"
68483
68516
  ],
68484
- "qx/tool/cli/templates/TypeScriptWriter-base_declaration.d.ts": [
68517
+ "qx/tool/website/src/index.html": [
68485
68518
  null,
68486
68519
  null,
68487
- "ts",
68520
+ "html",
68488
68521
  "qx"
68489
68522
  ],
68490
68523
  "qx/tool/website/build/assets/abel.css": [
@@ -68601,19 +68634,67 @@ qx.$$packageData['0'] = {
68601
68634
  "js",
68602
68635
  "qx"
68603
68636
  ],
68637
+ "qx/tool/cli/templates/class/default.tmpl.js": [
68638
+ null,
68639
+ null,
68640
+ "js",
68641
+ "qx"
68642
+ ],
68643
+ "qx/tool/cli/templates/class/header.tmpl.js": [
68644
+ null,
68645
+ null,
68646
+ "js",
68647
+ "qx"
68648
+ ],
68649
+ "qx/tool/cli/templates/class/interface.tmpl.js": [
68650
+ null,
68651
+ null,
68652
+ "js",
68653
+ "qx"
68654
+ ],
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": [
68680
+ null,
68681
+ null,
68682
+ "js",
68683
+ "qx"
68684
+ ],
68604
68685
  "qx/tool/website/src/assets/abel.css": [
68605
68686
  null,
68606
68687
  null,
68607
68688
  "css",
68608
68689
  "qx"
68609
68690
  ],
68610
- "qx/tool/website/src/assets/bootstrap.css": [
68691
+ "qx/tool/website/src/assets/bootstrap.min.css": [
68611
68692
  null,
68612
68693
  null,
68613
68694
  "css",
68614
68695
  "qx"
68615
68696
  ],
68616
- "qx/tool/website/src/assets/bootstrap.min.css": [
68697
+ "qx/tool/website/src/assets/bootstrap.css": [
68617
68698
  null,
68618
68699
  null,
68619
68700
  "css",
@@ -68679,18 +68760,6 @@ qx.$$packageData['0'] = {
68679
68760
  "svg",
68680
68761
  "qx"
68681
68762
  ],
68682
- "qx/tool/website/src/scripts/serve.js": [
68683
- null,
68684
- null,
68685
- "js",
68686
- "qx"
68687
- ],
68688
- "qx/tool/website/src/diagnostics/dependson.html": [
68689
- null,
68690
- null,
68691
- "html",
68692
- "qx"
68693
- ],
68694
68763
  "qx/tool/website/src/diagnostics/dependson.js": [
68695
68764
  null,
68696
68765
  null,
@@ -68709,156 +68778,114 @@ qx.$$packageData['0'] = {
68709
68778
  "js",
68710
68779
  "qx"
68711
68780
  ],
68712
- "qx/tool/cli/templates/class/default.tmpl.js": [
68713
- null,
68714
- null,
68715
- "js",
68716
- "qx"
68717
- ],
68718
- "qx/tool/cli/templates/class/header.tmpl.js": [
68781
+ "qx/tool/website/src/diagnostics/dependson.html": [
68719
68782
  null,
68720
68783
  null,
68721
- "js",
68784
+ "html",
68722
68785
  "qx"
68723
68786
  ],
68724
- "qx/tool/cli/templates/class/interface.tmpl.js": [
68787
+ "qx/tool/website/src/scripts/serve.js": [
68725
68788
  null,
68726
68789
  null,
68727
68790
  "js",
68728
68791
  "qx"
68729
68792
  ],
68730
- "qx/tool/cli/templates/class/mixin.tmpl.js": [
68793
+ "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
68731
68794
  null,
68732
68795
  null,
68733
- "js",
68796
+ "tmpl",
68734
68797
  "qx"
68735
68798
  ],
68736
- "qx/tool/cli/templates/class/singleton.tmpl.js": [
68799
+ "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
68737
68800
  null,
68738
68801
  null,
68739
- "js",
68802
+ "json",
68740
68803
  "qx"
68741
68804
  ],
68742
- "qx/tool/cli/templates/loader/loader-node.tmpl.js": [
68805
+ "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
68743
68806
  null,
68744
68807
  null,
68745
- "js",
68808
+ "md",
68746
68809
  "qx"
68747
68810
  ],
68748
- "qx/tool/cli/templates/loader/loader-browser.tmpl.js": [
68811
+ "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
68749
68812
  null,
68750
68813
  null,
68751
- "js",
68814
+ "json",
68752
68815
  "qx"
68753
68816
  ],
68754
- "qx/tool/cli/templates/loader/loader-rhino.tmpl.js": [
68817
+ "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
68755
68818
  null,
68756
68819
  null,
68757
- "js",
68820
+ "tmpl",
68758
68821
  "qx"
68759
68822
  ],
68760
- "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
68823
+ "qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
68761
68824
  null,
68762
68825
  null,
68763
68826
  "json",
68764
68827
  "qx"
68765
68828
  ],
68766
- "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
68829
+ "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
68767
68830
  null,
68768
68831
  null,
68769
68832
  "json",
68770
68833
  "qx"
68771
68834
  ],
68772
- "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
68773
- null,
68774
- null,
68775
- "tmpl",
68776
- "qx"
68777
- ],
68778
- "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
68835
+ "qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
68779
68836
  null,
68780
68837
  null,
68781
- "md",
68838
+ "txt",
68782
68839
  "qx"
68783
68840
  ],
68784
- "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
68841
+ "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
68785
68842
  null,
68786
68843
  null,
68787
68844
  "tmpl",
68788
68845
  "qx"
68789
68846
  ],
68790
- "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
68847
+ "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
68791
68848
  null,
68792
68849
  null,
68793
68850
  "json",
68794
68851
  "qx"
68795
68852
  ],
68796
- "qx/tool/cli/templates/skeleton/desktop/readme.tmpl.md": [
68853
+ "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
68797
68854
  null,
68798
68855
  null,
68799
68856
  "md",
68800
68857
  "qx"
68801
68858
  ],
68802
- "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
68803
- null,
68804
- null,
68805
- "json",
68806
- "qx"
68807
- ],
68808
- "qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
68809
- null,
68810
- null,
68811
- "json",
68812
- "qx"
68813
- ],
68814
- "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
68815
- null,
68816
- null,
68817
- "tmpl",
68818
- "qx"
68819
- ],
68820
- "qx/tool/cli/templates/skeleton/server/readme.tmpl.txt": [
68821
- null,
68822
- null,
68823
- "txt",
68824
- "qx"
68825
- ],
68826
- "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
68859
+ "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
68827
68860
  null,
68828
68861
  null,
68829
68862
  "json",
68830
68863
  "qx"
68831
68864
  ],
68832
- "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
68865
+ "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
68833
68866
  null,
68834
68867
  null,
68835
68868
  "tmpl",
68836
68869
  "qx"
68837
68870
  ],
68838
- "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
68871
+ "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
68839
68872
  null,
68840
68873
  null,
68841
68874
  "json",
68842
68875
  "qx"
68843
68876
  ],
68844
- "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
68877
+ "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
68845
68878
  null,
68846
68879
  null,
68847
68880
  "json",
68848
68881
  "qx"
68849
68882
  ],
68850
- "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
68883
+ "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
68851
68884
  null,
68852
68885
  null,
68853
68886
  "md",
68854
68887
  "qx"
68855
68888
  ],
68856
- "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
68857
- null,
68858
- null,
68859
- "txt",
68860
- "qx"
68861
- ],
68862
68889
  "qx/tool/cli/templates/skeleton/desktop/source/boot/index.tmpl.html": [
68863
68890
  null,
68864
68891
  null,
@@ -68877,22 +68904,22 @@ qx.$$packageData['0'] = {
68877
68904
  "txt",
68878
68905
  "qx"
68879
68906
  ],
68880
- "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
68907
+ "qx/tool/cli/templates/skeleton/server/source/translation/readme.txt": [
68881
68908
  null,
68882
68909
  null,
68883
- "html",
68910
+ "txt",
68884
68911
  "qx"
68885
68912
  ],
68886
- "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
68913
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
68887
68914
  null,
68888
68915
  null,
68889
68916
  "html",
68890
68917
  "qx"
68891
68918
  ],
68892
- "qx/tool/cli/templates/skeleton/server/source/translation/readme.txt": [
68919
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
68893
68920
  null,
68894
68921
  null,
68895
- "txt",
68922
+ "html",
68896
68923
  "qx"
68897
68924
  ],
68898
68925
  "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
@@ -68901,22 +68928,10 @@ qx.$$packageData['0'] = {
68901
68928
  "txt",
68902
68929
  "qx"
68903
68930
  ],
68904
- "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
68905
- 32,
68906
- 32,
68907
- "png",
68908
- "qx"
68909
- ],
68910
- "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
68911
- null,
68912
- null,
68913
- "js",
68914
- "qx"
68915
- ],
68916
- "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
68931
+ "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
68917
68932
  null,
68918
68933
  null,
68919
- "js",
68934
+ "txt",
68920
68935
  "qx"
68921
68936
  ],
68922
68937
  "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
@@ -68955,22 +68970,22 @@ qx.$$packageData['0'] = {
68955
68970
  "png",
68956
68971
  "qx"
68957
68972
  ],
68958
- "qx/tool/cli/templates/skeleton/server/source/resource/custom/.gitignore.tmpl": [
68973
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
68959
68974
  null,
68960
68975
  null,
68961
- "tmpl",
68976
+ "js",
68962
68977
  "qx"
68963
68978
  ],
68964
- "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.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/__init__.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
68991
  "qx/tool/cli/templates/skeleton/mobile/source/class/custom/Application.tmpl.js": [
@@ -69003,124 +69018,142 @@ qx.$$packageData['0'] = {
69003
69018
  "png",
69004
69019
  "qx"
69005
69020
  ],
69006
- "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
69021
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
69007
69022
  null,
69008
69023
  null,
69009
69024
  "js",
69010
69025
  "qx"
69011
69026
  ],
69012
- "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
69027
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
69013
69028
  null,
69014
69029
  null,
69015
69030
  "js",
69016
69031
  "qx"
69017
69032
  ],
69018
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
69033
+ "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
69034
+ 32,
69035
+ 32,
69036
+ "png",
69037
+ "qx"
69038
+ ],
69039
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
69019
69040
  null,
69020
69041
  null,
69021
69042
  "js",
69022
69043
  "qx"
69023
69044
  ],
69024
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
69045
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
69025
69046
  null,
69026
69047
  null,
69027
69048
  "js",
69028
69049
  "qx"
69029
69050
  ],
69030
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
69051
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
69031
69052
  null,
69032
69053
  null,
69033
69054
  "js",
69034
69055
  "qx"
69035
69056
  ],
69036
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
69057
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Decoration.tmpl.js": [
69037
69058
  null,
69038
69059
  null,
69039
69060
  "js",
69040
69061
  "qx"
69041
69062
  ],
69042
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
69063
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
69043
69064
  null,
69044
69065
  null,
69045
69066
  "js",
69046
69067
  "qx"
69047
69068
  ],
69048
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
69069
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
69049
69070
  null,
69050
69071
  null,
69051
69072
  "js",
69052
69073
  "qx"
69053
69074
  ],
69054
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Color.tmpl.js": [
69075
+ "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
69055
69076
  null,
69056
69077
  null,
69057
69078
  "js",
69058
69079
  "qx"
69059
69080
  ],
69060
- "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": [
69061
69082
  null,
69062
69083
  null,
69063
69084
  "js",
69064
69085
  "qx"
69065
69086
  ],
69066
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Font.tmpl.js": [
69087
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
69067
69088
  null,
69068
69089
  null,
69069
69090
  "js",
69070
69091
  "qx"
69071
69092
  ],
69072
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Theme.tmpl.js": [
69093
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
69073
69094
  null,
69074
69095
  null,
69075
69096
  "js",
69076
69097
  "qx"
69077
69098
  ],
69078
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
69099
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
69079
69100
  null,
69080
69101
  null,
69081
- "js",
69102
+ "tmpl",
69082
69103
  "qx"
69083
69104
  ],
69084
- "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [
69105
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
69106
+ null,
69107
+ null,
69108
+ "scss",
69109
+ "qx"
69110
+ ],
69111
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
69112
+ null,
69113
+ null,
69114
+ "scss",
69115
+ "qx"
69116
+ ],
69117
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
69085
69118
  null,
69086
69119
  null,
69087
69120
  "js",
69088
69121
  "qx"
69089
69122
  ],
69090
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
69123
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
69091
69124
  null,
69092
69125
  null,
69093
69126
  "js",
69094
69127
  "qx"
69095
69128
  ],
69096
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
69129
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
69097
69130
  null,
69098
69131
  null,
69099
69132
  "js",
69100
69133
  "qx"
69101
69134
  ],
69102
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
69135
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
69103
69136
  null,
69104
69137
  null,
69105
69138
  "js",
69106
69139
  "qx"
69107
69140
  ],
69108
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
69141
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
69109
69142
  null,
69110
69143
  null,
69111
- "tmpl",
69144
+ "js",
69112
69145
  "qx"
69113
69146
  ],
69114
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
69147
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
69115
69148
  null,
69116
69149
  null,
69117
- "scss",
69150
+ "js",
69118
69151
  "qx"
69119
69152
  ],
69120
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
69153
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
69121
69154
  null,
69122
69155
  null,
69123
- "scss",
69156
+ "js",
69124
69157
  "qx"
69125
69158
  ],
69126
69159
  "qx/tool/cli/templates/skeleton/package/source/class/custom/resource/custom/test.png": [