jamespot-react-components 1.0.176 → 1.0.178
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 +963 -937
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/Form/Input/JRCInputCheckbox/JRCInputToggle.d.ts +28 -0
- package/build/src/components/{Beta/BETA_JRCColorPicker/JRCColorPicker.stories.d.ts → Form/Input/JRCInputCheckbox/JRCInputToggle.stories.d.ts} +2 -2
- package/build/src/components/Form/Input/JRCInputImage/JRCInputImage.styles.d.ts +1 -0
- package/build/src/components/Form/Input/JRCSelect/JRCInputSelectHierarchicalTree.d.ts +3 -3
- package/build/src/components/Form/Input/JRCSelect/SelectHierarchicalTreeModal.d.ts +2 -2
- package/build/src/components/JRCAttachments/JRCAttachments.d.ts +0 -5
- package/build/src/components/{Beta/BETA_JRCColorPicker → JRCColorPicker}/ColorPalette.d.ts +1 -1
- package/build/src/components/{Beta/BETA_JRCColorPicker → JRCColorPicker}/ColorPicker.d.ts +1 -1
- package/build/src/components/JRCColorPicker/JRCColorPicker.d.ts +6 -0
- package/build/src/components/JRCColorPicker/JRCColorPicker.stories.d.ts +7 -0
- package/build/src/components/{Beta/BETA_JRCColorPicker/BETA_JRCColorPicker.d.ts → JRCColorPicker/JRCColorPickerRaw.d.ts} +2 -2
- package/build/src/components/JRCColorPicker/JRCColorPickerRaw.stories.d.ts +5 -0
- package/build/src/components/{Beta/BETA_JRCColorPicker/JRCColorPicker.types.d.ts → JRCColorPicker/JRCColorPickerRawProps.d.ts} +2 -2
- package/build/src/components/JRCFileViewer/types.d.ts +4 -1
- 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/index.d.ts +3 -1
- package/package.json +2 -2
- /package/build/src/components/{Beta/BETA_JRCColorPicker → JRCColorPicker}/ColorInput.d.ts +0 -0
- /package/build/src/components/{Beta/BETA_JRCColorPicker → JRCColorPicker}/ColorRange.d.ts +0 -0
- /package/build/src/components/{Beta/BETA_JRCColorPicker → JRCColorPicker}/DragArea.d.ts +0 -0
- /package/build/src/components/{Beta/BETA_JRCColorPicker → JRCColorPicker}/JRCColorPicker.styles.d.ts +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { ControllerRenderProps, FieldValues } from 'react-hook-form';
|
|
3
|
+
import { DataCy } from 'types/dataAttributes';
|
|
4
|
+
import { JRCTooltipProps } from 'components/JRCTooltip/JRCTooltip';
|
|
5
|
+
type ToggleListOption<TFieldValues> = {
|
|
6
|
+
label: string | JSX.Element;
|
|
7
|
+
value: string | number | TFieldValues;
|
|
8
|
+
};
|
|
9
|
+
export type ToggleProps = DataCy & {
|
|
10
|
+
disabled?: boolean;
|
|
11
|
+
options: Array<ToggleListOption<string>>;
|
|
12
|
+
};
|
|
13
|
+
export type ToggleRawProps<TFieldValues extends FieldValues = FieldValues> = ToggleProps & Omit<ControllerRenderProps<TFieldValues>, 'value' | 'ref'> & {
|
|
14
|
+
ref?: React.ForwardedRef<HTMLInputElement>;
|
|
15
|
+
} & {
|
|
16
|
+
value: string;
|
|
17
|
+
tooltip?: JRCTooltipProps;
|
|
18
|
+
};
|
|
19
|
+
export declare const JRCInputToggleRaw: React.ForwardRefExoticComponent<Omit<DataCy & {
|
|
20
|
+
disabled?: boolean | undefined;
|
|
21
|
+
options: Array<ToggleListOption<string>>;
|
|
22
|
+
} & Omit<ControllerRenderProps<FieldValues, string>, "ref" | "value"> & {
|
|
23
|
+
ref?: React.ForwardedRef<HTMLInputElement> | undefined;
|
|
24
|
+
} & {
|
|
25
|
+
value: string;
|
|
26
|
+
tooltip?: JRCTooltipProps | undefined;
|
|
27
|
+
}, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
28
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Meta, Story } from '@storybook/react';
|
|
2
|
-
import {
|
|
2
|
+
import { ToggleRawProps } from './JRCInputToggle';
|
|
3
3
|
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
4
|
export default _default;
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const InputToggle: Story<ToggleRawProps<any>>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export declare const InputFileWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
1
2
|
export declare const Grid: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
2
3
|
position?: "right" | "bottom" | undefined;
|
|
3
4
|
columnCount: number;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { JRCInputSelectProps } from './JRCInputSelect.types';
|
|
3
3
|
import { JRCModalLayoutProps } from 'components/JRCModal/JRCModalLayout';
|
|
4
|
-
import {
|
|
4
|
+
import { PagingResults, jObjectAutocomplete } from 'jamespot-user-api';
|
|
5
5
|
export type JRCInputSelectHierarchicalTreeProps = Omit<JRCInputSelectProps, 'asyncPromise'> & JRCModalLayoutProps & {
|
|
6
6
|
asyncPromise?: (inputValue: string, page?: number) => Promise<PagingResults<any>>;
|
|
7
|
-
hierarchicalTaxonomyPromise: (uriConcept: string) => Promise<PagingResults<
|
|
7
|
+
hierarchicalTaxonomyPromise: (uriConcept: string) => Promise<PagingResults<jObjectAutocomplete>>;
|
|
8
8
|
displayModal?: boolean;
|
|
9
9
|
checkboxOptions: Array<{
|
|
10
10
|
label: string;
|
|
@@ -13,7 +13,7 @@ export type JRCInputSelectHierarchicalTreeProps = Omit<JRCInputSelectProps, 'asy
|
|
|
13
13
|
};
|
|
14
14
|
export declare const JRCInputSelectHierarchicalTree: React.ForwardRefExoticComponent<Omit<JRCInputSelectProps<import("react-hook-form").FieldValues>, "asyncPromise"> & JRCModalLayoutProps & {
|
|
15
15
|
asyncPromise?: ((inputValue: string, page?: number) => Promise<PagingResults<any>>) | undefined;
|
|
16
|
-
hierarchicalTaxonomyPromise: (uriConcept: string) => Promise<PagingResults<
|
|
16
|
+
hierarchicalTaxonomyPromise: (uriConcept: string) => Promise<PagingResults<jObjectAutocomplete>>;
|
|
17
17
|
displayModal?: boolean | undefined;
|
|
18
18
|
checkboxOptions: Array<{
|
|
19
19
|
label: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { PagingResults, jObjectAutocomplete } from 'jamespot-user-api';
|
|
3
3
|
type SelectHierarchicalTreeModalProps = {
|
|
4
|
-
hierarchicalTaxonomyPromise: (uriConcept: string) => Promise<PagingResults<
|
|
4
|
+
hierarchicalTaxonomyPromise: (uriConcept: string) => Promise<PagingResults<jObjectAutocomplete>>;
|
|
5
5
|
close: () => void;
|
|
6
6
|
inPlace: boolean;
|
|
7
7
|
options: any[];
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
import { jFileLittle } from 'jamespot-user-api';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
export type WedocAttachmentOptions = {
|
|
4
|
-
active: boolean;
|
|
5
|
-
getAccessHash?: (fileId: number) => Promise<string>;
|
|
6
|
-
onError: (message?: string) => void;
|
|
7
|
-
};
|
|
8
3
|
export type JRCAttachmentsProps = {
|
|
9
4
|
files: jFileLittle[];
|
|
10
5
|
isWedocActive: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { ColorPaletteType } from './
|
|
2
|
+
import { ColorPaletteType } from './JRCColorPickerRawProps';
|
|
3
3
|
export declare const CSSColorBorder: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
4
4
|
export declare const LockIcon: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
5
|
export declare const CSSColor: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
@@ -23,7 +23,7 @@ type ColorPickerType = {
|
|
|
23
23
|
initialColor: string;
|
|
24
24
|
width: number;
|
|
25
25
|
height: number;
|
|
26
|
-
palettes
|
|
26
|
+
palettes?: ColorPickerPaletteType[];
|
|
27
27
|
onChange: (color: string, trigger: boolean) => void;
|
|
28
28
|
};
|
|
29
29
|
export declare const ColorPicker: ({ initialColor, width, height, palettes, onChange }: ColorPickerType) => React.JSX.Element;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { JRCColorPickerRawProps } from './JRCColorPickerRawProps';
|
|
3
|
+
import { FieldValues } from 'react-hook-form/dist/types';
|
|
4
|
+
import { JRCInputFieldProps } from '../Form/Input/Common/JRCFormFieldRenderer.types';
|
|
5
|
+
export type JRCColorPickerProps<T extends FieldValues> = Omit<JRCInputFieldProps<T>, 'placeholder' | 'labelIsLegend'> & Omit<JRCColorPickerRawProps, 'onChange' | 'name' | 'description' | 'label'>;
|
|
6
|
+
export declare const JRCColorPicker: <T extends FieldValues = FieldValues>({ initialValue, palettes, disabled, ...props }: JRCColorPickerProps<T>) => React.JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import { JRCColorPickerProps } from './JRCColorPicker';
|
|
3
|
+
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const ColorPicker: Story<JRCColorPickerProps<{
|
|
6
|
+
color: string;
|
|
7
|
+
}>>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { JRCColorPickerRawProps } from './JRCColorPickerRawProps';
|
|
3
3
|
export declare const CSSColorPickerWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
4
4
|
expandPositionAbsolute?: boolean | undefined;
|
|
5
5
|
}, never>;
|
|
6
|
-
export declare const
|
|
6
|
+
export declare const JRCColorPickerRaw: (props: JRCColorPickerRawProps) => React.JSX.Element;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import { JRCColorPickerRawProps } from './JRCColorPickerRawProps';
|
|
3
|
+
declare const _default: Meta<import("@storybook/react").Args>;
|
|
4
|
+
export default _default;
|
|
5
|
+
export declare const ColorPickerRaw: Story<JRCColorPickerRawProps>;
|
|
@@ -7,12 +7,12 @@ export type JRCColorPickerPaletteType = {
|
|
|
7
7
|
name?: string;
|
|
8
8
|
colors: string[];
|
|
9
9
|
};
|
|
10
|
-
export type
|
|
10
|
+
export type JRCColorPickerRawProps = {
|
|
11
11
|
label?: string | JSX.Element;
|
|
12
12
|
description?: string;
|
|
13
13
|
initialValue?: string;
|
|
14
14
|
name: string;
|
|
15
|
-
palettes
|
|
15
|
+
palettes?: JRCColorPickerPaletteType[];
|
|
16
16
|
onChange: (color: string) => void;
|
|
17
17
|
disabled?: boolean;
|
|
18
18
|
};
|
|
@@ -6,7 +6,10 @@ export type JRCFileViewerProps<T> = {
|
|
|
6
6
|
openWithOptions: JRCFileViewerOpenWithOptionsType;
|
|
7
7
|
children(setIndex: (idFile: number) => void): React.ReactElement<HTMLElement>;
|
|
8
8
|
};
|
|
9
|
-
export type JRCFileViewerOpenWithOptionsType =
|
|
9
|
+
export type JRCFileViewerOpenWithOptionsType = Array<{
|
|
10
|
+
condition: (file: jFileLittle) => boolean;
|
|
11
|
+
options: JRCFileViewerOpenWithOptionType[];
|
|
12
|
+
}>;
|
|
10
13
|
export type JRCFileViewerOpenWithOptionType = {
|
|
11
14
|
label: string;
|
|
12
15
|
onClick: (item: jFileLittle | undefined) => void;
|
|
@@ -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" | "row-reverse" | "column-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" | "big" | "keygen" | "menuitem" | "noindex" | "param" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "circle" | "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" |
|
|
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" | React.ComponentClass<any, any> | React.FunctionComponent<any> | "big" | "keygen" | "menuitem" | "noindex" | "param" | "webview" | "svg" | "animate" | "animateMotion" | "animateTransform" | "circle" | "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" | 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" | "align" | "weight" | "hoverColor"> & FastCssProps, never>;
|
package/build/src/index.d.ts
CHANGED
|
@@ -25,7 +25,6 @@ declare global {
|
|
|
25
25
|
*/
|
|
26
26
|
export { default as Resources } from './translation';
|
|
27
27
|
export { default as Theme } from './styles/theme';
|
|
28
|
-
export { BETA_JRCColorPicker } from './components/Beta/BETA_JRCColorPicker/BETA_JRCColorPicker';
|
|
29
28
|
export { BETA_JRCDoubleClick } from './components/Beta/BETA_JRCDoubleClick/BETA_JRCDoubleClick';
|
|
30
29
|
export { BETA_JRCDragAndDrop } from './components/Beta/BETA_JRCDragAndDrop/BETA_JRCDragAndDrop';
|
|
31
30
|
export { ClickAwayListener } from './components/Form/Common/ClickAwayListener';
|
|
@@ -48,6 +47,8 @@ export { JRCButtonFile } from './components/JRCButtonFile/JRCButtonFile';
|
|
|
48
47
|
export { JRCCard } from './components/JRCCard/JRCCard';
|
|
49
48
|
export { JRCCardImg } from './components/JRCCard/JRCCardImg';
|
|
50
49
|
export { JRCCheckbox } from './components/Form/Input/JRCFormCheckbox/JRCCheckbox';
|
|
50
|
+
export { JRCColorPicker } from './components/JRCColorPicker/JRCColorPicker';
|
|
51
|
+
export { JRCColorPickerRaw } from './components/JRCColorPicker/JRCColorPickerRaw';
|
|
51
52
|
export { JRCColumn } from './components/Templates/JRCColumn';
|
|
52
53
|
export { JRCColumnCenter } from './components/JRCColumnCenter/JRCColumnCenter';
|
|
53
54
|
export { JRCColumnLeft } from './components/JRCColumnLeft/JRCColumnLeft';
|
|
@@ -115,6 +116,7 @@ export { JRCInputTextarea } from './components/Form/Input/JRCInputTextarea/JRCIn
|
|
|
115
116
|
export { JRCInputTime } from './components/Form/Input/JRCInputTime/JRCInputTime';
|
|
116
117
|
export { JRCInputTinyMCE } from './components/Form/Input/JRCInputTinyMCE/JRCInputTinyMCE';
|
|
117
118
|
export { JRCInputTinyMCERaw } from './components/Form/Input/JRCInputTinyMCERaw/JRCInputTinyMCERaw';
|
|
119
|
+
export { JRCInputToggleRaw } from './components/Form/Input/JRCInputCheckbox/JRCInputToggle';
|
|
118
120
|
export { JRCInputUrl } from './components/Form/Input/JRCInputUrl/JRCInputUrl';
|
|
119
121
|
export { JRCList } from './components/JRCList/JRCList';
|
|
120
122
|
export { JRCLoader } from './components/JRCLoader/JRCLoader';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.178",
|
|
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.149",
|
|
96
96
|
"moment": "2.29.4",
|
|
97
97
|
"react": "^17.x",
|
|
98
98
|
"react-beautiful-dnd": "^13.1.1",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/src/components/{Beta/BETA_JRCColorPicker → JRCColorPicker}/JRCColorPicker.styles.d.ts
RENAMED
|
File without changes
|