jvetrau-ds 0.2.29 → 0.2.31

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.
Files changed (74) hide show
  1. package/components/course-outline/course-outline.css +1 -1
  2. package/components/discussion/discussion.css +5 -4
  3. package/components/flip-list/flip-list.css +3 -3
  4. package/components/surface/surface.css +45 -0
  5. package/index.cjs +0 -5
  6. package/index.d.ts +0 -2
  7. package/index.js +0 -1
  8. package/package.json +1 -1
  9. package/styles.css +54 -8
  10. package/themes/base/desktop.css +1 -1
  11. package/themes/base/desktop.md +1 -1
  12. package/themes/base/desktop.scoped.css +1 -1
  13. package/themes/base/diagram.css +1 -1
  14. package/themes/base/diagram.md +1 -1
  15. package/themes/base/diagram.scoped.css +1 -1
  16. package/themes/base/mobile.css +1 -1
  17. package/themes/base/mobile.md +1 -1
  18. package/themes/base/mobile.scoped.css +1 -1
  19. package/themes/brandcopilot/desktop.css +1 -1
  20. package/themes/brandcopilot/desktop.md +1 -1
  21. package/themes/brandcopilot/desktop.scoped.css +1 -1
  22. package/themes/brandcopilot/diagram.css +1 -1
  23. package/themes/brandcopilot/diagram.md +1 -1
  24. package/themes/brandcopilot/diagram.scoped.css +1 -1
  25. package/themes/brandcopilot/mobile.css +1 -1
  26. package/themes/brandcopilot/mobile.md +1 -1
  27. package/themes/brandcopilot/mobile.scoped.css +1 -1
  28. package/themes/dmpatterns/desktop.css +1 -1
  29. package/themes/dmpatterns/desktop.md +1 -1
  30. package/themes/dmpatterns/desktop.scoped.css +1 -1
  31. package/themes/dmpatterns/diagram.css +1 -1
  32. package/themes/dmpatterns/diagram.md +1 -1
  33. package/themes/dmpatterns/diagram.scoped.css +1 -1
  34. package/themes/dmpatterns/mobile.css +1 -1
  35. package/themes/dmpatterns/mobile.md +1 -1
  36. package/themes/dmpatterns/mobile.scoped.css +1 -1
  37. package/themes/pdigest/desktop.css +1 -1
  38. package/themes/pdigest/desktop.md +1 -1
  39. package/themes/pdigest/desktop.scoped.css +1 -1
  40. package/themes/pdigest/diagram.css +1 -1
  41. package/themes/pdigest/diagram.md +1 -1
  42. package/themes/pdigest/diagram.scoped.css +1 -1
  43. package/themes/pdigest/mobile.css +1 -1
  44. package/themes/pdigest/mobile.md +1 -1
  45. package/themes/pdigest/mobile.scoped.css +1 -1
  46. package/themes/retrack/desktop.css +1 -1
  47. package/themes/retrack/desktop.md +1 -1
  48. package/themes/retrack/desktop.scoped.css +1 -1
  49. package/themes/retrack/diagram.css +1 -1
  50. package/themes/retrack/diagram.md +1 -1
  51. package/themes/retrack/diagram.scoped.css +1 -1
  52. package/themes/retrack/mobile.css +1 -1
  53. package/themes/retrack/mobile.md +1 -1
  54. package/themes/retrack/mobile.scoped.css +1 -1
  55. package/tokens/themes/base/dist/desktop.json +1 -1
  56. package/tokens/themes/base/dist/diagram.json +1 -1
  57. package/tokens/themes/base/dist/mobile.json +1 -1
  58. package/tokens/themes/brandcopilot/dist/desktop.json +1 -1
  59. package/tokens/themes/brandcopilot/dist/diagram.json +1 -1
  60. package/tokens/themes/brandcopilot/dist/mobile.json +1 -1
  61. package/tokens/themes/dmpatterns/dist/desktop.json +1 -1
  62. package/tokens/themes/dmpatterns/dist/diagram.json +1 -1
  63. package/tokens/themes/dmpatterns/dist/mobile.json +1 -1
  64. package/tokens/themes/pdigest/dist/desktop.json +1 -1
  65. package/tokens/themes/pdigest/dist/diagram.json +1 -1
  66. package/tokens/themes/pdigest/dist/mobile.json +1 -1
  67. package/tokens/themes/retrack/dist/desktop.json +1 -1
  68. package/tokens/themes/retrack/dist/diagram.json +1 -1
  69. package/tokens/themes/retrack/dist/mobile.json +1 -1
  70. package/assets/registry.cjs +0 -39
  71. package/assets/registry.cjs.map +0 -1
  72. package/assets/registry.d.ts +0 -11
  73. package/assets/registry.js +0 -35
  74. package/assets/registry.js.map +0 -1
