grep-components 2.4.0-GREPF-2422.1 → 2.4.0
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/build/components/GreyCover/styles/index.d.ts +1 -1
- package/dist/build/components/NavGuard/stories/NavGuard.stories.d.ts +21 -2
- package/dist/build/components/SortableTable/components/row.d.ts +0 -1
- package/dist/build/components/ToC/stories/_scaffold.d.ts +2 -2
- package/dist/build/styling/makeStyles.d.ts +1 -2
- package/dist/build/utils/keyboard.d.ts +1 -1
- package/dist/index.js +4564 -5594
- package/dist/index.js.map +1 -1
- package/package.json +4 -21
- package/dist/build/components/AppBar/MainAppStyles.d.ts +0 -30
- package/dist/build/components/NavGuard/stories/_scaffold.d.ts +0 -5
- package/dist/build/components/NavGuard/stories/standard.d.ts +0 -3
|
@@ -1,10 +1,29 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export declare const v0colors: {
|
|
3
|
+
primary: string;
|
|
4
|
+
secondary: string;
|
|
5
|
+
body: string;
|
|
6
|
+
headerBackgroundColor: string;
|
|
7
|
+
borderColor: string;
|
|
8
|
+
primaryFade: string;
|
|
9
|
+
greyText: string;
|
|
10
|
+
placeholderText: string;
|
|
11
|
+
textColor: string;
|
|
12
|
+
textColorFade: string;
|
|
13
|
+
textColorMoreFade: string;
|
|
14
|
+
white: string;
|
|
15
|
+
lightGrey: string;
|
|
16
|
+
};
|
|
2
17
|
declare const _default: {
|
|
3
18
|
title: string;
|
|
4
|
-
|
|
19
|
+
excludeStories: string[];
|
|
5
20
|
};
|
|
6
21
|
export default _default;
|
|
7
22
|
export declare const Default: {
|
|
8
23
|
(): React.JSX.Element;
|
|
9
24
|
storyName: string;
|
|
10
25
|
};
|
|
26
|
+
export declare const WithAppBar: {
|
|
27
|
+
(): React.JSX.Element;
|
|
28
|
+
storyName: string;
|
|
29
|
+
};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const makeStyles: <Params = void, RuleNameSubsetReferencableInNestedSelectors extends string = never>(params?: {
|
|
3
2
|
name?: string | Record<string, unknown> | undefined;
|
|
4
3
|
uniqId?: string | undefined;
|
|
@@ -30,7 +29,7 @@ export declare const makeStyles: <Params = void, RuleNameSubsetReferencableInNes
|
|
|
30
29
|
getClasses: <Classes>(props: {
|
|
31
30
|
className?: string | undefined;
|
|
32
31
|
classes?: Classes | undefined;
|
|
33
|
-
}) => Classes extends Record<string, unknown> ? Classes extends Partial<Record<infer K
|
|
32
|
+
}) => Classes extends Record<string, unknown> ? Classes extends Partial<Record<infer K, any>> ? Record<K, string> : Classes : {
|
|
34
33
|
root: string;
|
|
35
34
|
};
|
|
36
35
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export declare const onActivation: (cb: (ev: React.KeyboardEvent) => void) => (ev: React.KeyboardEvent) => void;
|
|
3
3
|
declare const _default: {
|
|
4
|
-
onActivation: (cb: (ev: React.KeyboardEvent
|
|
4
|
+
onActivation: (cb: (ev: React.KeyboardEvent) => void) => (ev: React.KeyboardEvent) => void;
|
|
5
5
|
};
|
|
6
6
|
export default _default;
|