manucap 3.0.0 → 3.0.1

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/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "manucap",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "",
5
5
  "license": "",
6
- "repository": "manucap",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/lkrnac/manucap"
9
+ },
7
10
  "main": "dist/index.js",
8
11
  "types": "dist/@types/index.d.ts",
9
12
  "engines": {
@@ -1,3 +0,0 @@
1
- import { ReactElement } from "react";
2
- declare const SubtitleSpecificationsButton: () => ReactElement;
3
- export default SubtitleSpecificationsButton;
@@ -1,2 +0,0 @@
1
- import "../../../testUtils/initBrowserEnvironment";
2
- import "video.js";
@@ -1,7 +0,0 @@
1
- import { ReactElement } from "react";
2
- import { SubtitleSpecification } from "../model";
3
- export interface Props {
4
- subTitleSpecifications: SubtitleSpecification;
5
- }
6
- declare const SubtitleSpecificationsForm: (props: Props) => ReactElement;
7
- export default SubtitleSpecificationsForm;
@@ -1 +0,0 @@
1
- import "../../../testUtils/initBrowserEnvironment";
@@ -1,7 +0,0 @@
1
- import { ReactElement } from "react";
2
- interface Props {
3
- show: boolean;
4
- onClose: () => void;
5
- }
6
- declare const SubtitleSpecificationsModal: (props: Props) => ReactElement;
7
- export default SubtitleSpecificationsModal;
@@ -1 +0,0 @@
1
- import "../../../testUtils/initBrowserEnvironment";
@@ -1,11 +0,0 @@
1
- import { PayloadAction } from "@reduxjs/toolkit";
2
- import { AppThunk } from "../../manuCapReducers";
3
- import { SubtitleSpecification } from "../model";
4
- import { SubtitleEditAction } from "../../model";
5
- export interface SubtitleSpecificationAction extends SubtitleEditAction {
6
- subtitleSpecification: SubtitleSpecification | null;
7
- }
8
- export declare const subtitleSpecificationSlice: import("@reduxjs/toolkit").Slice<SubtitleSpecification | null, {
9
- readSubtitleSpecification: (_state: import("immer/dist/internal").WritableDraft<SubtitleSpecification> | null, action: PayloadAction<SubtitleSpecificationAction>) => SubtitleSpecification | null;
10
- }, "subtitleSpecification">;
11
- export declare const readSubtitleSpecification: (subtitleSpecification: SubtitleSpecification) => AppThunk;