@genexus/mercury 0.35.0 → 0.36.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +0 -29
  2. package/dist/{assets/MERCURY_ASSETS.d.ts → MERCURY_ASSETS.d.ts} +1032 -1018
  3. package/dist/MERCURY_ASSETS.js +1 -0
  4. package/dist/assets/icons/objects/dark/master-panel.svg +1 -0
  5. package/dist/assets/icons/objects/light/master-panel.svg +1 -0
  6. package/dist/assets-manager.d.ts +3 -3
  7. package/dist/bundles/css/all.css +1 -1
  8. package/dist/bundles/css/base/base-globant.css +1 -1
  9. package/dist/bundles/css/base/base.css +1 -1
  10. package/dist/bundles/css/base/icons.css +1 -1
  11. package/dist/components/chat/render.lit.d.ts +14 -2
  12. package/dist/components/chat/render.lit.js +14 -8
  13. package/dist/register-mercury.js +1 -1
  14. package/package.json +14 -26
  15. package/dist/assets/MERCURY_ASSETS.js +0 -1
  16. package/dist/assets/MERCURY_ASSETS.ts +0 -19308
  17. package/dist/assets/images/mercury-favicon-32x32.png +0 -0
  18. package/dist/assets/images/noise-texture-200x200-original.png +0 -0
  19. package/dist/assets/images/noise-texture-200x200.png +0 -0
  20. package/dist/cli/bundle.d.ts +0 -2
  21. package/dist/cli/bundle.js +0 -191
  22. package/dist/cli/internal/constants.d.ts +0 -19
  23. package/dist/cli/internal/constants.js +0 -24
  24. package/dist/cli/internal/create-bundles-with-custom-paths.d.ts +0 -10
  25. package/dist/cli/internal/create-bundles-with-custom-paths.js +0 -114
  26. package/dist/cli/internal/file-management.d.ts +0 -5
  27. package/dist/cli/internal/file-management.js +0 -53
  28. package/dist/cli/internal/print-utils.d.ts +0 -18
  29. package/dist/cli/internal/print-utils.js +0 -35
  30. package/dist/cli/internal/transpile-bundle-and-create-mappings.d.ts +0 -2
  31. package/dist/cli/internal/transpile-bundle-and-create-mappings.js +0 -57
  32. package/dist/cli/internal/types.d.ts +0 -20
  33. package/dist/cli/internal/types.js +0 -1
  34. package/dist/cli/internal/utils.d.ts +0 -14
  35. package/dist/cli/internal/utils.js +0 -47
  36. package/dist/cli/internal/validate-args.d.ts +0 -2
  37. package/dist/cli/internal/validate-args.js +0 -126
  38. package/dist/cli/internal/watch-fs.d.ts +0 -3
  39. package/dist/cli/internal/watch-fs.js +0 -101
  40. package/dist/cli/mercury.d.ts +0 -2
  41. package/dist/cli/mercury.js +0 -14
package/README.md CHANGED
@@ -120,35 +120,6 @@ The reference below documents all Mercury CSS bundles. The “Bundle name” is
120
120
  | `utils/spacing` | Styles to apply [spacing](https://mercury-showcase.genexus.com/mercury/utility-classes/spacing) in different components that are used as containers |
121
121
  | `utils/typography` | Styles for using the different [typographies](https://mercury-showcase.genexus.com/mercury/utility-classes/typography) |
122
122
 
123
- ---
124
-
125
- ## ⚙️ CLI flags
126
-
127
- The following are the command-line parameters expected by the `mercury` CLI in your `package.json` script. This command generates the necessary assets for the Mercury Design System.
128
-
129
- In example:
130
-
131
- `package.json`
132
-
133
- ```json
134
- "scripts": {
135
- // your other scripts...
136
- "build.css": "mercury --i={{ Icons final path }} --f={{ Fonts path final }} --outDir={{ CSS outDir path }}"
137
- }
138
- ```
139
-
140
- (For complete installation and usage details, be sure to consult the full README for your specific framework)
141
-
142
- | Flag | Description |
143
- | ----------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- |
144
- | `--globant` <br/><br/> `--gl` <br/><br/> `-gl` | If specified, the generated CSS will use the tokens for the Mercury Globant variant. |
145
- | `--icons-path=path` <br/><br/>`--icons=path` <br/><br/>`--i=path` <br/><br/>`-i=path` | Allows you to customize the base path for the icons. If not specified, `./assets/icons/` will be used. |
146
- | `--font-face-path=path` <br/><br/>`--font-face=path` <br/><br/>`--f=path` <br/><br/>`-f=path` | Allows you to customize the base path for the custom fonts. If not specified, `./assets/fonts/` will be used. |
147
- | `--avoid-hash=bundle1,bundle2,...` <br/><br/>`--ah=bundle1,bundle2,...` <br/><br/>`-ah=bundle1,bundle2,...` | Receives a set of comma-separated values, where each value is a bundle. Allows you to avoid the creating the hash for the provided bundles. |
148
- | `--outDir=path` <br/><br/>`--outdir=path` <br/><br/>`--o=path` <br/><br/>`-o=path` | Allows you to customize the path where the CSS files will be created. If not specified, `./mercury/` will be used. |
149
-
150
- ---
151
-
152
123
  ## ⚠️ Common issues
153
124
 
154
125
  The following are some common issues and their solutions you might encounter during installation: