domma-js 0.7.5-alpha → 0.7.8-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.
@@ -1,9 +1,9 @@
1
1
  /*!
2
- * Domma Grid CSS v0.7.5-alpha
2
+ * Domma Grid CSS v0.7.6-alpha
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-01-08T18:40:13.844Z
6
- * Commit: 61aa8b6
5
+ * Built: 2026-01-09T14:00:45.587Z
6
+ * Commit: 5527c59
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;
@@ -1,9 +1,9 @@
1
1
  /*!
2
- * Domma Syntax Highlighting CSS v0.7.5-alpha
2
+ * Domma Syntax Highlighting CSS v0.7.6-alpha
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-01-08T18:40:13.858Z
6
- * Commit: 61aa8b6
5
+ * Built: 2026-01-09T14:00:45.606Z
6
+ * Commit: 5527c59
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.7.5-alpha
2
+ * Domma Themes v0.7.6-alpha
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-01-08T18:40:13.814Z
6
- * Commit: 61aa8b6
5
+ * Built: 2026-01-09T14:00:45.554Z
6
+ * Commit: 5527c59
7
7
  */
8
8
 
9
9
  /**
@@ -6,71 +6,69 @@
6
6
  },
7
7
  "theme": {
8
8
  "default": "{{theme}}",
9
- "selector": {{
10
- includeThemeSelector
11
- }},
12
- "persist": true,
13
- "autoDetect": false
14
- },
15
- "navbar": {
16
- "brand": {
17
- "text": "{{projectName}}",
18
- "logo": "assets/logo/placeholder.svg",
19
- "url": "/"
20
- },
21
- "items": [
22
- {
23
- "text": "Home",
24
- "url": "/",
25
- "active": true
26
- },
27
- {
28
- "text": "About",
29
- "url": "/about/"
30
- },
31
- {
32
- "text": "Contact",
33
- "url": "/contact/"
34
- },
35
- {
36
- "text": "Blog",
37
- "url": "/blog/"
38
- },
39
- {
40
- "text": "Docs",
41
- "url": "/docs/"
42
- },
43
- {
44
- "text": "QuickStart",
45
- "url": "https://github.com/dcbw-it/domma#quick-start-with-cli-recommended",
46
- "badge": "New"
47
- }
48
- ],
49
- "variant": "dark",
50
- "position": "sticky",
51
- "collapsible": true
52
- },
53
- "footer": {
54
- "copyright": "© {{year}} {{projectName}}. All rights reserved.",
55
- "links": [
56
- {
57
- "text": "Privacy Policy",
58
- "url": "#privacy"
59
- },
60
- {
61
- "text": "Terms of Service",
62
- "url": "#terms"
63
- },
64
- {
65
- "text": "Contact Us",
66
- "url": "/contact/"
67
- }
68
- ]
69
- },
70
- "features": {
71
- "icons": true,
72
- "backToTop": true,
73
- "codeCopy": true,
74
- "smoothScroll": true
75
- }
9
+ "selector": "{{includeThemeSelector}}",
10
+ "persist": true,
11
+ "autoDetect": false
12
+ },
13
+ "navbar": {
14
+ "brand": {
15
+ "text": "{{projectName}}",
16
+ "logo": "assets/logo/placeholder.svg",
17
+ "url": "/"
18
+ },
19
+ "items": [
20
+ {
21
+ "text": "Home",
22
+ "url": "/",
23
+ "active": true
24
+ },
25
+ {
26
+ "text": "About",
27
+ "url": "/about/"
28
+ },
29
+ {
30
+ "text": "Contact",
31
+ "url": "/contact/"
32
+ },
33
+ {
34
+ "text": "Blog",
35
+ "url": "/blog/"
36
+ },
37
+ {
38
+ "text": "Docs",
39
+ "url": "/docs/"
40
+ },
41
+ {
42
+ "text": "QuickStart",
43
+ "url": "https://github.com/dcbw-it/domma#quick-start-with-cli-recommended",
44
+ "badge": "New"
45
+ }
46
+ ],
47
+ "variant": "dark",
48
+ "position": "sticky",
49
+ "collapsible": true
50
+ },
51
+ "footer": {
52
+ "copyright": "© {{year}} {{projectName}}. All rights reserved.",
53
+ "links": [
54
+ {
55
+ "text": "Privacy Policy",
56
+ "url": "#privacy"
57
+ },
58
+ {
59
+ "text": "Terms of Service",
60
+ "url": "#terms"
61
+ },
62
+ {
63
+ "text": "Contact Us",
64
+ "url": "/contact/"
65
+ }
66
+ ]
67
+ },
68
+ "features": {
69
+ "icons": true,
70
+ "backToTop": true,
71
+ "codeCopy": true,
72
+ "smoothScroll": true
73
+ }
76
74
  }
@@ -14,7 +14,7 @@
14
14
  <!-- Custom CSS -->
15
15
  <link rel="stylesheet" href="css/custom.css">
16
16
  </head>
17
- <body class="dm-theme-{{theme}}">
17
+ <body class="dm-cloaked dm-theme-{{theme}}">
18
18
  <!-- Navigation (initialized by app.js) -->
19
19
  <nav id="main-navbar"></nav>
20
20
 
@@ -7,7 +7,7 @@
7
7
 
8
8
  $(() => {
9
9
  // Load configuration
10
- Domma.http.get('./domma.config.json').then(config => {
10
+ Domma.http.get('/domma.config.json').then(config => {
11
11
  // Initialise theme
12
12
  if (config.theme) {
13
13
  Domma.theme.init({