@aslaluroba/help-center 4.0.14 → 4.0.15
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 +0 -0
- package/assets/Shape.png +0 -0
- package/assets/favicon.ico +0 -0
- package/fesm2022/aslaluroba-help-center.mjs +1494 -2156
- package/fesm2022/aslaluroba-help-center.mjs.map +1 -1
- package/package.json +4 -3
- package/styles/styles.css +13 -47
- package/types/aslaluroba-help-center.d.ts +200 -252
- package/types/aslaluroba-help-center.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aslaluroba/help-center",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.15",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"peerDependencies": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"zone.js": ">=0.15.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
+
"@aslaluroba/help-center-core": "^1.0.0",
|
|
17
18
|
"@iconify-json/solar": "^1.2.5",
|
|
18
19
|
"@tailwindcss/postcss": "^4.2.2",
|
|
19
20
|
"ably": "^2.21.0",
|
|
@@ -48,7 +49,6 @@
|
|
|
48
49
|
"publishConfig": {
|
|
49
50
|
"access": "public"
|
|
50
51
|
},
|
|
51
|
-
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
|
|
52
52
|
"module": "fesm2022/aslaluroba-help-center.mjs",
|
|
53
53
|
"typings": "types/aslaluroba-help-center.d.ts",
|
|
54
54
|
"exports": {
|
|
@@ -59,5 +59,6 @@
|
|
|
59
59
|
"types": "./types/aslaluroba-help-center.d.ts",
|
|
60
60
|
"default": "./fesm2022/aslaluroba-help-center.mjs"
|
|
61
61
|
}
|
|
62
|
-
}
|
|
62
|
+
},
|
|
63
|
+
"type": "module"
|
|
63
64
|
}
|
package/styles/styles.css
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/*! tailwindcss v4.
|
|
2
|
-
@import url(
|
|
1
|
+
/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
|
|
2
|
+
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
|
|
3
3
|
@layer properties;
|
|
4
|
-
@layer theme, base, components, utilities;
|
|
5
4
|
@layer theme {
|
|
6
5
|
:root, :host {
|
|
7
6
|
--babylai-font-sans: "Cairo", sans-serif;
|
|
@@ -25,7 +24,6 @@
|
|
|
25
24
|
--babylai-font-weight-medium: 500;
|
|
26
25
|
--babylai-font-weight-semibold: 600;
|
|
27
26
|
--babylai-font-weight-bold: 700;
|
|
28
|
-
--babylai-tracking-tight: -0.025em;
|
|
29
27
|
--babylai-leading-snug: 1.375;
|
|
30
28
|
--babylai-radius-md: 0.375rem;
|
|
31
29
|
--babylai-radius-lg: 0.5rem;
|
|
@@ -411,6 +409,9 @@
|
|
|
411
409
|
.babylai\:resize-none {
|
|
412
410
|
resize: none;
|
|
413
411
|
}
|
|
412
|
+
.babylai\:scrollbar-thin {
|
|
413
|
+
scrollbar-width: thin;
|
|
414
|
+
}
|
|
414
415
|
.babylai\:grid-cols-1 {
|
|
415
416
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
416
417
|
}
|
|
@@ -814,10 +815,6 @@
|
|
|
814
815
|
font-size: var(--babylai-text-xs);
|
|
815
816
|
line-height: var(--tw-leading, var(--babylai-text-xs--line-height));
|
|
816
817
|
}
|
|
817
|
-
.babylai\:leading-none {
|
|
818
|
-
--tw-leading: 1;
|
|
819
|
-
line-height: 1;
|
|
820
|
-
}
|
|
821
818
|
.babylai\:leading-snug {
|
|
822
819
|
--tw-leading: var(--babylai-leading-snug);
|
|
823
820
|
line-height: var(--babylai-leading-snug);
|
|
@@ -846,10 +843,6 @@
|
|
|
846
843
|
--tw-font-weight: var(--babylai-font-weight-semibold) !important;
|
|
847
844
|
font-weight: var(--babylai-font-weight-semibold) !important;
|
|
848
845
|
}
|
|
849
|
-
.babylai\:tracking-tight {
|
|
850
|
-
--tw-tracking: var(--babylai-tracking-tight);
|
|
851
|
-
letter-spacing: var(--babylai-tracking-tight);
|
|
852
|
-
}
|
|
853
846
|
.babylai\:wrap-break-word {
|
|
854
847
|
overflow-wrap: break-word;
|
|
855
848
|
}
|
|
@@ -1044,6 +1037,7 @@
|
|
|
1044
1037
|
}
|
|
1045
1038
|
}
|
|
1046
1039
|
}
|
|
1040
|
+
@layer theme, base, components, utilities;
|
|
1047
1041
|
:root {
|
|
1048
1042
|
--babylai-font-sans: "Cairo", sans-serif;
|
|
1049
1043
|
--babylai-black-white-50: #ffffff;
|
|
@@ -1116,49 +1110,28 @@
|
|
|
1116
1110
|
.babylai-theme-root button {
|
|
1117
1111
|
font: inherit;
|
|
1118
1112
|
}
|
|
1119
|
-
.babylai-theme-root input,
|
|
1120
|
-
.babylai-theme-root textarea {
|
|
1113
|
+
.babylai-theme-root input, .babylai-theme-root textarea {
|
|
1121
1114
|
font-family: inherit;
|
|
1122
1115
|
}
|
|
1123
|
-
.babylai-theme-root h1,
|
|
1124
|
-
.babylai-theme-root h2,
|
|
1125
|
-
.babylai-theme-root h3,
|
|
1126
|
-
.babylai-theme-root h4,
|
|
1127
|
-
.babylai-theme-root h5,
|
|
1128
|
-
.babylai-theme-root h6 {
|
|
1116
|
+
.babylai-theme-root h1, .babylai-theme-root h2, .babylai-theme-root h3, .babylai-theme-root h4, .babylai-theme-root h5, .babylai-theme-root h6 {
|
|
1129
1117
|
font-size: inherit;
|
|
1130
1118
|
font-weight: inherit;
|
|
1131
1119
|
}
|
|
1132
|
-
.babylai-theme-root h1,
|
|
1133
|
-
.babylai-theme-root h2,
|
|
1134
|
-
.babylai-theme-root h3,
|
|
1135
|
-
.babylai-theme-root h4,
|
|
1136
|
-
.babylai-theme-root h5,
|
|
1137
|
-
.babylai-theme-root h6,
|
|
1138
|
-
.babylai-theme-root p {
|
|
1120
|
+
.babylai-theme-root h1, .babylai-theme-root h2, .babylai-theme-root h3, .babylai-theme-root h4, .babylai-theme-root h5, .babylai-theme-root h6, .babylai-theme-root p {
|
|
1139
1121
|
margin: 0;
|
|
1140
1122
|
}
|
|
1141
|
-
.babylai-theme-root ul,
|
|
1142
|
-
.babylai-theme-root ol {
|
|
1123
|
+
.babylai-theme-root ul, .babylai-theme-root ol {
|
|
1143
1124
|
list-style: auto;
|
|
1144
1125
|
padding-inline-start: 40px;
|
|
1145
1126
|
margin-block-start: 1rem;
|
|
1146
1127
|
margin-block-end: 1rem;
|
|
1147
1128
|
}
|
|
1148
1129
|
.bg-header {
|
|
1149
|
-
background: linear-gradient(
|
|
1150
|
-
171deg,
|
|
1151
|
-
var(--babylai-primary-color) -131.06%,
|
|
1152
|
-
var(--babylai-black-white-50) 89.82%
|
|
1153
|
-
);
|
|
1130
|
+
background: linear-gradient(171deg, var(--babylai-primary-color) -131.06%, var(--babylai-black-white-50) 89.82%);
|
|
1154
1131
|
}
|
|
1155
1132
|
@supports (color: color-mix(in lab, red, red)) {
|
|
1156
1133
|
.bg-header {
|
|
1157
|
-
background: linear-gradient(
|
|
1158
|
-
171deg,
|
|
1159
|
-
color-mix(in srgb, var(--babylai-primary-color) 25%, transparent) -131.06%,
|
|
1160
|
-
color-mix(in srgb, var(--babylai-black-white-50) 25%, transparent) 89.82%
|
|
1161
|
-
);
|
|
1134
|
+
background: linear-gradient(171deg, color-mix(in srgb, var(--babylai-primary-color) 25%, transparent) -131.06%, color-mix(in srgb, var(--babylai-black-white-50) 25%, transparent) 89.82%);
|
|
1162
1135
|
}
|
|
1163
1136
|
}
|
|
1164
1137
|
@property --tw-translate-x {
|
|
@@ -1246,10 +1219,6 @@
|
|
|
1246
1219
|
syntax: "*";
|
|
1247
1220
|
inherits: false;
|
|
1248
1221
|
}
|
|
1249
|
-
@property --tw-tracking {
|
|
1250
|
-
syntax: "*";
|
|
1251
|
-
inherits: false;
|
|
1252
|
-
}
|
|
1253
1222
|
@property --tw-shadow {
|
|
1254
1223
|
syntax: "*";
|
|
1255
1224
|
inherits: false;
|
|
@@ -1324,9 +1293,7 @@
|
|
|
1324
1293
|
inherits: false;
|
|
1325
1294
|
}
|
|
1326
1295
|
@keyframes typing-dot {
|
|
1327
|
-
0%,
|
|
1328
|
-
60%,
|
|
1329
|
-
100% {
|
|
1296
|
+
0%, 60%, 100% {
|
|
1330
1297
|
opacity: 0.35;
|
|
1331
1298
|
transform: scale(0.85);
|
|
1332
1299
|
}
|
|
@@ -1356,7 +1323,6 @@
|
|
|
1356
1323
|
--tw-gradient-to-position: 100%;
|
|
1357
1324
|
--tw-leading: initial;
|
|
1358
1325
|
--tw-font-weight: initial;
|
|
1359
|
-
--tw-tracking: initial;
|
|
1360
1326
|
--tw-shadow: 0 0 #0000;
|
|
1361
1327
|
--tw-shadow-color: initial;
|
|
1362
1328
|
--tw-shadow-alpha: 100%;
|