jamespot-react-components 1.0.218 → 1.0.220
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/jamespot-react-components.js +837 -689
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/Common/DashedFocusBorder.d.ts +5 -1
- package/build/src/components/Editors/components/EditorInputToggle.d.ts +9 -0
- package/build/src/components/JRCModalUserList/JRCModalUserList.d.ts +14 -0
- package/build/src/components/JRCTooltip/JRCBaseTooltip.d.ts +2 -1
- package/build/src/components/Widgets/JRCWidgetArticleText/JRCWidgetArticleText.stories.d.ts +17 -3
- package/build/src/components/Widgets/JRCWidgetCheckList/JRCWidgetCheckList.d.ts +9 -3
- package/build/src/components/Widgets/JRCWidgetCheckList/JRCWidgetCheckListEditor.d.ts +3 -2
- package/build/src/components/Widgets/JRCWidgetCheckList/JRCWidgetCheckListEditorItemLink.d.ts +11 -0
- package/build/src/components/Widgets/JRCWidgetCheckList/JRCWidgetCheckListImage.d.ts +9 -5
- package/build/src/components/Widgets/JRCWidgetCheckList/{JRCWidgetCheckListEditorItem.d.ts → JRCWidgetCheckListItem.d.ts} +4 -4
- package/build/src/components/Widgets/JRCWidgetPresence/JRCWidgetPresence.d.ts +4 -3
- package/build/src/components/Widgets/JRCWidgetPresence/JRCWidgetPresenceEditor.d.ts +1 -1
- package/build/src/components/Widgets/JRCWidgetPresence/PresenceAvatar.d.ts +2 -1
- package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurvey.d.ts +20 -0
- package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurvey.stories.d.ts +4 -0
- package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditor.d.ts +19 -0
- package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditor.styles.d.ts +7 -0
- package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditorAddEntry.d.ts +6 -0
- package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditorEntries.d.ts +7 -0
- package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyImage.d.ts +11 -0
- package/build/src/components/Widgets/{JRCWidgetCheckList/JRCWidgetCheckListItemWrapper.d.ts → JRCWidgetQuickSurvey/JRCWidgetQuickSurveyItemWrapper.d.ts} +7 -11
- package/build/src/components/Widgets/components/WidgetImageLine.d.ts +7 -0
- package/build/src/components/Widgets/context/hooks.d.ts +17 -3
- package/build/src/index.d.ts +4 -0
- package/build/src/types.d.ts +50 -51
- package/package.json +2 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Colors } from '../../styles/theme';
|
|
1
2
|
export type DashedFocusBorderProps = {
|
|
2
3
|
offset?: string;
|
|
3
4
|
focusColor?: string;
|
|
@@ -6,5 +7,8 @@ export type DashedFocusBorderProps = {
|
|
|
6
7
|
* The HTML element this styled is applied to should be selectable
|
|
7
8
|
* @props offset offset of the dashed focus border, default to 2px
|
|
8
9
|
*/
|
|
9
|
-
export declare const DashedFocusBorder:
|
|
10
|
+
export declare const DashedFocusBorder: (args?: {
|
|
11
|
+
offset?: string;
|
|
12
|
+
color?: Colors;
|
|
13
|
+
}) => import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<import("styled-components").DefaultTheme>>;
|
|
10
14
|
export declare const DashedFocusBorderAbsolute: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<DashedFocusBorderProps, import("styled-components").DefaultTheme>>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { CheckboxOption } from 'types';
|
|
3
|
+
export declare const EditorInputToggle: ({ label, initialValue, description, options, onChange, }: {
|
|
4
|
+
label?: string | undefined;
|
|
5
|
+
initialValue: boolean;
|
|
6
|
+
description?: string | undefined;
|
|
7
|
+
options: CheckboxOption[];
|
|
8
|
+
onChange: (value: boolean) => void;
|
|
9
|
+
}) => React.JSX.Element;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WidgetQuickSurveyResponseUserList } from 'jamespot-user-api';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export type JRCModalUserListProps = {
|
|
4
|
+
open: boolean;
|
|
5
|
+
usersList?: WidgetQuickSurveyResponseUserList;
|
|
6
|
+
title: string;
|
|
7
|
+
handleLoadUsersList: (page: number) => void;
|
|
8
|
+
setOpen: (open: boolean) => void;
|
|
9
|
+
onClose: () => void;
|
|
10
|
+
};
|
|
11
|
+
export declare const CSSAvatarWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
12
|
+
overlap?: boolean | undefined;
|
|
13
|
+
}, never>;
|
|
14
|
+
export declare const JRCModalUserList: ({ open, usersList, title, handleLoadUsersList, setOpen, onClose, }: JRCModalUserListProps) => React.JSX.Element;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
import { ReactNode } from 'react';
|
|
2
3
|
export declare const tooltipSizes: {
|
|
3
4
|
padding: Record<string, string>;
|
|
4
5
|
};
|
|
5
6
|
export type TooltipSizes = keyof typeof tooltipSizes.padding;
|
|
6
7
|
export type JRCBaseTooltipProps = {
|
|
7
8
|
tooltip: any;
|
|
8
|
-
children:
|
|
9
|
+
children: ReactNode;
|
|
9
10
|
dataEventOff: 'click' | 'mouseleave';
|
|
10
11
|
className?: string;
|
|
11
12
|
color: {
|
|
@@ -56,7 +56,9 @@ export declare const Primary: Story<{
|
|
|
56
56
|
};
|
|
57
57
|
}) | ({
|
|
58
58
|
layers?: string[] | undefined;
|
|
59
|
-
} & import("jamespot-user-api").WidgetPresenceType)
|
|
59
|
+
} & import("jamespot-user-api").WidgetPresenceType) | ({
|
|
60
|
+
layers?: string[] | undefined;
|
|
61
|
+
} & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
|
|
60
62
|
} & (import("jamespot-user-api").WidgetArticleAttachmentContent | import("jamespot-user-api").WidgetArticleGalleryContent | import("jamespot-user-api").WidgetArticleImageContent | WidgetArticleTextContent | import("jamespot-user-api").WidgetArticleTitleContent | import("jamespot-user-api").WidgetArticleSliderContent | {
|
|
61
63
|
url?: string | undefined;
|
|
62
64
|
target?: string | undefined;
|
|
@@ -125,8 +127,20 @@ export declare const Primary: Story<{
|
|
|
125
127
|
} | {
|
|
126
128
|
limit?: number | boolean | undefined;
|
|
127
129
|
limitValue?: number | undefined;
|
|
128
|
-
closing?: boolean | undefined;
|
|
129
|
-
isClosed?: boolean | undefined;
|
|
130
|
+
closing?: boolean | 0 | 1 | undefined;
|
|
131
|
+
isClosed?: boolean | 0 | 1 | undefined;
|
|
132
|
+
} | {
|
|
133
|
+
widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
|
|
134
|
+
arr?: import("jamespot-user-api").WidgetQuickSurveyContentArr[] | undefined;
|
|
135
|
+
css?: Record<string, string> | undefined;
|
|
136
|
+
closing?: boolean | 0 | 1 | undefined;
|
|
137
|
+
isClosed?: boolean | 0 | 1 | undefined;
|
|
138
|
+
open?: boolean | 0 | 1 | undefined;
|
|
139
|
+
multi?: boolean | 0 | 1 | undefined;
|
|
140
|
+
showResult?: boolean | 0 | 1 | undefined;
|
|
141
|
+
isNotDisabled?: boolean | 0 | 1 | undefined;
|
|
142
|
+
seeResponseAfter?: boolean | 0 | 1 | undefined;
|
|
143
|
+
anonymize?: boolean | 0 | 1 | undefined;
|
|
130
144
|
}), args_1: boolean, ...args_2: unknown[]) => void;
|
|
131
145
|
onStateChange: (args_0: {
|
|
132
146
|
busy?: boolean | undefined;
|
|
@@ -1,21 +1,27 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { jFileLittle, jHref } from 'jamespot-user-api';
|
|
3
3
|
export declare const CSSWidgetWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
4
4
|
export declare const CSSList: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
5
|
export declare const CSSRowWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
6
|
export declare const CSSRowImageWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
7
|
export declare const CSSRow: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
8
|
+
export declare const CSSRowExtend: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
8
9
|
export declare const CSSRowBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
9
10
|
export declare const CSSRowContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
10
11
|
export declare const CSSCheckboxWrapper: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
11
|
-
export
|
|
12
|
+
export type JRCWidgetCheckListEntryUser = {
|
|
13
|
+
id: string | number;
|
|
14
|
+
type: string;
|
|
15
|
+
mainType: string;
|
|
16
|
+
};
|
|
12
17
|
export type JRCWidgetCheckListEntry = {
|
|
13
18
|
text: string;
|
|
14
19
|
checked: boolean;
|
|
15
20
|
mimetype?: string;
|
|
16
21
|
links?: jHref[];
|
|
17
22
|
id?: number;
|
|
18
|
-
|
|
23
|
+
file?: jFileLittle;
|
|
24
|
+
user?: JRCWidgetCheckListEntryUser;
|
|
19
25
|
};
|
|
20
26
|
export type JRCWidgetCheckListEntries = JRCWidgetCheckListEntry[];
|
|
21
27
|
export type JRCWidgetCheckListProps = {
|
|
@@ -11,7 +11,7 @@ type JRCWidgetCheckListEditorProps = {
|
|
|
11
11
|
token?: string;
|
|
12
12
|
uniqid: string;
|
|
13
13
|
content: WidgetCheckListContent;
|
|
14
|
-
|
|
14
|
+
inplace?: boolean;
|
|
15
15
|
onChangeContent: (uniqid: string, content: {
|
|
16
16
|
arr: WidgetCheckListContentArr[];
|
|
17
17
|
}) => void;
|
|
@@ -20,6 +20,7 @@ type JRCWidgetCheckListEditorProps = {
|
|
|
20
20
|
title: string;
|
|
21
21
|
}) => void;
|
|
22
22
|
onSave?: (uniqid: string, content: Partial<CombinedWidgetContent>) => void;
|
|
23
|
+
handleChange: (content: Partial<WidgetCheckListContent>) => void;
|
|
23
24
|
};
|
|
24
|
-
export declare const JRCWidgetCheckListEditor: ({ token, uniqid, content,
|
|
25
|
+
export declare const JRCWidgetCheckListEditor: ({ token, uniqid, content, inplace, onChangeContent, onChangeWrapper, handleChange, }: JRCWidgetCheckListEditorProps) => React.JSX.Element;
|
|
25
26
|
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WidgetCheckListContent } from 'jamespot-user-api';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare const CSSRowLinkWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
4
|
+
border?: boolean | undefined;
|
|
5
|
+
}, never>;
|
|
6
|
+
export declare const JRCWidgetCheckListEditorItemLink: ({ content, idx, handleChangeContent, closeHandler, }: {
|
|
7
|
+
content: WidgetCheckListContent;
|
|
8
|
+
idx: number;
|
|
9
|
+
handleChangeContent: (content: WidgetCheckListContent) => void;
|
|
10
|
+
closeHandler: () => void;
|
|
11
|
+
}) => React.JSX.Element;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
export declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
import { jFileLittle } from 'jamespot-user-api';
|
|
3
|
+
export declare const CSSRowImageWrapper: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
|
|
4
|
+
margin: number;
|
|
5
|
+
}, never>;
|
|
6
|
+
export declare const JRCWidgetCheckListImage: ({ file, margin, onClick, handleRemove, }: {
|
|
7
|
+
file: jFileLittle;
|
|
8
|
+
margin?: number | undefined;
|
|
9
|
+
onClick?: (() => void) | undefined;
|
|
10
|
+
handleRemove?: (() => void) | undefined;
|
|
7
11
|
}) => React.JSX.Element;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { WidgetCheckListContentArr, jHref } from 'jamespot-user-api';
|
|
1
|
+
import { WidgetCheckListContentArr, jFileLittle, jHref } from 'jamespot-user-api';
|
|
2
2
|
import React, { FC } from 'react';
|
|
3
3
|
export declare const CSSRowLinkWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
4
4
|
border?: boolean | undefined;
|
|
@@ -10,7 +10,7 @@ type Item = {
|
|
|
10
10
|
mimetype?: string;
|
|
11
11
|
links?: jHref[];
|
|
12
12
|
};
|
|
13
|
-
type
|
|
13
|
+
type JRCWidgetCheckListItemProps = {
|
|
14
14
|
token?: string;
|
|
15
15
|
index: number;
|
|
16
16
|
item: WidgetCheckListContentArr;
|
|
@@ -21,7 +21,7 @@ type JRCWidgetCheckListEditorItemProps = {
|
|
|
21
21
|
handleAddUri: (id: number) => void;
|
|
22
22
|
handleRemoveUri: (idUri: number, idWidget: number) => void;
|
|
23
23
|
handleRemoveImage: (idWidget: number) => void;
|
|
24
|
-
handleAddImageWidget: (index: number,
|
|
24
|
+
handleAddImageWidget: (index: number, file: jFileLittle) => void;
|
|
25
25
|
};
|
|
26
|
-
export declare const
|
|
26
|
+
export declare const JRCWidgetCheckListItem: FC<JRCWidgetCheckListItemProps>;
|
|
27
27
|
export {};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { jUserLittle, WidgetPresenceContent } from 'jamespot-user-api';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
export declare const JRCWidgetPresence: ({ limit, limitValue, userAvailableList, userUnavailableList, userValue, userAvailableTotal, userUnavailableTotal, isClosed, handleClickAvailable, handleClickUnavailable, }: {
|
|
3
|
+
export declare const JRCWidgetPresence: ({ limit, limitValue, userAvailableList, userUnavailableList, userValue, userAvailableTotal, userUnavailableTotal, isClosed, handleClickAvailable, handleClickUnavailable, handleOpenUsersModal, }: {
|
|
4
4
|
limit?: number | boolean | undefined;
|
|
5
5
|
limitValue?: number | undefined;
|
|
6
|
-
closing?: boolean | undefined;
|
|
7
|
-
isClosed?: boolean | undefined;
|
|
6
|
+
closing?: boolean | 0 | 1 | undefined;
|
|
7
|
+
isClosed?: boolean | 0 | 1 | undefined;
|
|
8
8
|
} & {
|
|
9
9
|
userAvailableList: jUserLittle[];
|
|
10
10
|
userUnavailableList: jUserLittle[];
|
|
@@ -13,4 +13,5 @@ export declare const JRCWidgetPresence: ({ limit, limitValue, userAvailableList,
|
|
|
13
13
|
userUnavailableTotal: number;
|
|
14
14
|
handleClickAvailable: () => void;
|
|
15
15
|
handleClickUnavailable: () => void;
|
|
16
|
+
handleOpenUsersModal: (index: number) => void;
|
|
16
17
|
}) => React.JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { WidgetPresenceContent, WidgetEditorActions } from 'jamespot-user-api';
|
|
3
|
-
export declare const JRCWidgetPresenceEditor: ({ closing, limit, limitValue,
|
|
3
|
+
export declare const JRCWidgetPresenceEditor: ({ closing, limit, limitValue, onChange, }: WidgetPresenceContent & WidgetEditorActions<WidgetPresenceContent>) => React.JSX.Element;
|
|
@@ -2,7 +2,8 @@ import React from 'react';
|
|
|
2
2
|
export declare const CSSAvatarWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
3
3
|
overlap?: boolean | undefined;
|
|
4
4
|
}, never>;
|
|
5
|
-
export declare const PresenceAvatar: ({ title, uri }: {
|
|
5
|
+
export declare const PresenceAvatar: ({ title, uri, overlap }: {
|
|
6
6
|
title: string;
|
|
7
7
|
uri: string;
|
|
8
|
+
overlap?: boolean | undefined;
|
|
8
9
|
}) => React.JSX.Element;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { WidgetQuickSurveyContentArr, WidgetQuickSurveyResponses, WidgetLegacyMixedBoolean } from 'jamespot-user-api';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
type JRCWidgetQuickSurveyProps = {
|
|
4
|
+
limit: number;
|
|
5
|
+
values: WidgetQuickSurveyContentArr[];
|
|
6
|
+
userResponses?: WidgetQuickSurveyResponses;
|
|
7
|
+
canCloseSurvey: WidgetLegacyMixedBoolean;
|
|
8
|
+
isClosed?: WidgetLegacyMixedBoolean;
|
|
9
|
+
open?: WidgetLegacyMixedBoolean;
|
|
10
|
+
userHasAlreadyVoted?: WidgetLegacyMixedBoolean;
|
|
11
|
+
anonymize?: WidgetLegacyMixedBoolean;
|
|
12
|
+
seeResponseAfter?: WidgetLegacyMixedBoolean;
|
|
13
|
+
canUpdate?: WidgetLegacyMixedBoolean;
|
|
14
|
+
handleClickFile?: (entry: WidgetQuickSurveyContentArr) => void;
|
|
15
|
+
handleCloseSurvey: () => void;
|
|
16
|
+
handleProgressBarClick: (index: number) => void;
|
|
17
|
+
setOpenUsersModal: (index: number) => void;
|
|
18
|
+
};
|
|
19
|
+
export declare const JRCWidgetQuickSurvey: ({ limit, values, userResponses, isClosed, canCloseSurvey, userHasAlreadyVoted, anonymize, seeResponseAfter, canUpdate, handleCloseSurvey, handleProgressBarClick, handleClickFile, setOpenUsersModal, }: JRCWidgetQuickSurveyProps) => React.JSX.Element | null;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CombinedWidgetContent, WidgetQuickSurveyContent, WidgetQuickSurveyContentArr } from 'jamespot-user-api';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
type JRCWidgetSurveyEditorProps = {
|
|
4
|
+
token?: string;
|
|
5
|
+
uniqid: string;
|
|
6
|
+
content: WidgetQuickSurveyContent;
|
|
7
|
+
inplace?: boolean;
|
|
8
|
+
onChangeContent: (uniqid: string, content: {
|
|
9
|
+
arr: WidgetQuickSurveyContentArr[];
|
|
10
|
+
}) => void;
|
|
11
|
+
onChangeWrapper: ({ uniqid, title }: {
|
|
12
|
+
uniqid: string;
|
|
13
|
+
title: string;
|
|
14
|
+
}) => void;
|
|
15
|
+
onSave?: (uniqid: string, content: Partial<CombinedWidgetContent>) => void;
|
|
16
|
+
handleChange: (content: Partial<WidgetQuickSurveyContent>) => void;
|
|
17
|
+
};
|
|
18
|
+
export declare const JRCWidgetQuickSurveyEditor: ({ token, content, inplace, handleChange }: JRCWidgetSurveyEditorProps) => React.JSX.Element;
|
|
19
|
+
export {};
|
package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditor.styles.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const FormContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const FormItemContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
3
|
+
border?: boolean | undefined;
|
|
4
|
+
}, never>;
|
|
5
|
+
export declare const Column: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const Row: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const ColumnWithDraggable: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditorAddEntry.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { WidgetQuickSurveyContent } from 'jamespot-user-api';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare const JRCWidgetQuickSurveyEditorAddEntry: ({ content, handleChange, }: {
|
|
4
|
+
content: WidgetQuickSurveyContent;
|
|
5
|
+
handleChange: (content: Partial<WidgetQuickSurveyContent>) => void;
|
|
6
|
+
}) => React.JSX.Element;
|
package/build/src/components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditorEntries.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { WidgetQuickSurveyContent } from 'jamespot-user-api';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export declare const JRCWidgetQuickSurveyEditorEntries: ({ content, token, handleChange, }: {
|
|
4
|
+
content: WidgetQuickSurveyContent;
|
|
5
|
+
token: string;
|
|
6
|
+
handleChange: (content: Partial<WidgetQuickSurveyContent>) => void;
|
|
7
|
+
}) => React.JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jFileLittle } from 'jamespot-user-api';
|
|
3
|
+
export declare const CSSRowImageWrapper: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {
|
|
4
|
+
margin: number;
|
|
5
|
+
}, never>;
|
|
6
|
+
export declare const JRCWidgetQuickSurveyImage: ({ file, margin, onClick, handleRemove, }: {
|
|
7
|
+
file: jFileLittle;
|
|
8
|
+
margin?: number | undefined;
|
|
9
|
+
onClick?: (() => void) | undefined;
|
|
10
|
+
handleRemove?: (() => void) | undefined;
|
|
11
|
+
}) => React.JSX.Element;
|
|
@@ -1,27 +1,23 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jFileLittle, WidgetQuickSurveyContentArr } from 'jamespot-user-api';
|
|
2
2
|
import React, { FC } from 'react';
|
|
3
3
|
export declare const CSSRowLinkWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
4
4
|
border?: boolean | undefined;
|
|
5
5
|
}, never>;
|
|
6
6
|
type Item = {
|
|
7
7
|
title: string;
|
|
8
|
-
|
|
9
|
-
uri?: string;
|
|
10
|
-
mimetype?: string;
|
|
11
|
-
links?: jHref[];
|
|
8
|
+
id?: number;
|
|
12
9
|
};
|
|
13
|
-
type
|
|
10
|
+
type JRCWidgetQuickSurveyWrapperItemProps = {
|
|
14
11
|
token?: string;
|
|
15
12
|
index: number;
|
|
16
|
-
item:
|
|
13
|
+
item: WidgetQuickSurveyContentArr;
|
|
14
|
+
itemFile?: jFileLittle;
|
|
17
15
|
length: number;
|
|
18
16
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
19
17
|
setItems: (id: number, item: Item) => void;
|
|
20
18
|
removeItem: (id: number) => void;
|
|
21
|
-
handleAddUri: (id: number) => void;
|
|
22
|
-
handleRemoveUri: (idUri: number, idWidget: number) => void;
|
|
23
19
|
handleRemoveImage: (idWidget: number) => void;
|
|
24
|
-
handleAddImageWidget: (index: number,
|
|
20
|
+
handleAddImageWidget: (index: number, file: jFileLittle) => void;
|
|
25
21
|
};
|
|
26
|
-
export declare const
|
|
22
|
+
export declare const JRCWidgetQuickSurveyWrapperItem: FC<JRCWidgetQuickSurveyWrapperItemProps>;
|
|
27
23
|
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const CSSRowImageWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const WidgetImageLine: ({ uri, mimetype, onClick }: {
|
|
4
|
+
uri: string;
|
|
5
|
+
mimetype: string;
|
|
6
|
+
onClick: () => void;
|
|
7
|
+
}) => React.JSX.Element;
|
|
@@ -50,7 +50,9 @@ export declare const useEditorContext: <T = EditorBaseContext<{
|
|
|
50
50
|
};
|
|
51
51
|
}) | ({
|
|
52
52
|
layers?: string[] | undefined;
|
|
53
|
-
} & import("jamespot-user-api").WidgetPresenceType)
|
|
53
|
+
} & import("jamespot-user-api").WidgetPresenceType) | ({
|
|
54
|
+
layers?: string[] | undefined;
|
|
55
|
+
} & import("jamespot-user-api").WidgetQuickSurveyType)>[] | undefined;
|
|
54
56
|
} & (import("jamespot-user-api").WidgetArticleAttachmentContent | import("jamespot-user-api").WidgetArticleGalleryContent | import("jamespot-user-api").WidgetArticleImageContent | import("jamespot-user-api").WidgetArticleTextContent | import("jamespot-user-api").WidgetArticleTitleContent | {
|
|
55
57
|
url?: string | undefined;
|
|
56
58
|
target?: string | undefined;
|
|
@@ -119,6 +121,18 @@ export declare const useEditorContext: <T = EditorBaseContext<{
|
|
|
119
121
|
} | {
|
|
120
122
|
limit?: number | boolean | undefined;
|
|
121
123
|
limitValue?: number | undefined;
|
|
122
|
-
closing?: boolean | undefined;
|
|
123
|
-
isClosed?: boolean | undefined;
|
|
124
|
+
closing?: boolean | 0 | 1 | undefined;
|
|
125
|
+
isClosed?: boolean | 0 | 1 | undefined;
|
|
126
|
+
} | {
|
|
127
|
+
widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
|
|
128
|
+
arr?: import("jamespot-user-api").WidgetQuickSurveyContentArr[] | undefined;
|
|
129
|
+
css?: Record<string, string> | undefined;
|
|
130
|
+
closing?: boolean | 0 | 1 | undefined;
|
|
131
|
+
isClosed?: boolean | 0 | 1 | undefined;
|
|
132
|
+
open?: boolean | 0 | 1 | undefined;
|
|
133
|
+
multi?: boolean | 0 | 1 | undefined;
|
|
134
|
+
showResult?: boolean | 0 | 1 | undefined;
|
|
135
|
+
isNotDisabled?: boolean | 0 | 1 | undefined;
|
|
136
|
+
seeResponseAfter?: boolean | 0 | 1 | undefined;
|
|
137
|
+
anonymize?: boolean | 0 | 1 | undefined;
|
|
124
138
|
})>>() => T;
|
package/build/src/index.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export { BETA_JRCDragAndDrop } from './components/Beta/BETA_JRCDragAndDrop/BETA_
|
|
|
31
31
|
export { JRCDriveMSGraph } from './components/Drives/JRCDriveMSGraph';
|
|
32
32
|
export { JRCDriveDropbox } from './components/Drives/JRCDriveDropbox';
|
|
33
33
|
export { JRCConditionalWrapper } from './components/Common/JRCConditionalWrapper';
|
|
34
|
+
export { DashedFocusBorder } from './components/Common/DashedFocusBorder';
|
|
34
35
|
export { JRCDraggingPlaceholder } from './components/Common/JRCDraggingPlaceholder';
|
|
35
36
|
export { ClickAwayListener } from './components/Form/Common/ClickAwayListener';
|
|
36
37
|
export { JRCFormAutocompleteAudienceField } from './components/Form/Input/Deprecated/JRCFormAutocomplete/JRCFormAutocompleteAudience';
|
|
@@ -178,6 +179,9 @@ export { JRCWidgetCheckList } from './components/Widgets/JRCWidgetCheckList/JRCW
|
|
|
178
179
|
export { JRCWidgetCheckListEditor } from './components/Widgets/JRCWidgetCheckList/JRCWidgetCheckListEditor';
|
|
179
180
|
export { JRCWidgetPresence } from './components/Widgets/JRCWidgetPresence/JRCWidgetPresence';
|
|
180
181
|
export { JRCWidgetPresenceEditor } from './components/Widgets/JRCWidgetPresence/JRCWidgetPresenceEditor';
|
|
182
|
+
export { JRCWidgetQuickSurvey } from './components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurvey';
|
|
183
|
+
export { JRCWidgetQuickSurveyEditor } from './components/Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditor';
|
|
184
|
+
export { JRCModalUserList } from './components/JRCModalUserList/JRCModalUserList';
|
|
181
185
|
export { LabelDescriptionOption } from './components/Form/Input/JRCSelect/JRCInputSelect.defaults';
|
|
182
186
|
export { StyledInput } from './components/Form/Input/JRCStyledInput';
|
|
183
187
|
export { useDebounce } from './hooks/UseDebounce';
|
package/build/src/types.d.ts
CHANGED
|
@@ -1,89 +1,88 @@
|
|
|
1
|
+
export type { JRCDragAndDropProps } from './components/Beta/BETA_JRCDragAndDrop/BETA_JRCDragAndDrop';
|
|
2
|
+
export type { JRCConditionalWrapperProps } from './components/Common/JRCConditionalWrapper';
|
|
3
|
+
export type { MessageType } from './components/Common/util/getColor.util';
|
|
1
4
|
export * from './components/Form/Common/types';
|
|
5
|
+
export type { JRCValueLabelProps } from './components/Form/Common/types';
|
|
6
|
+
export type { JRCInputFieldProps, NameControl } from './components/Form/Input/Common/JRCFormFieldRenderer.types';
|
|
7
|
+
export type { JRCAutocompleteAudienceProps } from './components/Form/Input/Deprecated/JRCFormAutocomplete/JRCFormAutocompleteAudience';
|
|
8
|
+
export type { JRCAutocompleteTaxonomyProps } from './components/Form/Input/Deprecated/JRCFormAutocomplete/JRCFormAutocompleteTaxonomy';
|
|
9
|
+
export type { JRCFormCheckboxProps } from './components/Form/Input/Deprecated/JRCFormCheckbox/JRCFormCheckbox.types';
|
|
10
|
+
export type { JRCFormDateProps } from './components/Form/Input/Deprecated/JRCFormDateTime/JRCFormDateTime';
|
|
11
|
+
export type { JRCWritableFormInputProps } from './components/Form/Input/Deprecated/JRCFormFieldRender';
|
|
12
|
+
export type { JRCFormInputFileFieldProps } from './components/Form/Input/Deprecated/JRCFormFile/JRCFormFile';
|
|
13
|
+
export type { JRCFormInputImageFieldProps, JRCFormInputImageProps, } from './components/Form/Input/Deprecated/JRCFormImage/JRCFormImage';
|
|
14
|
+
export type { JRCFormRangeProps } from './components/Form/Input/Deprecated/JRCFormRange/JRCFormRange';
|
|
15
|
+
export type { JRCFormReceiveACopyInputProps } from './components/Form/Input/Deprecated/JRCFormReceiveACopy/JRCFormReceiveACopy';
|
|
16
|
+
export type { FormRichTextFieldProps } from './components/Form/Input/Deprecated/JRCFormRichText/JRCFormRichTextField';
|
|
17
|
+
export type { JRCFormSelectProps } from './components/Form/Input/Deprecated/JRCFormSelect/JRCFormSelect';
|
|
18
|
+
export type { JRCFormSendAlertInputProps } from './components/Form/Input/Deprecated/JRCFormSendAlert/JRCFormSendAlert';
|
|
19
|
+
export type { TextareaFormInputProps } from './components/Form/Input/Deprecated/JRCFormTextarea/JRCFormTextarea';
|
|
20
|
+
export type { CheckboxOption, CheckboxValue, InnerProps, InputCheckboxProps, JRCInputCheckboxProps, } from './components/Form/Input/JRCInputCheckbox/JRCInputCheckbox.types';
|
|
21
|
+
export type { JRCInputDateProps } from './components/Form/Input/JRCInputDate/JRCInputDate';
|
|
22
|
+
export type { JRCInputFileProps } from './components/Form/Input/JRCInputFile/JRCInputFile';
|
|
2
23
|
export type { DriveOrFilebank } from './components/Form/Input/JRCInputFileAdvanced/JRCInputFileAdvancedRaw';
|
|
24
|
+
export type { JRCInputImageProps } from './components/Form/Input/JRCInputImage/JRCInputImage';
|
|
25
|
+
export type { JRCInputTextProps } from './components/Form/Input/JRCInputText/JRCInputText';
|
|
26
|
+
export type { JRCInputTextIconButtonProps } from './components/Form/Input/JRCInputText/JRCInputTextIconButton';
|
|
27
|
+
export type { JRCInputTextareaProps } from './components/Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
28
|
+
export type { JRCInputTimeProps } from './components/Form/Input/JRCInputTime/JRCInputTime';
|
|
29
|
+
export type { JRCInputTinyMCEProps } from './components/Form/Input/JRCInputTinyMCE/JRCInputTinyMCE';
|
|
30
|
+
export type { JRCInputTinyMCERawProps, MentionQuery, TinyMention, } from './components/Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
31
|
+
export type { JRCInputUrlProps } from './components/Form/Input/JRCInputUrl/JRCInputUrl';
|
|
32
|
+
export type { JRCAutocompleteCommunityProps } from './components/Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
33
|
+
export type { JRCAutocompleteProps, JRCInputSelectProps } from './components/Form/Input/JRCSelect/JRCInputSelect.types';
|
|
34
|
+
export type { JRCInputSelectHierarchicalTreeProps } from './components/Form/Input/JRCSelect/JRCInputSelectHierarchicalTree';
|
|
35
|
+
export type { JRCInputSelectListProps } from './components/Form/Input/JRCSelect/JRCInputSelectList';
|
|
3
36
|
export type { JRCAlertProps } from './components/JRCAlert/JRCAlert';
|
|
4
|
-
export type { JRCAppColumnProps, JRCAppTabsProps, TabEventProps, JRCTabEntry, JRCMainColumnProps, JRCColumnProps, JRCContainerProps, LayoutMode, } from './components/Templates/template.type';
|
|
5
37
|
export type { JRCAppContainerProps } from './components/JRCAppContainer/JRCAppContainer';
|
|
6
38
|
export type { JRCAppHeaderProps } from './components/JRCAppHeader/JRCAppHeader.types';
|
|
7
39
|
export type { JRCAppLeftColumnProps, SectionEntry } from './components/JRCAppLeftColumn/JRCAppLeftColumn.types';
|
|
8
|
-
export type { JRCAutocompleteAudienceProps } from './components/Form/Input/Deprecated/JRCFormAutocomplete/JRCFormAutocompleteAudience';
|
|
9
|
-
export type { JRCAutocompleteCommunityProps } from './components/Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
10
|
-
export type { JRCAutocompleteProps } from './components/Form/Input/JRCSelect/JRCInputSelect.types';
|
|
11
|
-
export type { JRCInputSelectHierarchicalTreeProps } from './components/Form/Input/JRCSelect/JRCInputSelectHierarchicalTree';
|
|
12
|
-
export type { JRCInputSelectListProps } from './components/Form/Input/JRCSelect/JRCInputSelectList';
|
|
13
|
-
export type { JRCAutocompleteTaxonomyProps } from './components/Form/Input/Deprecated/JRCFormAutocomplete/JRCFormAutocompleteTaxonomy';
|
|
14
40
|
export type { JRCAvatarProps } from './components/JRCAvatar/JRCAvatar';
|
|
15
|
-
export type {
|
|
41
|
+
export type { JRCButtonProps } from './components/JRCButton/JRCButton';
|
|
42
|
+
export type { JRCValidationButtonProps } from './components/JRCButton/JRCValidationButton';
|
|
16
43
|
export type { JRCButtonDownloadProps } from './components/JRCButtonDownload/JRCButtonDownload';
|
|
17
|
-
export type {
|
|
44
|
+
export type { JRCButtonDropdownOptionProps, JRCButtonDropdownProps, } from './components/JRCButtonDropdown/JRCButtonDropdown.types';
|
|
18
45
|
export type { JRCButtonFileProps } from './components/JRCButtonFile/JRCButtonFile';
|
|
19
|
-
export type { JRCButtonProps } from './components/JRCButton/JRCButton';
|
|
20
46
|
export type { JRCCardProps } from './components/JRCCard/JRCCard';
|
|
21
47
|
export type { JRCCardImgProps } from './components/JRCCard/JRCCardImg';
|
|
22
48
|
export type { JRCColumnCenterProps } from './components/JRCColumnCenter/JRCColumnCenter';
|
|
23
49
|
export type { JRCColumnLeftProps } from './components/JRCColumnLeft/JRCColumnLeft';
|
|
24
50
|
export type { JRCColumnRightProps } from './components/JRCColumnRight/JRCColumnRight';
|
|
25
|
-
export type { JRCConditionalWrapperProps } from './components/Common/JRCConditionalWrapper';
|
|
26
51
|
export type { JRCDateProps } from './components/JRCDate/JRCDate';
|
|
27
|
-
export type { JRCDragAndDropProps } from './components/Beta/BETA_JRCDragAndDrop/BETA_JRCDragAndDrop';
|
|
28
52
|
export type { JRCDropDownProps } from './components/JRCDropDown/JRCDropDown';
|
|
29
53
|
export type { JRCEllipsisProps } from './components/JRCEllipsis/JRCEllipsis';
|
|
30
54
|
export type { JRCFileOpenProps } from './components/JRCFileOpen/JRCFileOpen';
|
|
55
|
+
export type { JRCFileViewerOpenWithOptionsType } from './components/JRCFileViewer/types';
|
|
31
56
|
export type { JRCFlexBoxProps } from './components/JRCFlex/JRCFlexBox';
|
|
32
|
-
export type { JRCFormCheckboxProps } from './components/Form/Input/Deprecated/JRCFormCheckbox/JRCFormCheckbox.types';
|
|
33
|
-
export type { JRCFormDateProps } from './components/Form/Input/Deprecated/JRCFormDateTime/JRCFormDateTime';
|
|
34
|
-
export type { JRCFormInputFileFieldProps } from './components/Form/Input/Deprecated/JRCFormFile/JRCFormFile';
|
|
35
|
-
export type { JRCFormInputImageProps, JRCFormInputImageFieldProps, } from './components/Form/Input/Deprecated/JRCFormImage/JRCFormImage';
|
|
36
|
-
export type { JRCFormRangeProps } from './components/Form/Input/Deprecated/JRCFormRange/JRCFormRange';
|
|
37
|
-
export type { JRCFormReceiveACopyInputProps } from './components/Form/Input/Deprecated/JRCFormReceiveACopy/JRCFormReceiveACopy';
|
|
38
|
-
export type { FormRichTextFieldProps } from './components/Form/Input/Deprecated/JRCFormRichText/JRCFormRichTextField';
|
|
39
|
-
export type { JRCFormSelectProps } from './components/Form/Input/Deprecated/JRCFormSelect/JRCFormSelect';
|
|
40
|
-
export type { JRCFormSendAlertInputProps } from './components/Form/Input/Deprecated/JRCFormSendAlert/JRCFormSendAlert';
|
|
41
57
|
export type { JRCGridProps } from './components/JRCGrid/JRCGrid';
|
|
42
|
-
export type {
|
|
58
|
+
export type { JRCLinkToProps, JRCStyledHrefProps } from './components/JRCHref/JRCHref';
|
|
43
59
|
export type { JRCHtmlProps } from './components/JRCHtml/JRCHtml';
|
|
44
|
-
export type { JRCIconButtonProps } from './components/JRCIconButton/JRCIconButton';
|
|
45
60
|
export type { JRCIconProps } from './components/JRCIcon/JRCIcon';
|
|
61
|
+
export type { JRCIconButtonProps } from './components/JRCIconButton/JRCIconButton';
|
|
46
62
|
export type { JRCImgProps } from './components/JRCImg/JRCImg';
|
|
47
|
-
export type { JRCInputCheckboxProps, InputCheckboxProps, CheckboxValue, CheckboxOption, InnerProps, } from './components/Form/Input/JRCInputCheckbox/JRCInputCheckbox.types';
|
|
48
|
-
export type { JRCInputDateProps } from './components/Form/Input/JRCInputDate/JRCInputDate';
|
|
49
|
-
export type { JRCInputFileProps } from './components/Form/Input/JRCInputFile/JRCInputFile';
|
|
50
|
-
export type { JRCInputImageProps } from './components/Form/Input/JRCInputImage/JRCInputImage';
|
|
51
|
-
export type { JRCInputFieldProps, NameControl } from './components/Form/Input/Common/JRCFormFieldRenderer.types';
|
|
52
|
-
export type { JRCInputSelectProps } from './components/Form/Input/JRCSelect/JRCInputSelect.types';
|
|
53
|
-
export type { JRCInputTextareaProps } from './components/Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
54
|
-
export type { JRCInputTextProps } from './components/Form/Input/JRCInputText/JRCInputText';
|
|
55
|
-
export type { JRCInputTextIconButtonProps } from './components/Form/Input/JRCInputText/JRCInputTextIconButton';
|
|
56
|
-
export type { JRCInputTimeProps } from './components/Form/Input/JRCInputTime/JRCInputTime';
|
|
57
|
-
export type { JRCInputTinyMCERawProps } from './components/Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
58
|
-
export type { JRCInputTinyMCEProps } from './components/Form/Input/JRCInputTinyMCE/JRCInputTinyMCE';
|
|
59
|
-
export type { JRCInputUrlProps } from './components/Form/Input/JRCInputUrl/JRCInputUrl';
|
|
60
|
-
export type { JRCFileViewerOpenWithOptionsType } from './components/JRCFileViewer/types';
|
|
61
|
-
export type { JRCLinkToProps, JRCStyledHrefProps } from './components/JRCHref/JRCHref';
|
|
62
63
|
export type { JRCListProps, PaginationPagination } from './components/JRCList/JRCList';
|
|
63
64
|
export type { JRCLoaderProps } from './components/JRCLoader/JRCLoader';
|
|
64
|
-
export type {
|
|
65
|
-
export type {
|
|
66
|
-
export type { JRCModalContentProps, JRCModalButtonType } from './components/JRCModal/JRCModalContent';
|
|
65
|
+
export type { JRCMenuItemProps, JRCMenuProps } from './components/JRCMenu/JRCMenu';
|
|
66
|
+
export type { JRCModalButtonType, JRCModalContentProps } from './components/JRCModal/JRCModalContent';
|
|
67
67
|
export type { JRCModalContentFormProps, JRCModalFormButtonType } from './components/JRCModal/JRCModalContentForm';
|
|
68
|
-
export type { JRCModalImgButtonType, JRCModalImgProps } from './components/JRCModalImg/JRCModalImg';
|
|
69
68
|
export type { JRCModalLayoutProps } from './components/JRCModal/JRCModalLayout';
|
|
69
|
+
export type { JRCModalFormProps, JRCModalProps } from './components/JRCModal/templates/JRCModal.types';
|
|
70
|
+
export type { JRCModalImgButtonType, JRCModalImgProps } from './components/JRCModalImg/JRCModalImg';
|
|
71
|
+
export type { JRCModalUserListProps } from './components/JRCModalUserList/JRCModalUserList';
|
|
70
72
|
export type { JRCPaginationProps } from './components/JRCPagination/JRCPagination';
|
|
71
73
|
export type { JRCSkeletonLineProps } from './components/JRCSkeleton/JRCSkeletonLine';
|
|
72
74
|
export type { JRCSkeletonSquareProps } from './components/JRCSkeleton/JRCSkeletonSquare';
|
|
73
|
-
export type {
|
|
75
|
+
export type { JRCTabPanelProps, JRCTabsProps } from './components/JRCTabs/JRCTabs';
|
|
74
76
|
export type { JRCTagProps } from './components/JRCTag/JRCTag';
|
|
75
|
-
export type { JRCTemplateBaseProps } from './components/Templates/JRCBase.template';
|
|
76
|
-
export type { JRCTemplateTwoColumnsProps } from './components/Templates/JRCTwoColumns.template';
|
|
77
77
|
export type { JRCThemeProviderProps } from './components/JRCThemeProvider/JRCThemeProvider';
|
|
78
|
+
export type { JRCBaseTooltipProps } from './components/JRCTooltip/JRCBaseTooltip';
|
|
78
79
|
export type { JRCTooltipProps } from './components/JRCTooltip/JRCTooltip';
|
|
80
|
+
export type { JRCH1Props, JRCH2Props, JRCH3Props, JRCH4Props, JRCH5Props, JRCTextProps, } from './components/JRCTypo/JRCTypo';
|
|
79
81
|
export type { JRCTypographyProps } from './components/JRCTypography/JRCTypography.d';
|
|
80
|
-
export type {
|
|
81
|
-
export type {
|
|
82
|
+
export type { JRCTemplateBaseProps } from './components/Templates/JRCBase.template';
|
|
83
|
+
export type { JRCTemplateTwoColumnsProps } from './components/Templates/JRCTwoColumns.template';
|
|
84
|
+
export type { JRCAppColumnProps, JRCAppTabsProps, JRCColumnProps, JRCContainerProps, JRCMainColumnProps, JRCTabEntry, LayoutMode, TabEventProps, } from './components/Templates/template.type';
|
|
82
85
|
export type { JRCWidgetCheckListEntries } from './components/Widgets/JRCWidgetCheckList/JRCWidgetCheckList';
|
|
83
|
-
export type { JRCWritableFormInputProps } from './components/Form/Input/Deprecated/JRCFormFieldRender';
|
|
84
|
-
export type { MentionQuery, TinyMention } from './components/Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
85
|
-
export type { MessageType } from './components/Common/util/getColor.util';
|
|
86
|
-
export type { TextareaFormInputProps } from './components/Form/Input/Deprecated/JRCFormTextarea/JRCFormTextarea';
|
|
87
86
|
export type { ThemeConfigOptions, ThemeType } from './styles/theme';
|
|
88
87
|
/****
|
|
89
88
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.220",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/jamespot-react-components.js",
|
|
6
6
|
"types": "./build/src/index.d.ts",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"chroma-js": "^2.1.1",
|
|
81
81
|
"classnames": "^2.3.1",
|
|
82
82
|
"dompurify": "^3.0.5",
|
|
83
|
-
"jamespot-user-api": "^1.0.
|
|
83
|
+
"jamespot-user-api": "^1.0.201",
|
|
84
84
|
"moment": "2.29.4",
|
|
85
85
|
"react": "^17.x",
|
|
86
86
|
"react-beautiful-dnd": "^13.1.1",
|