@bethinkpl/design-system 34.2.1 → 34.2.2

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.
Files changed (40) hide show
  1. package/dist/design-system.css +1 -1
  2. package/dist/design-system.js +2459 -2391
  3. package/dist/design-system.js.map +1 -1
  4. package/dist/i18n/en/blockadeStatus.json +4 -0
  5. package/dist/i18n/en/cardExpandable.json +4 -0
  6. package/dist/i18n/en/overlayHeader.json +3 -0
  7. package/dist/i18n/en/survey.json +3 -0
  8. package/dist/i18n/pl/blockadeStatus.json +4 -0
  9. package/dist/i18n/pl/cardExpandable.json +4 -0
  10. package/dist/i18n/pl/overlayHeader.json +3 -0
  11. package/dist/i18n/pl/survey.json +3 -0
  12. package/dist/lib/js/components/Cards/CardExpandable/CardExpandable.vue.d.ts +9 -5
  13. package/dist/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue.d.ts +3 -1
  14. package/dist/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue.d.ts +4 -2
  15. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue.d.ts +12 -6
  16. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue.d.ts +10 -5
  17. package/dist/lib/js/components/SurveyQuestions/SurveyQuestionTextarea.vue.d.ts +7 -3
  18. package/dist/lib/js/i18n/en.d.ts +6 -0
  19. package/dist/lib/js/i18n/index.d.ts +12 -0
  20. package/dist/lib/js/i18n/pl.d.ts +6 -0
  21. package/lib/js/components/Cards/CardExpandable/CardExpandable.stories.ts +2 -2
  22. package/lib/js/components/Cards/CardExpandable/CardExpandable.vue +19 -3
  23. package/lib/js/components/Headers/OverlayHeader/OverlayHeader.vue +7 -1
  24. package/lib/js/components/Statuses/BlockadeStatus/BlockadeStatus.vue +8 -2
  25. package/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.stories.ts +2 -2
  26. package/lib/js/components/SurveyQuestions/SurveyQuestionOpenEnded/SurveyQuestionOpenEnded.vue +7 -2
  27. package/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.stories.ts +4 -4
  28. package/lib/js/components/SurveyQuestions/SurveyQuestionScale/SurveyQuestionScale.vue +5 -2
  29. package/lib/js/components/SurveyQuestions/SurveyQuestionTextarea.vue +13 -2
  30. package/lib/js/i18n/en/blockadeStatus.json +4 -0
  31. package/lib/js/i18n/en/cardExpandable.json +4 -0
  32. package/lib/js/i18n/en/overlayHeader.json +3 -0
  33. package/lib/js/i18n/en/survey.json +3 -0
  34. package/lib/js/i18n/en.ts +8 -0
  35. package/lib/js/i18n/pl/blockadeStatus.json +4 -0
  36. package/lib/js/i18n/pl/cardExpandable.json +4 -0
  37. package/lib/js/i18n/pl/overlayHeader.json +3 -0
  38. package/lib/js/i18n/pl/survey.json +3 -0
  39. package/lib/js/i18n/pl.ts +8 -0
  40. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ {
2
+ "ds.overlayHeader.close": "Zamknij — Q"
3
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "ds.survey.placeholder": "Wpisz swoją odpowiedź"
3
+ }
package/lib/js/i18n/pl.ts CHANGED
@@ -3,6 +3,10 @@ import accessStatus from './pl/accessStatus.json';
3
3
  import pagination from './pl/pagination.json';
4
4
  import statsLayout from './pl/statsLayout.json';
5
5
  import datePicker from './pl/datePicker.json';
6
+ import survey from './pl/survey.json';
7
+ import overlayHeader from './pl/overlayHeader.json';
8
+ import cardExpandable from './pl/cardExpandable.json';
9
+ import blockadeStatus from './pl/blockadeStatus.json';
6
10
 
7
11
  export default {
8
12
  ...globals,
@@ -10,4 +14,8 @@ export default {
10
14
  ...pagination,
11
15
  ...statsLayout,
12
16
  ...datePicker,
17
+ ...survey,
18
+ ...overlayHeader,
19
+ ...cardExpandable,
20
+ ...blockadeStatus,
13
21
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bethinkpl/design-system",
3
- "version": "34.2.1",
3
+ "version": "34.2.2",
4
4
  "description": "Bethink universe design-system",
5
5
  "repository": {
6
6
  "type": "git",