@dxc-technology/halstack-react 0.0.0-459df48 → 0.0.0-460d7ec

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.
Files changed (75) hide show
  1. package/accordion/Accordion.d.ts +4 -0
  2. package/accordion/Accordion.js +12 -43
  3. package/accordion/types.d.ts +68 -0
  4. package/accordion/types.js +5 -0
  5. package/accordion-group/AccordionGroup.d.ts +7 -0
  6. package/accordion-group/AccordionGroup.js +58 -72
  7. package/accordion-group/types.d.ts +72 -0
  8. package/accordion-group/types.js +5 -0
  9. package/box/Box.stories.jsx +132 -0
  10. package/card/Card.d.ts +4 -0
  11. package/card/Card.js +13 -48
  12. package/card/types.d.ts +69 -0
  13. package/card/types.js +5 -0
  14. package/checkbox/Checkbox.stories.tsx +192 -0
  15. package/checkbox/types.d.ts +2 -3
  16. package/common/variables.js +1 -1
  17. package/dialog/Dialog.d.ts +4 -0
  18. package/dialog/Dialog.js +4 -23
  19. package/dialog/types.d.ts +43 -0
  20. package/dialog/types.js +5 -0
  21. package/dropdown/Dropdown.d.ts +4 -0
  22. package/dropdown/Dropdown.js +7 -40
  23. package/dropdown/types.d.ts +89 -0
  24. package/dropdown/types.js +5 -0
  25. package/footer/Footer.d.ts +4 -0
  26. package/footer/Footer.js +4 -35
  27. package/footer/Footer.stories.jsx +151 -0
  28. package/footer/types.d.ts +61 -0
  29. package/footer/types.js +5 -0
  30. package/header/Header.d.ts +7 -0
  31. package/header/Header.js +26 -28
  32. package/header/Icons.js +2 -27
  33. package/header/types.d.ts +45 -0
  34. package/header/types.js +5 -0
  35. package/number-input/NumberInput.stories.jsx +115 -0
  36. package/package.json +1 -1
  37. package/paginator/Paginator.stories.tsx +63 -0
  38. package/progress-bar/ProgressBar.d.ts +4 -0
  39. package/progress-bar/ProgressBar.js +3 -21
  40. package/progress-bar/types.d.ts +37 -0
  41. package/progress-bar/types.js +5 -0
  42. package/radio/Radio.d.ts +4 -0
  43. package/radio/Radio.js +3 -24
  44. package/radio/Radio.stories.tsx +192 -0
  45. package/radio/types.d.ts +54 -0
  46. package/radio/types.js +5 -0
  47. package/select/index.d.ts +4 -4
  48. package/slider/Slider.d.ts +4 -0
  49. package/slider/Slider.js +26 -60
  50. package/slider/types.d.ts +83 -0
  51. package/slider/types.js +5 -0
  52. package/spinner/Spinner.js +6 -6
  53. package/spinner/Spinner.stories.jsx +102 -0
  54. package/table/Table.d.ts +4 -0
  55. package/table/Table.stories.jsx +276 -0
  56. package/table/types.d.ts +21 -0
  57. package/table/types.js +5 -0
  58. package/tabs/Tabs.d.ts +4 -0
  59. package/tabs/Tabs.js +5 -53
  60. package/tabs/types.d.ts +71 -0
  61. package/tabs/types.js +5 -0
  62. package/text-input/index.d.ts +2 -2
  63. package/textarea/Textarea.stories.jsx +135 -0
  64. package/accordion/index.d.ts +0 -28
  65. package/accordion-group/index.d.ts +0 -16
  66. package/card/index.d.ts +0 -22
  67. package/dialog/index.d.ts +0 -18
  68. package/dropdown/index.d.ts +0 -26
  69. package/footer/index.d.ts +0 -25
  70. package/header/index.d.ts +0 -25
  71. package/progress-bar/index.d.ts +0 -18
  72. package/radio/index.d.ts +0 -23
  73. package/slider/index.d.ts +0 -29
  74. package/table/index.d.ts +0 -13
  75. package/tabs/index.d.ts +0 -19
