@roqua/quby-frontend 0.1.4 → 0.2.0

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 (117) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/lib/components/AnswerPage.d.ts.map +1 -1
  3. package/lib/components/AnswerPage.js +7 -2
  4. package/lib/components/AnswerPage.js.map +1 -1
  5. package/lib/components/MainLabel.js +4 -2
  6. package/lib/components/MainLabel.js.map +1 -1
  7. package/lib/components/Paginator.js +4 -2
  8. package/lib/components/Paginator.js.map +1 -1
  9. package/lib/components/PanelContent.js +3 -1
  10. package/lib/components/PanelContent.js.map +1 -1
  11. package/lib/components/PanelItem.d.ts.map +1 -1
  12. package/lib/components/PanelItem.js +4 -4
  13. package/lib/components/PanelItem.js.map +1 -1
  14. package/lib/components/ProgressBar.d.ts.map +1 -1
  15. package/lib/components/ProgressBar.js +6 -4
  16. package/lib/components/ProgressBar.js.map +1 -1
  17. package/lib/components/Quby.js +3 -1
  18. package/lib/components/Quby.js.map +1 -1
  19. package/lib/components/QuestionDescription.js +3 -1
  20. package/lib/components/QuestionDescription.js.map +1 -1
  21. package/lib/components/QuestionWrapper.d.ts +2 -2
  22. package/lib/components/QuestionWrapper.d.ts.map +1 -1
  23. package/lib/components/QuestionWrapper.js +4 -2
  24. package/lib/components/QuestionWrapper.js.map +1 -1
  25. package/lib/components/ValidationErrors.d.ts +2 -2
  26. package/lib/components/ValidationErrors.d.ts.map +1 -1
  27. package/lib/components/ValidationErrors.js +6 -4
  28. package/lib/components/ValidationErrors.js.map +1 -1
  29. package/lib/components/index.js +12 -5
  30. package/lib/components/index.js.map +1 -1
  31. package/lib/components/items/HtmlItem.js +3 -1
  32. package/lib/components/items/HtmlItem.js.map +1 -1
  33. package/lib/components/items/QuestionItem.d.ts +4 -3
  34. package/lib/components/items/QuestionItem.d.ts.map +1 -1
  35. package/lib/components/items/QuestionItem.js +44 -3
  36. package/lib/components/items/QuestionItem.js.map +1 -1
  37. package/lib/components/items/UnknownItem.js +3 -1
  38. package/lib/components/items/UnknownItem.js.map +1 -1
  39. package/lib/components/questions/CheckBoxQuestion.d.ts +2 -1
  40. package/lib/components/questions/CheckBoxQuestion.d.ts.map +1 -1
  41. package/lib/components/questions/CheckBoxQuestion.js +22 -17
  42. package/lib/components/questions/CheckBoxQuestion.js.map +1 -1
  43. package/lib/components/questions/DateQuestion.d.ts +1 -1
  44. package/lib/components/questions/DateQuestion.d.ts.map +1 -1
  45. package/lib/components/questions/DateQuestion.js +5 -3
  46. package/lib/components/questions/DateQuestion.js.map +1 -1
  47. package/lib/components/questions/FloatQuestion.d.ts +1 -1
  48. package/lib/components/questions/FloatQuestion.d.ts.map +1 -1
  49. package/lib/components/questions/FloatQuestion.js +10 -5
  50. package/lib/components/questions/FloatQuestion.js.map +1 -1
  51. package/lib/components/questions/IntegerQuestion.d.ts +1 -1
  52. package/lib/components/questions/IntegerQuestion.d.ts.map +1 -1
  53. package/lib/components/questions/IntegerQuestion.js +5 -3
  54. package/lib/components/questions/IntegerQuestion.js.map +1 -1
  55. package/lib/components/questions/RadioQuestion.d.ts +1 -1
  56. package/lib/components/questions/RadioQuestion.d.ts.map +1 -1
  57. package/lib/components/questions/RadioQuestion.js +8 -6
  58. package/lib/components/questions/RadioQuestion.js.map +1 -1
  59. package/lib/components/questions/ScaleQuestion.d.ts +1 -1
  60. package/lib/components/questions/ScaleQuestion.d.ts.map +1 -1
  61. package/lib/components/questions/ScaleQuestion.js +7 -5
  62. package/lib/components/questions/ScaleQuestion.js.map +1 -1
  63. package/lib/components/questions/SelectQuestion.d.ts.map +1 -1
  64. package/lib/components/questions/SelectQuestion.js +8 -6
  65. package/lib/components/questions/SelectQuestion.js.map +1 -1
  66. package/lib/components/questions/SliderQuestion.d.ts +9 -0
  67. package/lib/components/questions/SliderQuestion.d.ts.map +1 -0
  68. package/lib/components/questions/SliderQuestion.js +123 -0
  69. package/lib/components/questions/SliderQuestion.js.map +1 -0
  70. package/lib/components/questions/StringQuestion.d.ts +1 -1
  71. package/lib/components/questions/StringQuestion.d.ts.map +1 -1
  72. package/lib/components/questions/StringQuestion.js +5 -3
  73. package/lib/components/questions/StringQuestion.js.map +1 -1
  74. package/lib/components/questions/TextareaQuestion.d.ts +1 -1
  75. package/lib/components/questions/TextareaQuestion.d.ts.map +1 -1
  76. package/lib/components/questions/TextareaQuestion.js +6 -4
  77. package/lib/components/questions/TextareaQuestion.js.map +1 -1
  78. package/lib/core/index.d.ts +1 -1
  79. package/lib/core/index.d.ts.map +1 -1
  80. package/lib/core/index.js +14 -6
  81. package/lib/core/index.js.map +1 -1
  82. package/lib/core/mock_helpers.d.ts +5 -0
  83. package/lib/core/mock_helpers.d.ts.map +1 -0
  84. package/lib/core/mock_helpers.js +30 -0
  85. package/lib/core/mock_helpers.js.map +1 -0
  86. package/lib/core/questionnaire.d.ts +3 -1
  87. package/lib/core/questionnaire.d.ts.map +1 -1
  88. package/lib/core/questionnaire.js +3 -0
  89. package/lib/core/questionnaire.js.map +1 -1
  90. package/lib/core/questionnaire_json.d.ts +37 -10
  91. package/lib/core/questionnaire_json.d.ts.map +1 -1
  92. package/lib/core/response.d.ts +26 -8
  93. package/lib/core/response.d.ts.map +1 -1
  94. package/lib/core/response.js +37 -3
  95. package/lib/core/response.js.map +1 -1
  96. package/lib/core/validators.d.ts +9 -8
  97. package/lib/core/validators.d.ts.map +1 -1
  98. package/lib/core/validators.js +4 -1
  99. package/lib/core/validators.js.map +1 -1
  100. package/lib/core/visibility_rules.js +5 -2
  101. package/lib/core/visibility_rules.js.map +1 -1
  102. package/lib/index.js +12 -5
  103. package/lib/index.js.map +1 -1
  104. package/package.json +3 -2
  105. package/lib/assets/assets/quby/application.css +0 -5653
  106. package/lib/components/items/MarkdownItem.d.ts +0 -9
  107. package/lib/components/items/MarkdownItem.d.ts.map +0 -1
  108. package/lib/components/items/MarkdownItem.js +0 -13
  109. package/lib/components/items/MarkdownItem.js.map +0 -1
  110. package/lib/core/markdown.d.ts +0 -2
  111. package/lib/core/markdown.d.ts.map +0 -1
  112. package/lib/core/markdown.js +0 -7
  113. package/lib/core/markdown.js.map +0 -1
  114. package/lib/core/models.d.ts +0 -160
  115. package/lib/core/models.d.ts.map +0 -1
  116. package/lib/core/models.js +0 -3
  117. package/lib/core/models.js.map +0 -1
@@ -1,9 +0,0 @@
1
- import React from "react";
2
- import { IMarkdownItem, Response } from "../../core";
3
- interface Props {
4
- item: IMarkdownItem;
5
- response: Response;
6
- }
7
- export declare const MarkdownItem: React.FunctionComponent<Props>;
8
- export {};
9
- //# sourceMappingURL=MarkdownItem.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MarkdownItem.d.ts","sourceRoot":"","sources":["../../../src/components/items/MarkdownItem.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAY,MAAM,YAAY,CAAC;AAE/D,UAAU,KAAK;IACb,IAAI,EAAE,aAAa,CAAC;IACpB,QAAQ,EAAE,QAAQ,CAAC;CACpB;AAED,eAAO,MAAM,YAAY,EAAE,KAAK,CAAC,iBAAiB,CAAC,KAAK,CAMvD,CAAC"}
@@ -1,13 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- exports.__esModule = true;
6
- var react_1 = __importDefault(require("react"));
7
- var core_1 = require("../../core");
8
- exports.MarkdownItem = function (_a) {
9
- var item = _a.item;
10
- return (react_1["default"].createElement("div", { className: "item" },
11
- react_1["default"].createElement("div", { className: "text", dangerouslySetInnerHTML: { __html: core_1.markdown(item.markdown) } })));
12
- };
13
- //# sourceMappingURL=MarkdownItem.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MarkdownItem.js","sourceRoot":"","sources":["../../../src/components/items/MarkdownItem.tsx"],"names":[],"mappings":";;;;;AAAA,gDAA0B;AAC1B,mCAA+D;AAOlD,QAAA,YAAY,GAAmC,UAAC,EAAQ;QAAN,cAAI;IACjE,OAAO,CACL,0CAAK,SAAS,EAAC,MAAM;QACnB,0CAAK,SAAS,EAAC,MAAM,EAAC,uBAAuB,EAAE,EAAE,MAAM,EAAE,eAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,EAAE,GAAI,CAClF,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare function markdown(str: string): string;
2
- //# sourceMappingURL=markdown.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"markdown.d.ts","sourceRoot":"","sources":["../../src/core/markdown.ts"],"names":[],"mappings":"AAAA,wBAAgB,QAAQ,CAAC,GAAG,EAAE,MAAM,UAEnC"}
@@ -1,7 +0,0 @@
1
- "use strict";
2
- exports.__esModule = true;
3
- function markdown(str) {
4
- return str;
5
- }
6
- exports.markdown = markdown;
7
- //# sourceMappingURL=markdown.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"markdown.js","sourceRoot":"","sources":["../../src/core/markdown.ts"],"names":[],"mappings":";;AAAA,SAAgB,QAAQ,CAAC,GAAW;IAClC,OAAO,GAAG,CAAC;AACb,CAAC;AAFD,4BAEC"}
@@ -1,160 +0,0 @@
1
- export interface ITranslatable {
2
- t: string;
3
- [interpolationKey: string]: string;
4
- }
5
- export declare type IValidation = IRequiresAnswerValidation | IValidIntegerValidation | IValidFloatValidation | IValidDateValidation | IMinimumValidation | IMaximumValidation | IRegexpValidation | IAnswerGroupMinimumValidation | IAnswerGroupMaximumValidation | IMaximumCheckedAllowedValidation | IMinimumCheckedRequiredValidation;
6
- export interface IRequiresAnswerValidation {
7
- type: "requires_answer";
8
- fieldKey: string;
9
- }
10
- export interface IValidIntegerValidation {
11
- type: "valid_integer";
12
- fieldKey: string;
13
- }
14
- export interface IValidFloatValidation {
15
- type: "valid_float";
16
- fieldKey: string;
17
- }
18
- export interface IValidDateValidation {
19
- type: "valid_date";
20
- }
21
- export interface IMinimumValidation {
22
- type: "minimum";
23
- value: number;
24
- fieldKey: string;
25
- }
26
- export interface IMaximumValidation {
27
- type: "maximum";
28
- value: number;
29
- fieldKey: string;
30
- }
31
- export interface IRegexpValidation {
32
- type: "regexp";
33
- matcher: string;
34
- fieldKey: string;
35
- }
36
- export interface IAnswerGroupMinimumValidation {
37
- type: "answer_group_minimum";
38
- fieldKeys: string[];
39
- }
40
- export interface IAnswerGroupMaximumValidation {
41
- type: "answer_group_maximum";
42
- fieldKeys: string[];
43
- }
44
- export interface IMaximumCheckedAllowedValidation {
45
- type: "maximum_checked_allowed";
46
- fieldKey: string;
47
- }
48
- export interface IMinimumCheckedRequiredValidation {
49
- type: "minimum_checked_required";
50
- fieldKey: string;
51
- }
52
- export interface IDateQuestion {
53
- type: "date";
54
- key: string;
55
- title: string;
56
- description: string | null;
57
- presentation: "horizontal" | "vertical";
58
- questionGroup?: string | null;
59
- as?: string | null;
60
- components: any;
61
- }
62
- export interface IStringQuestion {
63
- type: "string";
64
- key: string;
65
- title: string;
66
- description: string | null;
67
- unit: string;
68
- size: number;
69
- presentation: "horizontal" | "vertical";
70
- questionGroup?: string | null;
71
- as?: string | null;
72
- }
73
- export interface ITextareaQuestion {
74
- type: "textarea";
75
- key: string;
76
- title: string;
77
- description: string | null;
78
- presentation: "horizontal" | "vertical";
79
- questionGroup?: string | null;
80
- as?: string | null;
81
- }
82
- export interface IIntegerQuestion {
83
- type: "integer";
84
- key: string;
85
- title: string;
86
- description: string | null;
87
- presentation: "horizontal" | "vertical";
88
- questionGroup?: string | null;
89
- as?: string | null;
90
- }
91
- export interface IFloatQuestion {
92
- type: "float";
93
- key: string;
94
- title: string;
95
- description: string | null;
96
- presentation: "horizontal" | "vertical";
97
- questionGroup?: string | null;
98
- as?: string | null;
99
- }
100
- export interface IRadioQuestion {
101
- type: "radio" | "scale";
102
- key: string;
103
- title: string;
104
- description: string | null;
105
- options: IOption[];
106
- presentation: "horizontal" | "vertical";
107
- questionGroup?: string | null;
108
- as?: string | null;
109
- deselectable: boolean;
110
- }
111
- export interface ICheckBoxQuestion {
112
- type: "check_box";
113
- key: string;
114
- title: string;
115
- description: string | null;
116
- options: IOption[];
117
- presentation: "horizontal" | "vertical";
118
- questionGroup?: string | null;
119
- as?: string | null;
120
- deselectable: boolean;
121
- }
122
- export interface IOption {
123
- key: string;
124
- value: number;
125
- description: string;
126
- hidden: boolean;
127
- showsQuestions: string[];
128
- hidesQuestions: string[];
129
- innerTitle: string | null;
130
- placeholder: boolean;
131
- questions: IField[];
132
- viewId: string;
133
- }
134
- export declare type IField = IDateQuestion | IStringQuestion | ITextareaQuestion | IIntegerQuestion | IFloatQuestion | IRadioQuestion | ICheckBoxQuestion;
135
- export interface IFields {
136
- [key: string]: IField;
137
- }
138
- export interface IHtmlItem {
139
- type: 'html';
140
- html: string;
141
- }
142
- export interface IQuestionItem {
143
- type: 'question';
144
- key: string;
145
- }
146
- export declare type IPanelItem = IHtmlItem | IQuestionItem;
147
- export interface IPanel {
148
- title: string;
149
- items: IPanelItem[];
150
- }
151
- export interface IQuestionnaire {
152
- key: string;
153
- panels: IPanel[];
154
- fields: IFields;
155
- validations: IValidation[];
156
- }
157
- export interface IDisplayOptions {
158
- displayMode: "paged" | "single_page" | "bulk";
159
- }
160
- //# sourceMappingURL=models.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"models.d.ts","sourceRoot":"","sources":["../../src/core/models.ts"],"names":[],"mappings":"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"}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- exports.__esModule = true;
3
- //# sourceMappingURL=models.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"models.js","sourceRoot":"","sources":["../../src/core/models.ts"],"names":[],"mappings":""}