ados-rcm 1.1.753 → 1.1.755
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/AModule/AUtils/sF.d.ts +29 -1
- package/dist/index.cjs.js +48 -48
- package/dist/index.es.js +554 -551
- package/package.json +1 -1
|
@@ -49,7 +49,8 @@ type ActiveFontKeys = SFTypeSettings extends {
|
|
|
49
49
|
type ActiveTypoKeys = SFTypeSettings extends {
|
|
50
50
|
disableTypographies: true;
|
|
51
51
|
} ? never : keyof typeof typographies;
|
|
52
|
-
|
|
52
|
+
type ActiveCustomKeys = AddTypographies extends any ? keyof AddTypographies : never;
|
|
53
|
+
export type SFKeys = ActiveClassKeys | ActiveFontKeys | ActiveTypoKeys | ActiveCustomKeys;
|
|
53
54
|
export type SFArg = SFKeys | (string & {
|
|
54
55
|
_?: never;
|
|
55
56
|
}) | false | undefined | null;
|
|
@@ -60,5 +61,32 @@ export declare const sF: {
|
|
|
60
61
|
clsx: typeof clsx;
|
|
61
62
|
sclsx: typeof sclsx;
|
|
62
63
|
addProperties: typeof addProperties;
|
|
64
|
+
classes: {
|
|
65
|
+
NoSelect: string;
|
|
66
|
+
NoTransition: string;
|
|
67
|
+
IsClickable: string;
|
|
68
|
+
IsInteractive: string;
|
|
69
|
+
};
|
|
70
|
+
fontWeights: {
|
|
71
|
+
Regular: string;
|
|
72
|
+
Medium: string;
|
|
73
|
+
SemiBold: string;
|
|
74
|
+
Bold: string;
|
|
75
|
+
};
|
|
76
|
+
typographies: {
|
|
77
|
+
Display1: string;
|
|
78
|
+
Display2: string;
|
|
79
|
+
Title1: string;
|
|
80
|
+
Title2: string;
|
|
81
|
+
Title3: string;
|
|
82
|
+
Headline1: string;
|
|
83
|
+
Headline2: string;
|
|
84
|
+
Body1Normal: string;
|
|
85
|
+
Body1Reading: string;
|
|
86
|
+
Label1: string;
|
|
87
|
+
Label2: string;
|
|
88
|
+
Caption1: string;
|
|
89
|
+
Caption2: string;
|
|
90
|
+
};
|
|
63
91
|
};
|
|
64
92
|
export {};
|