@simoncomputing/mui-bueno-v2 0.18.19 → 0.19.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.
- package/CHANGELOG.md +22 -0
- package/dist/@types/index.d.ts +2 -0
- package/dist/components/Form/Inputs/BaseInputProps.d.ts +12 -6
- package/dist/components/Form/{Error/Error.d.ts → ValidationError/ValidationError.d.ts} +5 -10
- package/dist/components/Table/Table.d.ts +5 -0
- package/dist/index.cjs.js +93 -93
- package/dist/index.d.ts +10 -10
- package/dist/index.es.js +7211 -7189
- package/dist/index.umd.js +79 -79
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -41,18 +41,18 @@ export type { CitationFieldProps } from './components/Form/Inputs/CitationField/
|
|
|
41
41
|
export type { NotApplicableCheckboxProps } from './components/Form/Inputs/NotApplicableCheckbox/NotApplicableCheckbox';
|
|
42
42
|
export { Button } from './components/Buttons/Button/Button';
|
|
43
43
|
export { Submit } from './components/Buttons/Submit/Submit';
|
|
44
|
-
export { ScrollToTop } from './components/Buttons/ScrollToTop/ScrollToTop
|
|
45
|
-
export { LoadingButton } from './components/Buttons/LoadingButton/LoadingButton
|
|
44
|
+
export { ScrollToTop } from './components/Buttons/ScrollToTop/ScrollToTop';
|
|
45
|
+
export { LoadingButton } from './components/Buttons/LoadingButton/LoadingButton';
|
|
46
46
|
export type { ButtonProps } from './components/Buttons/Button/Button';
|
|
47
47
|
export type { SubmitProps } from './components/Buttons/Submit/Submit';
|
|
48
|
-
export type { ScrollToTopProps } from './components/Buttons/ScrollToTop/ScrollToTop
|
|
49
|
-
export type { LoadingButtonProps } from './components/Buttons/LoadingButton/LoadingButton
|
|
50
|
-
export {
|
|
48
|
+
export type { ScrollToTopProps } from './components/Buttons/ScrollToTop/ScrollToTop';
|
|
49
|
+
export type { LoadingButtonProps } from './components/Buttons/LoadingButton/LoadingButton';
|
|
50
|
+
export { ValidationError } from './components/Form/ValidationError/ValidationError';
|
|
51
51
|
export { FormDebugger } from './components/Form/FormDebugger/FormDebugger';
|
|
52
52
|
export { Stepper } from './components/Form/Stepper/Stepper';
|
|
53
53
|
export { RepeatableFormGroup } from './components/Form/RepeatableFormGroup/RepeatableFormGroup';
|
|
54
54
|
export type { StepperProps } from './components/Form/Stepper/Stepper';
|
|
55
|
-
export type {
|
|
55
|
+
export type { ValidationErrorProps } from './components/Form/ValidationError/ValidationError';
|
|
56
56
|
export type { RepeatableFormGroupProps } from './components/Form/RepeatableFormGroup/RepeatableFormGroup';
|
|
57
57
|
export { ConfirmationModal } from './components/Modals/ConfirmationModal/ConfirmationModal';
|
|
58
58
|
export type { ConfirmationModalProps } from './components/Modals/ConfirmationModal/ConfirmationModal';
|
|
@@ -107,10 +107,10 @@ export { SingleActionCard } from './components/SingleActionCard/SingleActionCard
|
|
|
107
107
|
export type { SingleActionCardProps } from './components/SingleActionCard/SingleActionCard';
|
|
108
108
|
export { LoadingIndicator } from './components/LoadingIndicator/LoadingIndicator';
|
|
109
109
|
export type { LoadingIndicatorProps } from './components/LoadingIndicator/LoadingIndicator';
|
|
110
|
-
export { SelectableCitationManager } from './components/Form/Inputs/CitationField/CitationManager/SelectableCitationManager
|
|
111
|
-
export type { SelectableCitationManagerProps } from './components/Form/Inputs/CitationField/CitationManager/SelectableCitationManager
|
|
112
|
-
export { CitationManager } from './components/Form/Inputs/CitationField/CitationManager/CitationManager
|
|
113
|
-
export type { CitationManagerProps } from './components/Form/Inputs/CitationField/CitationManager/CitationManager
|
|
110
|
+
export { SelectableCitationManager } from './components/Form/Inputs/CitationField/CitationManager/SelectableCitationManager';
|
|
111
|
+
export type { SelectableCitationManagerProps } from './components/Form/Inputs/CitationField/CitationManager/SelectableCitationManager';
|
|
112
|
+
export { CitationManager } from './components/Form/Inputs/CitationField/CitationManager/CitationManager';
|
|
113
|
+
export type { CitationManagerProps } from './components/Form/Inputs/CitationField/CitationManager/CitationManager';
|
|
114
114
|
export { CitationFieldProvider } from './components/Form/Inputs/CitationField/CitationFieldContext/CitationFieldProvider';
|
|
115
115
|
export { Spacer } from './components/Spacer/Spacer';
|
|
116
116
|
export type { SpacerProps } from './components/Spacer/Spacer';
|