@aigamo/hydrangean-diva 0.0.1-alpha.11 → 0.0.1-alpha.13
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.
- package/dist/features/common/index.d.ts +2 -0
- package/dist/features/common/interfaces/index.d.ts +1 -0
- package/dist/features/{media-player → common}/stores/MobXObservableStateProvider.d.ts +1 -1
- package/dist/features/{media-player → common}/stores/ObservableStateProvider.d.ts +1 -1
- package/dist/features/common/stores/index.d.ts +2 -0
- package/dist/features/{media-player → media-player.play-queue}/components/AddVideoButton.d.ts +2 -2
- package/dist/features/media-player.play-queue/components/HydrangeanDiva.d.ts +9 -0
- package/dist/features/{media-player → media-player.play-queue}/components/PlayQueueTable.d.ts +2 -2
- package/dist/features/media-player.play-queue/components/index.d.ts +2 -0
- package/dist/features/media-player.play-queue/index.d.ts +2 -0
- package/dist/features/{media-player/stores → media-player.play-queue/interfaces}/IPlayQueueItemStore.d.ts +1 -6
- package/dist/features/media-player.play-queue/interfaces/IPlayQueueStore.d.ts +37 -0
- package/dist/features/media-player.play-queue/interfaces/PlayQueueDto.d.ts +11 -0
- package/dist/features/media-player.play-queue/interfaces/PlayQueueItemDto.d.ts +9 -0
- package/dist/features/media-player.play-queue/interfaces/index.d.ts +3 -0
- package/dist/features/{media-player → media-player.play-queue}/stores/PlayQueueItemStore.d.ts +5 -5
- package/dist/features/{media-player → media-player.play-queue}/stores/PlayQueueStore.d.ts +10 -9
- package/dist/features/media-player.player/components/BottomBar.d.ts +13 -0
- package/dist/features/{media-player → media-player.player}/components/MiniPlayer.d.ts +4 -4
- package/dist/features/{media-player → media-player.player}/components/PlayerStoreContext.d.ts +2 -2
- package/dist/features/{media-player → media-player.player}/components/index.d.ts +0 -2
- package/dist/features/{media-player → media-player.player}/index.d.ts +0 -1
- package/dist/features/media-player.player/interfaces/IPlayerStore.d.ts +11 -0
- package/dist/features/{media-player → media-player.player}/stores/PlayerStore.d.ts +3 -2
- package/dist/index.cjs.js +9 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.es.js +1006 -974
- package/dist/index.es.js.map +1 -1
- package/package.json +3 -1
- package/dist/features/media-player/components/BottomBar.d.ts +0 -12
- package/dist/features/media-player/components/HydrangeanDiva.d.ts +0 -11
- package/dist/features/media-player/stores/IPlayQueueStore.d.ts +0 -15
- package/dist/features/media-player/stores/PlayQueueLocalStorageState.d.ts +0 -10
- package/dist/features/media-player/stores/index.d.ts +0 -6
- /package/dist/features/{media-player/stores → common/interfaces}/IObservableStateProvider.d.ts +0 -0
- /package/dist/features/{media-player → common}/stores/getOrAddSchema.d.ts +0 -0
- /package/dist/features/{media-player → media-player.play-queue}/components/PlayQueueStoreContext.d.ts +0 -0
- /package/dist/features/{media-player/stores → media-player.play-queue/interfaces}/RepeatMode.d.ts +0 -0
- /package/dist/features/{media-player → media-player.play-queue}/pages/PlayQueuePage.d.ts +0 -0
- /package/dist/features/{media-player → media-player.player}/components/MediaPlayerLayout.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigamo/hydrangean-diva",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
3
|
+
"version": "0.0.1-alpha.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@aigamo/nostalgic-diva": "^1.14.2",
|
|
@@ -38,6 +38,8 @@
|
|
|
38
38
|
"eslint": "^8.57.1",
|
|
39
39
|
"eslint-config-prettier": "^9.1.0",
|
|
40
40
|
"eslint-config-react-app": "^7.0.1",
|
|
41
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
42
|
+
"eslint-plugin-boundaries": "^5.0.1",
|
|
41
43
|
"eslint-plugin-flowtype": "^8.0.3",
|
|
42
44
|
"eslint-plugin-import": "^2.31.0",
|
|
43
45
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ReactElement } from 'react';
|
|
2
|
-
import { PlayerStore } from '../stores/PlayerStore';
|
|
3
|
-
import { PlayQueueStore } from '../stores/PlayQueueStore';
|
|
4
|
-
export declare const bottomBarHeight = 80;
|
|
5
|
-
interface BottomBarProps {
|
|
6
|
-
playerStore: PlayerStore;
|
|
7
|
-
playQueueStore: PlayQueueStore;
|
|
8
|
-
}
|
|
9
|
-
export declare const BottomBar: (({ playerStore, playQueueStore }: BottomBarProps) => ReactElement) & {
|
|
10
|
-
displayName: string;
|
|
11
|
-
};
|
|
12
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ReactElement } from 'react';
|
|
2
|
-
import { PlayerStore } from '../stores/PlayerStore';
|
|
3
|
-
import { PlayQueueStore } from '../stores/PlayQueueStore';
|
|
4
|
-
interface HydrangeanDivaProps {
|
|
5
|
-
playerStore: PlayerStore;
|
|
6
|
-
playQueueStore: PlayQueueStore;
|
|
7
|
-
}
|
|
8
|
-
export declare const HydrangeanDiva: (({ playerStore, playQueueStore }: HydrangeanDivaProps) => ReactElement) & {
|
|
9
|
-
displayName: string;
|
|
10
|
-
};
|
|
11
|
-
export {};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { IPlayQueueItemStore, PlayQueueItemDto } from './IPlayQueueItemStore';
|
|
2
|
-
export interface IPlayQueueStore {
|
|
3
|
-
items: IPlayQueueItemStore[];
|
|
4
|
-
createItem(dto: PlayQueueItemDto): IPlayQueueItemStore;
|
|
5
|
-
readonly currentItem: IPlayQueueItemStore | undefined;
|
|
6
|
-
readonly hasMultipleItems: boolean;
|
|
7
|
-
setCurrentItem(item: IPlayQueueItemStore | undefined): void;
|
|
8
|
-
playNext(items: IPlayQueueItemStore[]): Promise<void>;
|
|
9
|
-
addItems(items: IPlayQueueItemStore[]): Promise<void>;
|
|
10
|
-
playFirst(items: IPlayQueueItemStore[]): Promise<void>;
|
|
11
|
-
moveItem(item: IPlayQueueItemStore, index: number): void;
|
|
12
|
-
removeItems(items: IPlayQueueItemStore[]): Promise<void>;
|
|
13
|
-
removeItemsAbove(item: IPlayQueueItemStore): Promise<void>;
|
|
14
|
-
removeOtherItems(item: IPlayQueueItemStore): Promise<void>;
|
|
15
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { PlayQueueItemDto } from './IPlayQueueItemStore';
|
|
2
|
-
import { RepeatMode } from './RepeatMode';
|
|
3
|
-
export interface PlayQueueLocalStorageState {
|
|
4
|
-
version?: '1.0';
|
|
5
|
-
repeat?: RepeatMode;
|
|
6
|
-
shuffle?: boolean;
|
|
7
|
-
items?: PlayQueueItemDto[];
|
|
8
|
-
currentIndex?: number;
|
|
9
|
-
}
|
|
10
|
-
export declare const validatePlayQueueLocalStorageState: import('ajv').ValidateFunction<PlayQueueLocalStorageState>;
|
/package/dist/features/{media-player/stores → common/interfaces}/IObservableStateProvider.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/features/{media-player/stores → media-player.play-queue/interfaces}/RepeatMode.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/features/{media-player → media-player.player}/components/MediaPlayerLayout.d.ts
RENAMED
|
File without changes
|