@darajs/core 1.0.0-a.2 → 1.0.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/README.md +86 -7
- package/dist/api/websocket.d.ts +21 -1
- package/dist/api/websocket.d.ts.map +1 -1
- package/dist/api/websocket.js +26 -0
- package/dist/api/websocket.js.map +1 -1
- package/dist/{dara_core-1.0.0a2-py3-none-any.whl → dara_core-1.0.1-py3-none-any.whl} +0 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/umd/dara.core.umd.js +250 -138
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,7 +1,86 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
# Dara Application Framework
|
|
2
|
+
|
|
3
|
+
<picture>
|
|
4
|
+
<source srcset="https://github.com/causalens/dara/blob/master/img/dara_dark.svg?raw=true" media="(prefers-color-scheme: dark)">
|
|
5
|
+
<img src="https://github.com/causalens/dara/blob/master/img/dara_light.svg?raw=true" alt="Dara Logo">
|
|
6
|
+
</picture>
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
10
|
+
[](https://pypi.org/project/dara-core/)
|
|
11
|
+
[](https://pypi.org/project/dara-core/)
|
|
12
|
+
[](https://www.npmjs.com/package/@darajs/components)
|
|
13
|
+
|
|
14
|
+
### Build decision apps in Python
|
|
15
|
+
|
|
16
|
+
_Tap into the power of causality by transforming data into interactive graphs and applications_
|
|
17
|
+
|
|
18
|
+
Dara is a dynamic application framework designed for creating interactive web apps with ease, all in pure Python. Over the past two years, Dara has fueled the development of hundreds of apps, now widely used and appreciated by both our customers and our in-house teams!
|
|
19
|
+
|
|
20
|
+
## Quickstart
|
|
21
|
+
|
|
22
|
+
To get started with Dara, you can use the `create-dara-app` CLI tool to create a new app.
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install create-dara-app
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
You can also use [`pipx`](https://pypa.github.io/pipx/) to install the CLI tool in an isolated environment.
|
|
29
|
+
|
|
30
|
+
Then simply run the following command to create a new app.
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
create-dara-app
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
By default the CLI will attempt to scaffold your project with [`poetry`](https://python-poetry.org/) but will fall back to `pip` if `poetry` is not present. This can be overriden with `--packaging pip` or `--packaging poetry` flag.
|
|
37
|
+
|
|
38
|
+
After the project is created, you can run it with:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
cd my-dara-app
|
|
42
|
+
|
|
43
|
+
# with poetry installation
|
|
44
|
+
poetry run dara start
|
|
45
|
+
|
|
46
|
+
# with pip installation make sure to activate the new virtual environment
|
|
47
|
+
source .venv/bin/activate
|
|
48
|
+
dara start
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+

|
|
52
|
+
|
|
53
|
+
Note: `pip` installation uses [PEP 660](https://peps.python.org/pep-0660/) `pyproject.toml`-based editable installs which require `pip >= 21.3` and `setuptools >= 64.0.0`. You can upgrade both with:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
python -m pip install --upgrade pip
|
|
57
|
+
pip install --user --upgrade setuptools
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
For more details check out our [Documentation](https://dara.causalens.com/docs/category/build-dara-apps).
|
|
61
|
+
|
|
62
|
+
## Dara App examples
|
|
63
|
+
|
|
64
|
+
Explore some of our favorite apps - a great way of getting started and getting to know the framework!
|
|
65
|
+
|
|
66
|
+
| Dara App | Description |
|
|
67
|
+
| -------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
68
|
+
|  | Demonstrates how to use incorporate a LLM chat box into your decision app to understand model insights |
|
|
69
|
+
|  | Demonstrates how to enable the user to interact with plots, trigger actions based on clicks, mouse movements and other interactions with `Bokeh` or `Plotly` plots |
|
|
70
|
+
|  | Demonstrates how to use the `CausalGraphViewer` component to display your graphs or networks, customising the displayed information through colors and tooltips, and updating the page based on user interaction. |
|
|
71
|
+
|
|
72
|
+
Check out our [App Gallery](https://dara.causalens.com/gallery) for more inspiration!
|
|
73
|
+
|
|
74
|
+
## Repository introduction
|
|
75
|
+
|
|
76
|
+
This repository covers the Dara Application Framework first-party packages.
|
|
77
|
+
|
|
78
|
+
- `dara-core`: The core of the Dara framework, this includes the core framework code for creating applications.
|
|
79
|
+
- `dara-components`: Components for the Dara Framework.
|
|
80
|
+
- `create-dara-app`: A CLI tool for creating new Dara applications.
|
|
81
|
+
|
|
82
|
+
More information on the repository structure can be found in the [CONTRIBUTING.md](https://github.com/causalens/dara/blob/master/CONTRIBUTING.md) file.
|
|
83
|
+
|
|
84
|
+
## License
|
|
85
|
+
|
|
86
|
+
Dara is open-source and licensed under the [Apache 2.0 License](https://github.com/causalens/dara/blob/master/LICENSE).
|
package/dist/api/websocket.d.ts
CHANGED
|
@@ -53,10 +53,19 @@ export interface VariableRequestMessage {
|
|
|
53
53
|
};
|
|
54
54
|
type: 'message';
|
|
55
55
|
}
|
|
56
|
-
export
|
|
56
|
+
export interface CustomMessage {
|
|
57
|
+
message: {
|
|
58
|
+
data: any;
|
|
59
|
+
kind: string;
|
|
60
|
+
};
|
|
61
|
+
type: 'custom';
|
|
62
|
+
}
|
|
63
|
+
export type WebSocketMessage = InitMessage | PingPongMessage | TaskNotificationMessage | ProgressNotificationMessage | ServerTriggerMessage | ServerErrorMessage | VariableRequestMessage | CustomMessage;
|
|
57
64
|
export interface WebSocketClientInterface {
|
|
65
|
+
customMessages$: () => Observable<CustomMessage>;
|
|
58
66
|
getChannel: () => Promise<string>;
|
|
59
67
|
progressUpdates$: (...task_ids: string[]) => Observable<ProgressNotificationMessage>;
|
|
68
|
+
sendCustomMessage: (kind: string, data: any) => void;
|
|
60
69
|
sendVariable: (value: any, channel: string) => void;
|
|
61
70
|
serverErrors$: () => Observable<ServerErrorMessage>;
|
|
62
71
|
serverTriggers$: (data_id: string) => Observable<ServerTriggerMessage>;
|
|
@@ -114,6 +123,10 @@ export declare class WebSocketClient implements WebSocketClientInterface {
|
|
|
114
123
|
* Get the observable to receive variable request messages
|
|
115
124
|
*/
|
|
116
125
|
variableRequests$(): Observable<VariableRequestMessage>;
|
|
126
|
+
/**
|
|
127
|
+
* Get the observable to receive custom messages
|
|
128
|
+
*/
|
|
129
|
+
customMessages$(): Observable<CustomMessage>;
|
|
117
130
|
/**
|
|
118
131
|
* Returns a promise that will resolve when the task is completed. If the task is cancelled then this will throw an
|
|
119
132
|
* error to signify that.
|
|
@@ -128,6 +141,13 @@ export declare class WebSocketClient implements WebSocketClientInterface {
|
|
|
128
141
|
* @param channel return channel to identify the message
|
|
129
142
|
*/
|
|
130
143
|
sendVariable(value: any, channel: string): void;
|
|
144
|
+
/**
|
|
145
|
+
* Send custom message to the backend
|
|
146
|
+
*
|
|
147
|
+
* @param kind kind of custom message
|
|
148
|
+
* @param data custom message data
|
|
149
|
+
*/
|
|
150
|
+
sendCustomMessage(kind: string, data: any): void;
|
|
131
151
|
}
|
|
132
152
|
/**
|
|
133
153
|
* Set up websocket connection and handlers.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"websocket.d.ts","sourceRoot":"","sources":["../../js/api/websocket.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AAG3C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAY3C,UAAU,WAAW;IACjB,OAAO,EAAE;QACL,OAAO,EAAE,QAAQ,CAAC;KACrB,CAAC;IACF,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,UAAU,eAAe;IACrB,OAAO,EAAE,IAAI,CAAC;IACd,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED,oBAAY,UAAU;IAClB,QAAQ,aAAa;IACrB,QAAQ,aAAa;IACrB,KAAK,UAAU;IACf,QAAQ,aAAa;CACxB;AAED,MAAM,WAAW,2BAA2B;IACxC,OAAO,EAAE;QACL,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,UAAU,CAAC,QAAQ,CAAC;QAC5B,OAAO,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,IAAI,EAAE,SAAS,CAAC;CACnB;AAED,MAAM,WAAW,uBAAuB;IACpC,OAAO,EAAE;QACL,MAAM,EAAE,UAAU,CAAC;QACnB,OAAO,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,IAAI,EAAE,SAAS,CAAC;CACnB;AAED,MAAM,WAAW,oBAAoB;IACjC,OAAO,EAAE;QACL,OAAO,EAAE,MAAM,CAAC;KACnB,CAAC;IACF,IAAI,EAAE,SAAS,CAAC;CACnB;AAED,MAAM,WAAW,kBAAkB;IAC/B,OAAO,EAAE;QACL,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,IAAI,EAAE,SAAS,CAAC;CACnB;AAED,MAAM,WAAW,sBAAsB;IACnC,OAAO,EAAE;QACL,sCAAsC;QACtC,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;KAC9B,CAAC;IACF,IAAI,EAAE,SAAS,CAAC;CACnB;AAED,MAAM,MAAM,gBAAgB,GACtB,WAAW,GACX,eAAe,GACf,uBAAuB,GACvB,2BAA2B,GAC3B,oBAAoB,GACpB,kBAAkB,GAClB,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"websocket.d.ts","sourceRoot":"","sources":["../../js/api/websocket.tsx"],"names":[],"mappings":"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"}
|
package/dist/api/websocket.js
CHANGED
|
@@ -26,6 +26,9 @@ function isServerErrorMessage(message) {
|
|
|
26
26
|
function isVariableRequestMessage(message) {
|
|
27
27
|
return message.type === 'message' && 'variable' in message.message;
|
|
28
28
|
}
|
|
29
|
+
function isCustomMessage(message) {
|
|
30
|
+
return message.type === 'custom';
|
|
31
|
+
}
|
|
29
32
|
const pingMessage = {
|
|
30
33
|
message: null,
|
|
31
34
|
type: 'ping',
|
|
@@ -174,6 +177,12 @@ export class WebSocketClient {
|
|
|
174
177
|
variableRequests$() {
|
|
175
178
|
return this.messages$.pipe(filter((msg) => isVariableRequestMessage(msg)));
|
|
176
179
|
}
|
|
180
|
+
/**
|
|
181
|
+
* Get the observable to receive custom messages
|
|
182
|
+
*/
|
|
183
|
+
customMessages$() {
|
|
184
|
+
return this.messages$.pipe(filter((msg) => isCustomMessage(msg)));
|
|
185
|
+
}
|
|
177
186
|
/**
|
|
178
187
|
* Returns a promise that will resolve when the task is completed. If the task is cancelled then this will throw an
|
|
179
188
|
* error to signify that.
|
|
@@ -211,6 +220,23 @@ export class WebSocketClient {
|
|
|
211
220
|
}));
|
|
212
221
|
}
|
|
213
222
|
}
|
|
223
|
+
/**
|
|
224
|
+
* Send custom message to the backend
|
|
225
|
+
*
|
|
226
|
+
* @param kind kind of custom message
|
|
227
|
+
* @param data custom message data
|
|
228
|
+
*/
|
|
229
|
+
sendCustomMessage(kind, data) {
|
|
230
|
+
if (this.socket.readyState === WebSocket.OPEN) {
|
|
231
|
+
this.socket.send(JSON.stringify({
|
|
232
|
+
message: {
|
|
233
|
+
data,
|
|
234
|
+
kind,
|
|
235
|
+
},
|
|
236
|
+
type: 'custom',
|
|
237
|
+
}));
|
|
238
|
+
}
|
|
239
|
+
}
|
|
214
240
|
}
|
|
215
241
|
/**
|
|
216
242
|
* Set up websocket connection and handlers.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"websocket.js","sourceRoot":"","sources":["../../js/api/websocket.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,OAAO,EAAE,MAAM,MAAM,CAAC;AAC3C,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AAInD,MAAM,mBAAmB,GAAG,GAAG,CAAC;AAChC,MAAM,mBAAmB,GAAG,KAAK,CAAC;AAClC,MAAM,iBAAiB,GAAG,IAAI,CAAC;AAC/B,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,mBAAmB,GAAG,mBAAmB,CAAC,CAAC;AAE1E,IAAI,SAAS,GAAW,IAAI,CAAC;AAE7B,IAAI,MAAM,GAAc,IAAI,CAAC;AAC7B,IAAI,YAAY,GAAmB,IAAI,CAAC;AAcxC,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,mCAAqB,CAAA;IACrB,mCAAqB,CAAA;IACrB,6BAAe,CAAA;IACf,mCAAqB,CAAA;AACzB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;
|
|
1
|
+
{"version":3,"file":"websocket.js","sourceRoot":"","sources":["../../js/api/websocket.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAc,OAAO,EAAE,MAAM,MAAM,CAAC;AAC3C,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,gBAAgB,CAAC;AAInD,MAAM,mBAAmB,GAAG,GAAG,CAAC;AAChC,MAAM,mBAAmB,GAAG,KAAK,CAAC;AAClC,MAAM,iBAAiB,GAAG,IAAI,CAAC;AAC/B,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,mBAAmB,GAAG,mBAAmB,CAAC,CAAC;AAE1E,IAAI,SAAS,GAAW,IAAI,CAAC;AAE7B,IAAI,MAAM,GAAc,IAAI,CAAC;AAC7B,IAAI,YAAY,GAAmB,IAAI,CAAC;AAcxC,MAAM,CAAN,IAAY,UAKX;AALD,WAAY,UAAU;IAClB,mCAAqB,CAAA;IACrB,mCAAqB,CAAA;IACrB,6BAAe,CAAA;IACf,mCAAqB,CAAA;AACzB,CAAC,EALW,UAAU,KAAV,UAAU,QAKrB;AA8DD,SAAS,kBAAkB,CAAC,OAAyB;IACjD,OAAO,OAAO,CAAC,IAAI,KAAK,SAAS,IAAI,QAAQ,IAAI,OAAO,CAAC,OAAO,IAAI,SAAS,IAAI,OAAO,CAAC,OAAO,CAAC;AACrG,CAAC;AAED,SAAS,sBAAsB,CAAC,OAAyB;IACrD,OAAO,OAAO,CAAC,IAAI,KAAK,SAAS,IAAI,SAAS,IAAI,OAAO,CAAC,OAAO,CAAC;AACtE,CAAC;AAED,SAAS,oBAAoB,CAAC,OAAyB;IACnD,OAAO,OAAO,CAAC,IAAI,KAAK,SAAS,IAAI,OAAO,IAAI,OAAO,CAAC,OAAO,CAAC;AACpE,CAAC;AAED,SAAS,wBAAwB,CAAC,OAAyB;IACvD,OAAO,OAAO,CAAC,IAAI,KAAK,SAAS,IAAI,UAAU,IAAI,OAAO,CAAC,OAAO,CAAC;AACvE,CAAC;AAED,SAAS,eAAe,CAAC,OAAyB;IAC9C,OAAO,OAAO,CAAC,IAAI,KAAK,QAAQ,CAAC;AACrC,CAAC;AAED,MAAM,WAAW,GAAoB;IACjC,OAAO,EAAE,IAAI;IACb,IAAI,EAAE,MAAM;CACf,CAAC;AAEF;;GAEG;AACH,SAAS,cAAc;IACnB,8BAA8B;IAC9B,YAAY,GAAG,WAAW,CAAC,GAAG,EAAE;QAC5B,IAAI,MAAM,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,EAAE;YACtC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,CAAC;SAC5C;IACL,CAAC,EAAE,iBAAiB,CAAC,CAAC;IAEtB,0BAA0B;IAC1B,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE;QAClC,IAAI,YAAY,EAAE;YACd,aAAa,CAAC,YAAY,CAAC,CAAC;SAC/B;IACL,CAAC,CAAC,CAAC;AACP,CAAC;AAED;;;;GAIG;AACH,SAAS,SAAS,CAAC,KAAa,EAAE,UAAmB;IACjD,IAAI,QAAQ,GAAG,CAAC,CAAC;IAEjB,MAAM,gBAAgB,GAAG,GAAS,EAAE;QAChC,QAAQ,EAAE,CAAC;QAEX,IAAI,QAAQ,GAAG,WAAW,EAAE;YACxB,sCAAsC;YACtC,OAAO,CAAC,KAAK,CAAC,+BAA+B,CAAC,CAAC;YAC/C,OAAO;SACV;QAED,mBAAmB;QACnB,MAAM,GAAG,GAAG,IAAI,GAAG,CAAC,SAAS,CAAC,CAAC;QAC/B,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;QAErC,MAAM,GAAG,IAAI,SAAS,CAAC,GAAG,CAAC,CAAC;QAC5B,6CAA6C;QAC7C,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE;YAClC,UAAU,CAAC,gBAAgB,EAAE,mBAAmB,CAAC,CAAC;QACtD,CAAC,CAAC,CAAC;QAEH,IAAI,UAAU,EAAE;YACZ,4BAA4B;YAC5B,MAAM,CAAC,gBAAgB,CAAC,MAAM,EAAE,GAAG,EAAE;gBACjC,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE;oBAClC,oFAAoF;oBACpF,gBAAgB,EAAE,CAAC;gBACvB,CAAC,CAAC,CAAC;gBAEH,cAAc,EAAE,CAAC;gBAEjB,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE,EAAE;oBACtC,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,IAAI,CAAqB,CAAC;oBACpD,IAAI,GAAG,CAAC,IAAI,KAAK,MAAM,EAAE;wBACrB,2CAA2C;wBAC3C,MAAM,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;qBAC5B;gBACL,CAAC,CAAC,CAAC;YACP,CAAC,CAAC,CAAC;SACN;IACL,CAAC,CAAC;IAEF,gBAAgB,EAAE,CAAC;AACvB,CAAC;AAeD;;;GAGG;AACH,MAAM,OAAO,eAAe;IAaxB,YAAY,OAAkB,EAAE,MAAc,EAAE,WAAW,GAAG,KAAK;QAC/D,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC;QACtB,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC;QACpB,IAAI,CAAC,UAAU,GAAG,WAAW,CAAC;QAC9B,IAAI,CAAC,SAAS,GAAG,IAAI,OAAO,EAAE,CAAC;QAC/B,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE,EAAE;YAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,IAAI,CAAqB,CAAC;YACpD,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;QAC7B,CAAC,CAAC,CAAC;QAEH,iEAAiE;QACjE,IAAI,CAAC,OAAO,GAAG,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;YACnC,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,SAAS,EAAE,CAAC,EAAE,EAAE,EAAE;;gBAC3C,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,IAAI,CAAqB,CAAC;gBACpD,IAAI,GAAG,CAAC,IAAI,KAAK,MAAM,EAAE;oBACrB,OAAO,CAAC,MAAA,GAAG,CAAC,OAAO,0CAAE,OAAO,CAAC,CAAC;iBACjC;YACL,CAAC,CAAC,CAAC;QACP,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC5C,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;IAC7D,CAAC;IAED;;OAEG;IACH,OAAO;QACH,SAAS,CAAC,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;IAC3C,CAAC;IAED;;OAEG;IACH,KAAK;QACD,aAAa,CAAC,YAAY,CAAC,CAAC;QAC5B,IAAI,CAAC,MAAM,CAAC,mBAAmB,CAAC,OAAO,EAAE,IAAI,CAAC,YAAY,CAAC,CAAC;QAC5D,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC;IACxB,CAAC;IAED;;OAEG;IACH,UAAU;QACN,OAAO,IAAI,CAAC,OAAO,CAAC;IACxB,CAAC;IAED;;;;OAIG;IACH,kBAAkB,CAAC,GAAG,QAAkB;QACpC,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CACtB,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,kBAAkB,CAAC,GAAG,CAAC,IAAI,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,EAClF,GAAG,CAAC,CAAC,GAA4B,EAAE,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,CAC5D,CAAC;IACN,CAAC;IAED;;;;OAIG;IACH,gBAAgB,CAAC,GAAG,QAAkB;QAClC,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CACtB,MAAM,CACF,CAAC,GAAG,EAAE,EAAE,CACJ,kBAAkB,CAAC,GAAG,CAAC;YACvB,GAAG,CAAC,OAAO,CAAC,MAAM,KAAK,UAAU,CAAC,QAAQ;YAC1C,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,OAAO,CAAC,OAAO,CAAC,CAC7C,CACuC,CAAC;IACjD,CAAC;IAED;;;;OAIG;IACH,eAAe,CAAC,MAAc;QAC1B,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CACtB,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,WAAC,OAAA,sBAAsB,CAAC,GAAG,CAAC,IAAI,CAAA,MAAA,GAAG,CAAC,OAAO,0CAAE,OAAO,MAAK,MAAM,CAAA,EAAA,CAAC,CAC9C,CAAC;IAC1C,CAAC;IAED;;OAEG;IACH,aAAa;QACT,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,oBAAoB,CAAC,GAAG,CAAC,CAAC,CAAmC,CAAC;IAC7G,CAAC;IAED;;OAEG;IACH,iBAAiB;QACb,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CACtB,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,wBAAwB,CAAC,GAAG,CAAC,CAAC,CACX,CAAC;IAC5C,CAAC;IAED;;OAEG;IACH,eAAe;QACX,OAAO,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,eAAe,CAAC,GAAG,CAAC,CAAC,CAA8B,CAAC;IACnG,CAAC;IAED;;;;;OAKG;IACH,WAAW,CAAC,OAAe;QACvB,OAAO,IAAI,CAAC,SAAS;aAChB,IAAI,CACD,MAAM,CACF,CAAC,GAAG,EAAE,EAAE;;YACJ,OAAA,kBAAkB,CAAC,GAAG,CAAC;gBACvB,CAAA,MAAA,GAAG,CAAC,OAAO,0CAAE,OAAO,MAAK,OAAO;gBAChC,GAAG,CAAC,OAAO,CAAC,MAAM,KAAK,UAAU,CAAC,QAAQ,CAAA;SAAA,CAAC,8BAA8B;SAChF,EACD,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE;YACR,IAAI,kBAAkB,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,OAAO,CAAC,MAAM,KAAK,UAAU,CAAC,QAAQ,EAAE;gBACvE,MAAM,IAAI,KAAK,CAAC,UAAU,CAAC,CAAC;aAC/B;YACD,OAAO,GAAG,CAAC;QACf,CAAC,CAAC,EACF,IAAI,CAAC,CAAC,CAAC,CACV;aACA,SAAS,EAAE,CAAC;IACrB,CAAC;IAED;;;;;OAKG;IACH,YAAY,CAAC,KAAU,EAAE,OAAe;QACpC,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,EAAE;YAC3C,IAAI,CAAC,MAAM,CAAC,IAAI,CACZ,IAAI,CAAC,SAAS,CAAC;gBACX,OAAO;gBACP,OAAO,EAAE,KAAK;gBACd,IAAI,EAAE,SAAS;aAClB,CAAC,CACL,CAAC;SACL;IACL,CAAC;IAED;;;;;OAKG;IACH,iBAAiB,CAAC,IAAY,EAAE,IAAS;QACrC,IAAI,IAAI,CAAC,MAAM,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,EAAE;YAC3C,IAAI,CAAC,MAAM,CAAC,IAAI,CACZ,IAAI,CAAC,SAAS,CAAC;gBACX,OAAO,EAAE;oBACL,IAAI;oBACJ,IAAI;iBACP;gBACD,IAAI,EAAE,QAAQ;aACA,CAAC,CACtB,CAAC;SACL;IACL,CAAC;CACJ;AAED;;;;;GAKG;AACH,MAAM,UAAU,cAAc,CAAC,YAAoB,EAAE,UAAmB;;IACpE,mBAAmB;IACnB,IAAI,EAAE,IAAI,EAAE,GAAG,MAAM,CAAC,QAAQ,CAAC;IAE/B,IAAI,MAAA,MAAM,CAAC,IAAI,0CAAE,QAAQ,EAAE;QACvB,MAAM,OAAO,GAAG,IAAI,GAAG,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;QAC7D,IAAI,EAAE,QAAQ,EAAE,GAAG,OAAO,CAAC;QAE3B,IAAI,QAAQ,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;YACxB,QAAQ,GAAG,QAAQ,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;SACpC;QAED,IAAI,GAAG,OAAO,CAAC,IAAI,GAAG,QAAQ,CAAC;KAClC;IAED,SAAS,GAAG,GAAG,MAAM,CAAC,QAAQ,CAAC,QAAQ,KAAK,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,GAAG,IAAI,cAAc,CAAC;IAE/F,wDAAwD;IACxD,MAAM,GAAG,GAAG,IAAI,GAAG,CAAC,SAAS,CAAC,CAAC;IAC/B,GAAG,CAAC,YAAY,CAAC,GAAG,CAAC,OAAO,EAAE,YAAY,CAAC,CAAC;IAE5C,MAAM,GAAG,IAAI,SAAS,CAAC,GAAG,CAAC,CAAC;IAE5B,cAAc,EAAE,CAAC;IAEjB,OAAO,IAAI,eAAe,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,CAAC,CAAC;AACjE,CAAC"}
|
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { useActionContext, UpdateVariable, TriggerVariable, SideEffect, Navigate
|
|
|
8
8
|
export { useAuthCtx, useSessionToken, BasicAuthLogin, BasicAuthLogout, DefaultAuthLogin, revokeSession, verifySessionToken, handleAuthErrors, DARA_JWT_TOKEN, useUser, } from './auth';
|
|
9
9
|
export { request } from './api';
|
|
10
10
|
export { DefaultFallback, RowFallback, Menu, RouterContent, SideBarFrame, TopBarFrame, ProgressTracker, For, } from './components';
|
|
11
|
-
export { DynamicComponent, Center, useAction, useVariable, getIcon, useDataVariable, combineFilters, DisplayCtx, useComponentStyles, injectCss, useAnyVariable, resolveValue, useVariableValue, normalizeRequest, } from './shared';
|
|
11
|
+
export { DynamicComponent, Center, useAction, useVariable, getIcon, useDataVariable, combineFilters, DisplayCtx, useComponentStyles, injectCss, useAnyVariable, resolveValue, useVariableValue, normalizeRequest, WebSocketCtx, } from './shared';
|
|
12
12
|
export { ConditionOperator, isVariable } from './types';
|
|
13
13
|
export type { RawCssProp };
|
|
14
14
|
export default run;
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../js/index.tsx"],"names":[],"mappings":"AAAA,OAAO,GAAG,MAAM,OAAO,CAAC;AACxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAC3C,OAAO,KAAK,EACR,MAAM,EACN,SAAS,EACT,UAAU,EACV,cAAc,EACd,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,WAAW,EACX,iBAAiB,EACjB,SAAS,EACT,SAAS,EACT,YAAY,EACZ,eAAe,EACf,WAAW,EACX,UAAU,EACV,aAAa,EACb,cAAc,EACd,oBAAoB,EACpB,QAAQ,EACR,WAAW,EACX,UAAU,EACV,QAAQ,EACX,MAAM,SAAS,CAAC;AAGjB,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,aAAa,MAAM,0BAA0B,CAAC;AAE1D,YAAY,EACR,MAAM,EACN,UAAU,EACV,cAAc,EACd,SAAS,EACT,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,iBAAiB,EACjB,cAAc,EACd,eAAe,EACf,WAAW,EACX,YAAY,EACZ,SAAS,EACT,WAAW,EACX,UAAU,EACV,WAAW,EACX,aAAa,EACb,UAAU,EACV,eAAe,EACf,WAAW,EACX,gBAAgB,EAChB,oBAAoB,EACpB,kBAAkB,GACrB,CAAC;AAEF,OAAO,EACH,gBAAgB,EAChB,cAAc,EACd,eAAe,EACf,UAAU,EACV,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,eAAe,EACf,MAAM,EACN,MAAM,GACT,MAAM,WAAW,CAAC;AACnB,OAAO,EACH,UAAU,EACV,eAAe,EACf,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,aAAa,EACb,kBAAkB,EAClB,gBAAgB,EAChB,cAAc,EACd,OAAO,GACV,MAAM,QAAQ,CAAC;AAChB,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,EACH,eAAe,EACf,WAAW,EACX,IAAI,EACJ,aAAa,EACb,YAAY,EACZ,WAAW,EACX,eAAe,EACf,GAAG,GACN,MAAM,cAAc,CAAC;AACtB,OAAO,EACH,gBAAgB,EAChB,MAAM,EACN,SAAS,EACT,WAAW,EACX,OAAO,EACP,eAAe,EACf,cAAc,EACd,UAAU,EACV,kBAAkB,EAClB,SAAS,EACT,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../js/index.tsx"],"names":[],"mappings":"AAAA,OAAO,GAAG,MAAM,OAAO,CAAC;AACxB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAC3C,OAAO,KAAK,EACR,MAAM,EACN,SAAS,EACT,UAAU,EACV,cAAc,EACd,eAAe,EACf,WAAW,EACX,kBAAkB,EAClB,gBAAgB,EAChB,WAAW,EACX,iBAAiB,EACjB,SAAS,EACT,SAAS,EACT,YAAY,EACZ,eAAe,EACf,WAAW,EACX,UAAU,EACV,aAAa,EACb,cAAc,EACd,oBAAoB,EACpB,QAAQ,EACR,WAAW,EACX,UAAU,EACV,QAAQ,EACX,MAAM,SAAS,CAAC;AAGjB,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,aAAa,MAAM,0BAA0B,CAAC;AAE1D,YAAY,EACR,MAAM,EACN,UAAU,EACV,cAAc,EACd,SAAS,EACT,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,iBAAiB,EACjB,cAAc,EACd,eAAe,EACf,WAAW,EACX,YAAY,EACZ,SAAS,EACT,WAAW,EACX,UAAU,EACV,WAAW,EACX,aAAa,EACb,UAAU,EACV,eAAe,EACf,WAAW,EACX,gBAAgB,EAChB,oBAAoB,EACpB,kBAAkB,GACrB,CAAC;AAEF,OAAO,EACH,gBAAgB,EAChB,cAAc,EACd,eAAe,EACf,UAAU,EACV,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,eAAe,EACf,MAAM,EACN,MAAM,GACT,MAAM,WAAW,CAAC;AACnB,OAAO,EACH,UAAU,EACV,eAAe,EACf,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,aAAa,EACb,kBAAkB,EAClB,gBAAgB,EAChB,cAAc,EACd,OAAO,GACV,MAAM,QAAQ,CAAC;AAChB,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,EACH,eAAe,EACf,WAAW,EACX,IAAI,EACJ,aAAa,EACb,YAAY,EACZ,WAAW,EACX,eAAe,EACf,GAAG,GACN,MAAM,cAAc,CAAC;AACtB,OAAO,EACH,gBAAgB,EAChB,MAAM,EACN,SAAS,EACT,WAAW,EACX,OAAO,EACP,eAAe,EACf,cAAc,EACd,UAAU,EACV,kBAAkB,EAClB,SAAS,EACT,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,EAChB,YAAY,GACf,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACxD,YAAY,EAAE,UAAU,EAAE,CAAC;AAG3B,eAAe,GAAG,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ export { useActionContext, UpdateVariable, TriggerVariable, SideEffect, Navigate
|
|
|
6
6
|
export { useAuthCtx, useSessionToken, BasicAuthLogin, BasicAuthLogout, DefaultAuthLogin, revokeSession, verifySessionToken, handleAuthErrors, DARA_JWT_TOKEN, useUser, } from './auth';
|
|
7
7
|
export { request } from './api';
|
|
8
8
|
export { DefaultFallback, RowFallback, Menu, RouterContent, SideBarFrame, TopBarFrame, ProgressTracker, For, } from './components';
|
|
9
|
-
export { DynamicComponent, Center, useAction, useVariable, getIcon, useDataVariable, combineFilters, DisplayCtx, useComponentStyles, injectCss, useAnyVariable, resolveValue, useVariableValue, normalizeRequest, } from './shared';
|
|
9
|
+
export { DynamicComponent, Center, useAction, useVariable, getIcon, useDataVariable, combineFilters, DisplayCtx, useComponentStyles, injectCss, useAnyVariable, resolveValue, useVariableValue, normalizeRequest, WebSocketCtx, } from './shared';
|
|
10
10
|
export { ConditionOperator, isVariable } from './types';
|
|
11
11
|
// Add default export
|
|
12
12
|
export default run;
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../js/index.tsx"],"names":[],"mappings":"AAAA,OAAO,GAAG,MAAM,OAAO,CAAC;AA4BxB,2FAA2F;AAC3F,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,aAAa,MAAM,0BAA0B,CAAC;AA4B1D,OAAO,EACH,gBAAgB,EAChB,cAAc,EACd,eAAe,EACf,UAAU,EACV,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,eAAe,EACf,MAAM,EACN,MAAM,GACT,MAAM,WAAW,CAAC;AACnB,OAAO,EACH,UAAU,EACV,eAAe,EACf,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,aAAa,EACb,kBAAkB,EAClB,gBAAgB,EAChB,cAAc,EACd,OAAO,GACV,MAAM,QAAQ,CAAC;AAChB,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,EACH,eAAe,EACf,WAAW,EACX,IAAI,EACJ,aAAa,EACb,YAAY,EACZ,WAAW,EACX,eAAe,EACf,GAAG,GACN,MAAM,cAAc,CAAC;AACtB,OAAO,EACH,gBAAgB,EAChB,MAAM,EACN,SAAS,EACT,WAAW,EACX,OAAO,EACP,eAAe,EACf,cAAc,EACd,UAAU,EACV,kBAAkB,EAClB,SAAS,EACT,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../js/index.tsx"],"names":[],"mappings":"AAAA,OAAO,GAAG,MAAM,OAAO,CAAC;AA4BxB,2FAA2F;AAC3F,OAAO,KAAK,WAAW,MAAM,kBAAkB,CAAC;AAChD,OAAO,KAAK,aAAa,MAAM,0BAA0B,CAAC;AA4B1D,OAAO,EACH,gBAAgB,EAChB,cAAc,EACd,eAAe,EACf,UAAU,EACV,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,eAAe,EACf,MAAM,EACN,MAAM,GACT,MAAM,WAAW,CAAC;AACnB,OAAO,EACH,UAAU,EACV,eAAe,EACf,cAAc,EACd,eAAe,EACf,gBAAgB,EAChB,aAAa,EACb,kBAAkB,EAClB,gBAAgB,EAChB,cAAc,EACd,OAAO,GACV,MAAM,QAAQ,CAAC;AAChB,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,EACH,eAAe,EACf,WAAW,EACX,IAAI,EACJ,aAAa,EACb,YAAY,EACZ,WAAW,EACX,eAAe,EACf,GAAG,GACN,MAAM,cAAc,CAAC;AACtB,OAAO,EACH,gBAAgB,EAChB,MAAM,EACN,SAAS,EACT,WAAW,EACX,OAAO,EACP,eAAe,EACf,cAAc,EACd,UAAU,EACV,kBAAkB,EAClB,SAAS,EACT,cAAc,EACd,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,EAChB,YAAY,GACf,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAGxD,qBAAqB;AACrB,eAAe,GAAG,CAAC"}
|
|
@@ -17074,10 +17074,10 @@ var __publicField = (obj, key, value) => {
|
|
|
17074
17074
|
}
|
|
17075
17075
|
var _baseIsEqual = baseIsEqual$3;
|
|
17076
17076
|
var baseIsEqual$2 = _baseIsEqual;
|
|
17077
|
-
function isEqual$
|
|
17077
|
+
function isEqual$4(value, other) {
|
|
17078
17078
|
return baseIsEqual$2(value, other);
|
|
17079
17079
|
}
|
|
17080
|
-
var isEqual_1 = isEqual$
|
|
17080
|
+
var isEqual_1 = isEqual$4;
|
|
17081
17081
|
function useDeepCompare(value) {
|
|
17082
17082
|
const ref = React$2.useRef();
|
|
17083
17083
|
if (!isEqual_1(value, ref.current)) {
|
|
@@ -17974,7 +17974,7 @@ var __publicField = (obj, key, value) => {
|
|
|
17974
17974
|
var _a;
|
|
17975
17975
|
return jsxRuntime.exports.jsxs(Wrapper$8, { className: props.className, style: props.style, children: [jsxRuntime.exports.jsxs(Loader, { color: props.color, size: props.size, children: [jsxRuntime.exports.jsx("div", { className: "sk-chase-dot" }), jsxRuntime.exports.jsx("div", { className: "sk-chase-dot" }), jsxRuntime.exports.jsx("div", { className: "sk-chase-dot" }), jsxRuntime.exports.jsx("div", { className: "sk-chase-dot" }), jsxRuntime.exports.jsx("div", { className: "sk-chase-dot" }), jsxRuntime.exports.jsx("div", { className: "sk-chase-dot" })] }), (props.showText || props.text) && jsxRuntime.exports.jsx(LoadingText, { color: props.color, children: (_a = props.text) !== null && _a !== void 0 ? _a : "LOADING" })] });
|
|
17976
17976
|
}
|
|
17977
|
-
var __rest$
|
|
17977
|
+
var __rest$5 = globalThis && globalThis.__rest || function(s, e3) {
|
|
17978
17978
|
var t2 = {};
|
|
17979
17979
|
for (var p2 in s)
|
|
17980
17980
|
if (Object.prototype.hasOwnProperty.call(s, p2) && e3.indexOf(p2) < 0)
|
|
@@ -18082,7 +18082,7 @@ var __publicField = (obj, key, value) => {
|
|
|
18082
18082
|
secondary: SecondaryButton
|
|
18083
18083
|
};
|
|
18084
18084
|
function Button(_a, ref) {
|
|
18085
|
-
var { autoFocus, children, className, disabled: disabled2, download, href, loading, id, onClick, outline = false, style, styling = "primary", type = "button" } = _a, props = __rest$
|
|
18085
|
+
var { autoFocus, children, className, disabled: disabled2, download, href, loading, id, onClick, outline = false, style, styling = "primary", type = "button" } = _a, props = __rest$5(_a, ["autoFocus", "children", "className", "disabled", "download", "href", "loading", "id", "onClick", "outline", "style", "styling", "type"]);
|
|
18086
18086
|
const currentTheme = useClTheme();
|
|
18087
18087
|
const Component = stylingMap[styling];
|
|
18088
18088
|
const content = loading ? jsxRuntime.exports.jsx(StyledLoading, { color: outline ? currentTheme.colors.grey2 : currentTheme.colors.blue1 }) : children;
|
|
@@ -18482,7 +18482,7 @@ var __publicField = (obj, key, value) => {
|
|
|
18482
18482
|
return jsxRuntime.exports.jsx(CheckboxWrapper, { "aria-disabled": props.disabled, children: jsxRuntime.exports.jsx(Checkbox, { disabled: isSelectPermitted ? props.disabled : ((_a = checkedState.find((option) => option.value === item.value)) === null || _a === void 0 ? void 0 : _a.state) === false, id: index2, isListStyle: props.isListStyle, label: item.label ? item.label : item.value, onChange: (checked, e3) => onChangeValue(e3), selected: (_b = checkedState.find((option) => option.value === item.value)) === null || _b === void 0 ? void 0 : _b.state }) }, `item-${index2}`);
|
|
18483
18483
|
})] });
|
|
18484
18484
|
}
|
|
18485
|
-
var __rest$
|
|
18485
|
+
var __rest$4 = globalThis && globalThis.__rest || function(s, e3) {
|
|
18486
18486
|
var t2 = {};
|
|
18487
18487
|
for (var p2 in s)
|
|
18488
18488
|
if (Object.prototype.hasOwnProperty.call(s, p2) && e3.indexOf(p2) < 0)
|
|
@@ -18541,7 +18541,7 @@ var __publicField = (obj, key, value) => {
|
|
|
18541
18541
|
color: ${(props) => props.theme.colors.error};
|
|
18542
18542
|
`;
|
|
18543
18543
|
const Input$1 = React$2.forwardRef((_a, ref) => {
|
|
18544
|
-
var { type = "text" } = _a, props = __rest$
|
|
18544
|
+
var { type = "text" } = _a, props = __rest$4(_a, ["type"]);
|
|
18545
18545
|
const onChange2 = (e3) => {
|
|
18546
18546
|
const target = e3.target;
|
|
18547
18547
|
if (props.onChange) {
|
|
@@ -27593,7 +27593,7 @@ var __publicField = (obj, key, value) => {
|
|
|
27593
27593
|
var dateToCompare = toDate$1(dirtyDateToCompare);
|
|
27594
27594
|
return date2.getTime() < dateToCompare.getTime();
|
|
27595
27595
|
}
|
|
27596
|
-
function isEqual$
|
|
27596
|
+
function isEqual$3(dirtyLeftDate, dirtyRightDate) {
|
|
27597
27597
|
requiredArgs$1(2, arguments);
|
|
27598
27598
|
var dateLeft = toDate$1(dirtyLeftDate);
|
|
27599
27599
|
var dateRight = toDate$1(dirtyRightDate);
|
|
@@ -36565,7 +36565,7 @@ var __publicField = (obj, key, value) => {
|
|
|
36565
36565
|
date2.setHours(23, 59, 59, 999);
|
|
36566
36566
|
return date2;
|
|
36567
36567
|
}
|
|
36568
|
-
function isEqual$
|
|
36568
|
+
function isEqual$2(dirtyLeftDate, dirtyRightDate) {
|
|
36569
36569
|
requiredArgs(2, arguments);
|
|
36570
36570
|
var dateLeft = toDate(dirtyLeftDate);
|
|
36571
36571
|
var dateRight = toDate(dirtyRightDate);
|
|
@@ -39765,7 +39765,7 @@ var __publicField = (obj, key, value) => {
|
|
|
39765
39765
|
return e3 && t2 ? isSameDay(e3, t2) : !e3 && !t2;
|
|
39766
39766
|
}
|
|
39767
39767
|
function je(e3, t2) {
|
|
39768
|
-
return e3 && t2 ? isEqual$
|
|
39768
|
+
return e3 && t2 ? isEqual$2(e3, t2) : !e3 && !t2;
|
|
39769
39769
|
}
|
|
39770
39770
|
function He(e3, t2, r2) {
|
|
39771
39771
|
var n2, o2 = startOfDay(t2), a2 = endOfDay(r2);
|
|
@@ -41067,7 +41067,7 @@ var __publicField = (obj, key, value) => {
|
|
|
41067
41067
|
} }]), a2;
|
|
41068
41068
|
}(), jt = "input", Ht = "navigate";
|
|
41069
41069
|
const reactDatepicker = "";
|
|
41070
|
-
var __rest$
|
|
41070
|
+
var __rest$3 = globalThis && globalThis.__rest || function(s, e3) {
|
|
41071
41071
|
var t2 = {};
|
|
41072
41072
|
for (var p2 in s)
|
|
41073
41073
|
if (Object.prototype.hasOwnProperty.call(s, p2) && e3.indexOf(p2) < 0)
|
|
@@ -41254,7 +41254,7 @@ var __publicField = (obj, key, value) => {
|
|
|
41254
41254
|
(_a2 = props.dropdownRef) === null || _a2 === void 0 ? void 0 : _a2.call(props, value);
|
|
41255
41255
|
};
|
|
41256
41256
|
return jsxRuntime.exports.jsx(Tooltip, { content: props.errorMsg, disabled: !props.errorMsg, styling: "error", children: jsxRuntime.exports.jsxs(Wrapper$5, { className: props.className, isDisabled: props.disabled, isErrored: !!props.errorMsg, onClick: props.onClick, style: props.style, children: [jsxRuntime.exports.jsxs(SelectButtonPrimary, Object.assign({ disabled: props.disabled }, buttonProps, { ref: setButtonReference, type: "button", children: [jsxRuntime.exports.jsx(SelectedItem$1, { size: props.size, children: selectedItem ? selectedItem.label : "Select" }), jsxRuntime.exports.jsx(Chevron$2, { disabled: props.disabled, isOpen })] })), ReactDOM__default.default.createPortal(jsxRuntime.exports.jsx(DropdownList$1, Object.assign({}, menuProps, attributes.popper, { className: `${(_a = menuProps === null || menuProps === void 0 ? void 0 : menuProps.className) !== null && _a !== void 0 ? _a : ""} ${(_c = (_b = attributes === null || attributes === void 0 ? void 0 : attributes.popper) === null || _b === void 0 ? void 0 : _b.className) !== null && _c !== void 0 ? _c : ""} ${props.itemClass}`, displacement: props.displacement, isOpen, maxItems: 7, ref: setMenuReference, style: Object.assign(Object.assign({}, styles2.popper), { marginTop: `0.8rem`, width: "16.25rem", zIndex: 9999 }), children: props.items.map((item, index2) => {
|
|
41257
|
-
const _a2 = getItemProps({ index: index2, item }), { itemClassName } = _a2, itemProps = __rest$
|
|
41257
|
+
const _a2 = getItemProps({ index: index2, item }), { itemClassName } = _a2, itemProps = __rest$3(_a2, ["itemClassName"]);
|
|
41258
41258
|
return React$2.createElement(DatepickerListItem, Object.assign({}, itemProps, { "aria-selected": selectedItem.label === item.label, className: `${itemClassName} ${props.itemClass}`, hovered: index2 === highlightedIndex, isSelected: selectedItem.label === item.label, key: `item-${index2}`, size: props.size, title: item.label }), item.label);
|
|
41259
41259
|
}) })), document.body)] }) });
|
|
41260
41260
|
}
|
|
@@ -43006,7 +43006,7 @@ var __publicField = (obj, key, value) => {
|
|
|
43006
43006
|
|
|
43007
43007
|
background-color: transparent !important;
|
|
43008
43008
|
`;
|
|
43009
|
-
var __rest$
|
|
43009
|
+
var __rest$2 = globalThis && globalThis.__rest || function(s, e3) {
|
|
43010
43010
|
var t2 = {};
|
|
43011
43011
|
for (var p2 in s)
|
|
43012
43012
|
if (Object.prototype.hasOwnProperty.call(s, p2) && e3.indexOf(p2) < 0)
|
|
@@ -43140,7 +43140,7 @@ var __publicField = (obj, key, value) => {
|
|
|
43140
43140
|
(_a2 = props.dropdownRef) === null || _a2 === void 0 ? void 0 : _a2.call(props, value);
|
|
43141
43141
|
};
|
|
43142
43142
|
return jsxRuntime.exports.jsx(Tooltip, { content: props.errorMsg, disabled: !props.errorMsg, styling: "error", children: jsxRuntime.exports.jsxs(Wrapper$4, { className: props.className, isDisabled: props.disabled, isErrored: !!props.errorMsg, isOpen, onClick: props.onClick, style: props.style, children: [jsxRuntime.exports.jsxs(SelectButton, Object.assign({ disabled: props.disabled, isOpen }, buttonProps, { ref: setButtonReference, type: "button", children: [jsxRuntime.exports.jsx(SelectedItem, { size: props.size, children: (_b = (_a = selectedItem === null ? props.placeholder : selectedItem === null || selectedItem === void 0 ? void 0 : selectedItem.label) !== null && _a !== void 0 ? _a : props.placeholder) !== null && _b !== void 0 ? _b : "Select" }), jsxRuntime.exports.jsx(Chevron$2, { disabled: props.disabled, isOpen })] })), ReactDOM__default.default.createPortal(jsxRuntime.exports.jsx(DropdownList, Object.assign({}, menuProps, attributes.popper, { className: `${(_c = menuProps === null || menuProps === void 0 ? void 0 : menuProps.className) !== null && _c !== void 0 ? _c : ""} ${(_e2 = (_d = attributes === null || attributes === void 0 ? void 0 : attributes.popper) === null || _d === void 0 ? void 0 : _d.className) !== null && _e2 !== void 0 ? _e2 : ""} ${props.itemClass}`, isOpen, maxItems: props.maxItems, ref: setMenuReference, style: Object.assign(Object.assign({}, styles2.popper), { width: props.applySameWidthModifier === false ? void 0 : parseFloat((_f = styles2.popper) === null || _f === void 0 ? void 0 : _f.width) + 2, zIndex: 9999 }), children: props.items.map((item, index2) => {
|
|
43143
|
-
const _a2 = getItemProps({ index: index2, item }), { itemClassName } = _a2, itemProps = __rest$
|
|
43143
|
+
const _a2 = getItemProps({ index: index2, item }), { itemClassName } = _a2, itemProps = __rest$2(_a2, ["itemClassName"]);
|
|
43144
43144
|
return React$2.createElement(ListItem, Object.assign({}, itemProps, { className: `${itemClassName} ${props.itemClass}`, hovered: index2 === highlightedIndex, key: `item-${index2}`, size: props.size, title: item.label }), item.label);
|
|
43145
43145
|
}) })), document.body)] }) });
|
|
43146
43146
|
}
|
|
@@ -45435,6 +45435,55 @@ var __publicField = (obj, key, value) => {
|
|
|
45435
45435
|
swapOpacity: false
|
|
45436
45436
|
};
|
|
45437
45437
|
var convertCurry = convert.bind(null, React__default.default.createElement);
|
|
45438
|
+
var safeIsNaN$1 = Number.isNaN || function ponyfill(value) {
|
|
45439
|
+
return typeof value === "number" && value !== value;
|
|
45440
|
+
};
|
|
45441
|
+
function isEqual$1(first, second) {
|
|
45442
|
+
if (first === second) {
|
|
45443
|
+
return true;
|
|
45444
|
+
}
|
|
45445
|
+
if (safeIsNaN$1(first) && safeIsNaN$1(second)) {
|
|
45446
|
+
return true;
|
|
45447
|
+
}
|
|
45448
|
+
return false;
|
|
45449
|
+
}
|
|
45450
|
+
function areInputsEqual$1(newInputs, lastInputs) {
|
|
45451
|
+
if (newInputs.length !== lastInputs.length) {
|
|
45452
|
+
return false;
|
|
45453
|
+
}
|
|
45454
|
+
for (var i2 = 0; i2 < newInputs.length; i2++) {
|
|
45455
|
+
if (!isEqual$1(newInputs[i2], lastInputs[i2])) {
|
|
45456
|
+
return false;
|
|
45457
|
+
}
|
|
45458
|
+
}
|
|
45459
|
+
return true;
|
|
45460
|
+
}
|
|
45461
|
+
function memoizeOne$1(resultFn, isEqual2) {
|
|
45462
|
+
if (isEqual2 === void 0) {
|
|
45463
|
+
isEqual2 = areInputsEqual$1;
|
|
45464
|
+
}
|
|
45465
|
+
var cache2 = null;
|
|
45466
|
+
function memoized() {
|
|
45467
|
+
var newArgs = [];
|
|
45468
|
+
for (var _i = 0; _i < arguments.length; _i++) {
|
|
45469
|
+
newArgs[_i] = arguments[_i];
|
|
45470
|
+
}
|
|
45471
|
+
if (cache2 && cache2.lastThis === this && isEqual2(newArgs, cache2.lastArgs)) {
|
|
45472
|
+
return cache2.lastResult;
|
|
45473
|
+
}
|
|
45474
|
+
var lastResult = resultFn.apply(this, newArgs);
|
|
45475
|
+
cache2 = {
|
|
45476
|
+
lastResult,
|
|
45477
|
+
lastArgs: newArgs,
|
|
45478
|
+
lastThis: this
|
|
45479
|
+
};
|
|
45480
|
+
return lastResult;
|
|
45481
|
+
}
|
|
45482
|
+
memoized.clear = function clear() {
|
|
45483
|
+
cache2 = null;
|
|
45484
|
+
};
|
|
45485
|
+
return memoized;
|
|
45486
|
+
}
|
|
45438
45487
|
var reactTable = { exports: {} };
|
|
45439
45488
|
var reactTable_production_min = { exports: {} };
|
|
45440
45489
|
(function(module2, exports2) {
|
|
@@ -48080,6 +48129,24 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
48080
48129
|
_ref7.itemSize;
|
|
48081
48130
|
}
|
|
48082
48131
|
});
|
|
48132
|
+
function shallowDiffers(prev, next) {
|
|
48133
|
+
for (var attribute in prev) {
|
|
48134
|
+
if (!(attribute in next)) {
|
|
48135
|
+
return true;
|
|
48136
|
+
}
|
|
48137
|
+
}
|
|
48138
|
+
for (var _attribute in next) {
|
|
48139
|
+
if (prev[_attribute] !== next[_attribute]) {
|
|
48140
|
+
return true;
|
|
48141
|
+
}
|
|
48142
|
+
}
|
|
48143
|
+
return false;
|
|
48144
|
+
}
|
|
48145
|
+
function areEqual(prevProps, nextProps) {
|
|
48146
|
+
var prevStyle = prevProps.style, prevRest = _objectWithoutPropertiesLoose$6(prevProps, ["style"]);
|
|
48147
|
+
var nextStyle = nextProps.style, nextRest = _objectWithoutPropertiesLoose$6(nextProps, ["style"]);
|
|
48148
|
+
return !shallowDiffers(prevStyle, nextStyle) && !shallowDiffers(prevRest, nextRest);
|
|
48149
|
+
}
|
|
48083
48150
|
const GlobalStyle = styled.createGlobalStyle`
|
|
48084
48151
|
body {
|
|
48085
48152
|
.DatetimeFilterSelect {
|
|
@@ -48451,7 +48518,7 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
48451
48518
|
}
|
|
48452
48519
|
switch (operator) {
|
|
48453
48520
|
case DateOperator.EQ:
|
|
48454
|
-
return isEqual$
|
|
48521
|
+
return isEqual$3(parsedValue, filterValue);
|
|
48455
48522
|
case DateOperator.GT:
|
|
48456
48523
|
return isAfter$1(parsedValue, filterValue);
|
|
48457
48524
|
case DateOperator.LT:
|
|
@@ -48664,7 +48731,7 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
48664
48731
|
}, [allColumns, allowColumnHiding]);
|
|
48665
48732
|
return jsxRuntime.exports.jsxs(HeaderOptions, { ref: setOptionsElement, children: [jsxRuntime.exports.jsx(HeaderOptionsIcon, { icon: faEllipsisV, onClick: toggleOptions }), ReactDOM__default.default.createPortal(jsxRuntime.exports.jsx(OptionsDropdownList, Object.assign({}, attributes.popper, { isOpen: showOptions, ref: setPopperElement, style: Object.assign(Object.assign(Object.assign({}, styles2.popper), { maxHeight: 800, minWidth: 150, zIndex: 9999 }), style), children: jsxRuntime.exports.jsx(SectionedList, { items: allowColumnHiding ? [resetFunctions, columnToggles] : [resetFunctions], onSelect: onOptionSelect }) })), document.body)] });
|
|
48666
48733
|
};
|
|
48667
|
-
var __rest = globalThis && globalThis.__rest || function(s, e3) {
|
|
48734
|
+
var __rest$1 = globalThis && globalThis.__rest || function(s, e3) {
|
|
48668
48735
|
var t2 = {};
|
|
48669
48736
|
for (var p2 in s)
|
|
48670
48737
|
if (Object.prototype.hasOwnProperty.call(s, p2) && e3.indexOf(p2) < 0)
|
|
@@ -48677,6 +48744,139 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
48677
48744
|
return t2;
|
|
48678
48745
|
};
|
|
48679
48746
|
const ROW_HEIGHT = 40;
|
|
48747
|
+
const shouldForwardProp$2 = (prop) => !["isSorted", "onClickRow"].includes(prop);
|
|
48748
|
+
const Row = styled__default.default.div.withConfig({ shouldForwardProp: shouldForwardProp$2 })`
|
|
48749
|
+
cursor: ${(props) => props.onClickRow ? "pointer" : "default"};
|
|
48750
|
+
display: flex;
|
|
48751
|
+
|
|
48752
|
+
:hover {
|
|
48753
|
+
div {
|
|
48754
|
+
background-color: ${(props) => props.theme.colors.grey1};
|
|
48755
|
+
}
|
|
48756
|
+
}
|
|
48757
|
+
|
|
48758
|
+
:active,
|
|
48759
|
+
focused {
|
|
48760
|
+
div {
|
|
48761
|
+
background-color: ${(props) => props.theme.colors.grey2};
|
|
48762
|
+
}
|
|
48763
|
+
}
|
|
48764
|
+
`;
|
|
48765
|
+
const RowPlaceholder = styled__default.default(Row)`
|
|
48766
|
+
position: absolute;
|
|
48767
|
+
left: 0px;
|
|
48768
|
+
|
|
48769
|
+
display: flex;
|
|
48770
|
+
align-items: center;
|
|
48771
|
+
justify-content: center;
|
|
48772
|
+
`;
|
|
48773
|
+
const CellPlaceholder = styled__default.default.div`
|
|
48774
|
+
min-width: 80px;
|
|
48775
|
+
height: 0.7rem;
|
|
48776
|
+
margin: 0.5rem;
|
|
48777
|
+
|
|
48778
|
+
background: ${(props) => `linear-gradient(to right, ${props.theme.colors.grey2}, ${curriedTransparentize$2(0.2, props.theme.colors.grey3)}, ${props.theme.colors.grey2});`};
|
|
48779
|
+
background-size: 50%;
|
|
48780
|
+
border-radius: 0.5rem;
|
|
48781
|
+
|
|
48782
|
+
animation-name: aniHorizontal;
|
|
48783
|
+
animation-duration: 3.5s;
|
|
48784
|
+
animation-timing-function: linear;
|
|
48785
|
+
animation-iteration-count: infinite;
|
|
48786
|
+
|
|
48787
|
+
@keyframes aniHorizontal {
|
|
48788
|
+
0% {
|
|
48789
|
+
background-position: -100% 0;
|
|
48790
|
+
}
|
|
48791
|
+
|
|
48792
|
+
100% {
|
|
48793
|
+
background-position: 100% 0;
|
|
48794
|
+
}
|
|
48795
|
+
}
|
|
48796
|
+
`;
|
|
48797
|
+
const Cell = styled__default.default.div`
|
|
48798
|
+
display: flex !important;
|
|
48799
|
+
align-items: center;
|
|
48800
|
+
|
|
48801
|
+
min-width: 80px;
|
|
48802
|
+
height: 2.5rem;
|
|
48803
|
+
|
|
48804
|
+
color: ${(props) => props.theme.colors.grey6};
|
|
48805
|
+
|
|
48806
|
+
background-color: ${(props) => props.theme.colors.blue1};
|
|
48807
|
+
border-bottom: 1px solid ${(props) => props.theme.colors.grey3};
|
|
48808
|
+
|
|
48809
|
+
:last-child {
|
|
48810
|
+
border-right: 0;
|
|
48811
|
+
}
|
|
48812
|
+
`;
|
|
48813
|
+
const CellContent = styled__default.default.span`
|
|
48814
|
+
overflow: hidden;
|
|
48815
|
+
|
|
48816
|
+
width: 100%;
|
|
48817
|
+
padding: 0 1rem;
|
|
48818
|
+
|
|
48819
|
+
text-overflow: ellipsis;
|
|
48820
|
+
white-space: nowrap;
|
|
48821
|
+
`;
|
|
48822
|
+
const RenderRow = React__namespace.memo(({ data: { width, currentEditCell, headerGroups, rows, prepareRow, getItem, totalColumnsWidth, onClickRow, throttledClickRow, backgroundColor, mappedColumns }, index: index2, style: renderRowStyle }) => {
|
|
48823
|
+
let row = rows[index2];
|
|
48824
|
+
if (getItem) {
|
|
48825
|
+
const value = getItem(index2);
|
|
48826
|
+
if (!value) {
|
|
48827
|
+
row = null;
|
|
48828
|
+
} else {
|
|
48829
|
+
row.original = value;
|
|
48830
|
+
row.values = value;
|
|
48831
|
+
}
|
|
48832
|
+
}
|
|
48833
|
+
if (!row) {
|
|
48834
|
+
return jsxRuntime.exports.jsx("div", { children: headerGroups.map((headerGroup, gidx) => jsxRuntime.exports.jsx(RowPlaceholder, { style: {
|
|
48835
|
+
height: ROW_HEIGHT,
|
|
48836
|
+
top: (index2 + 1) * ROW_HEIGHT,
|
|
48837
|
+
width: totalColumnsWidth > width ? totalColumnsWidth : "100%"
|
|
48838
|
+
}, children: headerGroup === null || headerGroup === void 0 ? void 0 : headerGroup.headers.map((col, cidx) => {
|
|
48839
|
+
const headerProps = col.getHeaderProps();
|
|
48840
|
+
const headerWidth = headerProps.style.width === "NaNpx" ? mappedColumns[cidx].width : headerProps.style.width;
|
|
48841
|
+
return jsxRuntime.exports.jsx(CellPlaceholder, { style: {
|
|
48842
|
+
maxWidth: col.maxWidth,
|
|
48843
|
+
width: headerWidth
|
|
48844
|
+
} }, `col-${index2}-${cidx}`);
|
|
48845
|
+
}) }, `row-${gidx}`)) });
|
|
48846
|
+
}
|
|
48847
|
+
prepareRow(row);
|
|
48848
|
+
const onClick = () => {
|
|
48849
|
+
if (onClickRow) {
|
|
48850
|
+
throttledClickRow(row.original);
|
|
48851
|
+
}
|
|
48852
|
+
};
|
|
48853
|
+
const _a = row.getRowProps({ style: renderRowStyle }), { style: rowStyle } = _a, restRow = __rest$1(_a, ["style"]);
|
|
48854
|
+
return React$2.createElement(Row, Object.assign({}, restRow, { key: `row-${index2}`, onClick, onClickRow, style: Object.assign(Object.assign({}, rowStyle), { top: (index2 + 1) * ROW_HEIGHT, width: totalColumnsWidth > width ? totalColumnsWidth : "100%" }) }), row.cells.map((cell, colIdx) => {
|
|
48855
|
+
var _a2;
|
|
48856
|
+
const cellProps = cell.getCellProps();
|
|
48857
|
+
return React$2.createElement(
|
|
48858
|
+
Cell,
|
|
48859
|
+
Object.assign({}, cellProps, { key: `cell-${index2}-${colIdx}`, style: Object.assign(Object.assign({}, cellProps.style), { backgroundColor, justifyContent: mappedColumns[colIdx].align, maxWidth: (_a2 = cell.column) === null || _a2 === void 0 ? void 0 : _a2.maxWidth, width: cellProps.style.width === "NaNpx" ? mappedColumns[colIdx].width : cellProps.style.width }) }),
|
|
48860
|
+
jsxRuntime.exports.jsx(CellContent, { children: cell.render("Cell", {
|
|
48861
|
+
colIdx,
|
|
48862
|
+
currentEditCell,
|
|
48863
|
+
rowIdx: index2
|
|
48864
|
+
}) })
|
|
48865
|
+
);
|
|
48866
|
+
}));
|
|
48867
|
+
}, areEqual);
|
|
48868
|
+
var __rest = globalThis && globalThis.__rest || function(s, e3) {
|
|
48869
|
+
var t2 = {};
|
|
48870
|
+
for (var p2 in s)
|
|
48871
|
+
if (Object.prototype.hasOwnProperty.call(s, p2) && e3.indexOf(p2) < 0)
|
|
48872
|
+
t2[p2] = s[p2];
|
|
48873
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
48874
|
+
for (var i2 = 0, p2 = Object.getOwnPropertySymbols(s); i2 < p2.length; i2++) {
|
|
48875
|
+
if (e3.indexOf(p2[i2]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p2[i2]))
|
|
48876
|
+
t2[p2[i2]] = s[p2[i2]];
|
|
48877
|
+
}
|
|
48878
|
+
return t2;
|
|
48879
|
+
};
|
|
48680
48880
|
const Wrapper$3 = styled__default.default.div`
|
|
48681
48881
|
display: inline-block;
|
|
48682
48882
|
width: 100%;
|
|
@@ -48787,86 +48987,11 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
48787
48987
|
width: 10px;
|
|
48788
48988
|
height: 100%;
|
|
48789
48989
|
`;
|
|
48790
|
-
const shouldForwardProp$2 = (prop) => !["isSorted", "onClickRow"].includes(prop);
|
|
48791
48990
|
const SortIcon = styled__default.default(FontAwesomeIcon).withConfig({ shouldForwardProp: shouldForwardProp$2 })`
|
|
48792
48991
|
color: ${(props) => props.isSorted ? props.theme.colors.grey3 : props.theme.colors.blue3};
|
|
48793
48992
|
`;
|
|
48794
48993
|
const TooltipIcon = styled__default.default(FontAwesomeIcon)`
|
|
48795
48994
|
color: ${(props) => props.theme.colors.grey4};
|
|
48796
|
-
`;
|
|
48797
|
-
const Row = styled__default.default.div.withConfig({ shouldForwardProp: shouldForwardProp$2 })`
|
|
48798
|
-
cursor: ${(props) => props.onClickRow ? "pointer" : "default"};
|
|
48799
|
-
display: flex;
|
|
48800
|
-
|
|
48801
|
-
:hover {
|
|
48802
|
-
div {
|
|
48803
|
-
background-color: ${(props) => props.theme.colors.grey1};
|
|
48804
|
-
}
|
|
48805
|
-
}
|
|
48806
|
-
|
|
48807
|
-
:active,
|
|
48808
|
-
focused {
|
|
48809
|
-
div {
|
|
48810
|
-
background-color: ${(props) => props.theme.colors.grey2};
|
|
48811
|
-
}
|
|
48812
|
-
}
|
|
48813
|
-
`;
|
|
48814
|
-
const RowPlaceholder = styled__default.default(Row)`
|
|
48815
|
-
position: absolute;
|
|
48816
|
-
left: 0px;
|
|
48817
|
-
|
|
48818
|
-
display: flex;
|
|
48819
|
-
align-items: center;
|
|
48820
|
-
justify-content: center;
|
|
48821
|
-
`;
|
|
48822
|
-
const CellPlaceholder = styled__default.default.div`
|
|
48823
|
-
min-width: 80px;
|
|
48824
|
-
height: 0.7rem;
|
|
48825
|
-
margin: 0.5rem;
|
|
48826
|
-
|
|
48827
|
-
background: ${(props) => `linear-gradient(to right, ${props.theme.colors.grey2}, ${curriedTransparentize$2(0.2, props.theme.colors.grey3)}, ${props.theme.colors.grey2});`};
|
|
48828
|
-
background-size: 50%;
|
|
48829
|
-
border-radius: 0.5rem;
|
|
48830
|
-
|
|
48831
|
-
animation-name: aniHorizontal;
|
|
48832
|
-
animation-duration: 3.5s;
|
|
48833
|
-
animation-timing-function: linear;
|
|
48834
|
-
animation-iteration-count: infinite;
|
|
48835
|
-
|
|
48836
|
-
@keyframes aniHorizontal {
|
|
48837
|
-
0% {
|
|
48838
|
-
background-position: -100% 0;
|
|
48839
|
-
}
|
|
48840
|
-
|
|
48841
|
-
100% {
|
|
48842
|
-
background-position: 100% 0;
|
|
48843
|
-
}
|
|
48844
|
-
}
|
|
48845
|
-
`;
|
|
48846
|
-
const Cell = styled__default.default.div`
|
|
48847
|
-
display: flex !important;
|
|
48848
|
-
align-items: center;
|
|
48849
|
-
|
|
48850
|
-
min-width: 80px;
|
|
48851
|
-
height: 2.5rem;
|
|
48852
|
-
|
|
48853
|
-
color: ${(props) => props.theme.colors.grey6};
|
|
48854
|
-
|
|
48855
|
-
background-color: ${(props) => props.theme.colors.blue1};
|
|
48856
|
-
border-bottom: 1px solid ${(props) => props.theme.colors.grey3};
|
|
48857
|
-
|
|
48858
|
-
:last-child {
|
|
48859
|
-
border-right: 0;
|
|
48860
|
-
}
|
|
48861
|
-
`;
|
|
48862
|
-
const CellContent = styled__default.default.span`
|
|
48863
|
-
overflow: hidden;
|
|
48864
|
-
|
|
48865
|
-
width: 100%;
|
|
48866
|
-
padding: 0 1rem;
|
|
48867
|
-
|
|
48868
|
-
text-overflow: ellipsis;
|
|
48869
|
-
white-space: nowrap;
|
|
48870
48995
|
`;
|
|
48871
48996
|
const getSortIcon = (isSorted, isSortedDesc) => {
|
|
48872
48997
|
if (!isSorted) {
|
|
@@ -48916,6 +49041,19 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
48916
49041
|
EDIT_INPUT: EditInputCell,
|
|
48917
49042
|
EDIT_SELECT: EditSelectCell
|
|
48918
49043
|
};
|
|
49044
|
+
const createItemData = memoizeOne$1((width, currentEditCell, headerGroups, rows, prepareRow, getItem, totalColumnsWidth, onClickRow, throttledClickRow, backgroundColor, mappedColumns) => ({
|
|
49045
|
+
backgroundColor,
|
|
49046
|
+
currentEditCell,
|
|
49047
|
+
getItem,
|
|
49048
|
+
headerGroups,
|
|
49049
|
+
mappedColumns,
|
|
49050
|
+
onClickRow,
|
|
49051
|
+
prepareRow,
|
|
49052
|
+
rows,
|
|
49053
|
+
throttledClickRow,
|
|
49054
|
+
totalColumnsWidth,
|
|
49055
|
+
width
|
|
49056
|
+
}));
|
|
48919
49057
|
const Table = React$2.forwardRef(({ allowHiding, backgroundColor, className, columns, data, getItem, initialSort = [], itemCount, maxRows, onAction, onChange: onChange2, onClickRow, onItemsRendered, onFilter, onSort, showTableOptions, style, tableOptionsStyle }, ref) => {
|
|
48920
49058
|
const [currentSortBy, setCurrentSortBy] = React$2.useState(initialSort);
|
|
48921
49059
|
React$2.useEffect(() => {
|
|
@@ -49006,57 +49144,11 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
49006
49144
|
);
|
|
49007
49145
|
}))) }), React$2.createElement("div", Object.assign({}, tableProps, rest, { key: "table-body-inner", style: tableStyle }), children)] }, "table-inner");
|
|
49008
49146
|
}, useDeepCompare([tableProps, totalColumnsWidth, headerGroups]));
|
|
49009
|
-
const renderRow = React$2.useCallback(({ data: rowData, index: index2, style: renderRowStyle }) => {
|
|
49010
|
-
let row = rows[index2];
|
|
49011
|
-
if (getItem) {
|
|
49012
|
-
const value = getItem(index2);
|
|
49013
|
-
if (!value) {
|
|
49014
|
-
row = null;
|
|
49015
|
-
} else {
|
|
49016
|
-
row.original = value;
|
|
49017
|
-
row.values = value;
|
|
49018
|
-
}
|
|
49019
|
-
}
|
|
49020
|
-
if (!row) {
|
|
49021
|
-
return jsxRuntime.exports.jsx("div", { children: headerGroups.map((headerGroup, gidx) => jsxRuntime.exports.jsx(RowPlaceholder, { style: {
|
|
49022
|
-
height: ROW_HEIGHT,
|
|
49023
|
-
top: (index2 + 1) * ROW_HEIGHT,
|
|
49024
|
-
width: totalColumnsWidth > rowData.width ? totalColumnsWidth : "100%"
|
|
49025
|
-
}, children: headerGroup === null || headerGroup === void 0 ? void 0 : headerGroup.headers.map((col, cidx) => {
|
|
49026
|
-
const headerProps = col.getHeaderProps();
|
|
49027
|
-
const width = headerProps.style.width === "NaNpx" ? mappedColumns[cidx].width : headerProps.style.width;
|
|
49028
|
-
return jsxRuntime.exports.jsx(CellPlaceholder, { style: {
|
|
49029
|
-
maxWidth: col.maxWidth,
|
|
49030
|
-
width
|
|
49031
|
-
} }, `col-${index2}-${cidx}`);
|
|
49032
|
-
}) }, `row-${gidx}`)) });
|
|
49033
|
-
}
|
|
49034
|
-
prepareRow(row);
|
|
49035
|
-
const onClick = () => {
|
|
49036
|
-
if (onClickRow) {
|
|
49037
|
-
throttledClickRow(row.original);
|
|
49038
|
-
}
|
|
49039
|
-
};
|
|
49040
|
-
const _a = row.getRowProps({ style: renderRowStyle }), { style: rowStyle } = _a, restRow = __rest(_a, ["style"]);
|
|
49041
|
-
return React$2.createElement(Row, Object.assign({}, restRow, { key: `row-${index2}`, onClick, onClickRow, style: Object.assign(Object.assign({}, rowStyle), { top: (index2 + 1) * ROW_HEIGHT, width: totalColumnsWidth > rowData.width ? totalColumnsWidth : "100%" }) }), row.cells.map((cell, colIdx) => {
|
|
49042
|
-
var _a2;
|
|
49043
|
-
const cellProps = cell.getCellProps();
|
|
49044
|
-
return React$2.createElement(
|
|
49045
|
-
Cell,
|
|
49046
|
-
Object.assign({}, cellProps, { key: `cell-${index2}-${colIdx}`, style: Object.assign(Object.assign({}, cellProps.style), { backgroundColor, justifyContent: mappedColumns[colIdx].align, maxWidth: (_a2 = cell.column) === null || _a2 === void 0 ? void 0 : _a2.maxWidth, width: cellProps.style.width === "NaNpx" ? mappedColumns[colIdx].width : cellProps.style.width }) }),
|
|
49047
|
-
jsxRuntime.exports.jsx(CellContent, { children: cell.render("Cell", {
|
|
49048
|
-
colIdx,
|
|
49049
|
-
currentEditCell: rowData.currentEditCell,
|
|
49050
|
-
rowIdx: index2
|
|
49051
|
-
}) })
|
|
49052
|
-
);
|
|
49053
|
-
}));
|
|
49054
|
-
}, useDeepCompare([currentEditCell, prepareRow, rows, getItem]));
|
|
49055
49147
|
return jsxRuntime.exports.jsx(Wrapper$3, Object.assign({}, getTableProps(), { "$hasMaxRows": !!maxRows, className: `${className} ${hasFixedColumns ? "sticky" : ""}`, style: Object.assign({ height: maxRows ? (Math.min(rows.length, maxRows) + 1) * ROW_HEIGHT : "100%" }, style), children: jsxRuntime.exports.jsx(AutoSizer, { children: ({ height, width }) => {
|
|
49056
|
-
return jsxRuntime.exports.jsx(StyledFixedSizeList, { height, innerElementType: renderTable, itemCount: itemCount || rows.length, itemData:
|
|
49148
|
+
return jsxRuntime.exports.jsx(StyledFixedSizeList, { height, innerElementType: renderTable, itemCount: itemCount || rows.length, itemData: createItemData(width, currentEditCell, headerGroups, rows, prepareRow, getItem, totalColumnsWidth, onClickRow, throttledClickRow, backgroundColor, mappedColumns), itemSize: ROW_HEIGHT, onItemsRendered, style: {
|
|
49057
49149
|
overflowX: width < totalColumnsWidth ? "auto" : "hidden",
|
|
49058
49150
|
overflowY: height < (rows.length + 1) * ROW_HEIGHT ? "auto" : "hidden"
|
|
49059
|
-
}, width, children:
|
|
49151
|
+
}, width, children: RenderRow }, "table-list");
|
|
49060
49152
|
} }) }));
|
|
49061
49153
|
});
|
|
49062
49154
|
Table.displayName = "Table";
|
|
@@ -56009,6 +56101,9 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
56009
56101
|
function isVariableRequestMessage(message) {
|
|
56010
56102
|
return message.type === "message" && "variable" in message.message;
|
|
56011
56103
|
}
|
|
56104
|
+
function isCustomMessage(message) {
|
|
56105
|
+
return message.type === "custom";
|
|
56106
|
+
}
|
|
56012
56107
|
const pingMessage = {
|
|
56013
56108
|
message: null,
|
|
56014
56109
|
type: "ping"
|
|
@@ -56124,6 +56219,9 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
56124
56219
|
filter((msg) => isVariableRequestMessage(msg))
|
|
56125
56220
|
);
|
|
56126
56221
|
}
|
|
56222
|
+
customMessages$() {
|
|
56223
|
+
return this.messages$.pipe(filter((msg) => isCustomMessage(msg)));
|
|
56224
|
+
}
|
|
56127
56225
|
waitForTask(task_id) {
|
|
56128
56226
|
return this.messages$.pipe(
|
|
56129
56227
|
filter(
|
|
@@ -56152,6 +56250,19 @@ You must set sticky: 'left' | 'right' for the '${bugWithUnderColumnsSticky.Heade
|
|
|
56152
56250
|
);
|
|
56153
56251
|
}
|
|
56154
56252
|
}
|
|
56253
|
+
sendCustomMessage(kind, data) {
|
|
56254
|
+
if (this.socket.readyState === WebSocket.OPEN) {
|
|
56255
|
+
this.socket.send(
|
|
56256
|
+
JSON.stringify({
|
|
56257
|
+
message: {
|
|
56258
|
+
data,
|
|
56259
|
+
kind
|
|
56260
|
+
},
|
|
56261
|
+
type: "custom"
|
|
56262
|
+
})
|
|
56263
|
+
);
|
|
56264
|
+
}
|
|
56265
|
+
}
|
|
56155
56266
|
}
|
|
56156
56267
|
function setupWebsocket(sessionToken, liveReload) {
|
|
56157
56268
|
var _a;
|
|
@@ -93589,6 +93700,7 @@ Inferred class string: "${iconClasses}."`
|
|
|
93589
93700
|
exports.TopBarFrame = SideBarFrame;
|
|
93590
93701
|
exports.TriggerVariable = TriggerVariable;
|
|
93591
93702
|
exports.UpdateVariable = UpdateVariable;
|
|
93703
|
+
exports.WebSocketCtx = websocketCtx;
|
|
93592
93704
|
exports.combineFilters = combineFilters;
|
|
93593
93705
|
exports.default = run;
|
|
93594
93706
|
exports.getIcon = getIcon;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@darajs/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Dara Framework core",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"@babel/preset-env": "^7.16.11",
|
|
36
36
|
"@babel/preset-react": "^7.16.7",
|
|
37
37
|
"@babel/preset-typescript": "^7.16.7",
|
|
38
|
-
"@darajs/eslint-config": "~1.0.0
|
|
39
|
-
"@darajs/prettier-config": "~1.0.0
|
|
40
|
-
"@darajs/stylelint-config": "~1.0.0
|
|
38
|
+
"@darajs/eslint-config": "~1.0.0",
|
|
39
|
+
"@darajs/prettier-config": "~1.0.0",
|
|
40
|
+
"@darajs/stylelint-config": "~1.0.0",
|
|
41
41
|
"@rollup/plugin-inject": "^4.0.4",
|
|
42
42
|
"@testing-library/dom": "^9.3.0",
|
|
43
43
|
"@testing-library/jest-dom": "^5.16.5",
|
|
@@ -73,10 +73,10 @@
|
|
|
73
73
|
"whatwg-fetch": "^3.6.2"
|
|
74
74
|
},
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@darajs/styled-components": "~1.0.0
|
|
77
|
-
"@darajs/ui-components": "~1.0.0
|
|
78
|
-
"@darajs/ui-notifications": "~1.0.0
|
|
79
|
-
"@darajs/ui-utils": "~1.0.0
|
|
76
|
+
"@darajs/styled-components": "~1.0.0",
|
|
77
|
+
"@darajs/ui-components": "~1.0.0",
|
|
78
|
+
"@darajs/ui-notifications": "~1.0.0",
|
|
79
|
+
"@darajs/ui-utils": "~1.0.0",
|
|
80
80
|
"@fortawesome/fontawesome-free": "^6.3.0",
|
|
81
81
|
"@recoiljs/refine": "^0.1.1",
|
|
82
82
|
"@tanstack/query-core": "^4.0.0",
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"publishConfig": {
|
|
114
114
|
"access": "public"
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "4a2c8a3ff3db5935138505a62408056126a1228e"
|
|
117
117
|
}
|