ui-beyable 1.1.0-beta.24 → 1.1.0-beta.26

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 };
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import { spaceType } from '../Tokens/Tokens';
3
3
  type alignInlineType = 'stretch' | 'start' | 'center' | 'end';
4
+ type justifyType = 'start' | 'center' | 'end' | 'space-between' | 'space-around' | 'space-evenly';
4
5
  type flexType = 'none' | 'auto' | 'shrink' | 'grow';
5
6
  interface StackType {
6
7
  children?: React.ReactNode;
@@ -8,6 +9,7 @@ interface StackType {
8
9
  gap?: spaceType;
9
10
  shouldWrap?: boolean;
10
11
  alignInline?: alignInlineType;
12
+ justify?: justifyType;
11
13
  flex?: flexType;
12
14
  style?: React.CSSProperties;
13
15
  }
@@ -17,6 +19,6 @@ interface StackRowType {
17
19
  flex?: flexType;
18
20
  style?: React.CSSProperties;
19
21
  }
20
- declare function Stack({ children, className, gap, alignInline, flex, style }: StackType): JSX.Element;
22
+ declare function Stack({ children, className, gap, alignInline, justify, flex, style }: StackType): JSX.Element;
21
23
  declare function StackRow({ children, className, flex, style }: StackRowType): JSX.Element;
22
24
  export { Stack, StackRow };
@@ -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, };