@dotinc/ogre-react 0.12.0 → 0.12.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,3 +1,29 @@
1
+ # v0.12.2 (Tue Oct 01 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix: remove re-exports of gitgraph template ([@nadilas](https://github.com/nadilas))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@nadilas](https://github.com/nadilas)
10
+
11
+ ---
12
+
13
+ # v0.12.1 (Sun Sep 29 2024)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - fix: export enum from gitgraphjs [#188](https://github.com/dotindustries/ogre/pull/188) ([@nadilas](https://github.com/nadilas))
18
+ - chore: fix npm ([@nadilas](https://github.com/nadilas))
19
+ - fix: export enum from gitgraphjs ([@nadilas](https://github.com/nadilas))
20
+
21
+ #### Authors: 1
22
+
23
+ - [@nadilas](https://github.com/nadilas)
24
+
25
+ ---
26
+
1
27
  # v0.10.0 (Sun Apr 07 2024)
2
28
 
3
29
  #### 🚀 Enhancement
package/OgreGraph.tsx CHANGED
@@ -10,12 +10,6 @@ import {
10
10
  } from "@gitgraph/react";
11
11
  import type { Template } from "@gitgraph/core/lib/template";
12
12
 
13
- export {
14
- templateExtend,
15
- metroTemplate,
16
- blackArrowTemplate,
17
- } from "@gitgraph/core/lib/template";
18
-
19
13
  interface GitgraphOptions {
20
14
  template?: TemplateName | Template;
21
15
  orientation?: Orientation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotinc/ogre-react",
3
- "version": "0.12.0",
3
+ "version": "0.12.2",
4
4
  "main": "./index.tsx",
5
5
  "types": "./index.tsx",
6
6
  "license": "MIT",
@@ -10,6 +10,7 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@dotinc/ogre": "^0.12.0",
13
+ "@gitgraph/core": "^1.5.0",
13
14
  "@gitgraph/react": "^1.6.0"
14
15
  },
15
16
  "devDependencies": {
@@ -23,5 +24,5 @@
23
24
  "registry": "https://registry.npmjs.org/",
24
25
  "access": "public"
25
26
  },
26
- "gitHead": "3e70e42c9421ce883a2f50a81ba21ebc64e90c2c"
27
+ "gitHead": "be464f1be162f64ec2854148944540269af65870"
27
28
  }