diy-template-components 0.2.60 → 0.2.62

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/build/index.js CHANGED
@@ -7019,6 +7019,9 @@ const useWebinarPromotionPage = createUseStyles(theme => {
7019
7019
  borderRadius: '6px'
7020
7020
  },
7021
7021
  '@media (max-width: 767px)': {
7022
+ bannerContainerText: {
7023
+ fontSize: '16px'
7024
+ },
7022
7025
  courseViewContainer: {
7023
7026
  width: '100%'
7024
7027
  },
@@ -7048,6 +7051,11 @@ const useWebinarPromotionPage = createUseStyles(theme => {
7048
7051
  videoDetailsContent: {
7049
7052
  marginTop: '4px'
7050
7053
  }
7054
+ },
7055
+ '@media (max-width: 420px)': {
7056
+ bannerContainerText: {
7057
+ fontSize: '14px'
7058
+ }
7051
7059
  }
7052
7060
  };
7053
7061
  });
@@ -7491,6 +7499,9 @@ const useCoursePromotionPage = createUseStyles(theme => {
7491
7499
  marginLeft: 'auto'
7492
7500
  },
7493
7501
  '@media (max-width: 767px)': {
7502
+ bannerContainerText: {
7503
+ fontSize: '16px'
7504
+ },
7494
7505
  courseViewContainer: {
7495
7506
  width: '100%',
7496
7507
  paddingBottom: '10px'
@@ -7522,6 +7533,11 @@ const useCoursePromotionPage = createUseStyles(theme => {
7522
7533
  videoDetailsContent: {
7523
7534
  marginTop: '4px'
7524
7535
  }
7536
+ },
7537
+ '@media (max-width: 420px)': {
7538
+ bannerContainerText: {
7539
+ fontSize: '14px'
7540
+ }
7525
7541
  }
7526
7542
  };
7527
7543
  });
@@ -8081,7 +8097,7 @@ const FormPage = ({
8081
8097
  }, /*#__PURE__*/React__default["default"].createElement("input", {
8082
8098
  // value={option.value}
8083
8099
  type: "radio",
8084
- name: "text",
8100
+ name: `text_${item._id}`,
8085
8101
  required: item.isRequired,
8086
8102
  value: option.value,
8087
8103
  checked: formData[item._id]?.solutionArray?.[0] === option.value