ninegrid2 6.664.0 → 6.665.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.
@@ -121070,6 +121070,8 @@ class nxSplitter extends HTMLElement {
121070
121070
  #init = () => {
121071
121071
  this.#detectMode(this);
121072
121072
 
121073
+ this.classList.add(this.#mode);
121074
+
121073
121075
  const contents = this.innerHTML.trim();
121074
121076
  const gripClass = `grip-${this.#mode}`;
121075
121077
  const gripTmpl = (contents === "") ? `<div class="${gripClass}"></div>`: `<div class="${gripClass}"></div>${contents}<div class="${gripClass}"></div>`;
@@ -121066,6 +121066,8 @@ class nxSplitter extends HTMLElement {
121066
121066
  #init = () => {
121067
121067
  this.#detectMode(this);
121068
121068
 
121069
+ this.classList.add(this.#mode);
121070
+
121069
121071
  const contents = this.innerHTML.trim();
121070
121072
  const gripClass = `grip-${this.#mode}`;
121071
121073
  const gripTmpl = (contents === "") ? `<div class="${gripClass}"></div>`: `<div class="${gripClass}"></div>${contents}<div class="${gripClass}"></div>`;
@@ -25,6 +25,8 @@ class nxSplitter extends HTMLElement {
25
25
  #init = () => {
26
26
  this.#detectMode(this);
27
27
 
28
+ this.classList.add(this.#mode)
29
+
28
30
  const contents = this.innerHTML.trim();
29
31
  const gripClass = `grip-${this.#mode}`;
30
32
  const gripTmpl = (contents === "") ? `<div class="${gripClass}"></div>`: `<div class="${gripClass}"></div>${contents}<div class="${gripClass}"></div>`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.664.0",
4
+ "version": "6.665.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -25,6 +25,8 @@ class nxSplitter extends HTMLElement {
25
25
  #init = () => {
26
26
  this.#detectMode(this);
27
27
 
28
+ this.classList.add(this.#mode)
29
+
28
30
  const contents = this.innerHTML.trim();
29
31
  const gripClass = `grip-${this.#mode}`;
30
32
  const gripTmpl = (contents === "") ? `<div class="${gripClass}"></div>`: `<div class="${gripClass}"></div>${contents}<div class="${gripClass}"></div>`;