@aslaluroba/help-center-react 3.0.17 → 3.0.19

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
@@ -3,7 +3,7 @@
3
3
  "main": "dist/index.js",
4
4
  "module": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
- "version": "3.0.17",
6
+ "version": "3.0.19",
7
7
  "description": "BabylAI Help Center Widget for React and Next.js",
8
8
  "private": false,
9
9
  "exports": {
@@ -32,7 +32,9 @@
32
32
  "publish:patch": "yarn clean && yarn build && yarn version:patch && yarn publish --access public",
33
33
  "publish:minor": "yarn clean && yarn build && yarn version:minor && yarn publish --access public",
34
34
  "publish:major": "yarn clean && yarn build && yarn version:major && yarn publish --access public",
35
- "watch": "concurrently \"yarn dev\" \"yalc publish --watch --push\""
35
+ "watch": "concurrently \"yarn dev\" \"yalc publish --watch --push\"",
36
+ "setup:dev": "./scripts/setup-dev.sh",
37
+ "setup:dev:with-test": "./scripts/setup-dev.sh --create-test-project"
36
38
  },
37
39
  "files": [
38
40
  "dist",
@@ -62,16 +64,16 @@
62
64
  },
63
65
  "dependencies": {
64
66
  "@ably/chat": "^0.8.0",
65
- "@tabler/icons-react": "^3.34.1",
67
+ "@tabler/icons-react": "^3.35.0",
66
68
  "clsx": "^2.1.1",
67
69
  "tailwind-merge": "^3.3.1",
68
70
  "react-markdown": "^10.1.0",
69
- "ably": "^2.12.0",
70
- "axios": "^1.11.0",
71
+ "ably": "^2.13.0",
72
+ "axios": "^1.12.2",
71
73
  "class-variance-authority": "^0.7.1"
72
74
  },
73
75
  "devDependencies": {
74
- "@babel/core": "^7.28.3",
76
+ "@babel/core": "^7.28.4",
75
77
  "@babel/preset-env": "^7.28.3",
76
78
  "@babel/preset-react": "^7.27.1",
77
79
  "@rollup/plugin-alias": "^5.1.1",
@@ -83,7 +85,7 @@
83
85
  "@rollup/plugin-typescript": "^8.5.0",
84
86
  "@rollup/plugin-url": "^8.0.2",
85
87
  "@svgr/rollup": "^8.1.0",
86
- "@tabler/icons-react": "^3.34.1",
88
+ "@tabler/icons-react": "^3.35.0",
87
89
  "@types/hast": "^3.0.4",
88
90
  "@types/node": "^16.18.126",
89
91
  "@types/react": "^18.3.0",
@@ -91,10 +93,10 @@
91
93
  "autoprefixer": "^10.4.21",
92
94
  "babel-loader": "^10.0.0",
93
95
  "clsx": "^2.1.1",
94
- "concurrently": "^9.2.0",
95
- "i18next": "^25.4.2",
96
+ "concurrently": "^9.2.1",
97
+ "i18next": "^25.5.2",
96
98
  "postcss": "^8.5.6",
97
- "react-i18next": "^15.7.2",
99
+ "react-i18next": "^15.7.3",
98
100
  "react-markdown": "^10.1.0",
99
101
  "rimraf": "^6.0.1",
100
102
  "rollup": "^2.79.2",
package/src/globals.css CHANGED
@@ -13,22 +13,14 @@
13
13
  *,
14
14
  :before,
15
15
  :after {
16
- --tw-translate-x: 0;
17
- --tw-translate-y: 0;
18
- --tw-rotate: 0;
19
- --tw-skew-x: 0;
20
- --tw-skew-y: 0;
21
- --tw-scale-x: 1;
22
- --tw-scale-y: 1;
23
16
  --tw-gradient-from-position: ;
24
17
  --tw-gradient-via-position: ;
25
18
  --tw-gradient-to-position: ;
26
19
  box-sizing: border-box;
27
20
  }
28
21
 
29
- a {
30
- color: inherit;
31
- text-decoration: inherit;
22
+ .babylai-rotate-180 {
23
+ transform: rotate(180deg) !important;
32
24
  }
33
25
 
34
26
  img,
@@ -58,19 +50,19 @@ img {
58
50
 
59
51
  .babylai-bg-linear-to-b {
60
52
  background: var(--babylai-primary-color);
61
- background: linear-gradient(180deg, var(--babylai-primary-color) 0%, color-mix(in srgb, var(--babylai-primary-color) 0%, transparent) 100%);
53
+ background: linear-gradient(180deg, var(--babylai-primary-color) 1%, color-mix(in srgb, var(--babylai-primary-color) 1%, transparent) 100%);
62
54
  }
63
55
 
64
56
  /* Dark mode via Tailwind .dark class */
65
57
  .dark .babylai-bg-linear-to-b {
66
58
  background: var(--babylai-storm-dust-950);
67
- background: linear-gradient(180deg, var(--babylai-storm-dust-950) 0%, color-mix(in srgb, var(--babylai-storm-dust-950) 60%, transparent) 100%);
59
+ background: linear-gradient(180deg, var(--babylai-storm-dust-950) 1%, color-mix(in srgb, var(--babylai-storm-dust-950) 60%, transparent) 100%);
68
60
  }
69
61
 
70
62
  /* Dark mode via browser preference */
71
63
  @media (prefers-color-scheme: dark) {
72
64
  .babylai-bg-linear-to-b {
73
65
  background: var(--babylai-storm-dust-950);
74
- background: linear-gradient(180deg, var(--babylai-storm-dust-950) 0%, color-mix(in srgb, var(--babylai-storm-dust-950) 60%, transparent) 100%);
66
+ background: linear-gradient(180deg, var(--babylai-storm-dust-950) 1%, color-mix(in srgb, var(--babylai-storm-dust-950) 60%, transparent) 100%);
75
67
  }
76
68
  }