jamespot-react-components 1.0.185 → 1.0.187
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 +3200 -3094
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/Form/Input/JRCInputText/JRCInputText.style.d.ts +1 -1
- package/build/src/components/JRCAppLeftColumn/JRCAppLeftColumn.styles.d.ts +1 -1
- package/build/src/components/JRCCommentsBloc/JRCComment.d.ts +10 -16
- package/build/src/components/JRCCommentsBloc/JRCCommentsBloc.d.ts +13 -12
- package/build/src/components/JRCFlex/JRCFlexBox.d.ts +1 -1
- package/build/src/components/JRCHtml/JRCHtml.d.ts +1 -1
- package/build/src/components/JRCTypography/JRCTypography.styles.d.ts +1 -1
- package/build/src/components/JRCUserPopup/JRCUserPopup.d.ts +3 -5
- package/build/src/components/Widgets/JRCWidgetCheckList/JRCWidgetCheckList.d.ts +33 -0
- package/build/src/components/Widgets/JRCWidgetCheckList/JRCWidgetCheckList.stories.d.ts +4 -0
- package/build/src/components/Widgets/JRCWidgetCheckList/JRCWidgetCheckListEditor.d.ts +30 -0
- package/build/src/index.d.ts +77 -76
- package/package.json +2 -2
|
@@ -8,7 +8,7 @@ export declare const IconAfter: import("styled-components").StyledComponent<{
|
|
|
8
8
|
name?: string | undefined;
|
|
9
9
|
value?: string | undefined;
|
|
10
10
|
disabled?: boolean | undefined;
|
|
11
|
-
type?: "button" | "
|
|
11
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
12
12
|
bgBaseGrey?: 0 | 1 | 2 | undefined;
|
|
13
13
|
color?: import("../../../../styles/theme").Colors | import("../../../../styles/theme").Shades | "inherit" | undefined;
|
|
14
14
|
tooltip?: Omit<import("../../../..").JRCTooltipProps, "children"> | undefined;
|
|
@@ -28,7 +28,7 @@ export declare const JRCIconButtonAppLeftColumn: import("styled-components").Sty
|
|
|
28
28
|
name?: string | undefined;
|
|
29
29
|
value?: string | undefined;
|
|
30
30
|
disabled?: boolean | undefined;
|
|
31
|
-
type?: "button" | "
|
|
31
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
32
32
|
bgBaseGrey?: 0 | 1 | 2 | undefined;
|
|
33
33
|
color?: import("../../styles/theme").Colors | import("../../styles/theme").Shades | "inherit" | undefined;
|
|
34
34
|
tooltip?: Omit<import("../..").JRCTooltipProps, "children"> | undefined;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import jamespot, { AddRemoveActionParams, CombinedWidgetType, Model, UpdateCommentParams, WidgetDisplayMode, WidgetWrapperProps, jUserView } from 'jamespot-user-api';
|
|
2
2
|
import { jCommentList } from 'jamespot-user-api/lib/src/types/comment';
|
|
3
|
-
import
|
|
3
|
+
import React from 'react';
|
|
4
4
|
import { JRCInputTinyMCERawProps } from 'types';
|
|
5
5
|
export type JRCCommentProps = {
|
|
6
6
|
isFocused: boolean;
|
|
@@ -9,27 +9,21 @@ export type JRCCommentProps = {
|
|
|
9
9
|
tinyMCEConfig: Pick<JRCInputTinyMCERawProps, 'commonOptions' | 'mentionsQueries' | 'tinymceScriptSrc'>;
|
|
10
10
|
onCommentUpdate: (args: UpdateCommentParams) => Promise<void>;
|
|
11
11
|
onCommentDelete: (idComment: number) => Promise<void>;
|
|
12
|
-
fetchUser
|
|
13
|
-
fetchUserFields
|
|
14
|
-
|
|
15
|
-
value: string | object;
|
|
16
|
-
}[]>;
|
|
17
|
-
fetchSocialActionUserList?: () => Promise<jUserList[]>;
|
|
12
|
+
fetchUser: (id: string) => ReturnType<typeof jamespot.user.get<jUserView>>;
|
|
13
|
+
fetchUserFields: (id: number, type: 'popover') => ReturnType<typeof jamespot.user.getFields>;
|
|
14
|
+
fetchSocialActionUserList: ({ targetId, targetType, type, }: AddRemoveActionParams) => ReturnType<typeof jamespot.socialAction.getUsers<jUserView>>;
|
|
18
15
|
deleteFile: (id: number) => Promise<void>;
|
|
19
|
-
|
|
20
|
-
removeAction?: () => Promise<void>;
|
|
16
|
+
removeAction: ({ targetId, targetType, type, }: AddRemoveActionParams) => ReturnType<typeof jamespot.socialAction.remove>;
|
|
21
17
|
onError?: (message?: string) => void;
|
|
22
18
|
highlightFields?: string[];
|
|
23
19
|
userAccountStatus?: 0 | 1;
|
|
24
20
|
userModel?: Model;
|
|
25
21
|
isWedocActive: boolean;
|
|
22
|
+
isWidgetActive: boolean;
|
|
26
23
|
getAccessHash?: (fileId: number) => Promise<string>;
|
|
27
24
|
onGetHashError: (message?: string) => void;
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
socialActionAdd: typeof jamespot.socialAction.add;
|
|
31
|
-
socialActionRemove: typeof jamespot.socialAction.remove;
|
|
32
|
-
};
|
|
25
|
+
socialActionAdd: ({ targetId, targetType, type, }: AddRemoveActionParams) => ReturnType<typeof jamespot.socialAction.add>;
|
|
26
|
+
existingWidgetsWrapperComponent: (content: WidgetWrapperProps<CombinedWidgetType>[], mode: WidgetDisplayMode, inplace: boolean, idComment: number, editRight?: boolean, deleteRight?: boolean) => React.ReactNode;
|
|
33
27
|
};
|
|
34
28
|
export declare const DropdownButton: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
35
|
-
export declare const JRCComment: ({ isFocused, comment, token, tinyMCEConfig, onCommentUpdate, onCommentDelete, fetchUser, fetchUserFields, fetchSocialActionUserList,
|
|
29
|
+
export declare const JRCComment: ({ isFocused, comment, token, tinyMCEConfig, onCommentUpdate, onCommentDelete, fetchUser, fetchUserFields, fetchSocialActionUserList, removeAction, onError, highlightFields, userModel, userAccountStatus, isWedocActive, isWidgetActive, getAccessHash, onGetHashError, socialActionAdd, deleteFile, existingWidgetsWrapperComponent, }: JRCCommentProps) => React.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import jamespot, { AddCommentParams, AddRemoveActionParams, CombinedWidgetType, Model, UpdateCommentParams, WidgetDisplayMode, WidgetWrapperProps, jUserList, jUserView } from 'jamespot-user-api';
|
|
2
2
|
import { jCommentList } from 'jamespot-user-api/lib/src/types/comment';
|
|
3
|
-
import
|
|
3
|
+
import React from 'react';
|
|
4
4
|
import { JRCInputTinyMCERawProps } from '../Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
5
5
|
import { DriveOrFilebank } from '../Form/Input/JRCInputFileAdvanced/JRCInputFileAdvancedRaw';
|
|
6
6
|
export type JRCCommentsBlocProps = {
|
|
@@ -9,19 +9,19 @@ export type JRCCommentsBlocProps = {
|
|
|
9
9
|
currentUser: jUserList;
|
|
10
10
|
tinyMCEConfig: Pick<JRCInputTinyMCERawProps, 'commonOptions' | 'mentionsQueries' | 'tinymceScriptSrc'>;
|
|
11
11
|
onComment: (params: Pick<AddCommentParams, 'content' | 'alertAuthor' | 'sendAlert'>) => Promise<void>;
|
|
12
|
+
isWidgetActive?: boolean;
|
|
13
|
+
widgetListComponent: React.ReactNode;
|
|
14
|
+
newWidgetsWrapperComponent: React.ReactNode;
|
|
15
|
+
existingWidgetsWrapperComponent: (content: WidgetWrapperProps<CombinedWidgetType>[], mode: WidgetDisplayMode, inplace: boolean, idComment: number, editRight?: boolean, deleteRight?: boolean) => React.ReactNode;
|
|
12
16
|
loading?: boolean;
|
|
13
17
|
token?: string;
|
|
14
18
|
onCommentUpdate: (args: UpdateCommentParams) => Promise<void>;
|
|
15
19
|
onCommentDelete: (idComment: number) => Promise<void>;
|
|
16
|
-
fetchUser
|
|
17
|
-
fetchUserFields
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
deleteFile?: (id: number) => Promise<void>;
|
|
22
|
-
fetchSocialActionUserList?: () => Promise<jUserList[]>;
|
|
23
|
-
addLike?: () => Promise<void>;
|
|
24
|
-
removeLike?: () => Promise<void>;
|
|
20
|
+
fetchUser: (id: string) => ReturnType<typeof jamespot.user.get<jUserView>>;
|
|
21
|
+
fetchUserFields: (id: number, type: 'popover') => ReturnType<typeof jamespot.user.getFields>;
|
|
22
|
+
deleteFile: (id: number) => Promise<void>;
|
|
23
|
+
fetchSocialActionUserList: ({ targetId, targetType, type, }: AddRemoveActionParams) => ReturnType<typeof jamespot.socialAction.getUsers<jUserView>>;
|
|
24
|
+
removeLike: ({ targetId, targetType, type, }: AddRemoveActionParams) => ReturnType<typeof jamespot.socialAction.remove>;
|
|
25
25
|
onError?: (message?: string) => void;
|
|
26
26
|
highlightFields?: string[];
|
|
27
27
|
userModel?: Model;
|
|
@@ -30,6 +30,7 @@ export type JRCCommentsBlocProps = {
|
|
|
30
30
|
getAccessHash?: (fileId: number) => Promise<string>;
|
|
31
31
|
onGetHashError: (message?: string) => void;
|
|
32
32
|
activeDrives: DriveOrFilebank[];
|
|
33
|
+
socialActionAdd: ({ targetId, targetType, type, }: AddRemoveActionParams) => ReturnType<typeof jamespot.socialAction.add>;
|
|
33
34
|
};
|
|
34
35
|
export declare const AvatarWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
35
|
-
export declare const JRCCommentsBloc: ({ comments, initialCommentsNumber, currentUser, tinyMCEConfig, onComment, loading, token, onCommentDelete, onCommentUpdate, fetchUser, fetchUserFields, deleteFile, fetchSocialActionUserList,
|
|
36
|
+
export declare const JRCCommentsBloc: ({ comments, initialCommentsNumber, currentUser, tinyMCEConfig, onComment, isWidgetActive, widgetListComponent, newWidgetsWrapperComponent, existingWidgetsWrapperComponent, loading, token, onCommentDelete, onCommentUpdate, fetchUser, fetchUserFields, deleteFile, fetchSocialActionUserList, removeLike, onError, highlightFields, userModel, userAccountStatus, isWedocActive, getAccessHash, onGetHashError, activeDrives, socialActionAdd, }: JRCCommentsBlocProps) => React.JSX.Element;
|
|
@@ -9,7 +9,7 @@ type FlexBoxProps = Omit<FastCssProps, 'display'> & {
|
|
|
9
9
|
childFull?: boolean;
|
|
10
10
|
};
|
|
11
11
|
export declare const JRCFlexBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Omit<FastCssProps, "display"> & {
|
|
12
|
-
direction?: "row" | "column" | "
|
|
12
|
+
direction?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
13
13
|
inline?: boolean | undefined;
|
|
14
14
|
flex?: string | boolean | undefined;
|
|
15
15
|
gap?: number | undefined;
|
|
@@ -7,6 +7,6 @@ export type JRCHtmlProps = LimitLinesProps & {
|
|
|
7
7
|
};
|
|
8
8
|
export declare const JRCHtml: React.ForwardRefExoticComponent<LimitLinesProps & {
|
|
9
9
|
className?: string | undefined;
|
|
10
|
-
as?: "symbol" | "object" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "label" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strong" | "style" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "g" |
|
|
10
|
+
as?: "symbol" | "object" | "a" | "abbr" | "address" | "area" | "article" | "aside" | "audio" | "b" | "base" | "bdi" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "label" | "legend" | "li" | "link" | "main" | "map" | "mark" | "menu" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "picture" | "pre" | "progress" | "q" | "rp" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strong" | "style" | "sub" | "summary" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "track" | "u" | "ul" | "var" | "video" | "wbr" | "g" | "circle" | "big" | "keygen" | "menuitem" | "noindex" | "param" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "clipPath" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feDropShadow" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "filter" | "foreignObject" | "image" | "line" | "linearGradient" | "marker" | "mask" | "metadata" | "mpath" | "path" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "stop" | "switch" | "text" | "textPath" | "tspan" | "use" | "view" | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
|
11
11
|
__html: string | undefined;
|
|
12
12
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -9,4 +9,4 @@ export declare const SIZES: Readonly<{
|
|
|
9
9
|
xxl: 24;
|
|
10
10
|
xxxl: 32;
|
|
11
11
|
}>;
|
|
12
|
-
export declare const Typography: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, Pick<JRCTypographyProps, "color" | "size" | "
|
|
12
|
+
export declare const Typography: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, Pick<JRCTypographyProps, "color" | "size" | "weight" | "align" | "hoverColor"> & FastCssProps, never>;
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { jObjectLittle, jUserView } from 'jamespot-user-api';
|
|
2
2
|
import React, { ReactNode } from 'react';
|
|
3
|
+
import jamespot from 'jamespot-user-api';
|
|
3
4
|
export type JRCUserPopupProps = {
|
|
4
5
|
idUser: number;
|
|
5
|
-
fetchUser
|
|
6
|
-
fetchFields
|
|
7
|
-
name: string;
|
|
8
|
-
value: string | object;
|
|
9
|
-
}[]>;
|
|
6
|
+
fetchUser: (id: string) => ReturnType<typeof jamespot.user.get<jUserView>>;
|
|
7
|
+
fetchFields: (id: number, type: 'popover') => ReturnType<typeof jamespot.user.getFields>;
|
|
10
8
|
fetchBusinessNetworking?: () => Promise<jObjectLittle>;
|
|
11
9
|
onError?: (message?: string) => void;
|
|
12
10
|
children: ReactNode;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { jHref, jUserLittle } from 'jamespot-user-api';
|
|
3
|
+
export declare const CSSWidgetWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const CSSList: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
|
+
export declare const CSSRowWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
6
|
+
export declare const CSSRowImageWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const CSSRow: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
8
|
+
export declare const CSSRowBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
9
|
+
export declare const CSSRowContent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
10
|
+
export declare const CSSCheckboxWrapper: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
11
|
+
export declare const CSSRowLinksWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
12
|
+
export declare const CSSRowLinkWrapper: import("styled-components").StyledComponent<({ dataCy, hasLicense, href, useLink, ...props }: import("components/JRCHref/JRCHref").JRCStyledHrefProps) => React.JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
13
|
+
export type JRCWidgetCheckListEntry = {
|
|
14
|
+
text: string;
|
|
15
|
+
checked: boolean;
|
|
16
|
+
uri?: string;
|
|
17
|
+
mimetype?: string;
|
|
18
|
+
links?: jHref[];
|
|
19
|
+
id?: number;
|
|
20
|
+
user?: jUserLittle;
|
|
21
|
+
};
|
|
22
|
+
export type JRCWidgetCheckListEntries = JRCWidgetCheckListEntry[];
|
|
23
|
+
export type JRCWidgetCheckListProps = {
|
|
24
|
+
title?: string;
|
|
25
|
+
initialEntries: JRCWidgetCheckListEntries;
|
|
26
|
+
limit: number;
|
|
27
|
+
inplace?: boolean;
|
|
28
|
+
inplaceButtonLabel?: string;
|
|
29
|
+
onFileClick: (entry: JRCWidgetCheckListEntry) => void;
|
|
30
|
+
onNewItem?: () => void;
|
|
31
|
+
onItemCheckListChange?: (index: number, items: JRCWidgetCheckListEntries) => void;
|
|
32
|
+
};
|
|
33
|
+
export declare const JRCWidgetCheckList: ({ title, initialEntries, inplace, inplaceButtonLabel, limit, onFileClick, onNewItem, onItemCheckListChange, }: JRCWidgetCheckListProps) => React.JSX.Element;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { WidgetCheckListContentArr, WidgetCheckListType } 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 JRCWidgetCheckListEditor: ({ widget, handleTitleChange, handleItemChange, handleNewItem, handleRemoveItem, handleAddUri, handleRemoveUri, handleSwapItems, openUriModal, handleCloseModal, currentModalID, selectValue, setSelectValue, newUri, setNewUri, }: {
|
|
7
|
+
widget: WidgetCheckListType;
|
|
8
|
+
handleTitleChange: (title: string) => void;
|
|
9
|
+
handleItemChange: (id: number, item: WidgetCheckListContentArr) => void;
|
|
10
|
+
handleNewItem: () => void;
|
|
11
|
+
handleRemoveItem: (id: number) => void;
|
|
12
|
+
handleAddUri: (id: number) => void;
|
|
13
|
+
handleRemoveUri: (idUri: number, idWidget: number) => void;
|
|
14
|
+
handleSwapItems: (content: {
|
|
15
|
+
arr: WidgetCheckListContentArr[];
|
|
16
|
+
}) => void;
|
|
17
|
+
openUriModal: boolean;
|
|
18
|
+
handleCloseModal: () => void;
|
|
19
|
+
currentModalID: number | null;
|
|
20
|
+
selectValue: {
|
|
21
|
+
label: string;
|
|
22
|
+
value: string;
|
|
23
|
+
};
|
|
24
|
+
setSelectValue: (value: {
|
|
25
|
+
label: string;
|
|
26
|
+
value: string;
|
|
27
|
+
}) => void;
|
|
28
|
+
newUri: string;
|
|
29
|
+
setNewUri: (uri: string) => void;
|
|
30
|
+
}) => React.JSX.Element;
|
package/build/src/index.d.ts
CHANGED
|
@@ -23,47 +23,14 @@ declare global {
|
|
|
23
23
|
* PLEASE RESPECT ALPHABETICAL ORDER
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
|
-
export { default as Resources } from './translation';
|
|
27
26
|
export { default as Theme } from './styles/theme';
|
|
27
|
+
export { default as Resources } from './translation';
|
|
28
|
+
export { JRC404 } from './components/404';
|
|
28
29
|
export { BETA_JRCDoubleClick } from './components/Beta/BETA_JRCDoubleClick/BETA_JRCDoubleClick';
|
|
29
30
|
export { BETA_JRCDragAndDrop } from './components/Beta/BETA_JRCDragAndDrop/BETA_JRCDragAndDrop';
|
|
30
|
-
export { ClickAwayListener } from './components/Form/Common/ClickAwayListener';
|
|
31
|
-
export { JRC404 } from './components/404';
|
|
32
|
-
export { JRCAlert } from './components/JRCAlert/JRCAlert';
|
|
33
|
-
export { JRCAppColumn } from './components/Templates/JRCAppColumn';
|
|
34
|
-
export { JRCAppContainer } from './components/JRCAppContainer/JRCAppContainer';
|
|
35
|
-
export { JRCAppHeader } from './components/JRCAppHeader/JRCAppHeader';
|
|
36
|
-
export { JRCAppLeftColumn } from './components/JRCAppLeftColumn/JRCAppLeftColumn';
|
|
37
|
-
export { JRCAttachments } from './components/JRCAttachments/JRCAttachments';
|
|
38
|
-
export { JRCAvatar } from './components/JRCAvatar/JRCAvatar';
|
|
39
|
-
export { JRCBaseTooltip } from './components/JRCTooltip/JRCBaseTooltip';
|
|
40
|
-
export { JRCButton } from './components/JRCButton/JRCButton';
|
|
41
|
-
export { JRCButtonDownload } from './components/JRCButtonDownload/JRCButtonDownload';
|
|
42
|
-
export { JRCButtonDropdown } from './components/JRCButtonDropdown/JRCButtonDropdown';
|
|
43
|
-
export { JRCButtonFile } from './components/JRCButtonFile/JRCButtonFile';
|
|
44
|
-
export { JRCCard } from './components/JRCCard/JRCCard';
|
|
45
|
-
export { JRCCardImg } from './components/JRCCard/JRCCardImg';
|
|
46
|
-
export { JRCCheckbox } from './components/Form/Input/JRCInputCheckbox/components/JRCCheckbox';
|
|
47
|
-
export { JRCColumn } from './components/Templates/JRCColumn';
|
|
48
|
-
export { JRCColumnCenter } from './components/JRCColumnCenter/JRCColumnCenter';
|
|
49
|
-
export { JRCColumnLeft } from './components/JRCColumnLeft/JRCColumnLeft';
|
|
50
|
-
export { JRCColumnRight } from './components/JRCColumnRight/JRCColumnRight';
|
|
51
|
-
export { JRCCommentsBloc } from './components/JRCCommentsBloc/JRCCommentsBloc';
|
|
52
31
|
export { JRCConditionalWrapper } from './components/Common/JRCConditionalWrapper';
|
|
53
|
-
export { JRCContainer } from './components/Templates/JRCContainer';
|
|
54
|
-
export { JRCBasicAutoMarginContainer } from './components/Templates/JRCBasicAutoMarginContainer';
|
|
55
|
-
export { JRCDate } from './components/JRCDate/JRCDate';
|
|
56
32
|
export { JRCDraggingPlaceholder } from './components/Common/JRCDraggingPlaceholder';
|
|
57
|
-
export {
|
|
58
|
-
export { JRCEllipsis } from './components/JRCEllipsis/JRCEllipsis';
|
|
59
|
-
export { JRCEmptySpace } from './components/JRCEmptySpace/JRCEmptySpace';
|
|
60
|
-
export { JRCFadeStepper } from './components/Stepper/JRCFadeStepper';
|
|
61
|
-
export { JRCFile } from './components/JRCFile/JRCFile';
|
|
62
|
-
export { JRCFileAvatar } from './components/JRCFile/JRCFileAvatar';
|
|
63
|
-
export { JRCFileOpen } from './components/JRCFileOpen/JRCFileOpen';
|
|
64
|
-
export { JRCFileViewer } from './components/JRCFileViewer/JRCFileViewer';
|
|
65
|
-
export { JRCFlexBox } from './components/JRCFlex/JRCFlexBox';
|
|
66
|
-
export { JRCFolders } from './components/JRCFolders/JRCFolders';
|
|
33
|
+
export { ClickAwayListener } from './components/Form/Common/ClickAwayListener';
|
|
67
34
|
export { JRCFormAutocompleteAudienceField } from './components/Form/Input/Deprecated/JRCFormAutocomplete/JRCFormAutocompleteAudience';
|
|
68
35
|
export { JRCFormAutocompleteCommunityField } from './components/Form/Input/Deprecated/JRCFormAutocomplete/JRCFormAutocompleteCommunity';
|
|
69
36
|
export { JRCFormAutocompleteTaxonomyField } from './components/Form/Input/Deprecated/JRCFormAutocomplete/JRCFormAutocompleteTaxonomy';
|
|
@@ -77,99 +44,133 @@ export { JRCFormNumberField } from './components/Form/Input/Deprecated/JRCFormNu
|
|
|
77
44
|
export { JRCFormRangeField } from './components/Form/Input/Deprecated/JRCFormRange/JRCFormRange';
|
|
78
45
|
export { JRCFormReceiveACopyField } from './components/Form/Input/Deprecated/JRCFormReceiveACopy/JRCFormReceiveACopy';
|
|
79
46
|
export { JRCFormRichTextField } from './components/Form/Input/Deprecated/JRCFormRichText/JRCFormRichTextField';
|
|
80
|
-
export {
|
|
47
|
+
export { JRCFormSelectField, JRCFormSelectInput } from './components/Form/Input/Deprecated/JRCFormSelect/JRCFormSelect';
|
|
81
48
|
export { JRCFormSelectTagField } from './components/Form/Input/Deprecated/JRCFormSelect/JRCFormSelectTag';
|
|
82
49
|
export { JRCFormSendAlertField } from './components/Form/Input/Deprecated/JRCFormSendAlert/JRCFormSendAlert';
|
|
83
|
-
export { JRCFormTextarea, JRCFormTextareaField, } from './components/Form/Input/Deprecated/JRCFormTextarea/JRCFormTextarea';
|
|
84
50
|
export { JRCFormTextField } from './components/Form/Input/Deprecated/JRCFormText/JRCFormText';
|
|
51
|
+
export { JRCFormTextarea, JRCFormTextareaField, } from './components/Form/Input/Deprecated/JRCFormTextarea/JRCFormTextarea';
|
|
85
52
|
export { JRCFormUrlField } from './components/Form/Input/Deprecated/JRCFormURL/JRCFormUrl';
|
|
86
|
-
export { JRCGrid } from './components/JRCGrid/JRCGrid';
|
|
87
|
-
export { JRCH1, JRCH2, JRCH3, JRCH4, JRCH5, JRCText } from './components/JRCTypo/JRCTypo';
|
|
88
|
-
export { JRCHtml } from './components/JRCHtml/JRCHtml';
|
|
89
|
-
export { JRCIcon } from './components/JRCIcon/JRCIcon';
|
|
90
|
-
export { JRCIconButton } from './components/JRCIconButton/JRCIconButton';
|
|
91
|
-
export { JRCImageStepper } from './components/Stepper/JRCImageStepper';
|
|
92
|
-
export { JRCImg } from './components/JRCImg/JRCImg';
|
|
93
|
-
export { JRCInputAudience } from './components/Form/Input/JRCSelect/JRCInputAudience';
|
|
94
|
-
export { JRCInputAutocomplete } from './components/Form/Input/JRCSelect/JRCInputAutocomplete';
|
|
95
53
|
export { JRCInputCheckbox, JRCInputCheckboxRaw } from './components/Form/Input/JRCInputCheckbox/JRCInputCheckbox';
|
|
54
|
+
export { JRCInputReorderCheckbox } from './components/Form/Input/JRCInputCheckbox/JRCInputReorderCheckbox';
|
|
55
|
+
export { JRCInputToggleRaw } from './components/Form/Input/JRCInputCheckbox/JRCInputToggle';
|
|
56
|
+
export { JRCCheckbox } from './components/Form/Input/JRCInputCheckbox/components/JRCCheckbox';
|
|
96
57
|
export { JRCInputColor } from './components/Form/Input/JRCInputColor/JRCInputColor';
|
|
97
58
|
export { JRCInputColorRaw } from './components/Form/Input/JRCInputColor/JRCInputColorRaw';
|
|
98
|
-
export { JRCInputCommunity } from './components/Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
99
59
|
export { JRCInputDate } from './components/Form/Input/JRCInputDate/JRCInputDate';
|
|
60
|
+
export { JRCInputDateTime } from './components/Form/Input/JRCInputDateTime/JRCInputDateTime';
|
|
100
61
|
export { JRCInputEmail } from './components/Form/Input/JRCInputEmail/JRCInputEmail';
|
|
101
62
|
export { JRCInputFile } from './components/Form/Input/JRCInputFile/JRCInputFile';
|
|
102
63
|
export { JRCInputFileAdvancedRaw } from './components/Form/Input/JRCInputFileAdvanced/JRCInputFileAdvancedRaw';
|
|
103
64
|
export { JRCInputImage } from './components/Form/Input/JRCInputImage/JRCInputImage';
|
|
104
|
-
export { JRCInputReorderCheckbox } from './components/Form/Input/JRCInputCheckbox/JRCInputReorderCheckbox';
|
|
105
65
|
export { JRCInputRichText } from './components/Form/Input/JRCInputRichText/JRCInputRichText';
|
|
106
66
|
export { JRCInputSearchRaw } from './components/Form/Input/JRCInputSearchRaw/JRCInputSearchRaw';
|
|
107
|
-
export { JRCInputSelect } from './components/Form/Input/JRCSelect/JRCInputSelect';
|
|
108
|
-
export { JRCInputSelectHierarchicalTree } from './components/Form/Input/JRCSelect/JRCInputSelectHierarchicalTree';
|
|
109
|
-
export { JRCInputSelectList } from './components/Form/Input/JRCSelect/JRCInputSelectList';
|
|
110
|
-
export { JRCInputSelectRaw } from './components/Form/Input/JRCSelect/JRCInputSelect';
|
|
111
|
-
export { JRCInputTaxonomy } from './components/Form/Input/JRCSelect/JRCInputTaxonomy';
|
|
112
67
|
export { JRCInputPassword } from './components/Form/Input/JRCInputText/JRCInputPassword';
|
|
68
|
+
export { JRCInputNumber, JRCInputText } from './components/Form/Input/JRCInputText/JRCInputText';
|
|
113
69
|
export { JRCInputTextIconButton } from './components/Form/Input/JRCInputText/JRCInputTextIconButton';
|
|
114
|
-
export { JRCInputText, JRCInputNumber } from './components/Form/Input/JRCInputText/JRCInputText';
|
|
115
70
|
export { JRCInputTextRaw } from './components/Form/Input/JRCInputTextRaw/JRCInputTextRaw';
|
|
116
71
|
export { JRCInputTextarea } from './components/Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
117
72
|
export { JRCInputTime } from './components/Form/Input/JRCInputTime/JRCInputTime';
|
|
118
73
|
export { JRCInputTinyMCE } from './components/Form/Input/JRCInputTinyMCE/JRCInputTinyMCE';
|
|
119
74
|
export { JRCInputTinyMCERaw } from './components/Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
120
|
-
export {
|
|
75
|
+
export { JRCTinyMCEFileUploadModal } from './components/Form/Input/JRCInputTinyMCERaw/JRCTinyMCEFileUploadModal';
|
|
76
|
+
export { JRCTinyMCEImageUploadModal } from './components/Form/Input/JRCInputTinyMCERaw/JRCTinyMCEImageUploadModal';
|
|
77
|
+
export { JRCTinyMCEVideoUploadModal } from './components/Form/Input/JRCInputTinyMCERaw/JRCTinyMCEVideoUploadModal';
|
|
121
78
|
export { JRCInputUrl } from './components/Form/Input/JRCInputUrl/JRCInputUrl';
|
|
79
|
+
export { JRCInputCommunity } from './components/Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
80
|
+
export { JRCInputAudience } from './components/Form/Input/JRCSelect/JRCInputAudience';
|
|
81
|
+
export { JRCInputAutocomplete } from './components/Form/Input/JRCSelect/JRCInputAutocomplete';
|
|
82
|
+
export { JRCInputSelect, JRCInputSelectRaw } from './components/Form/Input/JRCSelect/JRCInputSelect';
|
|
83
|
+
export { JRCInputSelectHierarchicalTree } from './components/Form/Input/JRCSelect/JRCInputSelectHierarchicalTree';
|
|
84
|
+
export { JRCInputSelectList } from './components/Form/Input/JRCSelect/JRCInputSelectList';
|
|
85
|
+
export { JRCInputTaxonomy } from './components/Form/Input/JRCSelect/JRCInputTaxonomy';
|
|
86
|
+
export { JRCAlert } from './components/JRCAlert/JRCAlert';
|
|
87
|
+
export { JRCAppContainer } from './components/JRCAppContainer/JRCAppContainer';
|
|
88
|
+
export { JRCAppHeader } from './components/JRCAppHeader/JRCAppHeader';
|
|
89
|
+
export { JRCAppLeftColumn } from './components/JRCAppLeftColumn/JRCAppLeftColumn';
|
|
90
|
+
export { JRCAttachments } from './components/JRCAttachments/JRCAttachments';
|
|
91
|
+
export { JRCAvatar } from './components/JRCAvatar/JRCAvatar';
|
|
92
|
+
export { JRCButton } from './components/JRCButton/JRCButton';
|
|
93
|
+
export { JRCValidationButton } from './components/JRCButton/JRCValidationButton';
|
|
94
|
+
export { JRCButtonDownload } from './components/JRCButtonDownload/JRCButtonDownload';
|
|
95
|
+
export { JRCButtonDropdown } from './components/JRCButtonDropdown/JRCButtonDropdown';
|
|
96
|
+
export { JRCButtonFile } from './components/JRCButtonFile/JRCButtonFile';
|
|
97
|
+
export { JRCCard } from './components/JRCCard/JRCCard';
|
|
98
|
+
export { JRCCardImg } from './components/JRCCard/JRCCardImg';
|
|
99
|
+
export { JRCColumnCenter } from './components/JRCColumnCenter/JRCColumnCenter';
|
|
100
|
+
export { JRCColumnLeft } from './components/JRCColumnLeft/JRCColumnLeft';
|
|
101
|
+
export { JRCColumnRight } from './components/JRCColumnRight/JRCColumnRight';
|
|
102
|
+
export { JRCCommentsBloc } from './components/JRCCommentsBloc/JRCCommentsBloc';
|
|
103
|
+
export { JRCDate } from './components/JRCDate/JRCDate';
|
|
104
|
+
export { JRCDropDown } from './components/JRCDropDown/JRCDropDown';
|
|
105
|
+
export { JRCEllipsis } from './components/JRCEllipsis/JRCEllipsis';
|
|
106
|
+
export { JRCEmptySpace } from './components/JRCEmptySpace/JRCEmptySpace';
|
|
107
|
+
export { JRCFile } from './components/JRCFile/JRCFile';
|
|
108
|
+
export { JRCFileAvatar } from './components/JRCFile/JRCFileAvatar';
|
|
109
|
+
export { JRCFileOpen } from './components/JRCFileOpen/JRCFileOpen';
|
|
110
|
+
export { JRCFileViewer } from './components/JRCFileViewer/JRCFileViewer';
|
|
111
|
+
export { JRCFlexBox } from './components/JRCFlex/JRCFlexBox';
|
|
112
|
+
export { JRCFolders } from './components/JRCFolders/JRCFolders';
|
|
113
|
+
export { JRCGrid } from './components/JRCGrid/JRCGrid';
|
|
114
|
+
export { JRCStyledHref } from './components/JRCHref/JRCHref';
|
|
115
|
+
export { JRCHtml } from './components/JRCHtml/JRCHtml';
|
|
116
|
+
export { JRCIcon } from './components/JRCIcon/JRCIcon';
|
|
117
|
+
export { JRCIconButton } from './components/JRCIconButton/JRCIconButton';
|
|
118
|
+
export { JRCImg } from './components/JRCImg/JRCImg';
|
|
122
119
|
export { JRCList } from './components/JRCList/JRCList';
|
|
123
120
|
export { JRCLoader } from './components/JRCLoader/JRCLoader';
|
|
124
|
-
export { JRCMainColumn } from './components/Templates/JRCMainColumn';
|
|
125
121
|
export { JRCMenu } from './components/JRCMenu/JRCMenu';
|
|
126
|
-
export { JRCModal } from './components/JRCModal/templates/JRCModal';
|
|
127
122
|
export { JRCModalContent } from './components/JRCModal/JRCModalContent';
|
|
128
123
|
export { JRCModalContentForm } from './components/JRCModal/JRCModalContentForm';
|
|
124
|
+
export { JRCModalLayout } from './components/JRCModal/JRCModalLayout';
|
|
125
|
+
export { JRCModal } from './components/JRCModal/templates/JRCModal';
|
|
129
126
|
export { JRCModalForm } from './components/JRCModal/templates/JRCModalForm';
|
|
130
127
|
export { JRCModalImg } from './components/JRCModalImg/JRCModalImg';
|
|
131
|
-
export { JRCModalLayout } from './components/JRCModal/JRCModalLayout';
|
|
132
|
-
export { JRCPageNotLogged } from './components/Pages/JRCPageNotLogged';
|
|
133
128
|
export { JRCPagination } from './components/JRCPagination/JRCPagination';
|
|
134
|
-
export { JRCPanel } from './components/Templates/JRCPanel';
|
|
135
129
|
export { JRCSidePanelModal } from './components/JRCSidePanelModal/JRCSidePanelModal';
|
|
136
130
|
export { JRCSkeletonLine } from './components/JRCSkeleton/JRCSkeletonLine';
|
|
137
131
|
export { JRCSkeletonList } from './components/JRCSkeleton/JRCSkeletonList';
|
|
138
132
|
export { JRCSkeletonSquare } from './components/JRCSkeleton/JRCSkeletonSquare';
|
|
139
|
-
export {
|
|
140
|
-
export { JRCStepperPage } from './components/Templates/JRCStepperPage';
|
|
141
|
-
export { JRCStyledHref } from './components/JRCHref/JRCHref';
|
|
142
|
-
export { JRCTabs, JRCTabPanel } from './components/JRCTabs/JRCTabs';
|
|
133
|
+
export { JRCTabPanel, JRCTabs } from './components/JRCTabs/JRCTabs';
|
|
143
134
|
export { JRCTag } from './components/JRCTag/JRCTag';
|
|
144
|
-
export { JRCTemplateBase } from './components/Templates/JRCBase.template';
|
|
145
|
-
export { JRCTemplateTwoColumns } from './components/Templates/JRCTwoColumns.template';
|
|
146
135
|
export { JRCThemeProvider } from './components/JRCThemeProvider/JRCThemeProvider';
|
|
147
|
-
export {
|
|
148
|
-
export { JRCTinyMCEImageUploadModal } from './components/Form/Input/JRCInputTinyMCERaw/JRCTinyMCEImageUploadModal';
|
|
149
|
-
export { JRCTinyMCEVideoUploadModal } from './components/Form/Input/JRCInputTinyMCERaw/JRCTinyMCEVideoUploadModal';
|
|
136
|
+
export { JRCBaseTooltip } from './components/JRCTooltip/JRCBaseTooltip';
|
|
150
137
|
export { JRCTooltip } from './components/JRCTooltip/JRCTooltip';
|
|
138
|
+
export { JRCH1, JRCH2, JRCH3, JRCH4, JRCH5, JRCText } from './components/JRCTypo/JRCTypo';
|
|
151
139
|
export { JRCTypography } from './components/JRCTypography/JRCTypography';
|
|
152
140
|
export { JRCUserPopup } from './components/JRCUserPopup/JRCUserPopup';
|
|
153
|
-
export {
|
|
154
|
-
export {
|
|
155
|
-
export {
|
|
141
|
+
export { JRCPageNotLogged } from './components/Pages/JRCPageNotLogged';
|
|
142
|
+
export { JRCFadeStepper } from './components/Stepper/JRCFadeStepper';
|
|
143
|
+
export { JRCImageStepper } from './components/Stepper/JRCImageStepper';
|
|
144
|
+
export { JRCStepper } from './components/Stepper/JRCStepper';
|
|
145
|
+
export { JRCAppColumn } from './components/Templates/JRCAppColumn';
|
|
146
|
+
export { JRCTemplateBase } from './components/Templates/JRCBase.template';
|
|
147
|
+
export { JRCBasicAutoMarginContainer } from './components/Templates/JRCBasicAutoMarginContainer';
|
|
148
|
+
export { JRCColumn } from './components/Templates/JRCColumn';
|
|
149
|
+
export { JRCContainer } from './components/Templates/JRCContainer';
|
|
150
|
+
export { JRCMainColumn } from './components/Templates/JRCMainColumn';
|
|
151
|
+
export { JRCPanel } from './components/Templates/JRCPanel';
|
|
152
|
+
export { JRCStepperPage } from './components/Templates/JRCStepperPage';
|
|
153
|
+
export { JRCTemplateTwoColumns } from './components/Templates/JRCTwoColumns.template';
|
|
156
154
|
export { JRCWidgetArticleAttachmentEditor } from './components/Widgets/JRCWidgetAttachment/JRCWidgetArticleAttachmentEditor';
|
|
155
|
+
export { JRCWidgetAttachment } from './components/Widgets/JRCWidgetAttachment/JRCWidgetAttachment';
|
|
157
156
|
export { JRCWidgetButton } from './components/Widgets/JRCWidgetButton/JRCWidgetButton';
|
|
158
157
|
export { JRCWidgetButtonEditor } from './components/Widgets/JRCWidgetButton/JRCWidgetButtonEditor';
|
|
159
158
|
export { JRCWidgetArticleGallery } from './components/Widgets/JRCWidgetArticleGallery/JRCWidgetArticleGallery';
|
|
160
159
|
export { JRCWidgetArticleGalleryEditor } from './components/Widgets/JRCWidgetArticleGallery/JRCWidgetArticleGalleryEditor';
|
|
160
|
+
export { JRCWidgetArticleImageEditor } from './components/Widgets/JRCWidgetImage/JRCWidgetArticleImageEditor';
|
|
161
161
|
export { JRCWidgetImage } from './components/Widgets/JRCWidgetImage/JRCWidgetImage';
|
|
162
162
|
export { JRCWidgetImageEditor } from './components/Widgets/JRCWidgetImage/JRCWidgetImageEditor';
|
|
163
|
-
export { JRCWidgetArticleImageEditor } from './components/Widgets/JRCWidgetImage/JRCWidgetArticleImageEditor';
|
|
164
163
|
export { JRCWidgetArticleText } from './components/Widgets/JRCWidgetArticleText/JRCWidgetArticleText';
|
|
165
164
|
export { JRCWidgetArticleTextEditor } from './components/Widgets/JRCWidgetArticleText/JRCWidgetArticleTextEditor';
|
|
166
165
|
export { JRCWidgetArticleTitle } from './components/Widgets/JRCWidgetArticleTitle/JRCWidgetArticleTitle';
|
|
167
166
|
export { JRCWidgetArticleTitleEditor } from './components/Widgets/JRCWidgetArticleTitle/JRCWidgetArticleTitleEditor';
|
|
168
167
|
export { JRCWidgetApi } from './components/Widgets/JRCWidgetApi/JRCWidgetApi';
|
|
169
168
|
export { JRCWidgetApiEditor } from './components/Widgets/JRCWidgetApi/JRCWidgetApiEditor';
|
|
170
|
-
export { JRCWidgetSlider } from './components/Widgets/JRCWidgetSlider/JRCWidgetSlider';
|
|
171
169
|
export { JRCWidgetArticleSliderEditor } from './components/Widgets/JRCWidgetSlider/JRCWidgetArticleSliderEditor';
|
|
170
|
+
export { JRCWidgetSlider } from './components/Widgets/JRCWidgetSlider/JRCWidgetSlider';
|
|
172
171
|
export { JRCWidgetEmptyInplace } from './components/Widgets/JRCWidgetEmptyInplace';
|
|
172
|
+
export { JRCWidgetCheckList } from './components/Widgets/JRCWidgetCheckList/JRCWidgetCheckList';
|
|
173
|
+
export { JRCWidgetCheckListEditor } from './components/Widgets/JRCWidgetCheckList/JRCWidgetCheckListEditor';
|
|
173
174
|
export { LabelDescriptionOption } from './components/Form/Input/JRCSelect/JRCInputSelect.defaults';
|
|
174
175
|
export { StyledInput } from './components/Form/Input/JRCStyledInput';
|
|
175
176
|
export { useDebounce } from './hooks/UseDebounce';
|
|
@@ -177,9 +178,9 @@ export { useDidMountEffect } from './hooks/UseDidMountEffect';
|
|
|
177
178
|
export { useImageLoader } from './hooks/UseImageLoader';
|
|
178
179
|
export { useKeyPress } from './hooks/UseKeyPress';
|
|
179
180
|
export { useTimeout } from './hooks/UseTimeout';
|
|
181
|
+
export { useCancelOnUnmount } from './hooks/useCancelOnUnmount';
|
|
180
182
|
export { useRefSize } from './hooks/useRefSize';
|
|
181
183
|
export { useWindowSize } from './hooks/useWindowSize';
|
|
182
|
-
export { useCancelOnUnmount } from './hooks/useCancelOnUnmount';
|
|
183
184
|
export { JTinyMCEExtensionsBuilders } from './components/Form/Input/JRCInputTinyMCERaw/extensions/JTinyMCEExtensions';
|
|
184
185
|
/****
|
|
185
186
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.187",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/jamespot-react-components.js",
|
|
6
6
|
"types": "./build/src/index.d.ts",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"chroma-js": "^2.1.1",
|
|
93
93
|
"classnames": "^2.3.1",
|
|
94
94
|
"dompurify": "^3.0.5",
|
|
95
|
-
"jamespot-user-api": "^1.0.
|
|
95
|
+
"jamespot-user-api": "^1.0.158",
|
|
96
96
|
"moment": "2.29.4",
|
|
97
97
|
"react": "^17.x",
|
|
98
98
|
"react-beautiful-dnd": "^13.1.1",
|