Rename some components and update module ids

This commit is contained in:
Jonas Dellinger
2022-04-23 00:41:37 +02:00
parent 20e2c55278
commit d9e9adead8
3 changed files with 6 additions and 7 deletions

3
.gitignore vendored
View File

@@ -34,5 +34,4 @@ Thumbs.db
# Ignore built ts files
dist/
# ignore yarn.lock
yarn.lock
research/

View File

@@ -11,9 +11,9 @@ interface ButtonProps {
bottomSeparator?: boolean;
}
export const Button: FC<ButtonProps> = ControlsModule.a;
export const Button: FC<ButtonProps> = ControlsModule.d;
interface SwitchProps {
interface ToggleProps {
label?: string;
description?: string;
checked: boolean;
@@ -22,7 +22,7 @@ interface SwitchProps {
onChange?(checked: boolean): void;
}
export const Switch: VFC<SwitchProps> = ControlsModule.j;
export const Toggle: VFC<ToggleProps> = ControlsModule.jb;
interface NotchLabel {
notchIndex: number;
@@ -43,4 +43,4 @@ interface SliderProps {
onChange?(value: number): void;
}
export const Slider: VFC<SliderProps> = ControlsModule.l;
export const Slider: VFC<SliderProps> = ControlsModule.eb;

View File

@@ -2,7 +2,7 @@ import ModuleRaid from 'moduleraid';
const moduleraid = new ModuleRaid();
export const ControlsModule = moduleraid.modules['qu8K'].exports;
export const ControlsModule = moduleraid.modules['Mgs7'].exports;
export const NavigationModule = moduleraid.modules['sUK7'].exports;
export const DialogModule = moduleraid.modules['Mgs7'].exports;
export const BackdropModule = moduleraid.modules['TtDX'].exports;