@oliasoft-open-source/react-ui-library 5.6.1-beta-5 → 5.6.1-beta-7
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/dist/global.css +1 -1
- package/dist/index.d.ts +2 -6
- package/dist/index.js +2315 -2343
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -98,7 +98,7 @@ export declare enum ElementType {
|
|
|
98
98
|
|
|
99
99
|
export declare const Empty: ({ width, height, text, children, testId, }: IEmptyProps) => JSX_2.Element;
|
|
100
100
|
|
|
101
|
-
export declare const Field: ({ label, labelLeft, labelWidth, children, helpText, helpTextMaxWidth, onClickHelp, lock, info, libraryIcon, testId,
|
|
101
|
+
export declare const Field: ({ label, labelLeft, labelWidth, children, helpText, helpTextMaxWidth, onClickHelp, lock, info, libraryIcon, testId, }: IFieldProps) => JSX_2.Element;
|
|
102
102
|
|
|
103
103
|
export declare const FileButton: ({ file, accept, multi, name, disabled, onChange, ...buttonProps }: IFileButtonProps) => JSX_2.Element;
|
|
104
104
|
|
|
@@ -446,7 +446,6 @@ export declare interface IFieldProps {
|
|
|
446
446
|
info?: string;
|
|
447
447
|
libraryIcon?: ILabelIcon;
|
|
448
448
|
testId?: string;
|
|
449
|
-
textTransform?: TTextTransform;
|
|
450
449
|
}
|
|
451
450
|
|
|
452
451
|
export declare interface IFileButtonProps extends IButtonProps {
|
|
@@ -630,7 +629,6 @@ export declare interface ILabelProps {
|
|
|
630
629
|
lock?: ILabelLockProps;
|
|
631
630
|
libraryIcon?: ILabelIcon;
|
|
632
631
|
labelLeft?: boolean;
|
|
633
|
-
textTransform?: TTextTransform;
|
|
634
632
|
}
|
|
635
633
|
|
|
636
634
|
export declare interface ILayoutColumnProps {
|
|
@@ -1818,7 +1816,7 @@ export declare interface IUnitTableRow extends Omit<TRowType, 'cells'> {
|
|
|
1818
1816
|
declare interface IUnitTableStaticCell extends IStaticCell, IUnitTableCell {
|
|
1819
1817
|
}
|
|
1820
1818
|
|
|
1821
|
-
export declare const Label: ({ label, width, helpText, helpTextMaxWidth, onClickHelp, lock, info, libraryIcon, labelLeft,
|
|
1819
|
+
export declare const Label: ({ label, width, helpText, helpTextMaxWidth, onClickHelp, lock, info, libraryIcon, labelLeft, }: ILabelProps) => JSX_2.Element;
|
|
1822
1820
|
|
|
1823
1821
|
export declare const List: ({ list, bordered, expanding, narrow, toggleNarrow, onToggleNarrow, invokeEditOnRowClick, noHeader, stickyHeader, draggable, onListReorder, marginBottom, height, testId, scrollDetails, }: IListProps) => JSX_2.Element;
|
|
1824
1822
|
|
|
@@ -2095,8 +2093,6 @@ declare type TStringNumberNull = string | number | null;
|
|
|
2095
2093
|
|
|
2096
2094
|
declare type TStringOrNumber = string | number;
|
|
2097
2095
|
|
|
2098
|
-
declare type TTextTransform = 'uppercase' | 'lowercase' | 'capitalize' | 'none';
|
|
2099
|
-
|
|
2100
2096
|
export declare type TTheme = 'dark' | 'white' | 'light' | 'inherit';
|
|
2101
2097
|
|
|
2102
2098
|
declare type TTopBarContent = TLinkElement | TButtonElement | TMenuElement | TComponentElement;
|