@sage/design-tokens 2.64.0 → 2.65.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.
Files changed (53) hide show
  1. package/android/base.xml +4 -2
  2. package/android/dashboard/darkMode.xml +11 -0
  3. package/android/dashboard/lightMode.xml +11 -0
  4. package/android/origin.xml +108 -97
  5. package/css/base.css +4 -2
  6. package/css/dashboard/darkMode.css +13 -0
  7. package/css/dashboard/lightMode.css +13 -0
  8. package/css/origin.css +108 -97
  9. package/data/tokens.json +1125 -132
  10. package/docs/tokens/base/border-radius/index.html +41 -20
  11. package/docs/tokens/base/border-width/index.html +2 -2
  12. package/docs/tokens/base/box-shadow/index.html +2 -2
  13. package/docs/tokens/base/colors/index.html +23 -2
  14. package/docs/tokens/base/font-families/index.html +2 -2
  15. package/docs/tokens/base/font-sizes/index.html +2 -2
  16. package/docs/tokens/base/font-weights/index.html +2 -2
  17. package/docs/tokens/base/index.html +62 -20
  18. package/docs/tokens/base/line-heights/index.html +2 -2
  19. package/docs/tokens/base/opacity/index.html +2 -2
  20. package/docs/tokens/base/sizing/index.html +2 -2
  21. package/docs/tokens/base/spacing/index.html +2 -2
  22. package/docs/tokens/base/typography/index.html +2 -2
  23. package/docs/tokens/index.html +812 -539
  24. package/docs/tokens/origin/index.html +750 -519
  25. package/docs/tokens/origin/{colors → origin-colors-reference-only}/index.html +751 -520
  26. package/index.js +4 -0
  27. package/ios/base.h +4 -2
  28. package/ios/dashboard/darkMode.h +15 -0
  29. package/ios/dashboard/lightMode.h +15 -0
  30. package/ios/origin.h +108 -97
  31. package/js/base/common.d.ts +3 -1
  32. package/js/base/common.js +4 -2
  33. package/js/base/es6.d.ts +3 -1
  34. package/js/base/es6.js +3 -1
  35. package/js/dashboard/darkMode/common.d.ts +2 -0
  36. package/js/dashboard/darkMode/common.js +13 -0
  37. package/js/dashboard/darkMode/es6.d.ts +5 -0
  38. package/js/dashboard/darkMode/es6.js +8 -0
  39. package/js/dashboard/lightMode/common.d.ts +2 -0
  40. package/js/dashboard/lightMode/common.js +13 -0
  41. package/js/dashboard/lightMode/es6.d.ts +5 -0
  42. package/js/dashboard/lightMode/es6.js +8 -0
  43. package/js/origin/common.d.ts +107 -96
  44. package/js/origin/common.js +108 -97
  45. package/js/origin/es6.d.ts +107 -96
  46. package/js/origin/es6.js +107 -96
  47. package/package.json +1 -1
  48. package/sage-design-tokens-2.65.0.tgz +0 -0
  49. package/scss/base.scss +4 -2
  50. package/scss/dashboard/darkMode.scss +10 -0
  51. package/scss/dashboard/lightMode.scss +10 -0
  52. package/scss/origin.scss +108 -97
  53. package/sage-design-tokens-2.64.0.tgz +0 -0
package/index.js CHANGED
@@ -4,5 +4,9 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
4
4
 
5
5
  export * as baseCommon from './js/base/common'
6
6
  export * as baseEs6 from './js/base/es6'
7
+ export * as darkModeCommon from './js/darkMode/common'
8
+ export * as darkModeEs6 from './js/darkMode/es6'
9
+ export * as lightModeCommon from './js/lightMode/common'
10
+ export * as lightModeEs6 from './js/lightMode/es6'
7
11
  export * as originCommon from './js/origin/common'
8
12
  export * as originEs6 from './js/origin/es6'
package/ios/base.h CHANGED
@@ -4,7 +4,7 @@
4
4
  //
5
5
 
6
6
  // Do not edit directly
7
- // Generated on Wed, 14 Dec 2022 11:43:20 GMT
7
+ // Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
8
 
9
9
 
10
10
  #import <Foundation/Foundation.h>
@@ -227,6 +227,7 @@
227
227
  #define colorsComponentsMenuYin090 #000000e6
228
228
  #define colorsComponentsMenuYang100 #ffffffff
