domma-js 0.18.0 → 0.18.2

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,8 +1,8 @@
1
1
  /*!
2
- * Domma Essentials CSS Bundle v0.18.0
2
+ * Domma Essentials CSS Bundle v0.18.1
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-02-20T13:24:07.748Z
5
+ * Built: 2026-02-25T21:51:20.157Z
6
6
  */
7
7
 
8
8
  /* ============================================
@@ -230,11 +230,11 @@
230
230
  ============================================ */
231
231
 
232
232
  /*!
233
- * Domma Core CSS v0.18.0
233
+ * Domma Core CSS v0.18.1
234
234
  * Dynamic Object Manipulation & Modeling API
235
235
  * (c) 2026 Darryl Waterhouse & DCBW-IT
236
- * Built: 2026-02-20T13:24:07.425Z
237
- * Commit: d0731be
236
+ * Built: 2026-02-25T21:51:19.726Z
237
+ * Commit: 2eb305a
238
238
  */
239
239
 
240
240
  /**
@@ -2785,6 +2785,43 @@ code, pre {
2785
2785
  z-index: 2;
2786
2786
  }
2787
2787
 
2788
+ /* Button Group Sizes */
2789
+ .btn-group-sm > .btn,
2790
+ .btn-group-sm > .btn-group > .btn {
2791
+ padding: var(--dm-space-1) var(--dm-space-2);
2792
+ font-size: var(--dm-font-size-xs);
2793
+ line-height: 1.5;
2794
+ border-radius: 0;
2795
+ }
2796
+
2797
+ .btn-group-sm > .btn:first-child {
2798
+ border-top-left-radius: var(--dm-radius-sm);
2799
+ border-bottom-left-radius: var(--dm-radius-sm);
2800
+ }
2801
+
2802
+ .btn-group-sm > .btn:last-child {
2803
+ border-top-right-radius: var(--dm-radius-sm);
2804
+ border-bottom-right-radius: var(--dm-radius-sm);
2805
+ }
2806
+
2807
+ .btn-group-lg > .btn,
2808
+ .btn-group-lg > .btn-group > .btn {
2809
+ padding: var(--dm-space-3) var(--dm-space-6);
2810
+ font-size: var(--dm-font-size-lg);
2811
+ line-height: 1.5;
2812
+ border-radius: 0;
2813
+ }
2814
+
2815
+ .btn-group-lg > .btn:first-child {
2816
+ border-top-left-radius: var(--dm-radius-lg);
2817
+ border-bottom-left-radius: var(--dm-radius-lg);
2818
+ }
2819
+
2820
+ .btn-group-lg > .btn:last-child {
2821
+ border-top-right-radius: var(--dm-radius-lg);
2822
+ border-bottom-right-radius: var(--dm-radius-lg);
2823
+ }
2824
+
2788
2825
  /* Range Slider */
