@dxc-technology/halstack-react 0.0.0-83f5e92 → 0.0.0-84c9364

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.
@@ -0,0 +1,70 @@
1
+ import React from "react";
2
+ import DxcLink from "./Link";
3
+ import Title from "../../.storybook/components/Title";
4
+ import ExampleContainer from "../../.storybook/components/ExampleContainer";
5
+
6
+ export default {
7
+ title: "Link",
8
+ component: DxcLink,
9
+ };
10
+
11
+ const icon = (
12
+ <svg viewBox="0 0 24 24" enable-background="new 0 0 24 24" fill="currentColor">
13
+ <g id="Bounding_Box">
14
+ <rect fill="none" width="24" height="24" />
15
+ </g>
16
+ <g id="Master">
17
+ <path d="M19,9.3V4h-3v2.6L12,3L2,12h3v8h5v-6h4v6h5v-8h3L19,9.3z M10,10c0-1.1,0.9-2,2-2s2,0.9,2,2H10z" />
18
+ </g>
19
+ </svg>
20
+ );
21
+
22
+ export const Chromatic = () => (
23
+ <>
24
+ <ExampleContainer>
25
+ <Title title="Disabled" theme="light" level={4} />
26
+ <DxcLink text="Test" disabled></DxcLink>
27
+ <Title title="Icon before" theme="light" level={4} />
28
+ <DxcLink text="Test" href="https://www.google.com" icon={icon} iconPosition="before"></DxcLink>
29
+ <Title title="Icon after" theme="light" level={4} />
30
+ <DxcLink text="Test" href="https://www.youtube.com/" icon={icon} iconPosition="after"></DxcLink>
31
+ </ExampleContainer>
32
+ <ExampleContainer pseudoState="pseudo-hover">
33
+ <Title title="With link hovered" theme="light" level={4} />
34
+ <DxcLink text="Test" href="https://www.dxc.com"></DxcLink>
35
+ </ExampleContainer>
36
+ <ExampleContainer pseudoState="pseudo-focus">
37
+ <Title title="With link focused" theme="light" level={4} />
38
+ <DxcLink text="Test" href="https://www.dxc.com"></DxcLink>
39
+ </ExampleContainer>
40
+ <ExampleContainer pseudoState="pseudo-active">
41
+ <Title title="With link active" theme="light" level={4} />
42
+ <DxcLink text="Test" href="https://www.dxc.com"></DxcLink>
43
+ </ExampleContainer>
44
+ <ExampleContainer pseudoState="pseudo-visited">
45
+ <Title title="With link visited" theme="light" level={4} />
46
+ <DxcLink text="Test" href="https://www.amazon.com"></DxcLink>
47
+ </ExampleContainer>
48
+ <ExampleContainer>
49
+ <Title title="Inherit color" theme="light" level={4} />
50
+ This is a <DxcLink text="Test" inheritColor={true}></DxcLink>.
51
+ </ExampleContainer>
52
+ <Title title="Margins" theme="light" level={2} />
53
+ <ExampleContainer>
54
+ <Title title="Xxsmall margin" theme="light" level={4} />
55
+ <DxcLink text="Test" margin="xxsmall" href="https://www.facebook.com/"></DxcLink>
56
+ <Title title="Xsmall margin" theme="light" level={4} />
57
+ <DxcLink text="Test" margin="xsmall" href="https://www.linkedin.com/"></DxcLink>
58
+ <Title title="Small margin" theme="light" level={4} />
59
+ <DxcLink text="Test" margin="small" href="https://www.linkedin.com/"></DxcLink>
60
+ <Title title="Medium margin" theme="light" level={4} />
61
+ <DxcLink text="Test" margin="medium" href="https://www.linkedin.com/"></DxcLink>
62
+ <Title title="Large margin" theme="light" level={4} />
63
+ <DxcLink text="Test" margin="large" href="https://www.linkedin.com/"></DxcLink>
64
+ <Title title="Xlarge margin" theme="light" level={4} />
65
+ <DxcLink text="Test" margin="xlarge" href="https://www.linkedin.com/"></DxcLink>
66
+ <Title title="Xxlarge margin" theme="light" level={4} />
67
+ <DxcLink text="Test" margin="xxlarge" href="https://www.linkedin.com/"></DxcLink>
68
+ </ExampleContainer>
69
+ </>
70
+ );
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import NumberInputPropsType from "./types";
3
+ declare const DxcNumberInput: React.ForwardRefExoticComponent<NumberInputPropsType & React.RefAttributes<HTMLDivElement>>;
4
+ export default DxcNumberInput;
@@ -7,22 +7,16 @@ Object.defineProperty(exports, "__esModule", {
7
7
  });