229
229
  #define colorsComponentsMenuYang080 #ffffffcc
230
+ #define colorsComponentsMenuYang030 #ffffff4d
230
231
  #define colorsComponentsMenuTransparent #00000000
231
232
  #define sizing100 8px
232
233
  #define sizing125 10px
@@ -322,9 +323,10 @@
322
323
  #define borderRadius200 16px
323
324
  #define borderRadius400 32px
324
325
  #define borderRadiusCircle 50%
326
+ #define borderRadius000 0px
327
+ #define borderRadius010 1px
325
328
  #define borderRadius025 2px
326
329
  #define borderRadius050 4px
327
- #define borderRadius000 0px
328
330
  #define typographyAccordionTitleM Medium 20px/125% Sage UI
329
331
  #define typographyAccordionTitleS Medium 16px/125% Sage UI
330
332
  #define typographyAccordionSubtitleM Regular 14px/150% Sage UI
@@ -0,0 +1,15 @@
1
+
2
+ //
3
+ // dashboard/darkMode.h
4
+ //
5
+
6
+ // Do not edit directly
7
+ // Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
+
9
+
10
+ #import <Foundation/Foundation.h>
11
+ #import <UIKit/UIKit.h>
12
+
13
+ #define metaName Dashboard Dark-Mode Token Set
14
+ #define metaPublic true
15
+
@@ -0,0 +1,15 @@
1
+
2
+ //
3
+ // dashboard/lightMode.h
4
+ //
5
+
6
+ // Do not edit directly
7
+ // Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
+
9
+
10
+ #import <Foundation/Foundation.h>
11
+ #import <UIKit/UIKit.h>
12
+
13
+ #define metaName Dashboard Light-Mode Token Set
14
+ #define metaPublic true
15
+
package/ios/origin.h CHANGED
@@ -4,7 +4,7 @@
4
4
  //
5
5
 
6
6
  // Do not edit directly
7
- // Generated on Wed, 14 Dec 2022 11:43:20 GMT
7
+ // Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
8
 
9
9
 
10
10
  #import <Foundation/Foundation.h>
@@ -12,100 +12,111 @@
12
12
 
13
13
  #define metaName Origin Token Set
14
14
  #define metaPublic true
