@australiangreens/ag-internal-components 0.0.13 → 0.0.14

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/dist/index.d.ts CHANGED
@@ -1,3 +1,25 @@
1
+ // --- BEGIN AUGMENTATIONS SECTION ---
2
+ // From 0: src/components/AgThemeProvider/augmentations.d.ts
3
+ import '@mui/material/styles';
4
+ import '@mui/material/Typography';
5
+
6
+ declare module '@mui/material/styles' {
7
+ interface TypographyVariants {
8
+ explainer: React.CSSProperties;
9
+ }
10
+
11
+ interface TypographyVariantsOptions {
12
+ explainer?: React.CSSProperties;
13
+ }
14
+ }
15
+
16
+ declare module '@mui/material/Typography' {
17
+ interface TypographyPropsVariantOverrides {
18
+ explainer: true;
19
+ }
20
+ }
21
+ // --- END AUGMENTATIONS SECTION ---
22
+
1
23
  export { default as ExampleComponent } from './components/ExampleComponent';
2
24
  export * from './components/ExampleComponent';
3
25
  export { default as AgThemeProvider } from './components/AgThemeProvider';
@@ -0,0 +1,5 @@
1
+ export { default as ExampleComponent } from './components/ExampleComponent';
2
+ export * from './components/ExampleComponent';
3
+ export { default as AgThemeProvider } from './components/AgThemeProvider';
4
+ export * from './components/AgThemeProvider';
5
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@australiangreens/ag-internal-components",
3
3
  "private": false,
4
- "version": "0.0.13",
4
+ "version": "0.0.14",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/australiangreens/ag-internal-components#readme",
7
7
  "license": "MIT",
@@ -1,23 +0,0 @@
1
- // This file is a combination of all module augumentations across the library
2
- // See https://www.typescriptlang.org/docs/handbook/declaration-merging.html#module-augmentation
3
-
4
- // FILE 0: src/components/AgThemeProvider/augmentations.d.ts
5
-
6
- import '@mui/material/styles';
7
- import '@mui/material/Typography';
8
-
9
- declare module '@mui/material/styles' {
10
- interface TypographyVariants {
11
- explainer: React.CSSProperties;
12
- }
13
-
14
- interface TypographyVariantsOptions {
15
- explainer?: React.CSSProperties;
16
- }
17
- }
18
-
19
- declare module '@mui/material/Typography' {
20
- interface TypographyPropsVariantOverrides {
21
- explainer: true;
22
- }
23
- }