@docuseal/angular 1.0.23 → 1.0.24

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 CHANGED
@@ -1,8 +1,16 @@
1
1
  # DocuSeal Angular Components
2
2
 
3
+ [📙 Documentation](https://www.docuseal.com/docs/embedded/form#angular) | [💻 Examples](https://github.com/docusealco/docuseal-angular-examples) | [🚀 Demo App](https://embed.docuseal.tech/)
4
+
3
5
  This package provides a convenient way to embed [DocuSeal](https://www.docuseal.com) into Angular apps. Sign documents and create document forms directly in your apps.
4
6
 
5
- ![Docuseal Form](https://github.com/docusealco/docuseal-vue/assets/1176367/828f9f53-3131-494c-8e37-5c74fa94cfa8)
7
+ [Embedded Signing Form](#signing-form)
8
+
9
+ ![Signing Form](https://github.com/user-attachments/assets/5c92b842-7687-4341-88a1-64ac26c1e2e0)
10
+
11
+ [Embedded Form Builder](#form-builder)
12
+
13
+ ![Form Builder](https://github.com/user-attachments/assets/7645a4fb-7399-4cce-bb90-e077a8a1ce95)
6
14
 
7
15
  ## Installation
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docuseal/angular",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "DocuSeal Angular components to integrate documents signing process into apps. ✍️",
5
5
  "esm2022": "dist/esm2022/docuseal-angular.mjs",
6
6
  "esm": "dist/esm2022/docuseal-angular.mjs",
package/dist/.npmignore DELETED
@@ -1,2 +0,0 @@
1
- # Nested package.json's are only needed for development.
2
- **/package.json
package/dist/package.json DELETED
@@ -1,47 +0,0 @@
1
- {
2
- "name": "@docuseal/angular",
3
- "version": "1.0.23",
4
- "description": "DocuSeal Angular components to integrate documents signing process into apps. ✍️",
5
- "esm2022": "dist/esm2022/docuseal-angular.mjs",
6
- "esm": "dist/esm2022/docuseal-angular.mjs",
7
- "default": "dist/fesm2022/docuseal-angular.mjs",
8
- "module": "fesm2022/docuseal-angular.mjs",
9
- "types": "dist/index.d.ts",
10
- "author": "DocuSeal <support@docuseal.com>",
11
- "license": "MIT",
12
- "homepage": "https://www.docuseal.com/docs/embedded",
13
- "bugs": {
14
- "url": "https://github.com/docusealco/docuseal-angular/issues"
15
- },
16
- "repository": "https://github.com/docusealco/docuseal-angular",
17
- "peerDependencies": {
18
- "@angular/core": ">=16.0.0",
19
- "@angular/common": ">=16.0.0"
20
- },
21
- "keywords": [
22
- "angular",
23
- "angular-component",
24
- "esignature",
25
- "documents"
26
- ],
27
- "files": [
28
- "dist"
29
- ],
30
- "typings": "index.d.ts",
31
- "exports": {
32
- "./package.json": {
33
- "default": "./package.json"
34
- },
35
- ".": {
36
- "types": "./index.d.ts",
37
- "default": "./fesm2022/docuseal-angular.mjs"
38
- }
39
- },
40
- "sideEffects": false,
41
- "dependencies": {
42
- "tslib": "^2.3.0"
43
- },
44
- "scripts": {
45
- "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by Ivy in full compilation mode. This is not allowed.\\nPlease delete and rebuild the package with Ivy partial compilation mode, before attempting to publish.\\n')\" && exit 1"
46
- }
47
- }