jamespot-front-business 1.1.40 → 1.1.41
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/cjs.js +66 -33
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +63 -34
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +18 -2
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -590,6 +590,19 @@ declare type AppInstallForType = Partial<{
|
|
|
590
590
|
}>;
|
|
591
591
|
declare const AppColumnsDefaultTypes: (AppFormItemTypes | ExtraAppFieldsItemViews)[];
|
|
592
592
|
declare const AppFormPrimaryList: AppFormItemTypes[];
|
|
593
|
+
declare type TaxonomyPropertyValue = Pick<Taxonomy, 'type' | 'id' | 'title'>;
|
|
594
|
+
declare type JType = {
|
|
595
|
+
cssClass: string;
|
|
596
|
+
cssColor: string;
|
|
597
|
+
label: string;
|
|
598
|
+
type: string;
|
|
599
|
+
mainType: string;
|
|
600
|
+
};
|
|
601
|
+
declare type ContentTypePropertyValue = Pick<JType, 'type' | 'label'>;
|
|
602
|
+
declare const AppFormFixedList: ExtraAppFieldsItemViews[];
|
|
603
|
+
declare const AppFormNoAsFieldList: Array<ExtraAppFieldsItemViews | AppFormItemTypes>;
|
|
604
|
+
declare const AppFormFieldOnlyInView: AppFormItemTypes[];
|
|
605
|
+
declare const AppFormNonPrimaryList: (AppFormItemTypes | ExtraAppFieldsItemViews)[];
|
|
593
606
|
|
|
594
607
|
declare type Loading = {
|
|
595
608
|
loading: 'idle' | 'pending';
|
|
@@ -1731,6 +1744,7 @@ declare const studio: {
|
|
|
1731
1744
|
}>;
|
|
1732
1745
|
createNewStudioApp: _reduxjs_toolkit.AsyncThunk<StudioApplication, {
|
|
1733
1746
|
appName: string;
|
|
1747
|
+
callback?: () => void;
|
|
1734
1748
|
}, {
|
|
1735
1749
|
dispatch: any;
|
|
1736
1750
|
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
@@ -1770,7 +1784,9 @@ declare const studio: {
|
|
|
1770
1784
|
fulfilledMeta?: unknown;
|
|
1771
1785
|
rejectedMeta?: unknown;
|
|
1772
1786
|
}>;
|
|
1773
|
-
installStudioApp: _reduxjs_toolkit.AsyncThunk<void,
|
|
1787
|
+
installStudioApp: _reduxjs_toolkit.AsyncThunk<void, {
|
|
1788
|
+
callback?: () => void;
|
|
1789
|
+
}, {
|
|
1774
1790
|
dispatch: any;
|
|
1775
1791
|
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1776
1792
|
extra: {
|
|
@@ -1793,4 +1809,4 @@ declare const studio: {
|
|
|
1793
1809
|
};
|
|
1794
1810
|
};
|
|
1795
1811
|
|
|
1796
|
-
export { APP_STATUS_TYPE, AUDIENCE, AnimationSliceRootState, Animations, AnimationsRootState, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormItemTypes, AppFormPrimaryList, AppFormUniqueList, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Comment, CommentRootState, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, JLandMapFront, JLandRootState, MODE_EDIT, MODE_VIEW, MapCreationFront, MapExtraFieldsWithView, Model, ModelRootState, Network, NetworkRootState, Platform, PlatformRootState, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, animationsReducer, animationsSlice, deleteCurrentAnimation, fetchCurrentAnimation, fetchCurrentAnimationApp, jland, saveCurrentAnimation, slice, studio, toggleAnimationIsActive, updateWidgetContent, viewsList };
|
|
1812
|
+
export { APP_STATUS_TYPE, AUDIENCE, AnimationSliceRootState, Animations, AnimationsRootState, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormUniqueList, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Comment, CommentRootState, ContentTypePropertyValue, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, JLandMapFront, JLandRootState, JType, MODE_EDIT, MODE_VIEW, MapCreationFront, MapExtraFieldsWithView, Model, ModelRootState, Network, NetworkRootState, Platform, PlatformRootState, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, animationsReducer, animationsSlice, deleteCurrentAnimation, fetchCurrentAnimation, fetchCurrentAnimationApp, jland, saveCurrentAnimation, slice, studio, toggleAnimationIsActive, updateWidgetContent, viewsList };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-front-business",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.41",
|
|
4
4
|
"description": "typescript utils",
|
|
5
5
|
"main": "dist/cjs.js",
|
|
6
6
|
"module": "dist/esm.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@reduxjs/toolkit": "1.9.0",
|
|
40
40
|
"@types/uuid": "^9.0.8",
|
|
41
|
-
"jamespot-user-api": "^1.0.
|
|
41
|
+
"jamespot-user-api": "^1.0.148",
|
|
42
42
|
"react-redux": "7.2.9",
|
|
43
43
|
"redux": "4.2.0",
|
|
44
44
|
"uuid": "^9.0.1"
|