@rocket.chat/fuselage 0.32.0-dev.216 → 0.32.0-dev.217
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/dist/Theme.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare const __setThrowErrorOnInvalidToken__: (value: boolean) => void;
|
|
|
10
10
|
export declare const neutral: {
|
|
11
11
|
n100: Var;
|
|
12
12
|
n200: Var;
|
|
13
|
+
n250: Var;
|
|
13
14
|
n300: Var;
|
|
14
15
|
n400: Var;
|
|
15
16
|
n500: Var;
|
|
@@ -57,22 +58,28 @@ export declare const textIconColors: {
|
|
|
57
58
|
'font-on-danger': Var;
|
|
58
59
|
'font-on-service-1': Var;
|
|
59
60
|
'font-on-service-2': Var;
|
|
61
|
+
'font-pure-black': Var;
|
|
62
|
+
'font-pure-white': Var;
|
|
60
63
|
};
|
|
61
64
|
export declare const statusBackgroundColors: {
|
|
62
65
|
'status-background-info': Var;
|
|
63
66
|
'status-background-success': Var;
|
|
64
67
|
'status-background-danger': Var;
|
|
65
68
|
'status-background-warning': Var;
|
|
69
|
+
'status-background-warning-2': Var;
|
|
66
70
|
'status-background-service-1': Var;
|
|
67
71
|
'status-background-service-2': Var;
|
|
72
|
+
'status-background-service-3': Var;
|
|
68
73
|
};
|
|
69
74
|
export declare const statusColors: {
|
|
70
75
|
'status-font-on-info': Var;
|
|
71
76
|
'status-font-on-success': Var;
|
|
72
77
|
'status-font-on-warning': Var;
|
|
78
|
+
'status-font-on-warning-2': Var;
|
|
73
79
|
'status-font-on-danger': Var;
|
|
74
80
|
'status-font-on-service-1': Var;
|
|
75
81
|
'status-font-on-service-2': Var;
|
|
82
|
+
'status-font-on-service-3': Var;
|
|
76
83
|
};
|
|
77
84
|
export declare const badgeBackgroundColors: {
|
|
78
85
|
'badge-background-level-1': Var;
|
|
@@ -82,10 +89,10 @@ export declare const badgeBackgroundColors: {
|
|
|
82
89
|
};
|
|
83
90
|
export declare const isSurfaceColor: (color: unknown) => color is "surface-light" | "surface-tint" | "surface-neutral" | "surface-disabled" | "surface-hover" | "surface-info" | "surface-success" | "surface-warning" | "surface-danger" | "surface-service-1" | "surface-service-2";
|
|
84
91
|
export declare const isStrokeColor: (color: unknown) => color is "stroke-extra-light" | "stroke-light" | "stroke-medium" | "stroke-dark" | "stroke-extra-dark" | "stroke-extra-light-highlight" | "stroke-highlight" | "stroke-extra-light-error" | "stroke-error";
|
|
85
|
-
export declare const isTextIconColor: (color: unknown) => color is "font-white" | "font-disabled" | "font-annotation" | "font-hint" | "font-default" | "font-title-labels" | "font-danger" | "font-secondary-info" | "font-on-info" | "font-on-success" | "font-on-warning" | "font-on-danger" | "font-on-service-1" | "font-on-service-2";
|
|
92
|
+
export declare const isTextIconColor: (color: unknown) => color is "font-white" | "font-disabled" | "font-annotation" | "font-hint" | "font-default" | "font-title-labels" | "font-danger" | "font-secondary-info" | "font-on-info" | "font-on-success" | "font-on-warning" | "font-on-danger" | "font-on-service-1" | "font-on-service-2" | "font-pure-black" | "font-pure-white";
|
|
86
93
|
export declare const isBadgeColor: (color: unknown) => color is "badge-background-level-1" | "badge-background-level-2" | "badge-background-level-3" | "badge-background-level-4";
|
|
87
|
-
export declare const isStatusBackgroundColor: (color: unknown) => color is "status-background-info" | "status-background-success" | "status-background-danger" | "status-background-warning" | "status-background-service-1" | "status-background-service-2";
|
|
88
|
-
export declare const isStatusColor: (color: unknown) => color is "status-font-on-info" | "status-font-on-success" | "status-font-on-warning" | "status-font-on-danger" | "status-font-on-service-1" | "status-font-on-service-2";
|
|
94
|
+
export declare const isStatusBackgroundColor: (color: unknown) => color is "status-background-info" | "status-background-success" | "status-background-danger" | "status-background-warning" | "status-background-warning-2" | "status-background-service-1" | "status-background-service-2" | "status-background-service-3";
|
|
95
|
+
export declare const isStatusColor: (color: unknown) => color is "status-font-on-info" | "status-font-on-success" | "status-font-on-warning" | "status-font-on-warning-2" | "status-font-on-danger" | "status-font-on-service-1" | "status-font-on-service-2" | "status-font-on-service-3";
|
|
89
96
|
export declare const Palette: {
|
|
90
97
|
surface: {
|
|
91
98
|
'surface-light': Var;
|
|
@@ -105,16 +112,20 @@ export declare const Palette: {
|
|
|
105
112
|
'status-background-success': Var;
|
|
106
113
|
'status-background-danger': Var;
|
|
107
114
|
'status-background-warning': Var;
|
|
115
|
+
'status-background-warning-2': Var;
|
|
108
116
|
'status-background-service-1': Var;
|
|
109
117
|
'status-background-service-2': Var;
|
|
118
|
+
'status-background-service-3': Var;
|
|
110
119
|
};
|
|
111
120
|
statusColor: {
|
|
112
121
|
'status-font-on-info': Var;
|
|
113
122
|
'status-font-on-success': Var;
|
|
114
123
|
'status-font-on-warning': Var;
|
|
124
|
+
'status-font-on-warning-2': Var;
|
|
115
125
|
'status-font-on-danger': Var;
|
|
116
126
|
'status-font-on-service-1': Var;
|
|
117
127
|
'status-font-on-service-2': Var;
|
|
128
|
+
'status-font-on-service-3': Var;
|
|
118
129
|
};
|
|
119
130
|
badge: {
|
|
120
131
|
'badge-background-level-1': Var;
|
|
@@ -137,6 +148,8 @@ export declare const Palette: {
|
|
|
137
148
|
'font-on-danger': Var;
|
|
138
149
|
'font-on-service-1': Var;
|
|
139
150
|
'font-on-service-2': Var;
|
|
151
|
+
'font-pure-black': Var;
|
|
152
|
+
'font-pure-white': Var;
|
|
140
153
|
};
|
|
141
154
|
stroke: {
|
|
142
155
|
'stroke-extra-light': Var;
|
package/dist/Theme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Theme.d.ts","sourceRoot":"","sources":["../src/Theme.ts"],"names":[],"mappings":"AAIA,qBAAa,GAAG;IACd,OAAO,CAAC,IAAI,CAAS;IAErB,OAAO,CAAC,KAAK,CAAS;gBAEV,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM;IAKvC,QAAQ;IAIR,KAAK,CAAC,IAAI,EAAE,MAAM;CAGnB;AAID,eAAO,IAAI,wBAAwB,SAAQ,CAAC;AAC5C,eAAO,MAAM,+BAA+B,UAAW,OAAO,SAE7D,CAAC;AAEF,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"Theme.d.ts","sourceRoot":"","sources":["../src/Theme.ts"],"names":[],"mappings":"AAIA,qBAAa,GAAG;IACd,OAAO,CAAC,IAAI,CAAS;IAErB,OAAO,CAAC,KAAK,CAAS;gBAEV,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM;IAKvC,QAAQ;IAIR,KAAK,CAAC,IAAI,EAAE,MAAM;CAGnB;AAID,eAAO,IAAI,wBAAwB,SAAQ,CAAC;AAC5C,eAAO,MAAM,+BAA+B,UAAW,OAAO,SAE7D,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;CAWnB,CAAC;AAwFF,eAAO,MAAM,aAAa;;;;;;;;;;;;CAYzB,CAAC;AAIF,eAAO,MAAM,YAAY;;;;;;;;;;CAYxB,CAAC;AAIF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;CAiB1B,CAAC;AAIF,eAAO,MAAM,sBAAsB;;;;;;;;;CAiBlC,CAAC;AAIF,eAAO,MAAM,YAAY;;;;;;;;;CASxB,CAAC;AAIF,eAAO,MAAM,qBAAqB;;;;;CAKjC,CAAC;AAIF,eAAO,MAAM,cAAc,UAAW,OAAO,iOACQ,CAAC;AAEtD,eAAO,MAAM,aAAa,UAAW,OAAO,+MACQ,CAAC;AAErD,eAAO,MAAM,eAAe,UAAW,OAAO,6TACQ,CAAC;AAEvD,eAAO,MAAM,YAAY,UAAW,OAAO,+HACkB,CAAC;AAE9D,eAAO,MAAM,uBAAuB,UAC3B,OAAO,+PAE8C,CAAC;AAE/D,eAAO,MAAM,aAAa,UAAW,OAAO,uOACQ,CAAC;AAErD,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOnB,CAAC"}
|