@kwiz/fluentui 1.0.29 → 1.0.30
Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"divider.js","sourceRoot":"","sources":["../../src/controls/divider.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,OAAO,
|
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
package/src/controls/divider.tsx
CHANGED
@@ -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();
|