Skip to content

Commit

Permalink
Merge branch 'main' into DT-1396-Remove-Parent-Workflow-ID-from-table…
Browse files Browse the repository at this point in the history
…-column-list
  • Loading branch information
laurakwhit committed Sep 1, 2023
2 parents 03fb5c1 + 9f27c3c commit 92e5646
Show file tree
Hide file tree
Showing 92 changed files with 3,681 additions and 1,507 deletions.
3 changes: 2 additions & 1 deletion .lintstagedrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"*.{ts,js}": ["pnpm lint:fix", "prettier --write"],
"*.{css,postcss,svelte}": "stylelint --fix",
"*.{css,postcss}": ["stylelint --fix"],
"*.svelte": ["stylelint --fix", "pnpm lint:fix"],
"*.{json,md}": "prettier --write"
}
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,9 @@
},
"editor.formatOnSave": true,
"css.customData": [".vscode/css-custom-data.json"],
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"tailwindCSS.experimental.classRegex": [
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
]
}
6 changes: 3 additions & 3 deletions colors.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const colors = {
},
indigo: {
50: '#eef2ff',
100: '#e0e7ff',
100: '#E0EAFF',
200: '#c7d2fe',
300: '#a5b4fc',
400: '#818cf8',
Expand All @@ -38,7 +38,7 @@ const colors = {
300: '#d4d4d8',
400: '#a1a1aa',
500: '#71717a',
600: '#52525b',
600: '#4B5563',
700: '#3f3f46',
800: '#27272a',
900: '#18181b',
Expand Down Expand Up @@ -94,7 +94,7 @@ const colors = {
red: {
50: '#fef2f2',
100: '#fee2e2',
200: '#fecaca',
200: '#FFCFCF',
300: '#fca5a5',
400: '#f87171',
500: '#ef4444',
Expand Down
54 changes: 0 additions & 54 deletions cypress/integration/banner.spec.js

This file was deleted.

4 changes: 2 additions & 2 deletions cypress/integration/schedules.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe('Schedules View', () => {
cy.get('.schedule-row').first().contains(scheduleId);
cy.get('.schedule-row').first().contains(name);

cy.get('.schedule-row').first().click();
cy.get('.schedule-row a').first().click();

cy.wait('@schedule-api');

Expand All @@ -63,7 +63,7 @@ describe('Schedules Edit', () => {
cy.get('.schedule-row').first().contains(scheduleId);
cy.get('.schedule-row').first().contains(name);

cy.get('.schedule-row').first().click();
cy.get('.schedule-row a').first().click();

cy.wait('@schedule-api');

Expand Down
2 changes: 1 addition & 1 deletion cypress/integration/workflow-executions.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ describe('Workflow Executions List', () => {
encodeURIComponent(`ExecutionStatus="Running"`),
);

cy.get('.workflow-summary-row > .time-cell').first().click();
cy.get('.workflow-summary-row a').first().click();

cy.wait('@workflow-api');
cy.wait('@event-history-api');
Expand Down
35 changes: 25 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
"story:preview": "histoire preview",
"generate:locales": "esno scripts/generate-locales.ts",
"workflows": "esno scripts/workflows.ts",
"audit:tailwind": "esno scripts/audit-tailwind-colors"
"audit:tailwind": "esno scripts/audit-tailwind-colors",
"audit:holocene-props": "esno scripts/generate-holocene-props.ts"
},
"dependencies": {
"@codemirror/autocomplete": "^6.4.0",
Expand All @@ -84,6 +85,7 @@
"@lezer/highlight": "^1.1.3",
"@sveltejs/package": "^2.0.2",
"@sveltejs/svelte-virtual-list": "^3.0.1",
"class-variance-authority": "^0.7.0",
"date-fns": "^2.29.3",
"date-fns-tz": "^1.3.7",
"esm-env": "^1.0.0",
Expand All @@ -92,7 +94,9 @@
"json-beautify": "^1.1.1",
"json-bigint": "^1.0.0",
"just-debounce": "^1.1.0",
"remark-stringify": "^10.0.3",
"sanitize-html": "^2.8.1",
"tailwind-merge": "^1.14.0",
"url-pattern": "^1.0.3",
"uuid": "^9.0.0",
"vis-timeline": "^7.7.2",
Expand All @@ -111,13 +115,13 @@
"@sveltejs/adapter-vercel": "^1.0.5",
"@sveltejs/kit": "1.15.4",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@temporalio/activity": "^1.7.4",
"@temporalio/client": "^1.7.4",
"@temporalio/common": "^1.7.4",
"@temporalio/proto": "^1.8.1",
"@temporalio/testing": "^1.6.0",
"@temporalio/worker": "^1.7.4",
"@temporalio/workflow": "^1.7.4",
"@temporalio/activity": "^1.8.4",
"@temporalio/client": "^1.8.4",
"@temporalio/common": "^1.8.4",
"@temporalio/proto": "^1.8.4",
"@temporalio/testing": "^1.8.4",
"@temporalio/worker": "^1.8.4",
"@temporalio/workflow": "^1.8.4",
"@types/base-64": "^1.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
Expand All @@ -126,10 +130,11 @@
"@types/node": "^16.18.11",
"@types/sanitize-html": "^2.8.0",
"@types/tar-fs": "^2.0.1",
"@types/unist": "^3.0.0",
"@types/uuid": "^9.0.0",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitest/ui": "^0.32.2",
"autoprefixer": "^10.4.13",
"c8": "^7.12.0",
Expand Down Expand Up @@ -167,6 +172,14 @@
"postcss-load-config": "^3.1.4",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.2",
"rehype-document": "^6.1.0",
"rehype-format": "^4.0.1",
"rehype-stringify": "^9.0.4",
"remark": "^14.0.3",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"remark-toc": "^8.0.1",
"rimraf": "^4.3.1",
"stylelint": "^15.10.3",
"stylelint-config-recommended": "^13.0.0",
Expand All @@ -182,7 +195,9 @@
"ts-node": "^10.9.1",
"ts-proto": "^1.82.5",
"tslib": "^2.3.1",
"typescript": "^4.9.5",
"unified": "^11.0.2",
"unist-util-visit": "^5.0.0",
"typescript": "^5.2.2",
"vite": "^4.0.4",
"vite-node": "^0.23.4",
"vitest": "^0.32.2",
Expand Down
4 changes: 4 additions & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ export default defineConfig({
['html'],
['json', { outputFile: 'playwright-report/test-results.json' }],
[process.env.CI ? 'list' : 'github'],
[
'./tests/test-utilities/accessibility-reporter',
{ outputFile: 'playwright-report/accessibility-violations.json' },
],
],
use: {
actionTimeout: 0,
Expand Down
Loading

0 comments on commit 92e5646

Please sign in to comment.