@qssolutions/ssas-registration-form 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -10,7 +10,7 @@ Reusable registration form library for SSAS scenarios, with:
10
10
  ## Installation
11
11
 
12
12
  ```bash
13
- npm install @ssas/registration-form
13
+ npm install @qssolutions/ssas-registration-form
14
14
  ```
15
15
 
16
16
  ### Peer dependencies
@@ -23,7 +23,7 @@ npm install react react-dom react-hook-form @fluentui/react react-i18next i18nex
23
23
 
24
24
  ```tsx
25
25
  import React from 'react';
26
- import { SSASRegistrationForm, FormLibraryConfig } from '@ssas/registration-form';
26
+ import { SSASRegistrationForm, FormLibraryConfig } from '@qssolutions/ssas-registration-form';
27
27
 
28
28
  const config: FormLibraryConfig = {
29
29
  partnerName: 'Microsoft',
@@ -54,7 +54,7 @@ export default function App() {
54
54
  Use the browser bundle directly:
55
55
 
56
56
  ```html
57
- <script src="https://unpkg.com/@ssas/registration-form/dist/web-component.min.js"></script>
57
+ <script src="https://unpkg.com/@qssolutions/ssas-registration-form/dist/web-component.min.js"></script>
58
58
  <ssas-registration-form id="registrationForm"></ssas-registration-form>
59
59
  <script>
60
60
  const form = document.getElementById('registrationForm');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qssolutions/ssas-registration-form",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Self-Service Assessment Registration Form Library",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -43,11 +43,8 @@
43
43
  "author": "QSSolutions",
44
44
  "license": "MIT",
45
45
  "peerDependencies": {
46
- "@fluentui/react": "^8.0.0",
47
46
  "react": "^17.0.0 || ^18.0.0",
48
- "react-dom": "^17.0.0 || ^18.0.0",
49
- "react-google-recaptcha": "^3.1.0",
50
- "react-hook-form": "^7.0.0"
47
+ "react-dom": "^17.0.0 || ^18.0.0"
51
48
  },
52
49
  "peerDependenciesMeta": {
53
50
  "@azure/msal-react": {
@@ -56,7 +53,10 @@
56
53
  },
57
54
  "dependencies": {
58
55
  "axios": "^1.6.0",
59
- "lodash": "^4.17.21"
56
+ "@fluentui/react": "^8.0.0",
57
+ "lodash": "^4.17.21",
58
+ "react-google-recaptcha": "^3.1.0",
59
+ "react-hook-form": "^7.0.0"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@rollup/plugin-commonjs": "^25.0.0",