8
8
  exports["default"] = void 0;
9
9
 
10
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
11
-
12
10
  var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
13
11
 
14
12
  var _react = _interopRequireDefault(require("react"));
15
13
 
16
- var _propTypes = _interopRequireDefault(require("prop-types"));
17
-
18
14
  var _styledComponents = _interopRequireDefault(require("styled-components"));
19
15
 
20
16
  var _TextInput = _interopRequireDefault(require("../text-input/TextInput"));
21
17
 
22
18
  var _NumberInputContext = _interopRequireDefault(require("./NumberInputContext"));
23
19
 
24
- var _variables = require("../common/variables.js");
25
-
26
20
  var _templateObject;
27
21
 
28
22
  var DxcNumberInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref, ref) {
@@ -45,7 +39,8 @@ var DxcNumberInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref, r
45
39
  suffix = _ref$suffix === void 0 ? "" : _ref$suffix,
46
40
  min = _ref.min,
47
41
  max = _ref.max,
48
- step = _ref.step,
42
+ _ref$step = _ref.step,
43
+ step = _ref$step === void 0 ? 1 : _ref$step,
49
44
  onChange = _ref.onChange,
50
45
  onBlur = _ref.onBlur,
51
46
  _ref$error = _ref.error,
@@ -85,44 +80,7 @@ var DxcNumberInput = /*#__PURE__*/_react["default"].forwardRef(function (_ref, r
85
80
  })));
86
81
  });
87
82
 
88
- var sizes = {
89
- small: "240px",
90
- medium: "360px",
91
- large: "480px",
92
- fillParent: "100%"
93
- };
94
-
95
83
  var NumberInputContainer = _styledComponents["default"].div(_templateObject || (_templateObject = (0, _taggedTemplateLiteral2["default"])(["\n // Chrome, Safari, Edge, Opera\n input::-webkit-outer-spin-button,\n input::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n }\n\n // Firefox\n input[type=\"number\"] {\n -moz-appearance: textfield;\n }\n"])));
96
84
 
97
- DxcNumberInput.propTypes = {
98
- label: _propTypes["default"].string,
99
- name: _propTypes["default"].string,
100
- value: _propTypes["default"].string,
101
- helperText: _propTypes["default"].string,
102
- placeholder: _propTypes["default"].string,
103
- error: _propTypes["default"].string,
104
- disabled: _propTypes["default"].bool,
105
- optional: _propTypes["default"].bool,
106
- prefix: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].shape({
107
- type: _propTypes["default"].oneOf(["svg"])
108
- })]),
109
- suffix: _propTypes["default"].oneOfType([_propTypes["default"].string, _propTypes["default"].shape({
110
- type: _propTypes["default"].oneOf(["svg"])
111
- })]),
112
- min: _propTypes["default"].number,
113
- max: _propTypes["default"].number,
114
- step: _propTypes["default"].number,
115
- onChange: _propTypes["default"].func,
116
- onBlur: _propTypes["default"].func,
117
- autocomplete: _propTypes["default"].string,
118
- margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
119
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
120
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
121
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
122
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
123
- }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
124
- size: _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(sizes))),
125
- tabIndex: _propTypes["default"].number
126
- };
127
85
  var _default = DxcNumberInput;
128
86
  exports["default"] = _default;
