ados-rcm 1.1.250 → 1.1.251
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AUtils/sF.d.ts +31 -13
- package/dist/index.cjs.js +16 -16
- package/dist/index.es.js +3058 -3029
- package/package.json +1 -1
@@ -9,23 +9,26 @@ declare global {
|
|
9
9
|
type CSSModuleClasses = {
|
10
10
|
readonly [key: string]: string;
|
11
11
|
};
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
12
|
+
declare const keys: {
|
13
|
+
Display1: any;
|
14
|
+
Display2: any;
|
15
|
+
Title1: any;
|
16
|
+
Title2: any;
|
17
|
+
Title3: any;
|
18
|
+
Headline1: any;
|
19
|
+
Headline2: any;
|
20
|
+
Body1Normal: any;
|
21
|
+
Body1Reading: any;
|
22
|
+
Label1: any;
|
23
|
+
Label2: any;
|
24
|
+
Caption1: any;
|
25
|
+
Caption2: any;
|
23
26
|
NoSelect: any;
|
24
27
|
IsClickable: string;
|
25
28
|
IsInteractive: string;
|
26
29
|
};
|
27
|
-
declare function clsx(...args: (keyof typeof
|
28
|
-
declare function sclsx<T extends CSSModuleClasses>(styles: T, ...args: (keyof T)[] | (keyof typeof
|
30
|
+
declare function clsx(...args: (keyof typeof keys)[] | any[]): string;
|
31
|
+
declare function sclsx<T extends CSSModuleClasses>(styles: T, ...args: (keyof T)[] | (keyof typeof keys)[] | any[]): string;
|
29
32
|
/**
|
30
33
|
* sF : Style Functions
|
31
34
|
*/
|
@@ -37,5 +40,20 @@ export declare const sF: {
|
|
37
40
|
IsClickable: string;
|
38
41
|
IsInteractive: string;
|
39
42
|
};
|
43
|
+
typographies: {
|
44
|
+
Display1: any;
|
45
|
+
Display2: any;
|
46
|
+
Title1: any;
|
47
|
+
Title2: any;
|
48
|
+
Title3: any;
|
49
|
+
Headline1: any;
|
50
|
+
Headline2: any;
|
51
|
+
Body1Normal: any;
|
52
|
+
Body1Reading: any;
|
53
|
+
Label1: any;
|
54
|
+
Label2: any;
|
55
|
+
Caption1: any;
|
56
|
+
Caption2: any;
|
57
|
+
};
|
40
58
|
};
|
41
59
|
export {};
|