basefn 1.1.1 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "basefn",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/brnrdog/basefn.git"
@@ -27,7 +27,8 @@
27
27
  "rescript",
28
28
  "xote",
29
29
  "ui",
30
- "components"
30
+ "components",
31
+ "component library"
31
32
  ],
32
33
  "author": "Bernardo Gurgel <brnrdog@hey.com>",
33
34
  "license": "MIT",
package/rescript.json CHANGED
@@ -5,11 +5,6 @@
5
5
  "dir": "src",
6
6
  "subdirs": true,
7
7
  "public": ["Basefn"]
8
- },
9
- {
10
- "dir": "docs",
11
- "subdirs": true,
12
- "public": ["Basefn"]
13
8
  }
14
9
  ],
15
10
  "package-specs": {
@@ -1,6 +1,8 @@
1
1
  %%raw(`import './Basefn__Accordion.css'`)
2
2
 
3
- open Xote
3
+ module Signal = Xote.Signal
4
+ module Computed = Xote.Computed
5
+ module Component = Xote.Component
4
6
 
5
7
  type accordionItem = {
6
8
  value: string,
@@ -69,9 +69,18 @@ function Basefn__Accordion(props) {
69
69
  });
70
70
  }
71
71
 
72
+ let Signal;
73
+
74
+ let Computed;
75
+
76
+ let Component;
77
+
72
78
  let make = Basefn__Accordion;
73
79
 
74
80
  export {
81
+ Signal,
82
+ Computed,
83
+ Component,
75
84
  make,
76
85
  }
77
86
  /* Not a pure module */
File without changes