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.
@@ -1,5 +1,5 @@
1
1
  export declare const useStyles: (params: {
2
- elevation?: boolean | undefined;
2
+ elevation?: boolean;
3
3
  }, muiStyleOverridesParams?: {
4
4
  props: Record<string, unknown>;
5
5
  ownerState?: Record<string, unknown> | undefined;
@@ -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
- render: () => React.JSX.Element;
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
  import { CellNode } from '..';
3
2
  interface Properties<T> {
4
3
  id: string | number;
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- declare const _default: ({ children }: {
2
+ declare const scaffold: ({ children }: {
3
3
  children: React.ReactNode;
4
4
  }) => React.JSX.Element;
5
- export default _default;
5
+ export default scaffold;
@@ -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 extends string | number | symbol, any>> ? Record<K, string> : Classes : {
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<Element>) => void) => (ev: React.KeyboardEvent<Element>) => void;
4
+ onActivation: (cb: (ev: React.KeyboardEvent) => void) => (ev: React.KeyboardEvent) => void;
5
5
  };
6
6
  export default _default;