@solace-health/ui 0.10.97 → 0.10.98
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.cjs +231 -231
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -5
- package/dist/index.d.ts +11 -5
- package/dist/index.js +188 -188
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -18,10 +18,10 @@ import * as rc_select_lib_Select from 'rc-select/lib/Select';
|
|
|
18
18
|
import * as react_hook_form from 'react-hook-form';
|
|
19
19
|
import { FieldValues, UseFormReturn } from 'react-hook-form';
|
|
20
20
|
export { Controller, FormProvider, useFieldArray, useForm, useFormContext } from 'react-hook-form';
|
|
21
|
+
import { TreeProps as TreeProps$1 } from 'antd/es/tree';
|
|
21
22
|
import * as rc_input_number from 'rc-input-number';
|
|
22
23
|
import { MenuDividerProps } from 'antd/es/menu';
|
|
23
24
|
import { MenuItemType } from 'antd/es/menu/hooks/useItems';
|
|
24
|
-
import { TreeProps as TreeProps$1 } from 'antd/es/tree';
|
|
25
25
|
|
|
26
26
|
declare const _default$a: {
|
|
27
27
|
Afternoon: ({ size, color, active, }: {
|
|
@@ -747,6 +747,14 @@ declare enum FormatType {
|
|
|
747
747
|
ShortDate = "shortDate"
|
|
748
748
|
}
|
|
749
749
|
|
|
750
|
+
declare type TreeProps = TreeProps$1;
|
|
751
|
+
declare function Tree$1({ defaultExpandAll, treeData, checkedKeys, ...rest }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
752
|
+
|
|
753
|
+
declare type FormTreeProps = {
|
|
754
|
+
name: string;
|
|
755
|
+
} & TreeProps;
|
|
756
|
+
declare function Tree({ name, ...rest }: FormTreeProps): react_jsx_runtime.JSX.Element;
|
|
757
|
+
|
|
750
758
|
declare const _default$3: {
|
|
751
759
|
ButtonRadioGroup: ({ name, label, className, options, onClick, formOptions, }: {
|
|
752
760
|
name: string;
|
|
@@ -1081,6 +1089,7 @@ declare const _default$3: {
|
|
|
1081
1089
|
uploadData?: Record<string, unknown> | undefined;
|
|
1082
1090
|
defaultFileList?: antd.UploadFile<any>[] | undefined;
|
|
1083
1091
|
} & antd.UploadProps<any>) => react_jsx_runtime.JSX.Element;
|
|
1092
|
+
Tree: typeof Tree;
|
|
1084
1093
|
};
|
|
1085
1094
|
|
|
1086
1095
|
declare const _default$2: {
|
|
@@ -1150,7 +1159,4 @@ declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
|
1150
1159
|
|
|
1151
1160
|
declare const DatePicker: ({ style, ...props }: DatePickerProps) => react_jsx_runtime.JSX.Element;
|
|
1152
1161
|
|
|
1153
|
-
|
|
1154
|
-
declare function Tree({ defaultExpandAll, treeData, ...rest }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
1155
|
-
|
|
1156
|
-
export { _default$a as AnimatedIcon, AutoComplete, Avatar, Badge, Breakpoint, _default$9 as Button, _default$8 as Card, Collapse, Contentful, ContentfulLottieFileSlug, DatePicker, DateSelect, Divider, Drawer, Dropdown, ErrorTypography, _default$7 as File, Flex, _default$3 as Form, FormatType, _default$6 as Icons, _default$2 as Input, LoadingSpinner, LottieAnimation, _default$5 as Menu, Modal, _default$1 as NavigationMenu, _default$4 as NumberedProgressSteps, Pill, Progress, Ribbon, SearchInput, Segmented, Size, SolaceLogo, SolaceThemeProvider, SortableList, Table, Tabs, Tag, TimePicker, TimeSelect, Toggle, Tooltip, Tree, _default as Typography, UserTypes, VantaLogo };
|
|
1162
|
+
export { _default$a as AnimatedIcon, AutoComplete, Avatar, Badge, Breakpoint, _default$9 as Button, _default$8 as Card, Collapse, Contentful, ContentfulLottieFileSlug, DatePicker, DateSelect, Divider, Drawer, Dropdown, ErrorTypography, _default$7 as File, Flex, _default$3 as Form, FormatType, _default$6 as Icons, _default$2 as Input, LoadingSpinner, LottieAnimation, _default$5 as Menu, Modal, _default$1 as NavigationMenu, _default$4 as NumberedProgressSteps, Pill, Progress, Ribbon, SearchInput, Segmented, Size, SolaceLogo, SolaceThemeProvider, SortableList, Table, Tabs, Tag, TimePicker, TimeSelect, Toggle, Tooltip, Tree$1 as Tree, _default as Typography, UserTypes, VantaLogo };
|
package/dist/index.d.ts
CHANGED
|
@@ -18,10 +18,10 @@ import * as rc_select_lib_Select from 'rc-select/lib/Select';
|
|
|
18
18
|
import * as react_hook_form from 'react-hook-form';
|
|
19
19
|
import { FieldValues, UseFormReturn } from 'react-hook-form';
|
|
20
20
|
export { Controller, FormProvider, useFieldArray, useForm, useFormContext } from 'react-hook-form';
|
|
21
|
+
import { TreeProps as TreeProps$1 } from 'antd/es/tree';
|
|
21
22
|
import * as rc_input_number from 'rc-input-number';
|
|
22
23
|
import { MenuDividerProps } from 'antd/es/menu';
|
|
23
24
|
import { MenuItemType } from 'antd/es/menu/hooks/useItems';
|
|
24
|
-
import { TreeProps as TreeProps$1 } from 'antd/es/tree';
|
|
25
25
|
|
|
26
26
|
declare const _default$a: {
|
|
27
27
|
Afternoon: ({ size, color, active, }: {
|
|
@@ -747,6 +747,14 @@ declare enum FormatType {
|
|
|
747
747
|
ShortDate = "shortDate"
|
|
748
748
|
}
|
|
749
749
|
|
|
750
|
+
declare type TreeProps = TreeProps$1;
|
|
751
|
+
declare function Tree$1({ defaultExpandAll, treeData, checkedKeys, ...rest }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
752
|
+
|
|
753
|
+
declare type FormTreeProps = {
|
|
754
|
+
name: string;
|
|
755
|
+
} & TreeProps;
|
|
756
|
+
declare function Tree({ name, ...rest }: FormTreeProps): react_jsx_runtime.JSX.Element;
|
|
757
|
+
|
|
750
758
|
declare const _default$3: {
|
|
751
759
|
ButtonRadioGroup: ({ name, label, className, options, onClick, formOptions, }: {
|
|
752
760
|
name: string;
|
|
@@ -1081,6 +1089,7 @@ declare const _default$3: {
|
|
|
1081
1089
|
uploadData?: Record<string, unknown> | undefined;
|
|
1082
1090
|
defaultFileList?: antd.UploadFile<any>[] | undefined;
|
|
1083
1091
|
} & antd.UploadProps<any>) => react_jsx_runtime.JSX.Element;
|
|
1092
|
+
Tree: typeof Tree;
|
|
1084
1093
|
};
|
|
1085
1094
|
|
|
1086
1095
|
declare const _default$2: {
|
|
@@ -1150,7 +1159,4 @@ declare const VantaLogo: ({ contentfulConfig, size, }: {
|
|
|
1150
1159
|
|
|
1151
1160
|
declare const DatePicker: ({ style, ...props }: DatePickerProps) => react_jsx_runtime.JSX.Element;
|
|
1152
1161
|
|
|
1153
|
-
|
|
1154
|
-
declare function Tree({ defaultExpandAll, treeData, ...rest }: TreeProps): react_jsx_runtime.JSX.Element;
|
|
1155
|
-
|
|
1156
|
-
export { _default$a as AnimatedIcon, AutoComplete, Avatar, Badge, Breakpoint, _default$9 as Button, _default$8 as Card, Collapse, Contentful, ContentfulLottieFileSlug, DatePicker, DateSelect, Divider, Drawer, Dropdown, ErrorTypography, _default$7 as File, Flex, _default$3 as Form, FormatType, _default$6 as Icons, _default$2 as Input, LoadingSpinner, LottieAnimation, _default$5 as Menu, Modal, _default$1 as NavigationMenu, _default$4 as NumberedProgressSteps, Pill, Progress, Ribbon, SearchInput, Segmented, Size, SolaceLogo, SolaceThemeProvider, SortableList, Table, Tabs, Tag, TimePicker, TimeSelect, Toggle, Tooltip, Tree, _default as Typography, UserTypes, VantaLogo };
|
|
1162
|
+
export { _default$a as AnimatedIcon, AutoComplete, Avatar, Badge, Breakpoint, _default$9 as Button, _default$8 as Card, Collapse, Contentful, ContentfulLottieFileSlug, DatePicker, DateSelect, Divider, Drawer, Dropdown, ErrorTypography, _default$7 as File, Flex, _default$3 as Form, FormatType, _default$6 as Icons, _default$2 as Input, LoadingSpinner, LottieAnimation, _default$5 as Menu, Modal, _default$1 as NavigationMenu, _default$4 as NumberedProgressSteps, Pill, Progress, Ribbon, SearchInput, Segmented, Size, SolaceLogo, SolaceThemeProvider, SortableList, Table, Tabs, Tag, TimePicker, TimeSelect, Toggle, Tooltip, Tree$1 as Tree, _default as Typography, UserTypes, VantaLogo };
|