@oliasoft-open-source/react-ui-library 5.6.5-beta-2 → 5.6.5-beta-3
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/index.d.ts +8 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1983,6 +1983,13 @@ export declare const TextArea: ({ name, value, placeholder, cols, rows, disabled
|
|
|
1983
1983
|
|
|
1984
1984
|
export declare const TextLink: ({ children, href, target, testId, onClick, component: Component, }: ITextLinkProps) => JSX_2.Element;
|
|
1985
1985
|
|
|
1986
|
+
export declare enum TextTransform {
|
|
1987
|
+
UPPERCASE = "uppercase",
|
|
1988
|
+
LOWERCASE = "lowercase",
|
|
1989
|
+
CAPITALIZE = "capitalize",
|
|
1990
|
+
NONE = "none"
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1986
1993
|
declare type TFileReaderMethod = TInputReaderMethods | string;
|
|
1987
1994
|
|
|
1988
1995
|
declare type TFunction = (...args: any[]) => any;
|
|
@@ -2098,7 +2105,7 @@ declare type TStringNumberNull = string | number | null;
|
|
|
2098
2105
|
|
|
2099
2106
|
declare type TStringOrNumber = string | number;
|
|
2100
2107
|
|
|
2101
|
-
declare type TTextTransform = 'uppercase' | 'lowercase' | 'capitalize' | 'none';
|
|
2108
|
+
export declare type TTextTransform = 'uppercase' | 'lowercase' | 'capitalize' | 'none';
|
|
2102
2109
|
|
|
2103
2110
|
export declare type TTheme = 'dark' | 'white' | 'light' | 'inherit';
|
|
2104
2111
|
|
package/dist/index.js
CHANGED
|
@@ -5688,7 +5688,7 @@ var radio_button_module_default = {
|
|
|
5688
5688
|
};
|
|
5689
5689
|
const RadioInput = ({ name: e, label: t, value: n, selected: r, disabled: i = !1, small: a = !1, onChange: o, noMargin: s = !1, testId: c, helpText: l, onClickHelp: u, textTransform: d = TextTransform.CAPITALIZE }) => {
|
|
5690
5690
|
let f = l || u;
|
|
5691
|
-
return
|
|
5691
|
+
return /* @__PURE__ */ jsxs("div", {
|
|
5692
5692
|
className: cx(radio_button_module_default.radio, i ? radio_button_module_default.disabled : null, a ? radio_button_module_default.small : null, s ? radio_button_module_default.noMargin : null),
|
|
5693
5693
|
onClick: o,
|
|
5694
5694
|
"data-testid": c,
|
|
@@ -7066,4 +7066,4 @@ const DiffViewer = ({ oldJson: e, newJson: t, viewType: n = SPLIT_VIEW }) => {
|
|
|
7066
7066
|
}
|
|
7067
7067
|
});
|
|
7068
7068
|
};
|
|
7069
|
-
export { Accordion, AccordionWithDefaultToggle, Actions, Align, Badge, Breadcrumb, BreadcrumbLinkType, Button, ButtonGroup, ButtonPosition, ButtonType, Card, CheckBox, Chevron, Color, Column, Dialog, DiffViewer, DisabledContext, Divider, Drawer, ElementType, Empty, Field, FileButton, FileInput, Flex, FormRow, Grid, GroupOrder, Heading, HelpIcon, Icon, IconType, Input, InputGroup, InputGroupAddon, InputReaderMethods, InputType, Label, List, ListHeading, ListSubheading, Loader, Menu, MenuCarat, MenuType, Message, MessageType, Modal, NativeSelect, NumberInput, OptionDropdown, Page, Pagination, PopConfirm, Popover, Portal, PrintHeader, ProgressBar, RadioButton, RichTextInput, Row, Select, SettingField, SideBar, Slider, SmartUploadModal, Spacer, Spinner, Table, TableImportExport, Tabs, Text, TextArea, TextLink, Theme, Toaster, Toggle, Tooltip, TopBar, Tree, TriggerType, UnitInput, UnitTable, dismissToast, initializeContext, initializeGuiLibrary, readFile, toast, useFocus, useKeyboardEvent, useWindowWidth };
|
|
7069
|
+
export { Accordion, AccordionWithDefaultToggle, Actions, Align, Badge, Breadcrumb, BreadcrumbLinkType, Button, ButtonGroup, ButtonPosition, ButtonType, Card, CheckBox, Chevron, Color, Column, Dialog, DiffViewer, DisabledContext, Divider, Drawer, ElementType, Empty, Field, FileButton, FileInput, Flex, FormRow, Grid, GroupOrder, Heading, HelpIcon, Icon, IconType, Input, InputGroup, InputGroupAddon, InputReaderMethods, InputType, Label, List, ListHeading, ListSubheading, Loader, Menu, MenuCarat, MenuType, Message, MessageType, Modal, NativeSelect, NumberInput, OptionDropdown, Page, Pagination, PopConfirm, Popover, Portal, PrintHeader, ProgressBar, RadioButton, RichTextInput, Row, Select, SettingField, SideBar, Slider, SmartUploadModal, Spacer, Spinner, Table, TableImportExport, Tabs, Text, TextArea, TextLink, TextTransform, Theme, Toaster, Toggle, Tooltip, TopBar, Tree, TriggerType, UnitInput, UnitTable, dismissToast, initializeContext, initializeGuiLibrary, readFile, toast, useFocus, useKeyboardEvent, useWindowWidth };
|
package/package.json
CHANGED