bonsai-search 3.1.1 → 3.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/README.md CHANGED
@@ -13,13 +13,13 @@ npm install bonsai-search
13
13
  ### CDN (Web Component)
14
14
 
15
15
  ```html
16
- <script src="https://assets.hibonsai.com/sdk/bonsai-search-webcomponent-3.1.1.js"></script>
16
+ <script src="https://assets.hibonsai.com/sdk/bonsai-search-webcomponent-3.1.2.js"></script>
17
17
  ```
18
18
 
19
19
  ### CDN (Searchbar Only)
20
20
 
21
21
  ```html
22
- <script src="https://assets.hibonsai.com/sdk/bonsai-searchbar-webcomponent-3.1.1.js"></script>
22
+ <script src="https://assets.hibonsai.com/sdk/bonsai-searchbar-webcomponent-3.1.2.js"></script>
23
23
  ```
24
24
 
25
25
  ## Usage
@@ -911,7 +911,7 @@
911
911
 
912
912
  //#endregion
913
913
  //#region src/index.ts
914
- const VERSION = "3.1.1";
914
+ const VERSION = "3.1.2";
915
915
  const ICONS = {
916
916
  search: `<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
917
917
  <circle cx="11" cy="11" r="8"></circle>
package/dist/index.cjs CHANGED
@@ -910,7 +910,7 @@ if (typeof window !== "undefined" && !customElements.get("bonsai-searchbar")) cu
910
910
 
911
911
  //#endregion
912
912
  //#region src/index.ts
913
- const VERSION = "3.1.1";
913
+ const VERSION = "3.1.2";
914
914
  const ICONS = {
915
915
  search: `<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
916
916
  <circle cx="11" cy="11" r="8"></circle>
package/dist/index.js CHANGED
@@ -910,7 +910,7 @@ if (typeof window !== "undefined" && !customElements.get("bonsai-searchbar")) cu
910
910
 
911
911
  //#endregion
912
912
  //#region src/index.ts
913
- const VERSION = "3.1.1";
913
+ const VERSION = "3.1.2";
914
914
  const ICONS = {
915
915
  search: `<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
916
916
  <circle cx="11" cy="11" r="8"></circle>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bonsai-search",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "Bonsai Search SDK",
5
5
  "type": "module",
6
6
  "files": [
@@ -10,6 +10,16 @@
10
10
  "module": "./dist/index.js",
11
11
  "types": "./dist/index.d.cts",
12
12
  "exports": {
13
+ ".": {
14
+ "import": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.js"
17
+ },
18
+ "require": {
19
+ "types": "./dist/index.d.cts",
20
+ "default": "./dist/index.cjs"
21
+ }
22
+ },
13
23
  "./package.json": "./package.json"
14
24
  },
15
25
  "scripts": {