jamespot-react-components 1.0.128 → 1.0.129
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/README.md +8 -0
- package/build/jamespot-react-components.js +107 -54
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/Form/Input/JRCFormAutocomplete/JRCFormAutocompleteCommunity.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormAutocomplete/JRCFormAutocompleteTaxonomy.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormCheckbox/JRCToggle.d.ts +3 -0
- package/build/src/components/Form/Input/JRCFormColor/JRCFormColor.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormDateTime/JRCFormDateTime.d.ts +7 -0
- package/build/src/components/Form/Input/JRCFormEmail/JRCFormEmail.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormFieldRender.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormFile/JRCFormFile.d.ts +6 -0
- package/build/src/components/Form/Input/JRCFormImage/JRCFormImage.d.ts +4 -0
- package/build/src/components/Form/Input/JRCFormNumber/JRCFormNumber.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormRange/JRCFormRange.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormReceiveACopy/JRCFormReceiveACopy.d.ts +3 -0
- package/build/src/components/Form/Input/JRCFormRichText/JRCFormRichTextField.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormSelect/JRCFormSelect.d.ts +9 -0
- package/build/src/components/Form/Input/JRCFormSelect/JRCFormSelectTag.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormSendAlert/JRCFormSendAlert.d.ts +3 -0
- package/build/src/components/Form/Input/JRCFormText/JRCFormText.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormTextarea/JRCFormTextarea.d.ts +1 -0
- package/build/src/components/Form/Input/JRCFormURL/JRCFormUrl.d.ts +1 -0
- package/build/src/components/Form/Input/JRCSelect/JRCInputSelect.style.d.ts +23 -0
- package/build/src/components/Form/Input/JRCSelect/JRCInputSelect.types.d.ts +15 -3
- package/build/src/components/Form/Input/JRCSelect/JRCInputSelectList.d.ts +6 -0
- package/build/src/components/Form/Input/JRCSelect/JRCInputSelectList.stories.d.ts +4 -0
- package/build/src/components/Form/Input/JRCStyledInput.d.ts +9 -3
- package/build/src/components/Form/Input/ReduxFormControls.d.ts +6 -0
- package/build/src/index.d.ts +1 -0
- package/build/src/types.d.ts +1 -0
- package/package.json +1 -1
package/build/src/components/Form/Input/JRCFormAutocomplete/JRCFormAutocompleteCommunity.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { JRCFormSelectProps } from '../JRCFormSelect/JRCFormSelect';
|
|
|
4
4
|
* @param props JRCWritableFormInputProps
|
|
5
5
|
* validation props: required
|
|
6
6
|
* @returns JSX.Element
|
|
7
|
+
* @deprecated use JRCInputAutocomplete and its variants instead
|
|
7
8
|
*/
|
|
8
9
|
declare const JRCAutocompleteCommunityField: (props: JRCFormSelectProps<any>) => JSX.Element;
|
|
9
10
|
export { JRCAutocompleteCommunityField };
|
package/build/src/components/Form/Input/JRCFormAutocomplete/JRCFormAutocompleteTaxonomy.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export interface JRCAutocompleteTaxonomyProps extends JRCFormSelectProps<any> {
|
|
|
7
7
|
* @param props JRCAutocompleteTaxonomyProps
|
|
8
8
|
* validation props: required
|
|
9
9
|
* @returns JSX.Element
|
|
10
|
+
* @deprecated use JRCInputAutocomplete and its variants instead
|
|
10
11
|
*/
|
|
11
12
|
declare const JRCAutocompleteTaxonomyField: (props: JRCAutocompleteTaxonomyProps) => JSX.Element;
|
|
12
13
|
export { JRCAutocompleteTaxonomyField };
|
|
@@ -4,5 +4,6 @@ import { JRCWritableFormInputProps } from '../JRCFormFieldRender';
|
|
|
4
4
|
* @param props JRCWritableFormInputProps
|
|
5
5
|
* validation props: required
|
|
6
6
|
* @returns JSX.Element
|
|
7
|
+
* @deprecated Create a JRCInputColor instead
|
|
7
8
|
*/
|
|
8
9
|
export declare const JRCFormColorField: (props: JRCWritableFormInputProps) => JSX.Element;
|
|
@@ -19,7 +19,13 @@ export interface JRCFormDateTimeCustomProps {
|
|
|
19
19
|
name?: string;
|
|
20
20
|
id?: string;
|
|
21
21
|
}
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated Use JRCInputDate instead
|
|
24
|
+
*/
|
|
22
25
|
export declare const JRCFormDateTimeCustomMulti: (props: any) => JSX.Element;
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated Use JRCInputDate instead
|
|
28
|
+
*/
|
|
23
29
|
export declare const JRCFormDateTimeCustom: (props: JRCFormDateTimeCustomProps) => JSX.Element;
|
|
24
30
|
export interface JRCFormDateProps extends JRCWritableFormInputProps {
|
|
25
31
|
range?: boolean;
|
|
@@ -33,5 +39,6 @@ export interface JRCFormDateProps extends JRCWritableFormInputProps {
|
|
|
33
39
|
* @param props JRCFormDateProps
|
|
34
40
|
* validation props: minValue, maxValue, required
|
|
35
41
|
* @returns JSX.Element
|
|
42
|
+
* @deprecated Use JRCInputDate instead
|
|
36
43
|
*/
|
|
37
44
|
export declare const JRCFormDatetimeField: (props: JRCFormDateProps) => JSX.Element;
|
|
@@ -4,5 +4,6 @@ import { JRCWritableFormInputProps } from '../JRCFormFieldRender';
|
|
|
4
4
|
* @param props JRCWritableFormInputProps
|
|
5
5
|
* validation props: required
|
|
6
6
|
* @returns JSX.Element
|
|
7
|
+
* @deprecated use JRCInputEmail instead
|
|
7
8
|
*/
|
|
8
9
|
export declare const JRCFormEmailField: (props: JRCWritableFormInputProps) => JSX.Element;
|
|
@@ -64,6 +64,7 @@ export declare const StyledDescription: import("styled-components").StyledCompon
|
|
|
64
64
|
* This render is used for all kin of inputs.
|
|
65
65
|
* @params props FormFieldRenderProps
|
|
66
66
|
* @returns JSX.Element
|
|
67
|
+
* @deprecated Build component compatible with react-hook-form and using the field renderer from Input/Common instead
|
|
67
68
|
*/
|
|
68
69
|
declare const JRCFormFieldRender: (props: FormFieldRenderProps) => JSX.Element;
|
|
69
70
|
export default JRCFormFieldRender;
|
|
@@ -19,5 +19,11 @@ export interface JRCFormInputFileFieldProps extends React.ComponentPropsWithoutR
|
|
|
19
19
|
accept?: 'image/png' | 'image/jpg' | 'image/png, image/jpg' | 'image/pdf' | 'image/doc' | 'image/pdf, image/doc';
|
|
20
20
|
input?: WrappedFieldInputProps;
|
|
21
21
|
}
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated Build a component compatible with react-hook-form instead
|
|
24
|
+
*/
|
|
22
25
|
export declare const JRCFormInputFile: ({ id, required, loading, name, accept, content, icon, multiple, }: JRCFormInputFileProps) => JSX.Element;
|
|
26
|
+
/**
|
|
27
|
+
* @deprecated Build a component compatible with react-hook-form instead
|
|
28
|
+
*/
|
|
23
29
|
export declare const JRCFormInputFileField: (props: JRCFormInputFileFieldProps) => JSX.Element;
|
|
@@ -11,6 +11,10 @@ export interface JRCFormInputImageFieldProps extends React.ComponentPropsWithout
|
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
13
|
* Placeholder field used in studio to edit forms. No logic to transfer images is implemented.
|
|
14
|
+
* @deprecated Use JRCInputImage instead
|
|
14
15
|
*/
|
|
15
16
|
export declare const JRCFormInputImage: ({ id, content }: JRCFormInputImageProps) => JSX.Element;
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated Use JRCInputImage instead
|
|
19
|
+
*/
|
|
16
20
|
export declare const JRCFormInputImageField: (props: JRCFormInputImageFieldProps) => JSX.Element;
|
|
@@ -4,5 +4,6 @@ import { JRCWritableFormInputProps } from '../JRCFormFieldRender';
|
|
|
4
4
|
* @param props JRCWritableFormInputProps
|
|
5
5
|
* validation props: minValue, maxValue, required
|
|
6
6
|
* @returns JSX.Element
|
|
7
|
+
* @deprecated Create a JRCInput alternative compatible with react-hook-form
|
|
7
8
|
*/
|
|
8
9
|
export declare const JRCFormNumberField: (props: JRCWritableFormInputProps) => JSX.Element;
|
|
@@ -10,5 +10,6 @@ export interface JRCFormRangeProps extends JRCWritableFormInputProps {
|
|
|
10
10
|
* @param props JRCFormRangeProps
|
|
11
11
|
* validation props: minValue, maxValue required
|
|
12
12
|
* @returns JSX.Element
|
|
13
|
+
* @deprecated use JRCInputRange instead
|
|
13
14
|
*/
|
|
14
15
|
export declare const JRCFormRangeField: (props: JRCFormRangeProps) => JSX.Element;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
export declare type JRCFormReceiveACopyInputProps = React.ComponentPropsWithoutRef<'input'>;
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Create a JRCInput alternative compatible with react-hook-form
|
|
5
|
+
*/
|
|
3
6
|
export declare const JRCFormReceiveACopyField: (props: {
|
|
4
7
|
name: string;
|
|
5
8
|
}) => JSX.Element;
|
|
@@ -5,6 +5,7 @@ import { EventHandler, EventOrValueHandler } from 'redux-form';
|
|
|
5
5
|
import { DataCy } from '../../../../types/dataAttributes';
|
|
6
6
|
/**
|
|
7
7
|
* This component is used with redux-form (studio) and with react-hook-form!!
|
|
8
|
+
* @deprecated Split react-hook-form version in a dedicated component and use it instead
|
|
8
9
|
*/
|
|
9
10
|
export declare const MenuBar: ({ editor }: {
|
|
10
11
|
editor: Editor | null;
|
|
@@ -4,8 +4,17 @@ import { ExternalFormFieldRenderProps, InputState } from '../JRCFormFieldRender'
|
|
|
4
4
|
import { JRCValueLabelProps } from 'components/Form/Common/types';
|
|
5
5
|
import { SelectComponentsConfig } from 'react-select/src/components';
|
|
6
6
|
import { FieldValues } from 'react-hook-form/dist/types';
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated Use JRCInputSelect alternatives instead
|
|
9
|
+
*/
|
|
7
10
|
export declare const JRCFormSelectInput: (props: any) => JSX.Element;
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated Use JRCInputSelect alternatives instead
|
|
13
|
+
*/
|
|
8
14
|
export declare const JRCFormSelectAsyncInput: (props: any) => JSX.Element;
|
|
15
|
+
/**
|
|
16
|
+
* @deprecated Use JRCInputSelect alternatives instead
|
|
17
|
+
*/
|
|
9
18
|
export declare const JRCFormSelectFieldRender: <TValue extends FieldValues = FieldValues>(props: JRCFormSelectProps<TValue> & {
|
|
10
19
|
input: WrappedFieldInputProps;
|
|
11
20
|
inputState: InputState;
|
|
@@ -6,6 +6,7 @@ import { FieldValues } from 'react-hook-form/dist/types';
|
|
|
6
6
|
* @param props JRCFormSelectProps
|
|
7
7
|
* validation props: required
|
|
8
8
|
* @returns JSX.Element
|
|
9
|
+
* @deprecated Use JRCInputSelect alternatives instead
|
|
9
10
|
*/
|
|
10
11
|
declare const JRCFormSelectTagField: <TValue extends FieldValues = FieldValues>(props: JRCFormSelectProps<TValue>) => JSX.Element;
|
|
11
12
|
export { JRCFormSelectTagField };
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
export declare type JRCFormSendAlertInputProps = React.ComponentPropsWithoutRef<'input'>;
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated Create or use a JRCInput alternative compatible with react-hook-form instead
|
|
5
|
+
*/
|
|
3
6
|
export declare const JRCFormSendAlertField: (props: {
|
|
4
7
|
name: string;
|
|
5
8
|
}) => JSX.Element;
|
|
@@ -4,5 +4,6 @@ import { JRCWritableFormInputProps } from '../JRCFormFieldRender';
|
|
|
4
4
|
* @param props JRCWritableFormInputProps
|
|
5
5
|
* validation props: minLength, maxLength, required
|
|
6
6
|
* @returns JSX.Element
|
|
7
|
+
* @deprecated Use JRCInputText or JRCInputTextArea instead
|
|
7
8
|
*/
|
|
8
9
|
export declare const JRCFormTextField: (props: JRCWritableFormInputProps) => JSX.Element;
|
|
@@ -20,5 +20,6 @@ export declare const JRCFormTextarea: import("styled-components").StyledComponen
|
|
|
20
20
|
* @param props TextareaFormInputProps
|
|
21
21
|
* validation props: minLength, maxLength, required
|
|
22
22
|
* @returns JSX.Element
|
|
23
|
+
* @deprecated Use JRCInputText or JRCInputTextArea instead
|
|
23
24
|
*/
|
|
24
25
|
export declare const JRCFormTextareaField: (props: TextareaFormInputProps) => JSX.Element;
|
|
@@ -4,5 +4,6 @@ import { JRCWritableFormInputProps } from '../JRCFormFieldRender';
|
|
|
4
4
|
* @param props JRCWritableFormInputProps
|
|
5
5
|
* validation props: required
|
|
6
6
|
* @returns JSX.Element
|
|
7
|
+
* @deprecated Create / use a JRCInputAlternative compatible with react-hook-form instead
|
|
7
8
|
*/
|
|
8
9
|
export declare const JRCFormUrlField: (props: JRCWritableFormInputProps) => JSX.Element;
|
|
@@ -278,6 +278,29 @@ export declare const JRCDefaultSelectedOption: import("styled-components").Style
|
|
|
278
278
|
export declare const TimesIcon: import("styled-components").StyledComponent<"i", any, {
|
|
279
279
|
className: "react-icon icon-times";
|
|
280
280
|
}, "className">;
|
|
281
|
+
export declare const Wrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
282
|
+
export declare const InputSelectSearch: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
283
|
+
export declare const OptionSelectCell: import("styled-components").StyledComponent<"button", any, {
|
|
284
|
+
isSelected: boolean;
|
|
285
|
+
}, never>;
|
|
286
|
+
export declare const ModaContentInputSelectList: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
287
|
+
export declare const ModaContentInputSelect: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
288
|
+
export declare const WrapperList: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
289
|
+
export declare const ModaContentList: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
290
|
+
export declare const NoOptionList: import("styled-components").StyledComponent<"div", any, Omit<import("../../../Common/FastCss").FastCssProps, "display"> & {
|
|
291
|
+
direction?: "row" | "column" | "column-reverse" | "row-reverse" | undefined;
|
|
292
|
+
inline?: boolean | undefined;
|
|
293
|
+
flex?: string | boolean | undefined;
|
|
294
|
+
gap?: number | undefined;
|
|
295
|
+
x?: "center" | "flex-end" | "flex-start" | undefined;
|
|
296
|
+
y?: "center" | "flex-end" | "flex-start" | undefined;
|
|
297
|
+
childFull?: boolean | undefined;
|
|
298
|
+
}, never>;
|
|
299
|
+
export declare const IconBefore: import("styled-components").StyledComponent<({ color, variant, name, size, isMargin, className, }: import("../../../JRCIcon/JRCIcon").JRCIconProps) => JSX.Element, any, {
|
|
300
|
+
left?: number | undefined;
|
|
301
|
+
top?: number | undefined;
|
|
302
|
+
height?: number | undefined;
|
|
303
|
+
}, never>;
|
|
281
304
|
export declare const DropdownIndicator: ({ loading, open, onClick, }: {
|
|
282
305
|
loading: boolean;
|
|
283
306
|
open: boolean;
|
|
@@ -3,15 +3,23 @@ import { JRCInputFieldProps } from '../Common/JRCFormFieldRenderer.types';
|
|
|
3
3
|
import { ControllerRenderProps } from 'react-hook-form/dist/types/controller';
|
|
4
4
|
import { DataCy } from '../../../../types/dataAttributes';
|
|
5
5
|
import { FieldValues } from 'react-hook-form/dist/types';
|
|
6
|
+
import { Colors, Shades } from 'styles/theme';
|
|
6
7
|
/**
|
|
7
8
|
* Select
|
|
8
9
|
*/
|
|
9
|
-
export declare type NativeSelectProps<T extends FieldValues = FieldValues> = ControllerRenderProps<T> & SelectProps;
|
|
10
|
-
export declare type JRCInputSelectProps<T extends FieldValues = FieldValues> = JRCInputFieldProps<T> & SelectProps;
|
|
10
|
+
export declare type NativeSelectProps<T extends FieldValues = FieldValues> = ControllerRenderProps<T> & SelectProps & IconsProp;
|
|
11
|
+
export declare type JRCInputSelectProps<T extends FieldValues = FieldValues> = JRCInputFieldProps<T> & SelectProps & IconsProp;
|
|
11
12
|
export declare type Getter = ((option: any) => any) | string;
|
|
13
|
+
export declare type IconsProp = {
|
|
14
|
+
iconBefore?: {
|
|
15
|
+
icon: string;
|
|
16
|
+
color?: Colors | Shades | 'inherit';
|
|
17
|
+
onClick?: () => void;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
12
20
|
export declare type SelectProps = DataCy & {
|
|
13
21
|
options?: Array<any>;
|
|
14
|
-
asyncPromise?: (inputValue: string) => Promise<any[]>;
|
|
22
|
+
asyncPromise?: (inputValue: string, page?: number) => Promise<any[]>;
|
|
15
23
|
multiple?: boolean;
|
|
16
24
|
getLabel?: ((option: any) => any) | string;
|
|
17
25
|
getValue?: ((option: any) => any) | string;
|
|
@@ -24,6 +32,10 @@ export declare type SelectProps = DataCy & {
|
|
|
24
32
|
views?: Array<'folder' | 'user' | 'group' | 'community'>;
|
|
25
33
|
onConfirm?: (values: any) => void;
|
|
26
34
|
hideSelectedOption?: boolean;
|
|
35
|
+
displayOption?: boolean;
|
|
36
|
+
displayIndicator?: boolean;
|
|
37
|
+
getOptionsSelected?: (options: any) => void;
|
|
38
|
+
setOptionsSelected?: any;
|
|
27
39
|
components?: {
|
|
28
40
|
Option?: React.ComponentType<{
|
|
29
41
|
option: any;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { JRCInputSelectProps } from './JRCInputSelect.types';
|
|
2
|
+
import { JRCModalProps } from 'components/JRCModal/JRCModal';
|
|
3
|
+
export declare type JRCInputSelectListProps = JRCInputSelectProps & JRCModalProps & {
|
|
4
|
+
displayModal?: boolean;
|
|
5
|
+
};
|
|
6
|
+
export declare const JRCInputSelectList: ({ asyncPromise, displayModal, inPlace, width, placeholder, ...props }: JRCInputSelectListProps) => JSX.Element;
|
|
@@ -4,19 +4,25 @@ import { DataCy } from '../../../types/dataAttributes';
|
|
|
4
4
|
* Input styles are &&& encapsulated in order to go over the reset styles
|
|
5
5
|
* and the not-resseted legacy style set with input[type="toto"]
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare type IconsProps = {
|
|
8
|
+
hasIconBefore?: boolean;
|
|
9
|
+
};
|
|
10
|
+
export declare const cssCommonStyledInput: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<DataCy & {
|
|
11
|
+
error?: boolean | undefined;
|
|
12
|
+
valid?: boolean | undefined;
|
|
13
|
+
} & IconsProps, any>>;
|
|
8
14
|
export declare const cssStyledInput: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<InputState, any>>;
|
|
9
15
|
export declare const StyledInput: import("styled-components").StyledComponent<"input", any, DataCy & {
|
|
10
16
|
error?: boolean | undefined;
|
|
11
17
|
valid?: boolean | undefined;
|
|
12
18
|
}, never>;
|
|
13
|
-
export declare type StyledSelectProps = DataCy & {
|
|
19
|
+
export declare type StyledSelectProps = DataCy & IconsProps & {
|
|
14
20
|
searchable?: boolean;
|
|
15
21
|
};
|
|
16
22
|
export declare const StyledSelect: import("styled-components").StyledComponent<"input", any, DataCy & {
|
|
17
23
|
error?: boolean | undefined;
|
|
18
24
|
valid?: boolean | undefined;
|
|
19
|
-
} & {
|
|
25
|
+
} & IconsProps & {
|
|
20
26
|
searchable?: boolean | undefined;
|
|
21
27
|
}, never>;
|
|
22
28
|
export declare const MaxLengthIndicatorContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -10,9 +10,15 @@ export declare type ControlsProps = {
|
|
|
10
10
|
url?: boolean;
|
|
11
11
|
date?: boolean;
|
|
12
12
|
};
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated Use react-hook-form instead of redux-form
|
|
15
|
+
*/
|
|
13
16
|
export declare const getControls: (props: ControlsProps & {
|
|
14
17
|
intl: IntlShape;
|
|
15
18
|
}) => (((value: boolean) => string | undefined) | ((value: string) => string | undefined) | ((value: number) => string | undefined))[];
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated Use react-hook-foorm instead of redux-form
|
|
21
|
+
*/
|
|
16
22
|
export declare const useControls: (props: ControlsProps & {
|
|
17
23
|
intl: IntlShape;
|
|
18
24
|
}) => (((value: boolean) => string | undefined) | ((value: string) => string | undefined) | ((value: number) => string | undefined))[];
|
package/build/src/index.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export { JRCInputFile } from './components/Form/Input/JRCInputFile/JRCInputFile'
|
|
|
89
89
|
export { JRCInputImage } from './components/Form/Input/JRCInputImage/JRCInputImage';
|
|
90
90
|
export { JRCInputRichText } from './components/Form/Input/JRCInputRichText/JRCInputRichText';
|
|
91
91
|
export { JRCInputSelect } from './components/Form/Input/JRCSelect/JRCInputSelect';
|
|
92
|
+
export { JRCInputSelectList } from './components/Form/Input/JRCSelect/JRCInputSelectList';
|
|
92
93
|
export { JRCInputText } from './components/Form/Input/JRCInputText/JRCInputText';
|
|
93
94
|
export { JRCInputTextIconButton } from './components/Form/Input/JRCInputText/JRCInputTextIconButton';
|
|
94
95
|
export { JRCInputTextarea } from './components/Form/Input/JRCInputTextarea/JRCInputTextarea';
|
package/build/src/types.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export { JRCAppLeftColumnProps, SectionEntry } from './components/JRCAppLeftColu
|
|
|
7
7
|
export { JRCAutocompleteAudienceProps } from './components/Form/Input/JRCFormAutocomplete/JRCFormAutocompleteAudience';
|
|
8
8
|
export { JRCAutocompleteCommunityProps } from './components/Form/Input/JRCSelect/JRCAutocompleteCommunity';
|
|
9
9
|
export { JRCAutocompleteProps } from './components/Form/Input/JRCSelect/JRCInputSelect.types';
|
|
10
|
+
export { JRCInputSelectListProps } from './components/Form/Input/JRCSelect/JRCInputSelectList';
|
|
10
11
|
export { JRCAutocompleteTaxonomyProps } from './components/Form/Input/JRCFormAutocomplete/JRCFormAutocompleteTaxonomy';
|
|
11
12
|
export { JRCAvatarProps } from './components/JRCAvatar/JRCAvatar';
|
|
12
13
|
export { JRCBaseTooltipProps } from './components/JRCTooltip/JRCBaseTooltip';
|