@mrshmllw/smores-react 2.10.0 → 2.12.0
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/dist/Accordion/Accordion.d.ts +1 -1
- package/dist/ActionDropdown/ActionDropdown.d.ts +1 -1
- package/dist/ActionDropdown/List.d.ts +2 -2
- package/dist/Box/Box.d.ts +1 -1
- package/dist/Button/Button.d.ts +2 -2
- package/dist/Button/LegacyButton.d.ts +1 -1
- package/dist/Card/Card.d.ts +1 -1
- package/dist/CheckBox/CheckBox.d.ts +3 -3
- package/dist/CheckBox/CheckBox.js +4 -4
- package/dist/CheckBox/CheckBox.js.map +1 -1
- package/dist/CheckBox/CheckBox.stories.d.ts +1 -1
- package/dist/CheckBoxGroup/CheckBoxGroup.d.ts +2 -2
- package/dist/Chip/Chip.d.ts +2 -2
- package/dist/ConfirmationRadioButtons/Confirmation.d.ts +1 -1
- package/dist/ConfirmationRadioButtons/RadioButtonStyled.d.ts +1 -1
- package/dist/Datepicker/Datepicker.d.ts +1 -1
- package/dist/Datepicker/DatesList.d.ts +1 -1
- package/dist/Divider/Divider.d.ts +1 -1
- package/dist/Dropdown/Dropdown.d.ts +3 -3
- package/dist/Emoji/Emoji.d.ts +1 -1
- package/dist/Field/Field.d.ts +1 -2
- package/dist/Field/Field.js +20 -8
- package/dist/Field/Field.js.map +1 -1
- package/dist/Field/types/commonFieldTypes.d.ts +0 -1
- package/dist/Fieldset/Fieldset.js +7 -2
- package/dist/Fieldset/Fieldset.js.map +1 -1
- package/dist/Icon/Container.js +9 -0
- package/dist/Icon/Container.js.map +1 -1
- package/dist/Icon/Icon.d.ts +1 -1
- package/dist/Icon/Icon.js +10 -0
- package/dist/Icon/Icon.js.map +1 -1
- package/dist/IconWrapper/IconWrapper.d.ts +1 -1
- package/dist/LabelledText/LabelledText.d.ts +1 -1
- package/dist/Link/Link.d.ts +2 -2
- package/dist/Loader/Loader.d.ts +1 -1
- package/dist/Message/Message.d.ts +2 -2
- package/dist/Modal/Modal.d.ts +1 -1
- package/dist/NumberInput/NumberInput.d.ts +2 -2
- package/dist/Pagination/Pagination.d.ts +1 -1
- package/dist/RadioButton/RadioButton.d.ts +1 -1
- package/dist/RadioGroup/RadioElement.d.ts +5 -7
- package/dist/RadioGroup/RadioElement.js +3 -3
- package/dist/RadioGroup/RadioElement.js.map +1 -1
- package/dist/RadioGroup/RadioGroup.d.ts +12 -3
- package/dist/RadioGroup/RadioGroup.js +3 -2
- package/dist/RadioGroup/RadioGroup.js.map +1 -1
- package/dist/RadioGroup/RadioGroup.stories.d.ts +11 -3
- package/dist/RadioGroup/RadioItem.d.ts +5 -5
- package/dist/RadioGroup/RadioItem.js +4 -4
- package/dist/RadioGroup/RadioItem.js.map +1 -1
- package/dist/RadioGroup/types.d.ts +2 -2
- package/dist/Row/Row.d.ts +1 -1
- package/dist/SearchInput/SearchInput.d.ts +3 -3
- package/dist/SearchInput/SearchInput.js +4 -4
- package/dist/SearchInput/SearchInput.js.map +1 -1
- package/dist/SearchInput/SearchInput.stories.d.ts +1 -1
- package/dist/SearchInput/SearchOptions.d.ts +2 -2
- package/dist/SupportMessage/SupportMessage.d.ts +2 -2
- package/dist/Tag/Tag.d.ts +3 -3
- package/dist/Text/Text.d.ts +4 -4
- package/dist/TextInput/TextInput.d.ts +2 -2
- package/dist/Textarea/Textarea.d.ts +3 -3
- package/dist/Toggle/Toggle.d.ts +1 -1
- package/dist/fields/Fieldset/Fieldset.d.ts +1 -1
- package/dist/theme.d.ts +1 -1
- package/dist/utils/deprecated.d.ts +1 -1
- package/dist/utils/flex.d.ts +1 -1
- package/dist/utils/measure.d.ts +1 -1
- package/dist/utils/space.d.ts +2 -2
- package/package.json +1 -1
package/dist/Loader/Loader.d.ts
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
import { FC, ReactNode } from 'react';
|
2
|
-
|
2
|
+
type BorderProps = {
|
3
3
|
hasBorder?: false;
|
4
4
|
borderColor?: never;
|
5
5
|
} | {
|
6
6
|
hasBorder: true;
|
7
7
|
borderColor: string;
|
8
8
|
};
|
9
|
-
export
|
9
|
+
export type MessageProps = {
|
10
10
|
className?: string;
|
11
11
|
children: ReactNode;
|
12
12
|
type?: 'info' | 'warning' | 'warning-bubble' | string;
|
package/dist/Modal/Modal.d.ts
CHANGED
@@ -18,7 +18,7 @@ export interface Props extends CommonFieldProps {
|
|
18
18
|
outlined?: boolean;
|
19
19
|
}
|
20
20
|
/** on change or on input required */
|
21
|
-
|
21
|
+
type InputProps = {
|
22
22
|
/** on change is required and on input optional */
|
23
23
|
onChange: (e: string | number) => void;
|
24
24
|
onInputChange?: (e: FormEvent<HTMLInputElement>) => void;
|
@@ -27,6 +27,6 @@ declare type InputProps = {
|
|
27
27
|
onChange?: (e: string | number) => void;
|
28
28
|
onInputChange: (e: FormEvent<HTMLInputElement>) => void;
|
29
29
|
};
|
30
|
-
export
|
30
|
+
export type NumberInputProps = Props & InputProps;
|
31
31
|
export declare const NumberInput: React.ForwardRefExoticComponent<NumberInputProps & React.RefAttributes<HTMLInputElement>>;
|
32
32
|
export {};
|
@@ -1,13 +1,11 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
import { MarginProps } from '../utils/space';
|
3
3
|
import { BaseValueType } from './types';
|
4
|
-
declare
|
4
|
+
export declare const RadioElement: React.ForwardRefExoticComponent<{
|
5
5
|
name: string;
|
6
6
|
id: string;
|
7
|
-
value:
|
7
|
+
value: BaseValueType;
|
8
8
|
checked: boolean;
|
9
|
-
onChange: (value:
|
9
|
+
onChange: (value: BaseValueType) => void;
|
10
10
|
isError: boolean;
|
11
|
-
} & MarginProps
|
12
|
-
export declare const RadioElement: <Value extends BaseValueType>({ name, id, value, checked, onChange, isError, ...marginProps }: RadioElementProps<Value>) => JSX.Element;
|
13
|
-
export {};
|
11
|
+
} & MarginProps & React.RefAttributes<HTMLInputElement>>;
|
@@ -9,18 +9,18 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
9
9
|
}
|
10
10
|
return t;
|
11
11
|
};
|
12
|
-
import React from 'react';
|
12
|
+
import React, { forwardRef } from 'react';
|
13
13
|
import styled from 'styled-components';
|
14
14
|
import { theme } from '../theme';
|
15
15
|
import { visuallyHidden } from '../utils/visuallyHidden';
|
16
16
|
import { focusOutline } from '../utils/focusOutline';
|
17
17
|
import { Box } from '../Box';
|
18
|
-
export const RadioElement = (_a)
|
18
|
+
export const RadioElement = forwardRef(function RadioElement(_a) {
|
19
19
|
var { name, id, value, checked, onChange, isError } = _a, marginProps = __rest(_a, ["name", "id", "value", "checked", "onChange", "isError"]);
|
20
20
|
return (React.createElement(React.Fragment, null,
|
21
21
|
React.createElement(StyledInput, { type: "radio", name: name, id: id, value: `${value}`, checked: checked, onChange: () => onChange(value) }),
|
22
22
|
React.createElement(RadioCircle, Object.assign({ isError: isError, checked: checked }, marginProps))));
|
23
|
-
};
|
23
|
+
});
|
24
24
|
const StyledInput = styled.input `
|
25
25
|
${visuallyHidden}
|
26
26
|
`;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"RadioElement.js","sourceRoot":"","sources":["../../src/RadioGroup/RadioElement.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;
|
1
|
+
{"version":3,"file":"RadioElement.js","sourceRoot":"","sources":["../../src/RadioGroup/RadioElement.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AACzC,OAAO,MAAM,MAAM,mBAAmB,CAAA;AAEtC,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAEhC,OAAO,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAA;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AAEpD,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAA;AAY5B,MAAM,CAAC,MAAM,YAAY,GAAG,UAAU,CACpC,SAAS,YAAY,CAAC,EAQrB;QARqB,EACpB,IAAI,EACJ,EAAE,EACF,KAAK,EACL,OAAO,EACP,QAAQ,EACR,OAAO,OAER,EADI,WAAW,cAPM,yDAQrB,CADe;IAEd,OAAO,CACL;QACE,oBAAC,WAAW,IACV,IAAI,EAAC,OAAO,EACZ,IAAI,EAAE,IAAI,EACV,EAAE,EAAE,EAAE,EACN,KAAK,EAAE,GAAG,KAAK,EAAE,EACjB,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,KAAK,CAAC,GAC/B;QACF,oBAAC,WAAW,kBAAC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,IAAM,WAAW,EAAI,CACnE,CACJ,CAAA;AACH,CAAC,CACF,CAAA;AAED,MAAM,WAAW,GAAG,MAAM,CAAC,KAAK,CAAA;IAC5B,cAAc;CACjB,CAAA;AAED,MAAM,UAAU,GAAG,EAAE,CAAA;AAErB,MAAM,WAAW,GAAG,MAAM,CAAC,GAAG,CAAC,CAAwC;;WAE5D,UAAU;YACT,UAAU;mBACH,UAAU;sBACP,KAAK,CAAC,MAAM,CAAC,KAAK;;MAElC,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC;;IAExE,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE,EAAE,CACzB,CAAC,OAAO;IACR,CAAC,OAAO;IACR;;0BAEsB,KAAK,CAAC,MAAM,CAAC,SAAS;;GAE7C;;IAEC,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,EAAE,EAAE,CACzB,OAAO;IACP,qBACE,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,SAC9C,GAAG;;IAEH,YAAY,CAAC,EAAE,QAAQ,EAAE,GAAG,WAAW,oBAAoB,EAAE,CAAC;CACjE,CAAA"}
|
@@ -1,7 +1,7 @@
|
|
1
|
-
|
1
|
+
import React, { ReactElement } from 'react';
|
2
2
|
import { CommonFieldProps } from '../fields/commonFieldTypes';
|
3
3
|
import { BaseValueType, DisplayType } from './types';
|
4
|
-
export
|
4
|
+
export type RadioGroupProps<Value extends BaseValueType = BaseValueType> = {
|
5
5
|
options: Array<{
|
6
6
|
visual?: string;
|
7
7
|
label: string;
|
@@ -11,4 +11,13 @@ export declare type RadioGroupProps<Value extends BaseValueType = BaseValueType>
|
|
11
11
|
value: Value;
|
12
12
|
displayType?: DisplayType;
|
13
13
|
} & CommonFieldProps;
|
14
|
-
export declare const RadioGroup: <Value extends BaseValueType>(
|
14
|
+
export declare const RadioGroup: <Value extends BaseValueType = BaseValueType>(p: {
|
15
|
+
options: {
|
16
|
+
visual?: string | undefined;
|
17
|
+
label: string;
|
18
|
+
value: Value;
|
19
|
+
}[];
|
20
|
+
onChange: (value: Value) => void;
|
21
|
+
value: Value;
|
22
|
+
displayType?: DisplayType | undefined;
|
23
|
+
} & CommonFieldProps & React.RefAttributes<HTMLInputElement>) => ReactElement | null;
|
@@ -9,18 +9,19 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
9
9
|
}
|
10
10
|
return t;
|
11
11
|
};
|
12
|
-
import React from 'react';
|
12
|
+
import React, { forwardRef } from 'react';
|
13
13
|
import styled from 'styled-components';
|
14
14
|
import { useUniqueId } from '../utils/id';
|
15
15
|
import { Fieldset } from '../fields/Fieldset';
|
16
16
|
import { RadioItem } from './RadioItem';
|
17
17
|
import { ITEM_GAP } from './constants';
|
18
|
-
|
18
|
+
const RadioGroupComponent = (_a) => {
|
19
19
|
var { options, onChange, value, displayType = 'normal', renderAsTitle = false, error = false } = _a, fieldProps = __rest(_a, ["options", "onChange", "value", "displayType", "renderAsTitle", "error"]);
|
20
20
|
const name = useUniqueId();
|
21
21
|
return (React.createElement(Fieldset, Object.assign({ renderAsTitle: renderAsTitle, error: error }, fieldProps),
|
22
22
|
React.createElement(RadioItemList, { displayType: displayType }, options.map((option) => (React.createElement(RadioItem, { key: `${option.value}`, name: name, visual: option.visual, label: option.label, value: option.value, checked: option.value === value, onChange: onChange, displayType: displayType, isError: error }))))));
|
23
23
|
};
|
24
|
+
export const RadioGroup = forwardRef(RadioGroupComponent);
|
24
25
|
const RadioItemList = styled.div `
|
25
26
|
display: flex;
|
26
27
|
gap: ${ITEM_GAP}px;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"RadioGroup.js","sourceRoot":"","sources":["../../src/RadioGroup/RadioGroup.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;
|
1
|
+
{"version":3,"file":"RadioGroup.js","sourceRoot":"","sources":["../../src/RadioGroup/RadioGroup.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAgB,MAAM,OAAO,CAAA;AACvD,OAAO,MAAM,MAAM,mBAAmB,CAAA;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAA;AAEzC,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAE7C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAEvC,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAatC,MAAM,mBAAmB,GAAG,CAA8B,EAQjC,EAAE,EAAE;QAR6B,EACxD,OAAO,EACP,QAAQ,EACR,KAAK,EACL,WAAW,GAAG,QAAQ,EACtB,aAAa,GAAG,KAAK,EACrB,KAAK,GAAG,KAAK,OAEU,EADpB,UAAU,cAP2C,yEAQzD,CADc;IAEb,MAAM,IAAI,GAAG,WAAW,EAAE,CAAA;IAE1B,OAAO,CACL,oBAAC,QAAQ,kBAAC,aAAa,EAAE,aAAa,EAAE,KAAK,EAAE,KAAK,IAAM,UAAU;QAClE,oBAAC,aAAa,IAAC,WAAW,EAAE,WAAW,IACpC,OAAO,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CACvB,oBAAC,SAAS,IACR,GAAG,EAAE,GAAG,MAAM,CAAC,KAAK,EAAE,EACtB,IAAI,EAAE,IAAI,EACV,MAAM,EAAE,MAAM,CAAC,MAAM,EACrB,KAAK,EAAE,MAAM,CAAC,KAAK,EACnB,KAAK,EAAE,MAAM,CAAC,KAAK,EACnB,OAAO,EAAE,MAAM,CAAC,KAAK,KAAK,KAAK,EAC/B,QAAQ,EAAE,QAAQ,EAClB,WAAW,EAAE,WAAW,EACxB,OAAO,EAAE,KAAK,GACd,CACH,CAAC,CACY,CACP,CACZ,CAAA;AACH,CAAC,CAAA;AAED,MAAM,CAAC,MAAM,UAAU,GAAG,UAAU,CAAC,mBAAmB,CAIhC,CAAA;AAExB,MAAM,aAAa,GAAG,MAAM,CAAC,GAAG,CAAsC;;SAE7D,QAAQ;;IAEb,CAAC,EAAE,WAAW,EAAE,EAAE,EAAE;IACpB,IAAI,WAAW,KAAK,iBAAiB,EAAE;QACrC,OAAO;;;OAGN,CAAA;KACF;IAED,OAAO,yBAAyB,CAAA;AAClC,CAAC;CACF,CAAA"}
|
@@ -1,8 +1,16 @@
|
|
1
|
-
|
2
|
-
import { RadioGroupProps } from './RadioGroup';
|
1
|
+
import React from 'react';
|
3
2
|
declare const _default: {
|
4
3
|
title: string;
|
5
|
-
component: <Value extends import("./types").BaseValueType>(
|
4
|
+
component: <Value extends import("./types").BaseValueType = import("./types").BaseValueType>(p: {
|
5
|
+
options: {
|
6
|
+
visual?: string | undefined;
|
7
|
+
label: string;
|
8
|
+
value: Value;
|
9
|
+
}[];
|
10
|
+
onChange: (value: Value) => void;
|
11
|
+
value: Value;
|
12
|
+
displayType?: import("./types").DisplayType | undefined;
|
13
|
+
} & import("../fields/commonFieldTypes").CommonFieldProps & React.RefAttributes<HTMLInputElement>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;
|
6
14
|
argTypes: {
|
7
15
|
onChange: {
|
8
16
|
action: string;
|
@@ -1,14 +1,14 @@
|
|
1
|
-
|
1
|
+
import React from 'react';
|
2
2
|
import { BaseValueType, DisplayType } from './types';
|
3
|
-
|
3
|
+
type RadioItemProps = {
|
4
4
|
name: string;
|
5
5
|
visual?: string;
|
6
|
-
value:
|
6
|
+
value: BaseValueType;
|
7
7
|
label: string;
|
8
8
|
checked: boolean;
|
9
|
-
onChange: (value:
|
9
|
+
onChange: (value: BaseValueType) => void;
|
10
10
|
displayType: DisplayType;
|
11
11
|
isError: boolean;
|
12
12
|
};
|
13
|
-
export declare const RadioItem: <
|
13
|
+
export declare const RadioItem: React.ForwardRefExoticComponent<RadioItemProps & React.RefAttributes<HTMLInputElement>>;
|
14
14
|
export {};
|
@@ -1,19 +1,19 @@
|
|
1
|
-
import React from 'react';
|
1
|
+
import React, { forwardRef } from 'react';
|
2
2
|
import styled, { css } from 'styled-components';
|
3
3
|
import { useUniqueId } from '../utils/id';
|
4
4
|
import { theme } from '../theme';
|
5
5
|
import { RadioElement } from './RadioElement';
|
6
6
|
import { ITEM_GAP } from './constants';
|
7
7
|
import { Box } from '../Box';
|
8
|
-
export const RadioItem = ({ name, visual, label, value, checked, onChange, displayType, isError,
|
8
|
+
export const RadioItem = forwardRef(function RadioItem({ name, visual, label, value, checked, onChange, displayType, isError }, ref) {
|
9
9
|
const id = useUniqueId();
|
10
10
|
return (React.createElement(Wrapper, { htmlFor: id, checked: checked, displayType: displayType, "data-testid": value },
|
11
11
|
visual && (React.createElement(VisualWrapper, null,
|
12
12
|
React.createElement(Visual, { visualUrl: visual }))),
|
13
13
|
React.createElement(Box, { flex: true, direction: "row", alignItems: "flex-start" },
|
14
|
-
React.createElement(RadioElement, { name: name, id: id, value: value, checked: checked, onChange: onChange, isError: isError, mr: "8px" }),
|
14
|
+
React.createElement(RadioElement, { ref: ref, name: name, id: id, value: value, checked: checked, onChange: onChange, isError: isError, mr: "8px" }),
|
15
15
|
React.createElement(RadioText, { isError: isError }, label))));
|
16
|
-
};
|
16
|
+
});
|
17
17
|
const VisualWrapper = styled.div `
|
18
18
|
width: 100%;
|
19
19
|
max-width: 120px;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"RadioItem.js","sourceRoot":"","sources":["../../src/RadioGroup/RadioItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;
|
1
|
+
{"version":3,"file":"RadioItem.js","sourceRoot":"","sources":["../../src/RadioGroup/RadioItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,UAAU,EAAE,MAAM,OAAO,CAAA;AACzC,OAAO,MAAM,EAAE,EAAE,GAAG,EAAE,MAAM,mBAAmB,CAAA;AAE/C,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAA;AACzC,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAEhC,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAA;AAE7C,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AACtC,OAAO,EAAE,GAAG,EAAE,MAAM,QAAQ,CAAA;AAa5B,MAAM,CAAC,MAAM,SAAS,GAAG,UAAU,CACjC,SAAS,SAAS,CAChB,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,OAAO,EAAE,EACvE,GAAG;IAEH,MAAM,EAAE,GAAG,WAAW,EAAE,CAAA;IACxB,OAAO,CACL,oBAAC,OAAO,IACN,OAAO,EAAE,EAAE,EACX,OAAO,EAAE,OAAO,EAChB,WAAW,EAAE,WAAW,iBACX,KAAK;QAEjB,MAAM,IAAI,CACT,oBAAC,aAAa;YACZ,oBAAC,MAAM,IAAC,SAAS,EAAE,MAAM,GAAI,CACf,CACjB;QACD,oBAAC,GAAG,IAAC,IAAI,QAAC,SAAS,EAAC,KAAK,EAAC,UAAU,EAAC,YAAY;YAC/C,oBAAC,YAAY,IACX,GAAG,EAAE,GAAG,EACR,IAAI,EAAE,IAAI,EACV,EAAE,EAAE,EAAE,EACN,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,OAAO,EAChB,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,OAAO,EAChB,EAAE,EAAC,KAAK,GACR;YACF,oBAAC,SAAS,IAAC,OAAO,EAAE,OAAO,IAAG,KAAK,CAAa,CAC5C,CACE,CACX,CAAA;AACH,CAAC,CACF,CAAA;AAED,MAAM,aAAa,GAAG,MAAM,CAAC,GAAG,CAAA;;;;CAI/B,CAAA;AAED,MAAM,MAAM,GAAG,MAAM,CAAC,GAAG,CAAuB;;;2BAGrB,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,SAAS;;;;CAI5C,CAAA;AAED,MAAM,OAAO,GAAG,MAAM,CAAC,KAAK,CAAiD;;;;;IAKzE,CAAC,EAAE,WAAW,EAAE,OAAO,EAAE,EAAE,EAAE,CAC7B,GAAG,CAAA;QACC,CAAC,WAAW,KAAK,iBAAiB;IAClC,WAAW,KAAK,eAAe,CAAC;IAClC,GAAG,CAAA;;4BAEmB,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,YAAY,CAAC;mBACvD,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM;UAClC,OAAO,IAAI,qBAAqB,KAAK,CAAC,MAAM,CAAC,SAAS,GAAG;OAC5D;QACC,WAAW,KAAK,iBAAiB;IACnC,GAAG,CAAA;;;;8BAIqB,QAAQ,GAAG,CAAC;;;;;;OAMnC;KACF;CACJ,CAAA;AAED,MAAM,SAAS,GAAG,MAAM,CAAC,IAAI,CAAsB;;;iBAGlC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM;WAC9B,CAAC,EAAE,OAAO,EAAE,EAAE,EAAE,CACvB,OAAO,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,SAAS;;CAExD,CAAA"}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export
|
2
|
-
export
|
1
|
+
export type DisplayType = 'normal' | 'vertical-card' | 'horizontal-card';
|
2
|
+
export type BaseValueType = string | boolean | null;
|
package/dist/Row/Row.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import React, { FocusEvent } from 'react';
|
2
2
|
import { CommonFieldProps } from '../fields/commonFieldTypes';
|
3
|
-
export
|
3
|
+
export type SearchInputItem = {
|
4
4
|
label: string;
|
5
5
|
value: string;
|
6
6
|
};
|
@@ -15,4 +15,4 @@ export interface SearchInputProps extends CommonFieldProps {
|
|
15
15
|
outlined?: boolean;
|
16
16
|
value?: string;
|
17
17
|
}
|
18
|
-
export declare const SearchInput:
|
18
|
+
export declare const SearchInput: React.ForwardRefExoticComponent<SearchInputProps & React.RefAttributes<HTMLInputElement>>;
|
@@ -9,7 +9,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
9
9
|
}
|
10
10
|
return t;
|
11
11
|
};
|
12
|
-
import React, { useMemo, useState } from 'react';
|
12
|
+
import React, { forwardRef, useMemo, useState, } from 'react';
|
13
13
|
import styled from 'styled-components';
|
14
14
|
import { darken } from 'polished';
|
15
15
|
import { theme } from '../theme';
|
@@ -18,7 +18,7 @@ import { Field } from '../fields/Field';
|
|
18
18
|
import { useUniqueId } from '../utils/id';
|
19
19
|
import { useControllableState } from '../utils/useControlledState';
|
20
20
|
import { SearchOptions } from './SearchOptions';
|
21
|
-
export const SearchInput = (_a)
|
21
|
+
export const SearchInput = forwardRef(function SearchInput(_a, ref) {
|
22
22
|
var { id: idProp, name = 'search_input', className = '', placeholder, searchList, onFound, resultsRelativePosition = false, outlined = false, showIcon = false, renderAsTitle = false, onBlur, value } = _a, otherProps = __rest(_a, ["id", "name", "className", "placeholder", "searchList", "onFound", "resultsRelativePosition", "outlined", "showIcon", "renderAsTitle", "onBlur", "value"]);
|
23
23
|
const id = useUniqueId(idProp);
|
24
24
|
const [showOptions, setShowOptions] = useState(false);
|
@@ -66,9 +66,9 @@ export const SearchInput = (_a) => {
|
|
66
66
|
return (React.createElement(Field, Object.assign({ className: className, renderAsTitle: renderAsTitle, htmlFor: id, outlined: outlined }, otherProps),
|
67
67
|
React.createElement(StyledInputBox, { outlined: outlined, selected: isSelected },
|
68
68
|
showIcon && React.createElement(SearchIcon, { size: 24, render: "search", color: "subtext" }),
|
69
|
-
React.createElement(StyledInput, { id: id, type: "text", name: name, placeholder: placeholder, autoComplete: "off", value: displayedInputText, onChange: handleInputChange, outlined: outlined, selected: isSelected, onBlur: onBlur })),
|
69
|
+
React.createElement(StyledInput, { ref: ref, id: id, type: "text", name: name, placeholder: placeholder, autoComplete: "off", value: displayedInputText, onChange: handleInputChange, outlined: outlined, selected: isSelected, onBlur: onBlur })),
|
70
70
|
showOptions && (React.createElement(SearchOptions, { displayedList: filteredList, onSelect: handleSelect, outlined: outlined, positionRelative: resultsRelativePosition }))));
|
71
|
-
};
|
71
|
+
});
|
72
72
|
const StyledInputBox = styled.div `
|
73
73
|
display: flex;
|
74
74
|
align-items: center;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"SearchInput.js","sourceRoot":"","sources":["../../src/SearchInput/SearchInput.tsx"],"names":[],"mappings":";;;;;;;;;;;AAAA,OAAO,KAAK,EAAE,
|
1
|
+
{"version":3,"file":"SearchInput.js","sourceRoot":"","sources":["../../src/SearchInput/SearchInput.tsx"],"names":[],"mappings":"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"}
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
2
2
|
import { SearchInputProps } from './SearchInput';
|
3
3
|
declare const _default: {
|
4
4
|
title: string;
|
5
|
-
component: React.
|
5
|
+
component: React.ForwardRefExoticComponent<SearchInputProps & React.RefAttributes<HTMLInputElement>>;
|
6
6
|
};
|
7
7
|
export default _default;
|
8
8
|
export declare const Default: any;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { FC } from 'react';
|
2
|
-
|
2
|
+
type Option = {
|
3
3
|
label: string;
|
4
4
|
value: string;
|
5
5
|
};
|
6
|
-
|
6
|
+
type SearchOptionsProps = {
|
7
7
|
displayedList: Array<Option>;
|
8
8
|
onSelect: (option: Option) => void;
|
9
9
|
positionRelative: boolean;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { FC, MouseEventHandler, ReactElement } from 'react';
|
2
2
|
import { MarginProps } from '../utils/space';
|
3
|
-
|
4
|
-
export
|
3
|
+
type SupportMessageType = 'info' | 'info-outline' | 'alert' | 'warning';
|
4
|
+
export type SupportMessageProps = {
|
5
5
|
className?: string;
|
6
6
|
description: string | ReactElement;
|
7
7
|
onClick?: MouseEventHandler;
|
package/dist/Tag/Tag.d.ts
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
import { FC } from 'react';
|
2
2
|
import { MarginProps } from '../utils/space';
|
3
3
|
import { Color } from '../theme';
|
4
|
-
export
|
4
|
+
export type DefaultProps = {
|
5
5
|
label: string;
|
6
6
|
className?: string;
|
7
7
|
color: Color;
|
8
8
|
typo?: string;
|
9
9
|
} & MarginProps;
|
10
|
-
|
10
|
+
type GradientProps = {
|
11
11
|
bgColor: Color;
|
12
12
|
borderColor: Color;
|
13
13
|
bgGradient?: boolean;
|
@@ -16,6 +16,6 @@ declare type GradientProps = {
|
|
16
16
|
borderColor?: Color;
|
17
17
|
bgGradient: boolean;
|
18
18
|
};
|
19
|
-
export
|
19
|
+
export type TagProps = DefaultProps & GradientProps;
|
20
20
|
export declare const Tag: FC<TagProps>;
|
21
21
|
export {};
|
package/dist/Text/Text.d.ts
CHANGED
@@ -4,9 +4,9 @@ import { MarginProps } from '../utils/space';
|
|
4
4
|
/**
|
5
5
|
* @deprecated Use only new Typo
|
6
6
|
*/
|
7
|
-
export
|
8
|
-
export
|
9
|
-
|
7
|
+
export type DeprecatedTypo = 'header-large' | 'header-medium' | 'header-small' | 'desc-heavy' | 'desc-medium' | 'desc-light' | 'desc-small' | 'base' | 'base-small' | 'base-xsmall' | 'label-large';
|
8
|
+
export type Typo = 'hero-alternate' | 'hero' | 'heading-large' | 'heading-medium' | 'heading-small' | 'headline-regular' | 'headline-small' | 'body-standfirst' | 'body-regular' | 'body-small' | 'caption' | 'label';
|
9
|
+
type Props = {
|
10
10
|
children: ReactNode;
|
11
11
|
tag?: any;
|
12
12
|
className?: string;
|
@@ -16,6 +16,6 @@ declare type Props = {
|
|
16
16
|
cursor?: string;
|
17
17
|
title?: string;
|
18
18
|
} & MarginProps;
|
19
|
-
export
|
19
|
+
export type TextProps = Props & Omit<LabelHTMLAttributes<HTMLElement>, 'color'>;
|
20
20
|
export declare const Text: FC<TextProps>;
|
21
21
|
export {};
|
@@ -11,7 +11,7 @@ interface Props extends CommonFieldProps {
|
|
11
11
|
outlined?: boolean;
|
12
12
|
}
|
13
13
|
/** on change or on input required */
|
14
|
-
|
14
|
+
type InputProps = {
|
15
15
|
/** on change is required and on input optional */
|
16
16
|
onChange: (e: string) => void;
|
17
17
|
onInputChange?: (e: FormEvent<HTMLInputElement>) => void;
|
@@ -20,6 +20,6 @@ declare type InputProps = {
|
|
20
20
|
onChange?: (e: string) => void;
|
21
21
|
onInputChange: (e: FormEvent<HTMLInputElement>) => void;
|
22
22
|
};
|
23
|
-
export
|
23
|
+
export type TextInputProps = Props & InputProps;
|
24
24
|
export declare const TextInput: React.ForwardRefExoticComponent<TextInputProps & React.RefAttributes<HTMLInputElement>>;
|
25
25
|
export {};
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React, { FocusEvent, FormEvent } from 'react';
|
2
2
|
import { CommonFieldProps } from '../fields/commonFieldTypes';
|
3
3
|
import { MarginProps } from '../utils/space';
|
4
|
-
|
4
|
+
type BaseProps = {
|
5
5
|
id?: string;
|
6
6
|
placeholder?: string;
|
7
7
|
name?: string;
|
@@ -14,13 +14,13 @@ declare type BaseProps = {
|
|
14
14
|
onBlur?: (e: FocusEvent<HTMLTextAreaElement>) => void;
|
15
15
|
rows?: number;
|
16
16
|
} & CommonFieldProps & MarginProps;
|
17
|
-
|
17
|
+
type TruncateProps = {
|
18
18
|
onChange: (e: string) => void;
|
19
19
|
onInputChange?: (e: FormEvent<HTMLTextAreaElement>) => void;
|
20
20
|
} | {
|
21
21
|
onChange?: (e: string) => void;
|
22
22
|
onInputChange: (e: FormEvent<HTMLTextAreaElement>) => void;
|
23
23
|
};
|
24
|
-
export
|
24
|
+
export type TextareaProps = BaseProps & TruncateProps;
|
25
25
|
export declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
26
26
|
export {};
|
package/dist/Toggle/Toggle.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
import { MarginProps } from '../../utils/space';
|
3
3
|
import { CommonFieldProps } from '../commonFieldTypes';
|
4
|
-
export
|
4
|
+
export type FieldsetProps = CommonFieldProps & MarginProps;
|
5
5
|
export declare const Fieldset: ({ children, renderAsTitle, id, ...fieldProps }: FieldsetProps) => JSX.Element;
|
package/dist/theme.d.ts
CHANGED
package/dist/utils/flex.d.ts
CHANGED
package/dist/utils/measure.d.ts
CHANGED
package/dist/utils/space.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
type Spacing = '8px' | '12px' | '16px' | '24px' | '32px' | '48px' | '64px';
|
2
|
+
type SpacingProp = '0' | Spacing | {
|
3
3
|
custom: number | string;
|
4
4
|
};
|
5
5
|
export interface MarginProps {
|