@instructure/shared-types 9.5.2-snapshot-1 → 10.0.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.
- package/CHANGELOG.md +11 -2
- package/package.json +1 -1
- package/src/Colors.ts +97 -107
- package/src/CommonTypes.ts +2 -0
- package/src/ComponentThemeVariables.ts +462 -463
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Colors.d.ts +85 -107
- package/types/Colors.d.ts.map +1 -1
- package/types/CommonTypes.d.ts +1 -0
- package/types/CommonTypes.d.ts.map +1 -1
- package/types/ComponentThemeVariables.d.ts +462 -463
- package/types/ComponentThemeVariables.d.ts.map +1 -1
package/types/Colors.d.ts
CHANGED
|
@@ -1,114 +1,92 @@
|
|
|
1
|
-
type
|
|
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;
|
|
1
|
+
type Primitives = {
|
|
15
2
|
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;
|
|
16
36
|
};
|
|
17
|
-
type
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
37
|
+
type Contrasts = {
|
|
38
|
+
white1010: Primitives['white'];
|
|
39
|
+
white1010op75: Primitives['white10op75'];
|
|
40
|
+
grey1111: Primitives['grey11'];
|
|
41
|
+
grey1214: Primitives['grey12'] | Primitives['grey14'];
|
|
42
|
+
grey1424: Primitives['grey14'] | Primitives['grey24'];
|
|
43
|
+
grey2424: Primitives['grey24'];
|
|
44
|
+
grey4570: Primitives['grey45'] | Primitives['grey70'];
|
|
45
|
+
grey5782: Primitives['grey57'] | Primitives['grey82'];
|
|
46
|
+
grey100100: Primitives['grey100'];
|
|
47
|
+
grey100100op75: Primitives['grey100op75'];
|
|
48
|
+
grey125125: Primitives['grey125'];
|
|
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'];
|
|
29
62
|
};
|
|
30
|
-
type
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
borderInfo: BaseColors['brand'];
|
|
53
|
-
borderSuccess: BaseColors['shamrock'];
|
|
54
|
-
borderDanger: BaseColors['crimson'];
|
|
55
|
-
borderWarning: BaseColors['fire'];
|
|
56
|
-
borderDebug: BaseColors['crimson'];
|
|
63
|
+
type UI = {
|
|
64
|
+
surfacePagePrimary: Contrasts['white1010'];
|
|
65
|
+
surfacePageSecondary: Contrasts['grey1111'];
|
|
66
|
+
surfaceCardPrimary: Contrasts['white1010'];
|
|
67
|
+
surfaceCardSecondary: Contrasts['grey1111'];
|
|
68
|
+
surfaceDark: Contrasts['grey100100'];
|
|
69
|
+
textTitle: Contrasts['grey125125'];
|
|
70
|
+
textDescription: Contrasts['grey125125'];
|
|
71
|
+
textBody: Contrasts['grey125125'];
|
|
72
|
+
textTimestamp: Contrasts['grey5782'];
|
|
73
|
+
textAuthor: Contrasts['grey5782'];
|
|
74
|
+
textDatapoint: Contrasts['grey5782'];
|
|
75
|
+
textLink: Contrasts['blue4570'];
|
|
76
|
+
textPlaceholder: Contrasts['grey2424'];
|
|
77
|
+
textSuccess: Contrasts['green4570'];
|
|
78
|
+
textWarning: Contrasts['orange4570'];
|
|
79
|
+
textError: Contrasts['red4570'];
|
|
80
|
+
lineStroke: Contrasts['grey1424'];
|
|
81
|
+
lineDivider: Contrasts['grey1214'];
|
|
82
|
+
surfaceOverlayGrey: Contrasts['grey100100op75'];
|
|
83
|
+
surfaceOverlayWhite: Contrasts['white1010op75'];
|
|
84
|
+
surfaceDivider: Contrasts['grey1424'];
|
|
57
85
|
};
|
|
58
86
|
type Colors = {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
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'];
|
|
87
|
+
primitives: Primitives;
|
|
88
|
+
contrasts: Contrasts;
|
|
89
|
+
ui: UI;
|
|
112
90
|
};
|
|
113
|
-
export type {
|
|
91
|
+
export type { Colors, Primitives, Contrasts, UI };
|
|
114
92
|
//# 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;AAED,MAAM,MAAM,MAAM,GAAG,YAAY,GAAG,YAAY,CAAA"}
|