@australiangreens/ag-internal-components 0.0.77 → 0.0.78-experiment1
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.
- package/dist/.gitignore +0 -0
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/components/AuthGuard/AuthGuard.comp.test.d.ts +2 -0
- package/dist/components/AuthGuard/AuthGuard.comp.test.d.ts.map +1 -0
- package/dist/components/AuthGuard/AuthGuard.d.ts +16 -0
- package/dist/components/AuthGuard/AuthGuard.d.ts.map +1 -0
- package/dist/components/AuthGuard/auth0ErrorParsing.d.ts +26 -0
- package/dist/components/AuthGuard/auth0ErrorParsing.d.ts.map +1 -0
- package/dist/components/AuthGuard/index.d.ts +3 -0
- package/dist/components/AuthGuard/index.d.ts.map +1 -0
- package/dist/components/index.d.ts +7 -7
- package/dist/components/index.d.ts.map +1 -1
- package/dist/esm/index.js +593 -610
- package/dist/esm/index.js.map +1 -1
- package/package.json +28 -23
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@australiangreens/ag-internal-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.78-experiment1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/australiangreens/ag-internal-components#readme",
|
|
7
7
|
"license": "MIT",
|
|
@@ -10,25 +10,6 @@
|
|
|
10
10
|
"contributors": [
|
|
11
11
|
"Anthony Blond <anthony@unfinishedteleporter.com>"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"dev": "vite",
|
|
15
|
-
"build": "vite build && sh ./scripts/post-build.sh",
|
|
16
|
-
"preview": "vite preview",
|
|
17
|
-
"eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
|
|
18
|
-
"test": "vitest run",
|
|
19
|
-
"test:coverage": "vitest run --coverage",
|
|
20
|
-
"test:watch": "vitest",
|
|
21
|
-
"### LIFECYCLE SCRIPTS ###": "",
|
|
22
|
-
"prepare": "husky install",
|
|
23
|
-
"prepublishOnly": "pnpm eslint && pnpm test && pnpm build",
|
|
24
|
-
"### HUSKY GIT HOOKS ###": "Called by husky pre-commit and pre-push scripts",
|
|
25
|
-
"prepush": "sh ./scripts/githooks/pre-push.sh",
|
|
26
|
-
"precommit": "sh ./scripts/githooks/pre-commit.sh",
|
|
27
|
-
"commitmsg": "sh ./scripts/githooks/commit-msg.sh",
|
|
28
|
-
"storybook": "storybook dev -p 6006",
|
|
29
|
-
"storybook:no": "storybook dev -p 6006 --no-open",
|
|
30
|
-
"build-storybook": "storybook build"
|
|
31
|
-
},
|
|
32
13
|
"files": [
|
|
33
14
|
"dist/*"
|
|
34
15
|
],
|
|
@@ -48,8 +29,6 @@
|
|
|
48
29
|
"dependencies": {
|
|
49
30
|
"@australiangreens/ag-error": "^0.1.7",
|
|
50
31
|
"@australiangreens/ag-error-jest": "^0.1.9",
|
|
51
|
-
"@auth0/auth0-react": "^2.2.1",
|
|
52
|
-
"@auth0/auth0-spa-js": "^2.1.2",
|
|
53
32
|
"@tanstack/react-query": "^4.35.3",
|
|
54
33
|
"@types/react-transition-group": "^4.4.6",
|
|
55
34
|
"autosuggest-highlight": "^3.3.4",
|
|
@@ -59,6 +38,7 @@
|
|
|
59
38
|
"souvlaki": "^0.3.0"
|
|
60
39
|
},
|
|
61
40
|
"peerDependencies": {
|
|
41
|
+
"@auth0/auth0-react": "^2.2.1",
|
|
62
42
|
"@emotion/react": "11.11.1",
|
|
63
43
|
"@emotion/styled": "11.11.0",
|
|
64
44
|
"@mui/icons-material": "^5.14.8",
|
|
@@ -67,7 +47,14 @@
|
|
|
67
47
|
"react": "^18.2.0",
|
|
68
48
|
"react-dom": "^18.2.0"
|
|
69
49
|
},
|
|
50
|
+
"peerDependenciesMeta": {
|
|
51
|
+
"@auth0/auth0-react": {
|
|
52
|
+
"optional": true
|
|
53
|
+
}
|
|
54
|
+
},
|
|
70
55
|
"devDependencies": {
|
|
56
|
+
"@auth0/auth0-react": "^2.2.1",
|
|
57
|
+
"@auth0/auth0-spa-js": "^2.1.2",
|
|
71
58
|
"@emotion/react": "^11.11.1",
|
|
72
59
|
"@emotion/styled": "^11.11.0",
|
|
73
60
|
"@mui/icons-material": "^5.14.8",
|
|
@@ -107,6 +94,7 @@
|
|
|
107
94
|
"eslint-plugin-tsdoc": "^0.2.17",
|
|
108
95
|
"happy-dom": "^12.0.1",
|
|
109
96
|
"husky": "^8.0.3",
|
|
97
|
+
"jest-extended": "^4.0.1",
|
|
110
98
|
"lint-staged": "^13.2.2",
|
|
111
99
|
"prettier": "^2.8.8",
|
|
112
100
|
"react": "^18.2.0",
|
|
@@ -137,5 +125,22 @@
|
|
|
137
125
|
},
|
|
138
126
|
"engines": {
|
|
139
127
|
"node": ">=16.14.0"
|
|
128
|
+
},
|
|
129
|
+
"scripts": {
|
|
130
|
+
"dev": "vite",
|
|
131
|
+
"build": "vite build && sh ./scripts/post-build.sh",
|
|
132
|
+
"preview": "vite preview",
|
|
133
|
+
"eslint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
|
|
134
|
+
"test": "vitest run",
|
|
135
|
+
"test:coverage": "vitest run --coverage",
|
|
136
|
+
"test:watch": "vitest",
|
|
137
|
+
"### LIFECYCLE SCRIPTS ###": "",
|
|
138
|
+
"### HUSKY GIT HOOKS ###": "Called by husky pre-commit and pre-push scripts",
|
|
139
|
+
"prepush": "sh ./scripts/githooks/pre-push.sh",
|
|
140
|
+
"precommit": "sh ./scripts/githooks/pre-commit.sh",
|
|
141
|
+
"commitmsg": "sh ./scripts/githooks/commit-msg.sh",
|
|
142
|
+
"storybook": "storybook dev -p 6006",
|
|
143
|
+
"storybook:no": "storybook dev -p 6006 --no-open",
|
|
144
|
+
"build-storybook": "storybook build"
|
|
140
145
|
}
|
|
141
|
-
}
|
|
146
|
+
}
|