@digigov/form 1.0.0-rc.6 → 1.0.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.
- package/CHANGELOG.md +30 -1
- package/index.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
# Change Log - @digigov/form
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 15 Dec 2023 15:23:56 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 1.0.0
|
|
6
|
+
Fri, 15 Dec 2023 15:23:56 GMT
|
|
7
|
+
|
|
8
|
+
### Breaking changes
|
|
9
|
+
|
|
10
|
+
- Upgrade versions to v1.0.0-rc
|
|
11
|
+
- Refactor libs to a generic UI library removing personas organizing
|
|
12
|
+
|
|
13
|
+
### Minor changes
|
|
14
|
+
|
|
15
|
+
- Replace PageTitleSection, HeaderSubtitle with PageTitle
|
|
16
|
+
- Replace PageTitle with Section
|
|
17
|
+
- major refactor
|
|
18
|
+
- Fix Header's components use
|
|
19
|
+
- Change some prop values
|
|
20
|
+
- Create ImageInput
|
|
21
|
+
- Remove wrong export of Step children components
|
|
22
|
+
|
|
23
|
+
### Patches
|
|
24
|
+
|
|
25
|
+
- Replace PageTitleCaption with HeadingCaption
|
|
26
|
+
- Fix typos
|
|
27
|
+
- Update props in Radio and Checkbox
|
|
28
|
+
- Fix publint not running correctly
|
|
29
|
+
- Remove deprecated components & their shills
|
|
30
|
+
- Fix linter errors
|
|
31
|
+
- Fix locale string in the BackLink which is embedded in StepTitle component
|
|
32
|
+
- Add xl size prop to HeadingCaption used by StepTitle internally
|
|
4
33
|
|
|
5
34
|
## 0.13.0
|
|
6
35
|
Thu, 20 Jul 2023 12:53:54 GMT
|
package/index.js
CHANGED
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",
|
|
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"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@digigov/ui": "1.0.0
|
|
24
|
-
"@digigov/react-core": "1.0.0
|
|
23
|
+
"@digigov/ui": "1.0.0",
|
|
24
|
+
"@digigov/react-core": "1.0.0",
|
|
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"
|