@toptal/picasso-input 4.1.2 → 4.1.3-alpha-1757603192867.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/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@toptal/picasso-input",
3
- "version": "4.1.2",
3
+ "version": "4.1.3-alpha-1757603192867.0",
4
4
  "description": "Toptal UI components library - Input",
5
5
  "publishConfig": {
6
- "access": "public"
6
+ "access": "public",
7
+ "provenance": true
7
8
  },
8
9
  "main": "./dist-package/src/index.js",
9
10
  "module": "./dist-package/src/index.js",
10
11
  "scripts": {
11
12
  "build:package": "tsc -b tsconfig.json",
12
- "prepublishOnly": "yarn build:package"
13
+ "prepublishOnly": "echo 0"
13
14
  },
14
15
  "repository": {
15
16
  "type": "git",
@@ -22,20 +23,20 @@
22
23
  },
23
24
  "homepage": "https://github.com/toptal/picasso/tree/master/packages/picasso#readme",
24
25
  "dependencies": {
25
- "@toptal/picasso-container": "3.1.2",
26
- "@toptal/picasso-form": "6.3.2",
27
- "@toptal/picasso-icons": "1.12.1",
28
- "@toptal/picasso-input-adornment": "3.0.10",
29
- "@toptal/picasso-outlined-input": "4.1.2",
30
- "@toptal/picasso-shared": "15.0.0",
31
- "@toptal/picasso-utils": "3.1.0"
26
+ "@toptal/picasso-container": "3.1.3-alpha-1757603192867.0",
27
+ "@toptal/picasso-form": "6.3.3-alpha-1757603192867.0",
28
+ "@toptal/picasso-icons": "1.12.2-alpha-1757603192867.0",
29
+ "@toptal/picasso-input-adornment": "3.0.11-alpha-1757603192867.0",
30
+ "@toptal/picasso-outlined-input": "4.1.3-alpha-1757603192867.0",
31
+ "@toptal/picasso-shared": "15.0.1-alpha-1757603192867.0",
32
+ "@toptal/picasso-utils": "3.1.1-alpha-1757603192867.0"
32
33
  },
33
34
  "sideEffects": [
34
35
  "**/styles.ts",
35
36
  "**/styles.js"
36
37
  ],
37
38
  "peerDependencies": {
38
- "@toptal/picasso-tailwind": ">=2.7",
39
+ "@toptal/picasso-tailwind": "3.0.1-alpha-1757603192867.0",
39
40
  "react": ">=16.12.0 < 19.0.0"
40
41
  },
41
42
  "exports": {
@@ -43,7 +44,7 @@
43
44
  "./styles": "./dist-package/src/styles.js"
44
45
  },
45
46
  "devDependencies": {
46
- "@toptal/picasso-test-utils": "1.1.1"
47
+ "@toptal/picasso-test-utils": "1.1.2-alpha-1757603192867.0"
47
48
  },
