immerser-react 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Immerser React
2
2
 
3
- React adapter for declaring Immerser markup with components instead of writing `data-immerser-*` DOM by hand.
3
+ React adapter for [Immerser](https://github.com/dubaua/immerser). It lets you declare Immerser markup with components instead of writing `data-immerser-*` DOM by hand.
4
4
 
5
5
  The project exposes a small component set:
6
6
 
@@ -1,5 +1,5 @@
1
1
  import { jsx } from "react/jsx-runtime";
2
- import ImmerserController, { InteractiveStyles, CroppedFullAbsoluteStyles, NotInteractiveStyles } from "immerser";
2
+ import ImmerserController, { InteractiveStyles, NotInteractiveStyles, CroppedFullAbsoluteStyles } from "immerser";
3
3
  import { createContext, useRef, useState, useCallback, useLayoutEffect, useEffect, useMemo, useContext, Fragment, Children, isValidElement, cloneElement } from "react";
4
4
  import classNames from "classnames";
5
5
  const ImmerserConfigContext = createContext(null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "immerser-react",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "React adapter for declaring Immerser markup with components.",
5
5
  "type": "module",
6
6
  "main": "./dist/immerser-react.cjs",
@@ -38,7 +38,7 @@
38
38
  "email": "dubaua@gmail.com"
39
39
  },
40
40
  "license": "MIT",
41
- "homepage": "https://dubaua.github.io/immerser-react/",
41
+ "homepage": "https://github.com/dubaua/immerser-react",
42
42
  "sideEffects": false,
43
43
  "scripts": {
44
44
  "predev": "npm run build:lib && npm run build:types",