jamespot-react-core 1.2.50 → 1.2.52
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/build/{850.6fab37b5f8dec1f9aa5d.chunk.js → 210.637038cd4dfe35e1baad.chunk.js} +2 -2
- package/build/210.637038cd4dfe35e1baad.chunk.js.map +1 -0
- package/build/{400.9e0b5339a5df358173f9.chunk.js → 368.559abd1344669a973077.chunk.js} +11 -11
- package/build/368.559abd1344669a973077.chunk.js.map +1 -0
- package/build/app.bundle.js +759 -753
- package/build/app.bundle.js.map +1 -1
- package/build/src/components/calendar/CalendarToolbar.d.ts +5 -4
- package/build/src/redux/store.d.ts +5 -1
- package/package.json +14 -14
- package/build/400.9e0b5339a5df358173f9.chunk.js.map +0 -1
- package/build/850.6fab37b5f8dec1f9aa5d.chunk.js.map +0 -1
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { CalendarApi, CalendarView } from 'jamespot-react-components';
|
|
2
2
|
type Filter = ('socialEvent' | 'meeting' | 'animatedMeeting' | 'boardCard')[];
|
|
3
|
+
type OptionView = {
|
|
4
|
+
label: string;
|
|
5
|
+
value: CalendarView;
|
|
6
|
+
};
|
|
3
7
|
export declare const CalendarToolbar: ({ label, view, viewsOptions, calendarApi, isLoading, navigateWithQuery, setView, setCreationType, setExportModalOpen, }: {
|
|
4
8
|
label?: string;
|
|
5
|
-
view:
|
|
6
|
-
label: string;
|
|
7
|
-
value: CalendarView;
|
|
8
|
-
};
|
|
9
|
+
view: OptionView;
|
|
9
10
|
viewsOptions: {
|
|
10
11
|
label: string;
|
|
11
12
|
value: CalendarView;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Reducer } from '@reduxjs/toolkit';
|
|
2
|
-
import { AdminLogs, Animations, Application, AssetReservation, Bookmark, Calendar, ContentReport, ExtraBot, Faq, Hook, jland, MagicPad, MediaLibrary, Model, Share, studio, TeamWork, TVDisplay, UserCurrent, WedocApp, Widget, WidgetEditor } from 'jamespot-front-business';
|
|
2
|
+
import { AdminLogs, Animations, Application, AssetReservation, Bookmark, Calendar, ContentReport, ExtraBot, Faq, FileIntegrity, Hook, jland, MagicPad, MediaLibrary, Model, Share, studio, TeamWork, TVDisplay, UserCurrent, WedocApp, Widget, WidgetEditor } from 'jamespot-front-business';
|
|
3
3
|
import { ApplicationType, HookListType, jUserList, Model as ModelType, NetworkType, TinyMCECommonOptions, TinyMCEExtendedOptions } from 'jamespot-user-api';
|
|
4
4
|
import { TypedUseSelectorHook } from 'react-redux';
|
|
5
5
|
import { ArticleActionsType, ArticleSelectorType } from './slice/Article.slice';
|
|
@@ -46,6 +46,7 @@ export type AsyncReducers = {
|
|
|
46
46
|
[jland.slice.name]: typeof jland.slice.reducer;
|
|
47
47
|
[studio.slice.name]: typeof studio.slice.reducer;
|
|
48
48
|
[WidgetEditor.slice.name]: typeof WidgetEditor.slice.reducer;
|
|
49
|
+
[FileIntegrity.slice.name]: typeof FileIntegrity.slice.reducer;
|
|
49
50
|
} & {
|
|
50
51
|
extensions: {
|
|
51
52
|
[key: string]: Reducer;
|
|
@@ -520,6 +521,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
|
|
|
520
521
|
onSave?: <T = import("jamespot-user-api").CombinedWidgetContent>(content: Partial<T>) => void;
|
|
521
522
|
}[];
|
|
522
523
|
};
|
|
524
|
+
fileIntegrity: import("jamespot-front-business").FileIntegrityState;
|
|
523
525
|
extensions: import("redux").CombinedState<{
|
|
524
526
|
[x: string]: /*elided*/ any;
|
|
525
527
|
}>;
|
|
@@ -974,6 +976,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
|
|
|
974
976
|
onSave?: <T = import("jamespot-user-api").CombinedWidgetContent>(content: Partial<T>) => void;
|
|
975
977
|
}[];
|
|
976
978
|
};
|
|
979
|
+
fileIntegrity: import("jamespot-front-business").FileIntegrityState;
|
|
977
980
|
extensions: import("redux").CombinedState<{
|
|
978
981
|
[x: string]: /*elided*/ any;
|
|
979
982
|
}>;
|
|
@@ -1433,6 +1436,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
|
|
|
1433
1436
|
onSave?: <T = import("jamespot-user-api").CombinedWidgetContent>(content: Partial<T>) => void;
|
|
1434
1437
|
}[];
|
|
1435
1438
|
};
|
|
1439
|
+
fileIntegrity: import("jamespot-front-business").FileIntegrityState;
|
|
1436
1440
|
extensions: import("redux").CombinedState<{
|
|
1437
1441
|
[x: string]: /*elided*/ any;
|
|
1438
1442
|
}>;
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.52",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
7
7
|
"devDependencies": {
|
|
8
8
|
"@reduxjs/toolkit": "^1.9.7",
|
|
9
|
-
"@testing-library/jest-dom": "^6.
|
|
9
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
10
10
|
"@testing-library/react": "^14.3.1",
|
|
11
11
|
"@types/jest": "^30.0.0",
|
|
12
|
-
"@types/node": "^20.19.
|
|
13
|
-
"@types/react": "^18.3.
|
|
12
|
+
"@types/node": "^20.19.19",
|
|
13
|
+
"@types/react": "^18.3.25",
|
|
14
14
|
"@types/react-dom": "^18.3.7",
|
|
15
15
|
"@types/react-redux": "^7.1.34",
|
|
16
16
|
"@types/react-router-dom": "^5.3.3",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"fork-ts-checker-webpack-plugin": "^9.1.0",
|
|
33
33
|
"history": "^5.3.0",
|
|
34
34
|
"husky": "^7.0.4",
|
|
35
|
-
"jamespot-front-business": "^1.2.
|
|
36
|
-
"jamespot-react-components": "^1.2.
|
|
37
|
-
"jamespot-user-api": "^1.2.
|
|
38
|
-
"jest": "^30.
|
|
39
|
-
"jest-environment-jsdom": "^30.
|
|
35
|
+
"jamespot-front-business": "^1.2.52",
|
|
36
|
+
"jamespot-react-components": "^1.2.52",
|
|
37
|
+
"jamespot-user-api": "^1.2.52",
|
|
38
|
+
"jest": "^30.2.0",
|
|
39
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
40
40
|
"lint-staged": "^12.5.0",
|
|
41
|
-
"marked": "^16.
|
|
41
|
+
"marked": "^16.3.0",
|
|
42
42
|
"mini-css-extract-plugin": "^0.10.1",
|
|
43
43
|
"prettier": "^3.6.2",
|
|
44
44
|
"react": "^18.3.1",
|
|
45
45
|
"react-dom": "^18.3.1",
|
|
46
|
-
"react-hook-form": "^7.
|
|
46
|
+
"react-hook-form": "^7.64.0",
|
|
47
47
|
"react-intl": "7.1.11",
|
|
48
48
|
"react-redux": "^8.1.3",
|
|
49
49
|
"react-router-dom": "^6.30.1",
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"socket.io-client": "^4.8.1",
|
|
56
56
|
"source-map-loader": "^1.1.3",
|
|
57
57
|
"styled-components": "^5.3.11",
|
|
58
|
-
"ts-jest": "^29.4.
|
|
58
|
+
"ts-jest": "^29.4.4",
|
|
59
59
|
"ts-loader": "^9.5.4",
|
|
60
60
|
"ts-node": "^10.9.2",
|
|
61
|
-
"typescript": "^5.9.
|
|
61
|
+
"typescript": "^5.9.3",
|
|
62
62
|
"uuid": "^10.0.0",
|
|
63
|
-
"webpack": "^5.
|
|
63
|
+
"webpack": "^5.102.0",
|
|
64
64
|
"webpack-cli": "^4.10.0",
|
|
65
65
|
"webpack-dev-server": "^4.15.2",
|
|
66
66
|
"worker-loader": "^3.0.8"
|