48
49
  "files": [
49
50
  "dist-package/**",
@@ -1,68 +0,0 @@
1
- import type { ReactNode, ChangeEvent, InputHTMLAttributes, MouseEvent } from 'react';
2
- import React from 'react';
3
- import type { BaseProps, SizeType } from '@toptal/picasso-shared';
4
- import type { InputLimitAdornmentProps, InputIconAdornmentProps } from '@toptal/picasso-input-adornment';
5
- import type { BaseInputProps, Status } from '@toptal/picasso-outlined-input';
6
- export interface Props extends BaseProps, Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> {
7
- /** The id of the `input` element. */
8
- id?: string;
9
- /** Name attribute of the input element */
10
- name?: string;
11
- /** The default `input` element value. Use when the component is not controlled. */
12
- defaultValue?: string;
13
- /** The value of the `input` element, required for a controlled component. */
14
- value?: string;
15
- /** Placeholder for value */
16
- placeholder?: string;
17
- /** Indicate `Input` status */
18
- status?: Status;
19
- /** If true, the `Input` will be disabled */
20
- disabled?: boolean;
21
- /** Width of the component */
22
- width?: 'full' | 'shrink' | 'auto';
23
- /** Whether icon should be placed at the beginning or end of the `Input` */
24
- iconPosition?: InputIconAdornmentProps['position'];
25
- /** Specify icon which should be rendered inside Input */
26
- icon?: InputIconAdornmentProps['icon'];
27
- inputProps?: BaseInputProps;
28
- /** Whether `Input` should be rendered as `TextArea` or not */
29
- multiline?: boolean;
30
- /** Whether a multiline can be manually resized by the user, requires multiline prop to be set to true */
31
- multilineResizable?: boolean;
32
- /** If true, the input element will be focused during the first mount */
33
- autoFocus?: boolean;
34
- /** Specify rows amount for `TextArea` */
35
- rows?: string | number;
36
- /** Maximum number of rows to display when multiline option is set to true. */
37
- rowsMax?: string | number;
38
- /** Type attribute of the Input element. It should be a valid HTML5 input type */
39
- type?: string;
40
- /** Adds element at the start of the input - can't be used in combination with `iconPosition: start` */
41
- startAdornment?: ReactNode;
42
- /** Adds element at the end of the input - can't be used in combination with `iconPosition: end` */
43
- endAdornment?: ReactNode;
44
- /** Callback invoked when `Input` changes its state */
45
- onChange?: (event: ChangeEvent<HTMLTextAreaElement | HTMLInputElement | HTMLSelectElement>) => void;
46
- /** Adds a counter of characters (ignored in combination with `counter: entered`) */
47
- limit?: InputLimitAdornmentProps['limit'];
48
- /** Type of the counter of characters */
49
- counter?: InputLimitAdornmentProps['counter'];
50
- /** Component size */
51
- size?: SizeType<'small' | 'medium' | 'large'>;
52
- /** Whether to render reset icon when there is a value in the input */
53
- enableReset?: boolean;
54
- /** Callback invoked when reset button was clicked */
55
- onResetClick?: (event: MouseEvent<HTMLButtonElement & HTMLAnchorElement>) => void;
56
- /** Ref of the input outline */
57
- outlineRef?: React.Ref<HTMLElement>;
58
- testIds?: {
59
- inputAdornment?: string;
60
- resetButton?: string;
61
- validIcon?: string;
62
- };
63
- setHasMultilineCounter?: (name: string, hasCounter: boolean) => void;
64
- highlight?: 'autofill';
65
- }
66
- export declare const Input: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLInputElement>>;
67
- export default Input;
68
- //# sourceMappingURL=Input.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/Input/Input.tsx"],"names":[],"mappings":"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"}
@@ -1,103 +0,0 @@
1
- var __rest = (this && this.__rest) || function (s, e) {
2
- var t = {};
3
- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
- t[p] = s[p];
5
- if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
- for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
- if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
- t[p[i]] = s[p[i]];
9
- }
10
- return t;
11
- };
12
- import React, { forwardRef } from 'react';
13
- import { useHasMultilineCounter } from '@toptal/picasso-shared';
14
- import { OutlinedInput } from '@toptal/picasso-outlined-input';
15
- import { disableUnsupportedProps } from '@toptal/picasso-utils';
16
- import { InputLimitAdornment, InputIconAdornment, InputValidIconAdornment, } from '@toptal/picasso-input-adornment';
17
- import { Container } from '@toptal/picasso-container';
18
- import { useFieldsLayoutContext } from '@toptal/picasso-form';
19
- const hasRemainingCounter = ({ counter, limit, }) => Boolean(counter === 'remaining' && limit);
20
- const hasEnteredCounter = ({ counter }) => counter === 'entered';
21
- const hasCounter = ({ counter, limit }) => hasRemainingCounter({ counter, limit }) || hasEnteredCounter({ counter });
22
- const hasMultilineAdornment = ({ multiline, status, counter, limit, }) => multiline && (status === 'success' || hasCounter({ counter, limit }));
23
- const StartAdornment = ({ icon, iconPosition, disabled, }) => {
24
- if (!icon || iconPosition !== 'start') {
25
- return null;
26
- }
27
- return React.createElement(InputIconAdornment, { disabled: disabled, position: 'start', icon: icon });
28
- };
29
- const EndAdornment = (props) => {
30
- const { icon, iconPosition, disabled, limit, multiline, charsLength, testIds, counter, showCounter, } = props;
31
- if (icon && iconPosition === 'end') {
32
- return React.createElement(InputIconAdornment, { disabled: disabled, position: 'end', icon: icon });
33
- }
34
- if (!multiline && showCounter) {
35
- return (React.createElement(InputLimitAdornment
36
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
37
- , {
38
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
39
- charsLength: charsLength, multiline: multiline,
40
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
41
- counter: counter,
42
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
43
- limit: limit, testIds: testIds }));
44
- }
45
- return null;
46
- };
47
- const MultilineAdornment = ({ charsLength, counter, limit, showCounter, status, testIds, }) => {
48
- const { layout } = useFieldsLayoutContext();
49
- return (React.createElement(Container, { flex: true, className: layout === 'horizontal' ? '[grid-area:error]' : '' },
50
- showCounter && (React.createElement(InputLimitAdornment, { testIds: testIds,
51
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
52
- charsLength: charsLength,
53
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
54
- counter: counter,
55
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
56
- limit: limit, multiline: true })),
57
- status === 'success' && (React.createElement(InputValidIconAdornment, { "data-testid": testIds === null || testIds === void 0 ? void 0 : testIds.validIcon, multiline: true }))));
58
- };
59
- const purifyProps = (props) => {
60
- const sizeOptions = {
61
- featureProps: {
62
- size: 'small',
63
- },
64
- unsupportedProps: {
65
- multiline: false,
66
- icon: undefined,
67
- startAdornment: undefined,
68
- endAdornment: undefined,
69
- limit: undefined,
70
- },
71
- };
72
- return disableUnsupportedProps('Input', props, sizeOptions);
73
- };
74
- export const Input = forwardRef(function Input(props, ref) {
75
- const _a = purifyProps(props), { id, name, defaultValue, value, placeholder, status, disabled, icon, iconPosition, inputProps, children, multiline, multilineResizable, autoFocus, width, className, style, rows, rowsMax, type, onChange, onClick, startAdornment, endAdornment, limit, counter, size, enableReset, onResetClick, outlineRef, testIds, setHasMultilineCounter, highlight } = _a, rest = __rest(_a, ["id", "name", "defaultValue", "value", "placeholder", "status", "disabled", "icon", "iconPosition", "inputProps", "children", "multiline", "multilineResizable", "autoFocus", "width", "className", "style", "rows", "rowsMax", "type", "onChange", "onClick", "startAdornment", "endAdornment", "limit", "counter", "size", "enableReset", "onResetClick", "outlineRef", "testIds", "setHasMultilineCounter", "highlight"]);
76
- const charsLength = value ? value.length : 0;
77
- const showCounter = !!charsLength && hasCounter({ counter, limit });
78
- useHasMultilineCounter(name, showCounter && multiline, setHasMultilineCounter);
79
- return (React.createElement(React.Fragment, null,
80
- React.createElement(OutlinedInput, { ref: outlineRef, inputRef: ref, className: className, style: style, highlight: highlight, multiline: multiline, multilineResizable: multilineResizable, id: id, name: name, defaultValue: defaultValue, value: value, placeholder: placeholder, status: status, disabled: disabled, autoFocus: autoFocus, rows: rows, rowsMax: rowsMax, type: type, width: width, size: size, onClick: onClick,
81
- // html attributes
82
- inputProps: Object.assign(Object.assign({}, rest), inputProps), startAdornment: startAdornment || (React.createElement(StartAdornment, { icon: icon, iconPosition: iconPosition, disabled: disabled })), endAdornment: endAdornment || (React.createElement(EndAdornment, { icon: icon, iconPosition: iconPosition, disabled: disabled, limit: limit, charsLength: charsLength, multiline: multiline, counter: counter, status: status, testIds: testIds, showCounter: showCounter })), onChange: onChange, enableReset: enableReset, onResetClick: onResetClick, testIds: testIds }, children),
83
- hasMultilineAdornment({
84
- multiline,
85
- status,
86
- limit,
87
- counter,
88
- }) && (React.createElement(MultilineAdornment, { charsLength: charsLength, status: status, testIds: testIds, showCounter: showCounter, counter: counter, limit: limit }))));
89
- });
90
- Input.defaultProps = {
91
- autoComplete: 'none',
92
- counter: 'remaining',
93
- iconPosition: 'start',
94
- multiline: false,
95
- size: 'medium',
96
- width: 'auto',
97
- onChange: () => { },
98
- onResetClick: () => { },
99
- status: 'default',
100
- };
101
- Input.displayName = 'Input';
102
- export default Input;
103
- //# sourceMappingURL=Input.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Input.js","sourceRoot":"","sources":["../../../src/Input/Input.tsx"],"names":[],"mappings":"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"}
@@ -1,5 +0,0 @@
1
- import type { OmitInternalProps } from '@toptal/picasso-shared';
2
- import type { Props as InternalInputProps } from './Input';
3
- export { default as Input } from './Input';
4
- export declare type InputProps = OmitInternalProps<InternalInputProps>;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/Input/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAA;AAE/D,OAAO,KAAK,EAAE,KAAK,IAAI,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAC1D,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAA;AAC1C,oBAAY,UAAU,GAAG,iBAAiB,CAAC,kBAAkB,CAAC,CAAA"}
@@ -1,2 +0,0 @@
1
- export { default as Input } from './Input';
2
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/Input/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,SAAS,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from './Input';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from './Input';
2
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAA"}