beca-ui 2.0.11-beta.2 → 2.0.11-beta.21
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 +5 -1
- package/dist/assets/locales/vi.json.d.ts +5 -1
- package/dist/beca-ui.js +67676 -60499
- package/dist/components/MainLayout/Header/Header.d.ts +4 -4
- package/dist/components/MainLayout/Header/Header.types.d.ts +19 -7
- package/dist/components/MainLayout/Header/Notification.d.ts +7 -10
- 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/components/TextEditor/Image/NodeView.d.ts +1 -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 +9 -5
|
@@ -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.21",
|
|
4
4
|
"description": "Becawork UI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -24,7 +24,8 @@
|
|
|
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",
|
|
@@ -33,8 +34,8 @@
|
|
|
33
34
|
"@tiptap/extension-bubble-menu": "2.0.3",
|
|
34
35
|
"@tiptap/extension-color": "2.0.3",
|
|
35
36
|
"@tiptap/extension-document": "2.0.3",
|
|
36
|
-
"@tiptap/extension-focus": "
|
|
37
|
-
"@tiptap/extension-font-family": "
|
|
37
|
+
"@tiptap/extension-focus": "2.5.9",
|
|
38
|
+
"@tiptap/extension-font-family": "2.6.4",
|
|
38
39
|
"@tiptap/extension-highlight": "2.0.3",
|
|
39
40
|
"@tiptap/extension-image": "2.0.3",
|
|
40
41
|
"@tiptap/extension-link": "2.0.3",
|
|
@@ -121,5 +122,8 @@
|
|
|
121
122
|
"sideEffects": [
|
|
122
123
|
"**/*.css"
|
|
123
124
|
],
|
|
124
|
-
"packageManager": "yarn@3.6.4"
|
|
125
|
+
"packageManager": "yarn@3.6.4",
|
|
126
|
+
"resolutions": {
|
|
127
|
+
"prosemirror-view": "1.32.7"
|
|
128
|
+
}
|
|
125
129
|
}
|