Skip to content

Commit c3251ea

Browse files
authored
Fix: QA issues (#1160)
* Fix domain count in both IP Protection and Script Blocking * Fix misc issues * Add fallback for interval setting; * Fix unique response domains reset. * Fix domain count * Fix undefined error * Fix multitab bug. * Fix multi-tab issue * Update correct version * Fix text in row context menu.
1 parent b2e54a6 commit c3251ea

File tree

26 files changed

+198
-125
lines changed

26 files changed

+198
-125
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ps-analysis-tool",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "Cookie Analysis Tool and CLI for analysis and understanding of cookie usage on web pages.",
55
"scripts": {
66
"build-storybook": "storybook build",

packages/analysis-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-psat/analysis-utils",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "A package for CLI analysis",
55
"main": "dist/index.js",
66
"types": "dist-types/index.d.ts",

packages/cli-dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-psat/cli-dashboard",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "Dashboard for visualizing cli analysis output",
55
"author": {
66
"name": "Google"

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-psat/cli",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "CLI tool for analysis",
55
"main": "dist/index.js",
66
"types": "dist-types/index.d.ts",

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-psat/common",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "A package for common utilities that are being used in multiple packages",
55
"type": "module",
66
"main": "dist/index.js",

packages/design-system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-psat/design-system",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "A package for presentational components that are being used in multiple packages",
55
"type": "module",
66
"main": "dist/index.js",

packages/design-system/src/components/matrix/index.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ const Matrix = ({ dataComponents, expand, extraClasses }: MatrixProps) => {
5757
>
5858
<button
5959
onClick={() => dataComponent.onClick?.(dataComponent.title)}
60+
style={{
61+
cursor: !dataComponent.onClick ? 'default' : 'pointer',
62+
}}
6063
className={classnames('p-3.5 w-full box-border', {
6164
'hover:opacity-90 active:opacity-50 hover:scale-[0.98] hover:bg-[#f5f5f5] dark:hover:bg-[#1d1d1d] hover:shadow-[inset_0_0_10px_5px_rgba(238,238,238,0.5)] dark:hover:shadow-[inset_0_0_10px_5px_rgba(32,32,32,0.1)] rounded-md transition-all duration-75 ease-in-out cursor-pointer':
6265
dataComponent.onClick,

packages/ee-workflow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-psat/ee-workflow",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "A workflow for creating explorable explanations in canvas",
55
"type": "module",
66
"main": "dist/index.js",

packages/eslint-import-resolver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-psat/eslint-import-resolver",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "",
55
"main": "src/index.cjs",
66
"scripts": {

packages/explorable-explanations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-psat/explorable-explanations",
3-
"version": "1.1.2",
3+
"version": "1.2.0",
44
"description": "Explorable explanations for PSAT extension",
55
"main": "dist/index.js",
66
"customExports": {

0 commit comments

Comments
 (0)