@elliemae/ds-accessibility 3.13.1-rc.0 → 3.13.1-rc.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.
@@ -0,0 +1,2 @@
1
+ export * from './skip-to';
2
+ export * from './live-region';
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ declare const DSLiveRegion: React.MemoExoticComponent<(props: DSLiveRegionT.Props) => JSX.Element | null>;
3
+ declare const DSLiveRegionWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<any>;
4
+ export { DSLiveRegion, DSLiveRegionWithSchema };
@@ -0,0 +1 @@
1
+ export * from './useLiveRegion';
@@ -0,0 +1,8 @@
1
+ import type React from 'react';
2
+ export declare namespace UseLiveRegionT {
3
+ interface Props {
4
+ id?: string;
5
+ portal?: React.MutableRefObject<HTMLElement>;
6
+ }
7
+ }
8
+ export declare const propTypes: {};
@@ -0,0 +1 @@
1
+ export declare const StyledContainer: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
@@ -0,0 +1,24 @@
1
+ import React from 'react';
2
+ import type { UseLiveRegionT } from './propTypes';
3
+ interface Options {
4
+ assertive?: boolean;
5
+ unsafe_emulateAssertiveNVDA?: boolean;
6
+ delay?: number;
7
+ }
8
+ interface Methods {
9
+ read?: (message: string, options: Options) => void;
10
+ }
11
+ export interface Props {
12
+ methods?: React.MutableRefObject<Methods>;
13
+ id?: string;
14
+ portal?: React.MutableRefObject<HTMLElement>;
15
+ }
16
+ declare const useLiveRegion: {
17
+ (props: UseLiveRegionT.Props): {
18
+ LiveRegion: () => JSX.Element;
19
+ read: (message: string, options: Options) => void | undefined;
20
+ };
21
+ displayName: string;
22
+ };
23
+ declare const UseLiveRegionWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<UseLiveRegionT.Props>;
24
+ export { useLiveRegion, UseLiveRegionWithSchema };
@@ -0,0 +1,11 @@
1
+ import type { DSSkipToPropsT as Props } from './index.d';
2
+ declare const DSSkipTo: {
3
+ (props: Props): JSX.Element;
4
+ propTypes: {
5
+ goTo: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
6
+ message: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
7
+ };
8
+ displayName: string;
9
+ };
10
+ declare const DSSkipToWithSchema: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").DocumentedReactComponent<Props>;
11
+ export { DSSkipTo, DSSkipToWithSchema };
@@ -0,0 +1,4 @@
1
+ export interface DSSkipToPropsT {
2
+ goTo: string;
3
+ message?: string;
4
+ }
@@ -0,0 +1 @@
1
+ export { DSSkipTo, DSSkipToWithSchema } from './DSSkipTo';
@@ -0,0 +1,4 @@
1
+ export declare const propTypes: {
2
+ goTo: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
3
+ message: import("@elliemae/ds-utilities/dist/types/props-helpers/propTypes/types").ReactDescT;
4
+ };
@@ -0,0 +1 @@
1
+ export declare const StyledButton: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & object, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-accessibility",
3
- "version": "3.13.1-rc.0",
3
+ "version": "3.13.1-rc.2",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Accessibility",
6
6
  "files": [
@@ -52,8 +52,8 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "uid": "~2.0.0",
55
- "@elliemae/ds-system": "3.13.1-rc.0",
56
- "@elliemae/ds-utilities": "3.13.1-rc.0"
55
+ "@elliemae/ds-system": "3.13.1-rc.2",
56
+ "@elliemae/ds-utilities": "3.13.1-rc.2"
57
57
  },
58
58
  "devDependencies": {
59
59
  "styled-components": "~5.3.6"