fui-material 0.1.15 → 0.1.16

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.
@@ -0,0 +1,12 @@
1
+ import React, { FC } from "react";
2
+ import "../style/style.css";
3
+ import "bootstrap/dist/css/bootstrap.css";
4
+ export interface IFDialog {
5
+ children?: React.ReactChild | React.ReactNode;
6
+ openAndClose: boolean;
7
+ id?: string;
8
+ className?: string;
9
+ st?: React.CSSProperties;
10
+ }
11
+ declare const FDialog: FC<IFDialog>;
12
+ export default FDialog;
@@ -0,0 +1 @@
1
+ export { default } from "./FDialog";
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { ComponentMeta, Story } from '@storybook/react';
3
+ import "bootstrap/dist/css/bootstrap.css";
4
+ import { IFDialog } from "./FDialog/FDialog";
5
+ import "./style/FTable.stories.css";
6
+ declare const _default: ComponentMeta<React.FC<IFDialog>>;
7
+ export default _default;
8
+ export declare const Default: Story<IFDialog>;
@@ -0,0 +1,7 @@
1
+ import React, { FC } from "react";
2
+ export interface IFDialogBody {
3
+ st?: React.CSSProperties;
4
+ children?: React.ReactChild | React.ReactNode;
5
+ }
6
+ declare const FDialogBody: FC<IFDialogBody>;
7
+ export default FDialogBody;
@@ -0,0 +1 @@
1
+ export { default } from "./FDialogBody";
@@ -0,0 +1,6 @@
1
+ import React, { FC } from "react";
2
+ export interface IFDialogFooter {
3
+ children?: React.ReactChild | React.ReactNode;
4
+ }
5
+ declare const FDialogFooter: FC<IFDialogFooter>;
6
+ export default FDialogFooter;
@@ -0,0 +1 @@
1
+ export { default } from "./FDialogFooter";
@@ -0,0 +1,7 @@
1
+ import { FC } from "react";
2
+ export interface IFDialogHeader {
3
+ title?: string;
4
+ handleClose?: () => void;
5
+ }
6
+ declare const FDialogHeader: FC<IFDialogHeader>;
7
+ export default FDialogHeader;
@@ -0,0 +1 @@
1
+ export { default } from "./FDialogHeader";
@@ -0,0 +1,12 @@
1
+ import React, { FC } from "react";
2
+ import "../style/style.css";
3
+ import "bootstrap/dist/css/bootstrap.css";
4
+ export interface IFDialog {
5
+ children?: React.ReactChild | React.ReactNode;
6
+ openAndClose: boolean;
7
+ id?: string;
8
+ className?: string;
9
+ st?: React.CSSProperties;
10
+ }
11
+ declare const FDialog: FC<IFDialog>;
12
+ export default FDialog;
@@ -0,0 +1 @@
1
+ export { default } from "./FDialog";
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { ComponentMeta, Story } from '@storybook/react';
3
+ import "bootstrap/dist/css/bootstrap.css";
4
+ import { IFDialog } from "./FDialog/FDialog";
5
+ import "./style/FTable.stories.css";
6
+ declare const _default: ComponentMeta<React.FC<IFDialog>>;
7
+ export default _default;
8
+ export declare const Default: Story<IFDialog>;
@@ -0,0 +1,7 @@
1
+ import React, { FC } from "react";
2
+ export interface IFDialogBody {
3
+ st?: React.CSSProperties;
4
+ children?: React.ReactChild | React.ReactNode;
5
+ }
6
+ declare const FDialogBody: FC<IFDialogBody>;
7
+ export default FDialogBody;
@@ -0,0 +1 @@
1
+ export { default } from "./FDialogBody";
@@ -0,0 +1,6 @@
1
+ import React, { FC } from "react";
2
+ export interface IFDialogFooter {
3
+ children?: React.ReactChild | React.ReactNode;
4
+ }
5
+ declare const FDialogFooter: FC<IFDialogFooter>;
6
+ export default FDialogFooter;
@@ -0,0 +1 @@
1
+ export { default } from "./FDialogFooter";
@@ -0,0 +1,7 @@
1
+ import { FC } from "react";
2
+ export interface IFDialogHeader {
3
+ title?: string;
4
+ handleClose?: () => void;
5
+ }
6
+ declare const FDialogHeader: FC<IFDialogHeader>;
7
+ export default FDialogHeader;
@@ -0,0 +1 @@
1
+ export { default } from "./FDialogHeader";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fui-material",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"