@aquera/nile-elements 0.1.2 → 0.1.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 (28) hide show
  1. package/README.md +5 -0
  2. package/dist/nile-code-editor/extensionSetup.cjs.js.map +1 -1
  3. package/dist/nile-code-editor/nile-code-editor.cjs.js +1 -1
  4. package/dist/nile-code-editor/nile-code-editor.cjs.js.map +1 -1
  5. package/dist/nile-code-editor/nile-code-editor.esm.js +2 -2
  6. package/dist/nile-drawer/nile-drawer.css.cjs.js +1 -1
  7. package/dist/nile-drawer/nile-drawer.css.cjs.js.map +1 -1
  8. package/dist/nile-drawer/nile-drawer.css.esm.js +1 -1
  9. package/dist/nile-form-help-text/nile-form-help-text.cjs.js +1 -1
  10. package/dist/nile-form-help-text/nile-form-help-text.cjs.js.map +1 -1
  11. package/dist/nile-form-help-text/nile-form-help-text.esm.js +2 -2
  12. package/dist/src/nile-code-editor/extensionSetup.d.ts +8 -9
  13. package/dist/src/nile-code-editor/extensionSetup.js +0 -13
  14. package/dist/src/nile-code-editor/extensionSetup.js.map +1 -1
  15. package/dist/src/nile-code-editor/nile-code-editor.d.ts +19 -0
  16. package/dist/src/nile-code-editor/nile-code-editor.js +61 -2
  17. package/dist/src/nile-code-editor/nile-code-editor.js.map +1 -1
  18. package/dist/src/nile-drawer/nile-drawer.css.js +1 -1
  19. package/dist/src/nile-drawer/nile-drawer.css.js.map +1 -1
  20. package/dist/src/nile-form-help-text/nile-form-help-text.js +32 -2
  21. package/dist/src/nile-form-help-text/nile-form-help-text.js.map +1 -1
  22. package/dist/tsconfig.tsbuildinfo +1 -1
  23. package/package.json +1 -1
  24. package/src/nile-code-editor/extensionSetup.ts +8 -23
  25. package/src/nile-code-editor/nile-code-editor.ts +59 -3
  26. package/src/nile-drawer/nile-drawer.css.ts +1 -1
  27. package/src/nile-form-help-text/nile-form-help-text.ts +37 -3
  28. package/vscode-html-custom-data.json +5 -1
package/README.md CHANGED
@@ -79,6 +79,11 @@ To run a local development server that serves the basic demo located in `demo/in
79
79
 
80
80
  In this section, you can find the updates for each release of `nile-elements`. It's a good practice to maintain detailed release notes to help users and developers understand what changes have been made from one version to another and how these changes might affect their projects.
81
81
 
82
+ #### Version 0.1.3
83
+ - Nile Code Editor - HTML language support available
84
+ - Nile Form Help Text - Help message UI fixes
85
+ - Nile Drawer - Spacing in close icon and header-actions slot increased
86
+
82
87
  #### Version 0.1.2
83
88
  - Nile Code Editor - Property added customCompletionsPaths (recieves list of paths to be used for custom completions suggestions)
84
89