@baseline-ui/translations 0.5.0 → 0.5.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/License.md ADDED
@@ -0,0 +1,5 @@
1
+ ## PSPDFKit for Web License Agreement
2
+
3
+ Please refer to our website to read our evaluation license terms and conditions for PSPDFKit for Web:
4
+
5
+ https://pspdfkit.com/legal/License.pdf
package/dist/index.js CHANGED
@@ -1,3 +1,12 @@
1
+ /**
2
+ * Copyright (c) 2023-2024 PSPDFKit GmbH. All rights reserved.
3
+ *
4
+ * THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
5
+ * AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE PSPDFKIT LICENSE AGREEMENT.
6
+ * UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
7
+ * This notice may not be removed from this file.
8
+ *
9
+ */
1
10
  "use strict";
2
11
  var __defProp = Object.defineProperty;
3
12
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
package/dist/index.mjs CHANGED
@@ -1,3 +1,13 @@
1
+ /**
2
+ * Copyright (c) 2023-2024 PSPDFKit GmbH. All rights reserved.
3
+ *
4
+ * THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
5
+ * AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE PSPDFKIT LICENSE AGREEMENT.
6
+ * UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
7
+ * This notice may not be removed from this file.
8
+ *
9
+ */
10
+
1
11
  // src/index.ts
2
12
  import { cleanKeyFromGlobImport } from "@baseline-ui/utils";
3
13
 
package/package.json CHANGED
@@ -1,21 +1,22 @@
1
1
  {
2
2
  "name": "@baseline-ui/translations",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",
8
8
  "style": "dist/index.css",
9
9
  "files": [
10
- "dist"
10
+ "dist",
11
+ "License.md"
11
12
  ],
12
13
  "source": "./src/index.ts",
13
14
  "dependencies": {
14
- "@baseline-ui/utils": "0.5.0"
15
+ "@baseline-ui/utils": "0.5.1"
15
16
  },
16
17
  "keywords": [],
17
18
  "author": "",
18
- "license": "MIT",
19
+ "license": "SEE LICENSE IN https://pspdfkit.com/legal/License.pdf",
19
20
  "scripts": {
20
21
  "build": "tsup src/index.ts --format cjs,esm --dts"
21
22
  }