groupdocs_signature_cloud 24.11 → 24.12
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4a2fd2af003dad352c93d25c0fa681342cc73a585b60338c55866560a4a03f0
|
4
|
+
data.tar.gz: ddba9aca00c5da8675e28e926a9da7f38d1f281ed389c844dc304c659d60cab8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df0d2667ae2beb91ca0b0bf5421f56357124926e996f457408465a33018e254cd35c4d4647cd5d78aaf038b4c54adde26ee4007ff0bedfc4b48aae22f4a6cc03
|
7
|
+
data.tar.gz: 9573573744365b42233c2f0e08bf4a1d2c16acbb04b3c9f979365dde24531c9cddc12dd2cd5578abe66f27f96e10fc607a2a4b3f0bfc01b1b580a0e5f19ae62b
|
@@ -34,9 +34,12 @@ module GroupDocsSignatureCloud
|
|
34
34
|
# Specifies the type of appearance
|
35
35
|
attr_accessor :appearance_type
|
36
36
|
|
37
|
-
# Get or set background color of signature appearance.
|
37
|
+
# Get or set background color of signature appearance.
|
38
38
|
attr_accessor :background
|
39
39
|
|
40
|
+
# Get or set foreground text color of signature appearance. By default the value is Color.FromArgb(76, 100, 255)
|
41
|
+
attr_accessor :foreground
|
42
|
+
|
40
43
|
# Gets or sets contact info label. Default value: \"Contact\". if this value is empty then no contact label will appear on digital signature area.
|
41
44
|
attr_accessor :contact_info_label
|
42
45
|
|
@@ -84,6 +87,7 @@ module GroupDocsSignatureCloud
|
|
84
87
|
{
|
85
88
|
:'appearance_type' => :'AppearanceType',
|
86
89
|
:'background' => :'Background',
|
90
|
+
:'foreground' => :'Foreground',
|
87
91
|
:'contact_info_label' => :'ContactInfoLabel',
|
88
92
|
:'date_signed_at_label' => :'DateSignedAtLabel',
|
89
93
|
:'digital_signed_label' => :'DigitalSignedLabel',
|
@@ -99,6 +103,7 @@ module GroupDocsSignatureCloud
|
|
99
103
|
{
|
100
104
|
:'appearance_type' => :'String',
|
101
105
|
:'background' => :'Color',
|
106
|
+
:'foreground' => :'Color',
|
102
107
|
:'contact_info_label' => :'String',
|
103
108
|
:'date_signed_at_label' => :'String',
|
104
109
|
:'digital_signed_label' => :'String',
|
@@ -125,6 +130,10 @@ module GroupDocsSignatureCloud
|
|
125
130
|
self.background = attributes[:'Background']
|
126
131
|
end
|
127
132
|
|
133
|
+
if attributes.key?(:'Foreground')
|
134
|
+
self.foreground = attributes[:'Foreground']
|
135
|
+
end
|
136
|
+
|
128
137
|
if attributes.key?(:'ContactInfoLabel')
|
129
138
|
self.contact_info_label = attributes[:'ContactInfoLabel']
|
130
139
|
end
|
@@ -196,6 +205,7 @@ module GroupDocsSignatureCloud
|
|
196
205
|
self.class == other.class &&
|
197
206
|
appearance_type == other.appearance_type &&
|
198
207
|
background == other.background &&
|
208
|
+
foreground == other.foreground &&
|
199
209
|
contact_info_label == other.contact_info_label &&
|
200
210
|
date_signed_at_label == other.date_signed_at_label &&
|
201
211
|
digital_signed_label == other.digital_signed_label &&
|
@@ -214,7 +224,7 @@ module GroupDocsSignatureCloud
|
|
214
224
|
# Calculates hash code according to all attributes.
|
215
225
|
# @return [Fixnum] Hash code
|
216
226
|
def hash
|
217
|
-
[appearance_type, background, contact_info_label, date_signed_at_label, digital_signed_label, font_family_name, font_size, location_label, reason_label].hash
|
227
|
+
[appearance_type, background, foreground, contact_info_label, date_signed_at_label, digital_signed_label, font_family_name, font_size, location_label, reason_label].hash
|
218
228
|
end
|
219
229
|
|
220
230
|
# Downcases first letter.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: groupdocs_signature_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '24.
|
4
|
+
version: '24.12'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GroupDocs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|