rt-native 1.0.112 → 1.0.114

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/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  **Author:** Ryan Kueter
4
4
  **Updated:** May, 2026
5
5
 
6
- **rt-native.js** HTML Editor is a free native web component that provides accessibility features and a wide variety of elements and customizations that make it one of the most robust and flexible HTML editors available. It allows the programmer to apply custom .css files to the preview window, so see how the content will be displayed in production. The editor uses embedded .svg Google Font Icons and the shadow DOM to isolate the HTML from inheriting the existing page styles. No frameworks, no build step, no dependencies — drop **one script tag** into any HTML page and you're done.
6
+ **rt-native.js** HTML Editor is a free native web component that provides accessibility features and a wide variety of elements and customizations that make it one of the most robust and flexible HTML editors available. It allows the programmer to apply custom .css files to the preview window, to see how the content will be displayed in production. The editor uses embedded .svg Google Font Icons and the shadow DOM to isolate the HTML from inheriting the existing page styles. No frameworks, no build step, no dependencies — drop **one script tag** into any HTML page and you're done.
7
7
 
8
8
  ---
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rt-native",
3
- "version": "1.0.112",
3
+ "version": "1.0.114",
4
4
  "description": "rt-native HTML Editor is a free native web component that provides accessibility features and a wide variety of elements and customizations that make it one of the most robust and flexible HTML editors available. It allows the programmer to apply custom .css files to the preview window, so see how the content will be displayed in production. The editor uses embedded .svg Google Font Icons and the shadow DOM to isolate the HTML from inheriting the existing page styles. No frameworks, no build step, no dependencies — drop one script tag into any HTML page and you're done.",
5
5
  "main": "rt-native.js",
6
6
  "exports": {
package/rt-native.js CHANGED
@@ -6671,7 +6671,7 @@ rt-native {
6671
6671
  ${v.redo ? this._btn('blazing-rich-text-redo-button', 'Redo', 'Redo (Ctrl+Y)', 'goForward') : ''}
6672
6672
  ${historyDividerNeeded ? this._divider() : ''}
6673
6673
 
6674
- ${v.statusBarToggle? this._specialBtn('blazing-rich-text-statusbar-button', 'StatusBar', 'Toggle Status Bar (Ctrl+\\)', 'toggleStatusBar') : ''}
6674
+ ${v.statusBarToggle? this._btn('blazing-rich-text-statusbar-button', 'StatusBar', 'Toggle Status Bar (Ctrl+\\)', 'toggleStatusBar') : ''}
6675
6675
  ${v.saveHtml ? this._specialBtn('blazing-rich-text-save-button', 'SaveHtml', 'Save HTML (Ctrl+Shift+S)', 'saveHtml') : ''}
6676
6676
  ${v.htmlView ? this._specialBtn('blazing-rich-text-source', 'Code', 'HTML Source (Ctrl+Shift+A)', 'toggleView') : ''}
6677
6677
  ${v.preview ? this._specialBtn('blazing-rich-text-preview-button', 'Preview', 'Preview (Ctrl+Shift+P)', 'openPreview') : ''}