@metrifox/react-sdk 0.0.16 → 0.0.17

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
@@ -197,7 +197,7 @@ customerPortalTheme?: {
197
197
 
198
198
  table?: {
199
199
  headerTextColor?: string
200
- textcolor?: string
200
+ textColor?: string
201
201
  }
202
202
 
203
203
  button?: {
@@ -216,6 +216,66 @@ customerPortalTheme?: {
216
216
  }
217
217
 
218
218
  linkColor?: string
219
+
220
+ plan?: {
221
+ card?: {
222
+ background?: string
223
+ borderColor?: string
224
+ descriptionColor?: string
225
+
226
+ header?: {
227
+ background?: string
228
+ textColor?: string
229
+ }
230
+
231
+ description?: {
232
+ textColor?: string
233
+ textButtonColor?: string
234
+ }
235
+
236
+ price?: {
237
+ amountColor?: string
238
+ primaryTextColor?: string
239
+ secondaryTextColor?: string
240
+ textButtonColor?: string
241
+ background?: string
242
+ borderColor?: string
243
+ }
244
+ }
245
+
246
+ button?: {
247
+ background?: string
248
+ textColor?: string
249
+ secondaryBackground?: string
250
+ secondaryTextColor?: string
251
+ textButtonColor?: string
252
+ }
253
+
254
+ featureList?: {
255
+ textColor?: string
256
+ iconColor?: string
257
+ }
258
+
259
+ intervalToggle?: {
260
+ background?: string
261
+ activeBackground?: string
262
+ activeText?: string
263
+ inactiveText?: string
264
+ }
265
+
266
+ currentSubscriptionCard?: {
267
+ header?: {
268
+ background?: string
269
+ textColor?: string
270
+ }
271
+ gradientColor?: string
272
+ }
273
+
274
+ freeTrialTag?: {
275
+ background?: string
276
+ textColor?: string
277
+ }
278
+ }
219
279
  }
220
280
  ```
221
281