jamespot-react-components 1.0.1 → 1.0.2
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/.github/workflows/increment-npm-version.yml +26 -0
- package/build/jamespot-react-components.js +210 -210
- package/build/jamespot-react-components.js.map +1 -1
- package/build/src/components/JRCAppLeftColumn/JRCAppLeftColumn.d.ts +1 -1
- package/build/src/index.d.ts +0 -1
- package/package.json +5 -4
- package/src/components/JRCAppLeftColumn/JRCAppLeftColumn.tsx +1 -1
- package/src/index.tsx +0 -3
- package/tsconfig.json +1 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { JRCAppLeftColumnProps, SectionEntry } from './JRCAppLeftColumn.types';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* /!\ This component should be use into JRCAppContainer
|
|
4
4
|
* @param Component
|
|
5
5
|
* @param {sections, icon, color, title, description, activeItem, callback} props, @see JRCAppLeftColumnProps interface
|
|
6
6
|
* @returns JSX.Element
|
package/build/src/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./build/jamespot-react-components.js",
|
|
6
6
|
"types": "./build/src/index.d.ts",
|
|
@@ -87,6 +87,7 @@
|
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"@quickbaseoss/babel-plugin-styled-components-css-namespace": "^1.0.1",
|
|
89
89
|
"@tiptap/extension-color": "^2.0.0-beta.8",
|
|
90
|
+
"@tiptap/extension-heading": "^2.0.0-beta.23",
|
|
90
91
|
"@tiptap/extension-link": "^2.0.0-beta.28",
|
|
91
92
|
"@tiptap/extension-text-align": "^2.0.0-beta.28",
|
|
92
93
|
"@tiptap/extension-text-style": "^2.0.0-beta.22",
|
|
@@ -95,9 +96,9 @@
|
|
|
95
96
|
"@types/redux-logger": "^3.0.8",
|
|
96
97
|
"chroma-js": "^2.1.1",
|
|
97
98
|
"classnames": "^2.3.1",
|
|
98
|
-
"jamespot-user-api": "
|
|
99
|
+
"jamespot-user-api": "^1.0.0",
|
|
99
100
|
"moment": "^2.29.1",
|
|
100
|
-
"react": "^17.
|
|
101
|
+
"react": "^17.x",
|
|
101
102
|
"react-dnd": "^14.0.4",
|
|
102
103
|
"react-dnd-html5-backend": "^14.0.2",
|
|
103
104
|
"react-dom": "^17.0.2",
|
|
@@ -110,7 +111,7 @@
|
|
|
110
111
|
"react-table": "^7.7.0",
|
|
111
112
|
"react-tooltip": "^4.2.21",
|
|
112
113
|
"redux": "^4.0.5",
|
|
113
|
-
"redux-form": "^8.
|
|
114
|
+
"redux-form": "^8.x",
|
|
114
115
|
"redux-logger": "^3.0.6",
|
|
115
116
|
"slick-carousel": "^1.8.1",
|
|
116
117
|
"styled-components": "^5.2.1",
|
|
@@ -22,7 +22,7 @@ import { useIntl } from 'react-intl';
|
|
|
22
22
|
import { JRCDefaultMenu } from './JRCDefaultMenu';
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* /!\ This component should be use into JRCAppContainer
|
|
26
26
|
* @param Component
|
|
27
27
|
* @param {sections, icon, color, title, description, activeItem, callback} props, @see JRCAppLeftColumnProps interface
|
|
28
28
|
* @returns JSX.Element
|
package/src/index.tsx
CHANGED
|
@@ -4,7 +4,6 @@ import * as reduxFormLib from 'redux-form';
|
|
|
4
4
|
import * as reduxLib from 'redux';
|
|
5
5
|
import * as reactReduxLib from 'react-redux';
|
|
6
6
|
import * as reactIntl from 'react-intl';
|
|
7
|
-
import * as reactTransitionGroup from 'react-transition-group';
|
|
8
7
|
import styled from 'styled-components';
|
|
9
8
|
import * as reactSelect from 'react-select';
|
|
10
9
|
import * as jamespotUserApi from 'jamespot-user-api';
|
|
@@ -24,7 +23,6 @@ declare global {
|
|
|
24
23
|
reduxForm: any;
|
|
25
24
|
reactIntl: any;
|
|
26
25
|
reactSelect: any;
|
|
27
|
-
reactTransitionGroup: any;
|
|
28
26
|
styledComponents: any;
|
|
29
27
|
reactDnd: any;
|
|
30
28
|
reactDndHtml5Backend: any;
|
|
@@ -41,7 +39,6 @@ window.redux = reduxLib;
|
|
|
41
39
|
window.reduxForm = reduxFormLib;
|
|
42
40
|
window.reactIntl = reactIntl;
|
|
43
41
|
window.reactSelect = reactSelect;
|
|
44
|
-
window.reactTransitionGroup = reactTransitionGroup;
|
|
45
42
|
window.styledComponents = styled;
|
|
46
43
|
window.reactDnd = reactDnd;
|
|
47
44
|
window.reactDndHtml5Backend = reactDndHtml5Backend;
|