jamespot-react-core 1.3.45 → 1.3.47
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/app.bundle.js +1270 -1165
- package/build/app.bundle.js.map +1 -1
- package/build/src/components/calendar/meeting/CreateMeetingModal.d.ts +5 -1
- package/build/src/components/calendar/socialEvent/CreateSocialEventOrRecurringEventModal.d.ts +3 -1
- package/build/src/components/editors/style.d.ts +3 -0
- package/build/src/components/widgets/namespace.d.ts +1 -1
- package/build/src/registry/ext-component-list.d.ts +9 -0
- package/package.json +4 -4
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { CreateCalendarEventModalProps } from '../CreateCalendarEventModal';
|
|
2
|
+
import { MeetingFormValues } from './MeetingForm';
|
|
2
3
|
export type CreateMeetingModalProps = Pick<CreateCalendarEventModalProps, 'open' | 'closeHandler'> & {
|
|
3
4
|
onCreate: () => void;
|
|
5
|
+
defaultValues?: Partial<MeetingFormValues>;
|
|
6
|
+
offsetTop?: number | string;
|
|
7
|
+
fixed?: boolean;
|
|
4
8
|
};
|
|
5
|
-
export declare const CreateMeetingModal: ({ open, closeHandler, onCreate }: CreateMeetingModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const CreateMeetingModal: ({ open, offsetTop, fixed, defaultValues, closeHandler, onCreate, }: CreateMeetingModalProps) => import("react/jsx-runtime").JSX.Element;
|
package/build/src/components/calendar/socialEvent/CreateSocialEventOrRecurringEventModal.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CreateCalendarEventModalProps } from '../CreateCalendarEventModal';
|
|
2
|
+
import { SocialEventOrRecurringEventFormValues } from './types';
|
|
2
3
|
export type CreateSocialEventOrRecurringEventModalProps = Pick<CreateCalendarEventModalProps, 'open' | 'closeHandler'> & {
|
|
3
4
|
onCreate: () => void;
|
|
4
5
|
defaultDateSelection?: {
|
|
@@ -7,7 +8,8 @@ export type CreateSocialEventOrRecurringEventModalProps = Pick<CreateCalendarEve
|
|
|
7
8
|
allDay: boolean;
|
|
8
9
|
} | null;
|
|
9
10
|
offsetTop?: number | string;
|
|
11
|
+
defaultValues?: Partial<SocialEventOrRecurringEventFormValues> | (() => Promise<Partial<SocialEventOrRecurringEventFormValues>>);
|
|
10
12
|
fixed?: boolean;
|
|
11
13
|
idSpot?: number;
|
|
12
14
|
};
|
|
13
|
-
export declare const CreateSocialEventOrRecurringEventModal: ({ open, closeHandler, onCreate, defaultDateSelection, offsetTop, fixed, idSpot, }: CreateSocialEventOrRecurringEventModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export declare const CreateSocialEventOrRecurringEventModal: ({ open, closeHandler, onCreate, defaultDateSelection, defaultValues, offsetTop, fixed, idSpot, }: CreateSocialEventOrRecurringEventModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -17,7 +17,10 @@ export declare const CSSEditorIsLocked: import("styled-components/dist/types").I
|
|
|
17
17
|
export declare const CSSEditorMenu: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
18
18
|
export declare const CSSEditorMenuButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
|
|
19
19
|
$isActive?: boolean;
|
|
20
|
+
$disabled?: boolean;
|
|
20
21
|
}>> & string;
|
|
22
|
+
export declare const CSSEditorMenuButtonSeparator: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
23
|
+
export declare const CSSEditorMenuFlex: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
21
24
|
export declare const CSSInputWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
22
25
|
export declare const CSSEditorWidget: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
23
26
|
export declare const CSSEditorWidgetLabel: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { WidgetDefinitionProps } from 'jamespot-user-api';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function useBuilderWidgets(namespace: string): WidgetDefinitionProps[];
|
|
@@ -8,6 +8,7 @@ declare const mapping: {
|
|
|
8
8
|
ArticleCard: "ArticleCard";
|
|
9
9
|
Attachments: "JRCAttachments";
|
|
10
10
|
Audience: "JRCAudience";
|
|
11
|
+
Avatars: "JRCAvatars";
|
|
11
12
|
BaseTooltip: "JRCBaseTooltip";
|
|
12
13
|
BasicAutoMarginContainer: "JRCBasicAutoMarginContainer";
|
|
13
14
|
BETA_DragAndDrop: "BETA_JRCDragAndDrop";
|
|
@@ -28,12 +29,15 @@ declare const mapping: {
|
|
|
28
29
|
Container: "JRCContainer";
|
|
29
30
|
CropImage: "JRCCropImage";
|
|
30
31
|
Date: "JRCDate";
|
|
32
|
+
DateObject: "JRCDateObject";
|
|
31
33
|
Deprecated_ClickAwayListener: "Deprecated_ClickAwayListener";
|
|
32
34
|
Deprecated_Ellipsis: "Deprecated_JRCEllipsis";
|
|
33
35
|
DisplayCard: "JRCDisplayCard";
|
|
36
|
+
DndOneLevel: "JRCDndOneLevel";
|
|
34
37
|
DndOneLevelWithStack: "JRCDndOneLevelWithStack";
|
|
35
38
|
DndProvider: "DndProvider";
|
|
36
39
|
DndTwoLevelWithStack: "JRCDndTwoLevelWithStack";
|
|
40
|
+
Dot: "JRCDot";
|
|
37
41
|
DoubleClick: "BETA_JRCDoubleClick";
|
|
38
42
|
Draggable: "Draggable";
|
|
39
43
|
DraggingPlaceholder: "JRCDraggingPlaceholder";
|
|
@@ -107,6 +111,7 @@ declare const mapping: {
|
|
|
107
111
|
MainColumn: "JRCMainColumn";
|
|
108
112
|
Menu: "JRCMenu";
|
|
109
113
|
Message: "JRCMessage";
|
|
114
|
+
Metas: "JRCMetas";
|
|
110
115
|
Modal: "JRCModal";
|
|
111
116
|
ModalContent: "JRCModalContent";
|
|
112
117
|
ModalContentForm: "JRCModalContentForm";
|
|
@@ -125,6 +130,7 @@ declare const mapping: {
|
|
|
125
130
|
SkeletonList: "JRCSkeletonList";
|
|
126
131
|
SkeletonSquare: "JRCSkeletonSquare";
|
|
127
132
|
SkipToContent: "SkipToContent";
|
|
133
|
+
SocialActions: "JRCSocialActions";
|
|
128
134
|
Stepper: "JRCStepper";
|
|
129
135
|
StepperPage: "JRCStepperPage";
|
|
130
136
|
StyledHref: "JRCStyledHref";
|
|
@@ -139,7 +145,9 @@ declare const mapping: {
|
|
|
139
145
|
TinyMCEVideoUploadModal: "JRCTinyMCEVideoUploadModal";
|
|
140
146
|
Tooltip: "JRCTooltip";
|
|
141
147
|
Typography: "JRCTypography";
|
|
148
|
+
UserHighlightFields: "JRCUserHighlightFields";
|
|
142
149
|
UserPopup: "JRCUserPopup";
|
|
150
|
+
UserStatusIcon: "JRCUserStatusIcon";
|
|
143
151
|
ValidationButton: "JRCValidationButton";
|
|
144
152
|
WidgetArticleAttachmentEditor: "JRCWidgetArticleAttachmentEditor";
|
|
145
153
|
WidgetArticleGallery: "JRCWidgetArticleGallery";
|
|
@@ -178,6 +186,7 @@ declare const mapping: {
|
|
|
178
186
|
WidgetQuickSurvey: "JRCWidgetQuickSurvey";
|
|
179
187
|
WidgetQuickSurveyEditor: "JRCWidgetQuickSurveyEditor";
|
|
180
188
|
WidgetSlider: "JRCWidgetSlider";
|
|
189
|
+
WidgetSurveyDate: "JRCWidgetSurveyDate";
|
|
181
190
|
WidgetTable: "JRCWidgetTable";
|
|
182
191
|
WidgetTableEditor: "JRCWidgetTableEditor";
|
|
183
192
|
WidgetUserProfile: "JRCWidgetUserProfile";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.47",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"fork-ts-checker-webpack-plugin": "^9.1.0",
|
|
39
39
|
"history": "^5.3.0",
|
|
40
40
|
"husky": "^9.1.7",
|
|
41
|
-
"jamespot-front-business": "^1.3.
|
|
42
|
-
"jamespot-react-components": "^1.3.
|
|
43
|
-
"jamespot-user-api": "^1.3.
|
|
41
|
+
"jamespot-front-business": "^1.3.47",
|
|
42
|
+
"jamespot-react-components": "^1.3.47",
|
|
43
|
+
"jamespot-user-api": "^1.3.47",
|
|
44
44
|
"jest": "^30.2.0",
|
|
45
45
|
"jest-environment-jsdom": "^30.2.0",
|
|
46
46
|
"knip": "^5.82.1",
|