@ws-ui/shared 1.9.3 → 1.10.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.
@@ -205,7 +205,15 @@ declare namespace datasources {
205
205
  namespace: string;
206
206
  schema?: {
207
207
  type: string;
208
- properties: { name: string; type: string; initialValue: any }[];
208
+ properties: {
209
+ name: string;
210
+ type: string;
211
+ initialValue: any;
212
+ attributes?: {
213
+ name: string;
214
+ type: string;
215
+ }[];
216
+ }[];
209
217
  };
210
218
  }
211
219
 
@@ -141,6 +141,7 @@ declare namespace webforms {
141
141
  type Content = {
142
142
  components: Record<string, CraftComponent>;
143
143
  metadata?: Metadata;
144
+ dialogs?: string[];
144
145
  };
145
146
 
146
147
  // ------------------ EVENTS --------------------------