@availity/theme-provider 0.2.2 → 0.2.3

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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.2.3](https://github.com/Availity/element/compare/@availity/theme-provider@0.2.2...@availity/theme-provider@0.2.3) (2023-06-01)
6
+
5
7
  ## [0.2.2](https://github.com/Availity/element/compare/@availity/theme-provider@0.2.1...@availity/theme-provider@0.2.2) (2023-03-23)
6
8
 
7
9
  ## [0.2.1](https://github.com/Availity/element/compare/@availity/theme-provider@0.2.0...@availity/theme-provider@0.2.1) (2023-03-06)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/theme-provider",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Theme provider for the Element design system",
5
5
  "browser": "./dist/index.js",
6
6
  "main": "./dist/index.js",
@@ -15,7 +15,7 @@
15
15
  "publish:canary": "yarn npm publish --access public --tag canary"
16
16
  },
17
17
  "dependencies": {
18
- "@availity/theme": "0.2.2",
18
+ "@availity/theme": "0.5.0",
19
19
  "@emotion/react": "^11.10.5",
20
20
  "@emotion/styled": "^11.10.5",
21
21
  "@mui/material": "^5.11.6",
@@ -0,0 +1,15 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import { ThemeProvider } from '@availity/theme-provider';
3
+
4
+ export const Default: StoryObj<typeof ThemeProvider> = {
5
+ render: () => <>
6
+ <ThemeProvider>
7
+ <div>This component is inside the ThemeProvider</div>
8
+ </ThemeProvider>
9
+ <div>This component is outside the ThemeProvider</div>
10
+ </>,
11
+ };
12
+
13
+ export default {
14
+ title: 'Design System/ThemeProvider',
15
+ };