15
- #define colorsJade100 #8ff8b7ff
16
- #define colorsJade200 #44ed90ff
17
- #define colorsJade300 #00ca71ff
18
- #define colorsJade400 #00a65cff
19
- #define colorsJade500 #00884aff
20
- #define colorsJade600 #006d3bff
21
- #define colorsJade700 #00522cff
22
- #define colorsJade800 #00361eff
23
- #define colorsJade900 #001b0fff
24
- #define colorsJade010 #f2fef7ff
25
- #define colorsJade050 #c4fcd8ff
26
- #define colorsNavy100 #89d7edff
27
- #define colorsNavy200 #65bedfff
28
- #define colorsNavy300 #41a5d1ff
29
- #define colorsNavy400 #1d8cc3ff
30
- #define colorsNavy500 #0e74a7ff
31
- #define colorsNavy600 #095b84ff
32
- #define colorsNavy700 #054262ff
33
- #define colorsNavy800 #00293fff
34
- #define colorsNavy900 #001520ff
35
- #define colorsNavy010 #f4fcfeff
36
- #define colorsNavy050 #caf1fcff
37
- #define colorsTeal100 #89edeaff
38
- #define colorsTeal200 #5bcfcdff
39
- #define colorsTeal300 #2eb2b1ff
40
- #define colorsTeal400 #009494ff
41
- #define colorsTeal500 #007776ff
42
- #define colorsTeal600 #006362ff
43
- #define colorsTeal700 #004a4aff
44
- #define colorsTeal800 #003231ff
45
- #define colorsTeal900 #001919ff
46
- #define colorsTeal010 #f4fefeff
47
- #define colorsTeal050 #c3faf8ff
48
- #define colorsCherry100 #f7b3c2ff
49
- #define colorsCherry200 #ed94aaff
50
- #define colorsCherry300 #e27491ff
51
- #define colorsCherry400 #d85579ff
52
- #define colorsCherry500 #ba3c63ff
53
- #define colorsCherry600 #95304fff
54
- #define colorsCherry700 #70243bff
55
- #define colorsCherry800 #4a1828ff
56
- #define colorsCherry900 #250c14ff
57
- #define colorsCherry010 #fef5f7ff
58
- #define colorsCherry050 #fad4deff
59
- #define colorsTerra100 #ffbca6ff
60
- #define colorsTerra200 #f59a83ff
61
- #define colorsTerra300 #ea7961ff
62
- #define colorsTerra400 #e0583eff
63
- #define colorsTerra500 #c94633ff
64
- #define colorsTerra600 #a13829ff
65
- #define colorsTerra700 #782a1eff
66
- #define colorsTerra800 #501c14ff
67
- #define colorsTerra900 #280e0aff
68
- #define colorsTerra010 #fff7f5ff
69
- #define colorsTerra050 #ffdcd1ff
70
- #define colorsAmber100 #ffe290ff
71
- #define colorsAmber200 #f5ce55ff
72
- #define colorsAmber300 #efab2fff
73
- #define colorsAmber400 #e98709ff
74
- #define colorsAmber500 #c15708ff
75
- #define colorsAmber600 #9b4609ff
76
- #define colorsAmber700 #75330aff
77
- #define colorsAmber800 #4f220bff
78
- #define colorsAmber900 #281106ff
79
- #define colorsAmber010 #fffcefff
80
- #define colorsAmber050 #fff0c3ff
81
- #define colorsMalachite100 #8df79fff
82
- #define colorsMalachite200 #42eb64ff
83
- #define colorsMalachite300 #00d639ff
84
- #define colorsMalachite400 #00af2dff
85
- #define colorsMalachite500 #008a21ff
86
- #define colorsMalachite600 #006716ff
87
- #define colorsMalachite700 #00460cff
88
- #define colorsMalachite800 #002f08ff
89
- #define colorsMalachite900 #001704ff
90
- #define colorsMalachite010 #effcf0ff
91
- #define colorsMalachite050 #c1fac7ff
92
- #define colorsGray100 #e6e6e6ff
93
- #define colorsGray200 #ccccccff
94
- #define colorsGray300 #b3b3b3ff
95
- #define colorsGray400 #999999ff
96
- #define colorsGray500 #808080ff
97
- #define colorsGray600 #666666ff
98
- #define colorsGray700 #4d4d4dff
99
- #define colorsGray800 #333333ff
100
- #define colorsGray900 #191919ff
101
- #define colorsGray1000 #000000ff
102
- #define colorsGray000 #ffffffff
103
- #define colorsGray010 #fcfcfcff
104
- #define colorsGray050 #f2f2f2ff
105
- #define colorsSkin400 #ddb89eff
106
- #define colorsSkin500 #e84d4fff
107
- #define colorsSkin600 #b26e3dff
108
- #define colorsSkin700 #3a2417ff
109
- #define colorsFuchsia400 #bf47c3ff
110
- #define colorsFuchsia500 #b832bcff
15
+ #define originColorsReferenceOnlyYin100 #000000ff
16
+ #define originColorsReferenceOnlyYin010 #0000001a
17
+ #define originColorsReferenceOnlyYin020 #00000033
18
+ #define originColorsReferenceOnlyYin030 #0000004d
19
+ #define originColorsReferenceOnlyYin055 #0000008c
20
+ #define originColorsReferenceOnlyYin065 #000000a6
21
+ #define originColorsReferenceOnlyYin075 #000000bf
22
+ #define originColorsReferenceOnlyYin090 #000000e6
23
+ #define originColorsReferenceOnlyYang100 #ffffffff
24
+ #define originColorsReferenceOnlyYang030 #ffffff4d
25
+ #define originColorsReferenceOnlyYang080 #ffffffcc
26
+ #define originColorsReferenceOnlyMalachite100 #8df79fff
27
+ #define originColorsReferenceOnlyMalachite200 #42eb64ff
28
+ #define originColorsReferenceOnlyMalachite300 #00d639ff
29
+ #define originColorsReferenceOnlyMalachite400 #00af2dff
30
+ #define originColorsReferenceOnlyMalachite500 #008a21ff
31
+ #define originColorsReferenceOnlyMalachite600 #006716ff
32
+ #define originColorsReferenceOnlyMalachite700 #00460cff
33
+ #define originColorsReferenceOnlyMalachite800 #002f08ff
34
+ #define originColorsReferenceOnlyMalachite900 #001704ff
35
+ #define originColorsReferenceOnlyMalachite010 #effcf0ff
36
+ #define originColorsReferenceOnlyMalachite050 #c1fac7ff
37
+ #define originColorsReferenceOnlyJade100 #8ff8b7ff
38
+ #define originColorsReferenceOnlyJade200 #44ed90ff
39
+ #define originColorsReferenceOnlyJade300 #00ca71ff
40
+ #define originColorsReferenceOnlyJade400 #00a65cff
41
+ #define originColorsReferenceOnlyJade500 #00884aff
42
+ #define originColorsReferenceOnlyJade600 #006d3bff
43
+ #define originColorsReferenceOnlyJade700 #00522cff
44
+ #define originColorsReferenceOnlyJade800 #00361eff
45
+ #define originColorsReferenceOnlyJade900 #001b0fff
46
+ #define originColorsReferenceOnlyJade010 #f2fef7ff
47
+ #define originColorsReferenceOnlyJade050 #c4fcd8ff
48
+ #define originColorsReferenceOnlyNavy100 #89d7edff
49
+ #define originColorsReferenceOnlyNavy200 #65bedfff
50
+ #define originColorsReferenceOnlyNavy300 #41a5d1ff
51
+ #define originColorsReferenceOnlyNavy400 #1d8cc3ff
52
+ #define originColorsReferenceOnlyNavy500 #0e74a7ff
53
+ #define originColorsReferenceOnlyNavy600 #095b84ff
54
+ #define originColorsReferenceOnlyNavy700 #054262ff
55
+ #define originColorsReferenceOnlyNavy800 #00293fff
56
+ #define originColorsReferenceOnlyNavy900 #001520ff
57
+ #define originColorsReferenceOnlyNavy010 #f4fcfeff
58
+ #define originColorsReferenceOnlyNavy050 #caf1fcff
59
+ #define originColorsReferenceOnlyTeal100 #89edeaff
60
+ #define originColorsReferenceOnlyTeal200 #5bcfcdff
61
+ #define originColorsReferenceOnlyTeal300 #2eb2b1ff
62
+ #define originColorsReferenceOnlyTeal400 #009494ff
63
+ #define originColorsReferenceOnlyTeal500 #007776ff
64
+ #define originColorsReferenceOnlyTeal600 #006362ff
65
+ #define originColorsReferenceOnlyTeal700 #004a4aff
66
+ #define originColorsReferenceOnlyTeal800 #003231ff
67
+ #define originColorsReferenceOnlyTeal900 #001919ff
68
+ #define originColorsReferenceOnlyTeal010 #f4fefeff
69
+ #define originColorsReferenceOnlyTeal050 #c3faf8ff
70
+ #define originColorsReferenceOnlyAmber100 #ffe290ff
71
+ #define originColorsReferenceOnlyAmber200 #f5ce55ff
72
+ #define originColorsReferenceOnlyAmber300 #efab2fff
73
+ #define originColorsReferenceOnlyAmber400 #e98709ff
74
+ #define originColorsReferenceOnlyAmber500 #c15708ff
75
+ #define originColorsReferenceOnlyAmber600 #9b4609ff
76
+ #define originColorsReferenceOnlyAmber700 #75330aff
77
+ #define originColorsReferenceOnlyAmber800 #4f220bff
78
+ #define originColorsReferenceOnlyAmber900 #281106ff
79
+ #define originColorsReferenceOnlyAmber010 #fffcefff
80
+ #define originColorsReferenceOnlyAmber050 #fff0c3ff
81
+ #define originColorsReferenceOnlyCherry100 #f7b3c2ff
82
+ #define originColorsReferenceOnlyCherry200 #ed94aaff
83
+ #define originColorsReferenceOnlyCherry300 #e27491ff
84
+ #define originColorsReferenceOnlyCherry400 #d85579ff
85
+ #define originColorsReferenceOnlyCherry500 #ba3c63ff
86
+ #define originColorsReferenceOnlyCherry600 #95304fff
87
+ #define originColorsReferenceOnlyCherry700 #70243bff
88
+ #define originColorsReferenceOnlyCherry800 #4a1828ff
89
+ #define originColorsReferenceOnlyCherry900 #250c14ff
90
+ #define originColorsReferenceOnlyCherry010 #fef5f7ff
91
+ #define originColorsReferenceOnlyCherry050 #fad4deff
92
+ #define originColorsReferenceOnlyTerra100 #ffbca6ff
93
+ #define originColorsReferenceOnlyTerra200 #f59a83ff
94
+ #define originColorsReferenceOnlyTerra300 #ea7961ff
95
+ #define originColorsReferenceOnlyTerra400 #e0583eff
96
+ #define originColorsReferenceOnlyTerra500 #c94633ff
97
+ #define originColorsReferenceOnlyTerra600 #a13829ff
98
+ #define originColorsReferenceOnlyTerra700 #782a1eff
99
+ #define originColorsReferenceOnlyTerra800 #501c14ff
100
+ #define originColorsReferenceOnlyTerra900 #280e0aff
101
+ #define originColorsReferenceOnlyTerra010 #fff7f5ff
102
+ #define originColorsReferenceOnlyTerra050 #ffdcd1ff
103
+ #define originColorsReferenceOnlyGray100 #e6e6e6ff
104
+ #define originColorsReferenceOnlyGray200 #ccccccff
105
+ #define originColorsReferenceOnlyGray300 #b3b3b3ff
106
+ #define originColorsReferenceOnlyGray400 #999999ff
107
+ #define originColorsReferenceOnlyGray500 #808080ff
108
+ #define originColorsReferenceOnlyGray600 #666666ff
109
+ #define originColorsReferenceOnlyGray700 #4d4d4dff
110
+ #define originColorsReferenceOnlyGray800 #333333ff
111
+ #define originColorsReferenceOnlyGray900 #191919ff
112
+ #define originColorsReferenceOnlyGray1000 #000000ff
113
+ #define originColorsReferenceOnlyGray000 #ffffffff
114
+ #define originColorsReferenceOnlyGray010 #fcfcfcff
115
+ #define originColorsReferenceOnlyGray050 #f2f2f2ff
116
+ #define originColorsReferenceOnlySkin400 #ddb89eff
117
+ #define originColorsReferenceOnlySkin500 #e84d4fff
118
+ #define originColorsReferenceOnlySkin600 #b26e3dff
119
+ #define originColorsReferenceOnlySkin700 #3a2417ff
120
+ #define originColorsReferenceOnlyFuchsia400 #bf47c3ff
121
+ #define originColorsReferenceOnlyFuchsia500 #b832bcff
111
122
 