@@ -58,7 +58,7 @@
58
58
  --course-outline-item-gap:
59
59
  var(--margin-item);
60
60
  --course-outline-item-content-gap:
61
- var(--font-h4-margin);
61
+ var(--margin-descriptor);
62
62
  --course-outline-details-gap:
63
63
  var(--font-body-margin);
64
64
 
@@ -8,10 +8,10 @@
8
8
  /* typography */
9
9
 
10
10
  /* size */
11
- --discussion-gap: var(--margin-container-item);
12
- --discussion-avatar-gap: var(--margin-container-item);
13
- --discussion-item-gap: var(--margin-control);
14
- --discussion-header-gap: var(--margin-icon);
11
+ --discussion-gap: var(--margin-item);
12
+ --discussion-avatar-gap: var(--margin-item);
13
+ --discussion-item-gap: var(--margin-attribute);
14
+ --discussion-header-gap: var(--margin-attribute);
15
15
 
16
16
  display: flex;
17
17
  flex-direction: column;
@@ -124,6 +124,7 @@
124
124
  color: inherit;
125
125
 
126
126
  /* typography */
127
+ font-weight: var(--font-body-weight-accent);
127
128
 
128
129
  /* size */
129
130
  min-width: 0;
@@ -230,7 +230,7 @@
230
230
  var(
231
231
  --flip-list-title-letter-spacing
232
232
  );
233
- text-decoration: underline;
233
+ text-decoration: none;
234
234
  text-decoration-thickness: from-font;
235
235
  text-underline-offset: from-font;
236
236
 
@@ -251,7 +251,7 @@
251
251
  /* color */
252
252
 
253
253
  /* typography */
254
- text-decoration: none;
254
+ text-decoration: underline;
255
255
 
256
256
  /* size */
257
257
 
@@ -404,7 +404,7 @@
404
404
 
405
405
  /* size */
406
406
  margin-top:
407
- var(--flip-list-open-content-gap);
407
+ var(--flip-list-open-content-gaps);
408
408
 
409
409
  /* border */
410
410
 
@@ -38,6 +38,21 @@
38
38
  /* motion */
39
39
  }
40
40
 
41
+ .surface--primary .course-outline__meta {
42
+ /* color */
43
+ --course-outline-meta-color: var(--surface-color);
44
+
45
+ /* typography */
46
+
47
+ /* size */
48
+
49
+ /* border */
50
+
51
+ /* depth */
52
+
53
+ /* motion */
54
+ }
55
+
41
56
  .surface--secondary {
42
57
  /* color */
43
58
  --surface-bg: var(--color-bg-container-secondary);
@@ -102,6 +117,36 @@
102
117
  /* motion */
103
118
  }
104
119
 
