@times-design-system/components-wordpress 1.2.2-alpha.8 → 1.4.0

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +11 -11
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.4.0](https://github.com/newsuk/times-design-system/compare/@times-design-system/components-wordpress@1.3.0...@times-design-system/components-wordpress@1.4.0) (2026-06-15)
7
+
8
+ ### Features
9
+
10
+ - **TDS-90:** update storybook documentation ([#83](https://github.com/newsuk/times-design-system/issues/83)) ([6a50d92](https://github.com/newsuk/times-design-system/commit/6a50d92e3e07a7e772f584f33aa11fd7379cee69))
11
+
12
+ # [1.3.0](https://github.com/newsuk/times-design-system/compare/@times-design-system/components-wordpress@1.2.1...@times-design-system/components-wordpress@1.3.0) (2026-06-03)
13
+
14
+ ### Features
15
+
16
+ - **TDS-82:** update blocks namespace ([#74](https://github.com/newsuk/times-design-system/issues/74)) ([e1086c3](https://github.com/newsuk/times-design-system/commit/e1086c38c9ab8c093c4719c37a4f70c943349abf))
17
+
6
18
  ## [1.2.1](https://github.com/newsuk/times-design-system/compare/@times-design-system/components-wordpress@1.2.0...@times-design-system/components-wordpress@1.2.1) (2026-05-27)
7
19
 
8
20
  **Note:** Version bump only for package @times-design-system/components-wordpress
package/README.md CHANGED
@@ -35,7 +35,7 @@ This package transforms `@times-design-system/components-react` components into
35
35
 
36
36
  ```bash
37
37
  cd packages/components-wordpress
38
- npm install
38
+ yarn add
39
39
  npm run build
40
40
  ```
41
41
 
@@ -68,8 +68,8 @@ This package transforms `@times-design-system/components-react` components into
68
68
  #### Installation
69
69
 
70
70
  ```bash
71
- npm install @times-design-system/components-wordpress
72
- npm install @times-design-system/theme-scss
71
+ yarn add @times-design-system/components-wordpress
72
+ yarn add @times-design-system/theme-scss
73
73
  ```
74
74
 
75
75
  #### Setup in Your Build Pipeline
@@ -418,7 +418,7 @@ jobs:
418
418
  steps:
419
419
  - uses: actions/checkout@v2
420
420
  - uses: actions/setup-node@v2
421
- - run: cd packages/components-wordpress && npm install && npm run build
421
+ - run: cd packages/components-wordpress && yarn add && npm run build
422
422
  - uses: appleboy/scp-action@master
423
423
  with:
424
424
  host: ${{ secrets.HOST }}
@@ -916,13 +916,13 @@ npm run build && npm run build:plugin # Build for plugin distrib
916
916
 
917
917
  ## Troubleshooting Quick Fix Guide
918
918
 
919
- | Issue | Cause | Solution |
920
- | -------------------- | ------------------------ | --------------------------------------------- |
921
- | Blocks not appearing | Plugin not active | Activate in WP Admin → Plugins |
922
- | Blocks not appearing | Old WP version | Update to 6.0+ |
923
- | Styles broken | theme-scss not installed | `npm install @times-design-system/theme-scss` |
924
- | JavaScript errors | Cache issues | Clear browser + WP caches |
925
- | Block won't save | Attribute mismatch | Check block.json attribute names |
919
+ | Issue | Cause | Solution |
920
+ | -------------------- | ------------------------ | ------------------------------------------ |
921
+ | Blocks not appearing | Plugin not active | Activate in WP Admin → Plugins |
922
+ | Blocks not appearing | Old WP version | Update to 6.0+ |
923
+ | Styles broken | theme-scss not installed | `yarn add @times-design-system/theme-scss` |
924
+ | JavaScript errors | Cache issues | Clear browser + WP caches |
925
+ | Block won't save | Attribute mismatch | Check block.json attribute names |
926
926
 
927
927
  ## Support & Community
928
928
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@times-design-system/components-wordpress",
3
- "version": "1.2.2-alpha.8+5434ed3e",
3
+ "version": "1.4.0",
4
4
  "type": "module",
5
5
  "description": "Times Design System Gutenberg blocks for WordPress Full Site Editing",
6
6
  "keywords": [
@@ -38,7 +38,7 @@
38
38
  "clean": "rimraf dist",
39
39
  "dev": "rollup -c --watch",
40
40
  "prepublishOnly": "npm run build",
41
- "test": "node ./__tests__/*.test.js"
41
+ "_test": "node ./__tests__/*.test.js"
42
42
  },
43
43
  "bugs": {
44
44
  "url": "https://github.com/newsuk/times-design-system/issues"
@@ -48,7 +48,7 @@
48
48
  "access": "public"
49
49
  },
50
50
  "dependencies": {
51
- "@times-design-system/theme-scss": "^2.0.2-alpha.8+5434ed3e",
51
+ "@times-design-system/theme-scss": "^2.2.0",
52
52
  "@wordpress/block-editor": "^12.0.0",
53
53
  "@wordpress/blocks": "^12.0.0",
54
54
  "@wordpress/components": "^25.0.0",
@@ -71,5 +71,5 @@
71
71
  "rollup-plugin-postcss": "^4.0.2",
72
72
  "typescript": "^5.0.0"
73
73
  },
74
- "gitHead": "5434ed3edc1675f3b1f46ca34f66ab1a115109a8"
74
+ "gitHead": "4e9bd2bc67b0dc34eb38eac29cebe11c6bcdb25b"
75
75
  }