@refrakt-md/lumina 0.9.8 → 0.10.0

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.
@@ -302,23 +302,11 @@
302
302
  "classPattern": ".rf-budget--{value}",
303
303
  "dataAttribute": "data-currency"
304
304
  },
305
- "travelers": {
306
- "source": "meta",
307
- "default": "1",
308
- "classPattern": ".rf-budget--{value}",
309
- "dataAttribute": "data-travelers"
310
- },
311
305
  "duration": {
312
306
  "source": "meta",
313
307
  "classPattern": ".rf-budget--{value}",
314
308
  "dataAttribute": "data-duration"
315
309
  },
316
- "showPerPerson": {
317
- "source": "meta",
318
- "default": "true",
319
- "classPattern": ".rf-budget--{value}",
320
- "dataAttribute": "data-show-per-person"
321
- },
322
310
  "showPerDay": {
323
311
  "source": "meta",
324
312
  "default": "true",
@@ -339,7 +327,6 @@
339
327
  "source": "structure",
340
328
  "conditionAny": [
341
329
  "currency",
342
- "travelers",
343
330
  "duration"
344
331
  ]
345
332
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@refrakt-md/lumina",
3
3
  "description": "Lumina theme for refrakt.md — design tokens, CSS, identity transform, and layout configs",
4
- "version": "0.9.8",
4
+ "version": "0.10.0",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -44,9 +44,9 @@
44
44
  "build": "tsc"
45
45
  },
46
46
  "dependencies": {
47
- "@refrakt-md/runes": "0.9.8",
48
- "@refrakt-md/transform": "0.9.8",
49
- "@refrakt-md/types": "0.9.8"
47
+ "@refrakt-md/runes": "0.10.0",
48
+ "@refrakt-md/transform": "0.10.0",
49
+ "@refrakt-md/types": "0.10.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "postcss": "^8.4.0"
@@ -115,6 +115,7 @@
115
115
  display: flex;
116
116
  justify-content: space-between;
117
117
  align-items: baseline;
118
+ gap: 1rem;
118
119
  }
119
120
  .rf-budget__total-label {
120
121
  font-size: 1rem;
@@ -125,24 +126,25 @@
125
126
  font-size: 1.25rem;
126
127
  font-weight: 700;
127
128
  color: var(--rf-color-text);
129
+ white-space: nowrap;
128
130
  font-variant-numeric: tabular-nums;
129
131
  }
130
- .rf-budget__per-person,
131
132
  .rf-budget__per-day {
132
133
  display: flex;
133
134
  justify-content: space-between;
134
135
  align-items: baseline;
136
+ gap: 1rem;
135
137
  }
136
- .rf-budget__per-person-label,
137
138
  .rf-budget__per-day-label {
138
139
  font-size: 0.8125rem;
139
140
  color: var(--rf-color-muted);
141
+ min-width: 0;
140
142
  }
141
- .rf-budget__per-person-amount,
142
143
  .rf-budget__per-day-amount {
143
144
  font-size: 0.9375rem;
144
145
  font-weight: 500;
145
146
  color: var(--rf-color-muted);
147
+ white-space: nowrap;
146
148
  font-variant-numeric: tabular-nums;
147
149
  }
148
150