2789
2826
  .form-range {
2790
2827
  appearance: none;
@@ -4222,12 +4259,18 @@ code, pre {
4222
4259
  }
4223
4260
 
4224
4261
  @keyframes dm-ambient-aurora {
4225
- 0%, 100% {
4226
- background-position: 0% 50%;
4227
- }
4228
- 50% {
4229
- background-position: 100% 50%;
4230
- }
4262
+ 0% { background-position: 0% 50%; }
4263
+ 25% { background-position: 50% 0%; }
4264
+ 50% { background-position: 100% 50%; }
4265
+ 75% { background-position: 50% 100%; }
4266
+ 100% { background-position: 0% 50%; }
4267
+ }
4268
+
4269
+ @keyframes dm-ambient-aurora-2 {
4270
+ 0% { background-position: 100% 0%; }
4271
+ 33% { background-position: 0% 50%; }
4272
+ 66% { background-position: 80% 100%; }
4273
+ 100% { background-position: 100% 0%; }
4231
4274
  }
4232
4275
 
4233
4276
  /* Utility Classes - Rotating Gradients */
@@ -4469,20 +4512,42 @@ code, pre {
4469
4512
  .bg-ambient-aurora::before {
4470
4513
  content: '';
4471
4514
  position: absolute;
4472
- top: 0;
4473
- left: 0;
4474
- right: 0;
4475
- bottom: 0;
4515
+ top: -50%;
4516
+ left: -50%;
4517
+ width: 200%;
4518
+ height: 200%;
4476
4519
  background: linear-gradient(
4477
- 45deg,
4478
- rgba(59, 130, 246, 0.1) 0%,
4479
- rgba(139, 92, 246, 0.08) 25%,
4480
- rgba(236, 72, 153, 0.06) 50%,
4481
- rgba(59, 130, 246, 0.08) 75%,
4482
- rgba(139, 92, 246, 0.1) 100%
4520
+ 120deg,
4521
+ rgba(16, 185, 129, 0.0) 0%,
4522
+ rgba(16, 185, 129, 0.5) 20%,
4523
+ rgba(6, 182, 212, 0.6) 40%,
4524
+ rgba(59, 130, 246, 0.4) 60%,
4525
+ rgba(6, 182, 212, 0.3) 80%,
4526
+ rgba(16, 185, 129, 0.0) 100%
4483
4527
  );
4484
- background-size: 400% 400%;
4485
- animation: dm-ambient-aurora 15s ease infinite;
4528
+ background-size: 200% 200%;
4529
+ animation: dm-ambient-aurora 20s ease infinite;
4530
+ will-change: background-position;
4531
+ }
4532
+
4533
+ .bg-ambient-aurora::after {
4534
+ content: '';
4535
+ position: absolute;
4536
+ top: -50%;
4537
+ left: -50%;
4538
+ width: 200%;
4539
+ height: 200%;
4540
+ background: linear-gradient(
4541
+ 240deg,
4542
+ rgba(139, 92, 246, 0.0) 0%,
4543
+ rgba(139, 92, 246, 0.4) 25%,
4544
+ rgba(236, 72, 153, 0.3) 50%,
4545
+ rgba(109, 40, 217, 0.35) 75%,
4546
+ rgba(139, 92, 246, 0.0) 100%
4547
+ );
4548
+ background-size: 200% 200%;
4549
+ animation: dm-ambient-aurora-2 25s ease infinite;
4550
+ mix-blend-mode: screen;
4486
4551
  will-change: background-position;
4487
4552
  }
4488
4553
 
@@ -4926,11 +4991,11 @@ body.dm-cloaked.dm-ready {
4926
4991
  ============================================ */
4927
4992
 
4928
4993
  /*!
4929
- * Domma Grid CSS v0.18.0
4994
+ * Domma Grid CSS v0.18.1
4930
4995
  * Dynamic Object Manipulation & Modeling API
4931
4996
  * (c) 2026 Darryl Waterhouse & DCBW-IT
4932
- * Built: 2026-02-20T13:24:07.433Z
4933
- * Commit: d0731be
4997
+ * Built: 2026-02-25T21:51:19.735Z
4998
+ * Commit: 2eb305a
4934
4999
  */
4935
5000
 
4936
5001
  /**
@@ -5551,11 +5616,11 @@ body.dm-cloaked.dm-ready {
5551
5616
  ============================================ */
5552
5617
 
5553
5618
  /*!
5554
- * Domma Elements CSS v0.18.0
5619
+ * Domma Elements CSS v0.18.1
5555
5620
  * Dynamic Object Manipulation & Modeling API
5556
5621
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5557
- * Built: 2026-02-20T13:24:07.441Z
5558
- * Commit: d0731be
5622
+ * Built: 2026-02-25T21:51:19.743Z
5623
+ * Commit: 2eb305a
5559
5624
  */
5560
5625
 
5561
5626
  /**
@@ -6944,6 +7009,14 @@ textarea:not([class])::placeholder {
6944
7009
  color: var(--dm-info-dark);
6945
7010
  }
6946
7011
 
7012
+ /* In dark themes, the "-dark" colour variants are designed for light backgrounds.
7013
+ Use the base colour (readable on dark backgrounds) instead. */
7014
+ [data-mode="dark"] .alert-primary { color: var(--dm-primary); }
7015
+ [data-mode="dark"] .alert-success { color: var(--dm-success); }
7016
+ [data-mode="dark"] .alert-danger { color: var(--dm-danger); }
7017
+ [data-mode="dark"] .alert-warning { color: var(--dm-warning-text, var(--dm-warning)); }
7018
+ [data-mode="dark"] .alert-info { color: var(--dm-info); }
7019
+
6947
7020
 
6948
7021
  /* ============================================
6949
7022
  CODE BLOCK
@@ -7342,7 +7415,7 @@ code {
7342
7415
  }
7343
7416
 
7344
7417
  .navbar-dark .navbar-link {
7345
- color: var(--dm-text-disabled);
7418
+ color: var(--dm-gray-400, #adb5bd);
7346
7419
  }
7347
7420
 
7348
7421
  .navbar-dark .navbar-link:hover {
@@ -7639,7 +7712,7 @@ code {
7639
7712
  }
7640
7713
 
7641
7714
  .navbar-dark .navbar-dropdown-item {
7642
- color: var(--dm-text-disabled);
7715
+ color: var(--dm-gray-400, #adb5bd);
7643
7716
  }
7644
7717
 
7645
7718
  .navbar-dark .navbar-dropdown-item:hover {
@@ -11871,16 +11944,16 @@ code {
11871
11944
  /* Dark theme support */
11872
11945
  [data-mode="dark"] .dm-progression-content {
11873
11946
  background: var(--dm-surface);
11874
- border-color: var(--dm-text);
11875
- color: var(--dm-text-inverse);
11947
+ border-color: var(--dm-border);
11948
+ color: var(--dm-text);
11876
11949
  }
11877
11950
 
11878
11951
  [data-mode="dark"] .dm-progression-title {
11879
- color: var(--dm-text-inverse);
11952
+ color: var(--dm-text);
11880
11953
  }
11881
11954
 
11882
11955
  [data-mode="dark"] .dm-progression-description {
11883
- color: var(--dm-text-disabled);
11956
+ color: var(--dm-text-secondary);
11884
11957
  }
11885
11958
 
11886
11959
  [data-mode="dark"] .dm-progression-minimal .dm-progression-content {
@@ -12241,11 +12314,11 @@ code {
12241
12314
  ============================================ */
12242
12315
 
12243
12316
  /*!
12244
- * Domma Themes v0.18.0
12317
+ * Domma Themes v0.18.1
12245
12318
  * Dynamic Object Manipulation & Modeling API
12246
12319
  * (c) 2026 Darryl Waterhouse & DCBW-IT
12247
- * Built: 2026-02-20T13:24:07.403Z
12248
- * Commit: d0731be
12320
+ * Built: 2026-02-25T21:51:19.692Z
12321
+ * Commit: 2eb305a
12249
12322
  */
12250
12323
 
12251
12324
  /**
@@ -1,8 +1,8 @@
1
1
  /*!
2
- * Domma Full CSS Bundle v0.18.0
2
+ * Domma Full CSS Bundle v0.18.1
3
3
  * Dynamic Object Manipulation & Modeling API
4
4
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5
- * Built: 2026-02-20T13:24:07.758Z
5
+ * Built: 2026-02-25T21:51:20.163Z
6
6
  */
7
7
 
8
8
  /* ============================================
@@ -230,11 +230,11 @@
230
230
  ============================================ */
231
231
 
232
232
  /*!
233
- * Domma Core CSS v0.18.0
233
+ * Domma Core CSS v0.18.1
234
234
  * Dynamic Object Manipulation & Modeling API
235
235
  * (c) 2026 Darryl Waterhouse & DCBW-IT
236
- * Built: 2026-02-20T13:24:07.425Z
237
- * Commit: d0731be
236
+ * Built: 2026-02-25T21:51:19.726Z
237
+ * Commit: 2eb305a
238
238
  */
239
239
 
240
240
  /**
@@ -2785,6 +2785,43 @@ code, pre {
2785
2785
  z-index: 2;
2786
2786
  }
2787
2787
 
2788
+ /* Button Group Sizes */
2789
+ .btn-group-sm > .btn,
2790
+ .btn-group-sm > .btn-group > .btn {
2791
+ padding: var(--dm-space-1) var(--dm-space-2);
2792
+ font-size: var(--dm-font-size-xs);
2793
+ line-height: 1.5;
2794
+ border-radius: 0;
2795
+ }
2796
+
2797
+ .btn-group-sm > .btn:first-child {
2798
+ border-top-left-radius: var(--dm-radius-sm);
2799
+ border-bottom-left-radius: var(--dm-radius-sm);
2800
+ }
2801
+
2802
+ .btn-group-sm > .btn:last-child {
2803
+ border-top-right-radius: var(--dm-radius-sm);
2804
+ border-bottom-right-radius: var(--dm-radius-sm);
2805
+ }
2806
+
2807
+ .btn-group-lg > .btn,
2808
+ .btn-group-lg > .btn-group > .btn {
2809
+ padding: var(--dm-space-3) var(--dm-space-6);
2810
+ font-size: var(--dm-font-size-lg);
2811
+ line-height: 1.5;
2812
+ border-radius: 0;
2813
+ }
2814
+
2815
+ .btn-group-lg > .btn:first-child {
2816
+ border-top-left-radius: var(--dm-radius-lg);
2817
+ border-bottom-left-radius: var(--dm-radius-lg);
2818
+ }
2819
+
2820
+ .btn-group-lg > .btn:last-child {
2821
+ border-top-right-radius: var(--dm-radius-lg);
2822
+ border-bottom-right-radius: var(--dm-radius-lg);
2823
+ }
2824
+
2788
2825
  /* Range Slider */
2789
2826
  .form-range {
2790
2827
  appearance: none;
@@ -4222,12 +4259,18 @@ code, pre {
4222
4259
  }
4223
4260
 
4224
4261
  @keyframes dm-ambient-aurora {
4225
- 0%, 100% {
4226
- background-position: 0% 50%;
4227
- }
4228
- 50% {
4229
- background-position: 100% 50%;
4230
- }
4262
+ 0% { background-position: 0% 50%; }
4263
+ 25% { background-position: 50% 0%; }
4264
+ 50% { background-position: 100% 50%; }
4265
+ 75% { background-position: 50% 100%; }
4266
+ 100% { background-position: 0% 50%; }
4267
+ }
4268
+
4269
+ @keyframes dm-ambient-aurora-2 {
4270
+ 0% { background-position: 100% 0%; }
4271
+ 33% { background-position: 0% 50%; }
4272
+ 66% { background-position: 80% 100%; }
4273
+ 100% { background-position: 100% 0%; }
4231
4274
  }
4232
4275
 
4233
4276
  /* Utility Classes - Rotating Gradients */
@@ -4469,20 +4512,42 @@ code, pre {
4469
4512
  .bg-ambient-aurora::before {
4470
4513
  content: '';
4471
4514
  position: absolute;
4472
- top: 0;
4473
- left: 0;
4474
- right: 0;
4475
- bottom: 0;
4515
+ top: -50%;
4516
+ left: -50%;
4517
+ width: 200%;
4518
+ height: 200%;
4476
4519
  background: linear-gradient(
4477
- 45deg,
4478
- rgba(59, 130, 246, 0.1) 0%,
4479
- rgba(139, 92, 246, 0.08) 25%,
4480
- rgba(236, 72, 153, 0.06) 50%,
4481
- rgba(59, 130, 246, 0.08) 75%,
4482
- rgba(139, 92, 246, 0.1) 100%
4520
+ 120deg,
4521
+ rgba(16, 185, 129, 0.0) 0%,
4522
+ rgba(16, 185, 129, 0.5) 20%,
4523
+ rgba(6, 182, 212, 0.6) 40%,
4524
+ rgba(59, 130, 246, 0.4) 60%,
4525
+ rgba(6, 182, 212, 0.3) 80%,
4526
+ rgba(16, 185, 129, 0.0) 100%
4483
4527
  );
4484
- background-size: 400% 400%;
4485
- animation: dm-ambient-aurora 15s ease infinite;
4528
+ background-size: 200% 200%;
4529
+ animation: dm-ambient-aurora 20s ease infinite;
4530
+ will-change: background-position;
4531
+ }
4532
+
4533
+ .bg-ambient-aurora::after {
4534
+ content: '';
4535
+ position: absolute;
4536
+ top: -50%;
4537
+ left: -50%;
4538
+ width: 200%;
4539
+ height: 200%;
4540
+ background: linear-gradient(
4541
+ 240deg,
4542
+ rgba(139, 92, 246, 0.0) 0%,
4543
+ rgba(139, 92, 246, 0.4) 25%,
4544
+ rgba(236, 72, 153, 0.3) 50%,
4545
+ rgba(109, 40, 217, 0.35) 75%,
4546
+ rgba(139, 92, 246, 0.0) 100%
4547
+ );
4548
+ background-size: 200% 200%;
4549
+ animation: dm-ambient-aurora-2 25s ease infinite;
4550
+ mix-blend-mode: screen;
4486
4551
  will-change: background-position;
4487
4552
  }
4488
4553
 
@@ -4926,11 +4991,11 @@ body.dm-cloaked.dm-ready {
4926
4991
  ============================================ */
4927
4992
 
4928
4993
  /*!
4929
- * Domma Grid CSS v0.18.0
4994
+ * Domma Grid CSS v0.18.1
4930
4995
  * Dynamic Object Manipulation & Modeling API
4931
4996
  * (c) 2026 Darryl Waterhouse & DCBW-IT
4932
- * Built: 2026-02-20T13:24:07.433Z
4933
- * Commit: d0731be
4997
+ * Built: 2026-02-25T21:51:19.735Z
4998
+ * Commit: 2eb305a
4934
4999
  */
4935
5000
 
4936
5001
  /**
@@ -5551,11 +5616,11 @@ body.dm-cloaked.dm-ready {
5551
5616
  ============================================ */
5552
5617
 
5553
5618
  /*!
5554
- * Domma Elements CSS v0.18.0
5619
+ * Domma Elements CSS v0.18.1
5555
5620
  * Dynamic Object Manipulation & Modeling API
5556
5621
  * (c) 2026 Darryl Waterhouse & DCBW-IT
5557
- * Built: 2026-02-20T13:24:07.441Z
5558
- * Commit: d0731be
5622
+ * Built: 2026-02-25T21:51:19.743Z
5623
+ * Commit: 2eb305a
5559
5624
  */
5560
5625
 
5561
5626
  /**
@@ -6944,6 +7009,14 @@ textarea:not([class])::placeholder {
6944
7009
  color: var(--dm-info-dark);
6945
7010
  }
6946
7011
 
7012
+ /* In dark themes, the "-dark" colour variants are designed for light backgrounds.
7013
+ Use the base colour (readable on dark backgrounds) instead. */
7014
+ [data-mode="dark"] .alert-primary { color: var(--dm-primary); }
7015
+ [data-mode="dark"] .alert-success { color: var(--dm-success); }
7016
+ [data-mode="dark"] .alert-danger { color: var(--dm-danger); }
7017
+ [data-mode="dark"] .alert-warning { color: var(--dm-warning-text, var(--dm-warning)); }
7018
+ [data-mode="dark"] .alert-info { color: var(--dm-info); }
7019
+
6947
7020
 
6948
7021
  /* ============================================
6949
7022
  CODE BLOCK
@@ -7342,7 +7415,7 @@ code {
7342
7415
  }
7343
7416
 
7344
7417
  .navbar-dark .navbar-link {
7345
- color: var(--dm-text-disabled);
7418
+ color: var(--dm-gray-400, #adb5bd);
7346
7419
  }
7347
7420
 
7348
7421
  .navbar-dark .navbar-link:hover {
@@ -7639,7 +7712,7 @@ code {
7639
7712
  }
7640
7713
 
7641
7714
  .navbar-dark .navbar-dropdown-item {
7642
- color: var(--dm-text-disabled);
7715
+ color: var(--dm-gray-400, #adb5bd);
7643
7716
  }
7644
7717
 
7645
7718
  .navbar-dark .navbar-dropdown-item:hover {
@@ -11871,16 +11944,16 @@ code {
11871
11944
  /* Dark theme support */
11872
11945
  [data-mode="dark"] .dm-progression-content {
11873
11946
  background: var(--dm-surface);
11874
- border-color: var(--dm-text);
11875
- color: var(--dm-text-inverse);
11947
+ border-color: var(--dm-border);
11948
+ color: var(--dm-text);
11876
11949
  }
11877
11950
 
11878
11951
  [data-mode="dark"] .dm-progression-title {
11879
- color: var(--dm-text-inverse);
11952
+ color: var(--dm-text);
11880
11953
  }
11881
11954
 
11882
11955
  [data-mode="dark"] .dm-progression-description {
11883
- color: var(--dm-text-disabled);
11956
+ color: var(--dm-text-secondary);
11884
11957
  }
11885
11958
 
11886
11959
  [data-mode="dark"] .dm-progression-minimal .dm-progression-content {
@@ -12241,11 +12314,11 @@ code {
12241
12314
  ============================================ */
12242
12315
 
12243
12316
  /*!
12244
- * Domma Themes v0.18.0
12317
+ * Domma Themes v0.18.1
12245
12318
  * Dynamic Object Manipulation & Modeling API
12246
12319
  * (c) 2026 Darryl Waterhouse & DCBW-IT
12247
- * Built: 2026-02-20T13:24:07.403Z
12248
- * Commit: d0731be
12320
+ * Built: 2026-02-25T21:51:19.692Z
12321
+ * Commit: 2eb305a
12249
12322
  */
12250
12323
 
12251
12324
  /**