@digigov/ui 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 +54 -2
- package/index.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,59 @@
|
|
|
1
1
|
# Change Log - @digigov/ui
|
|
2
2
|
|
|
3
|
-
This log was last generated on Fri,
|
|
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
|
+
- Delete PageTitleCaption
|
|
11
|
+
- Remove PageTitleSection and HeaderSubtitle
|
|
12
|
+
- Remove BackLink export from ui/form
|
|
13
|
+
- Upgrade versions to v1.0.0-rc
|
|
14
|
+
- Refactor libs to a generic UI library removing personas organizing
|
|
15
|
+
|
|
16
|
+
### Minor changes
|
|
17
|
+
|
|
18
|
+
- Export Section as PageTitle
|
|
19
|
+
- major refactor
|
|
20
|
+
- Manage unused or dangling css classes
|
|
21
|
+
- Change the Icon exports
|
|
22
|
+
- Add and fix missing examples
|
|
23
|
+
- Add Markdown and SafeHTML components
|
|
24
|
+
- Update Table's stories, add RowColors story
|
|
25
|
+
- Update Navigation structure
|
|
26
|
+
- Refactoring in Panel, NotificationBanner, Loader, CopyToClipboard, Chip, layout elements and form elements
|
|
27
|
+
- Create Stack component, update classNames and component names at Grid, FiledContainer, Filter, Autocomplet
|
|
28
|
+
- Update stories and component names
|
|
29
|
+
- Update imports and accessibility text inside mdx components' files.
|
|
30
|
+
- Remove AccessibilityMenu components, add FloatingButton and OptionButton components
|
|
31
|
+
- Update stories that use Nagivation
|
|
32
|
+
- Fix Grid columns inside Container
|
|
33
|
+
- Add Modal Dense example
|
|
34
|
+
- Add dense examples at /form components
|
|
35
|
+
- Add dense variants in all navigation components
|
|
36
|
+
- Add window scrollY in LinkProvider
|
|
37
|
+
- Export BackToTop related components
|
|
38
|
+
- Remove deprecated named exports that cause conflicts
|
|
39
|
+
- Add and update Dropdown stories
|
|
40
|
+
|
|
41
|
+
### Patches
|
|
42
|
+
|
|
43
|
+
- Translated all stories at Greek
|
|
44
|
+
- Fix all storybook component examples in sdk-docs
|
|
45
|
+
- Change fontSize prop from string to number in storybook examples
|
|
46
|
+
- fix playground action tests
|
|
47
|
+
- Export ImageLogoSet and ImageLogo components from ui
|
|
48
|
+
- Fix some actions from stories at Storybook
|
|
49
|
+
- Create Dense examples for content components
|
|
50
|
+
- Add dense prop in CopyToClipboard and Notification banner & create stories for dense components
|
|
51
|
+
- Add translations for ImageInput
|
|
52
|
+
- Create hooks for ui components, create storybook examples
|
|
53
|
+
- Fix publint not running correctly
|
|
54
|
+
- Remove deprecated components & their shills
|
|
55
|
+
- Update imports to use absolute instead of relative paths
|
|
56
|
+
- Fix linter errors
|
|
4
57
|
|
|
5
58
|
## 0.35.5
|
|
6
59
|
Fri, 21 Jul 2023 10:57:32 GMT
|
|
@@ -15,7 +68,6 @@ Fri, 21 Jul 2023 09:53:55 GMT
|
|
|
15
68
|
### Patches
|
|
16
69
|
|
|
17
70
|
- Fix text in locales/en.ts for form.info namespace
|
|
18
|
-
This log was last generated on Thu, 20 Jul 2023 12:53:54 GMT and should not be manually modified.
|
|
19
71
|
|
|
20
72
|
## 0.35.3
|
|
21
73
|
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/ui",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "@digigov reusable components toolkit",
|
|
5
5
|
"main": "./cjs/index.js",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"google-libphonenumber": "3.2.8",
|
|
12
|
-
"@uides/react-qr-reader": "3.0.0
|
|
12
|
+
"@uides/react-qr-reader": "3.0.0",
|
|
13
13
|
"react-query": "2.26.4",
|
|
14
14
|
"yup": "0.32.11",
|
|
15
15
|
"publint": "0.1.8",
|
|
16
|
-
"@digigov/react-icons": "1.0.0
|
|
16
|
+
"@digigov/react-icons": "1.0.0",
|
|
17
17
|
"dompurify": "3.0.6"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"clsx": "1.1.1",
|
|
23
23
|
"react": "^16.8.0 || ^17.0.0",
|
|
24
24
|
"react-dom": "^16.8.0 || ^17.0.0",
|
|
25
|
-
"@digigov/react-core": "1.0.0
|
|
25
|
+
"@digigov/react-core": "1.0.0"
|
|
26
26
|
},
|
|
27
27
|
"gitHead": "c903a46306f77f55ad7fc4d2e274006f39a6c871",
|
|
28
28
|
"private": false,
|