@auth0/quantum-product 1.5.1 → 1.5.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/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # Quantum Product
2
+
3
+ Quantum Product is a reusable component library that helps Auth0 teams build UIs faster. The goal is to make building durable UIs more productive and satisfying.
4
+
5
+ ## Docs
6
+
7
+ [Quantum Product Storybook](https://main--62de9cdffb68e8a4ec657572.chromatic.com/)
8
+
9
+ ## Packages
10
+
11
+ Note: The below repos are private for now. The source code will be made public at a later date.
12
+
13
+ | Package/README | Description |
14
+ | -------------------------------------------------------------------------------------------------------------- | ------------------------------------|
15
+ | [@auth0/quantum-product](https://github.com/auth0/quantum-product/tree/main/packages/quantum-product) | Main Component Library |
16
+ | [@auth0/quantum-lab](https://github.com/auth0/quantum-product/tree/main/packages/quantum-lab) | Expiremental Component Library |
17
+ | [@auth0/quantum-tokens](https://github.com/auth0/quantum-product/tree/main/packages/quantum-tokens) | Design Tokens |
18
+ | [@auth0/quantum-codemods](https://github.com/auth0/quantum-product/tree/main/packages/quantum-codemods) | Codemods to help with migrations |
19
+ | [@a0/quantum-fonts](https://github.com/auth0/quantum-assets/tree/main/packages/quantum-fonts) | Extended Inter font (slashed-zero) |
20
+
21
+ ## Figma
22
+
23
+ [Quantum Product Figma](https://www.figma.com/file/H20mOEOZpf5a2DXaUEbmSh/Quantum-Product-UI-Kit?node-id=2120%3A10967)
24
+
25
+ ## Browser support
26
+
27
+ Quantum follows Auth0's main browser support for the [management dashboard](https://auth0.com/docs/troubleshoot/customer-support/product-support-matrix#auth0-dashboard-desktop-browsers):
28
+
29
+ All listed browsers are the latest versions unless otherwise indicated.
30
+
31
+ |Broser |Support Level |
32
+ |-----------------|----------------|
33
+ |Chrome |Supported |
34
+ |Safari |Sustained |
35
+ |Edge |Sustained |
36
+ |Firefox |Sustained |
37
+ |IE |Unsupported |
38
+
39
+ |Level |Description |
40
+ |---------------|---------------|
41
+ |Supported |Supported Auth0 has formally tested, and will support and provide both new features and bug fixes (if applicable) for these items.|
42
+ |Sustained |Auth0 will support and may provide bug fixes (if applicable) for these items.|
43
+
44
+ ## Working Group
45
+
46
+ Quantum Product is maintained by the [Design System Working Group (DSWG)](https://oktawiki.atlassian.net/wiki/spaces/DES/pages/2537685881/Design+Systems+Working+Group+DSWG).
47
+
48
+ The DSWG is a collection of people from different teams that are working to maintain and contribute to the design system alongside their other work. We can be reached via the following:
49
+
50
+ * Slack [#quantum-product](https://auth0.slack.com/archives/C019ABN4CEL)
51
+ * Slack [#cipu-design-systems-wg](https://auth0.slack.com/archives/C022A262NP3)
@@ -11,7 +11,8 @@ var __assign = (this && this.__assign) || function () {
11
11
  };
12
12
  import * as React from 'react';
13
13
  import MuiStepLabel from '@mui/material/StepLabel';
14
- import { StatusIcon, CheckIcon } from '@a0/quantum-product';
14
+ import { StatusIcon } from '../../status';
15
+ import { CheckIcon } from '../../icon';
15
16
  var CustomStepIcon = function (_a) {
16
17
  var active = _a.active, completed = _a.completed;
17
18
  return (React.createElement(StatusIcon, { icon: CheckIcon, variant: active || completed ? 'filled' : 'default', color: completed ? 'success' : 'default' }));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auth0/quantum-product",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "sideEffects": false,
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -40,10 +40,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
40
40
  exports.StepLabel = void 0;
41
41
  var React = __importStar(require("react"));
42
42
  var StepLabel_1 = __importDefault(require("@mui/material/StepLabel"));
43
- var quantum_product_1 = require("@a0/quantum-product");
43
+ var status_1 = require("../../status");
44
+ var icon_1 = require("../../icon");
44
45
  var CustomStepIcon = function (_a) {
45
46
  var active = _a.active, completed = _a.completed;
46
- return (React.createElement(quantum_product_1.StatusIcon, { icon: quantum_product_1.CheckIcon, variant: active || completed ? 'filled' : 'default', color: completed ? 'success' : 'default' }));
47
+ return (React.createElement(status_1.StatusIcon, { icon: icon_1.CheckIcon, variant: active || completed ? 'filled' : 'default', color: completed ? 'success' : 'default' }));
47
48
  };
48
49
  exports.StepLabel = React.forwardRef(function (props, ref) {
49
50
  return React.createElement(StepLabel_1.default, __assign({ StepIconComponent: CustomStepIcon }, props, { ref: ref }));