@nulogy/components 11.0.0-beta.4 → 11.0.0-beta.5

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.
@@ -6,7 +6,7 @@ export declare const NotificationTypes: {
6
6
  readonly success: "success";
7
7
  readonly warning: "warning";
8
8
  };
9
- export type NotificationType = typeof NotificationTypes[keyof typeof NotificationTypes];
9
+ export type NotificationType = (typeof NotificationTypes)[keyof typeof NotificationTypes];
10
10
  export type AlertProps = FlexProps & {
11
11
  isCloseable?: boolean;
12
12
  closeAriaLabel?: string;
@@ -1,3 +1,3 @@
1
- export { SelectOption } from "./SelectOption";
2
- export { default as Select, type NDSOption, type NDSOptionValue } from "./Select";
1
+ export { SelectOption, type SelectOptionProps } from "./SelectOption";
2
+ export { default as Select, type NDSOption, type NDSOptionValue, type NDSSelectProps } from "./Select";
3
3
  export * from "./SelectComponents";
@@ -8,7 +8,7 @@ export declare const StatusIndicatorValues: {
8
8
  readonly warning: "warning";
9
9
  readonly quiet: "quiet";
10
10
  };
11
- export type StatusIndicatorType = typeof StatusIndicatorValues[keyof typeof StatusIndicatorValues];
11
+ export type StatusIndicatorType = (typeof StatusIndicatorValues)[keyof typeof StatusIndicatorValues];
12
12
  interface Props extends SpaceProps, TypographyProps, FlexboxProps {
13
13
  type?: StatusIndicatorType;
14
14
  }
@@ -32,7 +32,7 @@ export { Overlay } from "./Overlay";
32
32
  export { Pagination } from "./Pagination";
33
33
  export { Radio, RadioGroup } from "./Radio";
34
34
  export { RangeContainer } from "./RangeContainer";
35
- export { Select, SelectClearIndicator, SelectContainer, SelectControl, SelectDropdownIndicator, SelectInput, SelectMenu, SelectMultiValue, SelectOption, type NDSOption, type NDSOptionValue, } from "./Select";
35
+ export { Select, SelectClearIndicator, SelectContainer, SelectControl, SelectDropdownIndicator, SelectInput, SelectMenu, SelectMultiValue, SelectOption, type SelectOptionProps, type NDSOption, type NDSOptionValue, type NDSSelectProps, } from "./Select";
36
36
  export { SortingTable } from "./SortingTable";
37
37
  export { StatusIndicator, StatusIndicatorValues } from "./StatusIndicator";
38
38
  export type { StatusIndicatorType } from "./StatusIndicator";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nulogy/components",
3
- "version": "11.0.0-beta.4",
3
+ "version": "11.0.0-beta.5",
4
4
  "description": "Component library for the Nulogy Design System - http://nulogy.design",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -116,6 +116,7 @@
116
116
  "jscodeshift": "^0.11.0",
117
117
  "mockdate": "^3.0.2",
118
118
  "plop": "^2.4.0",
119
+ "prettier": "^3.3.2",
119
120
  "prop-types": "15.7.2",
120
121
  "react": "17.0.2",
121
122
  "react-color": "^2.18.1",