domma-js 0.27.2 → 0.27.4
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/assets/types/flags.d.ts +130 -0
- package/assets/types/index.d.ts +8 -0
- package/package.json +3 -1
- package/public/dist/bundles/domma-complete.css +27 -14
- package/public/dist/bundles/domma-data-focused.css +27 -14
- package/public/dist/bundles/domma-essentials.css +27 -14
- package/public/dist/bundles/domma-full.css +27 -14
- package/public/dist/bundles/domma-minimal.css +8 -8
- package/public/dist/domma-flags.esm.js +10 -0
- package/public/dist/domma-flags.min.js +10 -0
- package/public/dist/domma-syntax.min.js +3 -3
- package/public/dist/domma.css +3 -3
- package/public/dist/domma.esm.js +4 -4
- package/public/dist/domma.min.js +4 -4
- package/public/dist/elements.css +16 -3
- package/public/dist/grid.css +3 -3
- package/public/dist/syntax.css +3 -3
- package/public/dist/themes/domma-themes.css +3 -3
package/public/dist/elements.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Elements CSS v0.27.
|
|
2
|
+
* Domma Elements CSS v0.27.4
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-06-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-06-14T20:51:31.646Z
|
|
6
|
+
* Commit: f33c102
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -2604,6 +2604,19 @@ code {
|
|
|
2604
2604
|
border-color: var(--dm-border-dark, var(--dm-border));
|
|
2605
2605
|
}
|
|
2606
2606
|
|
|
2607
|
+
/* Collision classes toggled by Navbar._positionMenu() to keep menus on-screen:
|
|
2608
|
+
a flyout that overruns the right edge opens to the left of its parent instead,
|
|
2609
|
+
and a top-level menu near the right edge right-aligns under its toggle. */
|
|
2610
|
+
.navbar-dropdown-submenu.navbar-dropdown-flip-x {
|
|
2611
|
+
left: auto;
|
|
2612
|
+
right: 100%;
|
|
2613
|
+
margin: 0 0.25rem 0 0;
|
|
2614
|
+
}
|
|
2615
|
+
.navbar-dropdown-menu.navbar-dropdown-flip-end {
|
|
2616
|
+
left: auto;
|
|
2617
|
+
right: 0;
|
|
2618
|
+
}
|
|
2619
|
+
|
|
2607
2620
|
/* On mobile the nested menu stacks and indents instead of flying out */
|
|
2608
2621
|
@media (max-width: 992px) {
|
|
2609
2622
|
.navbar-dropdown-submenu {
|
package/public/dist/grid.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Grid CSS v0.27.
|
|
2
|
+
* Domma Grid CSS v0.27.4
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-06-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-06-14T20:51:31.641Z
|
|
6
|
+
* Commit: f33c102
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
package/public/dist/syntax.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Syntax Highlighting CSS v0.27.
|
|
2
|
+
* Domma Syntax Highlighting CSS v0.27.4
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-06-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-06-14T20:51:31.650Z
|
|
6
|
+
* Commit: f33c102
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Themes v0.27.
|
|
2
|
+
* Domma Themes v0.27.4
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-06-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-06-14T20:51:31.625Z
|
|
6
|
+
* Commit: f33c102
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|