@banyan_cloud/roots 1.0.119 → 1.0.120

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/dist/cjs/index.js CHANGED
@@ -24066,24 +24066,15 @@ function requireCssExtras () {
24066
24066
  return cssExtras_1;
24067
24067
  }
24068
24068
 
24069
- var csv_1;
24070
- var hasRequiredCsv;
24071
-
24072
- function requireCsv () {
24073
- if (hasRequiredCsv) return csv_1;
24074
- hasRequiredCsv = 1;
24075
-
24076
- csv_1 = csv;
24077
- csv.displayName = 'csv';
24078
- csv.aliases = [];
24079
- function csv(Prism) {
24080
- // https://tools.ietf.org/html/rfc4180
24081
- Prism.languages.csv = {
24082
- value: /[^\r\n,"]+|"(?:[^"]|"")*"(?!")/,
24083
- punctuation: /,/
24084
- };
24085
- }
24086
- return csv_1;
24069
+ var csv_1 = csv;
24070
+ csv.displayName = 'csv';
24071
+ csv.aliases = [];
24072
+ function csv(Prism) {
24073
+ // https://tools.ietf.org/html/rfc4180
24074
+ Prism.languages.csv = {
24075
+ value: /[^\r\n,"]+|"(?:[^"]|"")*"(?!")/,
24076
+ punctuation: /,/
24077
+ };
24087
24078
  }
24088
24079
 
24089
24080
  var cypher_1;
@@ -43105,7 +43096,7 @@ refractor.register(requireCsharp());
43105
43096
  refractor.register(requireCshtml());
43106
43097
  refractor.register(requireCsp());
43107
43098
  refractor.register(requireCssExtras());
43108
- refractor.register(requireCsv());
43099
+ refractor.register(csv_1);
43109
43100
  refractor.register(requireCypher());
43110
43101
  refractor.register(requireD());
43111
43102
  refractor.register(requireDart());
@@ -47653,6 +47644,7 @@ var Step = function Step(props) {
47653
47644
  }
47654
47645
  return /*#__PURE__*/jsxRuntime.jsxs("div", {
47655
47646
  className: classes(modules_abbc385a.root, active ? modules_abbc385a.active : '', completion === 1 ? modules_abbc385a.completed : '', error ? modules_abbc385a.error : '', noTail ? modules_abbc385a['no-tail'] : '', modules_abbc385a[orientation]),
47647
+ "data-elem": "step",
47656
47648
  children: [/*#__PURE__*/jsxRuntime.jsx("div", {
47657
47649
  className: modules_abbc385a.left,
47658
47650
  children: IconContainer
@@ -47691,9 +47683,10 @@ Step.defaultProps = {
47691
47683
 
47692
47684
  var Stepper = function Stepper(props) {
47693
47685
  var steps = props.steps,
47694
- orientation = props.orientation;
47686
+ orientation = props.orientation,
47687
+ className = props.className;
47695
47688
  return /*#__PURE__*/jsxRuntime.jsx("div", {
47696
- className: classes(modules_bbfded44.root, modules_bbfded44[orientation]),
47689
+ className: classes(className, modules_bbfded44.root, modules_bbfded44[orientation]),
47697
47690
  children: steps.map(function (step, index) {
47698
47691
  return /*#__PURE__*/React.createElement(Step, _objectSpread2(_objectSpread2({}, step), {}, {
47699
47692
  key: "".concat(step.title, "-").concat(step.description),