@rocket.chat/fuselage 0.32.0-dev.249 → 0.32.0-dev.250
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
|
@@ -22,9 +22,12 @@ export declare const neutral: {
|
|
|
22
22
|
export declare const surfaceColors: {
|
|
23
23
|
'surface-light': Var;
|
|
24
24
|
'surface-tint': Var;
|
|
25
|
+
'surface-room': Var;
|
|
25
26
|
'surface-neutral': Var;
|
|
26
27
|
'surface-disabled': Var;
|
|
27
28
|
'surface-hover': Var;
|
|
29
|
+
'surface-selected': Var;
|
|
30
|
+
'surface-dark': Var;
|
|
28
31
|
'surface-info': Var;
|
|
29
32
|
'surface-success': Var;
|
|
30
33
|
'surface-warning': Var;
|
|
@@ -33,6 +36,7 @@ export declare const surfaceColors: {
|
|
|
33
36
|
'surface-service-2': Var;
|
|
34
37
|
'surface-featured': Var;
|
|
35
38
|
'surface-featured-hover': Var;
|
|
39
|
+
'surface-transparent': string;
|
|
36
40
|
};
|
|
37
41
|
export declare const strokeColors: {
|
|
38
42
|
'stroke-extra-light': Var;
|
|
@@ -92,21 +96,26 @@ export declare const shadowColors: {
|
|
|
92
96
|
'shadow-elevation-1': Var;
|
|
93
97
|
'shadow-elevation-2x': Var;
|
|
94
98
|
'shadow-elevation-2y': Var;
|
|
99
|
+
'shadow-highlight': Var;
|
|
100
|
+
'shadow-danger': Var;
|
|
95
101
|
};
|
|
96
|
-
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" | "surface-featured" | "surface-featured-hover";
|
|
102
|
+
export declare const isSurfaceColor: (color: unknown) => color is "surface-light" | "surface-tint" | "surface-room" | "surface-neutral" | "surface-disabled" | "surface-hover" | "surface-selected" | "surface-dark" | "surface-info" | "surface-success" | "surface-warning" | "surface-danger" | "surface-service-1" | "surface-service-2" | "surface-featured" | "surface-featured-hover" | "surface-transparent";
|
|
97
103
|
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";
|
|
98
104
|
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";
|
|
99
105
|
export declare const isBadgeColor: (color: unknown) => color is "badge-background-level-1" | "badge-background-level-2" | "badge-background-level-3" | "badge-background-level-4";
|
|
100
106
|
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";
|
|
101
107
|
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";
|
|
102
|
-
export declare const isShadowColor: (color: unknown) => color is "shadow-elevation-border" | "shadow-elevation-1" | "shadow-elevation-2x" | "shadow-elevation-2y";
|
|
108
|
+
export declare const isShadowColor: (color: unknown) => color is "shadow-elevation-border" | "shadow-elevation-1" | "shadow-elevation-2x" | "shadow-elevation-2y" | "shadow-highlight" | "shadow-danger";
|
|
103
109
|
export declare const Palette: {
|
|
104
110
|
surface: {
|
|
105
111
|
'surface-light': Var;
|
|
106
112
|
'surface-tint': Var;
|
|
113
|
+
'surface-room': Var;
|
|
107
114
|
'surface-neutral': Var;
|
|
108
115
|
'surface-disabled': Var;
|
|
109
116
|
'surface-hover': Var;
|
|
117
|
+
'surface-selected': Var;
|
|
118
|
+
'surface-dark': Var;
|
|
110
119
|
'surface-info': Var;
|
|
111
120
|
'surface-success': Var;
|
|
112
121
|
'surface-warning': Var;
|
|
@@ -115,6 +124,7 @@ export declare const Palette: {
|
|
|
115
124
|
'surface-service-2': Var;
|
|
116
125
|
'surface-featured': Var;
|
|
117
126
|
'surface-featured-hover': Var;
|
|
127
|
+
'surface-transparent': string;
|
|
118
128
|
};
|
|
119
129
|
status: {
|
|
120
130
|
'status-background-info': Var;
|
|
@@ -174,6 +184,8 @@ export declare const Palette: {
|
|
|
174
184
|
'shadow-elevation-1': Var;
|
|
175
185
|
'shadow-elevation-2x': Var;
|
|
176
186
|
'shadow-elevation-2y': Var;
|
|
187
|
+
'shadow-highlight': Var;
|
|
188
|
+
'shadow-danger': Var;
|
|
177
189
|
};
|
|
178
190
|
};
|
|
179
191
|
//# sourceMappingURL=Theme.d.ts.map
|
package/dist/Theme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Theme.d.ts","sourceRoot":"","sources":["../src/Theme.ts"],"names":[],"mappings":"AAKA,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
|
|
1
|
+
{"version":3,"file":"Theme.d.ts","sourceRoot":"","sources":["../src/Theme.ts"],"names":[],"mappings":"AAKA,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;;;;;;;;;;;;;;;;;;CAkBzB,CAAC;AAIF,eAAO,MAAM,YAAY;;;;;;;;;;CAYxB,CAAC;AAIF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;CAiB1B,CAAC;AAIF,eAAO,MAAM,sBAAsB;;;;;;;;CAclC,CAAC;AAIF,eAAO,MAAM,YAAY;;;;;;;;CAQxB,CAAC;AAIF,eAAO,MAAM,qBAAqB;;;;;CAKjC,CAAC;AAIF,eAAO,MAAM,YAAY;;;;;;;CAkBxB,CAAC;AAIF,eAAO,MAAM,cAAc,UAAW,OAAO,gWACQ,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,+NAE8C,CAAC;AAE/D,eAAO,MAAM,aAAa,UAAW,OAAO,0MACQ,CAAC;AAErD,eAAO,MAAM,aAAa,UAAW,OAAO,qJACQ,CAAC;AAErD,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQnB,CAAC"}
|