@elliemae/ds-accessibility 3.70.0-next.7 → 3.70.0-next.71
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/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +2 -2
- package/dist/cjs/package.json +1 -4
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +2 -2
- package/dist/esm/package.json +1 -4
- package/dist/types/index.d.ts +1 -0
- package/dist/types/live-region/useLiveRegion.d.ts +1 -1
- package/package.json +9 -9
- package/dist/types/live-region/tests/DSLiveRegion.axe.test.d.ts +0 -1
package/dist/cjs/index.js
CHANGED
|
@@ -29,11 +29,13 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
29
29
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
30
|
var index_exports = {};
|
|
31
31
|
__export(index_exports, {
|
|
32
|
+
DSLiveRegionWithSchema: () => import_DSLiveRegion.DSLiveRegionWithSchema,
|
|
32
33
|
ScreenReaderOnly: () => import_ScreenReaderOnly.ScreenReaderOnly
|
|
33
34
|
});
|
|
34
35
|
module.exports = __toCommonJS(index_exports);
|
|
35
36
|
var React = __toESM(require("react"));
|
|
36
37
|
__reExport(index_exports, require("./skip-to/index.js"), module.exports);
|
|
37
38
|
__reExport(index_exports, require("./live-region/index.js"), module.exports);
|
|
39
|
+
var import_DSLiveRegion = require("./live-region/DSLiveRegion.js");
|
|
38
40
|
var import_ScreenReaderOnly = require("./ScreenReaderOnly.js");
|
|
39
41
|
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/index.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["export * from './skip-to/index.js';\nexport * from './live-region/index.js';\nexport { ScreenReaderOnly } from './ScreenReaderOnly.js';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,0BAAc,+BAAd;AACA,0BAAc,mCADd;AAEA,8BAAiC;",
|
|
4
|
+
"sourcesContent": ["export * from './skip-to/index.js';\nexport * from './live-region/index.js';\nexport { DSLiveRegionWithSchema } from './live-region/DSLiveRegion.js';\nexport { ScreenReaderOnly } from './ScreenReaderOnly.js';\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,0BAAc,+BAAd;AACA,0BAAc,mCADd;AAEA,0BAAuC;AACvC,8BAAiC;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/cjs/package.json
CHANGED
package/dist/esm/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
export * from "./skip-to/index.js";
|
|
3
3
|
export * from "./live-region/index.js";
|
|
4
|
+
import { DSLiveRegionWithSchema } from "./live-region/DSLiveRegion.js";
|
|
4
5
|
import { ScreenReaderOnly } from "./ScreenReaderOnly.js";
|
|
5
6
|
export {
|
|
7
|
+
DSLiveRegionWithSchema,
|
|
6
8
|
ScreenReaderOnly
|
|
7
9
|
};
|
|
8
10
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/index.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './skip-to/index.js';\nexport * from './live-region/index.js';\nexport { ScreenReaderOnly } from './ScreenReaderOnly.js';\n"],
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACAvB,cAAc;AACd,cAAc;AACd,SAAS,wBAAwB;",
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "export * from './skip-to/index.js';\nexport * from './live-region/index.js';\nexport { DSLiveRegionWithSchema } from './live-region/DSLiveRegion.js';\nexport { ScreenReaderOnly } from './ScreenReaderOnly.js';\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACAvB,cAAc;AACd,cAAc;AACd,SAAS,8BAA8B;AACvC,SAAS,wBAAwB;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/package.json
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export interface Props {
|
|
|
15
15
|
}
|
|
16
16
|
declare const useLiveRegion: {
|
|
17
17
|
(props: UseLiveRegionT.Props): {
|
|
18
|
-
LiveRegion: () =>
|
|
18
|
+
LiveRegion: () => React.JSX.Element;
|
|
19
19
|
read: (message: string, options: Options) => void | undefined;
|
|
20
20
|
};
|
|
21
21
|
displayName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-accessibility",
|
|
3
|
-
"version": "3.70.0-next.
|
|
3
|
+
"version": "3.70.0-next.71",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Accessibility",
|
|
6
6
|
"files": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
|
-
"url": "https://
|
|
25
|
+
"url": "https://github.com/intcx/PLATFORM-UI.dimsum.git"
|
|
26
26
|
},
|
|
27
27
|
"engines": {
|
|
28
28
|
"pnpm": ">=9",
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"uid": "^2.0.2",
|
|
40
|
-
"@elliemae/ds-props-helpers": "3.70.0-next.
|
|
41
|
-
"@elliemae/ds-system": "3.70.0-next.
|
|
40
|
+
"@elliemae/ds-props-helpers": "3.70.0-next.71",
|
|
41
|
+
"@elliemae/ds-system": "3.70.0-next.71"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"jest": "^30.0.0",
|
|
45
|
-
"styled-components": "~5.3.
|
|
46
|
-
"@elliemae/ds-
|
|
47
|
-
"@elliemae/ds-
|
|
45
|
+
"styled-components": "~5.3.11",
|
|
46
|
+
"@elliemae/ds-monorepo-devops": "3.70.0-next.71",
|
|
47
|
+
"@elliemae/ds-test-utils": "3.70.0-next.71"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"react": "^18.3.1",
|
|
51
51
|
"react-dom": "^18.3.1",
|
|
52
|
-
"styled-components": "~5.3.
|
|
52
|
+
"styled-components": "~5.3.11"
|
|
53
53
|
},
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public",
|
|
@@ -64,4 +64,4 @@
|
|
|
64
64
|
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
65
65
|
"checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
66
66
|
}
|
|
67
|
-
}
|
|
67
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|