@refrakt-md/lumina 0.9.5 → 0.9.6

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 (43) hide show
  1. package/contracts/structures.json +17 -6
  2. package/dist/config.d.ts.map +1 -0
  3. package/dist/config.js.map +1 -0
  4. package/dist/icons.d.ts.map +1 -0
  5. package/dist/icons.js.map +1 -0
  6. package/dist/{layouts/index.d.ts → layouts.d.ts} +1 -1
  7. package/dist/layouts.d.ts.map +1 -0
  8. package/dist/{layouts/index.js → layouts.js} +1 -1
  9. package/dist/layouts.js.map +1 -0
  10. package/dist/transform.d.ts.map +1 -0
  11. package/dist/transform.js.map +1 -0
  12. package/index.css +5 -0
  13. package/package.json +10 -10
  14. package/styles/dimensions/checklist.css +2 -2
  15. package/styles/layouts/docs.css +1 -7
  16. package/styles/layouts/plan.css +435 -0
  17. package/styles/runes/bug.css +24 -10
  18. package/styles/runes/codegroup.css +1 -0
  19. package/styles/runes/decision.css +23 -9
  20. package/styles/runes/embed.css +1 -0
  21. package/styles/runes/event.css +1 -1
  22. package/styles/runes/milestone.css +22 -8
  23. package/styles/runes/plan-entity-tabs.css +88 -0
  24. package/styles/runes/plan-history.css +197 -0
  25. package/styles/runes/plan-ref.css +26 -0
  26. package/styles/runes/plan-relationships.css +40 -0
  27. package/styles/runes/spec.css +21 -7
  28. package/styles/runes/work.css +29 -15
  29. package/dist/layouts/index.d.ts.map +0 -1
  30. package/dist/layouts/index.js.map +0 -1
  31. package/dist/src/config.d.ts.map +0 -1
  32. package/dist/src/config.js.map +0 -1
  33. package/dist/src/icons.d.ts.map +0 -1
  34. package/dist/src/icons.js.map +0 -1
  35. package/dist/src/transform.d.ts.map +0 -1
  36. package/dist/src/transform.js.map +0 -1
  37. package/layouts/index.ts +0 -13
  38. /package/dist/{src/config.d.ts → config.d.ts} +0 -0
  39. /package/dist/{src/config.js → config.js} +0 -0
  40. /package/dist/{src/icons.d.ts → icons.d.ts} +0 -0
  41. /package/dist/{src/icons.js → icons.js} +0 -0
  42. /package/dist/{src/transform.d.ts → transform.d.ts} +0 -0
  43. /package/dist/{src/transform.js → transform.js} +0 -0
@@ -1,21 +1,35 @@
1
1
  /* Decision */
