jamespot-react-components 1.0.107 → 1.0.113
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 +405 -352
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/Common/DashedFocusBorder.d.ts +1 -0
- package/build/src/components/Common/JRCConditionalWrapper.d.ts +4 -3
- package/build/src/components/Common/LimitLines.d.ts +4 -0
- package/build/src/components/Form/Input/Common/JRCFormFieldRenderer.types.d.ts +3 -0
- package/build/src/components/Form/Input/JRCFormRichText/JRCFormRichTextField.d.ts +9 -1
- package/build/src/components/Form/Input/JRCInputDate/JRCInputDate.stories.d.ts +1 -1
- package/build/src/components/Form/Input/JRCInputRichText/JRCInputRichText.d.ts +10 -0
- package/build/src/components/Form/Input/JRCInputRichText/JRCInputRichText.stories.d.ts +7 -0
- package/build/src/components/Form/Input/JRCInputText/JRCInputText.stories.d.ts +1 -1
- package/build/src/components/Form/Input/JRCInputTextarea/JRCInputTextarea.stories.d.ts +1 -1
- package/build/src/components/Form/Input/JRCInputTime/JRCInputTime.d.ts +12 -0
- package/build/src/components/Form/Input/JRCInputTime/JRCInputTime.stories.d.ts +7 -0
- package/build/src/components/JRCAppLeftColumn/JRCAppLeftColumn.styles.d.ts +3 -1
- package/build/src/components/JRCButton/JRCButton.d.ts +13 -0
- package/build/src/components/JRCButtonDropdown/JRCButtonDropdown.styles.d.ts +2 -0
- package/build/src/components/JRCCard/JRCCard.d.ts +10 -0
- package/build/src/components/JRCCard/JRCCardImg.d.ts +28 -0
- package/build/src/components/JRCCard/JRCCardImg.stories.d.ts +5 -0
- package/build/src/components/JRCDate/JRCDate.d.ts +0 -1
- package/build/src/components/JRCFlex/JRCFlexBox.d.ts +12 -2
- package/build/src/components/JRCHref/JRCHref.d.ts +3 -2
- package/build/src/components/JRCHtml/JRCHtml.d.ts +6 -0
- package/build/src/components/JRCHtml/JRCHtml.stories.d.ts +5 -0
- package/build/src/components/JRCIconButton/JRCIconButton.d.ts +8 -4
- package/build/src/components/Templates/template.styles.d.ts +3 -3
- package/build/src/components/Templates/template.type.d.ts +1 -1
- package/build/src/index.d.ts +4 -0
- package/build/src/types.d.ts +3 -0
- package/build/src/utils/index.d.ts +2 -1
- package/build/src/utils/utils.date.d.ts +2 -1
- package/build/src/utils/utils.time.d.ts +1 -0
- package/build/src/utils/utils.time.test.d.ts +1 -0
- package/package.json +10 -9
- package/storybook-static/55.5fa319f3.iframe.bundle.js +2 -0
- package/storybook-static/{353.ff9a21e0.iframe.bundle.js.LICENSE.txt → 55.5fa319f3.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/574.429a6f59.iframe.bundle.js +1 -0
- package/storybook-static/869.9aa8589f.iframe.bundle.js +1 -0
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/main.bb96e273.iframe.bundle.js +1 -0
- package/storybook-static/{runtime~main.03b36f08.iframe.bundle.js → runtime~main.6f6b12ef.iframe.bundle.js} +1 -1
- package/storybook-static/314.615cb34b.iframe.bundle.js +0 -1
- package/storybook-static/353.ff9a21e0.iframe.bundle.js +0 -2
- package/storybook-static/869.d81caf8c.iframe.bundle.js +0 -1
- package/storybook-static/main.33d24fae.iframe.bundle.js +0 -1
|
@@ -7,3 +7,4 @@ export declare type DashedFocusBorderProps = {
|
|
|
7
7
|
* @props offset offset of the dashed focus border, default to 2px
|
|
8
8
|
*/
|
|
9
9
|
export declare const DashedFocusBorder: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<DashedFocusBorderProps, any>>;
|
|
10
|
+
export declare const DashedFocusBorderAbsolute: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<DashedFocusBorderProps, any>>;
|
|
@@ -8,9 +8,10 @@ export interface JRCConditionalWrapperProps {
|
|
|
8
8
|
}
|
|
9
9
|
export declare const JRCConditionalWrapper: ({ condition, wrapper, wrapperFalse, children }: JRCConditionalWrapperProps) => JSX.Element;
|
|
10
10
|
export interface JRCConditionalTooltipProps {
|
|
11
|
-
condition
|
|
12
|
-
|
|
11
|
+
condition?: boolean;
|
|
12
|
+
hasLicense?: boolean;
|
|
13
|
+
tooltip?: Omit<JRCTooltipProps, 'children'>;
|
|
13
14
|
children?: React.ReactNode;
|
|
14
15
|
className?: string;
|
|
15
16
|
}
|
|
16
|
-
export declare const JRCConditionalTooltip: ({ condition, tooltip, children, className }: JRCConditionalTooltipProps) => JSX.Element;
|
|
17
|
+
export declare const JRCConditionalTooltip: ({ condition, hasLicense, tooltip, children, className, }: JRCConditionalTooltipProps) => JSX.Element;
|
|
@@ -4,6 +4,7 @@ import { ControllerRenderProps } from 'react-hook-form/dist/types/controller';
|
|
|
4
4
|
import { FormControls, JRCFormControls } from './useFormControls';
|
|
5
5
|
import { UseControllerProps, FieldValues } from 'react-hook-form';
|
|
6
6
|
import { DataCy } from '../../../../types/dataAttributes';
|
|
7
|
+
import { RegisterOptions } from 'react-hook-form/dist/types/validator';
|
|
7
8
|
/**
|
|
8
9
|
* Form field render props that might be provided outside of this library
|
|
9
10
|
* @member label, label
|
|
@@ -35,10 +36,12 @@ export interface RendererProps<T extends FieldValues = FieldValues> {
|
|
|
35
36
|
*/
|
|
36
37
|
export declare type JRCFormFieldRendererProps<T extends FieldValues = FieldValues> = FieldRenderProps & NameControl<T> & RendererProps<T> & {
|
|
37
38
|
rules?: FormControls & JRCFormControls;
|
|
39
|
+
rulesValidate?: RegisterOptions<T>['validate'];
|
|
38
40
|
};
|
|
39
41
|
/**
|
|
40
42
|
* Prop types for an input rendered by react-hook-form
|
|
41
43
|
*/
|
|
42
44
|
export declare type JRCInputFieldProps<T extends FieldValues = FieldValues> = FieldRenderProps & NameControl<T> & {
|
|
43
45
|
rules?: FormControls;
|
|
46
|
+
rulesValidate?: RegisterOptions<T>['validate'];
|
|
44
47
|
};
|
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
import { Editor } from '@tiptap/react';
|
|
2
2
|
import { JRCWritableFormInputProps } from '../JRCFormFieldRender';
|
|
3
3
|
import { WrappedFieldInputProps } from 'redux-form';
|
|
4
|
+
import { DataCy } from '../../../../types/dataAttributes';
|
|
5
|
+
/**
|
|
6
|
+
* This component is used with redux-form (studio) and with react-hook-form!!
|
|
7
|
+
*/
|
|
4
8
|
export declare const MenuBar: ({ editor }: {
|
|
5
9
|
editor: Editor | null;
|
|
6
10
|
}) => JSX.Element | null;
|
|
7
|
-
export declare
|
|
11
|
+
export declare type FormRichTextFieldProps = WrappedFieldInputProps & DataCy;
|
|
12
|
+
/**
|
|
13
|
+
* This component is used with redux-form (studio) and with react-hook-form!!
|
|
14
|
+
*/
|
|
15
|
+
export declare const FormRichTextField: (props: FormRichTextFieldProps) => JSX.Element;
|
|
8
16
|
/**
|
|
9
17
|
* Component used as a <input type="text"/>
|
|
10
18
|
* @param props JRCWritableFormInputProps
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { JRCInputFieldProps } from '../Common/JRCFormFieldRenderer.types';
|
|
3
|
+
import { FieldValues } from 'react-hook-form/dist/types';
|
|
4
|
+
/**
|
|
5
|
+
* Component used as a <input type="text"/>
|
|
6
|
+
* @param props JRCInputFieldProps
|
|
7
|
+
* validation props: required
|
|
8
|
+
* @returns JSX.Element
|
|
9
|
+
*/
|
|
10
|
+
export declare function JRCInputRichText<T extends FieldValues = FieldValues>({ dataCy, ...props }: JRCInputFieldProps<T>): JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { JRCInputFieldProps } from '../Common/JRCFormFieldRenderer.types';
|
|
2
|
+
import { Meta, Story } from '@storybook/react';
|
|
3
|
+
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const InputRichText: Story<JRCInputFieldProps<{
|
|
6
|
+
text: string;
|
|
7
|
+
}>>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { JRCInputFieldProps } from '../Common/JRCFormFieldRenderer.types';
|
|
3
|
+
import { DataCy } from '../../../../types/dataAttributes';
|
|
4
|
+
import { FieldValues } from 'react-hook-form/dist/types';
|
|
5
|
+
export declare type JRCInputTimeProps = DataCy & React.ComponentPropsWithoutRef<'input'>;
|
|
6
|
+
/**
|
|
7
|
+
* Component used as a <input type="hour"/>
|
|
8
|
+
* @param props JRCInputFieldProps
|
|
9
|
+
* validation props: required
|
|
10
|
+
* @returns JSX.Element
|
|
11
|
+
*/
|
|
12
|
+
export declare function JRCInputTime<T extends FieldValues = FieldValues>(props: JRCInputFieldProps<T>): JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { JRCInputFieldProps } from '../Common/JRCFormFieldRenderer.types';
|
|
2
|
+
import { Meta, Story } from '@storybook/react';
|
|
3
|
+
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const InputTime: Story<JRCInputFieldProps<{
|
|
6
|
+
hour: string;
|
|
7
|
+
}>>;
|
|
@@ -21,7 +21,7 @@ export declare const MenuWrapper: import("styled-components").StyledComponent<"d
|
|
|
21
21
|
export declare const ItemsIcon: import("styled-components").StyledComponent<"button", any, import("../JRCTabs/JRCTabs").ItemProps, never>;
|
|
22
22
|
export declare const TitleMenu: import("styled-components").StyledComponent<"h2", any, Pick<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "key" | keyof import("react").HTMLAttributes<HTMLHeadingElement>>, never>;
|
|
23
23
|
export declare const JRCIconButtonAppLeftColumn: import("styled-components").StyledComponent<{
|
|
24
|
-
(props: Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof import("react").ButtonHTMLAttributes<HTMLButtonElement>> & import("../../types/dataAttributes").DataCy & {
|
|
24
|
+
({ hasLicense, ...props }: Pick<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof import("react").ButtonHTMLAttributes<HTMLButtonElement>> & import("../../types/dataAttributes").DataCy & {
|
|
25
25
|
icon: string;
|
|
26
26
|
size?: "small" | "medium" | undefined;
|
|
27
27
|
onClick?: ((event?: import("react").MouseEvent<HTMLButtonElement, MouseEvent> | undefined) => void) | undefined;
|
|
@@ -29,9 +29,11 @@ export declare const JRCIconButtonAppLeftColumn: import("styled-components").Sty
|
|
|
29
29
|
value?: string | undefined;
|
|
30
30
|
disabled?: boolean | undefined;
|
|
31
31
|
type?: "button" | "reset" | "submit" | undefined;
|
|
32
|
+
bgBaseGrey?: 0 | 1 | 2 | undefined;
|
|
32
33
|
color?: "inherit" | import("../../styles/theme").Colors | import("../../styles/theme").Shades | undefined;
|
|
33
34
|
tooltip?: Omit<import("../..").JRCTooltipProps, "children"> | undefined;
|
|
34
35
|
variant?: "circle" | "square" | undefined;
|
|
36
|
+
hasLicense?: boolean | undefined;
|
|
35
37
|
} & {
|
|
36
38
|
onClick: () => void;
|
|
37
39
|
type: string;
|
|
@@ -3,6 +3,7 @@ import { JRCIconProps } from '../JRCIcon/JRCIcon';
|
|
|
3
3
|
import { ButtonType } from './JRCButtonConfig';
|
|
4
4
|
import { DataCy } from '../../types/dataAttributes';
|
|
5
5
|
import { DashedFocusBorderProps } from '../Common/DashedFocusBorder';
|
|
6
|
+
import { JRCTooltipProps } from '../JRCTooltip/JRCTooltip';
|
|
6
7
|
export declare type JRCButtonProps = React.ComponentPropsWithoutRef<'button'> & DataCy & {
|
|
7
8
|
/** Color of the background of the button */
|
|
8
9
|
color?: 'primary' | 'valid' | 'danger' | 'secondary';
|
|
@@ -22,6 +23,10 @@ export declare type JRCButtonProps = React.ComponentPropsWithoutRef<'button'> &
|
|
|
22
23
|
float?: 'left' | 'right';
|
|
23
24
|
/** CSS min-width attribute */
|
|
24
25
|
minWidth?: string;
|
|
26
|
+
/** has license. If false, the button will be disabled with a license tooltip. Default to true */
|
|
27
|
+
hasLicense?: boolean;
|
|
28
|
+
/** tooltip tooltip props */
|
|
29
|
+
tooltip?: Omit<JRCTooltipProps, 'children'>;
|
|
25
30
|
};
|
|
26
31
|
export declare const transformColor: (color?: string | undefined) => JRCIconProps['color'];
|
|
27
32
|
/**
|
|
@@ -49,6 +54,10 @@ export declare const Button: import("styled-components").StyledComponent<"button
|
|
|
49
54
|
float?: "left" | "right" | undefined;
|
|
50
55
|
/** CSS min-width attribute */
|
|
51
56
|
minWidth?: string | undefined;
|
|
57
|
+
/** has license. If false, the button will be disabled with a license tooltip. Default to true */
|
|
58
|
+
hasLicense?: boolean | undefined;
|
|
59
|
+
/** tooltip tooltip props */
|
|
60
|
+
tooltip?: Omit<JRCTooltipProps, "children"> | undefined;
|
|
52
61
|
} & DashedFocusBorderProps, never>;
|
|
53
62
|
export declare const JRCButton: React.ForwardRefExoticComponent<Pick<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "key" | keyof React.ButtonHTMLAttributes<HTMLButtonElement>> & DataCy & {
|
|
54
63
|
/** Color of the background of the button */
|
|
@@ -69,4 +78,8 @@ export declare const JRCButton: React.ForwardRefExoticComponent<Pick<React.Detai
|
|
|
69
78
|
float?: "left" | "right" | undefined;
|
|
70
79
|
/** CSS min-width attribute */
|
|
71
80
|
minWidth?: string | undefined;
|
|
81
|
+
/** has license. If false, the button will be disabled with a license tooltip. Default to true */
|
|
82
|
+
hasLicense?: boolean | undefined;
|
|
83
|
+
/** tooltip tooltip props */
|
|
84
|
+
tooltip?: Omit<JRCTooltipProps, "children"> | undefined;
|
|
72
85
|
} & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -10,6 +10,8 @@ export declare const MarginLessJRCButton: import("styled-components").StyledComp
|
|
|
10
10
|
variant?: "contained" | "outlined" | undefined;
|
|
11
11
|
float?: "left" | "right" | undefined;
|
|
12
12
|
minWidth?: string | undefined;
|
|
13
|
+
hasLicense?: boolean | undefined;
|
|
14
|
+
tooltip?: Omit<import("../..").JRCTooltipProps, "children"> | undefined;
|
|
13
15
|
} & React.RefAttributes<HTMLButtonElement>>, any, ButtonProps, never>;
|
|
14
16
|
export declare const MenuWithoutTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
15
17
|
export declare const MenuWithTitle: ({ direction, label, themeButton, children }: MenuWithTitleProps) => JSX.Element;
|
|
@@ -4,8 +4,18 @@ export declare type TVariants = 'span' | 'div';
|
|
|
4
4
|
export declare type JRCCardProps = React.ComponentPropsWithoutRef<'div'> & {
|
|
5
5
|
variant?: TVariants;
|
|
6
6
|
type?: MessageType;
|
|
7
|
+
padding?: PaddingValues;
|
|
8
|
+
};
|
|
9
|
+
export declare type PaddingValues = keyof typeof PADDING;
|
|
10
|
+
export declare const PADDING: {
|
|
11
|
+
mini: string;
|
|
12
|
+
small: string;
|
|
13
|
+
base: string;
|
|
14
|
+
medium: string;
|
|
15
|
+
large: string;
|
|
7
16
|
};
|
|
8
17
|
export declare const Card: import("styled-components").StyledComponent<"div", any, {
|
|
9
18
|
type?: MessageType | undefined;
|
|
19
|
+
padding?: "base" | "small" | "medium" | "large" | "mini" | undefined;
|
|
10
20
|
}, never>;
|
|
11
21
|
export declare const JRCCard: (props: JRCCardProps) => JSX.Element;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ImgUrlProps } from 'components/JRCImg/url.util';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
declare const ASPECTS: {
|
|
4
|
+
'4:3': number;
|
|
5
|
+
'5:4': number;
|
|
6
|
+
'16:9': number;
|
|
7
|
+
'1': number;
|
|
8
|
+
'3:4': number;
|
|
9
|
+
'4:5': number;
|
|
10
|
+
'9:16': number;
|
|
11
|
+
};
|
|
12
|
+
export declare type ActionsPosition = 'top-left' | 'top-right';
|
|
13
|
+
export declare type JRCCardImgProps = {
|
|
14
|
+
color?: string;
|
|
15
|
+
img?: string;
|
|
16
|
+
imgFromObject?: ImgUrlProps;
|
|
17
|
+
title: string;
|
|
18
|
+
content?: React.ReactNode;
|
|
19
|
+
aspect?: keyof typeof ASPECTS;
|
|
20
|
+
href?: string;
|
|
21
|
+
onClick?: (event: any) => any;
|
|
22
|
+
actions?: {
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
position?: ActionsPosition;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
export declare const JRCCardImg: (props: JRCCardImgProps) => JSX.Element;
|
|
28
|
+
export {};
|
|
@@ -1,12 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
import { FastCssProps } from '../Common/FastCss';
|
|
2
|
+
declare type FlexBoxProps = Omit<FastCssProps, 'display'> & {
|
|
2
3
|
direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
3
4
|
inline?: boolean;
|
|
4
5
|
flex?: boolean;
|
|
5
6
|
gap?: number;
|
|
6
7
|
x?: 'flex-start' | 'center' | 'flex-end';
|
|
7
8
|
y?: 'flex-start' | 'center' | 'flex-end';
|
|
9
|
+
childFull?: boolean;
|
|
8
10
|
};
|
|
9
|
-
export declare const JRCFlexBox: import("styled-components").StyledComponent<"div", any,
|
|
11
|
+
export declare const JRCFlexBox: import("styled-components").StyledComponent<"div", any, Omit<FastCssProps, "display"> & {
|
|
12
|
+
direction?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
13
|
+
inline?: boolean | undefined;
|
|
14
|
+
flex?: boolean | undefined;
|
|
15
|
+
gap?: number | undefined;
|
|
16
|
+
x?: "center" | "flex-end" | "flex-start" | undefined;
|
|
17
|
+
y?: "center" | "flex-end" | "flex-start" | undefined;
|
|
18
|
+
childFull?: boolean | undefined;
|
|
19
|
+
}, never>;
|
|
10
20
|
export declare type JRCFlexBoxProps = FlexBoxProps & {
|
|
11
21
|
as?: string;
|
|
12
22
|
};
|
|
@@ -10,6 +10,7 @@ export declare type JRCLinkToProps = DataCy & React.ComponentPropsWithoutRef<'a'
|
|
|
10
10
|
declare type NativeProps = React.ComponentPropsWithoutRef<'a'> & {
|
|
11
11
|
href: string;
|
|
12
12
|
useLink?: boolean;
|
|
13
|
+
hasLicense?: boolean;
|
|
13
14
|
};
|
|
14
15
|
declare type AnchorProps = {
|
|
15
16
|
as?: 'a';
|
|
@@ -18,8 +19,8 @@ declare type ButtonProps = {
|
|
|
18
19
|
variant?: 'contained' | 'outlined';
|
|
19
20
|
color?: 'primary' | 'valid' | 'danger' | 'secondary';
|
|
20
21
|
float?: 'left' | 'right';
|
|
22
|
+
disabled?: boolean;
|
|
21
23
|
children?: React.ReactNode;
|
|
22
|
-
} & {
|
|
23
24
|
as: 'button';
|
|
24
25
|
};
|
|
25
26
|
/**
|
|
@@ -27,5 +28,5 @@ declare type ButtonProps = {
|
|
|
27
28
|
* @member as render the link styled as a button
|
|
28
29
|
*/
|
|
29
30
|
export declare type JRCStyledHrefProps = DataCy & (AnchorProps | ButtonProps) & NativeProps;
|
|
30
|
-
export declare const JRCStyledHref: ({ href, ...props }: JRCStyledHrefProps) => JSX.Element;
|
|
31
|
+
export declare const JRCStyledHref: ({ dataCy, hasLicense, href, useLink, ...props }: JRCStyledHrefProps) => JSX.Element;
|
|
31
32
|
export {};
|
|
@@ -5,14 +5,16 @@ import { DataCy } from '../../types/dataAttributes';
|
|
|
5
5
|
/**
|
|
6
6
|
* IconButton props
|
|
7
7
|
* @member icon icon of the button
|
|
8
|
+
* @member size size of the button, default value, set to medium
|
|
8
9
|
* @member onClick on click callback
|
|
9
10
|
* @member name name (for form only)
|
|
10
11
|
* @member value value (for form only)
|
|
11
12
|
* @member disabled disable the button
|
|
12
|
-
* @member
|
|
13
|
+
* @member type type of the button
|
|
14
|
+
* @member bgBaseGrey base grey color (hover, focus, disabled, default icon color will be compute from this base)
|
|
13
15
|
* @member tooltip tooltip props
|
|
14
|
-
* @member variant
|
|
15
|
-
|
|
16
|
+
* @member variant can be 'circle' | 'square';
|
|
17
|
+
* @member hasLicense If false, the button will be disabled with a license tooltip. Default to true
|
|
16
18
|
*/
|
|
17
19
|
export declare type JRCIconButtonProps = React.ComponentPropsWithoutRef<'button'> & DataCy & {
|
|
18
20
|
icon: string;
|
|
@@ -22,9 +24,11 @@ export declare type JRCIconButtonProps = React.ComponentPropsWithoutRef<'button'
|
|
|
22
24
|
value?: string;
|
|
23
25
|
disabled?: boolean;
|
|
24
26
|
type?: 'submit' | 'reset' | 'button';
|
|
27
|
+
bgBaseGrey?: 0 | 1 | 2;
|
|
25
28
|
color?: Colors | Shades | 'inherit';
|
|
26
29
|
tooltip?: Omit<JRCTooltipProps, 'children'>;
|
|
27
30
|
variant?: 'circle' | 'square';
|
|
31
|
+
hasLicense?: boolean;
|
|
28
32
|
};
|
|
29
33
|
declare const defaultProps: {
|
|
30
34
|
onClick: () => void;
|
|
@@ -33,7 +37,7 @@ declare const defaultProps: {
|
|
|
33
37
|
size: string;
|
|
34
38
|
};
|
|
35
39
|
declare const JRCIconButton: {
|
|
36
|
-
(props: JRCIconButtonProps & typeof defaultProps): JSX.Element;
|
|
40
|
+
({ hasLicense, ...props }: JRCIconButtonProps & typeof defaultProps): JSX.Element;
|
|
37
41
|
defaultProps: {
|
|
38
42
|
onClick: () => void;
|
|
39
43
|
type: string;
|
|
@@ -280,6 +280,7 @@ export declare const OpenCloseButton: import("styled-components").StyledComponen
|
|
|
280
280
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
281
281
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
282
282
|
css?: import("@emotion/core").InterpolationWithTheme<any>;
|
|
283
|
+
name?: string | undefined;
|
|
283
284
|
autoFocus?: boolean | undefined;
|
|
284
285
|
disabled?: boolean | undefined;
|
|
285
286
|
formAction?: string | undefined;
|
|
@@ -287,18 +288,17 @@ export declare const OpenCloseButton: import("styled-components").StyledComponen
|
|
|
287
288
|
formMethod?: string | undefined;
|
|
288
289
|
formNoValidate?: boolean | undefined;
|
|
289
290
|
formTarget?: string | undefined;
|
|
290
|
-
name?: string | undefined;
|
|
291
291
|
value?: string | number | readonly string[] | undefined;
|
|
292
292
|
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
293
293
|
theme: any;
|
|
294
294
|
offset: string;
|
|
295
|
-
} & Open & Closing, "form" | "slot" | "style" | "title" | "type" | "ref" | "onError" | "children" | "theme" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "
|
|
295
|
+
} & Open & Closing, "form" | "slot" | "style" | "title" | "type" | "ref" | "onError" | "children" | "theme" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "css" | "name" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "value" | "offset">;
|
|
296
296
|
export declare const AppTabLabel: import("styled-components").StyledComponent<"p", any, Open, never>;
|
|
297
297
|
export declare const AppTabContainer: import("styled-components").StyledComponent<"div", any, Open, never>;
|
|
298
298
|
export declare const AppTab: import("styled-components").StyledComponent<"button", any, Open & {
|
|
299
299
|
active?: boolean | undefined;
|
|
300
300
|
}, never>;
|
|
301
|
-
export declare const AppTabTooltip: import("styled-components").StyledComponent<({ condition, tooltip, children, className }: import("../Common/JRCConditionalWrapper").JRCConditionalTooltipProps) => JSX.Element, any, {}, never>;
|
|
301
|
+
export declare const AppTabTooltip: import("styled-components").StyledComponent<({ condition, hasLicense, tooltip, children, className, }: import("../Common/JRCConditionalWrapper").JRCConditionalTooltipProps) => JSX.Element, any, {}, never>;
|
|
302
302
|
export declare const EllipsisWrapper: import("styled-components").StyledComponent<"span", any, Open, never>;
|
|
303
303
|
export declare const AppTabNav: import("styled-components").StyledComponent<"nav", any, Open & {
|
|
304
304
|
extraMargin: boolean;
|
package/build/src/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export { JRCButtonDownload } from './components/JRCButtonDownload/JRCButtonDownl
|
|
|
40
40
|
export { JRCButtonDropdown } from './components/JRCButtonDropdown/JRCButtonDropdown';
|
|
41
41
|
export { JRCButtonFile } from './components/JRCButtonFile/JRCButtonFile';
|
|
42
42
|
export { JRCCard } from './components/JRCCard/JRCCard';
|
|
43
|
+
export { JRCCardImg } from './components/JRCCard/JRCCardImg';
|
|
43
44
|
export { JRCColumn } from './components/Templates/JRCColumn';
|
|
44
45
|
export { JRCColumnCenter } from './components/JRCColumnCenter/JRCColumnCenter';
|
|
45
46
|
export { JRCColumnLeft } from './components/JRCColumnLeft/JRCColumnLeft';
|
|
@@ -71,6 +72,7 @@ export { JRCFormTextField } from './components/Form/Input/JRCFormText/JRCFormTex
|
|
|
71
72
|
export { JRCFormUrlField } from './components/Form/Input/JRCFormURL/JRCFormUrl';
|
|
72
73
|
export { JRCGrid } from './components/JRCGrid/JRCGrid';
|
|
73
74
|
export { JRCH1, JRCH2, JRCH3, JRCH4, JRCH5, JRCText } from './components/JRCTypo/JRCTypo';
|
|
75
|
+
export { JRCHtml } from './components/JRCHtml/JRCHtml';
|
|
74
76
|
export { JRCIcon } from './components/JRCIcon/JRCIcon';
|
|
75
77
|
export { JRCIconButton } from './components/JRCIconButton/JRCIconButton';
|
|
76
78
|
export { JRCImg } from './components/JRCImg/JRCImg';
|
|
@@ -79,9 +81,11 @@ export { JRCInputCheckbox } from './components/Form/Input/JRCInputCheckbox/JRCIn
|
|
|
79
81
|
export { JRCInputCommunity } from './components/Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
80
82
|
export { JRCInputDate } from './components/Form/Input/JRCInputDate/JRCInputDate';
|
|
81
83
|
export { JRCInputEmail } from './components/Form/Input/JRCFormEmail/JRCInputEmail';
|
|
84
|
+
export { JRCInputRichText } from './components/Form/Input/JRCInputRichText/JRCInputRichText';
|
|
82
85
|
export { JRCInputSelect } from './components/Form/Input/JRCSelect/JRCInputSelect';
|
|
83
86
|
export { JRCInputText } from './components/Form/Input/JRCInputText/JRCInputText';
|
|
84
87
|
export { JRCInputTextarea } from './components/Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
88
|
+
export { JRCInputTime } from './components/Form/Input/JRCInputTime/JRCInputTime';
|
|
85
89
|
export { JRCList } from './components/JRCList/JRCList';
|
|
86
90
|
export { JRCLoader } from './components/JRCLoader/JRCLoader';
|
|
87
91
|
export { JRCMainColumn } from './components/Templates/JRCMainColumn';
|
package/build/src/types.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ export { JRCButtonDropdownProps, JRCButtonDropdownOptionProps, } from './compone
|
|
|
13
13
|
export { JRCButtonFileProps } from './components/JRCButtonFile/JRCButtonFile';
|
|
14
14
|
export { JRCButtonProps } from './components/JRCButton/JRCButton';
|
|
15
15
|
export { JRCCardProps } from './components/JRCCard/JRCCard';
|
|
16
|
+
export { JRCCardImgProps } from './components/JRCCard/JRCCardImg';
|
|
16
17
|
export { JRCColumnCenterProps } from './components/JRCColumnCenter/JRCColumnCenter';
|
|
17
18
|
export { JRCColumnLeftProps } from './components/JRCColumnLeft/JRCColumnLeft';
|
|
18
19
|
export { JRCColumnRightProps } from './components/JRCColumnRight/JRCColumnRight';
|
|
@@ -32,6 +33,7 @@ export { JRCFormSelectProps } from './components/Form/Input/JRCFormSelect/JRCFor
|
|
|
32
33
|
export { JRCFormSendAlertInputProps } from './components/Form/Input/JRCFormSendAlert/JRCFormSendAlert';
|
|
33
34
|
export { JRCGridProps } from './components/JRCGrid/JRCGrid';
|
|
34
35
|
export { JRCH1Props, JRCH2Props, JRCH3Props, JRCH4Props, JRCH5Props, JRCTextProps } from './components/JRCTypo/JRCTypo';
|
|
36
|
+
export { JRCHtmlProps } from './components/JRCHtml/JRCHtml';
|
|
35
37
|
export { JRCIconButtonProps } from './components/JRCIconButton/JRCIconButton';
|
|
36
38
|
export { JRCIconProps } from './components/JRCIcon/JRCIcon';
|
|
37
39
|
export { JRCImgProps } from './components/JRCImg/JRCImg';
|
|
@@ -41,6 +43,7 @@ export { JRCInputFieldProps } from './components/Form/Input/Common/JRCFormFieldR
|
|
|
41
43
|
export { JRCInputSelectProps } from './components/Form/Input/JRCSelect/JRCInputSelect.types';
|
|
42
44
|
export { JRCInputTextareaProps } from './components/Form/Input/JRCInputTextarea/JRCInputTextarea';
|
|
43
45
|
export { JRCInputTextProps } from './components/Form/Input/JRCInputText/JRCInputText';
|
|
46
|
+
export { JRCInputTimeProps } from './components/Form/Input/JRCInputTime/JRCInputTime';
|
|
44
47
|
export { JRCLinkToProps, JRCStyledHrefProps } from './components/JRCHref/JRCHref';
|
|
45
48
|
export { JRCListProps } from './components/JRCList/JRCList';
|
|
46
49
|
export { JRCLoaderProps } from './components/JRCLoader/JRCLoader';
|
|
@@ -5,4 +5,5 @@ import * as misc from './utils.misc';
|
|
|
5
5
|
import * as object from './utils.object';
|
|
6
6
|
import * as regexp from './utils.regexp';
|
|
7
7
|
import * as string from './utils.string';
|
|
8
|
-
|
|
8
|
+
import * as time from './utils.time';
|
|
9
|
+
export { array, date, document, misc, object, regexp, string, time };
|
|
@@ -6,7 +6,7 @@ export interface extractDateProps {
|
|
|
6
6
|
minutes: number;
|
|
7
7
|
seconds: number;
|
|
8
8
|
}
|
|
9
|
-
export declare type DateFormat = 'date' | 'date-time' | 'date-time-sec';
|
|
9
|
+
export declare type DateFormat = 'date' | 'date-time' | 'date-time-sec' | 'time' | 'time-sec';
|
|
10
10
|
export declare const extractDate: (str: string) => extractDateProps;
|
|
11
11
|
/**
|
|
12
12
|
* Convert date string to timestamp
|
|
@@ -16,3 +16,4 @@ export declare const extractDate: (str: string) => extractDateProps;
|
|
|
16
16
|
export declare const strToTimestamp: (str: string) => undefined | number;
|
|
17
17
|
export declare const toISODate: (date?: Date) => string;
|
|
18
18
|
export declare const toHumanDate: (date: extractDateProps, format?: DateFormat) => string;
|
|
19
|
+
export declare const isValidDate: (date: string) => boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function timeToMs(time: string | undefined): number | undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.113",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/jamespot-react-components.js",
|
|
6
6
|
"types": "./build/src/index.d.ts",
|
|
@@ -88,16 +88,17 @@
|
|
|
88
88
|
"webpack-dev-server": "^4.4.0"
|
|
89
89
|
},
|
|
90
90
|
"dependencies": {
|
|
91
|
-
"@tiptap/extension-
|
|
92
|
-
"@tiptap/extension-
|
|
93
|
-
"@tiptap/extension-
|
|
94
|
-
"@tiptap/extension-text-
|
|
95
|
-
"@tiptap/extension-
|
|
96
|
-
"@tiptap/
|
|
97
|
-
"@tiptap/
|
|
91
|
+
"@tiptap/extension-character-count": "^2.0.0-beta.203",
|
|
92
|
+
"@tiptap/extension-color": "^2.0.0-beta.203",
|
|
93
|
+
"@tiptap/extension-link": "^2.0.0-beta.203",
|
|
94
|
+
"@tiptap/extension-text-align": "^2.0.0-beta.203",
|
|
95
|
+
"@tiptap/extension-text-style": "^2.0.0-beta.203",
|
|
96
|
+
"@tiptap/extension-underline": "^2.0.0-beta.203",
|
|
97
|
+
"@tiptap/react": "^2.0.0-beta.203",
|
|
98
|
+
"@tiptap/starter-kit": "^2.0.0-beta.203",
|
|
98
99
|
"chroma-js": "^2.1.1",
|
|
99
100
|
"classnames": "^2.3.1",
|
|
100
|
-
"jamespot-user-api": "^1.0.
|
|
101
|
+
"jamespot-user-api": "^1.0.84",
|
|
101
102
|
"moment": "^2.29.1",
|
|
102
103
|
"react": "^17.x",
|
|
103
104
|
"react-dnd": "^14.0.4",
|