@magmamath/students-features 1.3.23-rc.19 → 1.3.23-rc.20

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.
@@ -7,4 +7,5 @@ export * from './playing/components/VoiceTranscription';
7
7
  export * from './playing/components/VoiceIcon';
8
8
  export * from './constants';
9
9
  export * from './types';
10
+ export type { WithAbortSignal } from '../../types/common.types';
10
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/voice/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAA;AAClD,cAAc,qCAAqC,CAAA;AACnD,cAAc,0CAA0C,CAAA;AACxD,cAAc,wCAAwC,CAAA;AAEtD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AAEvD,cAAc,gCAAgC,CAAA;AAC9C,cAAc,aAAa,CAAA;AAC3B,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/voice/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAA;AAClD,cAAc,qCAAqC,CAAA;AACnD,cAAc,0CAA0C,CAAA;AACxD,cAAc,wCAAwC,CAAA;AAEtD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AAEvD,cAAc,gCAAgC,CAAA;AAC9C,cAAc,aAAa,CAAA;AAC3B,cAAc,SAAS,CAAA;AACvB,YAAY,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAA"}
@@ -7,4 +7,5 @@ export * from './playing/components/VoiceTranscription';
7
7
  export * from './playing/components/VoiceIcon';
8
8
  export * from './constants';
9
9
  export * from './types';
10
+ export type { WithAbortSignal } from '../../types/common.types';
10
11
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/voice/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAA;AAClD,cAAc,qCAAqC,CAAA;AACnD,cAAc,0CAA0C,CAAA;AACxD,cAAc,wCAAwC,CAAA;AAEtD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AAEvD,cAAc,gCAAgC,CAAA;AAC9C,cAAc,aAAa,CAAA;AAC3B,cAAc,SAAS,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/voice/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAA;AAClD,cAAc,qCAAqC,CAAA;AACnD,cAAc,0CAA0C,CAAA;AACxD,cAAc,wCAAwC,CAAA;AAEtD,cAAc,mCAAmC,CAAA;AACjD,cAAc,yCAAyC,CAAA;AAEvD,cAAc,gCAAgC,CAAA;AAC9C,cAAc,aAAa,CAAA;AAC3B,cAAc,SAAS,CAAA;AACvB,YAAY,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAA"}
package/package.json CHANGED
@@ -1,12 +1,39 @@
1
1
  {
2
2
  "name": "@magmamath/students-features",
3
- "version": "1.3.23-rc.19",
3
+ "version": "1.3.23-rc.20",
4
4
  "description": "Magmamath features library",
5
5
  "source": "src/index.ts",
6
6
  "main": "src/index.ts",
7
7
  "react-native": "src/index.ts",
8
8
  "module": "dist/module/index.js",
9
9
  "types": "dist/typescript/module/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "react-native": "./src/index.ts",
13
+ "source": "./src/index.ts",
14
+ "import": {
15
+ "types": "./dist/typescript/module/index.d.ts",
16
+ "default": "./dist/module/index.js"
17
+ },
18
+ "require": {
19
+ "types": "./dist/typescript/commonjs/index.d.ts",
20
+ "default": "./dist/commonjs/index.js"
21
+ }
22
+ },
23
+ "./voice": {
24
+ "react-native": "./src/features/voice/index.ts",
25
+ "source": "./src/features/voice/index.ts",
26
+ "import": {
27
+ "types": "./dist/typescript/module/features/voice/index.d.ts",
28
+ "default": "./dist/module/features/voice/index.js"
29
+ },
30
+ "require": {
31
+ "types": "./dist/typescript/commonjs/features/voice/index.d.ts",
32
+ "default": "./dist/commonjs/features/voice/index.js"
33
+ }
34
+ },
35
+ "./package.json": "./package.json"
36
+ },
10
37
  "files": [
11
38
  "src",
12
39
  "dist",
@@ -9,3 +9,4 @@ export * from './playing/components/VoiceTranscription'
9
9
  export * from './playing/components/VoiceIcon'
10
10
  export * from './constants'
11
11
  export * from './types'
12
+ export type { WithAbortSignal } from '../../types/common.types'