jamespot-react-components 1.3.5 → 1.3.6
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 +3816 -3798
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/Deprecated/Deprecated_ClickAwayListener/ClickAwayListener.stories.d.ts +10 -0
- package/build/src/components/Deprecated/Deprecated_ClickAwayListener/Deprecated_ClickAwayListener.d.ts +18 -0
- package/build/src/components/Editors/components/EditorInput.d.ts +3 -1
- package/build/src/components/Form/Common/ClickAwayListener.d.ts +5 -15
- package/build/src/components/Form/Common/ClickAwayListener.stories.d.ts +1 -0
- package/build/src/components/Form/Input/JRCInputDate/JRCInputDate.d.ts +2 -1
- package/build/src/components/Form/Input/JRCInputDateTime/JRCInputDateTime.d.ts +1 -2
- package/build/src/components/Form/Input/JRCInputDateTime/JRCInputDateTimeRaw.d.ts +9 -0
- package/build/src/components/Form/Input/JRCSelect/JRCInputSelect.d.ts +1 -7
- package/build/src/components/Form/Input/JRCSelect/JRCInputSelect.types.d.ts +6 -0
- package/build/src/components/JRCCalendar/JRCCalendar.d.ts +1 -1
- package/build/src/components/JRCCalendar/JRCCalendarEvent.d.ts +2 -1
- package/build/src/components/JRCCalendar/JRCCalendarModal.d.ts +7 -3
- package/build/src/components/JRCCalendar/types.d.ts +4 -1
- package/build/src/components/index.d.ts +73 -72
- package/package.json +2 -2
package/build/src/components/Deprecated/Deprecated_ClickAwayListener/ClickAwayListener.stories.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-webpack5';
|
|
2
|
+
import { Deprecated_ClickAwayListener } from './Deprecated_ClickAwayListener';
|
|
3
|
+
declare const meta: Meta;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof Deprecated_ClickAwayListener>;
|
|
6
|
+
export declare const Default: Story;
|
|
7
|
+
/**
|
|
8
|
+
* ⚠️ This story demonstrates a known issue with the Deprecated_ClickAwayListener component.
|
|
9
|
+
*/
|
|
10
|
+
export declare const Error: Story;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FastCssProps } from '../../Common/FastCss';
|
|
2
|
+
import { HTMLAttributes, ElementType } from 'react';
|
|
3
|
+
type MouseEvents = 'click' | 'mousedown' | 'mouseup';
|
|
4
|
+
type TouchEvents = 'touchstart' | 'touchend';
|
|
5
|
+
type ClickAwayListenerProps = HTMLAttributes<HTMLElement> & FastCssProps & {
|
|
6
|
+
onClickAway: (event: MouseEvent | TouchEvent) => void;
|
|
7
|
+
mouseEvent?: MouseEvents;
|
|
8
|
+
touchEvent?: TouchEvents;
|
|
9
|
+
as?: ElementType;
|
|
10
|
+
className?: string;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Wrap a component with a <div/> (or another component provided as the 'as' props).
|
|
14
|
+
* Listen to outer mouse & touch events and call the onClickAway callback
|
|
15
|
+
* @deprecated Use the ClickAwayListener component instead
|
|
16
|
+
*/
|
|
17
|
+
export declare const Deprecated_ClickAwayListener: ({ as, onClickAway, mouseEvent, touchEvent, ...props }: ClickAwayListenerProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export {};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import { FormControls } from '../../Form/Input/Common/useFormControls';
|
|
2
|
+
export declare const EditorInput: ({ label, placeholder, initialValue, width, rules, onChange, }: {
|
|
2
3
|
label: string;
|
|
3
4
|
placeholder?: string;
|
|
4
5
|
initialValue: string | undefined;
|
|
5
6
|
autoFocus?: boolean;
|
|
6
7
|
width?: string;
|
|
8
|
+
rules?: FormControls;
|
|
7
9
|
onChange: (text: string) => void;
|
|
8
10
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,17 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
type ClickAwayListenerProps = HTMLAttributes<HTMLElement> & FastCssProps & {
|
|
6
|
-
onClickAway: (event: MouseEvent | TouchEvent) => void;
|
|
7
|
-
mouseEvent?: MouseEvents;
|
|
8
|
-
touchEvent?: TouchEvents;
|
|
9
|
-
as?: ElementType;
|
|
10
|
-
className?: string;
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
type ClickAwayListenerProps = {
|
|
3
|
+
onClickAway: () => void;
|
|
4
|
+
children: ReactNode;
|
|
11
5
|
};
|
|
12
|
-
|
|
13
|
-
* Wrap a component with a <div/> (or another component provided as the 'as' props).
|
|
14
|
-
* Listen to outer mouse & touch events and call the onClickAway callback
|
|
15
|
-
*/
|
|
16
|
-
export declare const ClickAwayListener: ({ as, onClickAway, mouseEvent, touchEvent, ...props }: ClickAwayListenerProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const ClickAwayListener: ({ onClickAway, children }: ClickAwayListenerProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
7
|
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { FieldValues } from 'react-hook-form';
|
|
2
|
-
import { JRCInputDateTimeProps
|
|
2
|
+
import { JRCInputDateTimeProps } from '../JRCInputDateTime/JRCInputDateTime';
|
|
3
3
|
import { JRCInputFieldProps } from '../Common/JRCFormFieldRenderer.types';
|
|
4
|
+
import { NativeInputProps } from '../JRCInputDateTime/JRCInputDateTimeRaw';
|
|
4
5
|
export type JRCInputDateProps<TFieldValues extends FieldValues = FieldValues> = NativeInputProps & JRCInputFieldProps<TFieldValues> & Pick<JRCInputDateTimeProps, 'openDirection'>;
|
|
5
6
|
/**
|
|
6
7
|
* Component used as a <input type="date"/>
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { JRCInputFieldProps } from '../Common/JRCFormFieldRenderer.types';
|
|
2
|
-
import { DataCy } from '../../../../types/dataAttributes';
|
|
3
2
|
import { FieldValues } from 'react-hook-form';
|
|
4
3
|
import { JRCDropDownProps } from '../../../JRCDropDown/JRCDropDown';
|
|
5
|
-
|
|
4
|
+
import { NativeInputProps } from './JRCInputDateTimeRaw';
|
|
6
5
|
export type JRCInputDateTimeProps<TFieldValues extends FieldValues = FieldValues> = NativeInputProps & JRCInputFieldProps<TFieldValues> & {
|
|
7
6
|
mode?: 'date' | 'datetime';
|
|
8
7
|
openDirection?: JRCDropDownProps['align'];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DataCy } from '../../../../types/dataAttributes';
|
|
2
|
+
import { JRCDropDownProps } from '../../../JRCDropDown/JRCDropDown';
|
|
3
|
+
export type NativeInputProps = DataCy & React.ComponentPropsWithoutRef<'input'>;
|
|
4
|
+
export declare const JRCInputDateTimeRaw: import("react").ForwardRefExoticComponent<Omit<NativeInputProps, "onChange"> & {
|
|
5
|
+
onChange?: (v: string) => void;
|
|
6
|
+
mode?: "date" | "datetime";
|
|
7
|
+
} & {
|
|
8
|
+
openDirection?: JRCDropDownProps["align"];
|
|
9
|
+
} & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
import { JRCInputSelectProps } from './JRCInputSelect.types';
|
|
1
|
+
import { JRCInputSelectProps, SelectOption } from './JRCInputSelect.types';
|
|
2
2
|
import type { FieldValues } from 'react-hook-form';
|
|
3
|
-
type SelectOption = {
|
|
4
|
-
label: string;
|
|
5
|
-
value: any;
|
|
6
|
-
resetOptions?: boolean;
|
|
7
|
-
};
|
|
8
3
|
export declare function JRCInputSelect<T extends FieldValues = FieldValues>(props: Omit<JRCInputSelectProps<T, SelectOption>, 'getLabel' | 'getValue'>): import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
export {};
|
|
@@ -19,6 +19,11 @@ export type IconsProp = {
|
|
|
19
19
|
onClick?: () => void;
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
|
+
export type SelectOption = {
|
|
23
|
+
label: string;
|
|
24
|
+
value: any;
|
|
25
|
+
resetOptions?: boolean;
|
|
26
|
+
};
|
|
22
27
|
type SelectProps<T = any> = DataCy & {
|
|
23
28
|
options?: Array<T>;
|
|
24
29
|
asyncPromise?: (inputValue: string, page?: number) => Promise<any[]>;
|
|
@@ -71,6 +76,7 @@ type SelectProps<T = any> = DataCy & {
|
|
|
71
76
|
minWidth?: string | false;
|
|
72
77
|
noMargin?: boolean;
|
|
73
78
|
defaultOpen?: boolean;
|
|
79
|
+
isCurrentOption?: (option: SelectOption['value'], value: SelectOption['value']) => boolean;
|
|
74
80
|
};
|
|
75
81
|
/**
|
|
76
82
|
* Autocomplete
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { JRCCalendarProps } from './types';
|
|
2
|
-
export declare const JRCCalendar: ({ events, loading, views, handler, defaultView, fluid, mode, fullScreen, deportedToolbar, withPadding, eventModalExtraComponent, onChangeView, onChangeDates, onError, onSuccess, onDeleteEvent, onClickUpdateEvent, onUpdateStatus, isUpdateStatusLoading, onSelect, }: JRCCalendarProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const JRCCalendar: ({ events, loading, views, handler, defaultView, fluid, mode, fullScreen, deportedToolbar, withPadding, eventModalExtraComponent, onChangeView, onChangeDates, onError, onSuccess, onDeleteEvent, onClickUpdateEvent, onUpdateStatus, isUpdateStatusLoading, onSelect, disableSelect, }: JRCCalendarProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -25,7 +25,8 @@ type JRCCalendarEventProps = {
|
|
|
25
25
|
type: string;
|
|
26
26
|
}) => void;
|
|
27
27
|
isUpdateStatusLoading: (id: number) => boolean;
|
|
28
|
+
recurrent: boolean;
|
|
28
29
|
};
|
|
29
30
|
import { CalendarView, JRCCalendarMode } from './types';
|
|
30
|
-
export declare const JRCCalendarEvent: ({ status, title, start, end, display, mode, id: stringId, onClick, audience, allDay, textColor, backgroundColor, address, image, type, isVisio, noGestion, canSubscribe, urlGestion, onUpdateStatus, isUpdateStatusLoading, }: JRCCalendarEventProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
31
|
+
export declare const JRCCalendarEvent: ({ status, title, start, end, display, mode, id: stringId, onClick, audience, allDay, textColor, backgroundColor, address, image, type, isVisio, noGestion, canSubscribe, urlGestion, onUpdateStatus, isUpdateStatusLoading, recurrent, }: JRCCalendarEventProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
31
32
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ReactNode } from 'react';
|
|
2
2
|
import { CalendarEventViewAbstractType, CalendarEventWithExtensions, JArticleApi, JCalendarApi, JGlobalApi, UserResponseStatus } from 'jamespot-user-api';
|
|
3
3
|
type JRCCalendarModalProps = {
|
|
4
|
-
event?: CalendarEventWithExtensions<CalendarEventViewAbstractType, ['socialEventRecord']>;
|
|
4
|
+
event?: CalendarEventWithExtensions<CalendarEventViewAbstractType, ['socialEventRecord' | 'recurringEventRecord']>;
|
|
5
5
|
closeHandler: () => void;
|
|
6
6
|
handler: {
|
|
7
7
|
article: Pick<JArticleApi, 'delete'>;
|
|
@@ -10,9 +10,13 @@ type JRCCalendarModalProps = {
|
|
|
10
10
|
};
|
|
11
11
|
onError: (errorMsg?: string) => void;
|
|
12
12
|
onSuccess: (message: string) => void;
|
|
13
|
-
extraComponent?: (event: CalendarEventWithExtensions<CalendarEventViewAbstractType, [
|
|
13
|
+
extraComponent?: (event: CalendarEventWithExtensions<CalendarEventViewAbstractType, [
|
|
14
|
+
'socialEventRecord' | 'recurringEventRecord'
|
|
15
|
+
]>) => ReactNode;
|
|
14
16
|
onDeleteEvent: () => void;
|
|
15
|
-
onClickUpdateEvent?: (event: CalendarEventWithExtensions<CalendarEventViewAbstractType, [
|
|
17
|
+
onClickUpdateEvent?: (event: CalendarEventWithExtensions<CalendarEventViewAbstractType, [
|
|
18
|
+
'socialEventRecord' | 'recurringEventRecord'
|
|
19
|
+
]>) => void;
|
|
16
20
|
onUpdateStatus: (params: {
|
|
17
21
|
status: UserResponseStatus;
|
|
18
22
|
id: number;
|
|
@@ -2,7 +2,9 @@ import { CalendarApi } from '@fullcalendar/core';
|
|
|
2
2
|
import { CalendarEventViewAbstractType, CalendarEventWithExtensions, JArticleApi, JCalendarApi, JGlobalApi, UserResponseStatus } from 'jamespot-user-api';
|
|
3
3
|
import { ReactNode } from 'react';
|
|
4
4
|
export type CalendarView = 'dayGridMonth' | 'timeGridWeek' | 'timeGridDay' | 'list';
|
|
5
|
-
export type CalendarEvent = CalendarEventWithExtensions<CalendarEventViewAbstractType, [
|
|
5
|
+
export type CalendarEvent = CalendarEventWithExtensions<CalendarEventViewAbstractType, [
|
|
6
|
+
'socialEventRecord' | 'recurringEventRecord'
|
|
7
|
+
]>;
|
|
6
8
|
type CalendarHandler = {
|
|
7
9
|
global: Pick<JGlobalApi, 'updateAction' | 'removeAction'>;
|
|
8
10
|
calendar: Pick<JCalendarApi, 'reviveSubmit'>;
|
|
@@ -48,5 +50,6 @@ export type JRCCalendarProps = {
|
|
|
48
50
|
end: Date;
|
|
49
51
|
allDay: boolean;
|
|
50
52
|
} | null) => void;
|
|
53
|
+
disableSelect?: boolean;
|
|
51
54
|
};
|
|
52
55
|
export {};
|
|
@@ -1,76 +1,45 @@
|
|
|
1
|
+
export { ArticleCard } from './Common/Article/ArticleCard';
|
|
1
2
|
export { BETA_JRCDoubleClick } from './Beta/BETA_JRCDoubleClick/BETA_JRCDoubleClick';
|
|
2
3
|
export { BETA_JRCDragAndDrop } from './Beta/BETA_JRCDragAndDrop/BETA_JRCDragAndDrop';
|
|
3
|
-
export {
|
|
4
|
-
export { JRCConditionalWrapper } from './Common/JRCConditionalWrapper';
|
|
5
|
-
export { JRCDraggingPlaceholder } from './Common/JRCDraggingPlaceholder';
|
|
6
|
-
export { SkipToContent } from './Common/SkipToContent';
|
|
4
|
+
export { Deprecated_ClickAwayListener } from './Deprecated/Deprecated_ClickAwayListener/Deprecated_ClickAwayListener';
|
|
7
5
|
export { Deprecated_JRCEllipsis } from './Deprecated/Deprecated_JRCEllipsis/Deprecated_JRCEllipsis';
|
|
8
|
-
export {
|
|
9
|
-
export { JRCDriveMSGraph } from './Drives/JRCDriveMSGraph';
|
|
10
|
-
export { ClickAwayListener } from './Form/Common/ClickAwayListener';
|
|
11
|
-
export { JRCCheckbox } from './Form/Input/JRCInputCheckbox/components/JRCCheckbox';
|
|
12
|
-
export { JRCInputCheckbox, JRCInputCheckboxRaw } from './Form/Input/JRCInputCheckbox/JRCInputCheckbox';
|
|
13
|
-
export { JRCInputReorderCheckbox } from './Form/Input/JRCInputCheckbox/JRCInputReorderCheckbox';
|
|
14
|
-
export { JRCInputToggle, JRCInputToggleRaw } from './Form/Input/JRCInputCheckbox/JRCInputToggle';
|
|
15
|
-
export { JRCInputColor } from './Form/Input/JRCInputColor/JRCInputColor';
|
|
16
|
-
export { JRCInputColorRaw } from './Form/Input/JRCInputColor/JRCInputColorRaw';
|
|
17
|
-
export { JRCInputDate } from './Form/Input/JRCInputDate/JRCInputDate';
|
|
18
|
-
export { JRCInputDateTime } from './Form/Input/JRCInputDateTime/JRCInputDateTime';
|
|
19
|
-
export { JRCInputEmail } from './Form/Input/JRCInputEmail/JRCInputEmail';
|
|
20
|
-
export { JRCInputFile } from './Form/Input/JRCInputFile/JRCInputFile';
|
|
21
|
-
export { JRCInputFileAdvancedRaw } from './Form/Input/JRCInputFileAdvanced/JRCInputFileAdvancedRaw';
|
|
22
|
-
export { JRCInputImage } from './Form/Input/JRCInputImage/JRCInputImage';
|
|
23
|
-
export { JRCInputSearchRaw } from './Form/Input/JRCInputSearchRaw/JRCInputSearchRaw';
|
|
24
|
-
export { JRCInputPassword } from './Form/Input/JRCInputText/JRCInputPassword';
|
|
25
|
-
export { JRCInputNumber, JRCInputText } from './Form/Input/JRCInputText/JRCInputText';
|
|
26
|
-
export { JRCInputTextIconButton } from './Form/Input/JRCInputText/JRCInputTextIconButton';
|
|
27
|
-
export { JRCInputTextarea } from './Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
28
|
-
export { JRCInputTextareaRaw } from './Form/Input/JRCInputTextarea/JRCInputTextareaRaw';
|
|
29
|
-
export { JRCInputTextRaw } from './Form/Input/JRCInputTextRaw/JRCInputTextRaw';
|
|
30
|
-
export { JRCInputTime } from './Form/Input/JRCInputTime/JRCInputTime';
|
|
31
|
-
export { JRCInputTinyMCE } from './Form/Input/JRCInputTinyMCE/JRCInputTinyMCE';
|
|
32
|
-
export { JRCInputTinyMCERaw } from './Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
33
|
-
export { JRCTinyMCEFileUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEFileUploadModal';
|
|
34
|
-
export { JRCTinyMCEImageUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEImageUploadModal';
|
|
35
|
-
export { JRCTinyMCEVideoUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEVideoUploadModal';
|
|
36
|
-
export { JRCInputUrl } from './Form/Input/JRCInputUrl/JRCInputUrl';
|
|
37
|
-
export { JRCInputCommunity } from './Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
38
|
-
export { JRCInputAudience } from './Form/Input/JRCSelect/JRCInputAudience';
|
|
39
|
-
export { JRCInputAutocomplete } from './Form/Input/JRCSelect/JRCInputAutocomplete';
|
|
40
|
-
export { JRCInputSelect } from './Form/Input/JRCSelect/JRCInputSelect';
|
|
41
|
-
export { LabelDescriptionOption } from './Form/Input/JRCSelect/JRCInputSelect.defaults';
|
|
42
|
-
export { JRCInputSelectExtended } from './Form/Input/JRCSelect/JRCInputSelectExtended';
|
|
43
|
-
export { JRCInputSelectHierarchicalTree } from './Form/Input/JRCSelect/JRCInputSelectHierarchicalTree';
|
|
44
|
-
export { JRCInputSelectList } from './Form/Input/JRCSelect/JRCInputSelectList';
|
|
45
|
-
export { JRCInputSelectRaw } from './Form/Input/JRCSelect/JRCInputSelectRaw';
|
|
46
|
-
export { StyledInput } from './Form/Input/JRCStyledInput';
|
|
6
|
+
export { DndProvider, Draggable, Droppable, JRCDndTwoLevelWithStack } from './JRCDragNDrop';
|
|
47
7
|
export { JRCAlbum } from './JRCAlbum/JRCAlbum';
|
|
48
8
|
export { JRCAlert } from './JRCAlert/JRCAlert';
|
|
9
|
+
export { JRCAppColumn } from './Templates/JRCAppColumn';
|
|
49
10
|
export { JRCAppContainer } from './JRCAppContainer/JRCAppContainer';
|
|
50
11
|
export { JRCAppHeader } from './JRCAppHeader/JRCAppHeader';
|
|
51
12
|
export { JRCAppLeftColumn } from './JRCAppLeftColumn/JRCAppLeftColumn';
|
|
52
13
|
export { JRCAttachments } from './JRCAttachments/JRCAttachments';
|
|
53
14
|
export { JRCAudience } from './JRCAudience/JRCAudience';
|
|
54
15
|
export { JRCAvatar } from './JRCAvatar/JRCAvatar';
|
|
16
|
+
export { JRCBaseTooltip } from './JRCTooltip/JRCBaseTooltip';
|
|
17
|
+
export { JRCBasicAutoMarginContainer } from './Templates/JRCBasicAutoMarginContainer';
|
|
55
18
|
export { JRCButton } from './JRCButton/JRCButton';
|
|
56
|
-
export { JRCValidationButton } from './JRCButton/JRCValidationButton';
|
|
57
19
|
export { JRCButtonDownload } from './JRCButtonDownload/JRCButtonDownload';
|
|
58
20
|
export { JRCButtonDropdown } from './JRCButtonDropdown/JRCButtonDropdown';
|
|
59
21
|
export { JRCButtonFile } from './JRCButtonFile/JRCButtonFile';
|
|
60
22
|
export { JRCCalendar } from './JRCCalendar/JRCCalendar';
|
|
61
23
|
export { JRCCard } from './JRCCard/JRCCard';
|
|
62
24
|
export { JRCCardImg } from './JRCCard/JRCCardImg';
|
|
25
|
+
export { JRCCheckbox } from './Form/Input/JRCInputCheckbox/components/JRCCheckbox';
|
|
63
26
|
export { JRCCollapse } from './JRCCollapse/JRCCollapse';
|
|
27
|
+
export { JRCColumn } from './Templates/JRCColumn';
|
|
64
28
|
export { JRCColumnCenter } from './JRCColumnCenter/JRCColumnCenter';
|
|
65
29
|
export { JRCColumnLeft } from './JRCColumnLeft/JRCColumnLeft';
|
|
66
30
|
export { JRCColumnRight } from './JRCColumnRight/JRCColumnRight';
|
|
67
31
|
export { JRCCommentsBloc } from './JRCCommentsBloc/JRCCommentsBloc';
|
|
32
|
+
export { JRCConditionalWrapper } from './Common/JRCConditionalWrapper';
|
|
33
|
+
export { JRCContainer } from './Templates/JRCContainer';
|
|
68
34
|
export { JRCCropImage } from './JRCCropImage/JRCCropImage';
|
|
69
35
|
export { JRCDate } from './JRCDate/JRCDate';
|
|
70
36
|
export { JRCDisplayCard } from './JRCDisplayCard/JRCDisplayCard';
|
|
71
|
-
export {
|
|
37
|
+
export { JRCDraggingPlaceholder } from './Common/JRCDraggingPlaceholder';
|
|
38
|
+
export { JRCDriveDropbox } from './Drives/JRCDriveDropbox';
|
|
39
|
+
export { JRCDriveMSGraph } from './Drives/JRCDriveMSGraph';
|
|
72
40
|
export { JRCDropDown } from './JRCDropDown/JRCDropDown';
|
|
73
41
|
export { JRCEmptySpace } from './JRCEmptySpace/JRCEmptySpace';
|
|
42
|
+
export { JRCFadeStepper } from './Stepper/JRCFadeStepper';
|
|
74
43
|
export { JRCFile } from './JRCFile/JRCFile';
|
|
75
44
|
export { JRCFileAvatar } from './JRCFile/JRCFileAvatar';
|
|
76
45
|
export { JRCFileOpen } from './JRCFileOpen/JRCFileOpen';
|
|
@@ -79,24 +48,59 @@ export { JRCFlexBox } from './JRCFlex/JRCFlexBox';
|
|
|
79
48
|
export { JRCFolders } from './JRCFolders/JRCFolders';
|
|
80
49
|
export { JRCGifSelector } from './JRCGifSelector/JRCGifSelector';
|
|
81
50
|
export { JRCGrid } from './JRCGrid/JRCGrid';
|
|
82
|
-
export {
|
|
51
|
+
export { JRCH1, JRCH2, JRCH3, JRCH4, JRCH5, JRCText } from './JRCTypo/JRCTypo';
|
|
83
52
|
export { JRCHtml } from './JRCHtml/JRCHtml';
|
|
84
53
|
export { JRCIcon } from './JRCIcon/JRCIcon';
|
|
85
54
|
export { JRCIconButton } from './JRCIconButton/JRCIconButton';
|
|
55
|
+
export { JRCImageStepper } from './Stepper/JRCImageStepper';
|
|
86
56
|
export { JRCImg } from './JRCImg/JRCImg';
|
|
57
|
+
export { JRCInputAudience } from './Form/Input/JRCSelect/JRCInputAudience';
|
|
58
|
+
export { JRCInputAutocomplete } from './Form/Input/JRCSelect/JRCInputAutocomplete';
|
|
59
|
+
export { JRCInputCheckbox, JRCInputCheckboxRaw } from './Form/Input/JRCInputCheckbox/JRCInputCheckbox';
|
|
60
|
+
export { JRCInputColor } from './Form/Input/JRCInputColor/JRCInputColor';
|
|
61
|
+
export { JRCInputColorRaw } from './Form/Input/JRCInputColor/JRCInputColorRaw';
|
|
62
|
+
export { JRCInputCommunity } from './Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
63
|
+
export { JRCInputDate } from './Form/Input/JRCInputDate/JRCInputDate';
|
|
64
|
+
export { JRCInputDateTime } from './Form/Input/JRCInputDateTime/JRCInputDateTime';
|
|
65
|
+
export { JRCInputDateTimeRaw } from './Form/Input/JRCInputDateTime/JRCInputDateTimeRaw';
|
|
66
|
+
export { JRCInputEmail } from './Form/Input/JRCInputEmail/JRCInputEmail';
|
|
67
|
+
export { JRCInputFile } from './Form/Input/JRCInputFile/JRCInputFile';
|
|
68
|
+
export { JRCInputFileAdvancedRaw } from './Form/Input/JRCInputFileAdvanced/JRCInputFileAdvancedRaw';
|
|
69
|
+
export { JRCInputImage } from './Form/Input/JRCInputImage/JRCInputImage';
|
|
70
|
+
export { JRCInputNumber, JRCInputText } from './Form/Input/JRCInputText/JRCInputText';
|
|
71
|
+
export { JRCInputPassword } from './Form/Input/JRCInputText/JRCInputPassword';
|
|
72
|
+
export { JRCInputReorderCheckbox } from './Form/Input/JRCInputCheckbox/JRCInputReorderCheckbox';
|
|
73
|
+
export { JRCInputSearchRaw } from './Form/Input/JRCInputSearchRaw/JRCInputSearchRaw';
|
|
74
|
+
export { JRCInputSelect } from './Form/Input/JRCSelect/JRCInputSelect';
|
|
75
|
+
export { JRCInputSelectExtended } from './Form/Input/JRCSelect/JRCInputSelectExtended';
|
|
76
|
+
export { JRCInputSelectHierarchicalTree } from './Form/Input/JRCSelect/JRCInputSelectHierarchicalTree';
|
|
77
|
+
export { JRCInputSelectList } from './Form/Input/JRCSelect/JRCInputSelectList';
|
|
78
|
+
export { JRCInputSelectRaw } from './Form/Input/JRCSelect/JRCInputSelectRaw';
|
|
79
|
+
export { JRCInputTextIconButton } from './Form/Input/JRCInputText/JRCInputTextIconButton';
|
|
80
|
+
export { JRCInputTextRaw } from './Form/Input/JRCInputTextRaw/JRCInputTextRaw';
|
|
81
|
+
export { JRCInputTextarea } from './Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
82
|
+
export { JRCInputTextareaRaw } from './Form/Input/JRCInputTextarea/JRCInputTextareaRaw';
|
|
83
|
+
export { JRCInputTime } from './Form/Input/JRCInputTime/JRCInputTime';
|
|
84
|
+
export { JRCInputTinyMCE } from './Form/Input/JRCInputTinyMCE/JRCInputTinyMCE';
|
|
85
|
+
export { JRCInputTinyMCERaw } from './Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
86
|
+
export { JRCInputToggle, JRCInputToggleRaw } from './Form/Input/JRCInputCheckbox/JRCInputToggle';
|
|
87
|
+
export { JRCInputUrl } from './Form/Input/JRCInputUrl/JRCInputUrl';
|
|
87
88
|
export { JRCList } from './JRCList/JRCList';
|
|
88
89
|
export { JRCLoader } from './JRCLoader/JRCLoader';
|
|
90
|
+
export { JRCMainColumn } from './Templates/JRCMainColumn';
|
|
89
91
|
export { JRCMediaLoader } from './JRCMediaLoader/JRCMediaLoader';
|
|
90
92
|
export { JRCMenu } from './JRCMenu/JRCMenu';
|
|
91
93
|
export { JRCMessage } from './JRCMessage/JRCMessage';
|
|
94
|
+
export { JRCModal } from './JRCModal/templates/JRCModal';
|
|
92
95
|
export { JRCModalContent } from './JRCModal/JRCModalContent';
|
|
93
96
|
export { JRCModalContentForm } from './JRCModal/JRCModalContentForm';
|
|
94
|
-
export { JRCModalLayout } from './JRCModal/JRCModalLayout';
|
|
95
|
-
export { JRCModal } from './JRCModal/templates/JRCModal';
|
|
96
97
|
export { JRCModalForm } from './JRCModal/templates/JRCModalForm';
|
|
97
98
|
export { JRCModalImg } from './JRCModalImg/JRCModalImg';
|
|
99
|
+
export { JRCModalLayout } from './JRCModal/JRCModalLayout';
|
|
98
100
|
export { JRCModalUserList } from './JRCModalUserList/JRCModalUserList';
|
|
101
|
+
export { JRCPageNotLogged } from './Pages/JRCPageNotLogged';
|
|
99
102
|
export { JRCPagination } from './JRCPagination/JRCPagination';
|
|
103
|
+
export { JRCPanel } from './Templates/JRCPanel';
|
|
100
104
|
export { JRCProgressBar } from './JRCProgressBar/JRCProgressBar';
|
|
101
105
|
export { JRCPublishButton } from './JRCPublishButton/JRCPublishButton';
|
|
102
106
|
export { JRCSidePanelModal } from './JRCSidePanelModal/JRCSidePanelModal';
|
|
@@ -104,33 +108,29 @@ export { JRCSidePanelModalForm } from './JRCSidePanelModal/JRCSidePanelModalForm
|
|
|
104
108
|
export { JRCSkeletonLine } from './JRCSkeleton/JRCSkeletonLine';
|
|
105
109
|
export { JRCSkeletonList } from './JRCSkeleton/JRCSkeletonList';
|
|
106
110
|
export { JRCSkeletonSquare } from './JRCSkeleton/JRCSkeletonSquare';
|
|
111
|
+
export { JRCStepper } from './Stepper/JRCStepper';
|
|
112
|
+
export { JRCStepperPage } from './Templates/JRCStepperPage';
|
|
113
|
+
export { JRCStyledHref } from './JRCHref/JRCHref';
|
|
107
114
|
export { JRCTabPanel, JRCTabs } from './JRCTabs/JRCTabs';
|
|
108
115
|
export { JRCTag } from './JRCTag/JRCTag';
|
|
109
|
-
export {
|
|
116
|
+
export { JRCTemplateBase } from './Templates/JRCBase.template';
|
|
117
|
+
export { JRCTemplateTwoColumns } from './Templates/JRCTwoColumns.template';
|
|
118
|
+
export { JRCTinyMCEFileUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEFileUploadModal';
|
|
119
|
+
export { JRCTinyMCEImageUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEImageUploadModal';
|
|
120
|
+
export { JRCTinyMCEVideoUploadModal } from './Form/Input/JRCInputTinyMCERaw/JRCTinyMCEVideoUploadModal';
|
|
110
121
|
export { JRCTooltip } from './JRCTooltip/JRCTooltip';
|
|
111
|
-
export { JRCH1, JRCH2, JRCH3, JRCH4, JRCH5, JRCText } from './JRCTypo/JRCTypo';
|
|
112
122
|
export { JRCTypography } from './JRCTypography/JRCTypography';
|
|
113
123
|
export { JRCUserPopup } from './JRCUserPopup/JRCUserPopup';
|
|
114
|
-
export {
|
|
115
|
-
export {
|
|
116
|
-
export { JRCImageStepper } from './Stepper/JRCImageStepper';
|
|
117
|
-
export { JRCStepper } from './Stepper/JRCStepper';
|
|
118
|
-
export { JRCAppColumn } from './Templates/JRCAppColumn';
|
|
119
|
-
export { JRCTemplateBase } from './Templates/JRCBase.template';
|
|
120
|
-
export { JRCBasicAutoMarginContainer } from './Templates/JRCBasicAutoMarginContainer';
|
|
121
|
-
export { JRCColumn } from './Templates/JRCColumn';
|
|
122
|
-
export { JRCContainer } from './Templates/JRCContainer';
|
|
123
|
-
export { JRCMainColumn } from './Templates/JRCMainColumn';
|
|
124
|
-
export { JRCPanel } from './Templates/JRCPanel';
|
|
125
|
-
export { JRCStepperPage } from './Templates/JRCStepperPage';
|
|
126
|
-
export { JRCTemplateTwoColumns } from './Templates/JRCTwoColumns.template';
|
|
124
|
+
export { JRCValidationButton } from './JRCButton/JRCValidationButton';
|
|
125
|
+
export { JRCWidgetArticleAttachmentEditor } from './Widgets/JRCWidgetAttachment/JRCWidgetArticleAttachmentEditor';
|
|
127
126
|
export { JRCWidgetArticleGallery } from './Widgets/JRCWidgetArticleGallery/JRCWidgetArticleGallery';
|
|
128
127
|
export { JRCWidgetArticleGalleryEditor } from './Widgets/JRCWidgetArticleGallery/JRCWidgetArticleGalleryEditor';
|
|
128
|
+
export { JRCWidgetArticleImageEditor } from './Widgets/JRCWidgetImage/JRCWidgetArticleImageEditor';
|
|
129
|
+
export { JRCWidgetArticleSliderEditor } from './Widgets/JRCWidgetSlider/JRCWidgetArticleSliderEditor';
|
|
129
130
|
export { JRCWidgetArticleText } from './Widgets/JRCWidgetArticleText/JRCWidgetArticleText';
|
|
130
131
|
export { JRCWidgetArticleTextEditor } from './Widgets/JRCWidgetArticleText/JRCWidgetArticleTextEditor';
|
|
131
132
|
export { JRCWidgetArticleTitle } from './Widgets/JRCWidgetArticleTitle/JRCWidgetArticleTitle';
|
|
132
133
|
export { JRCWidgetArticleTitleEditor } from './Widgets/JRCWidgetArticleTitle/JRCWidgetArticleTitleEditor';
|
|
133
|
-
export { JRCWidgetArticleAttachmentEditor } from './Widgets/JRCWidgetAttachment/JRCWidgetArticleAttachmentEditor';
|
|
134
134
|
export { JRCWidgetAttachment } from './Widgets/JRCWidgetAttachment/JRCWidgetAttachment';
|
|
135
135
|
export { JRCWidgetButton } from './Widgets/JRCWidgetButton/JRCWidgetButton';
|
|
136
136
|
export { JRCWidgetButtonEditor } from './Widgets/JRCWidgetButton/JRCWidgetButtonEditor';
|
|
@@ -138,15 +138,18 @@ export { JRCWidgetCalendarCalDav } from './Widgets/JRCWidgetCalendarCalDav/JRCWi
|
|
|
138
138
|
export { JRCWidgetCalendarCalDavEditor } from './Widgets/JRCWidgetCalendarCalDav/JRCWidgetCalendarCalDavEditor';
|
|
139
139
|
export { JRCWidgetCheckList } from './Widgets/JRCWidgetCheckList/JRCWidgetCheckList';
|
|
140
140
|
export { JRCWidgetCheckListEditor } from './Widgets/JRCWidgetCheckList/JRCWidgetCheckListEditor';
|
|
141
|
+
export { JRCWidgetColor } from './Widgets/JRCWidgetColor/JRCWidgetColor';
|
|
142
|
+
export { JRCWidgetColorEditor } from './Widgets/JRCWidgetColor/JRCWidgetColorEditor';
|
|
141
143
|
export { JRCWidgetContactCardDav } from './Widgets/JRCWidgetContactCardDav/JRCWidgetContactCardDav';
|
|
142
144
|
export { JRCWidgetContactCardDavEditor } from './Widgets/JRCWidgetContactCardDav/JRCWidgetContactCardDavEditor';
|
|
145
|
+
export { JRCWidgetDatasourceTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetDatasourceTableEditor';
|
|
143
146
|
export { JRCWidgetEmailsImap } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImap';
|
|
144
147
|
export { JRCWidgetEmailsImapEditor } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImapEditor';
|
|
145
148
|
export { JRCWidgetEmailsImapLevel2 } from './Widgets/JRCWidgetEmailsImap/JRCWidgetEmailsImapLevel2';
|
|
146
149
|
export { JRCWidgetEmptyInplace } from './Widgets/JRCWidgetEmptyInplace';
|
|
150
|
+
export { JRCWidgetExcelDatasourceTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetExcelDatasourceTableEditor';
|
|
147
151
|
export { JRCWidgetExtensionEditor } from './Widgets/JRCWidgetExtension/JRCWidgetExtensionEditor';
|
|
148
152
|
export { JRCWidgetIcon } from './Widgets/JRCWidgetIcon';
|
|
149
|
-
export { JRCWidgetArticleImageEditor } from './Widgets/JRCWidgetImage/JRCWidgetArticleImageEditor';
|
|
150
153
|
export { JRCWidgetImage } from './Widgets/JRCWidgetImage/JRCWidgetImage';
|
|
151
154
|
export { JRCWidgetImageEditor } from './Widgets/JRCWidgetImage/JRCWidgetImageEditor';
|
|
152
155
|
export { JRCWidgetLuccaAbsence } from './Widgets/JRCWidgetLuccaAbsence/JRCWidgetLuccaAbsence';
|
|
@@ -155,15 +158,13 @@ export { JRCWidgetPresence } from './Widgets/JRCWidgetPresence/JRCWidgetPresence
|
|
|
155
158
|
export { JRCWidgetPresenceEditor } from './Widgets/JRCWidgetPresence/JRCWidgetPresenceEditor';
|
|
156
159
|
export { JRCWidgetQuickSurvey } from './Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurvey';
|
|
157
160
|
export { JRCWidgetQuickSurveyEditor } from './Widgets/JRCWidgetQuickSurvey/JRCWidgetQuickSurveyEditor';
|
|
158
|
-
export { JRCWidgetArticleSliderEditor } from './Widgets/JRCWidgetSlider/JRCWidgetArticleSliderEditor';
|
|
159
161
|
export { JRCWidgetSlider } from './Widgets/JRCWidgetSlider/JRCWidgetSlider';
|
|
160
|
-
export { JRCWidgetDatasourceTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetDatasourceTableEditor';
|
|
161
|
-
export { JRCWidgetExcelDatasourceTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetExcelDatasourceTableEditor';
|
|
162
162
|
export { JRCWidgetTable } from './Widgets/JRCWidgetTable/JRCWidgetTable';
|
|
163
163
|
export { JRCWidgetTableEditor } from './Widgets/JRCWidgetTable/JRCWidgetTableEditor';
|
|
164
|
-
export { JRCWidgetWelcome } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcome';
|
|
165
|
-
export { JRCWidgetWelcomeEditor } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcomeEditor';
|
|
166
164
|
export { JRCWidgetUserProfile } from './Widgets/JRCWidgetUserProfile/JRCWidgetUserProfile';
|
|
167
165
|
export { JRCWidgetUserProfileEditor } from './Widgets/JRCWidgetUserProfile/JRCWidgetUserProfileEditor';
|
|
168
|
-
export {
|
|
169
|
-
export {
|
|
166
|
+
export { JRCWidgetWelcome } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcome';
|
|
167
|
+
export { JRCWidgetWelcomeEditor } from './Widgets/JRCWidgetWelcome/JRCWidgetWelcomeEditor';
|
|
168
|
+
export { LabelDescriptionOption } from './Form/Input/JRCSelect/JRCInputSelect.defaults';
|
|
169
|
+
export { SkipToContent } from './Common/SkipToContent';
|
|
170
|
+
export { StyledInput } from './Form/Input/JRCStyledInput';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/jamespot-react-components.js",
|
|
6
6
|
"types": "./build/src/index.d.ts",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"fork-ts-checker-webpack-plugin": "^9.1.0",
|
|
66
66
|
"husky": "^7.0.4",
|
|
67
67
|
"identity-obj-proxy": "^3.0.0",
|
|
68
|
-
"jamespot-user-api": "^1.3.
|
|
68
|
+
"jamespot-user-api": "^1.3.6",
|
|
69
69
|
"jest": "^30.2.0",
|
|
70
70
|
"jest-environment-jsdom": "^30.2.0",
|
|
71
71
|
"jest-styled-components": "^7.2.0",
|