@instructure/shared-types 9.5.2-snapshot-7 → 9.5.2
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.
- package/CHANGELOG.md +2 -11
- package/package.json +1 -1
- package/src/Colors.ts +107 -97
- package/src/CommonTypes.ts +0 -2
- package/src/ComponentThemeVariables.ts +463 -462
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Colors.d.ts +107 -85
- package/types/Colors.d.ts.map +1 -1
- package/types/CommonTypes.d.ts +0 -1
- package/types/CommonTypes.d.ts.map +1 -1
- package/types/ComponentThemeVariables.d.ts +463 -462
- package/types/ComponentThemeVariables.d.ts.map +1 -1
package/types/Colors.d.ts
CHANGED
|
@@ -1,92 +1,114 @@
|
|
|
1
|
-
type
|
|
1
|
+
type BaseColors = {
|
|
2
|
+
brand: string;
|
|
3
|
+
link: string;
|
|
4
|
+
electric: string;
|
|
5
|
+
shamrock: string;
|
|
6
|
+
barney: string;
|
|
7
|
+
crimson: string;
|
|
8
|
+
fire: string;
|
|
9
|
+
licorice: string;
|
|
10
|
+
oxford: string;
|
|
11
|
+
ash: string;
|
|
12
|
+
slate: string;
|
|
13
|
+
tiara: string;
|
|
14
|
+
porcelain: string;
|
|
2
15
|
white: string;
|
|
3
|
-
white10op75: string;
|
|
4
|
-
grey11: string;
|
|
5
|
-
grey12: string;
|
|
6
|
-
grey14: string;
|
|
7
|
-
grey24: string;
|
|
8
|
-
grey45: string;
|
|
9
|
-
grey57: string;
|
|
10
|
-
grey70: string;
|
|
11
|
-
grey82: string;
|
|
12
|
-
grey100: string;
|
|
13
|
-
grey100op75: string;
|
|
14
|
-
grey125: string;
|
|
15
|
-
blue12: string;
|
|
16
|
-
blue45: string;
|
|
17
|
-
blue57: string;
|
|
18
|
-
blue70: string;
|
|
19
|
-
blue82: string;
|
|
20
|
-
green12: string;
|
|
21
|
-
green45: string;
|
|
22
|
-
green57: string;
|
|
23
|
-
green70: string;
|
|
24
|
-
green82: string;
|
|
25
|
-
orange12: string;
|
|
26
|
-
orange30: string;
|
|
27
|
-
orange45: string;
|
|
28
|
-
orange57: string;
|
|
29
|
-
orange70: string;
|
|
30
|
-
orange82: string;
|
|
31
|
-
red12: string;
|
|
32
|
-
red45: string;
|
|
33
|
-
red57: string;
|
|
34
|
-
red70: string;
|
|
35
|
-
red82: string;
|
|
36
16
|
};
|
|
37
|
-
type
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
blue1212: Primitives['blue12'];
|
|
50
|
-
blue4570: Primitives['blue45'] | Primitives['blue70'];
|
|
51
|
-
blue5782: Primitives['blue57'] | Primitives['blue82'];
|
|
52
|
-
green1212: Primitives['green12'];
|
|
53
|
-
green4570: Primitives['green45'] | Primitives['green70'];
|
|
54
|
-
green5782: Primitives['green57'] | Primitives['green82'];
|
|
55
|
-
orange1212: Primitives['orange12'];
|
|
56
|
-
orange3045: Primitives['orange30'] | Primitives['orange45'];
|
|
57
|
-
orange4570: Primitives['orange45'] | Primitives['orange70'];
|
|
58
|
-
orange5782: Primitives['orange57'] | Primitives['orange82'];
|
|
59
|
-
red1212: Primitives['red12'];
|
|
60
|
-
red4570: Primitives['red45'] | Primitives['red70'];
|
|
61
|
-
red5782: Primitives['red57'] | Primitives['red82'];
|
|
17
|
+
type TextColors = {
|
|
18
|
+
textDarkest: BaseColors['licorice'];
|
|
19
|
+
textDark: BaseColors['ash'];
|
|
20
|
+
textLight: BaseColors['porcelain'];
|
|
21
|
+
textLightest: BaseColors['white'];
|
|
22
|
+
textBrand: BaseColors['brand'];
|
|
23
|
+
textLink: BaseColors['link'];
|
|
24
|
+
textAlert: BaseColors['barney'];
|
|
25
|
+
textInfo: BaseColors['brand'];
|
|
26
|
+
textSuccess: BaseColors['shamrock'];
|
|
27
|
+
textDanger: BaseColors['crimson'];
|
|
28
|
+
textWarning: BaseColors['fire'];
|
|
62
29
|
};
|
|
63
|
-
type
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
30
|
+
type BackgroundColors = {
|
|
31
|
+
backgroundDarkest: BaseColors['licorice'];
|
|
32
|
+
backgroundDark: BaseColors['ash'];
|
|
33
|
+
backgroundMedium: BaseColors['tiara'];
|
|
34
|
+
backgroundLight: BaseColors['porcelain'];
|
|
35
|
+
backgroundLightest: BaseColors['white'];
|
|
36
|
+
backgroundBrand: BaseColors['brand'];
|
|
37
|
+
backgroundBrandSecondary: BaseColors['oxford'];
|
|
38
|
+
backgroundAlert: BaseColors['barney'];
|
|
39
|
+
backgroundInfo: BaseColors['brand'];
|
|
40
|
+
backgroundSuccess: BaseColors['shamrock'];
|
|
41
|
+
backgroundDanger: BaseColors['crimson'];
|
|
42
|
+
backgroundWarning: BaseColors['fire'];
|
|
43
|
+
};
|
|
44
|
+
type BorderColors = {
|
|
45
|
+
borderLightest: BaseColors['white'];
|
|
46
|
+
borderLight: BaseColors['porcelain'];
|
|
47
|
+
borderMedium: BaseColors['tiara'];
|
|
48
|
+
borderDark: BaseColors['ash'];
|
|
49
|
+
borderDarkest: BaseColors['licorice'];
|
|
50
|
+
borderBrand: BaseColors['brand'];
|
|
51
|
+
borderAlert: BaseColors['barney'];
|
|
52
|
+
borderInfo: BaseColors['brand'];
|
|
53
|
+
borderSuccess: BaseColors['shamrock'];
|
|
54
|
+
borderDanger: BaseColors['crimson'];
|
|
55
|
+
borderWarning: BaseColors['fire'];
|
|
56
|
+
borderDebug: BaseColors['crimson'];
|
|
85
57
|
};
|
|
86
58
|
type Colors = {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
59
|
+
values: BaseColors;
|
|
60
|
+
text: TextColors;
|
|
61
|
+
background: BackgroundColors;
|
|
62
|
+
border: BorderColors;
|
|
63
|
+
brand: string;
|
|
64
|
+
link: string;
|
|
65
|
+
electric: string;
|
|
66
|
+
shamrock: string;
|
|
67
|
+
barney: string;
|
|
68
|
+
crimson: string;
|
|
69
|
+
fire: string;
|
|
70
|
+
licorice: string;
|
|
71
|
+
oxford: string;
|
|
72
|
+
ash: string;
|
|
73
|
+
slate: string;
|
|
74
|
+
tiara: string;
|
|
75
|
+
porcelain: string;
|
|
76
|
+
white: string;
|
|
77
|
+
borderLightest: BaseColors['white'];
|
|
78
|
+
borderLight: BaseColors['porcelain'];
|
|
79
|
+
borderMedium: BaseColors['tiara'];
|
|
80
|
+
borderDark: BaseColors['ash'];
|
|
81
|
+
borderDarkest: BaseColors['licorice'];
|
|
82
|
+
borderBrand: BaseColors['brand'];
|
|
83
|
+
borderAlert: BaseColors['barney'];
|
|
84
|
+
borderInfo: BaseColors['brand'];
|
|
85
|
+
borderSuccess: BaseColors['shamrock'];
|
|
86
|
+
borderDanger: BaseColors['crimson'];
|
|
87
|
+
borderWarning: BaseColors['fire'];
|
|
88
|
+
borderDebug: BaseColors['crimson'];
|
|
89
|
+
backgroundDarkest: BaseColors['licorice'];
|
|
90
|
+
backgroundDark: BaseColors['ash'];
|
|
91
|
+
backgroundMedium: BaseColors['tiara'];
|
|
92
|
+
backgroundLight: BaseColors['porcelain'];
|
|
93
|
+
backgroundLightest: BaseColors['white'];
|
|
94
|
+
backgroundBrand: BaseColors['brand'];
|
|
95
|
+
backgroundBrandSecondary: BaseColors['oxford'];
|
|
96
|
+
backgroundAlert: BaseColors['barney'];
|
|
97
|
+
backgroundInfo: BaseColors['brand'];
|
|
98
|
+
backgroundSuccess: BaseColors['shamrock'];
|
|
99
|
+
backgroundDanger: BaseColors['crimson'];
|
|
100
|
+
backgroundWarning: BaseColors['fire'];
|
|
101
|
+
textDarkest: BaseColors['licorice'];
|
|
102
|
+
textDark: BaseColors['ash'];
|
|
103
|
+
textLight: BaseColors['porcelain'];
|
|
104
|
+
textLightest: BaseColors['white'];
|
|
105
|
+
textBrand: BaseColors['brand'];
|
|
106
|
+
textLink: BaseColors['link'];
|
|
107
|
+
textAlert: BaseColors['barney'];
|
|
108
|
+
textInfo: BaseColors['brand'];
|
|
109
|
+
textSuccess: BaseColors['shamrock'];
|
|
110
|
+
textDanger: BaseColors['crimson'];
|
|
111
|
+
textWarning: BaseColors['fire'];
|
|
90
112
|
};
|
|
91
|
-
export type {
|
|
113
|
+
export type { BaseColors, TextColors, BorderColors, BackgroundColors, Colors };
|
|
92
114
|
//# sourceMappingURL=Colors.d.ts.map
|
package/types/Colors.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Colors.d.ts","sourceRoot":"","sources":["../src/Colors.ts"],"names":[],"mappings":"AAwBA,KAAK,UAAU,GAAG;IAChB,KAAK,EAAE,MAAM,CAAA;IACb,
|
|
1
|
+
{"version":3,"file":"Colors.d.ts","sourceRoot":"","sources":["../src/Colors.ts"],"names":[],"mappings":"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"}
|
package/types/CommonTypes.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CommonTypes.d.ts","sourceRoot":"","sources":["../src/CommonTypes.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EACV,gBAAgB,EAChB,qBAAqB,EACrB,SAAS,EACT,SAAS,EACT,cAAc,EACd,gBAAgB,EAChB,cAAc,EACd,SAAS,EACT,SAAS,EACT,YAAY,EACZ,QAAQ,EACT,MAAM,OAAO,CAAA;AAEd,gEAAgE;AAChE,MAAM,MAAM,SAAS,GACjB,IAAI,GACJ,MAAM,GACN,YAAY,GACZ,SAAS,GACT,CAAC,MAAM,IAAI,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC,GACxC,IAAI,CAAA;AAER,kDAAkD;AAClD,MAAM,MAAM,UAAU,CAAC,CAAC,GAAG,KAAK,IAC5B,MAAM,SAAS,GACf,MAAM,QAAQ,GACd,SAAS,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAE,cAAc,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,GAC3E,cAAc,GACd,SAAS,GACT,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,SAAS,GAAG,OAAO,CAAC,GAClC,CAAC,MAAM,SAAS,GAAG,OAAO,CAAC,GAC3B,OAAO,CAAA;AAEX;;;sCAGsC;AACtC,MAAM,MAAM,cAAc,CAAC,CAAC,SAAS,gBAAgB,CAAC,GAAG,EAAE,GAAG,CAAC,IAC3D,CAAC,GACD,SAAS,GACT,IAAI,GACJ,cAAc,CAAC,CAAC,CAAC,EAAE,CAAA;AAEvB;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAClB,CAAC,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC,GAC1B,CAAC,MAAM,OAAO,GAAG,IAAI,CAAC,GACtB,CAAC,OAAO,GAAG,IAAI,CAAC,EAAE,GAClB,OAAO,GACP,IAAI,CAAA;AAER,UAAU,mBAAmB;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;CACxB;AACD,MAAM,WAAW,eACf,SAAQ,cAAc,CAAC,GAAG,EAAE,GAAG,CAAC,EAC9B,mBAAmB;IACrB,YAAY,CAAC,EAAE,GAAG,CAAA;CACnB
|
|
1
|
+
{"version":3,"file":"CommonTypes.d.ts","sourceRoot":"","sources":["../src/CommonTypes.ts"],"names":[],"mappings":"AAwBA,OAAO,KAAK,EACV,gBAAgB,EAChB,qBAAqB,EACrB,SAAS,EACT,SAAS,EACT,cAAc,EACd,gBAAgB,EAChB,cAAc,EACd,SAAS,EACT,SAAS,EACT,YAAY,EACZ,QAAQ,EACT,MAAM,OAAO,CAAA;AAEd,gEAAgE;AAChE,MAAM,MAAM,SAAS,GACjB,IAAI,GACJ,MAAM,GACN,YAAY,GACZ,SAAS,GACT,CAAC,MAAM,IAAI,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC,GACxC,IAAI,CAAA;AAER,kDAAkD;AAClD,MAAM,MAAM,UAAU,CAAC,CAAC,GAAG,KAAK,IAC5B,MAAM,SAAS,GACf,MAAM,QAAQ,GACd,SAAS,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAC,EAAE,cAAc,CAAC,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,GAC3E,cAAc,GACd,SAAS,GACT,CAAC,CAAC,IAAI,EAAE,CAAC,KAAK,SAAS,GAAG,OAAO,CAAC,GAClC,CAAC,MAAM,SAAS,GAAG,OAAO,CAAC,GAC3B,OAAO,CAAA;AAEX;;;sCAGsC;AACtC,MAAM,MAAM,cAAc,CAAC,CAAC,SAAS,gBAAgB,CAAC,GAAG,EAAE,GAAG,CAAC,IAC3D,CAAC,GACD,SAAS,GACT,IAAI,GACJ,cAAc,CAAC,CAAC,CAAC,EAAE,CAAA;AAEvB;;;;GAIG;AACH,MAAM,MAAM,UAAU,GAClB,CAAC,MAAM,CAAC,OAAO,GAAG,IAAI,CAAC,EAAE,CAAC,GAC1B,CAAC,MAAM,OAAO,GAAG,IAAI,CAAC,GACtB,CAAC,OAAO,GAAG,IAAI,CAAC,EAAE,GAClB,OAAO,GACP,IAAI,CAAA;AAER,UAAU,mBAAmB;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;CACxB;AACD,MAAM,WAAW,eACf,SAAQ,cAAc,CAAC,GAAG,EAAE,GAAG,CAAC,EAC9B,mBAAmB;IACrB,YAAY,CAAC,EAAE,GAAG,CAAA;CACnB"}
|