120
+ .surface--secondary .course-outline__title a {
121
+ /* color */
122
+ --course-outline-title-color-link: var(--color-primary-1);
123
+
124
+ /* typography */
125
+
126
+ /* size */
127
+
128
+ /* border */
129
+
130
+ /* depth */
131
+
132
+ /* motion */
133
+ }
134
+
135
+ .surface--secondary .course-outline__action a {
136
+ /* color */
137
+ --course-outline-action-color-link: var(--color-primary-1);
138
+
139
+ /* typography */
140
+
141
+ /* size */
142
+
143
+ /* border */
144
+
145
+ /* depth */
146
+
147
+ /* motion */
148
+ }
149
+
105
150
  .surface--tertiary {
106
151
  /* color */
107
152
  --surface-bg: var(--color-bg-container-tertiary);
package/index.cjs CHANGED
@@ -44,7 +44,6 @@ var foundation = require('./layouts/foundation');
44
44
  var base = require('./layouts/base');
45
45
  var sidebar = require('./layouts/sidebar');
46
46
  var auth = require('./layouts/auth');
47
- var registry = require('./assets/registry');
48
47
 
49
48
  function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
50
49
 
@@ -274,10 +273,6 @@ Object.defineProperty(exports, "LayoutAuth", {
274
273
  enumerable: true,
275
274
  get: function () { return auth__default.default; }
276
275
  });
277
- Object.defineProperty(exports, "getPackageAssetUrl", {
278
- enumerable: true,
279
- get: function () { return registry.getPackageAssetUrl; }
280
- });
281
276
  Object.keys(calendarMonth).forEach(function (k) {
282
277
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
283
278
  enumerable: true,
package/index.d.ts CHANGED
@@ -90,5 +90,3 @@ export { default as LayoutSidebar } from './layouts/sidebar';
90
90
  export type { LayoutSidebarProps } from './layouts/sidebar';
91
91
  export { default as LayoutAuth } from './layouts/auth';
92
92
  export type { LayoutAuthProps } from './layouts/auth';
93
- export { getPackageAssetUrl } from './assets/registry';
94
- export type { PackageAssetKey } from './assets/registry';
package/index.js CHANGED
@@ -42,6 +42,5 @@ export { default as LayoutFoundation } from './layouts/foundation';
42
42
  export { default as LayoutBase } from './layouts/base';
43
43
  export { default as LayoutSidebar } from './layouts/sidebar';
44
44
  export { default as LayoutAuth } from './layouts/auth';
45
- export { getPackageAssetUrl } from './assets/registry';
46
45
  //# sourceMappingURL=index.js.map
47
46
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jvetrau-ds",
3
- "version": "0.2.29",
3
+ "version": "0.2.31",
4
4
  "description": "Multi-brand React design system with semantic tokens",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
package/styles.css CHANGED
@@ -1686,7 +1686,7 @@
1686
1686
  --course-outline-item-gap:
1687
1687
  var(--margin-item);
1688
1688
  --course-outline-item-content-gap:
1689
- var(--font-h4-margin);
1689
+ var(--margin-descriptor);
1690
1690
  --course-outline-details-gap:
1691
1691
  var(--font-body-margin);
1692
1692
 
@@ -2254,10 +2254,10 @@
2254
2254
  /* typography */
2255
2255
 
2256
2256
  /* size */
2257
- --discussion-gap: var(--margin-container-item);
2258
- --discussion-avatar-gap: var(--margin-container-item);
2259
- --discussion-item-gap: var(--margin-control);
2260
- --discussion-header-gap: var(--margin-icon);
2257
+ --discussion-gap: var(--margin-item);
2258
+ --discussion-avatar-gap: var(--margin-item);
2259
+ --discussion-item-gap: var(--margin-attribute);
2260
+ --discussion-header-gap: var(--margin-attribute);
2261
2261
 
2262
2262
  display: flex;
2263
2263
  flex-direction: column;
@@ -2370,6 +2370,7 @@
2370
2370
  color: inherit;
2371
2371
 
2372
2372
  /* typography */
2373
+ font-weight: var(--font-body-weight-accent);
2373
2374
 
2374
2375
  /* size */
2375
2376
  min-width: 0;
@@ -3230,7 +3231,7 @@
3230
3231
  var(
3231
3232
  --flip-list-title-letter-spacing
3232
3233
  );
3233
- text-decoration: underline;
3234
+ text-decoration: none;
3234
3235
  text-decoration-thickness: from-font;
3235
3236
  text-underline-offset: from-font;
3236
3237
 
@@ -3251,7 +3252,7 @@
3251
3252
  /* color */
3252
3253
 
3253
3254
  /* typography */
3254
- text-decoration: none;
3255
+ text-decoration: underline;
3255
3256
 
3256
3257
  /* size */
3257
3258
 
@@ -3404,7 +3405,7 @@
3404
3405
 
3405
3406
  /* size */
3406
3407
  margin-top:
3407
- var(--flip-list-open-content-gap);
3408
+ var(--flip-list-open-content-gaps);
3408
3409
 
3409
3410
  /* border */
3410
3411
 
@@ -4783,6 +4784,21 @@
4783
4784
  /* motion */
4784
4785
  }
4785
4786
 
4787
+ .surface--primary .course-outline__meta {
4788
+ /* color */
4789
+ --course-outline-meta-color: var(--surface-color);
4790
+
4791
+ /* typography */
4792
+
4793
+ /* size */
4794
+
4795
+ /* border */
4796
+
4797
+ /* depth */
4798
+
4799
+ /* motion */
4800
+ }
4801
+
4786
4802
  .surface--secondary {
4787
4803
  /* color */
4788
4804
  --surface-bg: var(--color-bg-container-secondary);
@@ -4847,6 +4863,36 @@
4847
4863
  /* motion */
4848
4864
  }
4849
4865
 
4866
+ .surface--secondary .course-outline__title a {
4867
+ /* color */
4868
+ --course-outline-title-color-link: var(--color-primary-1);
4869
+
4870
+ /* typography */
4871
+
4872
+ /* size */
4873
+
4874
+ /* border */
4875
+
4876
+ /* depth */
4877
+
4878
+ /* motion */
4879
+ }
4880
+
4881
+ .surface--secondary .course-outline__action a {
4882
+ /* color */
4883
+ --course-outline-action-color-link: var(--color-primary-1);
4884
+
4885
+ /* typography */
4886
+
4887
+ /* size */
4888
+
4889
+ /* border */
4890
+
4891
+ /* depth */
4892
+
4893
+ /* motion */
4894
+ }
4895
+
4850
4896
  .surface--tertiary {
4851
4897
  /* color */
4852
4898
  --surface-bg: var(--color-bg-container-tertiary);
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 20px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -123,7 +123,7 @@
123
123
 
124
124
  | Token | Type | Value |
125
125
  | --- | --- | --- |
126
- | `margin/attribute` | `float` | `0` |
126
+ | `margin/attribute` | `float` | `4` |
127
127
  | `margin/bullet` | `float` | `0` |
128
128
  | `margin/choice` | `float` | `8` |
129
129
  | `margin/container` | `float` | `20` |
@@ -108,7 +108,7 @@
108
108
  --font-note-line: 0px;
109
109
  --font-note-weight: 312;
110
110
  --font-note-weight-accent: 573;
111
- --margin-attribute: 0px;
111
+ --margin-attribute: 4px;
112
112
  --margin-bullet: 0px;
113
113
  --margin-choice: 8px;
114
114
  --margin-container: 20px;
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -876,7 +876,7 @@
876
876
  "name": "margin/attribute",
877
877
  "type": "float",
878
878
  "values": {
879
- "value": 0
879
+ "value": "{scales.size/x/1}"
880
880
  }
881
881
  },
882
882
  {
@@ -1,39 +0,0 @@
1
- 'use strict';
2
-
3
- var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
4
- const packageAssetUrls = {
5
- "components/logo/brandcopilot-favicon.svg": new URL(
6
- "../components/logo/assets/brandcopilot-favicon.svg",
7
- (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('registry.cjs', document.baseURI).href))
8
- ).toString(),
9
- "components/logo/brandcopilot-symbol.svg": new URL(
10
- "../components/logo/assets/brandcopilot-symbol.svg",
11
- (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('registry.cjs', document.baseURI).href))
12
- ).toString(),
13
- "components/logo/brandcopilot-wordmark.svg": new URL(
14
- "../components/logo/assets/brandcopilot-wordmark.svg",
15
- (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('registry.cjs', document.baseURI).href))
16
- ).toString(),
17
- "components/logo/dmpatterns-favicon.svg": new URL(
18
- "../components/logo/assets/dmpatterns-favicon.svg",
19
- (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('registry.cjs', document.baseURI).href))
20
- ).toString(),
21
- "components/logo/dmpatterns-symbol.svg": new URL(
22
- "../components/logo/assets/dmpatterns-symbol.svg",
23
- (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('registry.cjs', document.baseURI).href))
24
- ).toString(),
25
- "components/logo/dmpatterns-wordmark.svg": new URL(
26
- "../components/logo/assets/dmpatterns-wordmark.svg",
27
- (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('registry.cjs', document.baseURI).href))
28
- ).toString(),
29
- "icons/sound-off.svg": new URL(
30
- "../icons/assets/sound-off.svg",
31
- (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('registry.cjs', document.baseURI).href))
32
- ).toString()
33
- };
34
- const getPackageAssetUrl = (assetKey) => packageAssetUrls[assetKey];
35
-
36
- exports.getPackageAssetUrl = getPackageAssetUrl;
37
- exports.packageAssetUrls = packageAssetUrls;
38
- //# sourceMappingURL=registry.cjs.map
39
- //# sourceMappingURL=registry.cjs.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/assets/registry.ts"],"names":[],"mappings":";;;AAEO,MAAM,gBAAA,GAAmB;AAAA,EAC9B,4CAA4C,IAAI,GAAA;AAAA,IAC9C,oDAAA;AAAA,IACA;AAAY,IACZ,QAAA,EAAS;AAAA,EACX,2CAA2C,IAAI,GAAA;AAAA,IAC7C,mDAAA;AAAA,IACA;AAAY,IACZ,QAAA,EAAS;AAAA,EACX,6CAA6C,IAAI,GAAA;AAAA,IAC/C,qDAAA;AAAA,IACA;AAAY,IACZ,QAAA,EAAS;AAAA,EACX,0CAA0C,IAAI,GAAA;AAAA,IAC5C,kDAAA;AAAA,IACA;AAAY,IACZ,QAAA,EAAS;AAAA,EACX,yCAAyC,IAAI,GAAA;AAAA,IAC3C,iDAAA;AAAA,IACA;AAAY,IACZ,QAAA,EAAS;AAAA,EACX,2CAA2C,IAAI,GAAA;AAAA,IAC7C,mDAAA;AAAA,IACA;AAAY,IACZ,QAAA,EAAS;AAAA,EACX,uBAAuB,IAAI,GAAA;AAAA,IACzB,+BAAA;AAAA,IACA;AAAY,IACZ,QAAA;AACJ;AAIO,MAAM,kBAAA,GAAqB,CAAC,QAAA,KACjC,gBAAA,CAAiB,QAAQ","file":"registry.cjs","sourcesContent":["/* AUTO-GENERATED FILE. DO NOT EDIT MANUALLY. */\n\nexport const packageAssetUrls = {\n 'components/logo/brandcopilot-favicon.svg': new URL(\n '../components/logo/assets/brandcopilot-favicon.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/brandcopilot-symbol.svg': new URL(\n '../components/logo/assets/brandcopilot-symbol.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/brandcopilot-wordmark.svg': new URL(\n '../components/logo/assets/brandcopilot-wordmark.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/dmpatterns-favicon.svg': new URL(\n '../components/logo/assets/dmpatterns-favicon.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/dmpatterns-symbol.svg': new URL(\n '../components/logo/assets/dmpatterns-symbol.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/dmpatterns-wordmark.svg': new URL(\n '../components/logo/assets/dmpatterns-wordmark.svg',\n import.meta.url,\n ).toString(),\n 'icons/sound-off.svg': new URL(\n '../icons/assets/sound-off.svg',\n import.meta.url,\n ).toString(),\n} as const;\n\nexport type PackageAssetKey = keyof typeof packageAssetUrls;\n\nexport const getPackageAssetUrl = (assetKey: PackageAssetKey): string =>\n packageAssetUrls[assetKey];\n"]}
@@ -1,11 +0,0 @@
1
- export declare const packageAssetUrls: {
2
- readonly 'components/logo/brandcopilot-favicon.svg': string;
3
- readonly 'components/logo/brandcopilot-symbol.svg': string;
4
- readonly 'components/logo/brandcopilot-wordmark.svg': string;
5
- readonly 'components/logo/dmpatterns-favicon.svg': string;
6
- readonly 'components/logo/dmpatterns-symbol.svg': string;
7
- readonly 'components/logo/dmpatterns-wordmark.svg': string;
8
- readonly 'icons/sound-off.svg': string;
9
- };
10
- export type PackageAssetKey = keyof typeof packageAssetUrls;
11
- export declare const getPackageAssetUrl: (assetKey: PackageAssetKey) => string;
@@ -1,35 +0,0 @@
1
- const packageAssetUrls = {
2
- "components/logo/brandcopilot-favicon.svg": new URL(
3
- "../components/logo/assets/brandcopilot-favicon.svg",
4
- import.meta.url
5
- ).toString(),
6
- "components/logo/brandcopilot-symbol.svg": new URL(
7
- "../components/logo/assets/brandcopilot-symbol.svg",
8
- import.meta.url
9
- ).toString(),
10
- "components/logo/brandcopilot-wordmark.svg": new URL(
11
- "../components/logo/assets/brandcopilot-wordmark.svg",
12
- import.meta.url
13
- ).toString(),
14
- "components/logo/dmpatterns-favicon.svg": new URL(
15
- "../components/logo/assets/dmpatterns-favicon.svg",
16
- import.meta.url
17
- ).toString(),
18
- "components/logo/dmpatterns-symbol.svg": new URL(
19
- "../components/logo/assets/dmpatterns-symbol.svg",
20
- import.meta.url
21
- ).toString(),
22
- "components/logo/dmpatterns-wordmark.svg": new URL(
23
- "../components/logo/assets/dmpatterns-wordmark.svg",
24
- import.meta.url
25
- ).toString(),
26
- "icons/sound-off.svg": new URL(
27
- "../icons/assets/sound-off.svg",
28
- import.meta.url
29
- ).toString()
30
- };
31
- const getPackageAssetUrl = (assetKey) => packageAssetUrls[assetKey];
32
-
33
- export { getPackageAssetUrl, packageAssetUrls };
34
- //# sourceMappingURL=registry.js.map
35
- //# sourceMappingURL=registry.js.map
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../../src/assets/registry.ts"],"names":[],"mappings":"AAEO,MAAM,gBAAA,GAAmB;AAAA,EAC9B,4CAA4C,IAAI,GAAA;AAAA,IAC9C,oDAAA;AAAA,IACA,MAAA,CAAA,IAAA,CAAY;AAAA,IACZ,QAAA,EAAS;AAAA,EACX,2CAA2C,IAAI,GAAA;AAAA,IAC7C,mDAAA;AAAA,IACA,MAAA,CAAA,IAAA,CAAY;AAAA,IACZ,QAAA,EAAS;AAAA,EACX,6CAA6C,IAAI,GAAA;AAAA,IAC/C,qDAAA;AAAA,IACA,MAAA,CAAA,IAAA,CAAY;AAAA,IACZ,QAAA,EAAS;AAAA,EACX,0CAA0C,IAAI,GAAA;AAAA,IAC5C,kDAAA;AAAA,IACA,MAAA,CAAA,IAAA,CAAY;AAAA,IACZ,QAAA,EAAS;AAAA,EACX,yCAAyC,IAAI,GAAA;AAAA,IAC3C,iDAAA;AAAA,IACA,MAAA,CAAA,IAAA,CAAY;AAAA,IACZ,QAAA,EAAS;AAAA,EACX,2CAA2C,IAAI,GAAA;AAAA,IAC7C,mDAAA;AAAA,IACA,MAAA,CAAA,IAAA,CAAY;AAAA,IACZ,QAAA,EAAS;AAAA,EACX,uBAAuB,IAAI,GAAA;AAAA,IACzB,+BAAA;AAAA,IACA,MAAA,CAAA,IAAA,CAAY;AAAA,IACZ,QAAA;AACJ;AAIO,MAAM,kBAAA,GAAqB,CAAC,QAAA,KACjC,gBAAA,CAAiB,QAAQ","file":"registry.js","sourcesContent":["/* AUTO-GENERATED FILE. DO NOT EDIT MANUALLY. */\n\nexport const packageAssetUrls = {\n 'components/logo/brandcopilot-favicon.svg': new URL(\n '../components/logo/assets/brandcopilot-favicon.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/brandcopilot-symbol.svg': new URL(\n '../components/logo/assets/brandcopilot-symbol.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/brandcopilot-wordmark.svg': new URL(\n '../components/logo/assets/brandcopilot-wordmark.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/dmpatterns-favicon.svg': new URL(\n '../components/logo/assets/dmpatterns-favicon.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/dmpatterns-symbol.svg': new URL(\n '../components/logo/assets/dmpatterns-symbol.svg',\n import.meta.url,\n ).toString(),\n 'components/logo/dmpatterns-wordmark.svg': new URL(\n '../components/logo/assets/dmpatterns-wordmark.svg',\n import.meta.url,\n ).toString(),\n 'icons/sound-off.svg': new URL(\n '../icons/assets/sound-off.svg',\n import.meta.url,\n ).toString(),\n} as const;\n\nexport type PackageAssetKey = keyof typeof packageAssetUrls;\n\nexport const getPackageAssetUrl = (assetKey: PackageAssetKey): string =>\n packageAssetUrls[assetKey];\n"]}