@preply/ds-web-core 0.28.0 → 0.29.2
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.
|
@@ -3,5 +3,9 @@ export declare const globalClassNames: (globals?: (string | undefined)[]) => str
|
|
|
3
3
|
export declare const moduleClassName: (cssModule: CSSModule, name: string) => string;
|
|
4
4
|
export declare const moduleLocals: (cssModule: CSSModule, namespace: string, locals?: (string | (string | undefined)[] | undefined)[]) => string[];
|
|
5
5
|
export declare const moduleClassNames: (cssModule: CSSModule, namespace: string, locals?: (string | (string | undefined)[] | undefined)[]) => string[];
|
|
6
|
-
export declare const stringClassNames: (prefix: string, value: string |
|
|
7
|
-
|
|
6
|
+
export declare const stringClassNames: (prefix: string, value: string | ({
|
|
7
|
+
_: string;
|
|
8
|
+
} & Partial<Record<import("@preply/ds-core").Breakpoint, string>>) | undefined) => (string | undefined)[];
|
|
9
|
+
export declare const booleanClassNames: (ifTrue: string | undefined, ifFalse: string | undefined, value: boolean | ({
|
|
10
|
+
_: boolean;
|
|
11
|
+
} & Partial<Record<import("@preply/ds-core").Breakpoint, boolean>>) | undefined) => (string | undefined)[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@preply/ds-web-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"dev": "run build:rollup -w"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@preply/ds-core": "0.
|
|
23
|
-
"@preply/ds-core-types": "0.
|
|
22
|
+
"@preply/ds-core": "0.29.2",
|
|
23
|
+
"@preply/ds-core-types": "0.29.2"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@preply/ds-core": "0.
|
|
27
|
-
"@preply/ds-core-types": "0.
|
|
26
|
+
"@preply/ds-core": "0.29.2",
|
|
27
|
+
"@preply/ds-core-types": "0.29.2",
|
|
28
28
|
"react": "^16.8.3",
|
|
29
29
|
"react-dom": "^16.8.3"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "ad4a4a21dda4bab226e457a7dbb2e6f3aa13dfef"
|
|
32
32
|
}
|