@octaviaflow/themes 1.0.1

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 (46) hide show
  1. package/README.md +122 -0
  2. package/docs/sass.md +189 -0
  3. package/index.scss +11 -0
  4. package/lib/index.js +5634 -0
  5. package/package.json +49 -0
  6. package/scss/_component-tokens.scss +10 -0
  7. package/scss/_config.scss +11 -0
  8. package/scss/_theme.scss +120 -0
  9. package/scss/_themes.scss +8 -0
  10. package/scss/_tokens.scss +8 -0
  11. package/scss/_utilities.scss +18 -0
  12. package/scss/compat/_themes.scss +8 -0
  13. package/scss/compat/_tokens.scss +8 -0
  14. package/scss/compat/generated/_themes.scss +271 -0
  15. package/scss/compat/generated/_tokens.scss +206 -0
  16. package/src/component-tokens/button/index.js +10 -0
  17. package/src/component-tokens/button/tokens.js +132 -0
  18. package/src/component-tokens/notification/index.js +10 -0
  19. package/src/component-tokens/notification/tokens.js +107 -0
  20. package/src/component-tokens/tag/index.js +10 -0
  21. package/src/component-tokens/tag/tokens.js +362 -0
  22. package/src/g10.js +346 -0
  23. package/src/g100.js +349 -0
  24. package/src/g90.js +350 -0
  25. package/src/index.js +42 -0
  26. package/src/tokens/Token.js +37 -0
  27. package/src/tokens/TokenFormat.js +91 -0
  28. package/src/tokens/TokenGroup.js +164 -0
  29. package/src/tokens/TokenSet.js +80 -0
  30. package/src/tokens/components.js +97 -0
  31. package/src/tokens/index.js +71 -0
  32. package/src/tokens/layout.js +42 -0
  33. package/src/tokens/type.js +52 -0
  34. package/src/tokens/v10.js +191 -0
  35. package/src/tokens/v11TokenGroup.js +436 -0
  36. package/src/tokens/v11TokenSet.js +94 -0
  37. package/src/tools.js +80 -0
  38. package/src/v10/g10.js +352 -0
  39. package/src/v10/g100.js +351 -0
  40. package/src/v10/g90.js +353 -0
  41. package/src/v10/index.js +25 -0
  42. package/src/v10/metadata.yml +217 -0
  43. package/src/v10/tokens.js +400 -0
  44. package/src/v10/white.js +355 -0
  45. package/src/white.js +349 -0
  46. package/telemetry.yml +17 -0
