Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit 6717ecd

Browse files
committed
update package version
1 parent 34fb676 commit 6717ecd

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#changelog
2+
## [2.0.20] - 2023-3-30
3+
### fixed
4+
- fix trigger button bug by updating jb-date-input to v3.7.13
25
## [2.0.2] - 2023-3-8
36
### fixed
47
- fix typescript problems

Diff for: docs/package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"eslint-config-next": "13.2.3",
1717
"jb-calendar": "^4.0.3",
1818
"jb-date-input": "^3.7.12",
19-
"jb-date-input-react": "^2.0.17",
19+
"jb-date-input-react": "^2.0.20",
2020
"next": "13.2.3",
2121
"react": "18.2.0",
2222
"react-dom": "18.2.0",

Diff for: lib/JBDateInput.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ import { JBDateInputWebComponent, JBDateInputInputTypes, JBDateInputValidationIt
77
import { useEvent } from '../../custom-hooks/UseEvent';
88

99
export {JBDateInputInputTypes,JBDateInputValueObject};
10+
1011
type CustomEvents<K extends string> = { [key in K] : (event: CustomEvent) => void };
1112

1213
type CustomElement<T, K extends string> = Partial<T & DOMAttributes<T> & { children: any } & CustomEvents<`on${K}`>>;
1314
declare global {
1415
// eslint-disable-next-line @typescript-eslint/no-namespace
1516
namespace JSX {
1617
interface IntrinsicElements {
17-
'jb-date-input': JBDateInputType,
18-
'jb-date-input-inbox-element':CustomElement<JBDDateInputInboxElementWebComponent,'Click'>
18+
'jb-date-input': JBDateInputType;
19+
'jb-date-input-inbox-element':CustomElement<JBDDateInputInboxElementWebComponent,'Click'>;
1920
}
2021
interface JBDateInputType extends React.DetailedHTMLProps<React.HTMLAttributes<JBDateInputWebComponent>, JBDateInputWebComponent> {
2122
class?:string,

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"react component",
1919
"react"
2020
],
21-
"version": "2.0.19",
21+
"version": "2.0.20",
2222
"bugs": "https://github.com/javadbat/jb-date-input-react/issues",
2323
"license": "MIT",
2424
"files": [
@@ -36,6 +36,6 @@
3636
"url": "https://github.com/javadbat/jb-date-input-react"
3737
},
3838
"dependencies": {
39-
"jb-date-input": ">=3.7.12"
39+
"jb-date-input": ">=3.7.13"
4040
}
4141
}

0 commit comments

Comments
 (0)