expo-checkbox 2.0.0 → 2.1.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.
package/CHANGELOG.md CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 2.1.0 — 2022-04-18
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 2.0.0 — 2021-09-28
14
18
 
15
19
  ### 🛠 Breaking changes
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## API documentation
6
6
 
7
- Please refer to the [API documentation for the latest stable release](https://docs.expo.io/versions/latest/sdk/checkbox/).
7
+ Please refer to the [API documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/checkbox/).
8
8
 
9
9
  ## Installation in managed Expo projects
10
10
 
@@ -1,2 +1,3 @@
1
1
  export { default } from './ExpoCheckbox';
2
2
  export * from './Checkbox.types';
3
+ //# sourceMappingURL=Checkbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../src/Checkbox.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AACzC,cAAc,kBAAkB,CAAC"}
@@ -33,3 +33,4 @@ export declare type CheckboxComponent = React.FC<CheckboxProps> & {
33
33
  */
34
34
  isAvailableAsync: () => Promise<boolean>;
35
35
  };
36
+ //# sourceMappingURL=Checkbox.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Checkbox.types.d.ts","sourceRoot":"","sources":["../src/Checkbox.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,oBAAoB,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAG3E,oBAAY,aAAa,GAAG,oBAAoB,CAAC;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,OAAO,CAAA;CAAE,CAAC,CAAC;AAGrF,oBAAY,aAAa,GAAG,SAAS,GAAG;IACtC;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,IAAI,CAAC;IAC1C;;;OAGG;IACH,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;CAC1C,CAAC;AAGF,oBAAY,iBAAiB,GAAG,KAAK,CAAC,EAAE,CAAC,aAAa,CAAC,GAAG;IACxD;;OAEG;IACH,gBAAgB,EAAE,MAAM,OAAO,CAAC,OAAO,CAAC,CAAC;CAC1C,CAAC"}
@@ -1,3 +1,4 @@
1
1
  import { CheckboxComponent } from './Checkbox.types';
2
2
  declare const ExpoCheckbox: CheckboxComponent;
3
3
  export default ExpoCheckbox;
4
+ //# sourceMappingURL=ExpoCheckbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExpoCheckbox.d.ts","sourceRoot":"","sources":["../src/ExpoCheckbox.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAKrD,QAAA,MAAM,YAAY,EAAE,iBAiCnB,CAAC;AAIF,eAAe,YAAY,CAAC"}
@@ -11,3 +11,4 @@ import { CheckboxComponent } from './Checkbox.types';
11
11
  declare const ExpoCheckbox: CheckboxComponent;
12
12
  export default ExpoCheckbox;
13
13
  export declare const name = "ExpoCheckbox";
14
+ //# sourceMappingURL=ExpoCheckbox.web.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExpoCheckbox.web.d.ts","sourceRoot":"","sources":["../src/ExpoCheckbox.web.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAMH,OAAO,EAAE,iBAAiB,EAAiB,MAAM,kBAAkB,CAAC;AAEpE,QAAA,MAAM,YAAY,EAAE,iBA0CnB,CAAC;AA2DF,eAAe,YAAY,CAAC;AAO5B,eAAO,MAAM,IAAI,iBAAiB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-checkbox",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Basic checkbox for iOS, Android, and web",
5
5
  "main": "build/Checkbox.js",
6
6
  "types": "build/Checkbox.d.ts",
@@ -35,5 +35,5 @@
35
35
  "jest": {
36
36
  "preset": "expo-module-scripts/enzyme"
37
37
  },
38
- "gitHead": "1fffde73411ee7a642b98f1506a8de921805d52b"
38
+ "gitHead": "89a27c0ca0ca8becd7546697298e874a15e94faf"
39
39
  }