Skip to content

Commit ba38538

Browse files
authored
Merge pull request #2 from docusign/feature/5555-home-screen-snall-fixes
Feature/ use case 1
2 parents 472e4f8 + cd0b9d1 commit ba38538

75 files changed

Lines changed: 5672 additions & 2932 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Ignore artifacts:
2+
build
3+
coverage
4+
dist
5+
6+
# Ignore dependencies:
7+
node_modules
8+
9+
# Ignore generated files:
10+
package-lock.json
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"semi": true,
3+
"tabWidth": 2,
4+
"printWidth": 100,
5+
"singleQuote": true,
6+
"trailingComma": "es5",
7+
"jsxBracketSameLine": false
8+
}

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/package-lock.json

Lines changed: 1554 additions & 2089 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/package.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,28 @@
77
"@testing-library/jest-dom": "^6.9.1",
88
"@testing-library/react": "^16.3.0",
99
"@testing-library/user-event": "^13.5.0",
10+
"ajv": "^8.17.1",
11+
"axios": "^1.13.2",
12+
"bootstrap": "^5.3.3",
13+
"html-react-parser": "^5.2.10",
14+
"i18next": "^25.6.3",
15+
"i18next-browser-languagedetector": "^8.2.0",
1016
"react": "^19.2.0",
17+
"react-bootstrap": "^2.10.10",
1118
"react-dom": "^19.2.0",
19+
"react-i18next": "^16.3.5",
20+
"react-router-dom": "^7.9.6",
1221
"react-scripts": "5.0.1",
22+
"sass": "^1.94.2",
1323
"web-vitals": "^2.1.4"
1424
},
1525
"scripts": {
1626
"start": "react-scripts start",
1727
"build": "react-scripts build",
1828
"test": "react-scripts test",
19-
"eject": "react-scripts eject"
29+
"eject": "react-scripts eject",
30+
"format": "prettier --write .",
31+
"format:check": "prettier --check ."
2032
},
2133
"eslintConfig": {
2234
"extends": [
@@ -35,5 +47,8 @@
3547
"last 1 firefox version",
3648
"last 1 safari version"
3749
]
50+
},
51+
"devDependencies": {
52+
"prettier": "^3.6.2"
3853
}
3954
}
623 Bytes
Loading

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/public/index.html

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
5-
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
5+
<link rel="icon" href="%PUBLIC_URL%/favicon.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<meta name="theme-color" content="#000000" />
8-
<meta
9-
name="description"
10-
content="Web site created using create-react-app"
11-
/>
8+
<meta name="description" content="Web site created using create-react-app" />
129
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
1310
<!--
1411
manifest.json provides metadata used when your web app is installed on a
@@ -20,7 +17,7 @@
2017
It will be replaced with the URL of the `public` folder during the build.
2118
Only files inside the `public` folder can be referenced from the HTML.
2219
23-
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
20+
Unlike "/favicon.png" or "favicon.png", "%PUBLIC_URL%/favicon.png" will
2421
work correctly both with client-side routing and a non-root public URL.
2522
Learn how to configure a non-root public URL by running `npm run build`.
2623
-->

DocuSign.Workspaces/DocuSign.Workspaces/ClientApp/public/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "Create React App Sample",
44
"icons": [
55
{
6-
"src": "favicon.ico",
6+
"src": "favicon.png",
77
"sizes": "64x64 32x32 24x24 16x16",
88
"type": "image/x-icon"
99
},

0 commit comments

Comments
 (0)