Skip to content

Commit

Permalink
Added package.xml file
Browse files Browse the repository at this point in the history
  • Loading branch information
rapsacnz committed Jul 7, 2020
1 parent ee83c48 commit 0e3b228
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 17 deletions.
2 changes: 1 addition & 1 deletion force-app/main/default/aura/ComponentEvent/ComponentEvent.evt
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
<aura:attribute name="data" type="Object" />
<aura:attribute name="context" type="Object" />

</aura:event>
</aura:event>
3 changes: 1 addition & 2 deletions force-app/main/default/aura/PaymentForm/PaymentForm.css
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,4 @@
.THIS .group-disclaimer .slds-checkbox .slds-form-element__label {
color: #98184c;
font-weight: bold;
}

}
3 changes: 1 addition & 2 deletions force-app/main/default/aura/PaymentForm/PaymentFormController.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,4 @@
$A.reportError(errorTitle, error);
console.log(errorTitle + " " + error);
}
});

});
3 changes: 1 addition & 2 deletions force-app/main/default/aura/PaymentForm/PaymentFormHelper.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -324,5 +324,4 @@
});
component.set("v.countryOptions", rawCountries);
}
});

});
2 changes: 1 addition & 1 deletion force-app/main/default/aura/PaymentForm/PaymentFormRenderer.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

// Your renderer method overrides go here

})
})
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/addressInput/addressInput.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.slds-form-element_horizontal:not(.slds-form-element_readonly) {
margin-bottom: unset;
}
}
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/addressInput/addressInput.js
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -1360,4 +1360,4 @@ export default class AddressInput extends LightningElement {
}
];

}
}
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/cardInput/card.js
Original file line number Diff line number Diff line change
Expand Up @@ -452,4 +452,4 @@ var Card = (function() {
return Card;
})();

export { Card };
export { Card };
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/cardInput/cardInput.css
Original file line number Diff line number Diff line change
Expand Up @@ -1137,4 +1137,4 @@
rgba(255, 255, 255, 0.2) 70%,
rgba(255, 255, 255, 0) 90%
);
}
}
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/cardInput/cardInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,4 @@ export default class CardInput extends LightningElement {
}
return isValid;
};
}
}
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/cardInput/extend.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ extend.version = "1.1.3";
/**
* Exports module.
*/
export { extend };
export { extend };
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/cardInput/is.js
Original file line number Diff line number Diff line change
Expand Up @@ -829,4 +829,4 @@ is.symbol = function(value) {
);
};

export { is };
export { is };
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/cardInput/payment.js
Original file line number Diff line number Diff line change
Expand Up @@ -717,4 +717,4 @@ export { Payment };

function __guard__(value, transform) {
return typeof value !== "undefined" && value !== null ? transform(value) : undefined;
}
}
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/cardInput/qj.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,4 @@ QJ.trigger = function(el, name, data) {
return el.dispatchEvent(ev);
};

export { QJ };
export { QJ };
12 changes: 12 additions & 0 deletions manifest/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
<types>
<members>*</members>
<name>AuraDefinitionBundle</name>
</types>
<types>
<members>*</members>
<name>LightningComponentBundle</name>
</types>
<version>48.0</version>
</Package>

0 comments on commit 0e3b228

Please sign in to comment.