@redsift/design-system-legacy 10.3.0-alpha.1 → 10.3.0-alpha.10

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 (2) hide show
  1. package/CONTRIBUTING.md +4 -4
  2. package/package.json +2 -2
package/CONTRIBUTING.md CHANGED
@@ -58,6 +58,10 @@ The Design System is following a monorepo architecture, providing multiple packa
58
58
 
59
59
  This package provides dashboard-related components and decorators to make charts and datagrid filterable using [crossfilter](https://crossfilter.github.io/crossfilter/).
60
60
 
61
+ - `@redsift/products`
62
+
63
+ This package provides ready-to-use implementation of components with a customize style to fit Red Sift's use cases. It is based on all other packages.
64
+
61
65
  - _Deprecated_ `@redsift/design-system-legacy`
62
66
 
63
67
  This package contains all components prior to the 6.0.0 version. These components are deprecated and contributing to this package is discouraged since it will be removed in the future.
@@ -133,9 +137,6 @@ import { BadgeProps } from './types';
133
137
 
134
138
  const COMPONENT_NAME = 'Badge';
135
139
  const CLASSNAME = 'redsift-badge';
136
- const DEFAULT_PROPS: Partial<BadgeProps> = {
137
- // default values
138
- };
139
140
 
140
141
  /**
141
142
  * The Badge component.
@@ -158,7 +159,6 @@ export const Badge: Comp<BadgeProps, HTMLDivElement> = forwardRef((props, ref) =
158
159
  );
159
160
  });
160
161
  Badge.className = CLASSNAME;
161
- Badge.defaultProps = DEFAULT_PROPS;
162
162
  Badge.displayName = COMPONENT_NAME;
163
163
  ```
164
164
 
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "prepare": "install-peers || exit 0",
12
12
  "prepublishOnly": "yarn build"
13
13
  },
14
- "version": "10.3.0-alpha.1",
14
+ "version": "10.3.0-alpha.10",
15
15
  "dependencies": {
16
16
  "classnames": "^2.3.1",
17
17
  "match-sorter": "^6.3.1",
@@ -62,5 +62,5 @@
62
62
  "react-dom": ">=17",
63
63
  "styled-components": "^5.3.5"
64
64
  },
65
- "gitHead": "316717fd897b6d1baffebb79fac296535db5d3a9"
65
+ "gitHead": "df5c2f525b5fe807f878b52bb87efe55ce5a320a"
66
66
  }