@brightcove/components-embed-code-modal 1.1.0 → 1.1.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/CHANGELOG.md CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.1.1] - 2026-07-28
11
+ ### Fixed
12
+ - Point the root `types` at `./build/src/index.d.ts`, so consumers get declarations again. `publish-dir` moved from `build` to `.` in 1.0.8, which made the root `package.json` the published manifest; `main` was already root-relative but `types` still assumed `build/` was the package root, so 1.0.8 and 1.1.0 shipped a `types` path that does not exist and consumers hit `TS7016`
13
+ - `create-dist-pkg-prod` now sets `types` explicitly, keeping the generated `build/package.json` valid for a `build`-rooted layout as well
14
+
10
15
  ## [1.1.0] - 2026-07-28
11
16
  ### Added
12
17
  - Prism Live embed modal: `Copy URL` is now a dropdown offering `Short URL` and `Full URL`, restoring the shortened playback URL that Blue Steel produced and matching the Media module
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightcove/components-embed-code-modal",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://bithub.brightcove.com/studio-ui-kit/studio-components-embed-code-modal.git"
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@brightcove/components-embed-code-modal",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://bithub.brightcove.com/studio-ui-kit/studio-components-embed-code-modal.git"
7
7
  },
8
8
  "description": "Embed Code Modal used for publishing videos",
9
9
  "main": "build/index.js",
10
- "types": "./src/index.d.ts",
10
+ "types": "./build/src/index.d.ts",
11
11
  "author": "Campaign Team",
12
12
  "scripts": {
13
13
  "demo": "NODE_ENV=development DEMO=1 webpack-dev-server --progress --color",
@@ -7,6 +7,7 @@ const BUILD_DIR = path.resolve(__dirname, '..', 'build');
7
7
  pkg.name = '@brightcove/components-embed-code-modal'
8
8
  pkg.main = './index.js';
9
9
  pkg.module = './index.js';
10
+ pkg.types = './src/index.d.ts';
10
11
 
11
12
  delete pkg.scripts.prepare;
12
13
  delete pkg.scripts['lint:staged'];