@elliemae/ds-breadcrumb 2.3.0-next.0 → 3.0.0-alpha.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.
Files changed (44) hide show
  1. package/dist/cjs/DSBreadcrumb.js +86 -0
  2. package/dist/cjs/DSBreadcrumb.js.map +7 -0
  3. package/dist/cjs/DSBreadcrumbItem.js +86 -0
  4. package/dist/cjs/DSBreadcrumbItem.js.map +7 -0
  5. package/dist/cjs/hooks/useKeyboardNavigation.js +57 -0
  6. package/dist/cjs/hooks/useKeyboardNavigation.js.map +7 -0
  7. package/dist/cjs/index.d.js +27 -0
  8. package/dist/cjs/index.d.js.map +7 -0
  9. package/dist/cjs/index.js +37 -0
  10. package/dist/cjs/index.js.map +7 -0
  11. package/dist/cjs/styles.js +107 -0
  12. package/dist/cjs/styles.js.map +7 -0
  13. package/dist/esm/DSBreadcrumb.js +57 -0
  14. package/dist/esm/DSBreadcrumb.js.map +7 -0
  15. package/dist/esm/DSBreadcrumbItem.js +57 -0
  16. package/dist/esm/DSBreadcrumbItem.js.map +7 -0
  17. package/{esm → dist/esm}/hooks/useKeyboardNavigation.js +11 -9
  18. package/dist/esm/hooks/useKeyboardNavigation.js.map +7 -0
  19. package/dist/esm/index.d.js +2 -0
  20. package/dist/esm/index.d.js.map +7 -0
  21. package/dist/esm/index.js +8 -0
  22. package/dist/esm/index.js.map +7 -0
  23. package/dist/esm/styles.js +78 -0
  24. package/dist/esm/styles.js.map +7 -0
  25. package/{types → dist/types}/DSBreadcrumb.d.ts +0 -0
  26. package/{types → dist/types}/DSBreadcrumbItem.d.ts +0 -0
  27. package/{types → dist/types}/hooks/useKeyboardNavigation.d.ts +0 -0
  28. package/{types → dist/types}/index.d.d.ts +0 -0
  29. package/{types → dist/types}/index.d.ts +0 -0
  30. package/{types → dist/types}/styles.d.ts +0 -0
  31. package/{types → dist/types}/tests/DSBreadcrumb.test.d.ts +0 -0
  32. package/{types → dist/types}/tests/DSBreadcrumbItem.test.d.ts +0 -0
  33. package/package.json +34 -26
  34. package/cjs/DSBreadcrumb.js +0 -102
  35. package/cjs/DSBreadcrumbItem.js +0 -98
  36. package/cjs/hooks/useKeyboardNavigation.js +0 -30
  37. package/cjs/index.d.js +0 -2
  38. package/cjs/index.js +0 -15
  39. package/cjs/styles.js +0 -68
  40. package/esm/DSBreadcrumb.js +0 -88
  41. package/esm/DSBreadcrumbItem.js +0 -87
  42. package/esm/index.d.js +0 -1
  43. package/esm/index.js +0 -2
  44. package/esm/styles.js +0 -57