@@ -215,6 +215,7 @@ export const colorsComponentsMenuYin065: string;
215
215
  export const colorsComponentsMenuYin090: string;
216
216
  export const colorsComponentsMenuYang100: string;
217
217
  export const colorsComponentsMenuYang080: string;
218
+ export const colorsComponentsMenuYang030: string;
218
219
  export const colorsComponentsMenuTransparent: string;
219
220
  export const sizing100: string;
220
221
  export const sizing125: string;
@@ -310,9 +311,10 @@ export const borderRadius100: string;
310
311
  export const borderRadius200: string;
311
312
  export const borderRadius400: string;
312
313
  export const borderRadiusCircle: string;
314
+ export const borderRadius000: string;
315
+ export const borderRadius010: string;
313
316
  export const borderRadius025: string;
314
317
  export const borderRadius050: string;
315
- export const borderRadius000: string;
316
318
  export const typographyAccordionTitleM: string;
317
319
  export const typographyAccordionTitleS: string;
318
320
  export const typographyAccordionSubtitleM: string;
package/js/base/common.js CHANGED
@@ -4,7 +4,7 @@ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
4
4
 
5
5
  /**
6
6
  * Do not edit directly
7
- * Generated on Wed, 14 Dec 2022 11:43:20 GMT
7
+ * Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
8
  */
