domma-js 0.19.0 → 0.19.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.
- package/package.json +1 -1
- package/public/dist/bundles/domma-complete.css +446 -186
- package/public/dist/bundles/domma-data-focused.css +446 -405
- package/public/dist/bundles/domma-essentials.css +446 -405
- package/public/dist/bundles/domma-full.css +446 -405
- package/public/dist/bundles/domma-minimal.css +8 -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 +25 -20
- package/public/dist/grid.css +3 -3
- package/public/dist/syntax.css +3 -3
- package/public/dist/themes/domma-themes.css +423 -168
- package/templates/kickstart/CLAUDE.md +1 -1
- 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.19.
|
|
2
|
+
* Domma Elements CSS v0.19.2
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-03-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-03-06T13:45:53.820Z
|
|
6
|
+
* Commit: cd0754a
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -5212,33 +5212,34 @@ code {
|
|
|
5212
5212
|
display: flex;
|
|
5213
5213
|
flex-wrap: wrap;
|
|
5214
5214
|
align-items: center;
|
|
5215
|
+
gap: 0.5rem;
|
|
5215
5216
|
padding: 0.75rem 0;
|
|
5216
5217
|
margin: 0;
|
|
5217
|
-
|
|
5218
|
-
|
|
5218
|
+
font-size: var(--dm-text-sm, 0.875rem);
|
|
5219
|
+
color: var(--dm-text-muted, #6c757d);
|
|
5219
5220
|
}
|
|
5220
5221
|
|
|
5221
5222
|
.dm-breadcrumbs-item {
|
|
5222
|
-
display: flex;
|
|
5223
|
+
display: inline-flex;
|
|
5223
5224
|
align-items: center;
|
|
5224
5225
|
color: var(--dm-text-secondary);
|
|
5225
5226
|
}
|
|
5226
5227
|
|
|
5227
|
-
.dm-breadcrumbs-
|
|
5228
|
-
|
|
5229
|
-
|
|
5228
|
+
.dm-breadcrumbs-separator {
|
|
5229
|
+
display: inline-flex;
|
|
5230
|
+
align-items: center;
|
|
5231
|
+
opacity: 0.5;
|
|
5230
5232
|
color: var(--dm-text-muted);
|
|
5231
5233
|
}
|
|
5232
5234
|
|
|
5233
5235
|
.dm-breadcrumbs-link {
|
|
5234
|
-
color:
|
|
5236
|
+
color: inherit;
|
|
5235
5237
|
text-decoration: none;
|
|
5236
5238
|
transition: color var(--dm-transition-fast);
|
|
5237
5239
|
}
|
|
5238
5240
|
|
|
5239
5241
|
.dm-breadcrumbs-link:hover {
|
|
5240
|
-
color: var(--dm-primary
|
|
5241
|
-
text-decoration: underline;
|
|
5242
|
+
color: var(--dm-primary, #6495ED);
|
|
5242
5243
|
}
|
|
5243
5244
|
|
|
5244
5245
|
.dm-breadcrumbs-item.active {
|
|
@@ -5246,9 +5247,13 @@ code {
|
|
|
5246
5247
|
font-weight: 500;
|
|
5247
5248
|
}
|
|
5248
5249
|
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5250
|
+
@media (max-width: 576px) {
|
|
5251
|
+
.dm-breadcrumbs-responsive .dm-breadcrumbs-item:not(:last-child):not(:first-child) {
|
|
5252
|
+
display: none;
|
|
5253
|
+
}
|
|
5254
|
+
.dm-breadcrumbs-responsive .dm-breadcrumbs-separator:not(:first-of-type):not(:last-of-type) {
|
|
5255
|
+
display: none;
|
|
5256
|
+
}
|
|
5252
5257
|
}
|
|
5253
5258
|
|
|
5254
5259
|
[data-mode="dark"] .dm-breadcrumbs-item {
|
|
@@ -5256,17 +5261,17 @@ code {
|
|
|
5256
5261
|
}
|
|
5257
5262
|
|
|
5258
5263
|
[data-mode="dark"] .dm-breadcrumbs-item.active {
|
|
5259
|
-
color: var(--dm-text
|
|
5260
|
-
}
|
|
5261
|
-
|
|
5262
|
-
[data-mode="dark"] .dm-breadcrumbs-link {
|
|
5263
|
-
color: var(--dm-primary);
|
|
5264
|
+
color: var(--dm-text);
|
|
5264
5265
|
}
|
|
5265
5266
|
|
|
5266
5267
|
[data-mode="dark"] .dm-breadcrumbs-link:hover {
|
|
5267
5268
|
color: var(--dm-primary-hover);
|
|
5268
5269
|
}
|
|
5269
5270
|
|
|
5271
|
+
[data-mode="dark"] .dm-breadcrumbs-separator {
|
|
5272
|
+
color: var(--dm-text-muted);
|
|
5273
|
+
}
|
|
5274
|
+
|
|
5270
5275
|
/* ============================================
|
|
5271
5276
|
TABLE TOOLBAR COMPONENTS
|
|
5272
5277
|
============================================ */
|
package/public/dist/grid.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Grid CSS v0.19.
|
|
2
|
+
* Domma Grid CSS v0.19.2
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-03-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-03-06T13:45:53.809Z
|
|
6
|
+
* Commit: cd0754a
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|
package/public/dist/syntax.css
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Domma Syntax Highlighting CSS v0.19.
|
|
2
|
+
* Domma Syntax Highlighting CSS v0.19.2
|
|
3
3
|
* Dynamic Object Manipulation & Modeling API
|
|
4
4
|
* (c) 2026 Darryl Waterhouse & DCBW-IT
|
|
5
|
-
* Built: 2026-03-
|
|
6
|
-
* Commit:
|
|
5
|
+
* Built: 2026-03-06T13:45:53.828Z
|
|
6
|
+
* Commit: cd0754a
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
9
|
/**
|