domma-js 0.29.2 → 0.29.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.
- package/assets/types/elements.d.ts +657 -657
- package/package.json +1 -1
- package/public/dist/bundles/domma-complete.css +40 -14
- package/public/dist/bundles/domma-data-focused.css +40 -14
- package/public/dist/bundles/domma-essentials.css +40 -14
- package/public/dist/bundles/domma-full.css +40 -14
- package/public/dist/bundles/domma-minimal.css +8 -8
- package/public/dist/domma-flags.esm.js +3 -3
- package/public/dist/domma-flags.min.js +3 -3
- 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 +29 -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/bundles/domma-grayve.css +0 -16852
- package/public/dist/themes/grayve.css +0 -213
package/public/dist/elements.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Elements CSS v0.29.
|
|
2
|
+
* Domma Elements CSS v0.29.3
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-07-01T10:03:02.855Z
|
|
6
|
+
* Commit: 63e2f20
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -5303,6 +5303,32 @@ code {
|
|
|
5303
5303
|
transform: translateY(0);
|
|
5304
5304
|
}
|
|
5305
5305
|
|
|
5306
|
+
/*
|
|
5307
|
+
* Hover bridge: the menu is rendered as a document.body sibling positioned with a
|
|
5308
|
+
* small offset/margin gap from its trigger. On a hover-triggered dropdown that gap
|
|
5309
|
+
* is a dead-zone — the pointer leaves the trigger before reaching the menu, firing
|
|
5310
|
+
* the close. These transparent pseudo-elements extend the menu's hoverable area
|
|
5311
|
+
* above and below it, so the trigger→menu path is one continuous hover surface.
|
|
5312
|
+
* Only present on hover dropdowns, so click dropdowns are unaffected.
|
|
5313
|
+
*/
|
|
5314
|
+
.domma-dropdown-menu-hover::before,
|
|
5315
|
+
.domma-dropdown-menu-hover::after {
|
|
5316
|
+
content: '';
|
|
5317
|
+
position: absolute;
|
|
5318
|
+
left: 0;
|
|
5319
|
+
right: 0;
|
|
5320
|
+
height: 0.75rem;
|
|
5321
|
+
/* transparent — a hover surface only, never painted */
|
|
5322
|
+
}
|
|
5323
|
+
|
|
5324
|
+
.domma-dropdown-menu-hover::before {
|
|
5325
|
+
bottom: 100%; /* bridges the gap when the menu opens below the trigger */
|
|
5326
|
+
}
|
|
5327
|
+
|
|
5328
|
+
.domma-dropdown-menu-hover::after {
|
|
5329
|
+
top: 100%; /* bridges the gap when the menu opens above the trigger */
|
|
5330
|
+
}
|
|
5331
|
+
|
|
5306
5332
|
.domma-dropdown-item {
|
|
5307
5333
|
display: block;
|
|
5308
5334
|
width: 100%;
|
package/public/dist/grid.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Grid CSS v0.29.
|
|
2
|
+
* Domma Grid CSS v0.29.3
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-07-01T10:03:02.849Z
|
|
6
|
+
* Commit: 63e2f20
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
package/public/dist/syntax.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Syntax Highlighting CSS v0.29.
|
|
2
|
+
* Domma Syntax Highlighting CSS v0.29.3
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-07-01T10:03:02.861Z
|
|
6
|
+
* Commit: 63e2f20
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Themes v0.29.
|
|
2
|
+
* Domma Themes v0.29.3
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-07-01T10:03:02.824Z
|
|
6
|
+
* Commit: 63e2f20
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|