@@ -0,0 +1,21 @@
1
+ /// <reference types="react" />
2
+ declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
+ declare type Margin = {
4
+ top?: Space;
5
+ bottom?: Space;
6
+ left?: Space;
7
+ right?: Space;
8
+ };
9
+ declare type Props = {
10
+ /**
11
+ * Size of the margin to be applied to the component ('xxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge').
12
+ * You can pass an object with 'top', 'bottom', 'left' and 'right' properties in order to specify different margin sizes.
13
+ */
14
+ margin?: Space | Margin;
15
+ /**
16
+ * The center section of the table. Can be used to render custom
17
+ * content in this area.
18
+ */
19
+ children: React.ReactNode;
20
+ };
21
+ export default Props;
package/table/types.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
package/tabs/Tabs.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import TabsPropsType from "./types";
3
+ declare const DxcTabs: ({ activeTabIndex, tabs, onTabClick, onTabHover, margin, iconPosition, tabIndex, }: TabsPropsType) => JSX.Element;
4
+ export default DxcTabs;
package/tabs/Tabs.js CHANGED
@@ -9,12 +9,8 @@ Object.defineProperty(exports, "__esModule", {
9
9
  });
10
10
  exports["default"] = void 0;
11
11
 
12
- var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers/toConsumableArray"));
13
-
14
12
  var _taggedTemplateLiteral2 = _interopRequireDefault(require("@babel/runtime/helpers/taggedTemplateLiteral"));
15
13
 
16
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
17
-
18
14
  var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
19
15
 
20
16
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
@@ -27,8 +23,6 @@ var _Tab = _interopRequireDefault(require("@material-ui/core/Tab"));
27
23
 
28
24
  var _styledComponents = _interopRequireWildcard(require("styled-components"));
29
25
 
30
- var _propTypes = _interopRequireDefault(require("prop-types"));
31
-
32
26
  var _variables = require("../common/variables.js");
33
27
 
34
28
  var _Badge = _interopRequireDefault(require("../badge/Badge"));
@@ -43,13 +37,12 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
43
37
 
44
38
  var DxcTabs = function DxcTabs(_ref) {
45
39
  var activeTabIndex = _ref.activeTabIndex,
46
- _ref$tabs = _ref.tabs,
47
- tabs = _ref$tabs === void 0 ? [] : _ref$tabs,
40
+ tabs = _ref.tabs,
48
41
  onTabClick = _ref.onTabClick,
49
42
  onTabHover = _ref.onTabHover,
50
43
  margin = _ref.margin,
51
44
  _ref$iconPosition = _ref.iconPosition,
52
- iconPosition = _ref$iconPosition === void 0 ? "left" : _ref$iconPosition,
45
+ iconPosition = _ref$iconPosition === void 0 ? "top" : _ref$iconPosition,
53
46
  _ref$tabIndex = _ref.tabIndex,
54
47
  tabIndex = _ref$tabIndex === void 0 ? 0 : _ref$tabIndex;
55
48
 
@@ -68,13 +61,7 @@ var DxcTabs = function DxcTabs(_ref) {
68
61
  setInnerActiveTabIndex(newValue);
69
62
  }
70
63
 
71
- if (typeof onTabClick === "function") {
72
- onTabClick(newValue);
73
- }
74
- };
75
-
76
- var getTabIndex = function getTabIndex(index, disabled) {
77
- return (activeTabIndex === index || innerActiveTabIndex === index) && !disabled ? tabIndex : -1;
64
+ onTabClick === null || onTabClick === void 0 ? void 0 : onTabClick(newValue);
78
65
  };
79
66
 
80
67
  var getLabelForTab = function getLabelForTab(tab) {
@@ -108,14 +95,6 @@ var DxcTabs = function DxcTabs(_ref) {
108
95
  variant: "scrollable",
109
96
  scrollButtons: "auto"
110
97
  }, tabs.map(function (tab, i) {
111
- var tabContent = /*#__PURE__*/_react["default"].forwardRef(function (props, ref) {
112
- return /*#__PURE__*/_react["default"].createElement("div", (0, _extends2["default"])({
113
- role: "button"
114
- }, props, {
115
- ref: ref
116
- }));
117
- });
118
-
119
98
  return /*#__PURE__*/_react["default"].createElement(_Tab["default"], {
120
99
  tabIndex: (activeTabIndex === i || innerActiveTabIndex === i) && !tab.isDisabled ? tabIndex : -1,
121
100
  key: "tab".concat(i).concat(tab.label),
@@ -123,10 +102,10 @@ var DxcTabs = function DxcTabs(_ref) {
123
102
  disabled: tab.isDisabled,
124
103
  disableRipple: true,
125
104
  onMouseEnter: function onMouseEnter() {
126
- onTabHover(i);
105
+ onTabHover === null || onTabHover === void 0 ? void 0 : onTabHover(i);
127
106
  },
128
107
  onMouseLeave: function onMouseLeave() {
129
- onTabHover(null);
108
+ onTabHover === null || onTabHover === void 0 ? void 0 : onTabHover(null);
130
109
  }
131
110
  });
132
111
  }))));
