Skip to content

Commit

Permalink
1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Jan 18, 2025
1 parent 5c673d2 commit 1a95cfa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@moonlight-mod/mappings",
"version": "1.1.5",
"version": "1.1.6",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/moonlight-mod/mappings.git"
},
"exports": {
".": "./dist/index.js",
"./*": "./dist/mappings/*.js"
"./*": "./dist/mappings/*.js",
"./types/*": "./dist/mappings/*.d.ts"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
14 changes: 7 additions & 7 deletions src/mappings/discord/components/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ export type StatusTypes = {

type UnsortedComponentTypes = {
AccessibilityAnnouncer: AccessibilityAnnouncer;
BackdropStyles: BackdropStyles;
BackdropStyles: typeof BackdropStyles;
BadgeShapes: BadgeShapes;
CardTypes: CardTypes;
CircleIconButtonColors: CircleIconButtonColors;
Expand All @@ -927,18 +927,18 @@ type UnsortedComponentTypes = {
FormNoticeImagePositions: FormNoticeImagePositions;
FormNoticeTypes: FormNoticeTypes;
FormTitleTags: FormTitleTags;
HelpMessageTypes: HelpMessageTypes;
HelpMessageTypes: typeof HelpMessageTypes;
ModalSize: ModalSize;
ModalTransitionState: ModalTransitionState;
ModalTransitionState: typeof ModalTransitionState;
NoticeColors: NoticeColors;
PRETTY_KEYS: PRETTY_KEYS;
SelectLooks: SelectLooks;
SelectLooks: typeof SelectLooks;
ShineSizes: ShineSizes;
SpinnerTypes: SpinnerTypes;
StatusTypes: StatusTypes;
ToastPosition: ToastPosition;
ToastType: ToastType;
TransitionStates: TransitionStates;
ToastPosition: typeof ToastPosition;
ToastType: typeof ToastType;
TransitionStates: typeof TransitionStates;
};
type ComponentConstants = {
DEFAULT_MODAL_CONTEXT: "default";
Expand Down

0 comments on commit 1a95cfa

Please sign in to comment.