@superdoc-dev/esign 1.4.0-next.2 → 1.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdoc-dev/esign",
3
- "version": "1.4.0-next.2",
3
+ "version": "1.4.2",
4
4
  "description": "React eSignature component for SuperDoc",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -41,6 +41,7 @@
41
41
  "superdoc",
42
42
  "esign",
43
43
  "esignature",
44
+ "electronic-signature",
44
45
  "clickwrap",
45
46
  "agreement",
46
47
  "document",
package/src/styles.css CHANGED
@@ -49,29 +49,3 @@
49
49
  display: flex;
50
50
  gap: 10px;
51
51
  }
52
-
53
- /* Button loading state */
54
- .superdoc-esign-btn--loading {
55
- position: relative;
56
- }
57
-
58
- /* Spinner */
59
- .superdoc-esign-spinner {
60
- width: 16px;
61
- height: 16px;
62
- border: 2px solid #d0d5dd;
63
- border-top-color: #333;
64
- border-radius: 50%;
65
- animation: superdoc-esign-spin 0.8s linear infinite;
66
- }
67
-
68
- .superdoc-esign-spinner--light {
69
- border-color: rgba(255, 255, 255, 0.3);
70
- border-top-color: #fff;
71
- }
72
-
73
- @keyframes superdoc-esign-spin {
74
- to {
75
- transform: rotate(360deg);
76
- }
77
- }