manucap 3.0.0 → 3.0.2
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/dist.css +0 -3
- package/package.json +6 -3
- package/dist/manucap/toolbox/subtitleSpecifications/SubtitleSpecificationsButton.d.ts +0 -3
- package/dist/manucap/toolbox/subtitleSpecifications/SubtitleSpecificationsButton.spec.d.ts +0 -2
- package/dist/manucap/toolbox/subtitleSpecifications/SubtitleSpecificationsForm.d.ts +0 -7
- package/dist/manucap/toolbox/subtitleSpecifications/SubtitleSpecificationsForm.spec.d.ts +0 -1
- package/dist/manucap/toolbox/subtitleSpecifications/SubtitleSpecificationsModal.d.ts +0 -7
- package/dist/manucap/toolbox/subtitleSpecifications/SubtitleSpecificationsModal.spec.d.ts +0 -1
- package/dist/manucap/toolbox/subtitleSpecifications/subtitleSpecificationSlice.d.ts +0 -11
- package/dist/manucap/toolbox/subtitleSpecifications/subtitleSpecificationSlice.spec.d.ts +0 -1
package/dist/dist.css
CHANGED
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "manucap",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "",
|
|
6
|
-
"repository":
|
|
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": {
|
|
@@ -11,7 +14,7 @@
|
|
|
11
14
|
"npm": ">=8"
|
|
12
15
|
},
|
|
13
16
|
"scripts": {
|
|
14
|
-
"test": "cross-env CI=1 react-scripts test --coverage --collectCoverageFrom=src/**/*.tsx --collectCoverageFrom=src/**/*.ts --collectCoverageFrom=!src/typings.d.ts --collectCoverageFrom=!src/@types/*.ts --collectCoverageFrom=!src/index.tsx 2
|
|
17
|
+
"test": "bash -c 'cross-env CI=1 react-scripts test --coverage --collectCoverageFrom=src/**/*.tsx --collectCoverageFrom=src/**/*.ts --collectCoverageFrom=!src/typings.d.ts --collectCoverageFrom=!src/@types/*.ts --collectCoverageFrom=!src/index.tsx 2> >(tee -a js-build.log >&2)'",
|
|
15
18
|
"test:watch": "react-scripts test",
|
|
16
19
|
"build": "rollup -c",
|
|
17
20
|
"compile-with-tests": "npx tsc",
|
|
@@ -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 +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;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import "video.js";
|