@webstudio-is/sdk 0.191.0 → 0.191.4

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.
Files changed (40) hide show
  1. package/package.json +5 -5
  2. package/lib/__generated__/normalize.css.js +0 -505
  3. package/lib/index.js +0 -1300
  4. package/lib/runtime.js +0 -101
  5. package/lib/types/__generated__/normalize.css.d.ts +0 -57
  6. package/lib/types/expression.d.ts +0 -53
  7. package/lib/types/expression.test.d.ts +0 -1
  8. package/lib/types/form-fields.d.ts +0 -8
  9. package/lib/types/index.d.ts +0 -19
  10. package/lib/types/instances-utils.d.ts +0 -5
  11. package/lib/types/instances-utils.test.d.ts +0 -1
  12. package/lib/types/jsx.d.ts +0 -151
  13. package/lib/types/jsx.test.d.ts +0 -1
  14. package/lib/types/page-meta-generator.d.ts +0 -24
  15. package/lib/types/page-meta-generator.test.d.ts +0 -1
  16. package/lib/types/page-utils.d.ts +0 -24
  17. package/lib/types/page-utils.test.d.ts +0 -1
  18. package/lib/types/resource-loader.d.ts +0 -30
  19. package/lib/types/resource-loader.test.d.ts +0 -1
  20. package/lib/types/resources-generator.d.ts +0 -22
  21. package/lib/types/resources-generator.test.d.ts +0 -1
  22. package/lib/types/runtime.d.ts +0 -3
  23. package/lib/types/schema/assets.d.ts +0 -527
  24. package/lib/types/schema/breakpoints.d.ts +0 -56
  25. package/lib/types/schema/data-sources.d.ts +0 -303
  26. package/lib/types/schema/deployment.d.ts +0 -41
  27. package/lib/types/schema/instances.d.ts +0 -417
  28. package/lib/types/schema/pages.d.ts +0 -675
  29. package/lib/types/schema/props.d.ts +0 -549
  30. package/lib/types/schema/resources.d.ts +0 -121
  31. package/lib/types/schema/style-source-selections.d.ts +0 -23
  32. package/lib/types/schema/style-sources.d.ts +0 -62
  33. package/lib/types/schema/styles.d.ts +0 -2629
  34. package/lib/types/schema/webstudio.d.ts +0 -2374
  35. package/lib/types/scope.d.ts +0 -16
  36. package/lib/types/scope.test.d.ts +0 -1
  37. package/lib/types/testing.d.ts +0 -1
  38. package/lib/types/to-string.d.ts +0 -2
  39. package/lib/types/url-pattern.d.ts +0 -2
  40. package/lib/types/url-pattern.test.d.ts +0 -1
@@ -1,62 +0,0 @@
1
- import { z } from "zod";
2
- declare const StyleSourceToken: z.ZodObject<{
3
- type: z.ZodLiteral<"token">;
4
- id: z.ZodString;
5
- name: z.ZodString;
6
- }, "strip", z.ZodTypeAny, {
7
- type: "token";
8
- id: string;
9
- name: string;
10
- }, {
11
- type: "token";
12
- id: string;
13
- name: string;
14
- }>;
15
- export type StyleSourceToken = z.infer<typeof StyleSourceToken>;
16
- export declare const StyleSource: z.ZodUnion<[z.ZodObject<{
17
- type: z.ZodLiteral<"token">;
18
- id: z.ZodString;
19
- name: z.ZodString;
20
- }, "strip", z.ZodTypeAny, {
21
- type: "token";
22
- id: string;
23
- name: string;
24
- }, {
25
- type: "token";
26
- id: string;
27
- name: string;
28
- }>, z.ZodObject<{
29
- type: z.ZodLiteral<"local">;
30
- id: z.ZodString;
31
- }, "strip", z.ZodTypeAny, {
32
- type: "local";
33
- id: string;
34
- }, {
35
- type: "local";
36
- id: string;
37
- }>]>;
38
- export type StyleSource = z.infer<typeof StyleSource>;
39
- export declare const StyleSources: z.ZodMap<z.ZodString, z.ZodUnion<[z.ZodObject<{
40
- type: z.ZodLiteral<"token">;
41
- id: z.ZodString;
42
- name: z.ZodString;
43
- }, "strip", z.ZodTypeAny, {
44
- type: "token";
45
- id: string;
46
- name: string;
47
- }, {
48
- type: "token";
49
- id: string;
50
- name: string;
51
- }>, z.ZodObject<{
52
- type: z.ZodLiteral<"local">;
53
- id: z.ZodString;
54
- }, "strip", z.ZodTypeAny, {
55
- type: "local";
56
- id: string;
57
- }, {
58
- type: "local";
59
- id: string;
60
- }>]>>;
61
- export type StyleSources = z.infer<typeof StyleSources>;
62
- export {};