@nordcraft/core 1.0.77 → 1.0.79
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/api/ToddleApiV2.d.ts +3 -3
- package/dist/api/apiTypes.d.ts +2 -2
- package/dist/component/component.types.d.ts +8 -1
- package/dist/component/component.types.js.map +1 -1
- package/dist/component/schemas/action-schema.d.ts +3 -0
- package/dist/component/schemas/action-schema.js +169 -0
- package/dist/component/schemas/action-schema.js.map +1 -0
- package/dist/component/schemas/api-schema.d.ts +3 -0
- package/dist/component/schemas/api-schema.js +174 -0
- package/dist/component/schemas/api-schema.js.map +1 -0
- package/dist/component/schemas/attribute-schema.d.ts +3 -0
- package/dist/component/schemas/attribute-schema.js +12 -0
- package/dist/component/schemas/attribute-schema.js.map +1 -0
- package/dist/component/schemas/component-schema.d.ts +6 -0
- package/dist/component/schemas/component-schema.js +132 -0
- package/dist/component/schemas/component-schema.js.map +1 -0
- package/dist/component/schemas/context-schema.d.ts +3 -0
- package/dist/component/schemas/context-schema.js +20 -0
- package/dist/component/schemas/context-schema.js.map +1 -0
- package/dist/component/schemas/event-schema.d.ts +4 -0
- package/dist/component/schemas/event-schema.js +25 -0
- package/dist/component/schemas/event-schema.js.map +1 -0
- package/dist/component/schemas/formula-schema.d.ts +5 -0
- package/dist/component/schemas/formula-schema.js +203 -0
- package/dist/component/schemas/formula-schema.js.map +1 -0
- package/dist/component/schemas/node-schema.d.ts +3 -0
- package/dist/component/schemas/node-schema.js +159 -0
- package/dist/component/schemas/node-schema.js.map +1 -0
- package/dist/component/schemas/route-schema.d.ts +3 -0
- package/dist/component/schemas/route-schema.js +88 -0
- package/dist/component/schemas/route-schema.js.map +1 -0
- package/dist/component/schemas/variable-schema.d.ts +3 -0
- package/dist/component/schemas/variable-schema.js +8 -0
- package/dist/component/schemas/variable-schema.js.map +1 -0
- package/dist/component/schemas/workflow-schema.d.ts +3 -0
- package/dist/component/schemas/workflow-schema.js +23 -0
- package/dist/component/schemas/workflow-schema.js.map +1 -0
- package/dist/component/schemas/zod-schemas.d.ts +26 -3
- package/dist/component/schemas/zod-schemas.js +4 -1077
- package/dist/component/schemas/zod-schemas.js.map +1 -1
- package/dist/styling/style.css.d.ts +3 -1
- package/dist/styling/style.css.js +124 -128
- package/dist/styling/style.css.js.map +1 -1
- package/dist/styling/theme.const.d.ts +2 -0
- package/dist/styling/theme.const.js +2 -0
- package/dist/styling/theme.const.js.map +1 -1
- package/dist/styling/theme.js +2 -2
- package/dist/styling/theme.js.map +1 -1
- package/dist/styling/variantSelector.d.ts +1 -8
- package/dist/styling/variantSelector.js.map +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utils/collections.d.ts +1 -1
- package/dist/utils/collections.js.map +1 -1
- package/package.json +6 -1
- package/src/api/apiTypes.ts +2 -2
- package/src/component/component.types.ts +9 -1
- package/src/component/schemas/action-schema.ts +258 -0
- package/src/component/schemas/api-schema.ts +255 -0
- package/src/component/schemas/attribute-schema.ts +15 -0
- package/src/component/schemas/component-schema.ts +174 -0
- package/src/component/schemas/context-schema.ts +21 -0
- package/src/component/schemas/event-schema.ts +35 -0
- package/src/component/schemas/formula-schema.ts +299 -0
- package/src/component/schemas/node-schema.ts +259 -0
- package/src/component/schemas/route-schema.ts +135 -0
- package/src/component/schemas/variable-schema.ts +11 -0
- package/src/component/schemas/workflow-schema.ts +30 -0
- package/src/component/schemas/zod-schemas.ts +4 -1489
- package/src/styling/style.css.test.ts +929 -0
- package/src/styling/style.css.ts +148 -152
- package/src/styling/theme.const.ts +3 -0
- package/src/styling/theme.test.ts +4 -4
- package/src/styling/theme.ts +2 -2
- package/src/styling/variantSelector.ts +1 -7
- package/src/types.ts +1 -1
- package/src/utils/collections.ts +4 -1
|
@@ -1,4 +1,27 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
export declare const SCHEMA_DESCRIPTIONS: {
|
|
3
|
+
animations: (type: string) => string;
|
|
4
|
+
animationKey: string;
|
|
5
|
+
animationKeyframeKey: string;
|
|
6
|
+
apis: (type: string) => string;
|
|
7
|
+
children: string;
|
|
8
|
+
condition: (type: string) => string;
|
|
9
|
+
formulas: (type: string) => string;
|
|
10
|
+
metadata: (type: string) => string;
|
|
11
|
+
onAttributeChange: (type: string) => string;
|
|
12
|
+
onLoad: (type: string) => string;
|
|
13
|
+
repeat: (type: string) => string;
|
|
14
|
+
repeatKey: (type: string) => string;
|
|
15
|
+
slot: (type: string) => string;
|
|
16
|
+
style: (type: string) => string;
|
|
17
|
+
testData: (type: string) => string;
|
|
18
|
+
variables: (type: string) => string;
|
|
19
|
+
variants: (type: string) => string;
|
|
20
|
+
workflows: (type: string) => string;
|
|
21
|
+
};
|
|
22
|
+
export declare const MetadataSchema: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
23
|
+
comments: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24
|
+
index: z.ZodNumber;
|
|
25
|
+
text: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>>>;
|
|
27
|
+
}, z.core.$strip>>>;
|