@@ -1,88 +0,0 @@
1
- import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
2
- import _jsx from '@babel/runtime/helpers/esm/jsx';
3
- import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
4
- import 'core-js/modules/web.dom-collections.iterator.js';
5
- import 'core-js/modules/esnext.async-iterator.map.js';
6
- import 'core-js/modules/esnext.iterator.map.js';
7
- import 'core-js/modules/esnext.async-iterator.filter.js';
8
- import 'core-js/modules/esnext.iterator.constructor.js';
9
- import 'core-js/modules/esnext.iterator.filter.js';
10
- import 'core-js/modules/esnext.async-iterator.for-each.js';
11
- import 'core-js/modules/esnext.iterator.for-each.js';
12
- import React, { useMemo, cloneElement } from 'react';
13
- import { PropTypes, describe } from 'react-desc';
14
- import { DSBreadcrumbItem } from './DSBreadcrumbItem.js';
15
- import { useKeyboardNavigation } from './hooks/useKeyboardNavigation.js';
16
- import { StyledContainer, StyledList } from './styles.js';
17
- import { jsx } from 'react/jsx-runtime';
18
-
19
- const _excluded = ["containerProps", "as", "label", "isTitle", "children", "trailingSlash"];
20
-
21
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
22
-
23
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
24
- const htmlElements = ['nav', 'div', 'header', 'footer', 'main'];
25
-
26
- const DSBreadcrumb = _ref => {
27
- let {
28
- containerProps = {},
29
- as = 'nav',
30
- label = 'Breadcrumb',
31
- isTitle = false,
32
- children,
33
- trailingSlash = true
34
- } = _ref,
35
- rest = _objectWithoutProperties(_ref, _excluded);
36
-
37
- const [addRef, onKeyDown] = useKeyboardNavigation();
38
- const safeElement = useMemo(() => htmlElements.indexOf(as) > -1 ? as : 'nav', [as]);
39
- return /*#__PURE__*/jsx(StyledContainer, _objectSpread(_objectSpread(_objectSpread({
40
- "aria-label": label,
41
- "data-testid": "breadcrumb-nav-container"
42
- }, rest), containerProps), {}, {
43
- as: safeElement,
44
- children: /*#__PURE__*/_jsx(StyledList, {
45
- "data-testid": "list-container"
46
- }, void 0, React.Children.map(children, (child, childIndex) => childIndex < children.length - 1 ? /*#__PURE__*/cloneElement(child, {
47
- childIndex,
48
- addRef,
49
- onKeyDown
50
- }) : /*#__PURE__*/cloneElement(child, {
51
- childIndex,
52
- addRef,
53
- onKeyDown,
54
- trailingSlash,
55
- isTitle
56
- })))
57
- }));
58
- };
59
-
60
- DSBreadcrumb.Item = DSBreadcrumbItem;
61
- const props = {
62
- /** props injected to breadcrumb wrapper */
63
- containerProps: PropTypes.object.description('props injected to breadcrumb wrapper'),
64
-
65
- /**
66
- * Type of element you want the main container to be:
67
- * 'nav', 'div', 'header', 'footer', 'main'
68
- */
69
- as: PropTypes.string.description("Type of element you want the main container to be: 'nav', 'div', 'header', 'footer', 'main'"),
70
-
71
- /**
72
- * Whether to show the last element of the breadcrumb as a title
73
- * Also removes trailing slash to show last element as title
74
- */
75
- isTitle: PropTypes.bool.description('Whether to show the last element of the breadcrumb as a title. Also removes trailing slash to show last element as title'),
76
-
77
- /** breadcrumb label */
78
- label: PropTypes.string.description('breadcrumb label'),
79
-
80
- /**
81
- * Container items to wrap
82
- */
83
- children: PropTypes.arrayOf(DSBreadcrumbItem).isRequired.description('Container items to wrap')
84
- };
85
- const DSBreadcrumbWithSchema = describe(DSBreadcrumb);
86
- DSBreadcrumbWithSchema.propTypes = props;
87
-
88
- export { DSBreadcrumb, DSBreadcrumbWithSchema, DSBreadcrumb as default, htmlElements };
@@ -1,87 +0,0 @@
1
- import 'core-js/modules/esnext.async-iterator.filter.js';
2
- import 'core-js/modules/esnext.iterator.constructor.js';
3
- import 'core-js/modules/esnext.iterator.filter.js';
4
- import 'core-js/modules/esnext.async-iterator.for-each.js';
5
- import 'core-js/modules/esnext.iterator.for-each.js';
6
- import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
7
- import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
8
- import 'react';
9
- import { PropTypes, describe } from 'react-desc';
10
- import { StyledCrumbWrapper, StyledLink } from './styles.js';
11
- import { jsx } from 'react/jsx-runtime';
12
-
13
- const _excluded = ["active", "as", "href", "isTitle", "onClick", "label", "color", "addRef", "childIndex", "trailingSlash", "onKeyDown"];
14
-
15
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
16
-
17
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
18
-
19
- function DSBreadcrumbItem(_ref) {
20
- let {
21
- active = false,
22
- as = 'a',
23
- href = undefined,
24
- isTitle,
25
- onClick = () => null,
26
- label = '',
27
- color = null,
28
- addRef,
29
- childIndex,
30
- trailingSlash,
31
- onKeyDown = () => null
32
- } = _ref,
33
- rest = _objectWithoutProperties(_ref, _excluded);
34
-
35
- return /*#__PURE__*/jsx(StyledCrumbWrapper, _objectSpread(_objectSpread({
36
- "aria-current": active ? 'page' : undefined,
37
- "data-testid": "breadcrumb-item-container",
38
- isTitle: isTitle,
39
- trailingSlash: trailingSlash
40
- }, rest), {}, {
41
- children: /*#__PURE__*/jsx(StyledLink, {
42
- as: as,
43
- href: href,
44
- onClick: onClick,
45
- ref: addRef,
46
- tabIndex: 0,
47
- isActive: active,
48
- onKeyDown: e => onKeyDown(e, childIndex, onClick),
49
- isTitle: isTitle,
50
- color: color,
51
- children: label
52
- })
53
- }));
54
- }
55
-
56
- const props = {
57
- /** inject props to wrapper */
58
- containerComponent: PropTypes.string.description('inject props to wrapper'),
59
-
60
- /** render as any html node */
61
- as: PropTypes.string.description('render as any html node'),
62
-
63
- /** active item */
64
- active: PropTypes.bool.description('active item'),
65
-
66
- /** href link */
67
- href: PropTypes.string.description('href link'),
68
-
69
- /** on click handler */
70
- onClick: PropTypes.func.description('on click handler'),
71
-
72
- /** style item as title */
73
- isTitle: PropTypes.bool.description('style item as title'),
74
-
75
- /** add trailing slash */
76
- trailingSlash: PropTypes.bool.description('add trailing slash'),
77
-
78
- /** item label */
79
- label: PropTypes.string.description('item label'),
80
-
81
- /** link color */
82
- color: PropTypes.string.description('link color')
83
- };
84
- const DSBreadcrumbItemWithSchema = describe(DSBreadcrumbItem);
85
- DSBreadcrumbItemWithSchema.propTypes = props;
86
-
87
- export { DSBreadcrumbItem, DSBreadcrumbItemWithSchema, DSBreadcrumbItem as default };
package/esm/index.d.js DELETED
@@ -1 +0,0 @@
1
-
package/esm/index.js DELETED
@@ -1,2 +0,0 @@
1
- export { DSBreadcrumb, DSBreadcrumbWithSchema, DSBreadcrumb as default, htmlElements } from './DSBreadcrumb.js';
2
- export { DSBreadcrumbItem, DSBreadcrumbItemWithSchema } from './DSBreadcrumbItem.js';
package/esm/styles.js DELETED
@@ -1,57 +0,0 @@
1
- import styled from 'styled-components';
2
-
3
- const handleColor = (theme, isActive, color, isTitle) => {
4
- if (isActive) return theme.colors.neutral[800];else if (color) return color;else if (isTitle) return theme.colors.neutral[700];else return theme.colors.brand[600];
5
- };
6
-
7
- const StyledList = /*#__PURE__*/styled.ol.withConfig({
8
- componentId: "sc-12gvmg4-0"
9
- })(["width:100%;list-style:none;display:flex;padding:0;margin:0;li:first-child *{margin-left:0;}"]);
10
- const StyledCrumbWrapper = /*#__PURE__*/styled.li.withConfig({
11
- componentId: "sc-12gvmg4-1"
12
- })(["display:inline-flex;align-items:center;flex-shrink:20;transition:flex-shrink 0.1s cubic-bezier(0.64,0,0.35,1);height:16px;min-width:10px;&:hover{flex-shrink:0;}", ""], _ref => {
13
- let {
14
- theme,
15
- isTitle,
16
- trailingSlash
17
- } = _ref;
18
- return isTitle || !trailingSlash ? "&:not(:last-child):after {\n display: inline-block;\n content: '/';\n color: ".concat(theme.colors.neutral[700], ";\n }\n ") : "&:after {\n display: inline-block;\n content: '/';\n color: ".concat(theme.colors.neutral[700], ";\n }\n ");
19
- });
20
- const StyledContainer = /*#__PURE__*/styled.nav.withConfig({
21
- componentId: "sc-12gvmg4-2"
22
- })(["display:flex;align-items:center;padding:0;"]);
23
- const StyledLink = /*#__PURE__*/styled.a.withConfig({
24
- componentId: "sc-12gvmg4-3"
25
- })(["white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-decoration:none;font-size:12px;outline:none;margin:0 2px;border:2px solid transparent;-webkit-text-stroke:0.4px transparent;font-weight:", ";color:", ";&:hover{color:", ";cursor:pointer;", ";}&:focus{", " border-radius:2px;}"], _ref2 => {
26
- let {
27
- theme
28
- } = _ref2;
29
- return theme.fontWeights.regular;
30
- }, _ref3 => {
31
- let {
32
- theme,
33
- isActive,
34
- color,
35
- isTitle
36
- } = _ref3;
37
- return handleColor(theme, isActive, color, isTitle);
38
- }, _ref4 => {
39
- let {
40
- theme,
41
- color
42
- } = _ref4;
43
- return color ? color : theme.colors.brand[800];
44
- }, _ref5 => {
45
- let {
46
- theme,
47
- color
48
- } = _ref5;
49
- return "-webkit-text-stroke: 0.4px ".concat(color ? color : theme.colors.brand[800]);
50
- }, _ref6 => {
51
- let {
52
- theme
53
- } = _ref6;
54
- return "border: 2px solid ".concat(theme.colors.brand[700], ";");
55
- });
56
-
57
- export { StyledContainer, StyledCrumbWrapper, StyledLink, StyledList };