@simoncomputing/mui-bueno-v2 0.17.4 → 0.18.0

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 (21) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist/@types/index.d.ts +2 -0
  3. package/dist/components/Form/Inputs/CitationField/CitationBubbleMenuHandler.d.ts +1 -1
  4. package/dist/components/Form/Inputs/CitationField/CitationField.d.ts +10 -4
  5. package/dist/components/Form/Inputs/CitationField/CitationFieldContext/CitationFieldContext.d.ts +2 -1
  6. package/dist/components/Form/Inputs/CitationField/CitationFieldContext/CitationFieldProvider.d.ts +9 -0
  7. package/dist/components/Form/Inputs/CitationField/CitationManager/AttachmentForm.d.ts +13 -0
  8. package/dist/components/Form/Inputs/CitationField/{CitationMenu/CitationMenu.d.ts → CitationManager/BaseCitationManager.d.ts} +19 -17
  9. package/dist/components/Form/Inputs/CitationField/CitationManager/CitationAlert.d.ts +17 -0
  10. package/dist/components/Form/Inputs/CitationField/{CitationMenu → CitationManager}/CitationBubbleMenu.d.ts +4 -4
  11. package/dist/components/Form/Inputs/CitationField/{CitationMenu → CitationManager}/CitationForm.d.ts +3 -2
  12. package/dist/components/Form/Inputs/CitationField/CitationManager/CitationManager.d.ts +7 -0
  13. package/dist/components/Form/Inputs/CitationField/{CitationMenu → CitationManager}/CitationTable.d.ts +18 -3
  14. package/dist/components/Form/Inputs/CitationField/CitationManager/SelectableCitationManager.d.ts +9 -0
  15. package/dist/index.cjs.js +121 -121
  16. package/dist/index.d.ts +5 -2
  17. package/dist/index.es.js +15229 -14550
  18. package/dist/index.umd.js +122 -122
  19. package/dist/styles/3-theme/theme.d.ts +8 -0
  20. package/package.json +1 -1
  21. package/dist/components/Form/Inputs/CitationField/CitationMenu/AttachmentForm.d.ts +0 -12
@@ -1,3 +1,11 @@
1
+ import { ThemeOptions } from '@mui/material';
2
+ /**
3
+ * Overrides to non-palette related theme properties.
4
+ *
5
+ * You can add any MUI component overrides here as well.
6
+ * Refer to the documentation on MUI: https://mui.com/material-ui/customization/theming/
7
+ */
8
+ export declare const commonTheme: ThemeOptions;
1
9
  /**
2
10
  * Theme in light mode
3
11
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simoncomputing/mui-bueno-v2",
3
3
  "private": false,
4
- "version": "0.17.4",
4
+ "version": "0.18.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.js",
7
7
  "module": "./dist/index.es.js",
@@ -1,12 +0,0 @@
1
- import { Citation, UnsavedAttachmentCitation } from '../../../../../@types';
2
- import { CitationMenuError } from './CitationMenu';
3
- export type NewAttachmentFormProps = {
4
- id?: number;
5
- onSave: (unsavedAttachment: UnsavedAttachmentCitation) => Promise<void>;
6
- onCancel: () => void;
7
- getCitationById: (id: number) => Promise<Citation>;
8
- disableFileUpload?: boolean;
9
- setError: React.Dispatch<React.SetStateAction<CitationMenuError | undefined>>;
10
- };
11
- declare const NewAttachmentForm: (props: NewAttachmentFormProps) => import("react/jsx-runtime").JSX.Element;
12
- export default NewAttachmentForm;