@@ -0,0 +1,117 @@
1
+ declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
+ declare type Margin = {
3
+ top?: Space;
4
+ bottom?: Space;
5
+ left?: Space;
6
+ right?: Space;
7
+ };
8
+ declare type Props = {
9
+ /**
10
+ * Text to be placed above the number.
11
+ */
12
+ label?: string;
13
+ /**
14
+ * Name attribute of the input element.
15
+ */
16
+ name?: string;
17
+ /**
18
+ * Value of the input element. If undefined, the component will be uncontrolled and the value will be managed internally by the component.
19
+ */
20
+ value?: string;
21
+ /**
22
+ * Helper text to be placed above the number.
23
+ */
24
+ helperText?: string;
25
+ /**
26
+ * Text to be put as placeholder of the number.
27
+ */
28
+ placeholder?: string;
29
+ /**
30
+ * If true, the component will be disabled.
31
+ */
32
+ disabled?: boolean;
33
+ /**
34
+ * If true, the number will be optional, showing '(Optional)'
35
+ * next to the label. Otherwise, the field will be considered required
36
+ * and an error will be passed as a parameter to the OnBlur and onChange
37
+ * functions when it has not been filled.
38
+ */
39
+ optional?: boolean;
40
+ /**
41
+ * Prefix to be placed before the number value.
42
+ */
43
+ prefix?: string;
44
+ /**
45
+ * Suffix to be placed after the number value.
46
+ */
47
+ suffix?: string;
48
+ /**
49
+ * Minimum value allowed by the number input. If the typed value by the user is
50
+ * lower than min, the onBlur and onChange functions will be called with
51
+ * the current value and an internal error informing that the current
52
+ * value is not correct. If a valid state is reached, the error parameter
53
+ * will be null in both events.
54
+ */
55
+ min?: number;
56
+ /**
57
+ * Maximum value allowed by the number input. If the typed value by the user
58
+ * surpasses max, the onBlur and onChange functions will be called with
59
+ * the current value and an internal error informing that the current
60
+ * value is not correct. If a valid state is reached, the error parameter
61
+ * will be null in both events.
62
+ */
63
+ max?: number;
64
+ /**
65
+ * The step interval to use when using the up and down arrows to adjust the value.
66
+ */
67
+ step?: number;
68
+ /**
69
+ * This function will be called when the user types within the input
70
+ * element of the component. An object including the current value and
71
+ * the error (if the value entered is not valid) will be passed to this
72
+ * function. If there is no error, error will be null.
73
+ */
74
+ onChange?: (val: {
75
+ value: string;
76
+ error: string | null;
77
+ }) => void;
78
+ /**
79
+ * This function will be called when the input element loses the focus.
80
+ * An object including the input value and the error (if the value
81
+ * entered is not valid) will be passed to this function. If there is no error,
82
+ * error will be null.
83
+ */
84
+ onBlur?: (val: {
85
+ value: string;
86
+ error: string | null;
87
+ }) => void;
88
+ /**
89
+ * If it is defined, the component will change its appearance, showing
90
+ * the error below the input component. If it is not defined, the error
91
+ * messages will be managed internally, but never displayed on its own.
92
+ */
93
+ error?: string;
94
+ /**
95
+ * HTML autocomplete attribute. Lets the user specify if any permission the user agent has to provide automated assistance in filling out the input value.
96
+ * Its value must be one of all the possible values of the HTML autocomplete attribute: 'on', 'off', 'email', 'username', 'new-password', ...
97
+ */
98
+ autocomplete?: string;
99
+ /**
100
+ * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
101
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
102
+ */
103
+ margin?: Space | Margin;
104
+ /**
105
+ * Size of the component ('small' | 'medium' | 'large' | 'fillParent').
106
+ */
107
+ size?: "small" | "medium" | "large" | "fillParent";
108
+ /**
109
+ * Value of the tabindex attribute.
110
+ */
111
+ tabIndex?: number;
112
+ };
113
+ /**
114
+ * Reference to the component.
115
+ */
116
+ export declare type RefType = HTMLDivElement;
117
+ export default Props;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxc-technology/halstack-react",
3
- "version": "0.0.0-83f5e92",
3
+ "version": "0.0.0-84c9364",
4
4
  "description": "DXC Halstack React components library",
5
5
  "repository": "dxc-technology/halstack-react",
6
6
  "homepage": "http://developer.dxc.com/tools/react",