@ai12z/react 2.0.4 → 2.0.5

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.
@@ -16,4 +16,3 @@ export const ChatbotWelcome = createReactComponent('chatbot-welcome');
16
16
  export const DynamicForm = createReactComponent('dynamic-form');
17
17
  export const ItemList = createReactComponent('item-list');
18
18
  export const ListData = createReactComponent('list-data');
19
- //# sourceMappingURL=index.js.map
@@ -62,4 +62,3 @@ export const createReactComponent = (tagName, ReactComponentContext, manipulateP
62
62
  }
63
63
  return createForwardRef(ReactComponent, displayName);
64
64
  };
65
- //# sourceMappingURL=createComponent.js.map
@@ -95,4 +95,3 @@ export const createOverlayComponent = (tagName, controller, customElement) => {
95
95
  return React.createElement(Overlay, Object.assign({}, props, { forwardedRef: ref }));
96
96
  });
97
97
  };
98
- //# sourceMappingURL=createOverlayComponent.js.map
@@ -1,3 +1,2 @@
1
1
  export { createReactComponent } from './createComponent';
2
2
  export { createOverlayComponent } from './createOverlayComponent';
3
- //# sourceMappingURL=index.js.map
@@ -1,2 +1 @@
1
1
  export {};
2
- //# sourceMappingURL=interfaces.js.map
@@ -89,4 +89,3 @@ const arrayToMap = (arr) => {
89
89
  arr.forEach((s) => map.set(s, s));
90
90
  return map;
91
91
  };
92
- //# sourceMappingURL=attachProps.js.map
@@ -4,4 +4,3 @@ export const dashToPascalCase = (str) => str
4
4
  .map((segment) => segment.charAt(0).toUpperCase() + segment.slice(1))
5
5
  .join('');
6
6
  export const camelToDashCase = (str) => str.replace(/([A-Z])/g, (m) => `-${m[0].toLowerCase()}`);
7
- //# sourceMappingURL=case.js.map
@@ -10,4 +10,3 @@ export const deprecationWarning = (key, message) => {
10
10
  }
11
11
  }
12
12
  };
13
- //# sourceMappingURL=dev.js.map
@@ -28,4 +28,3 @@ export const defineCustomElement = (tagName, customElement) => {
28
28
  };
29
29
  export * from './attachProps';
30
30
  export * from './case';
31
- //# sourceMappingURL=index.js.map
package/dist/index.js CHANGED
@@ -1,4 +1,3 @@
1
1
  export { defineCustomElements } from "ai12z/loader";
2
2
  import { Ai12zBot, Ai12zCta, Ai12zKnowledgeBox } from "./components/stencil-generated";
3
3
  export { Ai12zBot, Ai12zCta, Ai12zKnowledgeBox };
4
- //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai12z/react",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "ai12z React Library",
5
5
  "author": "Alpesh Patel <alpesh@ai12z.com>",
6
6
  "homepage": "",
@@ -22,7 +22,7 @@
22
22
  "tsc": "tsc -p . --outDir ./dist"
23
23
  },
24
24
  "dependencies": {
25
- "ai12z": "^2.0.4"
25
+ "ai12z": "^2.0.5"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@types/react": "^18.2.55",
@@ -33,5 +33,5 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "7d3e9e1571ec7a6271d9277014417587b1102e86"
36
+ "gitHead": "9ff20e244feb98094e4818a73cc2ebaeb2b9324f"
37
37
  }