speakid-build-a-sentence 1.0.8 → 1.0.10

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/index.d.ts CHANGED
@@ -1,11 +1,7 @@
1
- import Game from "./Game";
2
- import { ErrorBoundary } from "./components/ErrorBoundary";
3
- import { useValidation } from "./hooks/useValidation";
4
- import { createAriaLabel, handleKeyDown, announceToScreenReader } from "./utils/accessibility";
5
- export default Game;
6
- export { ErrorBoundary };
7
- export { useValidation };
8
- export { createAriaLabel, handleKeyDown, announceToScreenReader };
1
+ export { default } from "./Game";
2
+ export { ErrorBoundary } from "./components/ErrorBoundary";
3
+ export { useValidation } from "./hooks/useValidation";
4
+ export { createAriaLabel, handleKeyDown, announceToScreenReader } from "./utils/accessibility";
9
5
  export type { ValidationError, ValidationResult } from "./hooks/useValidation";
10
6
  export type { GameProps } from "./Game";
11
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,QAAQ,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAG/F,eAAe,IAAI,CAAC;AAGpB,OAAO,EAAE,aAAa,EAAE,CAAC;AACzB,OAAO,EAAE,aAAa,EAAE,CAAC;AACzB,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,sBAAsB,EAAE,CAAC;AAGlE,YAAY,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC/E,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAC;AAGjC,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAG/F,YAAY,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAC;AAC/E,YAAY,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC"}
package/package.json CHANGED
@@ -1,10 +1,19 @@
1
1
  {
2
2
  "name": "speakid-build-a-sentence",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Magic Sentence Game - Interactive word building game for SPEAKID platform",
5
- "main": "dist/speakid-build-a-sentence.es.js",
5
+ "main": "dist/speakid-build-a-sentence.umd.js",
6
6
  "module": "dist/speakid-build-a-sentence.es.js",
7
7
  "types": "dist/index.d.ts",
8
+ "sideEffects": false,
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/speakid-build-a-sentence.es.js",
13
+ "require": "./dist/speakid-build-a-sentence.umd.js",
14
+ "default": "./dist/speakid-build-a-sentence.es.js"
15
+ }
16
+ },
8
17
  "files": [
9
18
  "dist",
10
19
  "README.md"