domma-js 0.7.6-alpha → 0.8.0-alpha
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/package.json +1 -1
- package/public/dist/bundles/domma-complete.css +1130 -134
- package/public/dist/bundles/domma-data-focused.css +1130 -134
- package/public/dist/bundles/domma-essentials.css +1130 -134
- package/public/dist/bundles/domma-full.css +1130 -134
- package/public/dist/bundles/domma-grayve.css +1130 -134
- package/public/dist/bundles/domma-minimal.css +64 -8
- 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 +1016 -76
- package/public/dist/grid.css +59 -3
- package/public/dist/syntax.css +3 -3
- package/public/dist/themes/core.css +23 -0
- package/public/dist/themes/domma-themes.css +3 -3
- package/templates/kickstart/index.html +1 -1
package/public/dist/grid.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Grid CSS v0.
|
|
2
|
+
* Domma Grid CSS v0.8.0-alpha
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-01-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-01-09T18:35:07.464Z
|
|
6
|
+
* Commit: 1a13022
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -400,6 +400,62 @@
|
|
|
400
400
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
+
/* ============================================
|
|
404
|
+
COLUMN SPAN UTILITIES (for .grid children)
|
|
405
|
+
============================================ */
|
|
406
|
+
|
|
407
|
+
.col-span-1 {
|
|
408
|
+
grid-column: span 1 / span 1;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.col-span-2 {
|
|
412
|
+
grid-column: span 2 / span 2;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.col-span-3 {
|
|
416
|
+
grid-column: span 3 / span 3;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.col-span-4 {
|
|
420
|
+
grid-column: span 4 / span 4;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.col-span-5 {
|
|
424
|
+
grid-column: span 5 / span 5;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.col-span-6 {
|
|
428
|
+
grid-column: span 6 / span 6;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.col-span-7 {
|
|
432
|
+
grid-column: span 7 / span 7;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.col-span-8 {
|
|
436
|
+
grid-column: span 8 / span 8;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.col-span-9 {
|
|
440
|
+
grid-column: span 9 / span 9;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.col-span-10 {
|
|
444
|
+
grid-column: span 10 / span 10;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.col-span-11 {
|
|
448
|
+
grid-column: span 11 / span 11;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.col-span-12 {
|
|
452
|
+
grid-column: span 12 / span 12;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.col-span-full {
|
|
456
|
+
grid-column: 1 / -1;
|
|
457
|
+
}
|
|
458
|
+
|
|
403
459
|
/* Standalone gap utilities (work with .grid and .row) */
|
|
404
460
|
.gap-0 {
|
|
405
461
|
gap: 0;
|
package/public/dist/syntax.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Syntax Highlighting CSS v0.
|
|
2
|
+
* Domma Syntax Highlighting CSS v0.8.0-alpha
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-01-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-01-09T18:35:07.481Z
|
|
6
|
+
* Commit: 1a13022
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--dm-core-background: #ffffff;
|
|
3
|
+
--dm-core-text: #212529;
|
|
4
|
+
--dm-core-border: #dee2e6;
|
|
5
|
+
--dm-core-primary: #0d6efd;
|
|
6
|
+
--dm-core-success: #198754;
|
|
7
|
+
--dm-core-warning: #ffc107;
|
|
8
|
+
--dm-core-danger: #dc3545;
|
|
9
|
+
--dm-core-info: #0dcaf0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.dm-theme-core-light {
|
|
13
|
+
--dm-background: var(--dm-core-background);
|
|
14
|
+
--dm-text: var(--dm-core-text);
|
|
15
|
+
--dm-border: var(--dm-core-border);
|
|
16
|
+
--dm-primary: var(--dm-core-primary);
|
|
17
|
+
--dm-success: var(--dm-core-success);
|
|
18
|
+
--dm-warning: var(--dm-core-warning);
|
|
19
|
+
--dm-danger: var(--dm-core-danger);
|
|
20
|
+
--dm-info: var(--dm-core-info);
|
|
21
|
+
|
|
22
|
+
/* Component specific overrides can go here */
|
|
23
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Themes v0.
|
|
2
|
+
* Domma Themes v0.8.0-alpha
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-01-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-01-09T18:35:07.434Z
|
|
6
|
+
* Commit: 1a13022
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|