@ptcwebops/ptcw-design 6.2.35-beta → 6.2.36-beta

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.
@@ -115,7 +115,7 @@ const PtcRelatedCardRail = class {
115
115
  };
116
116
  // Redirect focus to the target element
117
117
  this.redirectFocus = (event) => {
118
- if (event.key === 'Tab') {
118
+ if (event.key === 'Tab' && !event.shiftKey) {
119
119
  const marker = document.getElementById('hidden-rail-marker');
120
120
  const activeElement = document.activeElement;
121
121
  console.log('active ele: ' + activeElement.classList);
@@ -2902,6 +2902,16 @@ ptc-link, ptc-square-card,
2902
2902
  .preloader-ppc-embedded-form {
2903
2903
  background: var(--Gray-3, #BEC6CA);
2904
2904
  }
2905
+ @media only screen and (max-width: 991.5px) {
2906
+ .preloader-ppc-embedded-form .is-grid {
2907
+ display: flex;
2908
+ flex-direction: column;
2909
+ justify-content: center;
2910
+ }
2911
+ .preloader-ppc-embedded-form .is-grid .form-block-2 {
2912
+ align-self: center;
2913
+ }
2914
+ }
2905
2915
  .preloader-ppc-embedded-form .form-block-2 {
2906
2916
  border-radius: 4px;
2907
2917
  background: #FFF;
@@ -107,7 +107,7 @@ export class PtcRelatedCardRail {
107
107
  };
108
108
  // Redirect focus to the target element
109
109
  this.redirectFocus = (event) => {
110
- if (event.key === 'Tab') {
110
+ if (event.key === 'Tab' && !event.shiftKey) {
111
111
  const marker = document.getElementById('hidden-rail-marker');
112
112
  const activeElement = document.activeElement;
113
113
  console.log('active ele: ' + activeElement.classList);