@campxdev/react-blueprint 1.3.5 → 1.3.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/react-blueprint",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "main": "./export.ts",
5
5
  "private": false,
6
6
  "dependencies": {
@@ -20,6 +20,13 @@ import {
20
20
  SingleSelectState,
21
21
  } from './singleSelectReducer';
22
22
 
23
+ declare module '@mui/material/Autocomplete' {
24
+ interface AutocompletePaperSlotPropsOverrides {
25
+ loadingOptions: boolean;
26
+ isSearch: boolean;
27
+ }
28
+ }
29
+
23
30
  function sleep(duration: number): Promise<void> {
24
31
  return new Promise<void>((resolve) => {
25
32
  setTimeout(() => {
@@ -47,7 +47,6 @@ export const AppHeader = ({
47
47
  </StyledIconButton> */}
48
48
  <Button
49
49
  variant="outlined"
50
- id="jiraIssueCollector"
51
50
  className="reportAnIssue"
52
51
  onClick={() => {
53
52
  window.open(
package/types/theme.d.ts CHANGED
@@ -61,10 +61,3 @@ declare module '@mui/material/Typography' {
61
61
  button1: true;
62
62
  }
63
63
  }
64
-
65
- declare module '@mui/material/Autocomplete' {
66
- interface AutocompletePaperSlotPropsOverrides {
67
- loadingOptions: boolean;
68
- isSearch: boolean;
69
- }
70
- }