@digigov/form 1.0.0-6b93ebf2 → 1.0.0-758a1807
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/FormBuilder/FormBuilder.mdx +6 -8
- package/MultiplicityField/__stories__/PreviewDisplay.js +1 -1
- package/Questions/Step/StepArrayReview.js +2 -2
- package/Questions/Step/StepTitle.d.ts +2 -2
- package/Questions/Step/StepTitle.js +8 -4
- package/Questions/Step/index.d.ts +4 -4
- package/Questions/Step/index.js +53 -36
- package/Questions/__snapshots__/index.spec.tsx.snap +69 -356
- package/Questions/__stories__/Default.js +1 -1
- package/Questions/index.mdx +4 -4
- package/es/FormBuilder/FormBuilder.mdx +6 -8
- package/es/MultiplicityField/__stories__/PreviewDisplay.js +1 -1
- package/es/Questions/Step/StepArrayReview.js +2 -2
- package/es/Questions/Step/StepTitle.js +7 -4
- package/es/Questions/Step/index.js +4 -4
- package/es/Questions/__snapshots__/index.spec.tsx.snap +69 -356
- package/es/Questions/__stories__/Default.js +1 -1
- package/es/Questions/index.mdx +4 -4
- package/es/inputs/FileInput/index.js +1 -1
- package/es/inputs/OtpInput/index.js +5 -5
- package/esm/FormBuilder/FormBuilder.mdx +6 -8
- package/esm/MultiplicityField/__stories__/PreviewDisplay.js +1 -1
- package/esm/Questions/Step/StepArrayReview.js +2 -2
- package/esm/Questions/Step/StepTitle.js +7 -4
- package/esm/Questions/Step/index.js +4 -4
- package/esm/Questions/__snapshots__/index.spec.tsx.snap +69 -356
- package/esm/Questions/__stories__/Default.js +1 -1
- package/esm/Questions/index.mdx +4 -4
- package/esm/index.js +1 -1
- package/esm/inputs/FileInput/index.js +1 -1
- package/esm/inputs/OtpInput/index.js +5 -5
- package/inputs/FileInput/index.js +1 -1
- package/inputs/OtpInput/index.js +5 -5
- package/package.json +4 -4
- package/src/FormBuilder/FormBuilder.mdx +6 -8
- package/src/MultiplicityField/__stories__/PreviewDisplay.tsx +4 -4
- package/src/Questions/Step/StepArrayReview.tsx +3 -3
- package/src/Questions/Step/StepTitle.tsx +12 -14
- package/src/Questions/Step/index.ts +4 -4
- package/src/Questions/__snapshots__/index.spec.tsx.snap +69 -356
- package/src/Questions/__stories__/Default.tsx +4 -4
- package/src/Questions/index.mdx +4 -4
- package/src/inputs/FileInput/index.tsx +1 -1
- package/src/inputs/OtpInput/index.tsx +8 -8
- package/src/types.tsx +1 -1
- package/types.d.ts +1 -1
|
@@ -4,7 +4,7 @@ import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
|
|
|
4
4
|
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
5
5
|
var _excluded = ["name", "maxLength"];
|
|
6
6
|
import React, { useState, useCallback } from 'react';
|
|
7
|
-
import
|
|
7
|
+
import SingleCharacterInputs, { SingleCharacterInput } from '@digigov/ui/form/SingleCharacterInputs';
|
|
8
8
|
export var RE_DIGIT = new RegExp(/^\d+$/);
|
|
9
9
|
export var REMOVE_SPACES = new RegExp(/\s+/g);
|
|
10
10
|
|
|
@@ -113,10 +113,10 @@ function useOtp(onChange, maxLength) {
|
|
|
113
113
|
};
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
var
|
|
116
|
+
var SingleCharacterInputPart = function SingleCharacterInputPart(_ref) {
|
|
117
117
|
var props = _extends({}, _ref);
|
|
118
118
|
|
|
119
|
-
return /*#__PURE__*/React.createElement(
|
|
119
|
+
return /*#__PURE__*/React.createElement(SingleCharacterInput, props);
|
|
120
120
|
};
|
|
121
121
|
|
|
122
122
|
export var OtpInput = function OtpInput(_ref2) {
|
|
@@ -126,8 +126,8 @@ export var OtpInput = function OtpInput(_ref2) {
|
|
|
126
126
|
props = _objectWithoutProperties(_ref2, _excluded);
|
|
127
127
|
|
|
128
128
|
var otp = useOtp(props.onChange, maxLength);
|
|
129
|
-
return /*#__PURE__*/React.createElement(
|
|
130
|
-
return /*#__PURE__*/React.createElement(
|
|
129
|
+
return /*#__PURE__*/React.createElement(SingleCharacterInputs, null, otp.otpValues.map(function (digit, idx) {
|
|
130
|
+
return /*#__PURE__*/React.createElement(SingleCharacterInputPart, {
|
|
131
131
|
name: "".concat(name, "-").concat(idx),
|
|
132
132
|
type: "text",
|
|
133
133
|
key: idx,
|
|
@@ -68,7 +68,7 @@ var FileInput = /*#__PURE__*/_react["default"].forwardRef(function FileInput(_re
|
|
|
68
68
|
};
|
|
69
69
|
|
|
70
70
|
return /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_FileUploadContainer["default"], {
|
|
71
|
-
|
|
71
|
+
hasFiles: files && files.length > 0
|
|
72
72
|
}, files !== null && files !== void 0 && files.length ? /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(_Paragraph["default"], null, /*#__PURE__*/_react["default"].createElement("b", null, t('upload.file'), ":"), " ", "".concat(files.join(', ')))) : /*#__PURE__*/_react["default"].createElement(_Hint["default"], null, t('upload.no_file')), /*#__PURE__*/_react["default"].createElement(_FileUpload["default"], (0, _extends2["default"])({
|
|
73
73
|
ref: ref,
|
|
74
74
|
hasFiles: !!(files !== null && files !== void 0 && files.length),
|
package/inputs/OtpInput/index.js
CHANGED
|
@@ -19,7 +19,7 @@ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/sli
|
|
|
19
19
|
|
|
20
20
|
var _react = _interopRequireWildcard(require("react"));
|
|
21
21
|
|
|
22
|
-
var
|
|
22
|
+
var _SingleCharacterInputs = _interopRequireWildcard(require("@digigov/ui/form/SingleCharacterInputs"));
|
|
23
23
|
|
|
24
24
|
var _excluded = ["name", "maxLength"];
|
|
25
25
|
|
|
@@ -137,9 +137,9 @@ function useOtp(onChange, maxLength) {
|
|
|
137
137
|
};
|
|
138
138
|
}
|
|
139
139
|
|
|
140
|
-
var
|
|
140
|
+
var SingleCharacterInputPart = function SingleCharacterInputPart(_ref) {
|
|
141
141
|
var props = (0, _extends2["default"])({}, _ref);
|
|
142
|
-
return /*#__PURE__*/_react["default"].createElement(
|
|
142
|
+
return /*#__PURE__*/_react["default"].createElement(_SingleCharacterInputs.SingleCharacterInput, props);
|
|
143
143
|
};
|
|
144
144
|
|
|
145
145
|
var OtpInput = function OtpInput(_ref2) {
|
|
@@ -148,8 +148,8 @@ var OtpInput = function OtpInput(_ref2) {
|
|
|
148
148
|
maxLength = _ref2$maxLength === void 0 ? 6 : _ref2$maxLength,
|
|
149
149
|
props = (0, _objectWithoutProperties2["default"])(_ref2, _excluded);
|
|
150
150
|
var otp = useOtp(props.onChange, maxLength);
|
|
151
|
-
return /*#__PURE__*/_react["default"].createElement(
|
|
152
|
-
return /*#__PURE__*/_react["default"].createElement(
|
|
151
|
+
return /*#__PURE__*/_react["default"].createElement(_SingleCharacterInputs["default"], null, otp.otpValues.map(function (digit, idx) {
|
|
152
|
+
return /*#__PURE__*/_react["default"].createElement(SingleCharacterInputPart, {
|
|
153
153
|
name: "".concat(name, "-").concat(idx),
|
|
154
154
|
type: "text",
|
|
155
155
|
key: idx,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/form",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-758a1807",
|
|
4
4
|
"description": "@digigov form builder",
|
|
5
5
|
"author": "GRNET Developers <devs@lists.grnet.gr>",
|
|
6
6
|
"license": "BSD-2-Clause",
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"dayjs": "1.10.4",
|
|
18
18
|
"@hookform/resolvers": "2.9.6",
|
|
19
19
|
"publint": "0.1.8",
|
|
20
|
-
"@digigov/react-icons": "1.0.0-
|
|
20
|
+
"@digigov/react-icons": "1.0.0-758a1807"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@digigov/ui": "1.0.0-
|
|
24
|
-
"@digigov/react-core": "1.0.0-
|
|
23
|
+
"@digigov/ui": "1.0.0-758a1807",
|
|
24
|
+
"@digigov/react-core": "1.0.0-758a1807",
|
|
25
25
|
"clsx": "1.1.1",
|
|
26
26
|
"react": "^16.8.0 || ^17.0.0",
|
|
27
27
|
"react-dom": "^16.8.0 || ^17.0.0"
|
|
@@ -95,10 +95,10 @@ import Header, { HeaderTitle } from '@digigov/ui/app/Header';
|
|
|
95
95
|
import GovGRLogo from '@digigov/ui/govgr/GovGRLogo';
|
|
96
96
|
import GovGRFooter from '@digigov/ui/govgr/Footer';
|
|
97
97
|
import Button from '@digigov/ui/form/Button';
|
|
98
|
-
import
|
|
98
|
+
import PageTitleContainer, {
|
|
99
|
+
PageTitleCaption,
|
|
99
100
|
PageTitleHeading,
|
|
100
|
-
} from '@digigov/ui/app/
|
|
101
|
-
import { HeadingCaption } from '@digigov/ui/typography/HeadingCaption';
|
|
101
|
+
} from '@digigov/ui/app/PageTitleContainer';
|
|
102
102
|
import BackButton from '@digigov/ui/form/Button/BackButton';
|
|
103
103
|
import FormBuilder, { Fieldset, FieldsetLabel, Field } from '@digigov/form';
|
|
104
104
|
import { useTranslation } from '@digigov/ui/i18n';
|
|
@@ -227,12 +227,10 @@ export default function Index() {
|
|
|
227
227
|
<Content>
|
|
228
228
|
<Main className={styles.main}>
|
|
229
229
|
<BackButton>{t('button.back')}</BackButton>
|
|
230
|
-
<
|
|
231
|
-
|
|
232
|
-
<HeadingCaption>Before we start</HeadingCaption>
|
|
233
|
-
</Section>
|
|
230
|
+
<PageTitleContainer>
|
|
231
|
+
<PageTitleCaption>Before we start</PageTitleCaption>
|
|
234
232
|
<PageTitleHeading>Submit a form</PageTitleHeading>
|
|
235
|
-
</
|
|
233
|
+
</PageTitleContainer>
|
|
236
234
|
<FormBuilder
|
|
237
235
|
fields={FIELDS}
|
|
238
236
|
onSubmit={setData}
|
|
@@ -64,12 +64,12 @@ const fields = [
|
|
|
64
64
|
export const PreviewDisplay = () => (
|
|
65
65
|
<Layout>
|
|
66
66
|
<Header>
|
|
67
|
-
<
|
|
68
|
-
<
|
|
67
|
+
<HeaderContent>
|
|
68
|
+
<HeaderSection>
|
|
69
69
|
<GovGRLogo href="#" />
|
|
70
70
|
<HeaderTitle>Πρότυπο-Αναφοράς</HeaderTitle>
|
|
71
|
-
</
|
|
72
|
-
</
|
|
71
|
+
</HeaderSection>
|
|
72
|
+
</HeaderContent>
|
|
73
73
|
</Header>
|
|
74
74
|
<Content>
|
|
75
75
|
<Main>
|
|
@@ -7,7 +7,7 @@ import { QuestionsContext } from '@digigov/form/Questions/QuestionsContext';
|
|
|
7
7
|
import { getAddMoreFields } from '@digigov/form/Questions/Step/getAddMoreFields';
|
|
8
8
|
import { StepArrayReviewInterface } from '@digigov/form/Questions/Step/types';
|
|
9
9
|
import { FieldSpec } from '@digigov/form/types';
|
|
10
|
-
import
|
|
10
|
+
import PageTitleContainer, { PageTitleHeading } from '@digigov/ui/app/PageTitleContainer';
|
|
11
11
|
import {
|
|
12
12
|
SummaryList,
|
|
13
13
|
SummaryListItem,
|
|
@@ -28,11 +28,11 @@ export const StepArrayReview: React.FC<StepArrayReviewInterface> = (props) => {
|
|
|
28
28
|
) || {};
|
|
29
29
|
return (
|
|
30
30
|
<>
|
|
31
|
-
<
|
|
31
|
+
<PageTitleContainer>
|
|
32
32
|
<PageTitleHeading>
|
|
33
33
|
{currentStep.review?.title && t(currentStep.review?.title)}
|
|
34
34
|
</PageTitleHeading>
|
|
35
|
-
</
|
|
35
|
+
</PageTitleContainer>
|
|
36
36
|
<SummaryList>
|
|
37
37
|
{props.array.map(
|
|
38
38
|
(item: { [x: string]: React.ReactNode }, idx: number) => (
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import React, { useContext } from 'react';
|
|
2
2
|
import { StepContext } from '@digigov/form/Questions/Step/StepContext';
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
} from '@digigov/ui/app/PageTitle';
|
|
3
|
+
import PageTitleContainer, {
|
|
4
|
+
PageTitleCaption,
|
|
5
|
+
} from '@digigov/ui/app/PageTitleContainer';
|
|
7
6
|
import BackButton from '@digigov/ui/form/Button/BackButton';
|
|
8
7
|
import { useTranslation } from '@digigov/ui/i18n';
|
|
9
|
-
import
|
|
8
|
+
import HeadingCaption from '@digigov/react-core/HeadingCaption';
|
|
9
|
+
import Heading, { HeadingProps } from '@digigov/react-core/Heading';
|
|
10
10
|
|
|
11
11
|
export interface StepTitleInterface {
|
|
12
12
|
title?: string;
|
|
@@ -15,8 +15,8 @@ export interface StepTitleInterface {
|
|
|
15
15
|
step?: string;
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
export const StepTitleHeading: React.FC<
|
|
19
|
-
return <
|
|
18
|
+
export const StepTitleHeading: React.FC<HeadingProps> = (props) => {
|
|
19
|
+
return <Heading>{props.children}</Heading>;
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
export const StepTitleBase: React.FC<StepTitleInterface> = ({
|
|
@@ -29,18 +29,16 @@ export const StepTitleBase: React.FC<StepTitleInterface> = ({
|
|
|
29
29
|
const { t } = useTranslation();
|
|
30
30
|
return (
|
|
31
31
|
<>
|
|
32
|
-
<BackButton>{backButton || t('back
|
|
33
|
-
<
|
|
32
|
+
<BackButton>{backButton || t('button.back')}</BackButton>
|
|
33
|
+
<PageTitleContainer>
|
|
34
34
|
{children || (
|
|
35
35
|
<>
|
|
36
|
-
<
|
|
37
|
-
|
|
38
|
-
{step && <HeadingCaption>{step}</HeadingCaption>}
|
|
39
|
-
</Section>
|
|
36
|
+
<HeadingCaption size="xl">{caption && t(caption)}</HeadingCaption>
|
|
37
|
+
{step && <PageTitleCaption>{step}</PageTitleCaption>}
|
|
40
38
|
<StepTitleHeading>{title && t(title)}</StepTitleHeading>
|
|
41
39
|
</>
|
|
42
40
|
)}
|
|
43
|
-
</
|
|
41
|
+
</PageTitleContainer>
|
|
44
42
|
</>
|
|
45
43
|
);
|
|
46
44
|
};
|
|
@@ -2,10 +2,10 @@ export * from '@digigov/form/Questions/Step/ReviewStep';
|
|
|
2
2
|
export * from '@digigov/form/Questions/Step/Step';
|
|
3
3
|
export * from '@digigov/form/Questions/Step/StepArrayReview';
|
|
4
4
|
export * from '@digigov/form/Questions/Step/StepContext';
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
5
|
+
export * from '@digigov/form/Questions/Step/StepDescription';
|
|
6
|
+
export * from '@digigov/form/Questions/Step/StepForm';
|
|
7
|
+
export * from '@digigov/form/Questions/Step/StepQuote';
|
|
8
|
+
export * from '@digigov/form/Questions/Step/StepTitle';
|
|
9
9
|
export * from '@digigov/form/Questions/Step/getAddMoreFields';
|
|
10
10
|
export * from '@digigov/form/Questions/Step/';
|
|
11
11
|
export * from '@digigov/form/Questions/Step/types';
|