Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/dswp 54 card with hyperlink pattern #36

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.4.0 December 5, 2024

- Added card-with-hyperlink-list pattern


## 1.3.0 October 15, 2024

- Integrate reusable unit tests from WordPress utils ([DESCW-2664](https://apps.itsm.gov.bc.ca/jira/browse/DESCW-2664))
Expand Down
2 changes: 2 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Assign the team as code owners for all files
* @bcgov/digital-engagement-solutions-custom-web
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bcgov-theme/design-system-wordpress-theme",
"description": "Design System WordPress Theme",
"version": "1.3.0",
"version": "1.4.0",
"type": "wordpress-theme",
"license": "Apache-2.0",
"repositories": [
Expand All @@ -11,7 +11,7 @@
}
],
"require-dev": {
"bcgov/wordpress-utils": "2.3.0",
"bcgov/wordpress-utils": "2.4.0",
"yoast/phpunit-polyfills": "^1.0"
},
"autoload": {
Expand Down
66 changes: 33 additions & 33 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions dist/index-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,12 @@
--dswp-typography-color-link: var(--bcds-typography-color-link);
--dswp-typography-color-primary: var(--bcds-typography-color-primary);
--dswp-surface-color-primary-button-default: var(--bcds-surface-color-primary-button-default);
--dswp-surface-color-primary-button-hover: var(--bcds-surface-color-primary-button-hover);
--dswp-surface-color-secondary-button-default:var(--bcds-surface-color-secondary-button-default);
--dswp-surface-color-secondary-button-hover: var(--bcds-surface-color-secondary-button-hover);
--dswp-banner-background-dark: #292929;
--dswp-surface-color-border-dark:var(--bcds-surface-color-border-dark);
--dswp-font-dark: #201f1e;
--dswp-theme-primary-gold: var(--bcds-theme-primary-gold);
--dswp-icons-color-info: var(--bcds-icons-color-info);
--dswp-icons-color-danger: var(--bcds-icons-color-danger);
Expand Down
2 changes: 1 addition & 1 deletion dist/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array(), 'version' => 'e81cc111a7eb25b07ef8');
<?php return array('dependencies' => array(), 'version' => '54a72f307dce81e3a752');
5 changes: 5 additions & 0 deletions dist/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.css.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ function design_system_include_block_style_variations( $dir_path ) {
}

// Set the directory path and include block style variations.
$dir_path = get_template_directory() . '/blocks/core/style-overrides';
$dir_path = get_template_directory() . '/blocks/core/style-variations';
design_system_include_block_style_variations( $dir_path );
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "design-system-wordpress-theme",
"version": "1.3.0",
"version": "1.4.0",
"description": "Design System WordPress Theme",
"author": "[email protected]",
"license": "GPL-2.0-or-later",
Expand Down
Loading
Loading