beca-ui 2.1.0-beta.92 → 2.1.0-beta.94
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/dist/beca-ui.js +57829 -49738
- package/dist/components/AIChat/AIChat.d.ts +11 -0
- package/dist/components/AIChat/AIChat.types.d.ts +21 -0
- package/dist/components/AIChat/index.d.ts +2 -0
- package/dist/components/BecaChatBox/BecaChatBox.d.ts +24 -0
- package/dist/components/BecaChatBox/Composer.d.ts +20 -0
- package/dist/components/BecaChatBox/MainChat.d.ts +36 -0
- package/dist/components/BecaChatBox/MessageBubble.d.ts +27 -0
- package/dist/components/BecaChatBox/Sidebar.d.ts +11 -0
- package/dist/components/BecaChatBox/index.d.ts +1 -0
- package/dist/components/BecaChatBox/types.d.ts +26 -0
- package/dist/components/BecaChatBox/utils.d.ts +3 -0
- package/dist/components/BodyCard/BodyCard.types.d.ts +5 -0
- package/dist/components/TextEditor/BubbleMenu/TextEditorBubbleMenu.d.ts +3 -1
- package/dist/components/TextEditor/Image/index.d.ts +3 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/data/LocalesTexts/EnglishTexts.d.ts +9 -0
- package/dist/data/LocalesTexts/VietnameseTexts.d.ts +9 -0
- package/dist/hooks/LocaleHook.d.ts +9 -0
- package/dist/main.css +1 -1
- package/dist/theme/styles.d.ts +55 -0
- package/package.json +4 -3
package/dist/theme/styles.d.ts
CHANGED
|
@@ -5,3 +5,58 @@ export declare const BVP_FONT = "\"BeVietnamPro\", sans-serif;";
|
|
|
5
5
|
export declare const mobileWidth = 992;
|
|
6
6
|
export declare const themeConfig: ThemeConfig;
|
|
7
7
|
export declare const officeThemeConfig: ThemeConfig;
|
|
8
|
+
export declare enum AppColors {
|
|
9
|
+
transparent = "transparent",
|
|
10
|
+
primary = "var(--primary-color-5)",
|
|
11
|
+
info = "var(--info-color-5)",
|
|
12
|
+
info1 = "var(--info-color-1)",
|
|
13
|
+
info2 = "var(--info-color-2)",
|
|
14
|
+
info3 = "var(--info-color-3)",
|
|
15
|
+
info4 = "var(--info-color-4)",
|
|
16
|
+
info5 = "var(--info-color-5)",
|
|
17
|
+
info6 = "var(--info-color-6)",
|
|
18
|
+
info7 = "var(--info-color-7)",
|
|
19
|
+
success = "var(--success-color-5)",
|
|
20
|
+
success1 = "var(--success-color-1)",
|
|
21
|
+
success2 = "var(--success-color-2)",
|
|
22
|
+
success3 = "var(--success-color-3)",
|
|
23
|
+
success4 = "var(--success-color-4)",
|
|
24
|
+
success5 = "var(--success-color-5)",
|
|
25
|
+
success6 = "var(--success-color-6)",
|
|
26
|
+
success7 = "var(--success-color-7)",
|
|
27
|
+
warning = "var(--warning-color-5)",
|
|
28
|
+
warning1 = "var(--warning-color-1)",
|
|
29
|
+
warning2 = "var(--warning-color-2)",
|
|
30
|
+
warning3 = "var(--warning-color-3)",
|
|
31
|
+
warning4 = "var(--warning-color-4)",
|
|
32
|
+
warning5 = "var(--warning-color-5)",
|
|
33
|
+
warning6 = "var(--warning-color-6)",
|
|
34
|
+
warning7 = "var(--warning-color-7)",
|
|
35
|
+
danger = "var(--danger-color-5)",
|
|
36
|
+
danger1 = "var(--danger-color-1)",
|
|
37
|
+
danger2 = "var(--danger-color-2)",
|
|
38
|
+
danger3 = "var(--danger-color-3)",
|
|
39
|
+
danger4 = "var(--danger-color-4)",
|
|
40
|
+
danger5 = "var(--danger-color-5)",
|
|
41
|
+
danger6 = "var(--danger-color-6)",
|
|
42
|
+
danger7 = "var(--danger-color-7)",
|
|
43
|
+
default = "var(--primary-text-color)",
|
|
44
|
+
processing = "#ffd100",
|
|
45
|
+
primaryText = "var(--primary-text-color)",
|
|
46
|
+
grayText = "var(--gray-text-color)",
|
|
47
|
+
primaryBackground = "var(--primary-background-color)",
|
|
48
|
+
secondaryBackground = "var(--secondary-background-color)",
|
|
49
|
+
tertiaryBackground = "var(--tertiary-background-color)",
|
|
50
|
+
primaryColor = "var(--primary-color-5)",
|
|
51
|
+
black = "#000000",
|
|
52
|
+
red = "#f42020",
|
|
53
|
+
gray = "#e6e6e6",
|
|
54
|
+
green = "#3f9b53",
|
|
55
|
+
yellow = "#f5b128",
|
|
56
|
+
orange = "#ffa253",
|
|
57
|
+
blue = "#2174cd",
|
|
58
|
+
white = "#ffffff",
|
|
59
|
+
pink = "#fd79a8",
|
|
60
|
+
purple = "#a53cf1",
|
|
61
|
+
cyan = "#22c5d9"
|
|
62
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beca-ui",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.94",
|
|
4
4
|
"description": "Becawork UI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"antd-img-crop": "4.12.2",
|
|
35
35
|
"array-move": "^4.0.0",
|
|
36
36
|
"axios": "1.6.7",
|
|
37
|
-
"beca-icons": "0.0.
|
|
37
|
+
"beca-icons": "0.0.22",
|
|
38
38
|
"classnames": "^2.5.1",
|
|
39
39
|
"crypto-js": "4.2.0",
|
|
40
40
|
"dayjs": "1.11.13",
|
|
@@ -59,10 +59,11 @@
|
|
|
59
59
|
"react-i18next": "13.0.1",
|
|
60
60
|
"react-infinite-scroll-component": "6.1.0",
|
|
61
61
|
"react-intersection-observer": "^9.16.0",
|
|
62
|
+
"react-markdown": "^10.1.0",
|
|
62
63
|
"react-paginate": "8.2.0",
|
|
63
64
|
"react-resizable": "3.0.5",
|
|
64
65
|
"react-sortable-hoc": "^2.0.0",
|
|
65
|
-
"react-virtuoso": "4.
|
|
66
|
+
"react-virtuoso": "^4.18.7"
|
|
66
67
|
},
|
|
67
68
|
"peerDependencies": {
|
|
68
69
|
"react": "18.3.1",
|