@pyreon/meta 0.11.5 → 0.11.7
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 +39 -31
- package/package.json +30 -30
- package/src/index.ts +36 -68
- package/src/tests/exports.test.ts +110 -110
package/README.md
CHANGED
|
@@ -14,46 +14,54 @@ bun add @pyreon/meta
|
|
|
14
14
|
|
|
15
15
|
### Fundamentals
|
|
16
16
|
|
|
17
|
-
| Package
|
|
18
|
-
|
|
|
19
|
-
| `@pyreon/store`
|
|
20
|
-
| `@pyreon/form`
|
|
21
|
-
| `@pyreon/validation`
|
|
22
|
-
| `@pyreon/query`
|
|
23
|
-
| `@pyreon/table`
|
|
24
|
-
| `@pyreon/virtual`
|
|
25
|
-
| `@pyreon/i18n`
|
|
26
|
-
| `@pyreon/feature`
|
|
27
|
-
| `@pyreon/state-tree`
|
|
28
|
-
| `@pyreon/machine`
|
|
29
|
-
| `@pyreon/permissions` | `createPermissions`, `usePermissions`, `PermissionsProvider`
|
|
30
|
-
| `@pyreon/hotkeys`
|
|
31
|
-
| `@pyreon/storage`
|
|
32
|
-
| `@pyreon/charts`
|
|
33
|
-
| `@pyreon/flow`
|
|
34
|
-
| `@pyreon/code`
|
|
17
|
+
| Package | Key Exports |
|
|
18
|
+
| --------------------- | ---------------------------------------------------------------- |
|
|
19
|
+
| `@pyreon/store` | `defineStore`, `signal`, `computed`, `effect`, `batch` |
|
|
20
|
+
| `@pyreon/form` | `useForm`, `useField`, `useFieldArray`, `FormProvider` |
|
|
21
|
+
| `@pyreon/validation` | `zodSchema`, `zodField` |
|
|
22
|
+
| `@pyreon/query` | `useQuery`, `useMutation`, `QueryClient`, `QueryClientProvider` |
|
|
23
|
+
| `@pyreon/table` | `useTable`, `flexRender` |
|
|
24
|
+
| `@pyreon/virtual` | `useVirtualizer`, `useWindowVirtualizer` |
|
|
25
|
+
| `@pyreon/i18n` | `createI18n`, `I18nProvider`, `useI18n`, `Trans` |
|
|
26
|
+
| `@pyreon/feature` | `defineFeature`, `reference` |
|
|
27
|
+
| `@pyreon/state-tree` | `model`, `getSnapshot`, `applySnapshot`, `applyPatch`, `onPatch` |
|
|
28
|
+
| `@pyreon/machine` | `createMachine` |
|
|
29
|
+
| `@pyreon/permissions` | `createPermissions`, `usePermissions`, `PermissionsProvider` |
|
|
30
|
+
| `@pyreon/hotkeys` | `useHotkey`, `useHotkeyScope` |
|
|
31
|
+
| `@pyreon/storage` | `useStorage`, `useCookie`, `useIndexedDB` |
|
|
32
|
+
| `@pyreon/charts` | `Chart` (reactive ECharts with lazy loading) |
|
|
33
|
+
| `@pyreon/flow` | `createFlow`, `Flow`, `Background`, `MiniMap`, `Controls` |
|
|
34
|
+
| `@pyreon/code` | `createEditor`, `CodeEditor`, `DiffEditor`, `TabbedEditor` |
|
|
35
35
|
|
|
36
36
|
### UI System
|
|
37
37
|
|
|
38
|
-
| Package
|
|
39
|
-
|
|
|
40
|
-
| `@pyreon/styler`
|
|
41
|
-
| `@pyreon/hooks`
|
|
42
|
-
| `@pyreon/elements`
|
|
43
|
-
| `@pyreon/unistyle`
|
|
44
|
-
| `@pyreon/coolgrid`
|
|
45
|
-
| `@pyreon/kinetic`
|
|
38
|
+
| Package | Key Exports |
|
|
39
|
+
| ------------------------- | ------------------------------------------------------------------------ |
|
|
40
|
+
| `@pyreon/styler` | `css`, `styled`, `createGlobalStyle`, `keyframes` |
|
|
41
|
+
| `@pyreon/hooks` | 25+ signal-based hooks (`useHover`, `useFocus`, `useBreakpoint`, etc.) |
|
|
42
|
+
| `@pyreon/elements` | `Element`, `Text`, `List`, `Overlay`, `Portal`, `Iterator` |
|
|
43
|
+
| `@pyreon/unistyle` | `makeItResponsive`, `normalizeTheme`, `sortBreakpoints` |
|
|
44
|
+
| `@pyreon/coolgrid` | `Col`, `Container`, `Row` |
|
|
45
|
+
| `@pyreon/kinetic` | `kinetic`, `useAnimationEnd`, `useTransitionState` |
|
|
46
46
|
| `@pyreon/kinetic-presets` | `createFade`, `createSlide`, `createScale`, `createRotate`, `createBlur` |
|
|
47
|
-
| `@pyreon/attrs`
|
|
48
|
-
| `@pyreon/rocketstyle`
|
|
47
|
+
| `@pyreon/attrs` | `attrs` |
|
|
48
|
+
| `@pyreon/rocketstyle` | `rocketstyle` |
|
|
49
49
|
|
|
50
50
|
## Usage
|
|
51
51
|
|
|
52
52
|
```ts
|
|
53
53
|
import {
|
|
54
|
-
defineStore,
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
defineStore,
|
|
55
|
+
signal,
|
|
56
|
+
useQuery,
|
|
57
|
+
useForm,
|
|
58
|
+
useHotkey,
|
|
59
|
+
useStorage,
|
|
60
|
+
Chart,
|
|
61
|
+
createFlow,
|
|
62
|
+
styled,
|
|
63
|
+
useHover,
|
|
64
|
+
} from '@pyreon/meta'
|
|
57
65
|
```
|
|
58
66
|
|
|
59
67
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pyreon/meta",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.7",
|
|
4
4
|
"description": "Pyreon Meta — barrel package re-exporting the full Pyreon fundamentals ecosystem",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Vit Bokisch",
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"url": "https://github.com/pyreon/pyreon.git",
|
|
10
10
|
"directory": "packages/zero/meta"
|
|
11
11
|
},
|
|
12
|
-
"type": "module",
|
|
13
12
|
"files": [
|
|
14
13
|
"lib",
|
|
15
14
|
"!lib/analysis",
|
|
@@ -17,6 +16,7 @@
|
|
|
17
16
|
"LICENSE",
|
|
18
17
|
"README.md"
|
|
19
18
|
],
|
|
19
|
+
"type": "module",
|
|
20
20
|
"main": "./lib/index.js",
|
|
21
21
|
"module": "./lib/index.js",
|
|
22
22
|
"types": "./lib/types/index.d.ts",
|
|
@@ -32,37 +32,37 @@
|
|
|
32
32
|
"dev": "vl_rolldown_build-watch",
|
|
33
33
|
"test": "bun test",
|
|
34
34
|
"typecheck": "tsc --noEmit",
|
|
35
|
-
"lint": "
|
|
35
|
+
"lint": "oxlint ."
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@pyreon/
|
|
39
|
-
"@pyreon/
|
|
40
|
-
"@pyreon/
|
|
41
|
-
"@pyreon/
|
|
42
|
-
"@pyreon/
|
|
43
|
-
"@pyreon/
|
|
44
|
-
"@pyreon/
|
|
45
|
-
"@pyreon/
|
|
46
|
-
"@pyreon/
|
|
47
|
-
"@pyreon/
|
|
48
|
-
"@pyreon/
|
|
49
|
-
"@pyreon/
|
|
50
|
-
"@pyreon/
|
|
51
|
-
"@pyreon/
|
|
52
|
-
"@pyreon/
|
|
53
|
-
"@pyreon/
|
|
54
|
-
"@pyreon/
|
|
55
|
-
"@pyreon/
|
|
56
|
-
"@pyreon/
|
|
57
|
-
"@pyreon/
|
|
58
|
-
"@pyreon/
|
|
59
|
-
"@pyreon/
|
|
60
|
-
"@pyreon/
|
|
61
|
-
"@pyreon/
|
|
62
|
-
"@pyreon/
|
|
63
|
-
"@pyreon/
|
|
38
|
+
"@pyreon/attrs": "^0.11.7",
|
|
39
|
+
"@pyreon/charts": "^0.11.7",
|
|
40
|
+
"@pyreon/code": "^0.11.7",
|
|
41
|
+
"@pyreon/coolgrid": "^0.11.7",
|
|
42
|
+
"@pyreon/elements": "^0.11.7",
|
|
43
|
+
"@pyreon/feature": "^0.11.7",
|
|
44
|
+
"@pyreon/flow": "^0.11.7",
|
|
45
|
+
"@pyreon/form": "^0.11.7",
|
|
46
|
+
"@pyreon/hooks": "^0.11.7",
|
|
47
|
+
"@pyreon/hotkeys": "^0.11.7",
|
|
48
|
+
"@pyreon/i18n": "^0.11.7",
|
|
49
|
+
"@pyreon/kinetic": "^0.11.7",
|
|
50
|
+
"@pyreon/kinetic-presets": "^0.11.7",
|
|
51
|
+
"@pyreon/machine": "^0.11.7",
|
|
52
|
+
"@pyreon/permissions": "^0.11.7",
|
|
53
|
+
"@pyreon/query": "^0.11.7",
|
|
54
|
+
"@pyreon/rocketstyle": "^0.11.7",
|
|
55
|
+
"@pyreon/state-tree": "^0.11.7",
|
|
56
|
+
"@pyreon/storage": "^0.11.7",
|
|
57
|
+
"@pyreon/store": "^0.11.7",
|
|
58
|
+
"@pyreon/styler": "^0.11.7",
|
|
59
|
+
"@pyreon/table": "^0.11.7",
|
|
60
|
+
"@pyreon/ui-core": "^0.11.7",
|
|
61
|
+
"@pyreon/unistyle": "^0.11.7",
|
|
62
|
+
"@pyreon/validation": "^0.11.7",
|
|
63
|
+
"@pyreon/virtual": "^0.11.7"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@pyreon/reactivity": "^0.11.
|
|
66
|
+
"@pyreon/reactivity": "^0.11.7"
|
|
67
67
|
}
|
|
68
68
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ─── Store ───────────────────────────────────────────────────────────────────
|
|
2
2
|
|
|
3
|
-
export type { StoreApi, StorePlugin } from
|
|
3
|
+
export type { StoreApi, StorePlugin } from '@pyreon/store'
|
|
4
4
|
export {
|
|
5
5
|
addStorePlugin,
|
|
6
6
|
batch,
|
|
@@ -10,7 +10,7 @@ export {
|
|
|
10
10
|
resetAllStores,
|
|
11
11
|
resetStore,
|
|
12
12
|
signal,
|
|
13
|
-
} from
|
|
13
|
+
} from '@pyreon/store'
|
|
14
14
|
|
|
15
15
|
// ─── Form ────────────────────────────────────────────────────────────────────
|
|
16
16
|
|
|
@@ -21,7 +21,7 @@ export type {
|
|
|
21
21
|
UseFieldArrayResult,
|
|
22
22
|
UseFieldResult,
|
|
23
23
|
UseFormOptions,
|
|
24
|
-
} from
|
|
24
|
+
} from '@pyreon/form'
|
|
25
25
|
export {
|
|
26
26
|
FormProvider,
|
|
27
27
|
useField,
|
|
@@ -30,16 +30,16 @@ export {
|
|
|
30
30
|
useFormContext,
|
|
31
31
|
useFormState,
|
|
32
32
|
useWatch,
|
|
33
|
-
} from
|
|
33
|
+
} from '@pyreon/form'
|
|
34
34
|
|
|
35
35
|
// ─── Validation ──────────────────────────────────────────────────────────────
|
|
36
36
|
|
|
37
|
-
export type { SchemaAdapter, ValidationIssue } from
|
|
38
|
-
export { zodField, zodSchema } from
|
|
37
|
+
export type { SchemaAdapter, ValidationIssue } from '@pyreon/validation'
|
|
38
|
+
export { zodField, zodSchema } from '@pyreon/validation'
|
|
39
39
|
|
|
40
40
|
// ─── Query ───────────────────────────────────────────────────────────────────
|
|
41
41
|
|
|
42
|
-
export type { UseMutationResult, UseQueryResult } from
|
|
42
|
+
export type { UseMutationResult, UseQueryResult } from '@pyreon/query'
|
|
43
43
|
export {
|
|
44
44
|
QueryClient,
|
|
45
45
|
QueryClientProvider,
|
|
@@ -49,40 +49,31 @@ export {
|
|
|
49
49
|
useMutation,
|
|
50
50
|
useQuery,
|
|
51
51
|
useQueryClient,
|
|
52
|
-
} from
|
|
52
|
+
} from '@pyreon/query'
|
|
53
53
|
|
|
54
54
|
// ─── Table ───────────────────────────────────────────────────────────────────
|
|
55
55
|
|
|
56
|
-
export type { UseTableOptions } from
|
|
57
|
-
export { flexRender, useTable } from
|
|
56
|
+
export type { UseTableOptions } from '@pyreon/table'
|
|
57
|
+
export { flexRender, useTable } from '@pyreon/table'
|
|
58
58
|
|
|
59
59
|
// ─── Virtual ─────────────────────────────────────────────────────────────────
|
|
60
60
|
|
|
61
|
-
export type {
|
|
62
|
-
|
|
63
|
-
UseVirtualizerResult,
|
|
64
|
-
} from "@pyreon/virtual"
|
|
65
|
-
export { useVirtualizer, useWindowVirtualizer } from "@pyreon/virtual"
|
|
61
|
+
export type { UseVirtualizerOptions, UseVirtualizerResult } from '@pyreon/virtual'
|
|
62
|
+
export { useVirtualizer, useWindowVirtualizer } from '@pyreon/virtual'
|
|
66
63
|
|
|
67
64
|
// ─── i18n ────────────────────────────────────────────────────────────────────
|
|
68
65
|
|
|
69
|
-
export type { I18nInstance, I18nOptions } from
|
|
70
|
-
export { createI18n, I18nProvider, Trans, useI18n } from
|
|
66
|
+
export type { I18nInstance, I18nOptions } from '@pyreon/i18n'
|
|
67
|
+
export { createI18n, I18nProvider, Trans, useI18n } from '@pyreon/i18n'
|
|
71
68
|
|
|
72
69
|
// ─── Feature ─────────────────────────────────────────────────────────────────
|
|
73
70
|
|
|
74
|
-
export type { Feature, FeatureConfig } from
|
|
75
|
-
export { defineFeature, reference } from
|
|
71
|
+
export type { Feature, FeatureConfig } from '@pyreon/feature'
|
|
72
|
+
export { defineFeature, reference } from '@pyreon/feature'
|
|
76
73
|
|
|
77
74
|
// ─── Flow ────────────────────────────────────────────────────────────────────
|
|
78
75
|
|
|
79
|
-
export type {
|
|
80
|
-
FlowConfig,
|
|
81
|
-
FlowEdge,
|
|
82
|
-
FlowInstance,
|
|
83
|
-
FlowNode,
|
|
84
|
-
NodeComponentProps,
|
|
85
|
-
} from "@pyreon/flow"
|
|
76
|
+
export type { FlowConfig, FlowEdge, FlowInstance, FlowNode, NodeComponentProps } from '@pyreon/flow'
|
|
86
77
|
export {
|
|
87
78
|
Background,
|
|
88
79
|
Controls,
|
|
@@ -96,28 +87,20 @@ export {
|
|
|
96
87
|
NodeToolbar,
|
|
97
88
|
Panel,
|
|
98
89
|
Position,
|
|
99
|
-
} from
|
|
90
|
+
} from '@pyreon/flow'
|
|
100
91
|
|
|
101
92
|
// ─── Code ────────────────────────────────────────────────────────────────────
|
|
102
93
|
|
|
103
|
-
export type { EditorConfig, EditorInstance } from
|
|
104
|
-
export {
|
|
105
|
-
CodeEditor,
|
|
106
|
-
createEditor,
|
|
107
|
-
DiffEditor,
|
|
108
|
-
TabbedEditor,
|
|
109
|
-
} from "@pyreon/code"
|
|
94
|
+
export type { EditorConfig, EditorInstance } from '@pyreon/code'
|
|
95
|
+
export { CodeEditor, createEditor, DiffEditor, TabbedEditor } from '@pyreon/code'
|
|
110
96
|
|
|
111
97
|
// ─── Charts ──────────────────────────────────────────────────────────────────
|
|
112
98
|
|
|
113
|
-
export { Chart } from
|
|
99
|
+
export { Chart } from '@pyreon/charts'
|
|
114
100
|
|
|
115
101
|
// ─── Hotkeys ─────────────────────────────────────────────────────────────────
|
|
116
102
|
|
|
117
|
-
export {
|
|
118
|
-
useHotkey,
|
|
119
|
-
useHotkeyScope,
|
|
120
|
-
} from "@pyreon/hotkeys"
|
|
103
|
+
export { useHotkey, useHotkeyScope } from '@pyreon/hotkeys'
|
|
121
104
|
|
|
122
105
|
// ─── Storage ─────────────────────────────────────────────────────────────────
|
|
123
106
|
|
|
@@ -127,11 +110,11 @@ export {
|
|
|
127
110
|
useIndexedDB,
|
|
128
111
|
useMemoryStorage,
|
|
129
112
|
useStorage,
|
|
130
|
-
} from
|
|
113
|
+
} from '@pyreon/storage'
|
|
131
114
|
|
|
132
115
|
// ─── State Tree ──────────────────────────────────────────────────────────────
|
|
133
116
|
|
|
134
|
-
export type { ModelDefinition, ModelInstance, Snapshot } from
|
|
117
|
+
export type { ModelDefinition, ModelInstance, Snapshot } from '@pyreon/state-tree'
|
|
135
118
|
export {
|
|
136
119
|
addMiddleware,
|
|
137
120
|
applyPatch,
|
|
@@ -141,23 +124,19 @@ export {
|
|
|
141
124
|
onPatch,
|
|
142
125
|
resetAllHooks,
|
|
143
126
|
resetHook,
|
|
144
|
-
} from
|
|
127
|
+
} from '@pyreon/state-tree'
|
|
145
128
|
|
|
146
129
|
// ─── Machine ─────────────────────────────────────────────────────────────────
|
|
147
130
|
|
|
148
|
-
export { createMachine } from
|
|
131
|
+
export { createMachine } from '@pyreon/machine'
|
|
149
132
|
|
|
150
133
|
// ─── Permissions ─────────────────────────────────────────────────────────────
|
|
151
134
|
|
|
152
|
-
export {
|
|
153
|
-
createPermissions,
|
|
154
|
-
PermissionsProvider,
|
|
155
|
-
usePermissions,
|
|
156
|
-
} from "@pyreon/permissions"
|
|
135
|
+
export { createPermissions, PermissionsProvider, usePermissions } from '@pyreon/permissions'
|
|
157
136
|
|
|
158
137
|
// ─── Styler ──────────────────────────────────────────────────────────────────
|
|
159
138
|
|
|
160
|
-
export { createGlobalStyle, css, keyframes, styled } from
|
|
139
|
+
export { createGlobalStyle, css, keyframes, styled } from '@pyreon/styler'
|
|
161
140
|
|
|
162
141
|
// ─── Hooks ───────────────────────────────────────────────────────────────────
|
|
163
142
|
|
|
@@ -182,34 +161,23 @@ export {
|
|
|
182
161
|
useTimeout,
|
|
183
162
|
useToggle,
|
|
184
163
|
useWindowResize,
|
|
185
|
-
} from
|
|
164
|
+
} from '@pyreon/hooks'
|
|
186
165
|
|
|
187
166
|
// ─── Elements ────────────────────────────────────────────────────────────────
|
|
188
167
|
|
|
189
|
-
export {
|
|
190
|
-
Element,
|
|
191
|
-
Iterator,
|
|
192
|
-
List,
|
|
193
|
-
Overlay,
|
|
194
|
-
Portal,
|
|
195
|
-
Text,
|
|
196
|
-
} from "@pyreon/elements"
|
|
168
|
+
export { Element, Iterator, List, Overlay, Portal, Text } from '@pyreon/elements'
|
|
197
169
|
|
|
198
170
|
// ─── Unistyle ────────────────────────────────────────────────────────────────
|
|
199
171
|
|
|
200
|
-
export {
|
|
201
|
-
makeItResponsive,
|
|
202
|
-
normalizeTheme,
|
|
203
|
-
sortBreakpoints,
|
|
204
|
-
} from "@pyreon/unistyle"
|
|
172
|
+
export { makeItResponsive, normalizeTheme, sortBreakpoints } from '@pyreon/unistyle'
|
|
205
173
|
|
|
206
174
|
// ─── Coolgrid ────────────────────────────────────────────────────────────────
|
|
207
175
|
|
|
208
|
-
export { Col, Container, Row } from
|
|
176
|
+
export { Col, Container, Row } from '@pyreon/coolgrid'
|
|
209
177
|
|
|
210
178
|
// ─── Kinetic ─────────────────────────────────────────────────────────────────
|
|
211
179
|
|
|
212
|
-
export { kinetic, useAnimationEnd, useTransitionState } from
|
|
180
|
+
export { kinetic, useAnimationEnd, useTransitionState } from '@pyreon/kinetic'
|
|
213
181
|
|
|
214
182
|
// ─── Kinetic Presets ─────────────────────────────────────────────────────────
|
|
215
183
|
|
|
@@ -219,12 +187,12 @@ export {
|
|
|
219
187
|
createRotate,
|
|
220
188
|
createScale,
|
|
221
189
|
createSlide,
|
|
222
|
-
} from
|
|
190
|
+
} from '@pyreon/kinetic-presets'
|
|
223
191
|
|
|
224
192
|
// ─── Attrs ───────────────────────────────────────────────────────────────────
|
|
225
193
|
|
|
226
|
-
export { attrs } from
|
|
194
|
+
export { attrs } from '@pyreon/attrs'
|
|
227
195
|
|
|
228
196
|
// ─── Rocketstyle ─────────────────────────────────────────────────────────────
|
|
229
197
|
|
|
230
|
-
export { rocketstyle } from
|
|
198
|
+
export { rocketstyle } from '@pyreon/rocketstyle'
|
|
@@ -1,80 +1,80 @@
|
|
|
1
|
-
import { describe, expect, it } from
|
|
2
|
-
import * as meta from
|
|
1
|
+
import { describe, expect, it } from 'vitest'
|
|
2
|
+
import * as meta from '../index'
|
|
3
3
|
|
|
4
|
-
describe(
|
|
4
|
+
describe('@pyreon/meta exports', () => {
|
|
5
5
|
// ─── Fundamentals ───────────────────────────────────────────────────────
|
|
6
6
|
const fundamentals = [
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
7
|
+
'defineStore',
|
|
8
|
+
'signal',
|
|
9
|
+
'computed',
|
|
10
|
+
'effect',
|
|
11
|
+
'batch',
|
|
12
|
+
'resetStore',
|
|
13
|
+
'resetAllStores',
|
|
14
|
+
'addStorePlugin',
|
|
15
|
+
'useForm',
|
|
16
|
+
'useField',
|
|
17
|
+
'useFieldArray',
|
|
18
|
+
'FormProvider',
|
|
19
|
+
'useFormContext',
|
|
20
|
+
'useFormState',
|
|
21
|
+
'useWatch',
|
|
22
|
+
'zodSchema',
|
|
23
|
+
'zodField',
|
|
24
|
+
'QueryClient',
|
|
25
|
+
'QueryClientProvider',
|
|
26
|
+
'useQuery',
|
|
27
|
+
'useMutation',
|
|
28
|
+
'useQueryClient',
|
|
29
|
+
'useInfiniteQuery',
|
|
30
|
+
'useIsFetching',
|
|
31
|
+
'useIsMutating',
|
|
32
|
+
'useTable',
|
|
33
|
+
'flexRender',
|
|
34
|
+
'useVirtualizer',
|
|
35
|
+
'useWindowVirtualizer',
|
|
36
|
+
'createI18n',
|
|
37
|
+
'I18nProvider',
|
|
38
|
+
'useI18n',
|
|
39
|
+
'Trans',
|
|
40
|
+
'defineFeature',
|
|
41
|
+
'reference',
|
|
42
|
+
'Chart',
|
|
43
|
+
'useHotkey',
|
|
44
|
+
'useHotkeyScope',
|
|
45
|
+
'useStorage',
|
|
46
|
+
'useCookie',
|
|
47
|
+
'useIndexedDB',
|
|
48
|
+
'useMemoryStorage',
|
|
49
|
+
'createStorage',
|
|
50
|
+
'model',
|
|
51
|
+
'addMiddleware',
|
|
52
|
+
'applyPatch',
|
|
53
|
+
'applySnapshot',
|
|
54
|
+
'getSnapshot',
|
|
55
|
+
'onPatch',
|
|
56
|
+
'resetAllHooks',
|
|
57
|
+
'resetHook',
|
|
58
|
+
'createMachine',
|
|
59
|
+
'createPermissions',
|
|
60
|
+
'PermissionsProvider',
|
|
61
|
+
'usePermissions',
|
|
62
|
+
'createFlow',
|
|
63
|
+
'Flow',
|
|
64
|
+
'Background',
|
|
65
|
+
'Controls',
|
|
66
|
+
'MiniMap',
|
|
67
|
+
'Handle',
|
|
68
|
+
'Position',
|
|
69
|
+
'computeLayout',
|
|
70
|
+
'flowStyles',
|
|
71
|
+
'NodeResizer',
|
|
72
|
+
'NodeToolbar',
|
|
73
|
+
'Panel',
|
|
74
|
+
'createEditor',
|
|
75
|
+
'CodeEditor',
|
|
76
|
+
'DiffEditor',
|
|
77
|
+
'TabbedEditor',
|
|
78
78
|
]
|
|
79
79
|
|
|
80
80
|
for (const name of fundamentals) {
|
|
@@ -85,42 +85,42 @@ describe("@pyreon/meta exports", () => {
|
|
|
85
85
|
|
|
86
86
|
// ─── UI System ──────────────────────────────────────────────────────────
|
|
87
87
|
const uiSystem = [
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
88
|
+
'css',
|
|
89
|
+
'styled',
|
|
90
|
+
'createGlobalStyle',
|
|
91
|
+
'keyframes',
|
|
92
|
+
'useBreakpoint',
|
|
93
|
+
'useClickOutside',
|
|
94
|
+
'useColorScheme',
|
|
95
|
+
'useHover',
|
|
96
|
+
'useFocus',
|
|
97
|
+
'useMediaQuery',
|
|
98
|
+
'useToggle',
|
|
99
|
+
'useElementSize',
|
|
100
|
+
'useIntersection',
|
|
101
|
+
'useInterval',
|
|
102
|
+
'Element',
|
|
103
|
+
'Text',
|
|
104
|
+
'List',
|
|
105
|
+
'Overlay',
|
|
106
|
+
'Portal',
|
|
107
|
+
'Iterator',
|
|
108
|
+
'makeItResponsive',
|
|
109
|
+
'normalizeTheme',
|
|
110
|
+
'sortBreakpoints',
|
|
111
|
+
'Col',
|
|
112
|
+
'Container',
|
|
113
|
+
'Row',
|
|
114
|
+
'kinetic',
|
|
115
|
+
'useAnimationEnd',
|
|
116
|
+
'useTransitionState',
|
|
117
|
+
'createBlur',
|
|
118
|
+
'createFade',
|
|
119
|
+
'createRotate',
|
|
120
|
+
'createScale',
|
|
121
|
+
'createSlide',
|
|
122
|
+
'attrs',
|
|
123
|
+
'rocketstyle',
|
|
124
124
|
]
|
|
125
125
|
|
|
126
126
|
for (const name of uiSystem) {
|