@snf/qa-bot-core 0.1.0

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.
Files changed (46) hide show
  1. package/README.md +183 -0
  2. package/build/asset-manifest.json +15 -0
  3. package/build/chat-icon.svg +3 -0
  4. package/build/favicon.ico +0 -0
  5. package/build/index.html +1 -0
  6. package/build/logo192.png +0 -0
  7. package/build/logo512.png +0 -0
  8. package/build/manifest.json +25 -0
  9. package/build/robots.txt +3 -0
  10. package/build/static/css/main.css +2 -0
  11. package/build/static/css/main.css.map +1 -0
  12. package/build/static/js/453.chunk.js +2 -0
  13. package/build/static/js/453.chunk.js.map +1 -0
  14. package/build/static/js/main.js +3 -0
  15. package/build/static/js/main.js.LICENSE.txt +67 -0
  16. package/build/static/js/main.js.map +1 -0
  17. package/dist/qa-bot-core.js +9 -0
  18. package/dist/qa-bot-core.js.map +1 -0
  19. package/dist/qa-bot-core.standalone.js +37 -0
  20. package/dist/qa-bot-core.standalone.js.map +1 -0
  21. package/dist/qa-bot-core.umd.cjs +9 -0
  22. package/dist/qa-bot-core.umd.cjs.map +1 -0
  23. package/dist/types/components/BotController.d.ts +14 -0
  24. package/dist/types/components/NewChatButton.d.ts +3 -0
  25. package/dist/types/components/QABot.d.ts +7 -0
  26. package/dist/types/components/icons/BaseIcon.d.ts +9 -0
  27. package/dist/types/components/icons/RefreshIcon.d.ts +3 -0
  28. package/dist/types/config/constants.d.ts +66 -0
  29. package/dist/types/config/defaults.d.ts +118 -0
  30. package/dist/types/config/index.d.ts +11 -0
  31. package/dist/types/config/types.d.ts +150 -0
  32. package/dist/types/config.d.ts +47 -0
  33. package/dist/types/hooks/useChatBotSettings.d.ts +13 -0
  34. package/dist/types/hooks/useFocusableSendButton.d.ts +5 -0
  35. package/dist/types/hooks/useKeyboardNavigation.d.ts +6 -0
  36. package/dist/types/hooks/useThemeColors.d.ts +12 -0
  37. package/dist/types/lib.d.ts +44 -0
  38. package/dist/types/standalone.d.ts +8 -0
  39. package/dist/types/utils/create-bot-flow.d.ts +12 -0
  40. package/dist/types/utils/deep-merge.d.ts +10 -0
  41. package/dist/types/utils/flow-merger.d.ts +14 -0
  42. package/dist/types/utils/flows/qa-flow.d.ts +25 -0
  43. package/dist/types/utils/getProcessedText.d.ts +4 -0
  44. package/dist/types/utils/session-utils.d.ts +2 -0
  45. package/dist/types/utils/validation-utils.d.ts +19 -0
  46. package/package.json +78 -0
@@ -0,0 +1,67 @@
1
+ /*!
2
+ * escape-html
3
+ * Copyright(c) 2012-2013 TJ Holowaychuk
4
+ * Copyright(c) 2015 Andreas Lubbe
5
+ * Copyright(c) 2015 Tiancheng "Timothy" Gu
6
+ * MIT Licensed
7
+ */
8
+
9
+ /**
10
+ * @license React
11
+ * react-dom-server-legacy.browser.production.min.js
12
+ *
13
+ * Copyright (c) Facebook, Inc. and its affiliates.
14
+ *
15
+ * This source code is licensed under the MIT license found in the
16
+ * LICENSE file in the root directory of this source tree.
17
+ */
18
+
19
+ /**
20
+ * @license React
21
+ * react-dom-server.browser.production.min.js
22
+ *
23
+ * Copyright (c) Facebook, Inc. and its affiliates.
24
+ *
25
+ * This source code is licensed under the MIT license found in the
26
+ * LICENSE file in the root directory of this source tree.
27
+ */
28
+
29
+ /**
30
+ * @license React
31
+ * react-dom.production.min.js
32
+ *
33
+ * Copyright (c) Facebook, Inc. and its affiliates.
34
+ *
35
+ * This source code is licensed under the MIT license found in the
36
+ * LICENSE file in the root directory of this source tree.
37
+ */
38
+
39
+ /**
40
+ * @license React
41
+ * react-jsx-runtime.production.min.js
42
+ *
43
+ * Copyright (c) Facebook, Inc. and its affiliates.
44
+ *
45
+ * This source code is licensed under the MIT license found in the
46
+ * LICENSE file in the root directory of this source tree.
47
+ */
48
+
49
+ /**
50
+ * @license React
51
+ * react.production.min.js
52
+ *
53
+ * Copyright (c) Facebook, Inc. and its affiliates.
54
+ *
55
+ * This source code is licensed under the MIT license found in the
56
+ * LICENSE file in the root directory of this source tree.
57
+ */
58
+
59
+ /**
60
+ * @license React
61
+ * scheduler.production.min.js
62
+ *
63
+ * Copyright (c) Facebook, Inc. and its affiliates.
64
+ *
65
+ * This source code is licensed under the MIT license found in the
66
+ * LICENSE file in the root directory of this source tree.
67
+ */