@bootpay/client-js 5.0.0-rc.5 → 5.0.0
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 +3 -1
- package/dist/index.es.js +3931 -355
- package/dist/index.umd.js +19 -2
- package/dist/package.json.d.ts +2 -1
- package/dist/src/bootpay-widget.d.ts +3 -0
- package/dist/src/lib/bootpay-widget.d.ts +2 -98
- package/dist/src/lib/event/payment.d.ts +0 -3
- package/dist/src/lib/template/confirm-modal.d.ts +17 -0
- package/dist/src/lib/template/oopay.d.ts +1 -1
- package/dist/src/lib/template/payment.d.ts +8 -2
- package/dist/src/models/bootpay-widget-interface.d.ts +1 -0
- package/dist/src/support/logger.d.ts +1 -1
- package/dist/src/support/storage.d.ts +4 -4
- package/dist/src/support/template-manager.d.ts +2 -0
- package/dist/src/support/util.d.ts +1 -0
- package/dist/src/support/widget-store.d.ts +5 -0
- package/package.json +2 -1
- package/tsconfig.json +1 -1
package/README.md
CHANGED
|
@@ -6,10 +6,12 @@
|
|
|
6
6
|
|
|
7
7
|
* Compiler Target ES5 -> ES6 로 변경되었습니다
|
|
8
8
|
* Typescript 4.x -> 5.x 로 업데이트 되었습니다
|
|
9
|
-
* Babel -> Vite 로 변경 되었습니다
|
|
9
|
+
* 내부 Builder가 Babel -> Vite 로 변경 되었습니다
|
|
10
10
|
* ie11 지원이 중단되었습니다. 이제 레거시 ie11은 지원하지 않습니다. ie11을 지원하시려면 4.3.x 이전 버전을 사용해주세요
|
|
11
11
|
* 위젯 SDK를 지원합니다. 위젯에 대한 자세한 내용은 추후 개발 문서로 업데이트 될 예정입니다
|
|
12
12
|
* SSR 프레임워크 (nextjs, nuxtjs)를 이제 완벽히 지원합니다 서버사이드에서 발생되는 "document is undefined" 이슈를 해결했습니다
|
|
13
|
+
* 결제창 open_type iframe -> redirect가 기본으로 변경되었습니다. iframe을 사용하시려면 extra: { open_type: 'iframe' } 를 사용해주세요.
|
|
14
|
+
* redirect 모드 일 경우 승인 전 { event: 'confirm_ready' } 값이 { event: 'confirm' } 으로 변경 되었습니다.
|
|
13
15
|
|
|
14
16
|
### 4.3.4
|
|
15
17
|
|