@nulogy/components 14.3.0 → 14.4.0
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/main.js +10582 -10541
- package/dist/main.module.js +10580 -10539
- package/dist/src/AppTag/AppTag.d.ts +1 -2
- package/dist/src/AppTag/index.d.ts +2 -0
- package/dist/src/index.d.ts +4 -3
- package/package.json +1 -1
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { AppName } from "./constants";
|
|
3
3
|
import { AppTagType } from "./types";
|
|
4
|
-
type AppTagProps = {
|
|
4
|
+
export type AppTagProps = {
|
|
5
5
|
app: AppName;
|
|
6
6
|
type?: AppTagType;
|
|
7
7
|
hideTooltip?: boolean;
|
|
8
8
|
};
|
|
9
9
|
export default function AppTag({ app, type, hideTooltip }: AppTagProps): React.JSX.Element;
|
|
10
|
-
export {};
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export { Alert, NotificationTypes } from "./Alert";
|
|
2
2
|
export type { NotificationType } from "./Alert";
|
|
3
|
+
export { AppTag } from "./AppTag";
|
|
4
|
+
export type { AppName, AppTagProps } from "./AppTag";
|
|
3
5
|
export { AsyncSelect } from "./AsyncSelect";
|
|
4
6
|
export { Banner } from "./Banner";
|
|
5
7
|
export { BottomSheet, BottomSheetParts } from "./BottomSheet";
|
|
@@ -15,7 +17,7 @@ export { Card, CardSet } from "./Card";
|
|
|
15
17
|
export { Checkbox, CheckboxGroup } from "./Checkbox";
|
|
16
18
|
export { DatePicker, MonthPicker, WeekPicker } from "./DatePickers";
|
|
17
19
|
export { DateRange } from "./DateRange";
|
|
18
|
-
export {
|
|
20
|
+
export { DescriptionDetails, DescriptionGroup, DescriptionList, DescriptionTerm } from "./DescriptionList";
|
|
19
21
|
export type { DescriptionListProps } from "./DescriptionList";
|
|
20
22
|
export { Divider } from "./Divider";
|
|
21
23
|
export { DropdownButton, DropdownItem, DropdownLink, DropdownMenu, DropdownText } from "./DropdownMenu";
|
|
@@ -36,7 +38,7 @@ export { Overlay } from "./Overlay";
|
|
|
36
38
|
export { Pagination } from "./Pagination";
|
|
37
39
|
export { Radio, RadioGroup } from "./Radio";
|
|
38
40
|
export { RangeContainer } from "./RangeContainer";
|
|
39
|
-
export { Select, SelectClearIndicator, SelectContainer, SelectControl, SelectDropdownIndicator, SelectInput, SelectMenu, SelectMultiValue, SelectOption, type
|
|
41
|
+
export { Select, SelectClearIndicator, SelectContainer, SelectControl, SelectDropdownIndicator, SelectInput, SelectMenu, SelectMultiValue, SelectOption, type NDSOption, type NDSOptionValue, type NDSSelectProps, type SelectOptionProps, } from "./Select";
|
|
40
42
|
export { SortingTable } from "./SortingTable";
|
|
41
43
|
export { StatusIndicator, StatusIndicatorValues } from "./StatusIndicator";
|
|
42
44
|
export type { StatusIndicatorType } from "./StatusIndicator";
|
|
@@ -64,4 +66,3 @@ export type { TextProps } from "./Type";
|
|
|
64
66
|
export { useWindowDimensions } from "./utils";
|
|
65
67
|
export { InlineValidation } from "./Validation";
|
|
66
68
|
export { VerticalDivider } from "./VerticalDivider";
|
|
67
|
-
export { AppTag } from "./AppTag";
|