Skip to content

Commit

Permalink
Export date-text column enums fully (#1438)
Browse files Browse the repository at this point in the history
## 🀨 Rationale

Enum types are not usable because they were only exported as types.

## πŸ‘©β€πŸ’» Implementation

Removed "type" from all date-text column config enum exports.

## πŸ§ͺ Testing

None

## βœ… Checklist

- [x] I have updated the project documentation to reflect my changes or
determined no changes are needed.
  • Loading branch information
m-akinc authored Aug 17, 2023
1 parent 8619264 commit cf03fa3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@ import type {
} from '@ni/nimble-components/dist/esm/table-column/date-text/types';

export type { TableColumnDateText };
export type { DateStyle };
export type { DateTextFormat };
export type { DayFormat };
export type { DayPeriodFormat };
export type { EraFormat };
export type { FormatMatcherAlgorithm };
export type { HourCycleFormat };
export type { HourFormat };
export type { LocaleMatcherAlgorithm };
export type { MinuteFormat };
export type { MonthFormat };
export type { SecondFormat };
export type { TimeStyle };
export type { TimeZoneNameFormat };
export type { WeekdayFormat };
export type { YearFormat };
export { DateStyle };
export { DateTextFormat };
export { DayFormat };
export { DayPeriodFormat };
export { EraFormat };
export { FormatMatcherAlgorithm };
export { HourCycleFormat };
export { HourFormat };
export { LocaleMatcherAlgorithm };
export { MinuteFormat };
export { MonthFormat };
export { SecondFormat };
export { TimeStyle };
export { TimeZoneNameFormat };
export { WeekdayFormat };
export { YearFormat };
export { tableColumnDateTextTag };

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Export date-text column enums fully",
"packageName": "@ni/nimble-angular",
"email": "[email protected]",
"dependentChangeType": "patch"
}

0 comments on commit cf03fa3

Please sign in to comment.