@digigov/ui 1.0.0-rc.6 → 1.0.1

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