@lub-crm/forms 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.
- package/README.md +7 -7
- package/dist/index.html +119 -0
- package/dist/lub-forms.es.js +1927 -3082
- package/dist/lub-forms.es.js.map +1 -1
- package/dist/lub-forms.standalone.js.map +1 -1
- package/dist/lub-forms.umd.js +99 -99
- package/dist/lub-forms.umd.js.map +1 -1
- package/dist/vite.svg +1 -0
- package/package.json +10 -8
- package/src/embed.ts +4 -4
- package/src/main.tsx +1 -1
package/dist/vite.svg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lub-crm/forms",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Embeddable form library for Lub CRM",
|
|
6
6
|
"main": "./dist/lub-forms.umd.js",
|
|
7
7
|
"module": "./dist/lub-forms.es.js",
|
|
8
|
-
"types": "./src/index.ts",
|
|
9
8
|
"exports": {
|
|
10
9
|
".": {
|
|
11
|
-
"types": "./src/index.ts",
|
|
12
10
|
"import": "./dist/lub-forms.es.js",
|
|
13
11
|
"require": "./dist/lub-forms.umd.js"
|
|
14
12
|
},
|
|
15
|
-
"./styles":
|
|
13
|
+
"./styles": {
|
|
14
|
+
"import": "./src/styles/index.css",
|
|
15
|
+
"default": "./dist/lub-forms.css"
|
|
16
|
+
}
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"dist",
|
|
@@ -23,8 +24,9 @@
|
|
|
23
24
|
],
|
|
24
25
|
"scripts": {
|
|
25
26
|
"dev": "vite",
|
|
26
|
-
"build": "bun run build:lib && bun run build:umd && bun run build:standalone && bun run build:clean",
|
|
27
|
+
"build": "bun run build:lib && bun run build:umd && bun run build:standalone && bun run build:clean && bun run build:copy-public",
|
|
27
28
|
"build:clean": "rm -f dist/forms.css dist/vite.svg",
|
|
29
|
+
"build:copy-public": "cp -r public/* dist/",
|
|
28
30
|
"build:lib": "vite build --config vite.lib.config.ts",
|
|
29
31
|
"build:umd": "vite build --config vite.umd.config.ts",
|
|
30
32
|
"build:standalone": "vite build --config vite.standalone.config.ts",
|
|
@@ -33,13 +35,13 @@
|
|
|
33
35
|
"typecheck": "tsc --noEmit"
|
|
34
36
|
},
|
|
35
37
|
"dependencies": {
|
|
36
|
-
"@hookform/resolvers": "^3.9.0",
|
|
37
|
-
"react-hook-form": "^7.53.0",
|
|
38
38
|
"zod": "^3.23.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"react": "^18.0.0 || ^19.0.0",
|
|
42
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
42
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
43
|
+
"react-hook-form": "^7.0.0",
|
|
44
|
+
"@hookform/resolvers": "^3.0.0"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
45
47
|
"@eslint/js": "^9.39.1",
|
package/src/embed.ts
CHANGED
|
@@ -4,14 +4,14 @@
|
|
|
4
4
|
* Usage:
|
|
5
5
|
*
|
|
6
6
|
* <!-- Auto-mount via data attributes -->
|
|
7
|
-
* <script src="https://forms.lub.
|
|
8
|
-
* <link rel="stylesheet" href="https://forms.lub.
|
|
9
|
-
* <div data-lub-form-id="abc123" data-lub-base-url="https://api.lub.
|
|
7
|
+
* <script src="https://forms.lub.marketing/lub-forms.standalone.js"></script>
|
|
8
|
+
* <link rel="stylesheet" href="https://forms.lub.marketing/lub-forms.css">
|
|
9
|
+
* <div data-lub-form-id="abc123" data-lub-base-url="https://api.lub.marketing"></div>
|
|
10
10
|
*
|
|
11
11
|
* <!-- Manual render -->
|
|
12
12
|
* <script>
|
|
13
13
|
* LubForms.render('abc123', 'container-id', {
|
|
14
|
-
* baseUrl: 'https://api.lub.
|
|
14
|
+
* baseUrl: 'https://api.lub.marketing',
|
|
15
15
|
* onSuccess: (data) => console.log('Success!', data),
|
|
16
16
|
* onError: (err) => console.error('Error:', err),
|
|
17
17
|
* });
|
package/src/main.tsx
CHANGED
|
@@ -10,7 +10,7 @@ import "./styles/index.css";
|
|
|
10
10
|
|
|
11
11
|
// Mock API response for development
|
|
12
12
|
const MOCK_FORM_ID = "demo-123";
|
|
13
|
-
const MOCK_BASE_URL = "
|
|
13
|
+
const MOCK_BASE_URL = "https://api.lub.marketing";
|
|
14
14
|
|
|
15
15
|
function App() {
|
|
16
16
|
return (
|