@justifi/webcomponents 0.0.15 → 0.2.1
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 +45 -0
- package/changelog-template.hbs +41 -0
- package/dist/cjs/{index-e1b45289.js → index-ca2cd154.js} +456 -97
- package/dist/cjs/justifi-bank-account-form.cjs.entry.js +59 -0
- package/dist/cjs/justifi-billing-form.cjs.entry.js +2150 -0
- package/dist/cjs/justifi-card-form.cjs.entry.js +59 -0
- package/dist/cjs/justifi-payment-form.cjs.entry.js +17 -0
- package/dist/cjs/{justifi-bank-account-form_3.cjs.entry.js → justifi-payment-method-form.cjs.entry.js} +86 -110
- package/dist/cjs/justifi-payments-list.cjs.entry.js +1 -1
- package/dist/cjs/loader.cjs.js +3 -4
- package/dist/cjs/select-input_2.cjs.entry.js +59 -0
- package/dist/cjs/webcomponents.cjs.js +3 -7
- package/dist/collection/collection-manifest.json +7 -3
- package/dist/collection/components/bank-account-form/bank-account-form.js +1 -1
- package/dist/collection/components/billing-form/billing-form-schema.js +14 -0
- package/dist/collection/components/billing-form/billing-form.css +11 -0
- package/dist/collection/components/billing-form/billing-form.js +92 -0
- package/dist/collection/components/billing-form/state-options.js +243 -0
- package/dist/collection/components/card-form/card-form.js +1 -1
- package/dist/collection/components/card-form/card-form.stories.js +132 -0
- package/dist/collection/components/payment-form/payment-form.js +31 -0
- package/dist/collection/components/payment-method-form/payment-method-form.js +6 -4
- package/dist/collection/components/select-input/select-input.css +7 -0
- package/dist/collection/components/select-input/select-input.js +144 -0
- package/dist/collection/components/text-input/text-input.css +7 -0
- package/dist/collection/components/text-input/text-input.js +126 -0
- package/dist/components/index.d.ts +4 -9
- package/dist/components/index.js +5 -1
- package/dist/components/justifi-billing-form.d.ts +11 -0
- package/dist/components/justifi-billing-form.js +2180 -0
- package/dist/components/justifi-payment-form.d.ts +11 -0
- package/dist/components/justifi-payment-form.js +32 -0
- package/dist/components/payment-method-form.js +85 -3
- package/dist/components/select-input.d.ts +11 -0
- package/dist/components/select-input.js +6 -0
- package/dist/components/select-input2.js +52 -0
- package/dist/components/text-input.d.ts +11 -0
- package/dist/components/text-input.js +6 -0
- package/dist/components/text-input2.js +48 -0
- package/dist/esm/{index-c1f569bd.js → index-05706eb5.js} +457 -97
- package/dist/esm/justifi-bank-account-form.entry.js +55 -0
- package/dist/esm/justifi-billing-form.entry.js +2146 -0
- package/dist/esm/justifi-card-form.entry.js +55 -0
- package/dist/esm/justifi-payment-form.entry.js +13 -0
- package/dist/esm/justifi-payment-method-form.entry.js +187 -0
- package/dist/esm/justifi-payments-list.entry.js +1 -1
- package/dist/esm/loader.js +3 -4
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/select-input_2.entry.js +54 -0
- package/dist/esm/webcomponents.js +3 -4
- package/dist/types/api/Api.d.ts +1 -1
- package/dist/types/api/Payment.d.ts +1 -1
- package/dist/types/components/billing-form/billing-form-schema.d.ts +15 -0
- package/dist/types/components/billing-form/billing-form.d.ts +17 -0
- package/dist/types/components/billing-form/state-options.d.ts +5 -0
- package/dist/types/components/card-form/card-form.stories.d.ts +14 -0
- package/dist/types/components/payment-form/payment-form.d.ts +4 -0
- package/dist/types/components/payment-method-form/payment-method-form.d.ts +1 -1
- package/dist/types/components/payment-method-form/theme.d.ts +3 -1
- package/dist/types/components/select-input/select-input.d.ts +18 -0
- package/dist/types/components/text-input/text-input.d.ts +14 -0
- package/dist/types/components.d.ts +87 -3
- package/dist/types/stencil-public-runtime.d.ts +3 -59
- package/dist/webcomponents/p-3809130a.entry.js +1 -0
- package/dist/webcomponents/p-67be9585.entry.js +1 -0
- package/dist/webcomponents/p-787671b9.entry.js +1 -0
- package/dist/webcomponents/p-87654bf4.entry.js +1 -0
- package/dist/webcomponents/p-8ee06fd1.js +2 -0
- package/dist/webcomponents/p-94ef2d0e.entry.js +1 -0
- package/dist/webcomponents/p-c07191dc.entry.js +1 -0
- package/dist/webcomponents/p-e5b0f047.entry.js +1 -0
- package/dist/webcomponents/webcomponents.esm.js +1 -1
- package/loader/index.d.ts +0 -9
- package/package.json +23 -5
- package/LICENSE +0 -21
- package/dist/esm/justifi-bank-account-form_3.entry.js +0 -209
- package/dist/webcomponents/p-1de39730.js +0 -2
- package/dist/webcomponents/p-f0eb5ed0.entry.js +0 -1
- package/dist/webcomponents/p-f91b7b05.entry.js +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
### Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
|
4
|
+
|
|
5
|
+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
|
+
|
|
7
|
+
#### 0.2.1
|
|
8
|
+
> 28 March 2023
|
|
9
|
+
|
|
10
|
+
- Pass component version along to tokenize calls so that it can be used in error reporting
|
|
11
|
+
|
|
12
|
+
#### 0.2.0
|
|
13
|
+
|
|
14
|
+
> 13 March 2023
|
|
15
|
+
|
|
16
|
+
- Add BillingForm component poc
|
|
17
|
+
- Add TextInput component
|
|
18
|
+
- Add SelectInput component
|
|
19
|
+
|
|
20
|
+
#### 0.1.15
|
|
21
|
+
|
|
22
|
+
> 14 February 2023
|
|
23
|
+
|
|
24
|
+
- FE-48 Add the LICENSE [`#26`](https://github.com/justifi-tech/web-component-library/pull/26)
|
|
25
|
+
- update PR templates main README, and add changelogs [`#23`](https://github.com/justifi-tech/web-component-library/pull/23)
|
|
26
|
+
- Yarn upgrade [`#22`](https://github.com/justifi-tech/web-component-library/pull/22)
|
|
27
|
+
- Add missing properties to theme [`#21`](https://github.com/justifi-tech/web-component-library/pull/21)
|
|
28
|
+
- Bump decode-uri-component from 0.2.0 to 0.2.2 in /react-library [`#6`](https://github.com/justifi-tech/web-component-library/pull/6)
|
|
29
|
+
- Update examples to include payment method metadata and code comments [`#19`](https://github.com/justifi-tech/web-component-library/pull/19)
|
|
30
|
+
- Check for styleOverrides before attempting to parse [`#18`](https://github.com/justifi-tech/web-component-library/pull/18)
|
|
31
|
+
- Update README files [`#17`](https://github.com/justifi-tech/web-component-library/pull/17)
|
|
32
|
+
- Update READMEs and release new react-library version [`#16`](https://github.com/justifi-tech/web-component-library/pull/16)
|
|
33
|
+
- Allow styleOverrides to be passed into cardForm and bankAccountForm [`#15`](https://github.com/justifi-tech/web-component-library/pull/15)
|
|
34
|
+
- FE-18: Iframe content height reporting [`#14`](https://github.com/justifi-tech/web-component-library/pull/14)
|
|
35
|
+
- Update web component props for `v2` payments-js [`#13`](https://github.com/justifi-tech/web-component-library/pull/13)
|
|
36
|
+
- Fix react components [`#11`](https://github.com/justifi-tech/web-component-library/pull/11)
|
|
37
|
+
- Fix card form component events [`#10`](https://github.com/justifi-tech/web-component-library/pull/10)
|
|
38
|
+
- Eng-2080: Add bank account web component [`#7`](https://github.com/justifi-tech/web-component-library/pull/7)
|
|
39
|
+
- ENG-1960 publish libraries to npmjs.org [`#4`](https://github.com/justifi-tech/web-component-library/pull/4)
|
|
40
|
+
- Package & Publish libraries [`#3`](https://github.com/justifi-tech/web-component-library/pull/3)
|
|
41
|
+
- Restructure project and link react and stencil libraries [`#2`](https://github.com/justifi-tech/web-component-library/pull/2)
|
|
42
|
+
- Terraform and GitHub Actions [`#1`](https://github.com/justifi-tech/web-component-library/pull/1)
|
|
43
|
+
- init [`27806f7`](https://github.com/justifi-tech/web-component-library/commit/27806f7bff97247033800c7743570ebeec4080d7)
|
|
44
|
+
- add: release-it package [`e0b3711`](https://github.com/justifi-tech/web-component-library/commit/e0b371184774dd7dead0243cd645640175d6b87f)
|
|
45
|
+
- initial commit [`c147b58`](https://github.com/justifi-tech/web-component-library/commit/c147b580aaf95eb22ffe6ad9b0217954890dd1d4)
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{{#each releases}}
|
|
2
|
+
# {{title}}
|
|
3
|
+
[{{isoDate}}]
|
|
4
|
+
|
|
5
|
+
{{! lit commits with feature: in message, use feature: or Feature: }}
|
|
6
|
+
{{#commit-list
|
|
7
|
+
commits
|
|
8
|
+
heading='### Features'
|
|
9
|
+
message='(feature: )|(Feature: )'
|
|
10
|
+
exclude='(fix: )|(Fix: )|(break: )|(Break: )'}}
|
|
11
|
+
* {{subject}} ([`{{shorthash}}`]({{href}}))
|
|
12
|
+
{{/commit-list}}
|
|
13
|
+
|
|
14
|
+
{{! use fix: or Fix: }}
|
|
15
|
+
{{#commit-list
|
|
16
|
+
commits
|
|
17
|
+
heading='### Fixes'
|
|
18
|
+
message='(fix: )|(Fix: )'
|
|
19
|
+
exclude='(break: )|(Break: )|(Feature: )|(feature: )'}}
|
|
20
|
+
* {{subject}} ([`{{shorthash}}`]({{href}}))
|
|
21
|
+
{{/commit-list}}
|
|
22
|
+
|
|
23
|
+
{{! use add: or Add: }}
|
|
24
|
+
{{#commit-list
|
|
25
|
+
commits
|
|
26
|
+
heading='### Added'
|
|
27
|
+
message='(add: )|(Add: )'
|
|
28
|
+
exclude='(break: )|(Break: )|(Feature: )|(feature: )'}}
|
|
29
|
+
* {{subject}} ([`{{shorthash}}`]({{href}}))
|
|
30
|
+
{{/commit-list}}
|
|
31
|
+
|
|
32
|
+
{{! user break: or Break: }}
|
|
33
|
+
{{#commit-list
|
|
34
|
+
commits
|
|
35
|
+
heading='### Breaking changes'
|
|
36
|
+
message='(break: )|(Break: )'
|
|
37
|
+
exclude='(fix: )|(Fix: )|(Feature: )|(feature: )'}}
|
|
38
|
+
* {{subject}} ([`{{shorthash}}`]({{href}}))
|
|
39
|
+
{{/commit-list}}
|
|
40
|
+
|
|
41
|
+
{{/each}}
|