@@ -228,32 +207,5 @@ var TabIconContainer = _styledComponents["default"].div(_templateObject9 || (_te
228
207
  return props.hasLabelAndIcon && props.iconPosition === "left" && "12px" || "";
229
208
  });
230
209
 
231
- DxcTabs.propTypes = {
232
- activeTabIndex: _propTypes["default"].number,
233
- onTabClick: _propTypes["default"].func,
234
- onTabHover: _propTypes["default"].func,
235
- tabs: _propTypes["default"].arrayOf(_propTypes["default"].shape({
236
- label: _propTypes["default"].string,
237
- icon: _propTypes["default"].oneOfType([_propTypes["default"].element, _propTypes["default"].func]),
238
- iconSrc: _propTypes["default"].string,
239
- isDisabled: _propTypes["default"].bool,
240
- notificationNumber: _propTypes["default"].oneOfType([_propTypes["default"].bool, _propTypes["default"].string, _propTypes["default"].number])
241
- })),
242
- margin: _propTypes["default"].oneOfType([_propTypes["default"].shape({
243
- top: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
244
- bottom: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
245
- left: _propTypes["default"].oneOf(Object.keys(_variables.spaces)),
246
- right: _propTypes["default"].oneOf(Object.keys(_variables.spaces))
247
- }), _propTypes["default"].oneOf((0, _toConsumableArray2["default"])(Object.keys(_variables.spaces)))]),
248
- iconPosition: _propTypes["default"].oneOf(["top", "left"]),
249
- tabIndex: _propTypes["default"].number
250
- };
251
- DxcTabs.defaultProps = {
252
- activeTabIndex: null,
253
- tabs: [],
254
- onTabClick: function onTabClick() {},
255
- onTabHover: function onTabHover() {},
256
- iconPosition: "top"
257
- };
258
210
  var _default = DxcTabs;
259
211
  exports["default"] = _default;
@@ -0,0 +1,71 @@
1
+ /// <reference types="react" />
2
+ declare type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
+ declare type Margin = {
4
+ top?: Space;
5
+ bottom?: Space;
6
+ left?: Space;
7
+ right?: Space;
8
+ };
9
+ declare type SVG = React.SVGProps<SVGSVGElement> | React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
10
+ declare type Tab = {
11
+ /**
12
+ * Tab label.
13
+ */
14
+ label?: string;
15
+ /**
16
+ * Element used as the icon that will be displayed in the tab.
17
+ */
18
+ icon?: SVG;
19
+ /**
20
+ * @deprecated URL of the icon to be displayed in the tab.
21
+ */
22
+ iconSrc?: string;
23
+ /**
24
+ * Whether the tab is disabled or not.
25
+ */
26
+ isDisabled?: boolean;
27
+ /**
28
+ * If the value is 'true', an empty badge will appear.
29
+ * If it is 'false', no badge will appear.
30
+ * If a number is put it will be shown as the label of the notification
31
+ * in the tab, taking into account that if that number is greater than 99,
32
+ * it will appear as '+99' in the badge.
33
+ */
34
+ notificationNumber?: boolean | number;
35
+ };
36
+ declare type Props = {
37
+ /**
38
+ * An array of objects representing the tabs.
39
+ */
40
+ tabs: [Tab, ...Tab[]];
41
+ /**
42
+ * Whether the icon should appear above or to the left of the label.
43
+ */
44
+ iconPosition?: "top" | "left";
45
+ /**
46
+ * The index of the active tab. If undefined, the component will be
47
+ * uncontrolled and the active tab will be managed internally by the component.
48
+ */
49
+ activeTabIndex?: number;
50
+ /**
51
+ * This function will be called when the user clicks on a tab. The index of the
52
+ * clicked tab will be passed as a parameter.
53
+ */
54
+ onTabClick?: (tabIndex: number) => void;
55
+ /**
56
+ * This function will be called when the user hovers a tab.The index of the
57
+ * hovered tab will be passed as a parameter.
58
+ */
59
+ onTabHover?: (tabIndex: number) => void;
60
+ /**
61
+ * Size of the margin to be applied to the component. You can pass an object
62
+ * with 'top', 'bottom', 'left' and 'right' properties in order to specify
63
+ * different margin sizes.
64
+ */
65
+ margin?: Space | Margin;
66
+ /**
67
+ * Value of the tabindex for each tab.
68
+ */
69
+ tabIndex?: number;
70
+ };
71
+ export default Props;
package/tabs/types.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
@@ -6,10 +6,10 @@ type Margin = {
6
6
  left?: Space;
7
7
  right?: Space;
8
8
  };
