@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.
@@ -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 {};
@@ -1 +1,3 @@
1
1
  export { default as AppTag } from "./AppTag";
2
+ export type { AppTagProps } from "./AppTag";
3
+ export type { AppName } from "./constants";
@@ -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 { DescriptionList, DescriptionDetails, DescriptionGroup, DescriptionTerm } from "./DescriptionList";
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 SelectOptionProps, type NDSOption, type NDSOptionValue, type NDSSelectProps, } from "./Select";
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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nulogy/components",
3
- "version": "14.3.0",
3
+ "version": "14.4.0",
4
4
  "description": "Component library for the Nulogy Design System - http://nulogy.design",
5
5
  "private": false,
6
6
  "publishConfig": {