@genexus/mercury 0.4.0 → 0.4.1

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.
package/dist/bundles.d.ts CHANGED
@@ -25,47 +25,47 @@ export type MercuryBundleUtilFormFull = "utils/form--full";
25
25
  */
26
26
  export declare const getThemeBundles: (basePath: string) => [{
27
27
  readonly name: "components/button";
28
- readonly url: `${string}css/components/button.css`;
28
+ readonly url: `${string}components/button.css`;
29
29
  }, {
30
30
  readonly name: "components/checkbox";
31
- readonly url: `${string}css/components/checkbox.css`;
31
+ readonly url: `${string}components/checkbox.css`;
32
32
  }, {
33
33
  readonly name: "components/code";
34
- readonly url: `${string}css/components/code.css`;
34
+ readonly url: `${string}components/code.css`;
35
35
  }, {
36
36
  readonly name: "components/combo-box";
37
- readonly url: `${string}css/components/combo-box.css`;
37
+ readonly url: `${string}components/combo-box.css`;
38
38
  }, {
39
39
  readonly name: "components/dialog";
40
- readonly url: `${string}css/components/dialog.css`;
40
+ readonly url: `${string}components/dialog.css`;
41
41
  }, {
42
42
  readonly name: "components/edit";
43
- readonly url: `${string}css/components/edit.css`;
43
+ readonly url: `${string}components/edit.css`;
44
44
  }, {
45
45
  readonly name: "components/radio-group";
46
- readonly url: `${string}css/components/radio-group.css`;
46
+ readonly url: `${string}components/radio-group.css`;
47
47
  }, {
48
48
  readonly name: "components/tab";
49
- readonly url: `${string}css/components/tab.css`;
49
+ readonly url: `${string}components/tab.css`;
50
50
  }, {
51
51
  readonly name: "components/tabular-grid";
52
- readonly url: `${string}css/components/tabular-grid.css`;
52
+ readonly url: `${string}components/tabular-grid.css`;
53
53
  }, {
54
54
  readonly name: "components/tree-view";
55
- readonly url: `${string}css/components/tree-view.css`;
55
+ readonly url: `${string}components/tree-view.css`;
56
56
  }, {
57
57
  readonly name: "resets/box-sizing";
58
- readonly url: `${string}css/resets/box-sizing.css`;
58
+ readonly url: `${string}resets/box-sizing.css`;
59
59
  }, {
60
60
  readonly name: "utils/form";
61
- readonly url: `${string}css/utils/form.css`;
61
+ readonly url: `${string}utils/form.css`;
62
62
  }, {
63
63
  readonly name: "utils/form--full";
64
- readonly url: `${string}css/utils/form--full.css`;
64
+ readonly url: `${string}utils/form--full.css`;
65
65
  }, {
66
66
  readonly name: "utils/layout";
67
- readonly url: `${string}css/utils/layout.css`;
67
+ readonly url: `${string}utils/layout.css`;
68
68
  }, {
69
69
  readonly name: "utils/typography";
70
- readonly url: `${string}css/utils/typography.css`;
70
+ readonly url: `${string}utils/typography.css`;
71
71
  }];
package/dist/bundles.js CHANGED
@@ -1,6 +1,6 @@
1
- const getThemeModelItem = (assetsPath, bundleName) => ({
1
+ const getThemeModelItem = (basePath, bundleName) => ({
2
2
  name: bundleName,
3
- url: `${assetsPath}css/${bundleName}.css`
3
+ url: `${basePath}${bundleName}.css`
4
4
  });
5
5
  /**
6
6
  * Given the basePath, returns all bundles (except base and icons) in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@genexus/mercury",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Mercury is the design system designed for GeneXus IDE Web and GeneXus Next",
5
5
  "main": "dist/mercury.scss",
6
6
  "module": "dist/assets-manager.js",