9
- type SVG = string | (HTMLElement & SVGElement);
9
+ type SVG = React.SVGProps<SVGSVGElement> | React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
10
10
  type Action = {
11
11
  onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
12
- icon: SVG;
12
+ icon: string | SVG;
13
13
  };
14
14
 
15
15
  type Props = {
@@ -0,0 +1,135 @@
1
+ import React from "react";
2
+ import DxcTextarea from "./Textarea";
3
+ import Title from "../../.storybook/components/Title";
4
+ import ExampleContainer from "../../.storybook/components/ExampleContainer";
5
+ import { BackgroundColorProvider } from "../BackgroundColorContext";
6
+ import DarkContainer from "../../.storybook/components/DarkSection";
7
+
8
+ export default {
9
+ title: "Textarea",
10
+ component: DxcTextarea,
11
+ };
12
+
13
+ export const Chromatic = () => (
14
+ <>
15
+ <>
16
+ <ExampleContainer pseudoState="pseudo-hover">
17
+ <Title title="Hovered" theme="light" level={4} />
18
+ <DxcTextarea label="Hovered" />
19
+ </ExampleContainer>
20
+ <ExampleContainer pseudoState="pseudo-focus">
21
+ <Title title="Focused" theme="light" level={4} />
22
+ <DxcTextarea label="Focused" />
23
+ </ExampleContainer>
24
+ <ExampleContainer>
25
+ <Title title="Disabled" theme="light" level={4} />
26
+ <DxcTextarea
27
+ label="Disabled"
28
+ optional
29
+ helperText="Sample text"
30
+ placeholder="Enter your text here..."
31
+ disabled
32
+ />
33
+ </ExampleContainer>
34
+ <ExampleContainer>
35
+ <Title title="Disabled with value" theme="light" level={4} />
36
+ <DxcTextarea label="Disabled" value="Example text" disabled />
37
+ </ExampleContainer>
38
+ <ExampleContainer>
39
+ <Title title="With error" theme="light" level={4} />
40
+ <DxcTextarea
41
+ label="Textarea with error"
42
+ helperText="Helper text"
43
+ placeholder="Enter your text here..."
44
+ error="Error message"
45
+ />
46
+ </ExampleContainer>
47
+ <ExampleContainer>
48
+ <Title title="Helper text and optional with value" theme="light" level={4} />
49
+ <DxcTextarea label="Helper & optional" value="Some text" helperText="Sample text" optional />
50
+ </ExampleContainer>
51
+ <ExampleContainer>
52
+ <Title title="Resizable" theme="light" level={4} />
53
+ <DxcTextarea label="With resizer" helperText="Helper text" verticalGrow="manual" />
54
+ </ExampleContainer>
55
+ <ExampleContainer>
56
+ <Title title="Grow manual" theme="light" level={4} />
57
+ <DxcTextarea
58
+ label="Manual vertical grow"
59
+ verticalGrow="manual"
60
+ value="Long textttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt"
61
+ />
62
+ </ExampleContainer>
63
+ </>
64
+ <BackgroundColorProvider color="#333333">
65
+ <DarkContainer>
66
+ <>
67
+ <Title title="Helper text and optional with value" theme="dark" level={4} />
68
+ <DxcTextarea label="Helper & optional" value="Some text" margin="medium" helperText="Sample text" optional />
69
+
70
+ <Title title="Disabled" theme="dark" level={4} />
71
+ <DxcTextarea
72
+ label="Disabled"
73
+ margin="medium"
74
+ optional
75
+ helperText="Sample text"
76
+ placeholder="Enter your text here..."
77
+ disabled
78
+ />
79
+ <Title title="Disabled with value" theme="dark" level={4} />
80
+ <DxcTextarea label="Disabled" margin="medium" value="Example text" disabled />
81
+ <Title title="With error" theme="dark" level={4} />
82
+ <DxcTextarea
83
+ label="Textarea with error"
84
+ margin="medium"
85
+ helperText="Helper text"
86
+ placeholder="Enter your text here..."
87
+ error="Error message"
88
+ />
89
+ </>
90
+ </DarkContainer>
91
+ </BackgroundColorProvider>
92
+ <Title title="Sizes" theme="light" level={2} />
93
+ <ExampleContainer>
94
+ <DxcTextarea label="Small" size="small" />
95
+ </ExampleContainer>
96
+ <ExampleContainer>
97
+ <DxcTextarea label="Medium" size="medium" />
98
+ </ExampleContainer>
99
+ <ExampleContainer>
100
+ <DxcTextarea label="Large" size="large" />
101
+ </ExampleContainer>
102
+ <ExampleContainer>
103
+ <DxcTextarea label="Fill parent" size="fillParent" />
104
+ </ExampleContainer>
105
+ <Title title="Margins" theme="light" level={2} />
106
+ <ExampleContainer>
107
+ <Title title="Xxsmall margin" theme="light" level={4} />
108
+ <DxcTextarea label="Xxsmmall" margin="xxsmall" />
109
+ </ExampleContainer>
110
+ <ExampleContainer>
111
+ <Title title="Xsmall margin" theme="light" level={4} />
112
+ <DxcTextarea label="xsmmall" margin="xsmall" />
113
+ </ExampleContainer>
114
+ <ExampleContainer>
115
+ <Title title="Small margin" theme="light" level={4} />
116
+ <DxcTextarea label="smmall" margin="small" />
117
+ </ExampleContainer>
118
+ <ExampleContainer>
119
+ <Title title="Medium margin" theme="light" level={4} />
120
+ <DxcTextarea label="medium" margin="medium" />
121
+ </ExampleContainer>
122
+ <ExampleContainer>
123
+ <Title title="Large margin" theme="light" level={4} />
124
+ <DxcTextarea label="Large" margin="large" />
125
+ </ExampleContainer>
126
+ <ExampleContainer>
127
+ <Title title="Xlarge margin" theme="light" level={4} />
128
+ <DxcTextarea label="Xlarge" margin="xlarge" />
129
+ </ExampleContainer>
130
+ <ExampleContainer>
131
+ <Title title="Xxlarge margin" theme="light" level={4} />
132
+ <DxcTextarea label="Xxlarge" margin="xxlarge" />
133
+ </ExampleContainer>
134
+ </>
135
+ );
@@ -1,28 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
- type Padding = {
9
- top?: Space;
10
- bottom?: Space;
11
- left?: Space;
12
- right?: Space;
13
- };
14
-
15
- type Props = {
16
- label?: string;
17
- iconSrc?: string;
18
- icon?: any;
19
- assistiveText?: string;
20
- disabled?: boolean;
21
- onChange?: void;
22
- isExpanded?: boolean;
23
- margin?: Space | Margin;
24
- padding?: Space | Padding;
25
- tabIndex?: number;
26
- };
27
-
28
- export default function DxcAccordion(props: Props): JSX.Element;
@@ -1,16 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
-
9
- type Props = {
10
- disabled?: boolean;
11
- onActiveChange?: void;
12
- indexActive?: number;
13
- margin?: Space | Margin;
14
- };
15
-
16
- export default function DxcAccordionGroup(props: Props): JSX.Element;
package/card/index.d.ts DELETED
@@ -1,22 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
-
9
- type Props = {
10
- imageSrc?: string;
11
- margin?: Space | Margin;
12
- contentPadding?: any;
13
- linkHref?: string;
14
- onClick?: void;
15
- imageBgColor?: string;
16
- imagePadding?: any;
17
- imagePosition?: "before" | "after";
18
- outlined?: boolean;
19
- imageCover?: boolean;
20
- };
21
-
22
- export default function DxcCard(props: Props): JSX.Element;
package/dialog/index.d.ts DELETED
@@ -1,18 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Padding = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
-
9
- type Props = {
10
- isCloseVisible?: boolean;
11
- onCloseClick?: void;
12
- overlay?: boolean;
13
- onBackgroundClick?: void;
14
- padding?: Padding,
15
- tabIndex?: number;
16
- };
17
-
18
- export default function DxcDialog(props: Props): JSX.Element;
@@ -1,26 +0,0 @@
1
- type Size = "small" | "medium" | "large" | "fillParent" | "fitContent";
2
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
- type Margin = {
4
- top?: Space;
5
- bottom?: Space;
6
- left?: Space;
7
- right?: Space;
8
- };
9
-
10
- type Props = {
11
- options?: any;
12
- optionsIconPosition?: "before" | "after";
13
- icon?: any;
14
- iconSrc?: string;
15
- iconPosition?: "before" | "after";
16
- label?: string;
17
- disabled?: boolean;
18
- caretHidden?: boolean;
19
- onSelectOption?: void;
20
- expandOnHover?: boolean;
21
- margin?: Space | Margin;
22
- size?: Size;
23
- tabIndex?: number;
24
- };
25
-
26
- export default function DxcDropdown(props: Props): JSX.Element;
package/footer/index.d.ts DELETED
@@ -1,25 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
- type Padding = {
9
- top?: Space;
10
- bottom?: Space;
11
- left?: Space;
12
- right?: Space;
13
- };
14
-
15
- type Props = {
16
- socialLinks?: any;
17
- bottomLinks?: any;
18
- copyright?: string;
19
- padding?: Space | Padding;
20
- margin?: Space | Margin;
21
- tabIndex?: number;
22
-
23
- };
24
-
25
- export default function DxcFooter(props: Props): JSX.Element;
package/header/index.d.ts DELETED
@@ -1,25 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
- type Padding = {
9
- top?: Space;
10
- bottom?: Space;
11
- left?: Space;
12
- right?: Space;
13
- };
14
-
15
- type Props = {
16
- underlined?: boolean;
17
- onClick?: void;
18
- content?: any;
19
- responsiveContent?: any;
20
- margin?: Space | Margin;
21
- padding?: Space | Padding;
22
- tabIndex?: number;
23
- };
24
-
25
- export default function DxcHeader(props: Props): JSX.Element;
@@ -1,18 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
-
9
- type Props = {
10
- label?: string;
11
- helperText?: string;
12
- overlay?: boolean;
13
- value?: number;
14
- showValue?: boolean,
15
- margin?: Space | Margin;
16
- };
17
-
18
- export default function DxcProgressBar(props: Props): JSX.Element;
package/radio/index.d.ts DELETED
@@ -1,23 +0,0 @@
1
- type Size = "small" | "medium" | "large" | "fillParent" | "fitContent";
2
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
- type Margin = {
4
- top?: Space;
5
- bottom?: Space;
6
- left?: Space;
7
- right?: Space;
8
- };
9
-
10
- type Props = {
11
- checked?: boolean;
12
- value?: any;
13
- label?: string;
14
- labelPosition?: "before" | "after";
15
- name?: string,
16
- disabled?: boolean;
17
- onClick?: void;
18
- required?: boolean;
19
- margin?: Space | Margin;
20
- size?: Size;
21
- };
22
-
23
- export default function DxcRadio(props: Props): JSX.Element;
package/slider/index.d.ts DELETED
@@ -1,29 +0,0 @@
1
- type Size = "small" | "medium" | "large" | "fillParent";
2
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
3
- type Margin = {
4
- top?: Space;
5
- bottom?: Space;
6
- left?: Space;
7
- right?: Space;
8
- };
9
-
10
- type Props = {
11
- label?: string;
12
- helperText?: string;
13
- minValue?: number;
14
- maxValue?: number;
15
- step?: number;
16
- value?: number;
17
- showLimitsValues?: boolean;
18
- showInput?: boolean;
19
- name?: string;
20
- onChange?: void;
21
- onDragEnd?: void;
22
- disabled?: boolean;
23
- marks?: boolean;
24
- labelFormatCallback?: void;
25
- margin?: Space | Margin;
26
- size?: Size;
27
- };
28
-
29
- export default function DxcSlider(props: Props): JSX.Element;
package/table/index.d.ts DELETED
@@ -1,13 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
-
9
- type Props = {
10
- margin?: Space | Margin;
11
- };
12
-
13
- export default function DxcTable(props: Props): JSX.Element;
package/tabs/index.d.ts DELETED
@@ -1,19 +0,0 @@
1
- type Space = "xxsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge" | "xxlarge";
2
- type Margin = {
3
- top?: Space;
4
- bottom?: Space;
5
- left?: Space;
6
- right?: Space;
7
- };
8
-
9
- type Props = {
10
- activeTabIndex?: number;
11
- tabs?: any;
12
- onTabClick?: void;
13
- onTabHover?: void;
14
- iconPosition?: "top" | "left";
15
- margin?: Space | Margin;
16
- tabIndex?: number;
17
- };
18
-
19
- export default function DxcTabs(props: Props): JSX.Element;