2
- .rf-decision__body {
3
- font-size: 0.925rem;
4
- line-height: 1.65;
2
+
3
+ /* Primary badges: ID left, status right */
4
+ .rf-decision__header-primary {
5
+ justify-content: space-between;
6
+ margin-bottom: 0.75rem;
5
7
  }
6
- .rf-decision__body > header {
8
+
9
+ /* Preamble: title + optional description between badge groups */
10
+ .rf-decision__preamble {
7
11
  margin-bottom: 0.75rem;
8
12
  }
9
- .rf-decision__body > header h1,
10
- .rf-decision__body > header h2,
11
- .rf-decision__body > header h3 {
13
+ .rf-decision__title h1,
14
+ .rf-decision__title h2,
15
+ .rf-decision__title h3 {
12
16
  margin-top: 0;
13
17
  }
14
- .rf-decision__body > div > section {
18
+
19
+ /* Secondary badges: pill row below preamble */
20
+ .rf-decision__header-secondary {
21
+ margin-bottom: 1.5rem;
22
+ }
23
+
24
+ .rf-decision__body {
25
+ font-size: 0.925rem;
26
+ line-height: 1.65;
27
+ }
28
+ .rf-decision__body > section {
15
29
  margin-top: 1rem;
16
30
  padding-top: 0.75rem;
17
31
  border-top: 1px solid var(--rf-color-border);
18
32
  }
19
- .rf-decision__body > div > section:first-child {
33
+ .rf-decision__body > section:first-child {
20
34
  margin-top: 0.75rem;
21
35
  }
@@ -1,5 +1,6 @@
1
1
  /* Embed */
2
2
  .rf-embed {
3
+ margin: 0;
3
4
  padding: 0;
4
5
  }
5
6
  .rf-embed__wrapper {
@@ -14,7 +14,7 @@
14
14
  font-weight: 500;
15
15
  font-size: 0.875rem;
16
16
  text-decoration: none;
17
- margin-left: auto;
17
+ margin-top: 1.5rem;
18
18
  }
19
19
  .rf-event__register:hover {
20
20
  background: var(--rf-color-primary-hover);
@@ -1,4 +1,26 @@
1
1
  /* Milestone */
2
+
3
+ /* Primary badges: name left, status right */
4
+ .rf-milestone__header-primary {
5
+ justify-content: space-between;
6
+ margin-bottom: 0.75rem;
7
+ }
8
+
9
+ /* Preamble: title + optional description between badge groups */
10
+ .rf-milestone__preamble {
11
+ margin-bottom: 0.75rem;
12
+ }
13
+ .rf-milestone__title h1,
14
+ .rf-milestone__title h2,
15
+ .rf-milestone__title h3 {
16
+ margin-top: 0;
17
+ }
18
+
19
+ /* Secondary badges: pill row below preamble */
20
+ .rf-milestone__header-secondary {
21
+ margin-bottom: 1.5rem;
22
+ }
23
+
2
24
  .rf-milestone__target-badge {
3
25
  margin-left: auto;
4
26
  }
@@ -6,14 +28,6 @@
6
28
  font-size: 0.925rem;
7
29
  line-height: 1.65;
8
30
  }
9
- .rf-milestone__body > header {
10
- margin-bottom: 0.75rem;
11
- }
12
- .rf-milestone__body > header h1,
13
- .rf-milestone__body > header h2,
14
- .rf-milestone__body > header h3 {
15
- margin-top: 0;
16
- }
17
31
  .rf-milestone__body ul {
18
32
  padding-left: 1.5rem;
19
33
  }
@@ -0,0 +1,88 @@
1
+ /* Plan Entity Tabs — page-level tab navigation for spec/work/bug/decision pages */
2
+
3
+ .rf-plan-entity-tabs {
4
+ margin-block-start: var(--rf-spacing-lg, 1.5rem);
5
+ }
6
+
7
+ /* Tab bar — underline style matching the core tabs rune */
8
+ .rf-plan-entity-tabs__tabs {
9
+ display: flex;
10
+ border-bottom: 1px solid var(--rf-color-border, #dee2e6);
11
+ gap: 0;
12
+ }
13
+
14
+ /* Tab buttons */
15
+ .rf-plan-entity-tabs__tab {
16
+ flex: 0 0 auto;
17
+ padding: 0.625rem 1.25rem;
18
+ font-size: 0.875rem;
19
+ font-weight: 500;
20
+ font-family: inherit;
21
+ color: var(--rf-color-muted, #868e96);
22
+ background: none;
23
+ border: none;
24
+ border-bottom: 2px solid transparent;
25
+ cursor: pointer;
26
+ transition: color 200ms ease, border-color 200ms ease;
27
+ white-space: nowrap;
28
+ }
29
+
30
+ .rf-plan-entity-tabs__tab:hover {
31
+ color: var(--rf-color-text, #212529);
32
+ }
33
+
34
+ .rf-plan-entity-tabs__tab--active,
35
+ .rf-plan-entity-tabs__tab[data-state="active"] {
36
+ color: var(--rf-color-primary, #228be6);
37
+ border-bottom-color: var(--rf-color-primary, #228be6);
38
+ font-weight: 600;
39
+ }
40
+
41
+ /* Panels container */
42
+ .rf-plan-entity-tabs__panels {
43
+ padding: 0;
44
+ margin: 0;
45
+ }
46
+
47
+ /* Individual panel */
48
+ .rf-plan-entity-tabs__panel {
49
+ padding-block-start: var(--rf-spacing-lg, 1.5rem);
50
+ }
51
+
52
+ .rf-plan-entity-tabs__panel > *:first-child {
53
+ margin-top: 0;
54
+ }
55
+
56
+ .rf-plan-entity-tabs__panel > *:last-child {
57
+ margin-bottom: 0;
58
+ }
59
+
60
+ /* When inside entity tabs, relationships and history sections don't need
61
+ their own heading — the tab label provides the context */
62
+ .rf-plan-entity-tabs__panel .rf-plan-relationships__heading,
63
+ .rf-plan-entity-tabs__panel .rf-plan-history__heading {
64
+ display: none;
65
+ }
66
+
67
+ /* Remove top margin, padding, and border from relationships/history sections when inside a tab panel */
68
+ .rf-plan-entity-tabs__panel .rf-plan-relationships,
69
+ .rf-plan-entity-tabs__panel .rf-plan-history {
70
+ margin-block-start: 0;
71
+ padding-block-start: 0;
72
+ border-block-start: none;
73
+ }
74
+
75
+ /* ---- TOC dimming when non-Overview tab is active ---- */
76
+
77
+ /* Desktop TOC: dim when a non-overview tab is active */
78
+ :has([data-active-tab]:not([data-active-tab="overview"])) .rf-plan-toc {
79
+ opacity: 0.3;
80
+ pointer-events: none;
81
+ transition: opacity 200ms ease;
82
+ }
83
+
84
+ :has([data-active-tab="overview"]) .rf-plan-toc {
85
+ opacity: 1;
86
+ pointer-events: auto;
87
+ transition: opacity 200ms ease;
88
+ }
@@ -0,0 +1,197 @@
1
+ /* Plan History — vertical timeline (mirrors .rf-timeline--vertical) */
2
+
3
+ .rf-plan-history {
4
+ margin: 2rem 0;
5
+ }
6
+ .rf-plan-history__heading {
7
+ font-size: 1.05rem;
8
+ font-weight: 700;
9
+ color: var(--rf-color-text);
10
+ margin: 0 0 1rem;
11
+ }
12
+
13
+ /* Event list — vertical line */
14
+ .rf-plan-history__events {
15
+ list-style: none;
16
+ padding: 0;
17
+ margin: 0;
18
+ }
19
+
20
+ /* Each event entry — left-padded with border line */
21
+ .rf-plan-history__event {
22
+ position: relative;
23
+ padding-left: 2rem;
24
+ padding-bottom: 2rem;
25
+ border-left: 2px solid var(--rf-color-border);
26
+ margin-left: 0.375rem;
27
+ }
28
+ .rf-plan-history__event:last-child {
29
+ border-left-color: transparent;
30
+ padding-bottom: 0;
31
+ }
32
+
33
+ /* Circle markers on the timeline line */
34
+ .rf-plan-history__event::before {
35
+ content: '';
36
+ position: absolute;
37
+ left: -0.4375rem;
38
+ top: 0.25rem;
39
+ width: 0.75rem;
40
+ height: 0.75rem;
41
+ border-radius: 50%;
42
+ background: var(--rf-color-primary);
43
+ border: 2px solid var(--rf-color-bg);
44
+ box-shadow: 0 0 0 2px var(--rf-color-primary);
45
+ }
46
+
47
+ /* Open circle for creation events */
48
+ .rf-plan-history__event[data-kind="created"]::before {
49
+ background: var(--rf-color-bg);
50
+ }
51
+
52
+ /* Date + hash header */
53
+ .rf-plan-history__date {
54
+ display: inline;
55
+ font-size: 0.8rem;
56
+ font-weight: 600;
57
+ color: var(--rf-color-primary);
58
+ letter-spacing: 0.02em;
59
+ margin-right: 0.5rem;
60
+ }
61
+ .rf-plan-history__hash {
62
+ font-family: var(--rf-font-mono);
63
+ font-size: 0.75rem;
64
+ color: var(--rf-color-muted);
65
+ text-decoration: none;
66
+ }
67
+ a.rf-plan-history__hash:hover {
68
+ color: var(--rf-color-primary);
69
+ text-decoration: underline;
70
+ }
71
+
72
+ /* Changes block */
73
+ .rf-plan-history__changes {
74
+ margin-top: 0.25rem;
75
+ }
76
+ .rf-plan-history__change {
77
+ display: flex;
78
+ align-items: center;
79
+ gap: 0.25rem;
80
+ font-size: 0.925rem;
81
+ line-height: 1.65;
82
+ color: var(--rf-color-muted);
83
+ }
84
+ .rf-plan-history__field {
85
+ font-weight: 500;
86
+ color: var(--rf-color-text);
87
+ }
88
+ .rf-plan-history__field::after {
89
+ content: ':';
90
+ }
91
+ .rf-plan-history__arrow {
92
+ color: var(--rf-color-muted);
93
+ margin-inline: 0.125rem;
94
+ }
95
+
96
+ /* Value badges (add/remove) */
97
+ .rf-plan-history__value {
98
+ font-size: 0.875rem;
99
+ padding: 0.0625rem 0.375rem;
100
+ border-radius: var(--rf-radius-sm);
101
+ }
102
+ .rf-plan-history__value[data-type="add"] {
103
+ background: var(--rf-color-success-bg);
104
+ color: var(--rf-color-success);
105
+ }
106
+ .rf-plan-history__value[data-type="remove"] {
107
+ background: var(--rf-color-danger-bg);
108
+ color: var(--rf-color-danger);
109
+ text-decoration: line-through;
110
+ }
111
+
112
+ /* Event kind labels */
113
+ .rf-plan-history__created {
114
+ font-size: 0.925rem;
115
+ color: var(--rf-color-muted);
116
+ }
117
+ .rf-plan-history__resolution,
118
+ .rf-plan-history__content-edit {
119
+ font-size: 0.925rem;
120
+ color: var(--rf-color-muted);
121
+ font-style: italic;
122
+ }
123
+
124
+ /* Criteria list */
125
+ .rf-plan-history__criteria {
126
+ list-style: none;
127
+ padding: 0;
128
+ margin: 0.25rem 0 0;
129
+ }
130
+ .rf-plan-history__criteria li {
131
+ font-size: 0.8125rem;
132
+ line-height: 1.65;
133
+ color: var(--rf-color-text);
134
+ }
135
+ .rf-plan-history__criteria li[data-action="checked"] {
136
+ color: var(--rf-color-success);
137
+ }
138
+ .rf-plan-history__criteria li[data-action="unchecked"] {
139
+ color: var(--rf-color-danger);
140
+ }
141
+ .rf-plan-history__criteria li[data-action="removed"] {
142
+ color: var(--rf-color-danger);
143
+ text-decoration: line-through;
144
+ }
145
+
146
+ /* Collapse / empty */
147
+ .rf-plan-history__more {
148
+ color: var(--rf-color-muted);
149
+ font-style: italic;
150
+ cursor: pointer;
151
+ }
152
+ .rf-plan-history__empty {
153
+ color: var(--rf-color-muted);
154
+ font-style: italic;
155
+ }
156
+
157
+ /* Global feed (commit-grouped) */
158
+ .rf-plan-history--global .rf-plan-history__commit-message {
159
+ display: block;
160
+ font-size: 1.05rem;
161
+ font-weight: 700;
162
+ color: var(--rf-color-text);
163
+ margin-top: 0.25rem;
164
+ margin-bottom: 0.5rem;
165
+ }
166
+ .rf-plan-history--global .rf-plan-history__entity-summary {
167
+ display: flex;
168
+ align-items: baseline;
169
+ gap: 0.5rem;
170
+ font-size: 0.8125rem;
171
+ line-height: 1.65;
172
+ }
173
+ .rf-plan-history--global .rf-plan-history__entity-id {
174
+ font-weight: 600;
175
+ font-family: var(--rf-font-mono);
176
+ font-size: 0.75rem;
177
+ color: var(--rf-color-primary);
178
+ white-space: nowrap;
179
+ }
180
+ .rf-plan-history--global .rf-plan-history__entity-changes {
181
+ color: var(--rf-color-muted);
182
+ }
183
+
184
+ /* Responsive */
185
+ @media (max-width: 640px) {
186
+ .rf-plan-history__event {
187
+ padding-left: 1.25rem;
188
+ }
189
+ .rf-plan-history__event::before {
190
+ width: 0.625rem;
191
+ height: 0.625rem;
192
+ left: -0.375rem;
193
+ }
194
+ .rf-plan-history__change {
195
+ flex-wrap: wrap;
196
+ }
197
+ }
@@ -0,0 +1,26 @@
1
+ /* Plan cross-reference links */
2
+
3
+ .rf-plan-ref {
4
+ font-family: var(--rf-font-mono, ui-monospace, monospace);
5
+ font-size: 0.8125rem;
6
+ color: var(--rf-color-info, #339af0);
7
+ text-decoration: none;
8
+ border-bottom: 1px dashed var(--rf-color-info, #339af0);
9
+ padding-inline: 0.25rem;
10
+ }
11
+
12
+ .rf-plan-ref:hover {
13
+ background: var(--rf-color-info-bg, #e7f5ff);
14
+ border-radius: var(--rf-radius-sm, 0.25rem);
15
+ border-bottom-color: transparent;
16
+ }
17
+
18
+ .rf-plan-ref::before {
19
+ margin-inline-end: 0.25rem;
20
+ }
21
+
22
+ .rf-plan-ref[data-type="spec"]::before { content: '\1F4CB'; }
23
+ .rf-plan-ref[data-type="work"]::before { content: '\1F527'; }
24
+ .rf-plan-ref[data-type="bug"]::before { content: '\1F41B'; }
25
+ .rf-plan-ref[data-type="decision"]::before { content: '\2696\FE0F'; }
26
+ .rf-plan-ref[data-type="milestone"]::before { content: '\1F3AF'; }
@@ -0,0 +1,40 @@
1
+ /* Plan relationships section */
2
+
3
+ .rf-plan-relationships {
4
+ margin-top: 2rem;
5
+ padding-top: 1.5rem;
6
+ border-top: 1px solid var(--rf-color-border, #dee2e6);
7
+ }
8
+
9
+ .rf-plan-relationships__heading {
10
+ font-size: 1.125rem;
11
+ font-weight: 600;
12
+ color: var(--rf-color-text, #212529);
13
+ margin: 0 0 1rem;
14
+ }
15
+
16
+ .rf-plan-relationships__group {
17
+ margin-bottom: 1rem;
18
+ }
19
+
20
+ .rf-plan-relationships__group-title {
21
+ font-size: 0.8125rem;
22
+ font-weight: 600;
23
+ text-transform: uppercase;
24
+ letter-spacing: 0.04em;
25
+ color: var(--rf-color-muted, #6c757d);
26
+ margin: 0 0 0.375rem;
27
+ }
28
+
29
+ .rf-plan-relationships__group[data-kind="blocked-by"] .rf-plan-relationships__group-title {
30
+ color: var(--rf-color-danger, #ff6b6b);
31
+ }
32
+
33
+ .rf-plan-relationships__group[data-kind="blocks"] .rf-plan-relationships__group-title {
34
+ color: var(--rf-color-warning, #f59f00);
35
+ }
36
+
37
+ .rf-plan-relationships__cards {
38
+ display: flex;
39
+ flex-direction: column;
40
+ }
@@ -1,16 +1,30 @@
1
1
  /* Spec */
2
- .rf-spec__body {
3
- font-size: 0.925rem;
4
- line-height: 1.65;
2
+
3
+ /* Primary badges: ID left, status right */
4
+ .rf-spec__header-primary {
5
+ justify-content: space-between;
6
+ margin-bottom: 0.75rem;
5
7
  }
6
- .rf-spec__body > header {
8
+
9
+ /* Preamble: title + optional summary between badge groups */
10
+ .rf-spec__preamble {
7
11
  margin-bottom: 0.75rem;
8
12
  }
9
- .rf-spec__body > header h1,
10
- .rf-spec__body > header h2,
11
- .rf-spec__body > header h3 {
13
+ .rf-spec__title h1,
14
+ .rf-spec__title h2,
15
+ .rf-spec__title h3 {
12
16
  margin-top: 0;
13
17
  }
18
+
19
+ /* Secondary badges: pill row below preamble */
20
+ .rf-spec__header-secondary {
21
+ margin-bottom: 1.5rem;
22
+ }
23
+
24
+ .rf-spec__body {
25
+ font-size: 0.925rem;
26
+ line-height: 1.65;
27
+ }
14
28
  .rf-spec__body blockquote {
15
29
  border-left: 3px solid var(--rf-color-border);
16
30
  padding: 0.5rem 1rem;
@@ -1,4 +1,26 @@
1
1
  /* Work */
2
+
3
+ /* Primary badges: ID left, status right */
4
+ .rf-work__header-primary {
5
+ justify-content: space-between;
6
+ margin-bottom: 0.75rem;
7
+ }
8
+
9
+ /* Preamble: title + optional blurb between badge groups */
10
+ .rf-work__preamble {
11
+ margin-bottom: 0.75rem;
12
+ }
13
+ .rf-work__title h1,
14
+ .rf-work__title h2,
15
+ .rf-work__title h3 {
16
+ margin-top: 0;
17
+ }
18
+
19
+ /* Secondary badges: pill row below preamble */
20
+ .rf-work__header-secondary {
21
+ margin-bottom: 1.5rem;
22
+ }
23
+
2
24
  .rf-work__assignee-badge {
3
25
  margin-left: auto;
4
26
  }
@@ -7,20 +29,12 @@
7
29
  font-size: 0.925rem;
8
30
  line-height: 1.65;
9
31
  }
10
- .rf-work__body > header {
11
- margin-bottom: 0.75rem;
12
- }
13
- .rf-work__body > header h1,
14
- .rf-work__body > header h2,
15
- .rf-work__body > header h3 {
16
- margin-top: 0;
17
- }
18
- .rf-work__body > div > section {
32
+ .rf-work__body > section {
19
33
  margin-top: 1rem;
20
34
  padding-top: 0.75rem;
21
35
  border-top: 1px solid var(--rf-color-border);
22
36
  }
23
- .rf-work__body > div > section:first-child {
37
+ .rf-work__body > section:first-child {
24
38
  margin-top: 0.75rem;
25
39
  }
26
40
 
@@ -28,8 +42,8 @@
28
42
  .rf-work__complexity-badge::after {
29
43
  margin-left: 0.25rem;
30
44
  }
31
- [data-complexity="trivial"] > .rf-work__header > .rf-work__complexity-badge::after { content: '●'; }
32
- [data-complexity="simple"] > .rf-work__header > .rf-work__complexity-badge::after { content: '●●'; }
33
- [data-complexity="moderate"] > .rf-work__header > .rf-work__complexity-badge::after { content: '●●●'; }
34
- [data-complexity="complex"] > .rf-work__header > .rf-work__complexity-badge::after { content: '●●●●'; }
35
- [data-complexity="unknown"] > .rf-work__header > .rf-work__complexity-badge::after { content: '?'; }
45
+ [data-complexity="trivial"] > .rf-work__header-secondary > .rf-work__complexity-badge::after { content: '●'; }
46
+ [data-complexity="simple"] > .rf-work__header-secondary > .rf-work__complexity-badge::after { content: '●●'; }
47
+ [data-complexity="moderate"] > .rf-work__header-secondary > .rf-work__complexity-badge::after { content: '●●●'; }
48
+ [data-complexity="complex"] > .rf-work__header-secondary > .rf-work__complexity-badge::after { content: '●●●●'; }
49
+ [data-complexity="unknown"] > .rf-work__header-secondary > .rf-work__complexity-badge::after { content: '?'; }
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../layouts/index.ts"],"names":[],"mappings":"AAEA;;;;;GAKG;AACH,eAAO,MAAM,OAAO;;;;CAInB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../layouts/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAErF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,OAAO,GAAG;IACtB,OAAO,EAAE,aAAa;IACtB,IAAI,EAAE,UAAU;IAChB,cAAc,EAAE,iBAAiB;CACjC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config.ts"],"names":[],"mappings":"AAIA,gFAAgF;AAChF,eAAO,MAAM,YAAY,6CAoFvB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"config.js","sourceRoot":"","sources":["../../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,EAAE,KAAK,IAAI,WAAW,EAAE,MAAM,YAAY,CAAC;AAElD,gFAAgF;AAChF,MAAM,CAAC,MAAM,YAAY,GAAG,gBAAgB,CAAC,UAAU,EAAE;IACxD,KAAK,EAAE;QACN,IAAI,EAAE;YACL,KAAK,EAAE;gBACN,UAAU,EAAE,oBAAoB;gBAChC,OAAO,EAAE,yBAAyB;gBAClC,OAAO,EAAE,sBAAsB;gBAC/B,SAAS,EAAE,uBAAuB;gBAClC,MAAM,EAAE,yBAAyB;gBACjC,MAAM,EAAE,wBAAwB;aAChC;YACD,IAAI,EAAE;gBACL,UAAU,EAAE,oBAAoB;gBAChC,OAAO,EAAE,yBAAyB;gBAClC,OAAO,EAAE,sBAAsB;gBAC/B,SAAS,EAAE,uBAAuB;gBAClC,MAAM,EAAE,yBAAyB;gBACjC,MAAM,EAAE,wBAAwB;aAChC;SACD;QACD,MAAM,EAAE;YACP,KAAK,EAAE;gBACN,UAAU,EAAE,yBAAyB;gBACrC,OAAO,EAAE,+BAA+B;gBACxC,OAAO,EAAE,sBAAsB;gBAC/B,SAAS,EAAE,uBAAuB;gBAClC,MAAM,EAAE,yBAAyB;gBACjC,MAAM,EAAE,wBAAwB;aAChC;YACD,IAAI,EAAE;gBACL,UAAU,EAAE,yBAAyB;gBACrC,OAAO,EAAE,+BAA+B;gBACxC,OAAO,EAAE,sBAAsB;gBAC/B,SAAS,EAAE,uBAAuB;gBAClC,MAAM,EAAE,yBAAyB;gBACjC,MAAM,EAAE,wBAAwB;aAChC;SACD;QACD,IAAI,EAAE;YACL,KAAK,EAAE;gBACN,UAAU,EAAE,gCAAgC;gBAC5C,OAAO,EAAE,sBAAsB;gBAC/B,MAAM,EAAE,yBAAyB;gBACjC,MAAM,EAAE,wBAAwB;aAChC;YACD,IAAI,EAAE;gBACL,UAAU,EAAE,SAAS;gBACrB,OAAO,EAAE,sBAAsB;gBAC/B,MAAM,EAAE,yBAAyB;gBACjC,MAAM,EAAE,SAAS;aACjB;SACD;QACD,IAAI,EAAE;YACL,KAAK,EAAE;gBACN,UAAU,EAAE,yBAAyB;gBACrC,OAAO,EAAE,sBAAsB;gBAC/B,MAAM,EAAE,yBAAyB;gBACjC,MAAM,EAAE,6BAA6B;aACrC;YACD,IAAI,EAAE;gBACL,UAAU,EAAE,6BAA6B;gBACzC,OAAO,EAAE,6BAA6B;gBACtC,MAAM,EAAE,yBAAyB;gBACjC,MAAM,EAAE,6BAA6B;aACrC;SACD;QACD,IAAI,EAAE;YACL,IAAI,EAAE,MAAM;YACZ,IAAI,EAAE;gBACL,UAAU,EAAE,6BAA6B;gBACzC,OAAO,EAAE,4BAA4B;gBACrC,MAAM,EAAE,wBAAwB;aAChC;SACD;KACD;IACD,KAAK,EAAE;QACN,IAAI,EAAE;YACL,IAAI,EAAE,4SAA4S;YAClT,OAAO,EAAE,iXAAiX;YAC1X,OAAO,EAAE,uSAAuS;YAChT,KAAK,EAAE,qRAAqR;SAC5R;QACD,MAAM,EAAE,WAAW;KACnB;CACD,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../src/icons.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,eAAO,MAAM,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAoFxC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"icons.js","sourceRoot":"","sources":["../../src/icons.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,MAAM,CAAC,MAAM,KAAK,GAA2B;IAC5C,aAAa,EAAE,gPAAgP;IAC/P,YAAY,EAAE,iPAAiP;IAC/P,UAAU,EAAE,gPAAgP;IAC5P,YAAY,EAAE,iPAAiP;IAC/P,UAAU,EAAE,uSAAuS;IACnT,QAAQ,EAAE,uSAAuS;IACjT,OAAO,EAAE,uSAAuS;IAChT,MAAM,EAAE,kVAAkV;IAC1V,eAAe,EAAE,qTAAqT;IACtU,QAAQ,EAAE,8PAA8P;IACxQ,UAAU,EAAE,qjBAAqjB;IACjkB,MAAM,EAAE,2OAA2O;IACnP,OAAO,EAAE,qNAAqN;IAC9N,OAAO,EAAE,4NAA4N;IACrO,GAAG,EAAE,+OAA+O;IACpP,MAAM,EAAE,8TAA8T;IACtU,MAAM,EAAE,4YAA4Y;IACpZ,SAAS,EAAE,0WAA0W;IACrX,YAAY,EAAE,+WAA+W;IAC7X,QAAQ,EAAE,+VAA+V;IACzW,eAAe,EAAE,gSAAgS;IACjT,WAAW,EAAE,qWAAqW;IAClX,WAAW,EAAE,iaAAia;IAC9a,QAAQ,EAAE,mUAAmU;IAC7U,OAAO,EAAE,+UAA+U;IACxV,OAAO,EAAE,yUAAyU;IAClV,QAAQ,EAAE,gaAAga;IAC1a,MAAM,EAAE,qPAAqP;IAC7P,UAAU,EAAE,gPAAgP;IAC5P,UAAU,EAAE,kTAAkT;IAC9T,QAAQ,EAAE,oYAAoY;IAC9Y,OAAO,EAAE,gQAAgQ;IACzQ,KAAK,EAAE,iiBAAiiB;IACxiB,SAAS,EAAE,mUAAmU;IAC9U,YAAY,EAAE,iRAAiR;IAC/R,OAAO,EAAE,oTAAoT;IAC7T,SAAS,EAAE,kVAAkV;IAC7V,MAAM,EAAE,0WAA0W;IAClX,UAAU,EAAE,0fAA0f;IACtgB,KAAK,EAAE,4UAA4U;IACnV,MAAM,EAAE,gSAAgS;IACxS,QAAQ,EAAE,+RAA+R;IACzS,MAAM,EAAE,uSAAuS;IAC/S,OAAO,EAAE,kaAAka;IAC3a,MAAM,EAAE,oXAAoX;IAC5X,UAAU,EAAE,iTAAiT;IAC7T,gBAAgB,EAAE,uaAAua;IACzb,OAAO,EAAE,0PAA0P;IACnQ,MAAM,EAAE,+VAA+V;IACvW,UAAU,EAAE,mUAAmU;IAC/U,MAAM,EAAE,yjBAAyjB;IACjkB,OAAO,EAAE,kWAAkW;IAC3W,MAAM,EAAE,+QAA+Q;IACvR,gBAAgB,EAAE,kUAAkU;IACpV,cAAc,EAAE,qTAAqT;IACrU,cAAc,EAAE,wQAAwQ;IACxR,UAAU,EAAE,8QAA8Q;IAC1R,aAAa,EAAE,2SAA2S;IAC1T,QAAQ,EAAE,+WAA+W;IACzX,cAAc,EAAE,0YAA0Y;IAC1Z,KAAK,EAAE,mVAAmV;IAC1V,SAAS,EAAE,+dAA+d;IAC1e,WAAW,EAAE,2XAA2X;IACxY,aAAa,EAAE,0XAA0X;IACzY,aAAa,EAAE,sSAAsS;IACrT,aAAa,EAAE,0RAA0R;IACzS,eAAe,EAAE,8VAA8V;IAC/W,SAAS,EAAE,qaAAqa;IAChb,OAAO,EAAE,0bAA0b;IACnc,WAAW,EAAE,0SAA0S;IACvT,QAAQ,EAAE,mSAAmS;IAC7S,aAAa,EAAE,0PAA0P;IACzQ,aAAa,EAAE,iQAAiQ;IAChR,OAAO,EAAE,sWAAsW;IAC/W,MAAM,EAAE,sRAAsR;IAC9R,KAAK,EAAE,wWAAwW;IAC/W,QAAQ,EAAE,wfAAwf;IAClgB,UAAU,EAAE,8hBAA8hB;IAC1iB,WAAW,EAAE,4VAA4V;IACzW,QAAQ,EAAE,0pBAA0pB;IACpqB,QAAQ,EAAE,ueAAue;IACjf,QAAQ,EAAE,4RAA4R;IACtS,SAAS,EAAE,giBAAgiB;CAC3iB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"transform.d.ts","sourceRoot":"","sources":["../../src/transform.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAElG,sGAAsG;AACtG,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,2FAA2F;AAC3F,eAAO,MAAM,iBAAiB,sGAAgC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"transform.js","sourceRoot":"","sources":["../../src/transform.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,sEAAsE;AACtE,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAGxD,sGAAsG;AACtG,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,2FAA2F;AAC3F,MAAM,CAAC,MAAM,iBAAiB,GAAG,eAAe,CAAC,YAAY,CAAC,CAAC"}
package/layouts/index.ts DELETED
@@ -1,13 +0,0 @@
1
- import { defaultLayout, docsLayout, blogArticleLayout } from '@refrakt-md/transform';
2
-
3
- /**
4
- * Layout name -> LayoutConfig map.
5
- *
6
- * This is the single framework-agnostic entry point for Lumina's layouts,
7
- * replacing the per-framework adapter files (ADR-009).
8
- */
9
- export const layouts = {
10
- default: defaultLayout,
11
- docs: docsLayout,
12
- 'blog-article': blogArticleLayout,
13
- };
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes