@modular-component/default 0.2.1 → 0.2.2

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
@@ -1,5 +1,15 @@
1
1
  # @modular-component/default
2
2
 
3
+ ## 0.2.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 77c46f4: Fix an issue in core rendering system
8
+ - Updated dependencies [77c46f4]
9
+ - @modular-component/core@0.2.2
10
+ - @modular-component/with-default-props@0.2.2
11
+ - @modular-component/with-lifecycle@0.2.2
12
+
3
13
  ## 0.2.1
4
14
 
5
15
  ### Patch Changes
package/README.md CHANGED
@@ -5,8 +5,8 @@ Set of sensible defaults for using `ModularComponent`.
5
5
  Provides two stages: `with(lifecycle)` for adding a lifecycle hook, and `with(defaultProps)` for
6
6
  providing default values for props. It also re-exports `with(render)` from `@modular-component/props` for convenience.
7
7
 
8
- It's also possible to import each of them individually through [`@modular-component/with-lifecycle`](./with-lifecycle.md)
9
- and <br /> [`@modular-component/with-default-props`](./with-default-props.md) respectively.
8
+ It's also possible to import each of them individually through [`@modular-component/with-lifecycle`](https://npmjs.com/package/@modular-component/with-lifecycle)
9
+ and <br /> [`@modular-component/with-default-props`](https://npmjs.com/package/@modular-component/with-default-props) respectively.
10
10
 
11
11
  ## Usage
12
12
 
@@ -31,5 +31,5 @@ const MyComponent = ModularComponent()
31
31
  `@modular-component/default` simply merge together the records from two other packages. To see the implementation
32
32
  details, refer to the individual packages:
33
33
 
34
- * [`@modular-component/with-default-props`](https://npmjs.com/package/@modular-component/with-default-props): powerful default props capabilities
35
- * [`@modular-component/with-lifecycle`](https://npmjs.com/package/@modular-component/with-lifecycle): isolate component logic in a dedicated hook
34
+ - [`@modular-component/with-default-props`](https://npmjs.com/package/@modular-component/with-default-props): powerful default props capabilities
35
+ - [`@modular-component/with-lifecycle`](https://npmjs.com/package/@modular-component/with-lifecycle): isolate component logic in a dedicated hook
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "Default",
9
9
  "Lifecycle"
10
10
  ],
11
- "version": "0.2.1",
11
+ "version": "0.2.2",
12
12
  "type": "module",
13
13
  "license": "MIT",
14
14
  "publishConfig": {
@@ -27,9 +27,9 @@
27
27
  "license": "cp ../../LICENSE ./LICENSE"
28
28
  },
29
29
  "dependencies": {
30
- "@modular-component/core": "0.2.1",
31
- "@modular-component/with-default-props": "0.2.1",
32
- "@modular-component/with-lifecycle": "0.2.1"
30
+ "@modular-component/core": "0.2.2",
31
+ "@modular-component/with-default-props": "0.2.2",
32
+ "@modular-component/with-lifecycle": "0.2.2"
33
33
  },
34
34
  "devDependencies": {
35
35
  "typescript": "^5.2.2"