@brokerize/elements 1.4.0 → 1.4.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 +17 -0
- package/dist/bundle.d.ts +4 -0
- package/dist/bundle.es.js +339 -338
- package/dist/bundle.umd.js +28 -28
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
# 1.4.1 (released 2025-09-08)
|
|
4
|
+
|
|
5
|
+
- `FIXED` In some environments, `crypto.randomUUID()` is not available. This was used for generating IDs in the previous version and is now replaced with `nanoid`
|
|
6
|
+
|
|
7
|
+
# 1.4.0 (released 2025-08-27)
|
|
8
|
+
|
|
9
|
+
- `ADDED` the new component `Overview` which can replace `BrokerList`, `PortfolioTable` and `SessionsTable` in most applications
|
|
10
|
+
- `ADDED` An improved version of the `BrokerizeMain` component, which encapsulates `Overview` , `PortfolioView` and `OrderForm`.
|
|
11
|
+
|
|
12
|
+
# 1.3.0 (released 2025-05-07)
|
|
13
|
+
|
|
14
|
+
- `ADDED` We have added the new function createCustomWebSocketClient to brokerize client, which allows customizing the WebSocke connection URL and token retrieval. The client can be passed to createAuthorizedContext so that the created client is used in all contexts (including brokerize elements components which rely on WebSockets).
|
|
15
|
+
|
|
16
|
+
# 1.2.1 (released 2025-05-01)
|
|
17
|
+
|
|
18
|
+
- `FIXED` an issue where a relative API basePath lead to wrong WebSocket connection URLs.
|
|
19
|
+
|
|
3
20
|
# 1.2.0 (released 2025-04-24)
|
|
4
21
|
|
|
5
22
|
- `ADDED` the option to pass a `reportingTag` for `createOrderForm`, `createChangeOrderForm` and `createCancelOrderForm`
|
package/dist/bundle.d.ts
CHANGED
|
@@ -586,6 +586,10 @@ export declare type OrderFormInitialOrder = Partial<
|
|
|
586
586
|
export declare type OrderReceiptConfig = {
|
|
587
587
|
orderId?: string;
|
|
588
588
|
orderData?: ReceiptData;
|
|
589
|
+
/**
|
|
590
|
+
* `true` if the receipt is shown in response to an order creation.
|
|
591
|
+
*/
|
|
592
|
+
isOrderConfirmation?: boolean;
|
|
589
593
|
onNavigate?: (linkTarget: LinkTarget) => void;
|
|
590
594
|
} & BrokerizeBaseConfig;
|
|
591
595
|
|