@almadar/std 1.0.0 → 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/dist/behaviors/async.d.ts +8 -8
- package/dist/behaviors/async.js +548 -500
- package/dist/behaviors/async.js.map +1 -1
- package/dist/behaviors/data-management.d.ts +11 -19
- package/dist/behaviors/data-management.js +468 -449
- package/dist/behaviors/data-management.js.map +1 -1
- package/dist/behaviors/feedback.d.ts +6 -6
- package/dist/behaviors/feedback.js +312 -278
- package/dist/behaviors/feedback.js.map +1 -1
- package/dist/behaviors/game-core.d.ts +11 -12
- package/dist/behaviors/game-core.js +357 -406
- package/dist/behaviors/game-core.js.map +1 -1
- package/dist/behaviors/game-entity.d.ts +13 -14
- package/dist/behaviors/game-entity.js +622 -592
- package/dist/behaviors/game-entity.js.map +1 -1
- package/dist/behaviors/game-ui.d.ts +9 -10
- package/dist/behaviors/game-ui.js +522 -459
- package/dist/behaviors/game-ui.js.map +1 -1
- package/dist/behaviors/index.d.ts +3 -3
- package/dist/behaviors/index.js +3876 -3843
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/registry.d.ts +14 -24
- package/dist/behaviors/registry.js +3868 -3803
- package/dist/behaviors/registry.js.map +1 -1
- package/dist/behaviors/types.d.ts +14 -138
- package/dist/behaviors/types.js +10 -47
- package/dist/behaviors/types.js.map +1 -1
- package/dist/behaviors/ui-interaction.d.ts +13 -20
- package/dist/behaviors/ui-interaction.js +961 -1043
- package/dist/behaviors/ui-interaction.js.map +1 -1
- package/dist/index.d.ts +44 -11
- package/dist/index.js +3913 -3870
- package/dist/index.js.map +1 -1
- package/dist/modules/index.js +11 -0
- package/dist/modules/index.js.map +1 -1
- package/dist/modules/str.js +11 -0
- package/dist/modules/str.js.map +1 -1
- package/dist/registry.js +11 -0
- package/dist/registry.js.map +1 -1
- package/package.json +3 -2
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import '@almadar/core/types';
|
|
1
|
+
import { OrbitalSchema } from '@almadar/core/types';
|
|
3
2
|
|
|
4
3
|
/**
|
|
5
4
|
* Async Behaviors
|
|
6
5
|
*
|
|
7
6
|
* Standard behaviors for asynchronous operations like loading,
|
|
8
7
|
* fetching, submission, retry, and polling.
|
|
8
|
+
* Each behavior is a self-contained OrbitalSchema that can function as a standalone .orb file.
|
|
9
9
|
*
|
|
10
10
|
* @packageDocumentation
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
declare const LOADING_BEHAVIOR:
|
|
14
|
-
declare const FETCH_BEHAVIOR:
|
|
15
|
-
declare const SUBMIT_BEHAVIOR:
|
|
16
|
-
declare const RETRY_BEHAVIOR:
|
|
17
|
-
declare const POLL_BEHAVIOR:
|
|
18
|
-
declare const ASYNC_BEHAVIORS:
|
|
13
|
+
declare const LOADING_BEHAVIOR: OrbitalSchema;
|
|
14
|
+
declare const FETCH_BEHAVIOR: OrbitalSchema;
|
|
15
|
+
declare const SUBMIT_BEHAVIOR: OrbitalSchema;
|
|
16
|
+
declare const RETRY_BEHAVIOR: OrbitalSchema;
|
|
17
|
+
declare const POLL_BEHAVIOR: OrbitalSchema;
|
|
18
|
+
declare const ASYNC_BEHAVIORS: OrbitalSchema[];
|
|
19
19
|
|
|
20
20
|
export { ASYNC_BEHAVIORS, FETCH_BEHAVIOR, LOADING_BEHAVIOR, POLL_BEHAVIOR, RETRY_BEHAVIOR, SUBMIT_BEHAVIOR };
|