ui-beyable 1.1.0-beta.24 → 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.
@@ -0,0 +1,7 @@
1
+ interface LogoLoaderProps {
2
+ size?: 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
3
+ className?: string;
4
+ }
5
+ declare const LogoLoader: ({ size, className }: LogoLoaderProps) => JSX.Element;
6
+ export default LogoLoader;
7
+ export { LogoLoader };
@@ -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 };
@@ -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, };