@primer-io/primer-js 1.9.0 → 1.9.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/CHANGELOG.md +19 -0
- package/dist/custom-elements.json +323 -312
- package/dist/primer-loader.d.ts +4 -2
- package/dist/primer-loader.js +10 -10
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
package/dist/primer-loader.d.ts
CHANGED
|
@@ -4072,6 +4072,8 @@ declare class VaultPaymentMethodItemComponent extends LitElement {
|
|
|
4072
4072
|
* Dispatch delete event
|
|
4073
4073
|
*/
|
|
4074
4074
|
private handleDeleteClick;
|
|
4075
|
+
private handleCvvRowClick;
|
|
4076
|
+
private handleRadioClick;
|
|
4075
4077
|
/**
|
|
4076
4078
|
* Render method
|
|
4077
4079
|
*/
|
|
@@ -4251,8 +4253,6 @@ declare class VaultCvvInputComponent extends LitElement {
|
|
|
4251
4253
|
primerContext?: ContextType;
|
|
4252
4254
|
paymentMethod: CardVaultedPaymentMethodSummary | null;
|
|
4253
4255
|
private cvvError;
|
|
4254
|
-
private cvvInputIsDirty;
|
|
4255
|
-
private cvvInputIsBlurred;
|
|
4256
4256
|
private cvvInput;
|
|
4257
4257
|
private isFocused;
|
|
4258
4258
|
/**
|
|
@@ -4268,6 +4268,7 @@ declare class VaultCvvInputComponent extends LitElement {
|
|
|
4268
4268
|
onCvvInputChange(): void;
|
|
4269
4269
|
onBlur(): void;
|
|
4270
4270
|
onFocus(): void;
|
|
4271
|
+
private get visibleErrorCode();
|
|
4271
4272
|
/**
|
|
4272
4273
|
* Main render method
|
|
4273
4274
|
*/
|
|
@@ -4409,6 +4410,7 @@ declare class CardFormComponent extends LitElement {
|
|
|
4409
4410
|
* Task to set up the card form with hosted inputs
|
|
4410
4411
|
*/
|
|
4411
4412
|
private readonly setupCardFormTask;
|
|
4413
|
+
private clearStaleVaultSelection;
|
|
4412
4414
|
/**
|
|
4413
4415
|
* Sends PAYMENT_METHOD_SELECTION analytics event when user first interacts with card form
|
|
4414
4416
|
* @private
|