@kwiz/fluentui 1.0.29 → 1.0.30

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.
@@ -1,5 +1,6 @@
1
+ import { DividerProps } from '@fluentui/react-components';
1
2
  import React from 'react';
2
- interface IProps {
3
+ interface IProps extends DividerProps {
3
4
  }
4
5
  export declare const DividerEX: React.FunctionComponent<React.PropsWithChildren<IProps>>;
5
6
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"divider.js","sourceRoot":"","sources":["../../src/controls/divider.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAGjE,MAAM,SAAS,GAAG,UAAU,CAAC;IACzB,SAAS,EAAE;QACP,QAAQ,EAAE,CAAC;KACd;CACJ,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,SAAS,GAA6D,CAAC,KAAK,EAAE,EAAE;IACzF,MAAM,QAAQ,GAAG,SAAS,EAAE,CAAC;IAC7B,OAAO,CACH,KAAC,OAAO,oBAAK,KAAK,IAAE,SAAS,EAAE,QAAQ,CAAC,SAAS,IAAI,CACxD,CAAC;AACN,CAAC,CAAA"}
1
+ {"version":3,"file":"divider.js","sourceRoot":"","sources":["../../src/controls/divider.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,OAAO,EAAgB,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAG/E,MAAM,SAAS,GAAG,UAAU,CAAC;IACzB,SAAS,EAAE;QACP,QAAQ,EAAE,CAAC;KACd;CACJ,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,SAAS,GAA6D,CAAC,KAAK,EAAE,EAAE;IACzF,MAAM,QAAQ,GAAG,SAAS,EAAE,CAAC;IAC7B,OAAO,CACH,KAAC,OAAO,oBAAK,KAAK,IAAE,SAAS,EAAE,QAAQ,CAAC,SAAS,IAAI,CACxD,CAAC;AACN,CAAC,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kwiz/fluentui",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "description": "KWIZ common controls for FluentUI",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,4 +1,4 @@
1
- import { Divider, makeStyles } from '@fluentui/react-components';
1
+ import { Divider, DividerProps, makeStyles } from '@fluentui/react-components';
2
2
  import React from 'react';
3
3
 
4
4
  const useStyles = makeStyles({
@@ -6,7 +6,7 @@ const useStyles = makeStyles({
6
6
  flexGrow: 0
7
7
  }
8
8
  });
9
- interface IProps {
9
+ interface IProps extends DividerProps {
10
10
  }
11
11
  export const DividerEX: React.FunctionComponent<React.PropsWithChildren<IProps>> = (props) => {
12
12
  const cssNames = useStyles();