9
9
 
10
10
  module.exports = {
@@ -225,6 +225,7 @@ module.exports = {
225
225
  colorsComponentsMenuYin090: '#000000e6',
226
226
  colorsComponentsMenuYang100: '#ffffffff',
227
227
  colorsComponentsMenuYang080: '#ffffffcc',
228
+ colorsComponentsMenuYang030: '#ffffff4d',
228
229
  colorsComponentsMenuTransparent: '#00000000',
229
230
  sizing100: '8px',
230
231
  sizing125: '10px',
@@ -320,9 +321,10 @@ module.exports = {
320
321
  borderRadius200: '16px',
321
322
  borderRadius400: '32px',
322
323
  borderRadiusCircle: '50%',
324
+ borderRadius000: '0px',
325
+ borderRadius010: '1px',
323
326
  borderRadius025: '2px',
324
327
  borderRadius050: '4px',
325
- borderRadius000: '0px',
326
328
  typographyAccordionTitleM: '500 20px/125% Sage UI',
327
329
  typographyAccordionTitleS: '500 16px/125% Sage UI',
328
330
  typographyAccordionSubtitleM: '400 14px/150% Sage UI',
package/js/base/es6.d.ts CHANGED
@@ -216,6 +216,7 @@ declare namespace _default {
216
216
  const colorsComponentsMenuYin090: string;
217
217
  const colorsComponentsMenuYang100: string;
218
218
  const colorsComponentsMenuYang080: string;
219
+ const colorsComponentsMenuYang030: string;
219
220
  const colorsComponentsMenuTransparent: string;
220
221
  const sizing100: string;
221
222
  const sizing125: string;
@@ -311,9 +312,10 @@ declare namespace _default {
311
312
  const borderRadius200: string;
312
313
  const borderRadius400: string;
313
314
  const borderRadiusCircle: string;
315
+ const borderRadius000: string;
316
+ const borderRadius010: string;
314
317
  const borderRadius025: string;
315
318
  const borderRadius050: string;
316
- const borderRadius000: string;
317
319
  const typographyAccordionTitleM: string;
318
320
  const typographyAccordionTitleS: string;
319
321
  const typographyAccordionSubtitleM: string;
package/js/base/es6.js CHANGED
@@ -220,6 +220,7 @@ export default {
220
220
  colorsComponentsMenuYin090: '#000000e6',
221
221
  colorsComponentsMenuYang100: '#ffffffff',
222
222
  colorsComponentsMenuYang080: '#ffffffcc',
223
+ colorsComponentsMenuYang030: '#ffffff4d',
223
224
  colorsComponentsMenuTransparent: '#00000000',
224
225
  sizing100: '8px',
225
226
  sizing125: '10px',
@@ -315,9 +316,10 @@ export default {
315
316
  borderRadius200: '16px',
316
317
  borderRadius400: '32px',
317
318
  borderRadiusCircle: '50%',
319
+ borderRadius000: '0px',
320
+ borderRadius010: '1px',
318
321
  borderRadius025: '2px',
319
322
  borderRadius050: '4px',
320
- borderRadius000: '0px',
321
323
  typographyAccordionTitleM: '500 20px/125% Sage UI',
322
324
  typographyAccordionTitleS: '500 16px/125% Sage UI',
323
325
  typographyAccordionSubtitleM: '400 14px/150% Sage UI',
@@ -0,0 +1,2 @@
1
+ export const metaName: string;
2
+ export const metaPublic: string;
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
3
+ */
4
+
5
+ /**
6
+ * Do not edit directly
7
+ * Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
+ */
9
+
10
+ module.exports = {
11
+ metaName: 'Dashboard Dark-Mode Token Set',
12
+ metaPublic: 'true'
13
+ }
@@ -0,0 +1,5 @@
1
+ declare namespace _default {
2
+ const metaName: string;
3
+ const metaPublic: string;
4
+ }
5
+ export default _default;
@@ -0,0 +1,8 @@
1
+ /*
2
+ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
3
+ */
4
+
5
+ export default {
6
+ metaName: 'Dashboard Dark-Mode Token Set',
7
+ metaPublic: 'true'
8
+ }
@@ -0,0 +1,2 @@
1
+ export const metaName: string;
2
+ export const metaPublic: string;
@@ -0,0 +1,13 @@
1
+ /*
2
+ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
3
+ */
4
+
5
+ /**
6
+ * Do not edit directly
7
+ * Generated on Wed, 21 Dec 2022 15:17:51 GMT
8
+ */
9
+
10
+ module.exports = {
11
+ metaName: 'Dashboard Light-Mode Token Set',
12
+ metaPublic: 'true'
13
+ }
@@ -0,0 +1,5 @@
1
+ declare namespace _default {
2
+ const metaName: string;
3
+ const metaPublic: string;
4
+ }
5
+ export default _default;
@@ -0,0 +1,8 @@
1
+ /*
2
+ Copyright © 2021 The Sage Group plc or its licensors. All Rights reserved
3
+ */
4
+
5
+ export default {
6
+ metaName: 'Dashboard Light-Mode Token Set',
7
+ metaPublic: 'true'
8
+ }