beca-ui 2.0.11-beta.1 → 2.0.11-beta.10
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/assets/locales/en.json.d.ts +2 -1
- package/dist/assets/locales/vi.json.d.ts +2 -1
- package/dist/beca-ui.js +83937 -67032
- package/dist/components/MainLayout/Header/Header.d.ts +4 -4
- package/dist/components/MainLayout/Header/Header.types.d.ts +19 -5
- package/dist/components/MainLayout/Header/Notification.d.ts +4 -11
- package/dist/components/MainLayout/MainLayout.d.ts +2 -1
- package/dist/components/MainLayout/MainLayout.types.d.ts +29 -1
- package/dist/components/MainLayout/index.d.ts +2 -2
- package/dist/data/LocalesTexts/EnglishTexts.d.ts +3 -0
- package/dist/data/LocalesTexts/VietnameseTexts.d.ts +3 -0
- package/dist/hooks/LocaleHook.d.ts +3 -0
- package/dist/main.css +1 -1
- package/dist/services/Service.d.ts +1 -0
- package/dist/services/index.d.ts +1 -0
- package/package.json +38 -37
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const convertToTitleCase: (str: string) => string | undefined;
|
package/dist/services/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beca-ui",
|
|
3
|
-
"version": "2.0.11-beta.
|
|
3
|
+
"version": "2.0.11-beta.10",
|
|
4
4
|
"description": "Becawork UI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -24,35 +24,36 @@
|
|
|
24
24
|
"view-version": "npm view beca-ui version",
|
|
25
25
|
"release": "yarn chromatic",
|
|
26
26
|
"publish-main": "sh ./publish.sh",
|
|
27
|
-
"publish-beta": "sh ./publish-beta.sh"
|
|
27
|
+
"publish-beta": "sh ./publish-beta.sh",
|
|
28
|
+
"upgrade-tiptap": "yarn add @tiptap/core @tiptap/extension-blockquote @tiptap/extension-bubble-menu @tiptap/extension-color @tiptap/extension-document @tiptap/extension-focus @tiptap/extension-font-family @tiptap/extension-highlight @tiptap/extension-image @tiptap/extension-link @tiptap/extension-mention @tiptap/extension-paragraph @tiptap/extension-placeholder @tiptap/extension-table @tiptap/extension-table-cell @tiptap/extension-table-header @tiptap/extension-table-row @tiptap/extension-text @tiptap/extension-text-align @tiptap/extension-text-style @tiptap/extension-underline @tiptap/pm @tiptap/react @tiptap/starter-kit @tiptap/suggestion"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
31
|
"@microsoft/signalr": "7.0.3",
|
|
31
|
-
"@tiptap/core": "2.
|
|
32
|
-
"@tiptap/extension-blockquote": "2.0
|
|
33
|
-
"@tiptap/extension-bubble-menu": "2.0
|
|
34
|
-
"@tiptap/extension-color": "2.0
|
|
35
|
-
"@tiptap/extension-document": "2.0
|
|
36
|
-
"@tiptap/extension-focus": "^2.
|
|
37
|
-
"@tiptap/extension-font-family": "^2.
|
|
38
|
-
"@tiptap/extension-highlight": "2.0
|
|
39
|
-
"@tiptap/extension-image": "2.0
|
|
40
|
-
"@tiptap/extension-link": "2.0
|
|
41
|
-
"@tiptap/extension-mention": "2.0
|
|
42
|
-
"@tiptap/extension-paragraph": "2.0
|
|
43
|
-
"@tiptap/extension-placeholder": "2.0
|
|
44
|
-
"@tiptap/extension-table": "2.0
|
|
45
|
-
"@tiptap/extension-table-cell": "2.0
|
|
46
|
-
"@tiptap/extension-table-header": "2.0
|
|
47
|
-
"@tiptap/extension-table-row": "2.0
|
|
48
|
-
"@tiptap/extension-text": "2.0
|
|
49
|
-
"@tiptap/extension-text-align": "2.0
|
|
50
|
-
"@tiptap/extension-text-style": "2.0
|
|
51
|
-
"@tiptap/extension-underline": "2.0
|
|
52
|
-
"@tiptap/pm": "2.0
|
|
53
|
-
"@tiptap/react": "2.
|
|
54
|
-
"@tiptap/starter-kit": "2.0
|
|
55
|
-
"@tiptap/suggestion": "2.0
|
|
32
|
+
"@tiptap/core": "^2.8.0",
|
|
33
|
+
"@tiptap/extension-blockquote": "^2.8.0",
|
|
34
|
+
"@tiptap/extension-bubble-menu": "^2.8.0",
|
|
35
|
+
"@tiptap/extension-color": "^2.8.0",
|
|
36
|
+
"@tiptap/extension-document": "^2.8.0",
|
|
37
|
+
"@tiptap/extension-focus": "^2.8.0",
|
|
38
|
+
"@tiptap/extension-font-family": "^2.8.0",
|
|
39
|
+
"@tiptap/extension-highlight": "^2.8.0",
|
|
40
|
+
"@tiptap/extension-image": "^2.8.0",
|
|
41
|
+
"@tiptap/extension-link": "^2.8.0",
|
|
42
|
+
"@tiptap/extension-mention": "^2.8.0",
|
|
43
|
+
"@tiptap/extension-paragraph": "^2.8.0",
|
|
44
|
+
"@tiptap/extension-placeholder": "^2.8.0",
|
|
45
|
+
"@tiptap/extension-table": "^2.8.0",
|
|
46
|
+
"@tiptap/extension-table-cell": "^2.8.0",
|
|
47
|
+
"@tiptap/extension-table-header": "^2.8.0",
|
|
48
|
+
"@tiptap/extension-table-row": "^2.8.0",
|
|
49
|
+
"@tiptap/extension-text": "^2.8.0",
|
|
50
|
+
"@tiptap/extension-text-align": "^2.8.0",
|
|
51
|
+
"@tiptap/extension-text-style": "^2.8.0",
|
|
52
|
+
"@tiptap/extension-underline": "^2.8.0",
|
|
53
|
+
"@tiptap/pm": "^2.8.0",
|
|
54
|
+
"@tiptap/react": "^2.8.0",
|
|
55
|
+
"@tiptap/starter-kit": "^2.8.0",
|
|
56
|
+
"@tiptap/suggestion": "^2.8.0",
|
|
56
57
|
"antd": "5.19.4",
|
|
57
58
|
"antd-img-crop": "4.12.2",
|
|
58
59
|
"axios": "1.6.7",
|
|
@@ -84,15 +85,15 @@
|
|
|
84
85
|
"devDependencies": {
|
|
85
86
|
"@chromatic-com/storybook": "^1",
|
|
86
87
|
"@faker-js/faker": "8.4.1",
|
|
87
|
-
"@storybook/addon-essentials": "^8.3.
|
|
88
|
-
"@storybook/addon-interactions": "^8.3.
|
|
89
|
-
"@storybook/addon-links": "^8.3.
|
|
90
|
-
"@storybook/addon-mdx-gfm": "^8.3.
|
|
91
|
-
"@storybook/addon-onboarding": "^8.3.
|
|
92
|
-
"@storybook/blocks": "^8.3.
|
|
93
|
-
"@storybook/react": "^8.3.
|
|
94
|
-
"@storybook/react-vite": "^8.3.
|
|
95
|
-
"@storybook/test": "^8.3.
|
|
88
|
+
"@storybook/addon-essentials": "^8.3.4",
|
|
89
|
+
"@storybook/addon-interactions": "^8.3.4",
|
|
90
|
+
"@storybook/addon-links": "^8.3.4",
|
|
91
|
+
"@storybook/addon-mdx-gfm": "^8.3.4",
|
|
92
|
+
"@storybook/addon-onboarding": "^8.3.4",
|
|
93
|
+
"@storybook/blocks": "^8.3.4",
|
|
94
|
+
"@storybook/react": "^8.3.4",
|
|
95
|
+
"@storybook/react-vite": "^8.3.4",
|
|
96
|
+
"@storybook/test": "^8.3.4",
|
|
96
97
|
"@types/dompurify": "3.0.2",
|
|
97
98
|
"@types/node": "20.10.5",
|
|
98
99
|
"@types/react": "18.2.45",
|
|
@@ -111,7 +112,7 @@
|
|
|
111
112
|
"path": "0.12.7",
|
|
112
113
|
"sass": "1.69.5",
|
|
113
114
|
"sass-loader": "14.1.0",
|
|
114
|
-
"storybook": "^8.3.
|
|
115
|
+
"storybook": "^8.3.4",
|
|
115
116
|
"style-loader": "3.3.4",
|
|
116
117
|
"typescript": "5.3.3",
|
|
117
118
|
"vite": "5.0.10",
|