@pinuts/bsr-uikit-relaunch 0.2.56 → 0.2.58

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.
@@ -95,7 +95,7 @@ const CalendarEventPicker = _ref => {
95
95
  };
96
96
  }, []);
97
97
  return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("div", {
98
- className: "mt-3 bg-info rbc-wrapper"
98
+ className: "mt-3 bg-secondary rbc-wrapper"
99
99
  }, /*#__PURE__*/_react.default.createElement(_reactBigCalendar.Calendar, {
100
100
  date: date,
101
101
  localizer: localizer,
@@ -119,7 +119,7 @@ const CalendarEventPicker = _ref => {
119
119
  onNavigate: onNavigate,
120
120
  eventPropGetter: isKieztage ? eventPropGetter : null
121
121
  })), isKieztage && /*#__PURE__*/_react.default.createElement("div", {
122
- className: "mt-3 bg-info rbc-wrapper"
122
+ className: "mt-3 bg-secondary rbc-wrapper"
123
123
  }, /*#__PURE__*/_react.default.createElement("i", {
124
124
  className: "pi-icon pi-icon-calendar mr-2"
125
125
  }), availableDates === -1 ? unlimitedContingent : infoMonthlyContingent + ' ' + availableDates));
@@ -57,7 +57,7 @@ const RadioField = _ref => {
57
57
  }, infoLine1, usedSubtitle && /*#__PURE__*/_react.default.createElement("div", {
58
58
  className: "small mt-1"
59
59
  }, usedSubtitle), infobadge && /*#__PURE__*/_react.default.createElement("div", {
60
- className: "badge badge-info rounded-pill ml-auto mt-2 mt-sm-0"
60
+ className: "badge badge-secondary rounded-pill ml-auto mt-2 mt-sm-0"
61
61
  }, infobadge), required && /*#__PURE__*/_react.default.createElement("span", {
62
62
  className: "pi-required text-primary mr-1"
63
63
  }, "*"))));
@@ -39,13 +39,13 @@ const FormTitle = _ref => {
39
39
  if (current <= 0) return;
40
40
  if (!total) {
41
41
  return /*#__PURE__*/_react.default.createElement("div", {
42
- className: "step-line bg-primary rounded-pill flex-fill"
42
+ className: "step-line line-brick rounded-pill flex-fill"
43
43
  });
44
44
  }
45
45
  const stepper = [];
46
46
  for (let i = 0; i < total; i++) {
47
47
  let cssClasses = 'step-line rounded-pill flex-fill ';
48
- cssClasses += i < current ? 'bg-primary' : 'bg-secondary';
48
+ cssClasses += i < current ? 'line-brick' : 'line-gray';
49
49
  cssClasses += i + 1 !== total ? ' mr-2' : '';
50
50
  stepper.push(/*#__PURE__*/_react.default.createElement("div", {
51
51
  key: `${i}_${current}`,
@@ -21,7 +21,7 @@ const Intro = props => {
21
21
  }, /*#__PURE__*/_react.default.createElement("span", {
22
22
  className: "mr-2 mr-sm-0"
23
23
  }, headline), infobadge && /*#__PURE__*/_react.default.createElement("span", {
24
- className: "badge badge-info rounded-pill ml-sm-3 mt-2 mt-sm-0"
24
+ className: "badge badge-secondary rounded-pill ml-sm-3 mt-2 mt-sm-0"
25
25
  }, infobadge)), /*#__PURE__*/_react.default.createElement("p", null, description));
26
26
  };
27
27
  Intro.propTypes = {
@@ -572,6 +572,7 @@ form input[type="checkbox"] + label:before {
572
572
  display: flex;
573
573
  align-items: center;
574
574
  justify-content: space-between;
575
+ color: $bsr-black-90;
575
576
  }
576
577
  .pi-info {
577
578
  display: flex;
@@ -588,6 +589,13 @@ form input[type="checkbox"] + label:before {
588
589
  }
589
590
  }
590
591
 
592
+ fieldset legend {
593
+ h2, h3, h4 {
594
+ font-family: $fontfamily-base;
595
+ color: $bsr-black-90;
596
+ }
597
+ }
598
+
591
599
  fieldset.fieldsetLegend legend, .pi-title {
592
600
 
593
601
  h2, h3, h4 {
@@ -610,3 +618,12 @@ fieldset.formInput:has(.topRow):has(input[type="checkbox"]) {
610
618
  input.custom-control-input label.custom-control-label {
611
619
  column-gap: $base-gap;
612
620
  }
621
+
622
+ .step-line {
623
+ &.line-gray {
624
+ background: $bsr-black-10;
625
+ }
626
+ &.line-brick {
627
+ background: $bsr-brick-100;
628
+ }
629
+ }
@@ -82,10 +82,10 @@ footer {
82
82
  font-family: $fontfamily-heading;
83
83
  }
84
84
 
85
- .rbc-wrapper {
86
- min-height: 590px;
87
- }
88
-
89
85
  .rbc-wrapper .rbc-calendar {
90
86
  font-family: $fontfamily-base;
87
+ }
88
+
89
+ .rbc-date-cell.rbc-now span {
90
+ color: $bsr-brick-100;
91
91
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pinuts/bsr-uikit-relaunch",
3
- "version": "0.2.56",
3
+ "version": "0.2.58",
4
4
  "private": false,
5
5
  "description": "BSR UI-KIT Relaunch",
6
6
  "main": "dist/index.js",