@@ -0,0 +1,355 @@
1
+ /**
2
+ * Copyright OctaviaFlow
3
+ * Author: Vishal Kumar
4
+ * Created: 11/November/2025
5
+ *
6
+ * This source code is licensed under the Apache-2.0 license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+
10
+
11
+ import { adjustLightness } from '../tools';
12
+
13
+ import {
14
+ // Blue
15
+ blue20,
16
+ blue40,
17
+ blue60,
18
+ blue70,
19
+ blue80,
20
+
21
+ // Gray
22
+ gray10,
23
+ gray20,
24
+ gray30,
25
+ gray40,
26
+ gray50,
27
+ gray60,
28
+ gray70,
29
+ gray80,
30
+ gray100,
31
+
32
+ // Support
33
+ blue50,
34
+ green40,
35
+ green60,
36
+ yellow30,
37
+ red50,
38
+ red60,
39
+ red80,
40
+ purple60,
41
+
42
+ // Constants
43
+ white,
44
+ black,
45
+
46
+ // Tools
47
+ rgba,
48
+ } from '@octaviaflow/colors';
49
+
50
+ export const interactive01 = blue60;
51
+ export const interactive02 = gray80;
52
+ export const interactive03 = blue60;
53
+ export const interactive04 = blue60;
54
+
55
+ export const uiBackground = white;
56
+
57
+ export const ui01 = gray10;
58
+ export const ui02 = white;
59
+ export const ui03 = gray20;
60
+ export const ui04 = gray50;
61
+ export const ui05 = gray100;
62
+
63
+ export const text01 = gray100;
64
+ export const text02 = gray70;
65
+ export const text03 = gray40;
66
+ export const text04 = white;
67
+ export const text05 = gray60;
68
+ export const textError = red60;
69
+
70
+ export const icon01 = gray100;
71
+ export const icon02 = gray70;
72
+ export const icon03 = white;
73
+
74
+ export const link01 = blue60;
75
+ export const link02 = blue70;
76
+
77
+ export const inverseLink = blue40;
78
+
79
+ export const field01 = gray10;
80
+ export const field02 = white;
81
+
82
+ export const inverse01 = white;
83
+ export const inverse02 = gray80;
84
+
85
+ export const support01 = red60;
86
+ export const support02 = green60;
87
+ export const support03 = yellow30;
88
+ export const support04 = blue70;
89
+
90
+ export const inverseSupport01 = red50;
91
+ export const inverseSupport02 = green40;
92
+ export const inverseSupport03 = yellow30;
93
+ export const inverseSupport04 = blue50;
94
+
95
+ export const overlay01 = rgba(gray100, 0.5);
96
+
97
+ export const danger01 = red60;
98
+ export const danger02 = red60;
99
+
100
+ // Interaction states
101
+ export const focus = blue60;
102
+ export const inverseFocusUi = white;
103
+
104
+ export const hoverPrimary = '#0353e9';
105
+ export const activePrimary = blue80;
106
+
107
+ export const hoverPrimaryText = blue70;
108
+
109
+ export const hoverSecondary = '#4c4c4c';
110
+ export const activeSecondary = gray60;
111
+
112
+ export const hoverTertiary = '#0353e9';
113
+ export const activeTertiary = blue80;
114
+
115
+ export const hoverUI = '#e5e5e5';
116
+ export const hoverLightUI = '#e5e5e5';
117
+ export const activeUI = gray30;
118
+ export const activeLightUI = gray30;
119
+ export const selectedUI = gray20;
120
+ export const selectedLightUI = gray20;
121
+ export const inverseHoverUI = '#4c4c4c';
122
+
123
+ export const hoverSelectedUI = '#cacaca';
124
+
125
+ export const hoverDanger = adjustLightness(danger01, -8);
126
+ export const activeDanger = red80;
127
+
128
+ export const hoverRow = '#e5e5e5';
129
+
130
+ export const visitedLink = purple60;
131
+
132
+ export const disabled01 = gray10;
133
+ export const disabled02 = gray30;
134
+ export const disabled03 = gray50;
135
+
136
+ export const highlight = blue20;
137
+
138
+ export const decorative01 = gray20;
139
+
140
+ export const buttonSeparator = '#e0e0e0';
141
+
142
+ export const skeleton01 = '#e5e5e5';
143
+ export const skeleton02 = gray30;
144
+
145
+ // New color tokens
146
+ // TO-DO: remove fallback color when v11 is released and assign carbon colors to new tokens
147
+ export const background = uiBackground;
148
+ export const layer = ui01;
149
+ export const layerAccent = ui03;
150
+ export const layerAccentActive = gray40;
151
+ export const layerAccentHover = adjustLightness(layerAccent, -6);
152
+ export const field = field01;
153
+ export const backgroundInverse = inverse02;
154
+ export const backgroundBrand = interactive01;
155
+ export const interactive = interactive04;
156
+
157
+ export const borderSubtle = ui03;
158
+ export const borderStrong = ui04;
159
+ export const borderInverse = ui05;
160
+ export const borderInteractive = interactive04;
161
+
162
+ export const textPrimary = text01;
163
+ export const textSecondary = text02;
164
+ export const textPlaceholder = text03;
165
+ export const textHelper = text05;
166
+ export const textOnColor = text04;
167
+ export const textInverse = inverse01;
168
+
169
+ export const linkPrimary = link01;
170
+ export const linkSecondary = link02;
171
+ export const linkVisited = visitedLink;
172
+ export const linkInverse = inverseLink;
173
+
174
+ export const iconPrimary = icon01;
175
+ export const iconSecondary = icon02;
176
+ export const iconOnColor = icon03;
177
+ export const iconInverse = inverse01;
178
+
179
+ export const supportError = support01;
180
+ export const supportSuccess = support02;
181
+ export const supportWarning = support03;
182
+ export const supportInfo = support04;
183
+ export const supportErrorInverse = inverseSupport01;
184
+ export const supportSuccessInverse = inverseSupport02;
185
+ export const supportWarningInverse = inverseSupport03;
186
+ export const supportInfoInverse = inverseSupport04;
187
+
188
+ export const overlay = overlay01;
189
+ export const toggleOff = ui04;
190
+ export const shadow = rgba(black, 0.3);
191
+
192
+ export const buttonPrimary = interactive01;
193
+ export const buttonSecondary = interactive02;
194
+ export const buttonTertiary = interactive03;
195
+ export const buttonDangerPrimary = danger01;
196
+ export const buttonDangerSecondary = danger02;
197
+
198
+ export const backgroundActive = activeUI;
199
+ export const layerActive = activeUI;
200
+
201
+ export const buttonDangerActive = activeDanger;
202
+ export const buttonPrimaryActive = activePrimary;
203
+ export const buttonSecondaryActive = activeSecondary;
204
+ export const buttonTertiaryActive = activeTertiary;
205
+
206
+ export const focusInset = inverse01;
207
+ export const focusInverse = inverseFocusUi;
208
+
209
+ export const backgroundHover = hoverUI;
210
+ export const layerHover = hoverUI;
211
+ export const fieldHover = hoverUI;
212
+ export const backgroundInverseHover = inverseHoverUI;
213
+ export const linkPrimaryHover = hoverPrimaryText;
214
+ export const buttonDangerHover = hoverDanger;
215
+ export const buttonPrimaryHover = hoverPrimary;
216
+ export const buttonSecondaryHover = hoverSecondary;
217
+ export const buttonTertiaryHover = hoverTertiary;
218
+
219
+ export const backgroundSelected = selectedUI;
220
+ export const backgroundSelectedHover = hoverSelectedUI;
221
+ export const layerSelected = selectedUI;
222
+ export const layerSelectedHover = hoverSelectedUI;
223
+ export const layerSelectedInverse = ui05;
224
+ export const borderSubtleSelected = activeUI;
225
+
226
+ export const borderDisabled = disabled01;
227
+
228
+ export const textDisabled = disabled02;
229
+ export const buttonDisabled = disabled02;
230
+ export const iconDisabled = disabled02;
231
+
232
+ export const textOnColorDisabled = disabled03;
233
+ export const iconOnColorDisabled = disabled03;
234
+ export const layerSelectedDisabled = disabled03;
235
+
236
+ export const skeletonBackground = skeleton01;
237
+ export const skeletonElement = skeleton02;
238
+
239
+ // Type
240
+ export {
241
+ caption01,
242
+ caption02,
243
+ label01,
244
+ label02,
245
+ helperText01,
246
+ helperText02,
247
+ bodyShort01,
248
+ bodyLong01,
249
+ bodyShort02,
250
+ bodyLong02,
251
+ code01,
252
+ code02,
253
+ heading01,
254
+ productiveHeading01,
255
+ heading02,
256
+ productiveHeading02,
257
+ productiveHeading03,
258
+ productiveHeading04,
259
+ productiveHeading05,
260
+ productiveHeading06,
261
+ productiveHeading07,
262
+ expressiveHeading01,
263
+ expressiveHeading02,
264
+ expressiveHeading03,
265
+ expressiveHeading04,
266
+ expressiveHeading05,
267
+ expressiveHeading06,
268
+ expressiveParagraph01,
269
+ quotation01,
270
+ quotation02,
271
+ display01,
272
+ display02,
273
+ display03,
274
+ display04,
275
+ // V11 Tokens
276
+ legal01,
277
+ legal02,
278
+ bodyCompact01,
279
+ bodyCompact02,
280
+ body01,
281
+ body02,
282
+ headingCompact01,
283
+ headingCompact02,
284
+ heading03,
285
+ heading04,
286
+ heading05,
287
+ heading06,
288
+ heading07,
289
+ fluidHeading03,
290
+ fluidHeading04,
291
+ fluidHeading05,
292
+ fluidHeading06,
293
+ fluidParagraph01,
294
+ fluidQuotation01,
295
+ fluidQuotation02,
296
+ fluidDisplay01,
297
+ fluidDisplay02,
298
+ fluidDisplay03,
299
+ fluidDisplay04,
300
+ } from '@octaviaflow/type';
301
+
302
+ // Layout
303
+ // Spacing
304
+ export {
305
+ spacing01,
306
+ spacing02,
307
+ spacing03,
308
+ spacing04,
309
+ spacing05,
310
+ spacing06,
311
+ spacing07,
312
+ spacing08,
313
+ spacing09,
314
+ spacing10,
315
+ spacing11,
316
+ spacing12,
317
+ spacing13,
318
+ // Fluid spacing
319
+ fluidSpacing01,
320
+ fluidSpacing02,
321
+ fluidSpacing03,
322
+ fluidSpacing04,
323
+ // Containers
324
+ container01,
325
+ container02,
326
+ container03,
327
+ container04,
328
+ container05,
329
+ sizeXSmall,
330
+ sizeSmall,
331
+ sizeMedium,
332
+ sizeLarge,
333
+ sizeXLarge,
334
+ size2XLarge,
335
+ // Icon sizes
336
+ iconSize01,
337
+ iconSize02,
338
+ // Layout
339
+ // Deprecated ☠️
340
+ layout01,
341
+ layout02,
342
+ layout03,
343
+ layout04,
344
+ layout05,
345
+ layout06,
346
+ layout07,
347
+ } from '@octaviaflow/layout';
348
+
349
+ // Deprecated ☠️
350
+ export const brand01 = interactive01;
351
+ export const brand02 = interactive02;
352
+ export const brand03 = interactive03;
353
+ export const active01 = activeUI;
354
+ export const hoverField = hoverUI;
355
+ export const danger = danger01;
package/src/white.js ADDED
@@ -0,0 +1,349 @@
1
+ /**
2
+ * Copyright OctaviaFlow
3
+ * Author: Vishal Kumar
4
+ * Created: 11/November/2025
5
+ *
6
+ * This source code is licensed under the Apache-2.0 license found in the
7
+ * LICENSE file in the root directory of this source tree.
8
+ */
9
+
10
+
11
+ import {
12
+ // Blue
13
+ blue10,
14
+ blue20,
15
+ blue30,
16
+ blue40,
17
+ blue60,
18
+ blue70,
19
+ blue100,
20
+
21
+ // Gray
22
+ gray10,
23
+ gray10Hover,
24
+ gray20,
25
+ gray20Hover,
26
+ gray30,
27
+ gray40,
28
+ gray50,
29
+ gray60,
30
+ gray70,
31
+ gray80,
32
+ gray80Hover,
33
+ gray100,
34
+
35
+ // Support
36
+ blue50,
37
+ green40,
38
+ green50,
39
+ yellow30,
40
+ orange40,
41
+ red50,
42
+ red60,
43
+ purple60,
44
+ purple40,
45
+
46
+ // Constants
47
+ black,
48
+ white,
49
+ whiteHover,
50
+ rgba,
51
+ } from '@octaviaflow/colors';
52
+ import { adjustAlpha } from './tools';
53
+
54
+ // Background
55
+ export const background = white;
56
+ export const backgroundInverse = gray80;
57
+ export const backgroundBrand = blue60;
58
+ export const backgroundActive = adjustAlpha(gray50, 0.5);
59
+ export const backgroundHover = adjustAlpha(gray50, 0.12);
60
+ export const backgroundInverseHover = gray80Hover;
61
+ export const backgroundSelected = adjustAlpha(gray50, 0.2);
62
+ export const backgroundSelectedHover = adjustAlpha(gray50, 0.32);
63
+
64
+ // Layer
65
+ // layer-01
66
+ export const layer01 = gray10;
67
+ export const layerActive01 = gray30;
68
+ export const layerHover01 = gray10Hover;
69
+ export const layerSelected01 = gray20;
70
+ export const layerSelectedHover01 = gray20Hover;
71
+
72
+ // layer-02
73
+ export const layer02 = white;
74
+ export const layerActive02 = gray30;
75
+ export const layerHover02 = whiteHover;
76
+ export const layerSelected02 = gray20;
77
+ export const layerSelectedHover02 = gray20Hover;
78
+
79
+ // layer-03
80
+ export const layer03 = gray10;
81
+ export const layerActive03 = gray30;
82
+ export const layerHover03 = gray10Hover;
83
+ export const layerSelected03 = gray20;
84
+ export const layerSelectedHover03 = gray20Hover;
85
+
86
+ // layer
87
+ export const layerSelectedInverse = gray100;
88
+ export const layerSelectedDisabled = gray50;
89
+
90
+ // layer-accent-01
91
+ export const layerAccent01 = gray20;
92
+ export const layerAccentActive01 = gray40;
93
+ export const layerAccentHover01 = gray20Hover;
94
+
95
+ // layer-accent-02
96
+ export const layerAccent02 = gray20;
97
+ export const layerAccentActive02 = gray40;
98
+ export const layerAccentHover02 = gray20Hover;
99
+
100
+ // layer-accent-03
101
+ export const layerAccent03 = gray20;
102
+ export const layerAccentActive03 = gray40;
103
+ export const layerAccentHover03 = gray20Hover;
104
+
105
+ // Field
106
+ // field-01
107
+ export const field01 = gray10;
108
+ export const fieldHover01 = gray10Hover;
109
+
110
+ // field-02
111
+ export const field02 = white;
112
+ export const fieldHover02 = whiteHover;
113
+
114
+ // field-03
115
+ export const field03 = gray10;
116
+ export const fieldHover03 = gray10Hover;
117
+
118
+ // Border
119
+ // border-subtle-00
120
+ export const borderSubtle00 = gray20;
121
+
122
+ // border-subtle-01
123
+ export const borderSubtle01 = gray30;
124
+ export const borderSubtleSelected01 = gray30;
125
+
126
+ // border-subtle-02
127
+ export const borderSubtle02 = gray20;
128
+ export const borderSubtleSelected02 = gray30;
129
+
130
+ // border-subtle-03
131
+ export const borderSubtle03 = gray30;
132
+ export const borderSubtleSelected03 = gray30;
133
+
134
+ // border-strong
135
+ export const borderStrong01 = gray50;
136
+ export const borderStrong02 = gray50;
137
+ export const borderStrong03 = gray50;
138
+
139
+ // border-tile
140
+ export const borderTile01 = gray30;
141
+ export const borderTile02 = gray40;
142
+ export const borderTile03 = gray30;
143
+
144
+ // border-inverse
145
+ export const borderInverse = gray100;
146
+
147
+ // border-interactive
148
+ export const borderInteractive = blue60;
149
+
150
+ // border
151
+ export const borderDisabled = gray30;
152
+
153
+ // Text
154
+ export const textPrimary = gray100;
155
+ export const textSecondary = gray70;
156
+ export const textPlaceholder = adjustAlpha(textPrimary, 0.4);
157
+ export const textHelper = gray60;
158
+ export const textError = red60;
159
+ export const textInverse = white;
160
+ export const textOnColor = white;
161
+ export const textOnColorDisabled = gray50;
162
+ export const textDisabled = adjustAlpha(textPrimary, 0.25);
163
+
164
+ // Link
165
+ export const linkPrimary = blue60;
166
+ export const linkPrimaryHover = blue70;
167
+ export const linkSecondary = blue70;
168
+ export const linkInverse = blue40;
169
+ export const linkVisited = purple60;
170
+ export const linkInverseVisited = purple40;
171
+ export const linkInverseActive = gray10;
172
+ export const linkInverseHover = blue30;
173
+
174
+ // Icon
175
+ export const iconPrimary = gray100;
176
+ export const iconSecondary = gray70;
177
+ export const iconInverse = white;
178
+ export const iconOnColor = white;
179
+ export const iconOnColorDisabled = gray50;
180
+ export const iconDisabled = adjustAlpha(iconPrimary, 0.25);
181
+ export const iconInteractive = blue60;
182
+
183
+ // Support
184
+ export const supportError = red60;
185
+ export const supportSuccess = green50;
186
+ export const supportWarning = yellow30;
187
+ export const supportInfo = blue70;
188
+ export const supportErrorInverse = red50;
189
+ export const supportSuccessInverse = green40;
190
+ export const supportWarningInverse = yellow30;
191
+ export const supportInfoInverse = blue50;
192
+ export const supportCautionMinor = yellow30;
193
+ export const supportCautionMajor = orange40;
194
+ export const supportCautionUndefined = purple60;
195
+
196
+ // Focus
197
+ export const focus = blue60;
198
+ export const focusInset = white;
199
+ export const focusInverse = white;
200
+
201
+ // Skeleton
202
+ export const skeletonBackground = whiteHover;
203
+ export const skeletonElement = gray30;
204
+
205
+ // Misc
206
+ export const interactive = blue60;
207
+ export const highlight = blue20;
208
+ export const overlay = 'rgba(22, 22, 22, 0.5)';
209
+ export const toggleOff = gray50;
210
+ export const shadow = 'rgba(0, 0, 0, 0.3)';
211
+
212
+ //// AI - Experimental (Use at your own risk)
213
+ //// Phase 2 - new \\\\
214
+ // Shared
215
+ export const aiInnerShadow = rgba(blue50, 0.1);
216
+ export const aiAuraStartSm = rgba(blue50, 0.16);
217
+ export const aiAuraStart = rgba(blue50, 0.1);
218
+ export const aiAuraEnd = rgba(white, 0);
219
+ export const aiBorderStrong = blue50;
220
+ export const aiBorderStart = rgba(blue30, 0.64);
221
+ export const aiBorderEnd = blue40;
222
+ export const aiDropShadow = rgba(blue60, 0.1);
223
+ export const aiAuraHoverBackground = blue10;
224
+ export const aiAuraHoverStart = rgba(blue50, 0.32);
225
+ export const aiAuraHoverEnd = rgba(white, 0);
226
+
227
+ // AI Popover
228
+ export const aiPopoverBackground = white;
229
+ export const aiPopoverShadowOuter01 = rgba(blue70, 0.06);
230
+ export const aiPopoverShadowOuter02 = rgba(black, 0.04);
231
+
232
+ // AI skeleton
233
+ export const aiSkeletonBackground = blue20;
234
+ export const aiSkeletonElementBackground = blue50;
235
+
236
+ // AI Modal tokens
237
+ export const aiOverlay = rgba(blue100, 0.5);
238
+
239
+ // One off tokens for caret
240
+ export const aiPopoverCaretCenter = '#A0C3FF';
241
+ export const aiPopoverCaretBottom = blue40;
242
+ export const aiPopoverCaretBottomBackgroundActions = '#E9EFFA';
243
+ export const aiPopoverCaretBottomBackground = '#EAF1FF';
244
+
245
+ // Chat tokens
246
+ export const chatPromptBackground = white;
247
+ export const chatPromptBorderStart = gray10;
248
+ export const chatPromptBorderEnd = rgba(gray10, 0);
249
+ export const chatBubbleUser = gray20;
250
+ export const chatBubbleAgent = white;
251
+ export const chatBubbleBorder = gray20;
252
+ export const chatAvatarBot = gray60;
253
+ export const chatAvatarAgent = gray80;
254
+ export const chatAvatarUser = blue60;
255
+ export const chatShellBackground = white;
256
+ export const chatHeaderBackground = white;
257
+
258
+ // Chat button tokens
259
+ export const chatButton = linkPrimary;
260
+ export const chatButtonHover = backgroundHover;
261
+ export const chatButtonTextHover = linkPrimaryHover;
262
+ export const chatButtonActive = backgroundActive;
263
+ export const chatButtonSelected = backgroundSelected;
264
+ export const chatButtonTextSelected = textSecondary;
265
+
266
+ // Type
267
+ export {
268
+ caption01,
269
+ caption02,
270
+ label01,
271
+ label02,
272
+ helperText01,
273
+ helperText02,
274
+ bodyShort01,
275
+ bodyLong01,
276
+ bodyShort02,
277
+ bodyLong02,
278
+ code01,
279
+ code02,
280
+ heading01,
281
+ productiveHeading01,
282
+ heading02,
283
+ productiveHeading02,
284
+ productiveHeading03,
285
+ productiveHeading04,
286
+ productiveHeading05,
287
+ productiveHeading06,
288
+ productiveHeading07,
289
+ expressiveHeading01,
290
+ expressiveHeading02,
291
+ expressiveHeading03,
292
+ expressiveHeading04,
293
+ expressiveHeading05,
294
+ expressiveHeading06,
295
+ expressiveParagraph01,
296
+ quotation01,
297
+ quotation02,
298
+ display01,
299
+ display02,
300
+ display03,
301
+ display04,
302
+ } from '@octaviaflow/type';
303
+
304
+ // Layout
305
+ // Spacing
306
+ export {
307
+ spacing01,
308
+ spacing02,
309
+ spacing03,
310
+ spacing04,
311
+ spacing05,
312
+ spacing06,
313
+ spacing07,
314
+ spacing08,
315
+ spacing09,
316
+ spacing10,
317
+ spacing11,
318
+ spacing12,
319
+ spacing13,
320
+ // Fluid spacing
321
+ fluidSpacing01,
322
+ fluidSpacing02,
323
+ fluidSpacing03,
324
+ fluidSpacing04,
325
+ // Containers
326
+ container01,
327
+ container02,
328
+ container03,
329
+ container04,
330
+ container05,
331
+ sizeXSmall,
332
+ sizeSmall,
333
+ sizeMedium,
334
+ sizeLarge,
335
+ sizeXLarge,
336
+ size2XLarge,
337
+ // Icon sizes
338
+ iconSize01,
339
+ iconSize02,
340
+ // Layout
341
+ // Deprecated ☠️
342
+ layout01,
343
+ layout02,
344
+ layout03,
345
+ layout04,
346
+ layout05,
347
+ layout06,
348
+ layout07,
349
+ } from '@octaviaflow/layout';
package/telemetry.yml ADDED
@@ -0,0 +1,17 @@
1
+ # yaml-language-server: $schema=https://unpkg.com/@octaviaflow/telemetry-config-schema@v1.0.0/dist/config.schema.json
2
+ version: 1
3
+ projectId: '64db1997-f0bc-4900-8a91-e98f3f770ad0'
4
+ name: 'octaviaflow-themes'
5
+ storage:
6
+ type: 'file'
7
+ file:
8
+ directory: '/Volumes/Main/Projects/OctaviaFlow-Design-System/telemetry-logs'
9
+ fileNamePattern: 'octaviaflow-themes-{timestamp}.json'
10
+ maxFileSizeMB: 10
11
+ compress: false
12
+ collect:
13
+ npm:
14
+ dependencies: null
15
+ js:
16
+ functions: {}
17
+ tokens: null