ados-rcm 1.0.336 → 1.0.338
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 +12 -0
- package/dist/index.cjs.js +16 -16
- package/dist/index.es.js +1033 -1032
- package/package.json +1 -1
|
@@ -9,9 +9,20 @@ declare global {
|
|
|
9
9
|
type CSSModuleClasses = {
|
|
10
10
|
readonly [key: string]: string;
|
|
11
11
|
};
|
|
12
|
+
/**
|
|
13
|
+
* classes : Pre Defined CSS Classes
|
|
14
|
+
*
|
|
15
|
+
* Description : Pre Defined CSS Classes for sF
|
|
16
|
+
*
|
|
17
|
+
* NoSelect: S.NoSelect,
|
|
18
|
+
* IsClickable: plainClsx(S.NoSelect, S.IsCursorPointer, S.IsFixedShape),
|
|
19
|
+
* IsInteractive: plainClsx(S.NoSelect, S.IsCursorPointer, S.IsInteractive),
|
|
20
|
+
*
|
|
21
|
+
*/
|
|
12
22
|
declare const classes: Readonly<{
|
|
13
23
|
NoSelect: any;
|
|
14
24
|
IsClickable: string;
|
|
25
|
+
IsInteractive: string;
|
|
15
26
|
}>;
|
|
16
27
|
declare function clsx(...args: (keyof typeof classes)[] | any[]): string;
|
|
17
28
|
declare function sclsx<T extends CSSModuleClasses>(styles: T, ...args: (keyof T)[] | (keyof typeof classes)[] | any[]): string;
|
|
@@ -24,6 +35,7 @@ export declare const sF: {
|
|
|
24
35
|
classes: Readonly<{
|
|
25
36
|
NoSelect: any;
|
|
26
37
|
IsClickable: string;
|
|
38
|
+
IsInteractive: string;
|
|
27
39
|
}>;
|
|
28
40
|
};
|
|
29
41
|
export {};
|