@digigov/react-core 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 +60 -2
  2. package/index.js +1 -1
  3. package/package.json +3 -7
package/CHANGELOG.md CHANGED
@@ -1,6 +1,64 @@
1
1
  # Change Log - @digigov/react-core
2
2
 
3
- This log was last generated on Thu, 20 Jul 2023 12:53:54 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
+ - Rename PageTitle to Section
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
+ - Change divider prop name to dividerText
24
+ - major refactor
25
+ - Add props in Accordion* and AdminTopSection
26
+ - Manage unused or dangling css classes
27
+ - Move Icon to react-icons
28
+ - Refactor props at Table, TableRow and TableDataCell
29
+ - Add fullwidth prop in DropdownContent
30
+ - Add horizontal prop in List
31
+ - Create Typography component, refactor react core typography components with Typography component
32
+ - Update Navigation structure
33
+ - Refactoring in Panel, NotificationBanner, Loader, CopyToClipboard, Chip, layout elements and form elements
34
+ - Create Stack component, update classNames and component names at Grid, FiledContainer, Filter, Autocomplete, FileUploadContainer, Footer, List, Header and Drawing
35
+ - Rename classNames and component names in Layout, Chip, PhaseBanner, SingleCharacterInput, Search. Refactor props at Select, WarningText
36
+ - Remove AccessibilityMenu components, add FloatingButton and OptionButton, add bgColor prop to Drawer
37
+ - Create ImageLogo and ImageLogoSet components
38
+ - Update props at Nav component, add props at CloseButton component
39
+ - Update Container's structure and Container's, Main's and Aside's classNames
40
+ - Add dense prop in Modal
41
+ - Add dense prop in CopyToClipboard, ErrorSummary, NotificationBanner and WarningText
42
+ - Add dense prop at /form components
43
+ - Add dense variants in all navigation components
44
+ - Add BackToTop components
45
+ - Add breakWords prop in Heading and in Hint
46
+
47
+ ### Patches
48
+
49
+ - Merge Paragraph with NormalText
50
+ - Fix Paragraph props
51
+ - add direction prop at Tabs
52
+ - Normalize JSDoc comments
53
+ - Call Heading in PageTitleHeading
54
+ - Rename some classNames
55
+ - Fix Container component, add Container component inside AdminContainer
56
+ - Update class names following @digigov/css changes
57
+ - Add --dense class to content components
58
+ - Export proper TabsListItemBase, TabsPanelBase
59
+ - Fix publint not running correctly
60
+ - Fix linter errors
61
+ - Include heading & caption class name in Unpurge component
4
62
 
5
63
  ## 0.26.0
6
64
  Thu, 20 Jul 2023 12:53:54 GMT
@@ -58,7 +116,7 @@ Tue, 02 May 2023 09:16:06 GMT
58
116
 
59
117
  ### Minor changes
60
118
 
61
- - Create SingleCharacterInputs and SinlgeCharacterInputItem components
119
+ - Create SingleCharacterInputContainer and SinlgeCharacterInputItem components
62
120
  - Remove unused nav props
63
121
 
64
122
  ## 0.22.0
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,18 +1,14 @@
1
1
  {
2
2
  "name": "@digigov/react-core",
3
- "version": "1.0.0-rc.6",
3
+ "version": "1.0.1",
4
4
  "description": "@digigov react core components",
5
5
  "author": "GRNET Developers <devs@lists.grnet.gr>",
6
6
  "license": "BSD-2-Clause",
7
7
  "main": "./cjs/index.js",
8
8
  "module": "./index.js",
9
- "publishConfig": {
10
- "access": "public",
11
- "directory": "dist"
12
- },
13
9
  "peerDependencies": {
14
- "@digigov/css": "1.0.0-rc.6",
15
- "@digigov/react-icons": "1.0.0-rc.6",
10
+ "@digigov/css": "1.0.1",
11
+ "@digigov/react-icons": "1.0.1",
16
12
  "clsx": "1.1.1",
17
13
  "react": "^16.8.0 || ^17.0.0",
18
14
  "react-dom": "^16.8.0 || ^17.0.0"