@product7/feedback-sdk 1.7.7 → 1.7.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@product7/feedback-sdk",
3
- "version": "1.7.7",
3
+ "version": "1.7.8",
4
4
  "description": "JavaScript SDK for integrating Product7 feedback widgets into any website",
5
5
  "main": "dist/feedback-sdk.js",
6
6
  "module": "src/index.js",
@@ -251,11 +251,11 @@ export class SurveyWidget extends BaseWidget {
251
251
  title: this.surveyOptions.title || '',
252
252
  description: cesPrompt,
253
253
  html: `
254
- <div class="feedback-survey-ces">
254
+ <div class="feedback-survey-ces-list">
255
255
  ${['Very Difficult', 'Difficult', 'Neutral', 'Easy', 'Very Easy']
256
256
  .map(
257
257
  (label, i) => `
258
- <button class="feedback-survey-ces-btn" data-score="${i + 1}">${label}</button>
258
+ <button class="feedback-survey-ces-btn feedback-survey-ces-list-btn" data-score="${i + 1}">${label}</button>
259
259
  `
260
260
  )
261
261
  .join('')}