ados-rcm 1.1.289 → 1.1.291

Sign up to get free protection for your applications and to get access to all the features.
@@ -10,28 +10,7 @@ declare global {
10
10
  type CSSModuleClasses = {
11
11
  readonly [key: string]: string;
12
12
  };
13
- /**
14
- * classes : Pre Defined CSS Classes
15
- *
16
- * Description : Pre Defined CSS Classes for sF
17
- *
18
- * NoSelect: S.NoSelect,
19
- * IsClickable: plainClsx(S.NoSelect, S.IsCursorPointer, S.IsFixedShape),
20
- * IsInteractive: plainClsx(S.NoSelect, S.IsCursorPointer, S.IsInteractive),
21
- *
22
- */
23
- declare const classes: {
24
- NoSelect: any;
25
- IsClickable: string;
26
- IsInteractive: string;
27
- };
28
- /**
29
- * typographies : Pre Defined Typographies
30
- *
31
- * Description : Pre Defined Typographies for sF
32
- *
33
- */
34
- declare const typographies: {
13
+ declare const keys: {
35
14
  Display1: any;
36
15
  Display2: any;
37
16
  Title1: any;
@@ -45,11 +24,12 @@ declare const typographies: {
45
24
  Label2: any;
46
25
  Caption1: any;
47
26
  Caption2: any;
27
+ NoSelect: any;
28
+ IsClickable: string;
29
+ IsInteractive: string;
48
30
  };
49
- type TKeys = typeof classes & typeof typographies & IAdditionalClasses;
50
- declare const keys: TKeys;
51
31
  declare function updateKeys(): void;
52
- declare function clsx(...args: (keyof TKeys | any)[]): string;
32
+ declare function clsx(...args: (keyof typeof keys)[] | any[]): string;
53
33
  declare function sclsx<T extends CSSModuleClasses>(styles: T, ...args: (keyof T)[] | (keyof typeof keys)[] | any[]): string;
54
34
  /**
55
35
  * sF : Style Functions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ados-rcm",
3
- "version": "1.1.289",
3
+ "version": "1.1.291",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "type": "module",