Socket
Socket
Sign inDemoInstall

airwallex-payment-elements

Package Overview
Dependencies
1
Maintainers
1
Versions
161
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.27 to 0.0.28

2

dist/index.js

@@ -109,3 +109,3 @@ import { css, html, LitElement } from 'lit-element';

.countryOrRegion}&currency=${this.currency}&theme=${JSON.stringify(this.theme)}"
title="Secure airwallex payment frame"
title="Secured airwallex payment frame"
/>

@@ -112,0 +112,0 @@ `;

{
"name": "airwallex-payment-elements",
"version": "0.0.27",
"version": "0.0.28",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "module": "dist/index.js",

@@ -103,8 +103,96 @@ # airwallex-payment-elements

interface ITheme {
variant: 'bootstrap' | 'default';
fastCheckoutColor: 'purple' | 'yellow' | 'orange' | 'red' | 'green' | 'blue' | 'pink';
checkoutColor: 'purple' | 'yellow' | 'orange' | 'red' | 'green' | 'blue' | 'pink';
variant: 'outlined' | 'filled' | 'standard' | 'bootstrap';
palette: {
primary: Color; // https://material-ui.com/customization/color/#color
secondary: Color; // https://material-ui.com/customization/color/#color
error: Color; // https://material-ui.com/customization/color/#color
background: {
paper: string;
default: string;
};
text: {
primary: string;
secondary: string;
disabled: string;
hint: string;
};
};
typography: {
htmlFontSize: number;
fontSize: number;
fontFamily: string;
fontWeightLight: number;
fontWeightRegular: number;
fontWeightMedium: number;
fontWeightBold: number;
button: {
textTransform: string;
fontSize: number;
fontWeight: number;
lineHeight: number;
};
};
shape: {
borderRadius: number;
};
zIndex: {
mobileStepper: number;
appBar: number;
drawer: number;
modal: number;
snackbar: number;
tooltip: number;
};
}
```
Default value as below:
```json
{
variant: 'outlined',
palette: {
primary: orange,
secondary: grey,
error: red,
background: {
paper: '#fff',
default: '#fafafa'
},
text: {
primary: '#2A2A2A',
secondary: '#54545E',
disabled: '#A9A9AE',
hint: '#d1d2d5'
}
},
typography: {
htmlFontSize: 16,
fontSize: 14,
fontFamily: 'AxFFDIN'
fontWeightLight: 300,
fontWeightRegular: 400,
fontWeightMedium: 500,
fontWeightBold: 700,
button: {
textTransform: 'unset',
fontSize: 16,
fontWeight: 500,
lineHeight: 2.15
}
},
shape: {
borderRadius: 4
},
zIndex: {
mobileStepper: 1000,
appBar: 1100,
drawer: 1200,
modal: 1300,
snackbar: 1400,
tooltip: 1500
}
}
```
Before passing into the theme props, you must ```stringify```(i.e. ```JSON.stringify()```) it as string.

@@ -111,0 +199,0 @@

@@ -121,3 +121,3 @@ import { css, html, LitElement } from 'lit-element';

.countryOrRegion}&currency=${this.currency}&theme=${JSON.stringify(this.theme)}"
title="Secure airwallex payment frame"
title="Secured airwallex payment frame"
/>

@@ -124,0 +124,0 @@ `;

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc