@mediaclip/library 13.2.0 → 14.0.0-cd.26344

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/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # Mediaclip Library EcmaScript Themes Typings
2
-
3
- Learn more about EcmaScript themes at [doc.mediaclip.ca](https://doc.mediaclip.ca/library/themes/es/).
4
-
5
- ```bash
6
- npm init --yes
7
- npm i @mediaclip/library
8
- ```
1
+ # Mediaclip Library EcmaScript Themes Typings
2
+
3
+ Learn more about EcmaScript themes at [doc.mediaclip.ca](https://doc.mediaclip.ca/library/themes/es/).
4
+
5
+ ```bash
6
+ npm init --yes
7
+ npm i @mediaclip/library
8
+ ```
package/package.json CHANGED
@@ -1,28 +1,28 @@
1
- {
2
- "name": "@mediaclip/library",
3
- "version": "13.2.0",
4
- "description": "",
5
- "types": "dist/index.d.ts",
6
- "keywords": [],
7
- "author": "Mediaclip inc.",
8
- "license": "GPL-3.0-or-later",
9
- "files": [
10
- "README.md",
11
- "dist/**/*.d.ts"
12
- ],
13
- "scripts": {
14
- "build": "tsc",
15
- "test": "tsc -p tsconfig-test.json",
16
- "lint": "eslint \"{src,test}/**/*.ts\" --fix",
17
- "all": "npm run build && npm run test && npm run lint",
18
- "prepublish": "tsc"
19
- },
20
- "devDependencies": {
21
- "@eslint/eslintrc": "^3.3.1",
22
- "@eslint/js": "^9.39.1",
23
- "@typescript-eslint/eslint-plugin": "^8.47.0",
24
- "@typescript-eslint/parser": "^8.47.0",
25
- "eslint": "^9.39.1",
26
- "typescript": "^5.9.3"
27
- }
28
- }
1
+ {
2
+ "name": "@mediaclip/library",
3
+ "version": "14.0.0-cd.26344",
4
+ "description": "",
5
+ "types": "dist/index.d.ts",
6
+ "keywords": [],
7
+ "author": "Mediaclip inc.",
8
+ "license": "GPL-3.0-or-later",
9
+ "files": [
10
+ "README.md",
11
+ "dist/**/*.d.ts"
12
+ ],
13
+ "scripts": {
14
+ "build": "tsc",
15
+ "test": "tsc -p tsconfig-test.json",
16
+ "lint": "eslint \"{src,test}/**/*.ts\" --fix",
17
+ "all": "npm run build && npm run test && npm run lint",
18
+ "prepublish": "tsc"
19
+ },
20
+ "devDependencies": {
21
+ "@eslint/eslintrc": "^3.3.1",
22
+ "@eslint/js": "^9.39.1",
23
+ "@typescript-eslint/eslint-plugin": "^8.47.0",
24
+ "@typescript-eslint/parser": "^8.47.0",
25
+ "eslint": "^9.39.1",
26
+ "typescript": "^5.9.3"
27
+ }
28
+ }
@@ -1,9 +0,0 @@
1
- import { AddVisualElementArgumentBase } from "./AddVisualElementArgumentBase";
2
- export interface AddGridElementArgument extends AddVisualElementArgumentBase {
3
- id?: string;
4
- weekBeginsOn?: "sunday" | "monday";
5
- secondary?: boolean;
6
- year?: number;
7
- month?: number;
8
- culture?: string;
9
- }