@arcanejs/toolkit 0.2.0 → 0.2.2
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/dist/backend/components/base.d.mts +69 -2
- package/dist/backend/components/base.d.ts +69 -2
- package/dist/backend/components/base.js +10 -188
- package/dist/backend/components/base.mjs +2 -1
- package/dist/backend/components/button.d.mts +5 -4
- package/dist/backend/components/button.d.ts +5 -4
- package/dist/backend/components/button.js +5 -165
- package/dist/backend/components/button.mjs +3 -2
- package/dist/backend/components/group.d.mts +9 -7
- package/dist/backend/components/group.d.ts +9 -7
- package/dist/backend/components/group.js +6 -282
- package/dist/backend/components/group.mjs +3 -2
- package/dist/backend/components/label.d.mts +5 -3
- package/dist/backend/components/label.d.ts +5 -3
- package/dist/backend/components/label.js +5 -102
- package/dist/backend/components/label.mjs +3 -2
- package/dist/backend/components/rect.d.mts +4 -3
- package/dist/backend/components/rect.d.ts +4 -3
- package/dist/backend/components/rect.js +5 -102
- package/dist/backend/components/rect.mjs +3 -2
- package/dist/backend/components/slider-button.d.mts +5 -4
- package/dist/backend/components/slider-button.d.ts +5 -4
- package/dist/backend/components/slider-button.js +5 -158
- package/dist/backend/components/slider-button.mjs +3 -2
- package/dist/backend/components/switch.d.mts +5 -4
- package/dist/backend/components/switch.d.ts +5 -4
- package/dist/backend/components/switch.js +5 -141
- package/dist/backend/components/switch.mjs +3 -2
- package/dist/backend/components/tabs.d.mts +5 -4
- package/dist/backend/components/tabs.d.ts +5 -4
- package/dist/backend/components/tabs.js +7 -206
- package/dist/backend/components/tabs.mjs +3 -2
- package/dist/backend/components/text-input.d.mts +5 -4
- package/dist/backend/components/text-input.d.ts +5 -4
- package/dist/backend/components/text-input.js +5 -143
- package/dist/backend/components/text-input.mjs +3 -2
- package/dist/backend/components/timeline.d.mts +6 -5
- package/dist/backend/components/timeline.d.ts +6 -5
- package/dist/backend/components/timeline.js +5 -106
- package/dist/backend/components/timeline.mjs +3 -2
- package/dist/backend/util/index.d.mts +7 -0
- package/dist/backend/util/index.d.ts +7 -0
- package/dist/backend/util/index.js +7 -0
- package/dist/backend/util/index.mjs +7 -0
- package/dist/{chunk-L243ZOAR.mjs → chunk-3O4P67DM.mjs} +2 -4
- package/dist/chunk-3RG5ZIWI.js +10 -0
- package/dist/{chunk-37VNFO5S.mjs → chunk-APCR3ITH.mjs} +1 -1
- package/dist/chunk-EABM5X65.js +17 -0
- package/dist/{chunk-P6X5GIDT.mjs → chunk-HNEUZVCX.mjs} +1 -1
- package/dist/{chunk-6LL3X7ZZ.mjs → chunk-IXTM35YM.mjs} +1 -1
- package/dist/{chunk-HVFTRNLQ.mjs → chunk-JW4GXS54.mjs} +1 -1
- package/dist/chunk-K24YPCR5.js +104 -0
- package/dist/chunk-KVJU3EAD.js +66 -0
- package/dist/chunk-M6EFK4GP.js +42 -0
- package/dist/chunk-MDFDWKGW.js +44 -0
- package/dist/chunk-OEIGZ3NQ.js +33 -0
- package/dist/chunk-P43QUQ4T.js +29 -0
- package/dist/chunk-RGHJEMWG.mjs +17 -0
- package/dist/chunk-RGIB65TI.js +29 -0
- package/dist/chunk-RJS32OOA.js +55 -0
- package/dist/{chunk-DBW4OPGN.mjs → chunk-SOC4TF3J.mjs} +1 -1
- package/dist/chunk-T2PJEXYO.js +59 -0
- package/dist/{chunk-DP3QFYSS.mjs → chunk-TAZH4BBH.mjs} +1 -1
- package/dist/{chunk-3ZBM7Q4A.mjs → chunk-TQ27Y7F4.mjs} +1 -1
- package/dist/chunk-UBWCVW2U.js +163 -0
- package/dist/chunk-Y6FXYEAI.mjs +10 -0
- package/dist/{chunk-HF77PS7J.mjs → chunk-ZCHM3JJJ.mjs} +0 -8
- package/dist/{chunk-GQZA5K4M.mjs → chunk-ZU5H6SVA.mjs} +1 -1
- package/dist/frontend.js +1345 -398
- package/dist/frontend.js.map +4 -4
- package/dist/index.d.mts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +82 -658
- package/dist/index.mjs +14 -24
- package/package.json +10 -2
- package/dist/base-BJAPu0O1.d.mts +0 -234
- package/dist/base-BJAPu0O1.d.ts +0 -234
package/dist/index.d.mts
CHANGED
|
@@ -2,9 +2,10 @@ import _ from 'lodash';
|
|
|
2
2
|
import * as http from 'http';
|
|
3
3
|
import { Application } from 'express';
|
|
4
4
|
import { WebSocket } from 'ws';
|
|
5
|
-
import {
|
|
5
|
+
import { ClientMessage, ServerMessage } from '@arcanejs/protocol';
|
|
6
6
|
import { Group } from './backend/components/group.mjs';
|
|
7
7
|
export { GroupHeader } from './backend/components/group.mjs';
|
|
8
|
+
import { Component } from './backend/components/base.mjs';
|
|
8
9
|
export { Button } from './backend/components/button.mjs';
|
|
9
10
|
export { Label } from './backend/components/label.mjs';
|
|
10
11
|
export { Rect } from './backend/components/rect.mjs';
|
|
@@ -13,7 +14,8 @@ export { Switch } from './backend/components/switch.mjs';
|
|
|
13
14
|
export { Tab, Tabs } from './backend/components/tabs.mjs';
|
|
14
15
|
export { TextInput } from './backend/components/text-input.mjs';
|
|
15
16
|
export { Timeline } from './backend/components/timeline.mjs';
|
|
16
|
-
import '@arcanejs/
|
|
17
|
+
import '@arcanejs/protocol/styles';
|
|
18
|
+
import './backend/util/index.mjs';
|
|
17
19
|
|
|
18
20
|
interface Connection {
|
|
19
21
|
sendMessage(msg: ServerMessage): void;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,9 +2,10 @@ import _ from 'lodash';
|
|
|
2
2
|
import * as http from 'http';
|
|
3
3
|
import { Application } from 'express';
|
|
4
4
|
import { WebSocket } from 'ws';
|
|
5
|
-
import {
|
|
5
|
+
import { ClientMessage, ServerMessage } from '@arcanejs/protocol';
|
|
6
6
|
import { Group } from './backend/components/group.js';
|
|
7
7
|
export { GroupHeader } from './backend/components/group.js';
|
|
8
|
+
import { Component } from './backend/components/base.js';
|
|
8
9
|
export { Button } from './backend/components/button.js';
|
|
9
10
|
export { Label } from './backend/components/label.js';
|
|
10
11
|
export { Rect } from './backend/components/rect.js';
|
|
@@ -13,7 +14,8 @@ export { Switch } from './backend/components/switch.js';
|
|
|
13
14
|
export { Tab, Tabs } from './backend/components/tabs.js';
|
|
14
15
|
export { TextInput } from './backend/components/text-input.js';
|
|
15
16
|
export { Timeline } from './backend/components/timeline.js';
|
|
16
|
-
import '@arcanejs/
|
|
17
|
+
import '@arcanejs/protocol/styles';
|
|
18
|
+
import './backend/util/index.js';
|
|
17
19
|
|
|
18
20
|
interface Connection {
|
|
19
21
|
sendMessage(msg: ServerMessage): void;
|