@elliemae/ds-breadcrumb 2.0.2 → 2.1.0-rc.3

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-breadcrumb",
3
- "version": "2.0.2",
3
+ "version": "2.1.0-rc.3",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Breadcrumb",
6
6
  "module": "./esm/index.js",
@@ -48,7 +48,7 @@
48
48
  "build": "node ../../scripts/build/build.js"
49
49
  },
50
50
  "dependencies": {
51
- "@elliemae/ds-system": "2.0.2",
51
+ "@elliemae/ds-system": "2.1.0-rc.3",
52
52
  "react-desc": "~4.1.3"
53
53
  },
54
54
  "devDependencies": {
@@ -9,37 +9,37 @@ declare const DSBreadcrumb: {
9
9
  propTypes: {
10
10
  /** props injected to breadcrumb wrapper */
11
11
  containerProps: {
12
- defaultValue<T = unknown>(arg: T): {
12
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
13
13
  deprecated: import("react-desc").PropTypesDescValidator;
14
14
  };
15
- isRequired: import("react-desc").PropTypesDescValidator;
15
+ isRequired: import("react-desc").PropTypesDescValue;
16
16
  };
17
17
  /**
18
18
  * Type of element you want the main container to be:
19
19
  * 'nav', 'div', 'header', 'footer', 'main'
20
20
  */
21
21
  as: {
22
- defaultValue<T = unknown>(arg: T): {
22
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
23
23
  deprecated: import("react-desc").PropTypesDescValidator;
24
24
  };
25
- isRequired: import("react-desc").PropTypesDescValidator;
25
+ isRequired: import("react-desc").PropTypesDescValue;
26
26
  };
27
27
  /**
28
28
  * Whether to show the last element of the breadcrumb as a title
29
29
  * Also removes trailing slash to show last element as title
30
30
  */
31
31
  isTitle: {
32
- defaultValue<T = unknown>(arg: T): {
32
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
33
33
  deprecated: import("react-desc").PropTypesDescValidator;
34
34
  };
35
- isRequired: import("react-desc").PropTypesDescValidator;
35
+ isRequired: import("react-desc").PropTypesDescValue;
36
36
  };
37
37
  /** breadcrumb label */
38
38
  label: {
39
- defaultValue<T = unknown>(arg: T): {
39
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
40
40
  deprecated: import("react-desc").PropTypesDescValidator;
41
41
  };
42
- isRequired: import("react-desc").PropTypesDescValidator;
42
+ isRequired: import("react-desc").PropTypesDescValue;
43
43
  };
44
44
  /**
45
45
  * Container items to wrap
@@ -6,66 +6,66 @@ declare namespace DSBreadcrumbItem {
6
6
  var propTypes: {
7
7
  /** inject props to wrapper */
8
8
  containerComponent: {
9
- defaultValue<T = unknown>(arg: T): {
9
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
10
10
  deprecated: import("react-desc").PropTypesDescValidator;
11
11
  };
12
- isRequired: import("react-desc").PropTypesDescValidator;
12
+ isRequired: import("react-desc").PropTypesDescValue;
13
13
  };
14
14
  /** render as any html node */
15
15
  as: {
16
- defaultValue<T = unknown>(arg: T): {
16
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
17
17
  deprecated: import("react-desc").PropTypesDescValidator;
18
18
  };
19
- isRequired: import("react-desc").PropTypesDescValidator;
19
+ isRequired: import("react-desc").PropTypesDescValue;
20
20
  };
21
21
  /** active item */
22
22
  active: {
23
- defaultValue<T = unknown>(arg: T): {
23
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
24
24
  deprecated: import("react-desc").PropTypesDescValidator;
25
25
  };
26
- isRequired: import("react-desc").PropTypesDescValidator;
26
+ isRequired: import("react-desc").PropTypesDescValue;
27
27
  };
28
28
  /** href link */
29
29
  href: {
30
- defaultValue<T = unknown>(arg: T): {
30
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
31
31
  deprecated: import("react-desc").PropTypesDescValidator;
32
32
  };
33
- isRequired: import("react-desc").PropTypesDescValidator;
33
+ isRequired: import("react-desc").PropTypesDescValue;
34
34
  };
35
35
  /** on click handler */
36
36
  onClick: {
37
- defaultValue<T = unknown>(arg: T): {
37
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
38
38
  deprecated: import("react-desc").PropTypesDescValidator;
39
39
  };
40
- isRequired: import("react-desc").PropTypesDescValidator;
40
+ isRequired: import("react-desc").PropTypesDescValue;
41
41
  };
42
42
  /** style item as title */
43
43
  isTitle: {
44
- defaultValue<T = unknown>(arg: T): {
44
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
45
45
  deprecated: import("react-desc").PropTypesDescValidator;
46
46
  };
47
- isRequired: import("react-desc").PropTypesDescValidator;
47
+ isRequired: import("react-desc").PropTypesDescValue;
48
48
  };
49
49
  /** add trailing slash */
50
50
  trailingSlash: {
51
- defaultValue<T = unknown>(arg: T): {
51
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
52
52
  deprecated: import("react-desc").PropTypesDescValidator;
53
53
  };
54
- isRequired: import("react-desc").PropTypesDescValidator;
54
+ isRequired: import("react-desc").PropTypesDescValue;
55
55
  };
56
56
  /** item label */
57
57
  label: {
58
- defaultValue<T = unknown>(arg: T): {
58
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
59
59
  deprecated: import("react-desc").PropTypesDescValidator;
60
60
  };
61
- isRequired: import("react-desc").PropTypesDescValidator;
61
+ isRequired: import("react-desc").PropTypesDescValue;
62
62
  };
63
63
  /** link color */
64
64
  color: {
65
- defaultValue<T = unknown>(arg: T): {
65
+ defaultValue(arg: import("react-desc").ReactDescPossibleDefaultValues): {
66
66
  deprecated: import("react-desc").PropTypesDescValidator;
67
67
  };
68
- isRequired: import("react-desc").PropTypesDescValidator;
68
+ isRequired: import("react-desc").PropTypesDescValue;
69
69
  };
70
70
  };
71
71
  }