ui-beyable 1.1.0-beta.23 → 1.1.0-beta.25
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/lib/cjs/components/Checkbox/Checkbox.d.ts +2 -2
- package/lib/cjs/components/Checkbox/types.d.ts +1 -0
- package/lib/cjs/components/LogoLoader/LogoLoader.d.ts +7 -0
- package/lib/cjs/components/SpinnerLogo/SpinnerLogo.d.ts +8 -0
- package/lib/cjs/index.d.ts +2 -1
- package/lib/cjs/index.js +488 -422
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/components/Checkbox/Checkbox.d.ts +2 -2
- package/lib/esm/components/Checkbox/types.d.ts +1 -0
- package/lib/esm/components/LogoLoader/LogoLoader.d.ts +7 -0
- package/lib/esm/components/SpinnerLogo/SpinnerLogo.d.ts +8 -0
- package/lib/esm/index.d.ts +2 -1
- package/lib/esm/index.js +488 -423
- package/lib/esm/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { ICheckbox, IRadio, ISwitch } from './types';
|
|
3
3
|
import { IList } from '../List/types';
|
|
4
|
-
declare function Checkbox({ children, type, label, description, tooltip, tooltipHTML, name, value, checked, forcedChecked, disabled, onChange, size, fullWidth }: ICheckbox): JSX.Element;
|
|
4
|
+
declare function Checkbox({ children, type, label, description, tooltip, tooltipHTML, name, value, checked, forcedChecked, disabled, onChange, size, fullWidth, className }: ICheckbox): JSX.Element;
|
|
5
5
|
declare function Radio(props: IRadio): JSX.Element;
|
|
6
|
-
declare function Switch({ children, label, name, value, checked, onChange, disabled, forcedChecked, position, size, align, verticalSize, noMargin }: ISwitch): JSX.Element;
|
|
6
|
+
declare function Switch({ children, label, name, value, checked, onChange, disabled, forcedChecked, position, size, align, verticalSize, noMargin, className }: ISwitch): JSX.Element;
|
|
7
7
|
declare function CheckboxList(props: IList): JSX.Element;
|
|
8
8
|
export { Checkbox, Radio, Switch, CheckboxList };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface SpinnerLogoProps {
|
|
3
|
+
size?: 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
|
|
4
|
+
className?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SpinnerLogo: ({ size, className }: SpinnerLogoProps) => JSX.Element;
|
|
7
|
+
export default SpinnerLogo;
|
|
8
|
+
export { SpinnerLogo };
|
package/lib/cjs/index.d.ts
CHANGED
|
@@ -28,9 +28,10 @@ import { Stack, StackRow } from './components/Stack/Stack';
|
|
|
28
28
|
import { Section } from './components/Section/Section';
|
|
29
29
|
import { Select } from './components/Select/Select';
|
|
30
30
|
import { Spinner } from './components/Spinner/Spinner';
|
|
31
|
+
import { SpinnerLogo } from './components/SpinnerLogo/SpinnerLogo';
|
|
31
32
|
import { TabBar, TabItem } from './components/Tabs/Tabs';
|
|
32
33
|
import { Textfield, TextfieldIcon, SearchBar } from './components/Textfield/Textfield';
|
|
33
34
|
declare const Theme: any;
|
|
34
35
|
declare const Utils: any;
|
|
35
36
|
export { Theme, Utils, AppRoot, AppHeader, AppLinkWrapper, AppLogo, Article, ArticleFoldable, Box, Breadcrumb, Btn, BtnGroup, BtnSwitch, Checkbox, CheckboxList, Collapse, // Not OK, use ArticleFoldable instead
|
|
36
|
-
Confirm, Container, Dropdown, DropdownSection, EditorHeader, EmptyState, Fieldset, Hr, IconBtn, Inline, InlineColumn, KpiList, KpiItem, List, ListItem, Listbox, ListboxItem, ListboxSep, Mask, Message, Modal, ModalHeader, ModalBody, ModalFooter, Panel, PanelClose, PanelHeader, PanelBody, PanelSection, Picto, Portal, Stack, StackRow, Radio, SearchBar, Section, Select, Spinner, Switch, TabBar, TabItem, Textfield, TextfieldIcon, };
|
|
37
|
+
Confirm, Container, Dropdown, DropdownSection, EditorHeader, EmptyState, Fieldset, Hr, IconBtn, Inline, InlineColumn, KpiList, KpiItem, List, ListItem, Listbox, ListboxItem, ListboxSep, Mask, Message, Modal, ModalHeader, ModalBody, ModalFooter, Panel, PanelClose, PanelHeader, PanelBody, PanelSection, Picto, Portal, Stack, StackRow, Radio, SearchBar, Section, Select, Spinner, SpinnerLogo, Switch, TabBar, TabItem, Textfield, TextfieldIcon, };
|