Version not found. Please check the version and try again.

fui-material 0.1.87 → 0.1.89

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,17 @@
1
+ import React, { FC } from "react";
2
+ import "./FNative.css";
3
+ export interface IFNative {
4
+ label: string;
5
+ id?: string;
6
+ className?: string;
7
+ st?: React.CSSProperties;
8
+ children?: React.ReactChild | React.ReactNode;
9
+ value?: string[];
10
+ singleChoice?: (element: string[]) => void;
11
+ multipleChoice?: (element: string[]) => void;
12
+ disabled?: boolean;
13
+ size?: number;
14
+ overflowX?: boolean;
15
+ }
16
+ declare const FNative: FC<IFNative>;
17
+ export default FNative;
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import { ComponentMeta, Story } from '@storybook/react';
3
+ import { IFNative } from "./FNative";
4
+ import "bootstrap/dist/css/bootstrap.css";
5
+ declare const _default: ComponentMeta<React.FC<IFNative>>;
6
+ export default _default;
7
+ export declare const Default: Story<IFNative>;
8
+ export declare const Label: Story<IFNative>;
9
+ export declare const Size: Story<IFNative>;
10
+ export declare const OverflowX: Story<IFNative>;
11
+ export declare const Disabled: Story<IFNative>;
12
+ export declare const Value: Story<IFNative>;
13
+ export declare const SingleChoice: Story<IFNative>;
14
+ export declare const MultipleChoice: Story<IFNative>;
@@ -0,0 +1 @@
1
+ export { default } from "./FNative";
@@ -40,3 +40,4 @@ export { default as FListIcon } from "./FIcons/FListIcon";
40
40
  export { default as FPenIcon } from "./FIcons/FPenIcon";
41
41
  export { default as FTextArea } from "./FTextArea";
42
42
  export { default as FAlert } from "./FAlert";
43
+ export { default as FNative } from "./FNative";
package/dist/index.d.ts CHANGED
@@ -479,4 +479,19 @@ interface IFAlert {
479
479
  }
480
480
  declare const FAlert: FC<IFAlert>;
481
481
 
482
- export { FAccordion, FAlert, FArrowIcon, FButton$1 as FButton, FButton as FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FFile, FFullDateField, FGrid, FInputFileForm, FListIcon, FOpenImgFull, FPagination, FPaper, FPenIcon, FPlusIcon, FPreloader, FProgress, FRadioButton, FSelect, FSelectItem, FSelectSearchDb, FStack, FTable, FTableBody, FTableDataCell, FTableFooter, FTableHead, FTableHeaderCell, FTableRow, FTextArea, FTextField, FTimeline, FTimelineCard, FTrashIcon };
482
+ interface IFNative {
483
+ label: string;
484
+ id?: string;
485
+ className?: string;
486
+ st?: React.CSSProperties;
487
+ children?: React.ReactChild | React.ReactNode;
488
+ value?: string[];
489
+ singleChoice?: (element: string[]) => void;
490
+ multipleChoice?: (element: string[]) => void;
491
+ disabled?: boolean;
492
+ size?: number;
493
+ overflowX?: boolean;
494
+ }
495
+ declare const FNative: FC<IFNative>;
496
+
497
+ export { FAccordion, FAlert, FArrowIcon, FButton$1 as FButton, FButton as FButtonFile, FCheckIcon, FCheckbox, FCloseIcon, FContainer, FDialog, FDialogBody, FDialogFooter, FDialogHeader, FFile, FFullDateField, FGrid, FInputFileForm, FListIcon, FNative, FOpenImgFull, FPagination, FPaper, FPenIcon, FPlusIcon, FPreloader, FProgress, FRadioButton, FSelect, FSelectItem, FSelectSearchDb, FStack, FTable, FTableBody, FTableDataCell, FTableFooter, FTableHead, FTableHeaderCell, FTableRow, FTextArea, FTextField, FTimeline, FTimelineCard, FTrashIcon };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fui-material",
3
- "version": "0.1.87",
3
+ "version": "0.1.89",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"