@lightspeed/crane-api 2.0.0 → 2.1.0

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/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference path="../types.d.ts" />
1
2
  import * as vue from 'vue';
2
3
  import { Reactive, ComputedRef, Component, App, Ref } from 'vue';
3
4
  import { z } from 'zod';
@@ -448,12 +449,19 @@ declare const CollectionDescriptorSchema: z.ZodObject<{
448
449
  }>]>>;
449
450
  }, z.core.$strict>>;
450
451
  capitalization: z.ZodOptional<z.ZodEnum<{
452
+ small: "small";
451
453
  none: "none";
452
454
  all: "all";
453
- small: "small";
454
455
  }>>;
455
456
  }, z.core.$strict>, z.ZodObject<{
456
457
  type: z.ZodLiteral<"DIVIDER">;
458
+ }, z.core.$strict>, z.ZodObject<{
459
+ type: z.ZodLiteral<"INFO">;
460
+ description: z.ZodOptional<z.ZodString>;
461
+ button: z.ZodOptional<z.ZodObject<{
462
+ label: z.ZodOptional<z.ZodString>;
463
+ link: z.ZodOptional<z.ZodURL>;
464
+ }, z.core.$strict>>;
457
465
  }, z.core.$strict>], "type">>>;
458
466
  layoutId: z.ZodOptional<z.ZodString>;
459
467
  }, z.core.$strict>>;
@@ -697,6 +705,7 @@ declare const DesignEditorTypeSchema: z.ZodEnum<{
697
705
  TOGGLE: "TOGGLE";
698
706
  BUTTON: "BUTTON";
699
707
  LOGO: "LOGO";
708
+ INFO: "INFO";
700
709
  DIVIDER: "DIVIDER";
701
710
  TEXT: "TEXT";
702
711
  BACKGROUND: "BACKGROUND";
@@ -713,6 +722,7 @@ declare const DesignEditorType: {
713
722
  readonly COLOR_PICKER: "COLOR_PICKER";
714
723
  readonly LOGO: "LOGO";
715
724
  readonly DIVIDER: "DIVIDER";
725
+ readonly INFO: "INFO";
716
726
  };
717
727
  type DesignEditorType = z.infer<typeof DesignEditorTypeSchema>;
718
728
 
@@ -1232,9 +1242,9 @@ declare const LogoDesignEditorDefaultsSchema: z.ZodObject<{
1232
1242
  }>]>>;
1233
1243
  }, z.core.$strict>>;
1234
1244
  capitalization: z.ZodOptional<z.ZodEnum<{
1245
+ small: "small";
1235
1246
  none: "none";
1236
1247
  all: "all";
1237
- small: "small";
1238
1248
  }>>;
1239
1249
  }, z.core.$strict>;
1240
1250
  declare const LogoDesignEditorSchema: z.ZodObject<{
@@ -1279,9 +1289,9 @@ declare const LogoDesignEditorSchema: z.ZodObject<{
1279
1289
  }>]>>;
1280
1290
  }, z.core.$strict>>;
1281
1291
  capitalization: z.ZodOptional<z.ZodEnum<{
1292
+ small: "small";
1282
1293
  none: "none";
1283
1294
  all: "all";
1284
- small: "small";
1285
1295
  }>>;
1286
1296
  }, z.core.$strict>>;
1287
1297
  }, z.core.$strict>;
@@ -3484,12 +3494,19 @@ declare const DesignEditorDefaultsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3484
3494
  }>]>>;
3485
3495
  }, z.core.$strict>>;
3486
3496
  capitalization: z.ZodOptional<z.ZodEnum<{
3497
+ small: "small";
3487
3498
  none: "none";
3488
3499
  all: "all";
3489
- small: "small";
3490
3500
  }>>;
3491
3501
  }, z.core.$strict>, z.ZodObject<{
3492
3502
  type: z.ZodLiteral<"DIVIDER">;
3503
+ }, z.core.$strict>, z.ZodObject<{
3504
+ type: z.ZodLiteral<"INFO">;
3505
+ description: z.ZodOptional<z.ZodString>;
3506
+ button: z.ZodOptional<z.ZodObject<{
3507
+ label: z.ZodOptional<z.ZodString>;
3508
+ link: z.ZodOptional<z.ZodURL>;
3509
+ }, z.core.$strict>>;
3493
3510
  }, z.core.$strict>], "type">;
3494
3511
 
3495
3512
  type InputboxContentEditor = z.infer<typeof InputboxContentEditorSchema>;
@@ -3895,9 +3912,9 @@ declare const DesignEditorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3895
3912
  }>]>>;
3896
3913
  }, z.core.$strict>>;
3897
3914
  capitalization: z.ZodOptional<z.ZodEnum<{
3915
+ small: "small";
3898
3916
  none: "none";
3899
3917
  all: "all";
3900
- small: "small";
3901
3918
  }>>;
3902
3919
  }, z.core.$strict>>;
3903
3920
  }, z.core.$strict>, z.ZodObject<{
@@ -3906,6 +3923,22 @@ declare const DesignEditorSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
3906
3923
  defaults: z.ZodOptional<z.ZodObject<{
3907
3924
  type: z.ZodLiteral<"DIVIDER">;
3908
3925
  }, z.core.$strict>>;
3926
+ }, z.core.$strict>, z.ZodObject<{
3927
+ type: z.ZodLiteral<"INFO">;
3928
+ label: z.ZodString;
3929
+ description: z.ZodString;
3930
+ button: z.ZodOptional<z.ZodObject<{
3931
+ label: z.ZodString;
3932
+ link: z.ZodURL;
3933
+ }, z.core.$strict>>;
3934
+ defaults: z.ZodOptional<z.ZodObject<{
3935
+ type: z.ZodLiteral<"INFO">;
3936
+ description: z.ZodOptional<z.ZodString>;
3937
+ button: z.ZodOptional<z.ZodObject<{
3938
+ label: z.ZodOptional<z.ZodString>;
3939
+ link: z.ZodOptional<z.ZodURL>;
3940
+ }, z.core.$strict>>;
3941
+ }, z.core.$strict>>;
3909
3942
  }, z.core.$strict>], "type">;
3910
3943
  declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
3911
3944
  type: z.ZodLiteral<"TEXT">;
@@ -4120,9 +4153,9 @@ declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedU
4120
4153
  }>]>>;
4121
4154
  }, z.core.$strict>>;
4122
4155
  capitalization: z.ZodOptional<z.ZodEnum<{
4156
+ small: "small";
4123
4157
  none: "none";
4124
4158
  all: "all";
4125
- small: "small";
4126
4159
  }>>;
4127
4160
  }, z.core.$strict>>;
4128
4161
  }, z.core.$strict>, z.ZodObject<{
@@ -4131,6 +4164,22 @@ declare const DesignSettingsSchema: z.ZodRecord<z.ZodString, z.ZodDiscriminatedU
4131
4164
  defaults: z.ZodOptional<z.ZodObject<{
4132
4165
  type: z.ZodLiteral<"DIVIDER">;
4133
4166
  }, z.core.$strict>>;
4167
+ }, z.core.$strict>, z.ZodObject<{
4168
+ type: z.ZodLiteral<"INFO">;
4169
+ label: z.ZodString;
4170
+ description: z.ZodString;
4171
+ button: z.ZodOptional<z.ZodObject<{
4172
+ label: z.ZodString;
4173
+ link: z.ZodURL;
4174
+ }, z.core.$strict>>;
4175
+ defaults: z.ZodOptional<z.ZodObject<{
4176
+ type: z.ZodLiteral<"INFO">;
4177
+ description: z.ZodOptional<z.ZodString>;
4178
+ button: z.ZodOptional<z.ZodObject<{
4179
+ label: z.ZodOptional<z.ZodString>;
4180
+ link: z.ZodOptional<z.ZodURL>;
4181
+ }, z.core.$strict>>;
4182
+ }, z.core.$strict>>;
4134
4183
  }, z.core.$strict>], "type">>;
4135
4184
 
4136
4185
  declare const ImageDesignEditorDefaultsSchema: z.ZodObject<{
@@ -4186,6 +4235,32 @@ declare const ImageDesignEditorSchema: z.ZodObject<{
4186
4235
  }, z.core.$strict>>;
4187
4236
  }, z.core.$strict>;
4188
4237
 
4238
+ declare const InfoDesignEditorDefaultsSchema: z.ZodObject<{
4239
+ type: z.ZodLiteral<"INFO">;
4240
+ description: z.ZodOptional<z.ZodString>;
4241
+ button: z.ZodOptional<z.ZodObject<{
4242
+ label: z.ZodOptional<z.ZodString>;
4243
+ link: z.ZodOptional<z.ZodURL>;
4244
+ }, z.core.$strict>>;
4245
+ }, z.core.$strict>;
4246
+ declare const InfoDesignEditorSchema: z.ZodObject<{
4247
+ type: z.ZodLiteral<"INFO">;
4248
+ label: z.ZodString;
4249
+ description: z.ZodString;
4250
+ button: z.ZodOptional<z.ZodObject<{
4251
+ label: z.ZodString;
4252
+ link: z.ZodURL;
4253
+ }, z.core.$strict>>;
4254
+ defaults: z.ZodOptional<z.ZodObject<{
4255
+ type: z.ZodLiteral<"INFO">;
4256
+ description: z.ZodOptional<z.ZodString>;
4257
+ button: z.ZodOptional<z.ZodObject<{
4258
+ label: z.ZodOptional<z.ZodString>;
4259
+ link: z.ZodOptional<z.ZodURL>;
4260
+ }, z.core.$strict>>;
4261
+ }, z.core.$strict>>;
4262
+ }, z.core.$strict>;
4263
+
4189
4264
  declare const SelectboxDesignEditorDefaultsSchema: z.ZodObject<{
4190
4265
  type: z.ZodLiteral<"SELECTBOX">;
4191
4266
  value: z.ZodOptional<z.ZodString>;
@@ -4275,6 +4350,7 @@ type BackgroundDesignEditor = z.infer<typeof BackgroundDesignEditorSchema>;
4275
4350
  type ColorPickerDesignEditor = z.infer<typeof ColorPickerDesignEditorSchema>;
4276
4351
  type LogoDesignEditor = z.infer<typeof LogoDesignEditorSchema>;
4277
4352
  type DividerDesignEditor = z.infer<typeof DividerDesignEditorSchema>;
4353
+ type InfoDesignEditor = z.infer<typeof InfoDesignEditorSchema>;
4278
4354
  type DesignEditor = z.infer<typeof DesignEditorSchema>;
4279
4355
  type DesignSettings = z.infer<typeof DesignSettingsSchema>;
4280
4356
 
@@ -4286,6 +4362,7 @@ type SelectboxDesignEditorDefaults = z.infer<typeof SelectboxDesignEditorDefault
4286
4362
  type ColorPickerDesignEditorDefaults = z.infer<typeof ColorPickerDesignEditorDefaultsSchema>;
4287
4363
  type BackgroundDesignEditorDefaults = z.infer<typeof BackgroundDesignEditorDefaultsSchema>;
4288
4364
  type LogoDesignEditorDefaults = z.infer<typeof LogoDesignEditorDefaultsSchema>;
4365
+ type InfoDesignEditorDefaults = z.infer<typeof InfoDesignEditorDefaultsSchema>;
4289
4366
  type DesignEditorDefaults = z.infer<typeof DesignEditorDefaultsSchema>;
4290
4367
 
4291
4368
  interface TextDesignEditorDefaultsTransformed {
@@ -4705,9 +4782,9 @@ declare const LayoutDesignOverrideSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4705
4782
  }>]>>;
4706
4783
  }, z.core.$strict>>;
4707
4784
  capitalization: z.ZodOptional<z.ZodEnum<{
4785
+ small: "small";
4708
4786
  none: "none";
4709
4787
  all: "all";
4710
- small: "small";
4711
4788
  }>>;
4712
4789
  }, z.core.$strict>>;
4713
4790
  }, z.core.$strict>, z.ZodObject<{
@@ -4716,6 +4793,17 @@ declare const LayoutDesignOverrideSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
4716
4793
  defaults: z.ZodOptional<z.ZodObject<{
4717
4794
  type: z.ZodLiteral<"DIVIDER">;
4718
4795
  }, z.core.$strict>>;
4796
+ }, z.core.$strict>, z.ZodObject<{
4797
+ type: z.ZodLiteral<"INFO">;
4798
+ fieldName: z.ZodString;
4799
+ defaults: z.ZodOptional<z.ZodObject<{
4800
+ type: z.ZodLiteral<"INFO">;
4801
+ description: z.ZodOptional<z.ZodString>;
4802
+ button: z.ZodOptional<z.ZodObject<{
4803
+ label: z.ZodOptional<z.ZodString>;
4804
+ link: z.ZodOptional<z.ZodURL>;
4805
+ }, z.core.$strict>>;
4806
+ }, z.core.$strict>>;
4719
4807
  }, z.core.$strict>], "type">;
4720
4808
  declare const LayoutSettingsSchema: z.ZodObject<{
4721
4809
  layoutId: z.ZodString;
@@ -4964,9 +5052,9 @@ declare const LayoutSettingsSchema: z.ZodObject<{
4964
5052
  }>]>>;
4965
5053
  }, z.core.$strict>>;
4966
5054
  capitalization: z.ZodOptional<z.ZodEnum<{
5055
+ small: "small";
4967
5056
  none: "none";
4968
5057
  all: "all";
4969
- small: "small";
4970
5058
  }>>;
4971
5059
  }, z.core.$strict>>;
4972
5060
  }, z.core.$strict>, z.ZodObject<{
@@ -4975,6 +5063,17 @@ declare const LayoutSettingsSchema: z.ZodObject<{
4975
5063
  defaults: z.ZodOptional<z.ZodObject<{
4976
5064
  type: z.ZodLiteral<"DIVIDER">;
4977
5065
  }, z.core.$strict>>;
5066
+ }, z.core.$strict>, z.ZodObject<{
5067
+ type: z.ZodLiteral<"INFO">;
5068
+ fieldName: z.ZodString;
5069
+ defaults: z.ZodOptional<z.ZodObject<{
5070
+ type: z.ZodLiteral<"INFO">;
5071
+ description: z.ZodOptional<z.ZodString>;
5072
+ button: z.ZodOptional<z.ZodObject<{
5073
+ label: z.ZodOptional<z.ZodString>;
5074
+ link: z.ZodOptional<z.ZodURL>;
5075
+ }, z.core.$strict>>;
5076
+ }, z.core.$strict>>;
4978
5077
  }, z.core.$strict>], "type">>;
4979
5078
  }, z.core.$strict>;
4980
5079
 
@@ -5615,9 +5714,9 @@ declare const ManifestSchema: z.ZodObject<{
5615
5714
  }>]>>;
5616
5715
  }, z.core.$strict>>;
5617
5716
  capitalization: z.ZodOptional<z.ZodEnum<{
5717
+ small: "small";
5618
5718
  none: "none";
5619
5719
  all: "all";
5620
- small: "small";
5621
5720
  }>>;
5622
5721
  }, z.core.$strict>>;
5623
5722
  }, z.core.$strict>, z.ZodObject<{
@@ -5626,6 +5725,22 @@ declare const ManifestSchema: z.ZodObject<{
5626
5725
  defaults: z.ZodOptional<z.ZodObject<{
5627
5726
  type: z.ZodLiteral<"DIVIDER">;
5628
5727
  }, z.core.$strict>>;
5728
+ }, z.core.$strict>, z.ZodObject<{
5729
+ type: z.ZodLiteral<"INFO">;
5730
+ label: z.ZodString;
5731
+ description: z.ZodString;
5732
+ button: z.ZodOptional<z.ZodObject<{
5733
+ label: z.ZodString;
5734
+ link: z.ZodURL;
5735
+ }, z.core.$strict>>;
5736
+ defaults: z.ZodOptional<z.ZodObject<{
5737
+ type: z.ZodLiteral<"INFO">;
5738
+ description: z.ZodOptional<z.ZodString>;
5739
+ button: z.ZodOptional<z.ZodObject<{
5740
+ label: z.ZodOptional<z.ZodString>;
5741
+ link: z.ZodOptional<z.ZodURL>;
5742
+ }, z.core.$strict>>;
5743
+ }, z.core.$strict>>;
5629
5744
  }, z.core.$strict>], "type">>;
5630
5745
  layout: z.ZodOptional<z.ZodArray<z.ZodObject<{
5631
5746
  layoutId: z.ZodString;
@@ -5874,9 +5989,9 @@ declare const ManifestSchema: z.ZodObject<{
5874
5989
  }>]>>;
5875
5990
  }, z.core.$strict>>;
5876
5991
  capitalization: z.ZodOptional<z.ZodEnum<{
5992
+ small: "small";
5877
5993
  none: "none";
5878
5994
  all: "all";
5879
- small: "small";
5880
5995
  }>>;
5881
5996
  }, z.core.$strict>>;
5882
5997
  }, z.core.$strict>, z.ZodObject<{
@@ -5885,6 +6000,17 @@ declare const ManifestSchema: z.ZodObject<{
5885
6000
  defaults: z.ZodOptional<z.ZodObject<{
5886
6001
  type: z.ZodLiteral<"DIVIDER">;
5887
6002
  }, z.core.$strict>>;
6003
+ }, z.core.$strict>, z.ZodObject<{
6004
+ type: z.ZodLiteral<"INFO">;
6005
+ fieldName: z.ZodString;
6006
+ defaults: z.ZodOptional<z.ZodObject<{
6007
+ type: z.ZodLiteral<"INFO">;
6008
+ description: z.ZodOptional<z.ZodString>;
6009
+ button: z.ZodOptional<z.ZodObject<{
6010
+ label: z.ZodOptional<z.ZodString>;
6011
+ link: z.ZodOptional<z.ZodURL>;
6012
+ }, z.core.$strict>>;
6013
+ }, z.core.$strict>>;
5888
6014
  }, z.core.$strict>], "type">>;
5889
6015
  }, z.core.$strict>>>;
5890
6016
  showcase: z.ZodArray<z.ZodObject<{
@@ -6309,12 +6435,19 @@ declare const ManifestSchema: z.ZodObject<{
6309
6435
  }>]>>;
6310
6436
  }, z.core.$strict>>;
6311
6437
  capitalization: z.ZodOptional<z.ZodEnum<{
6438
+ small: "small";
6312
6439
  none: "none";
6313
6440
  all: "all";
6314
- small: "small";
6315
6441
  }>>;
6316
6442
  }, z.core.$strict>, z.ZodObject<{
6317
6443
  type: z.ZodLiteral<"DIVIDER">;
6444
+ }, z.core.$strict>, z.ZodObject<{
6445
+ type: z.ZodLiteral<"INFO">;
6446
+ description: z.ZodOptional<z.ZodString>;
6447
+ button: z.ZodOptional<z.ZodObject<{
6448
+ label: z.ZodOptional<z.ZodString>;
6449
+ link: z.ZodOptional<z.ZodURL>;
6450
+ }, z.core.$strict>>;
6318
6451
  }, z.core.$strict>], "type">>;
6319
6452
  layoutId: z.ZodOptional<z.ZodString>;
6320
6453
  }, z.core.$strict>>;
@@ -6783,12 +6916,19 @@ declare const ManifestSchema: z.ZodObject<{
6783
6916
  }>]>>;
6784
6917
  }, z.core.$strict>>;
6785
6918
  capitalization: z.ZodOptional<z.ZodEnum<{
6919
+ small: "small";
6786
6920
  none: "none";
6787
6921
  all: "all";
6788
- small: "small";
6789
6922
  }>>;
6790
6923
  }, z.core.$strict>, z.ZodObject<{
6791
6924
  type: z.ZodLiteral<"DIVIDER">;
6925
+ }, z.core.$strict>, z.ZodObject<{
6926
+ type: z.ZodLiteral<"INFO">;
6927
+ description: z.ZodOptional<z.ZodString>;
6928
+ button: z.ZodOptional<z.ZodObject<{
6929
+ label: z.ZodOptional<z.ZodString>;
6930
+ link: z.ZodOptional<z.ZodURL>;
6931
+ }, z.core.$strict>>;
6792
6932
  }, z.core.$strict>], "type">>>;
6793
6933
  layoutId: z.ZodOptional<z.ZodString>;
6794
6934
  }, z.core.$strict>>;
@@ -7199,12 +7339,19 @@ declare const ManifestSchema: z.ZodObject<{
7199
7339
  }>]>>;
7200
7340
  }, z.core.$strict>>;
7201
7341
  capitalization: z.ZodOptional<z.ZodEnum<{
7342
+ small: "small";
7202
7343
  none: "none";
7203
7344
  all: "all";
7204
- small: "small";
7205
7345
  }>>;
7206
7346
  }, z.core.$strict>, z.ZodObject<{
7207
7347
  type: z.ZodLiteral<"DIVIDER">;
7348
+ }, z.core.$strict>, z.ZodObject<{
7349
+ type: z.ZodLiteral<"INFO">;
7350
+ description: z.ZodOptional<z.ZodString>;
7351
+ button: z.ZodOptional<z.ZodObject<{
7352
+ label: z.ZodOptional<z.ZodString>;
7353
+ link: z.ZodOptional<z.ZodURL>;
7354
+ }, z.core.$strict>>;
7208
7355
  }, z.core.$strict>], "type">>>;
7209
7356
  layoutId: z.ZodOptional<z.ZodString>;
7210
7357
  }, z.core.$strict>>;
@@ -7620,12 +7767,19 @@ declare const ManifestSchema: z.ZodObject<{
7620
7767
  }>]>>;
7621
7768
  }, z.core.$strict>>;
7622
7769
  capitalization: z.ZodOptional<z.ZodEnum<{
7770
+ small: "small";
7623
7771
  none: "none";
7624
7772
  all: "all";
7625
- small: "small";
7626
7773
  }>>;
7627
7774
  }, z.core.$strict>, z.ZodObject<{
7628
7775
  type: z.ZodLiteral<"DIVIDER">;
7776
+ }, z.core.$strict>, z.ZodObject<{
7777
+ type: z.ZodLiteral<"INFO">;
7778
+ description: z.ZodOptional<z.ZodString>;
7779
+ button: z.ZodOptional<z.ZodObject<{
7780
+ label: z.ZodOptional<z.ZodString>;
7781
+ link: z.ZodOptional<z.ZodURL>;
7782
+ }, z.core.$strict>>;
7629
7783
  }, z.core.$strict>], "type">>>;
7630
7784
  layoutId: z.ZodOptional<z.ZodString>;
7631
7785
  }, z.core.$strict>>;
@@ -8259,9 +8413,9 @@ declare const ManifestSchema: z.ZodObject<{
8259
8413
  }>]>>;
8260
8414
  }, z.core.$strict>>;
8261
8415
  capitalization: z.ZodOptional<z.ZodEnum<{
8416
+ small: "small";
8262
8417
  none: "none";
8263
8418
  all: "all";
8264
- small: "small";
8265
8419
  }>>;
8266
8420
  }, z.core.$strict>>;
8267
8421
  }, z.core.$strict>, z.ZodObject<{
@@ -8270,6 +8424,22 @@ declare const ManifestSchema: z.ZodObject<{
8270
8424
  defaults: z.ZodOptional<z.ZodObject<{
8271
8425
  type: z.ZodLiteral<"DIVIDER">;
8272
8426
  }, z.core.$strict>>;
8427
+ }, z.core.$strict>, z.ZodObject<{
8428
+ type: z.ZodLiteral<"INFO">;
8429
+ label: z.ZodString;
8430
+ description: z.ZodString;
8431
+ button: z.ZodOptional<z.ZodObject<{
8432
+ label: z.ZodString;
8433
+ link: z.ZodURL;
8434
+ }, z.core.$strict>>;
8435
+ defaults: z.ZodOptional<z.ZodObject<{
8436
+ type: z.ZodLiteral<"INFO">;
8437
+ description: z.ZodOptional<z.ZodString>;
8438
+ button: z.ZodOptional<z.ZodObject<{
8439
+ label: z.ZodOptional<z.ZodString>;
8440
+ link: z.ZodOptional<z.ZodURL>;
8441
+ }, z.core.$strict>>;
8442
+ }, z.core.$strict>>;
8273
8443
  }, z.core.$strict>], "type">>;
8274
8444
  translationsSettings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
8275
8445
  assets: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -8711,12 +8881,19 @@ declare const CustomSectionSchema: z.ZodObject<{
8711
8881
  }>]>>;
8712
8882
  }, z.core.$strict>>;
8713
8883
  capitalization: z.ZodOptional<z.ZodEnum<{
8884
+ small: "small";
8714
8885
  none: "none";
8715
8886
  all: "all";
8716
- small: "small";
8717
8887
  }>>;
8718
8888
  }, z.core.$strict>, z.ZodObject<{
8719
8889
  type: z.ZodLiteral<"DIVIDER">;
8890
+ }, z.core.$strict>, z.ZodObject<{
8891
+ type: z.ZodLiteral<"INFO">;
8892
+ description: z.ZodOptional<z.ZodString>;
8893
+ button: z.ZodOptional<z.ZodObject<{
8894
+ label: z.ZodOptional<z.ZodString>;
8895
+ link: z.ZodOptional<z.ZodURL>;
8896
+ }, z.core.$strict>>;
8720
8897
  }, z.core.$strict>], "type">>>;
8721
8898
  layoutId: z.ZodOptional<z.ZodString>;
8722
8899
  }, z.core.$strict>>;
@@ -9131,12 +9308,19 @@ declare const SectionSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9131
9308
  }>]>>;
9132
9309
  }, z.core.$strict>>;
9133
9310
  capitalization: z.ZodOptional<z.ZodEnum<{
9311
+ small: "small";
9134
9312
  none: "none";
9135
9313
  all: "all";
9136
- small: "small";
9137
9314
  }>>;
9138
9315
  }, z.core.$strict>, z.ZodObject<{
9139
9316
  type: z.ZodLiteral<"DIVIDER">;
9317
+ }, z.core.$strict>, z.ZodObject<{
9318
+ type: z.ZodLiteral<"INFO">;
9319
+ description: z.ZodOptional<z.ZodString>;
9320
+ button: z.ZodOptional<z.ZodObject<{
9321
+ label: z.ZodOptional<z.ZodString>;
9322
+ link: z.ZodOptional<z.ZodURL>;
9323
+ }, z.core.$strict>>;
9140
9324
  }, z.core.$strict>], "type">>>;
9141
9325
  layoutId: z.ZodOptional<z.ZodString>;
9142
9326
  }, z.core.$strict>>;
@@ -9554,12 +9738,19 @@ declare const TemplatePageSchema: z.ZodObject<{
9554
9738
  }>]>>;
9555
9739
  }, z.core.$strict>>;
9556
9740
  capitalization: z.ZodOptional<z.ZodEnum<{
9741
+ small: "small";
9557
9742
  none: "none";
9558
9743
  all: "all";
9559
- small: "small";
9560
9744
  }>>;
9561
9745
  }, z.core.$strict>, z.ZodObject<{
9562
9746
  type: z.ZodLiteral<"DIVIDER">;
9747
+ }, z.core.$strict>, z.ZodObject<{
9748
+ type: z.ZodLiteral<"INFO">;
9749
+ description: z.ZodOptional<z.ZodString>;
9750
+ button: z.ZodOptional<z.ZodObject<{
9751
+ label: z.ZodOptional<z.ZodString>;
9752
+ link: z.ZodOptional<z.ZodURL>;
9753
+ }, z.core.$strict>>;
9563
9754
  }, z.core.$strict>], "type">>>;
9564
9755
  layoutId: z.ZodOptional<z.ZodString>;
9565
9756
  }, z.core.$strict>>;
@@ -9978,12 +10169,19 @@ declare const TemplatePageNamedSchema: z.ZodObject<{
9978
10169
  }>]>>;
9979
10170
  }, z.core.$strict>>;
9980
10171
  capitalization: z.ZodOptional<z.ZodEnum<{
10172
+ small: "small";
9981
10173
  none: "none";
9982
10174
  all: "all";
9983
- small: "small";
9984
10175
  }>>;
9985
10176
  }, z.core.$strict>, z.ZodObject<{
9986
10177
  type: z.ZodLiteral<"DIVIDER">;
10178
+ }, z.core.$strict>, z.ZodObject<{
10179
+ type: z.ZodLiteral<"INFO">;
10180
+ description: z.ZodOptional<z.ZodString>;
10181
+ button: z.ZodOptional<z.ZodObject<{
10182
+ label: z.ZodOptional<z.ZodString>;
10183
+ link: z.ZodOptional<z.ZodURL>;
10184
+ }, z.core.$strict>>;
9987
10185
  }, z.core.$strict>], "type">>>;
9988
10186
  layoutId: z.ZodOptional<z.ZodString>;
9989
10187
  }, z.core.$strict>>;
@@ -10462,12 +10660,19 @@ declare const TemplateConfigurationSectionSchema: z.ZodDiscriminatedUnion<[z.Zod
10462
10660
  }>]>>;
10463
10661
  }, z.core.$strict>>;
10464
10662
  capitalization: z.ZodOptional<z.ZodEnum<{
10663
+ small: "small";
10465
10664
  none: "none";
10466
10665
  all: "all";
10467
- small: "small";
10468
10666
  }>>;
10469
10667
  }, z.core.$strict>, z.ZodObject<{
10470
10668
  type: z.ZodLiteral<"DIVIDER">;
10669
+ }, z.core.$strict>, z.ZodObject<{
10670
+ type: z.ZodLiteral<"INFO">;
10671
+ description: z.ZodOptional<z.ZodString>;
10672
+ button: z.ZodOptional<z.ZodObject<{
10673
+ label: z.ZodOptional<z.ZodString>;
10674
+ link: z.ZodOptional<z.ZodURL>;
10675
+ }, z.core.$strict>>;
10471
10676
  }, z.core.$strict>], "type">>>;
10472
10677
  layoutId: z.ZodOptional<z.ZodString>;
10473
10678
  }, z.core.$strict>>;
@@ -10935,12 +11140,19 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
10935
11140
  }>]>>;
10936
11141
  }, z.core.$strict>>;
10937
11142
  capitalization: z.ZodOptional<z.ZodEnum<{
11143
+ small: "small";
10938
11144
  none: "none";
10939
11145
  all: "all";
10940
- small: "small";
10941
11146
  }>>;
10942
11147
  }, z.core.$strict>, z.ZodObject<{
10943
11148
  type: z.ZodLiteral<"DIVIDER">;
11149
+ }, z.core.$strict>, z.ZodObject<{
11150
+ type: z.ZodLiteral<"INFO">;
11151
+ description: z.ZodOptional<z.ZodString>;
11152
+ button: z.ZodOptional<z.ZodObject<{
11153
+ label: z.ZodOptional<z.ZodString>;
11154
+ link: z.ZodOptional<z.ZodURL>;
11155
+ }, z.core.$strict>>;
10944
11156
  }, z.core.$strict>], "type">>>;
10945
11157
  layoutId: z.ZodOptional<z.ZodString>;
10946
11158
  }, z.core.$strict>>;
@@ -11351,12 +11563,19 @@ declare const TemplateConfigurationSchema: z.ZodObject<{
11351
11563
  }>]>>;
11352
11564
  }, z.core.$strict>>;
11353
11565
  capitalization: z.ZodOptional<z.ZodEnum<{
11566
+ small: "small";
11354
11567
  none: "none";
11355
11568
  all: "all";
11356
- small: "small";
11357
11569
  }>>;
11358
11570
  }, z.core.$strict>, z.ZodObject<{
11359
11571
  type: z.ZodLiteral<"DIVIDER">;
11572
+ }, z.core.$strict>, z.ZodObject<{
11573
+ type: z.ZodLiteral<"INFO">;
11574
+ description: z.ZodOptional<z.ZodString>;
11575
+ button: z.ZodOptional<z.ZodObject<{
11576
+ label: z.ZodOptional<z.ZodString>;
11577
+ link: z.ZodOptional<z.ZodURL>;
11578
+ }, z.core.$strict>>;
11360
11579
  }, z.core.$strict>], "type">>>;
11361
11580
  layoutId: z.ZodOptional<z.ZodString>;
11362
11581
  }, z.core.$strict>>;
@@ -11831,12 +12050,19 @@ declare const TemplateSchema: z.ZodObject<{
11831
12050
  }>]>>;
11832
12051
  }, z.core.$strict>>;
11833
12052
  capitalization: z.ZodOptional<z.ZodEnum<{
12053
+ small: "small";
11834
12054
  none: "none";
11835
12055
  all: "all";
11836
- small: "small";
11837
12056
  }>>;
11838
12057
  }, z.core.$strict>, z.ZodObject<{
11839
12058
  type: z.ZodLiteral<"DIVIDER">;
12059
+ }, z.core.$strict>, z.ZodObject<{
12060
+ type: z.ZodLiteral<"INFO">;
12061
+ description: z.ZodOptional<z.ZodString>;
12062
+ button: z.ZodOptional<z.ZodObject<{
12063
+ label: z.ZodOptional<z.ZodString>;
12064
+ link: z.ZodOptional<z.ZodURL>;
12065
+ }, z.core.$strict>>;
11840
12066
  }, z.core.$strict>], "type">>>;
11841
12067
  layoutId: z.ZodOptional<z.ZodString>;
11842
12068
  }, z.core.$strict>>;
@@ -12247,12 +12473,19 @@ declare const TemplateSchema: z.ZodObject<{
12247
12473
  }>]>>;
12248
12474
  }, z.core.$strict>>;
12249
12475
  capitalization: z.ZodOptional<z.ZodEnum<{
12476
+ small: "small";
12250
12477
  none: "none";
12251
12478
  all: "all";
12252
- small: "small";
12253
12479
  }>>;
12254
12480
  }, z.core.$strict>, z.ZodObject<{
12255
12481
  type: z.ZodLiteral<"DIVIDER">;
12482
+ }, z.core.$strict>, z.ZodObject<{
12483
+ type: z.ZodLiteral<"INFO">;
12484
+ description: z.ZodOptional<z.ZodString>;
12485
+ button: z.ZodOptional<z.ZodObject<{
12486
+ label: z.ZodOptional<z.ZodString>;
12487
+ link: z.ZodOptional<z.ZodURL>;
12488
+ }, z.core.$strict>>;
12256
12489
  }, z.core.$strict>], "type">>>;
12257
12490
  layoutId: z.ZodOptional<z.ZodString>;
12258
12491
  }, z.core.$strict>>;
@@ -12668,12 +12901,19 @@ declare const TemplateSchema: z.ZodObject<{
12668
12901
  }>]>>;
12669
12902
  }, z.core.$strict>>;
12670
12903
  capitalization: z.ZodOptional<z.ZodEnum<{
12904
+ small: "small";
12671
12905
  none: "none";
12672
12906
  all: "all";
12673
- small: "small";
12674
12907
  }>>;
12675
12908
  }, z.core.$strict>, z.ZodObject<{
12676
12909
  type: z.ZodLiteral<"DIVIDER">;
12910
+ }, z.core.$strict>, z.ZodObject<{
12911
+ type: z.ZodLiteral<"INFO">;
12912
+ description: z.ZodOptional<z.ZodString>;
12913
+ button: z.ZodOptional<z.ZodObject<{
12914
+ label: z.ZodOptional<z.ZodString>;
12915
+ link: z.ZodOptional<z.ZodURL>;
12916
+ }, z.core.$strict>>;
12677
12917
  }, z.core.$strict>], "type">>>;
12678
12918
  layoutId: z.ZodOptional<z.ZodString>;
12679
12919
  }, z.core.$strict>>;
@@ -14012,6 +14252,10 @@ declare const design: {
14012
14252
  * Factory function to create a divider design editor configuration.
14013
14253
  */
14014
14254
  readonly divider: (config: DesignEditorConfig<DividerDesignEditor>) => DividerDesignEditor;
14255
+ /**
14256
+ * Factory function to create an info design editor configuration.
14257
+ */
14258
+ readonly info: (config: DesignEditorConfig<InfoDesignEditor>) => InfoDesignEditor;
14015
14259
  /**
14016
14260
  * Factory functions for creating editor default configurations directly.
14017
14261
  */
@@ -14064,6 +14308,12 @@ declare const design: {
14064
14308
  readonly logo: (config: Omit<LogoDesignEditorDefaults, "type"> & {
14065
14309
  type?: "LOGO";
14066
14310
  }) => LogoDesignEditorDefaults;
14311
+ /**
14312
+ * Factory function to create an info design editor default configuration.
14313
+ */
14314
+ readonly info: (config: Omit<InfoDesignEditorDefaults, "type"> & {
14315
+ type?: "INFO";
14316
+ }) => InfoDesignEditorDefaults;
14067
14317
  };
14068
14318
  };
14069
14319
 
@@ -14083,6 +14333,7 @@ type BackgroundLayoutDesignOverride = LayoutDesignOverrideByType<'BACKGROUND'>;
14083
14333
  type ColorPickerLayoutDesignOverride = LayoutDesignOverrideByType<'COLOR_PICKER'>;
14084
14334
  type LogoLayoutDesignOverride = LayoutDesignOverrideByType<'LOGO'>;
14085
14335
  type DividerLayoutDesignOverride = LayoutDesignOverrideByType<'DIVIDER'>;
14336
+ type InfoLayoutDesignOverride = LayoutDesignOverrideByType<'INFO'>;
14086
14337
  /**
14087
14338
  * Factory functions for creating layout settings and design override configurations.
14088
14339
  *
@@ -14161,6 +14412,10 @@ declare const layout: {
14161
14412
  * Factory function to create a divider layout design override configuration.
14162
14413
  */
14163
14414
  readonly divider: (config: LayoutDesignOverrideConfig<DividerLayoutDesignOverride>) => DividerLayoutDesignOverride;
14415
+ /**
14416
+ * Factory function to create an info layout design override configuration.
14417
+ */
14418
+ readonly info: (config: LayoutDesignOverrideConfig<InfoLayoutDesignOverride>) => InfoLayoutDesignOverride;
14164
14419
  };
14165
14420
  };
14166
14421
 
@@ -14438,4 +14693,4 @@ declare const translation: {
14438
14693
  };
14439
14694
 
14440
14695
  export { ActionLinkTypeEnum, BackgroundStyleEnum, ButtonAppearanceEnum, ButtonShapeEnum, ButtonSizeEnum, ButtonTypeEnum, CatalogLayoutSlot, CategoryLayoutSlot, ConfigTypeEnum, DesignEditorType, EditorTypes, ImageSet, InstantsiteJsEvent, LogoTypeEnum, OverlayTypeEnum, PluginTypeEnum, ProductLayoutSlot, SectionTypeEnum, TemplateCategoriesList, ValidationTypeEnum, content, createVueClientApp, createVueServerApp, design, layout, section, showcase, template, translation, useBackgroundElementDesign, useButtonElementContent, useButtonElementDesign, useCategorySelectorElementContent, useDeckElementContent, useImageElementContent, useImageElementDesign, useInputboxElementContent, useInstantsiteJsApi, useLayoutElementDesign, useLogoElementContent, useLogoElementDesign, useMenuElementContent, useNavigationMenuElementContent, useProductSelectorElementContent, useSelectboxElementContent, useSelectboxElementDesign, useTextElementDesign, useTextareaElementContent, useTextareaElementDesign, useToggleElementContent, useToggleElementDesign, useTranslation, useVueBaseProps };
14441
- export type { ActionLink, AppBaseContext, AppBaseData, AppBaseState, Background, BackgroundDesignData$1 as BackgroundDesignData, BackgroundDesignEditor, BackgroundDesignEditorDefaults, BackgroundDesignEditorDefaultsTransformed, BackgroundType, ButtonAppearance, ButtonContentData, ButtonContentEditor, ButtonContentEditorDefaults, ButtonDesignData, ButtonDesignEditor, ButtonDesignEditorDefaults, ButtonDesignEditorDefaultsTransformed, ButtonSize, ButtonStyle, CapitalizationType, Card, CategorySelectorContent, CategorySelectorContentEditor, CategorySelectorContentEditorDefaults, CategorySelectorData, CollectionDescriptor, Color$1 as Color, ColorPickerDesignEditor, ColorPickerDesignEditorDefaults, ColorPickerDesignEditorDefaultsTransformed, ContentEditor, ContentEditorDefaults, ContentSettings, CustomSection, Deck, DeckContent, DeckContentEditor, DefaultSection, DesignEditor, DesignEditorDefaults, DesignEditorDefaultsTransformed, DesignSettings, DividerContentEditor, DividerContentEditorDefaults, DividerDesignEditor, Font, Frame, GlobalColorsString, GlobalDesign$1 as GlobalDesign, GlobalFontsString, GlobalTextSizeString, GradientColor, HSLColor, ImageBorderInfoData, ImageContent, ImageContentData, ImageContentEditor, ImageContentEditorDefaults, ImageDesignData$1 as ImageDesignData, ImageDesignEditor, ImageDesignEditorDefaults, ImageDesignEditorDefaultsTransformed, ImageInfoData, InfoContentEditor, InfoContentEditorDefaults, InputBoxContent, InputboxContentEditor, InputboxContentEditorDefaults, InstantsiteJSAPI$1 as InstantsiteJSAPI, InstantsiteTilePromise$1 as InstantsiteTilePromise, LayoutDesignData, LayoutDesignOverride, LayoutSettings, LogoContent, LogoContentData, LogoContentEditor, LogoContentEditorDefaults, LogoDesignData$1 as LogoDesignData, LogoDesignEditor, LogoDesignEditorDefaults, LogoDesignEditorDefaultsTransformed, LogoType, MandatoryContentSettings, MandatoryDesignSettings, Manifest, MenuContent, MenuContentData, MenuContentEditor, MenuItem, NavigationMenuContentEditor, Overlay, OverlayType, ProductSelectorContent, ProductSelectorContentEditor, ProductSelectorContentEditorDefaults, ProductSelectorData, RGBAColor, Section, SelectBoxContent, SelectboxContentEditor, SelectboxContentEditorDefaults, SelectboxContentOption, SelectboxDesignData, SelectboxDesignEditor, SelectboxDesignEditorDefaults, Showcase, ShowcaseContentEditorsDefaults, ShowcaseDeckContentEditorDefaults, ShowcaseImageContentEditorDefaults, ShowcaseInputboxContentEditorDefaults, ShowcaseLogoContentEditorDefaults, ShowcaseMenuContentEditorDefaults, ShowcaseNavigationMenuContentEditorDefaults, ShowcaseOverride, ShowcaseTextareaContentEditorDefaults, SolidColor, StorePageConfiguration, StorefrontSection, StorefrontSectionId, Template, TemplateConfiguration, TemplateConfigurationSection, TemplateCustomSection, TemplateDefaultSection, TemplateMetadata, TemplatePage, TemplatePageNamed, TemplateStorefrontSection, TextAreaContent, TextDesignData$1 as TextDesignData, TextDesignEditor, TextDesignEditorDefaults, TextDesignEditorDefaultsTransformed, TextSize, TextareaContentEditor, TextareaContentEditorDefaults, TextareaDesignData$1 as TextareaDesignData, ToggleContent, ToggleContentData, ToggleContentEditor, ToggleContentEditorDefaults, ToggleDesignData, ToggleDesignEditor, ToggleDesignEditorDefaults, TransformedFrame, TranslationSettings, VuegaPageId };
14696
+ export type { ActionLink, AppBaseContext, AppBaseData, AppBaseState, Background, BackgroundDesignData$1 as BackgroundDesignData, BackgroundDesignEditor, BackgroundDesignEditorDefaults, BackgroundDesignEditorDefaultsTransformed, BackgroundType, ButtonAppearance, ButtonContentData, ButtonContentEditor, ButtonContentEditorDefaults, ButtonDesignData, ButtonDesignEditor, ButtonDesignEditorDefaults, ButtonDesignEditorDefaultsTransformed, ButtonSize, ButtonStyle, CapitalizationType, Card, CategorySelectorContent, CategorySelectorContentEditor, CategorySelectorContentEditorDefaults, CategorySelectorData, CollectionDescriptor, Color$1 as Color, ColorPickerDesignEditor, ColorPickerDesignEditorDefaults, ColorPickerDesignEditorDefaultsTransformed, ContentEditor, ContentEditorDefaults, ContentSettings, CustomSection, Deck, DeckContent, DeckContentEditor, DefaultSection, DesignEditor, DesignEditorDefaults, DesignEditorDefaultsTransformed, DesignSettings, DividerContentEditor, DividerContentEditorDefaults, DividerDesignEditor, Font, Frame, GlobalColorsString, GlobalDesign$1 as GlobalDesign, GlobalFontsString, GlobalTextSizeString, GradientColor, HSLColor, ImageBorderInfoData, ImageContent, ImageContentData, ImageContentEditor, ImageContentEditorDefaults, ImageDesignData$1 as ImageDesignData, ImageDesignEditor, ImageDesignEditorDefaults, ImageDesignEditorDefaultsTransformed, ImageInfoData, InfoContentEditor, InfoContentEditorDefaults, InfoDesignEditor, InfoDesignEditorDefaults, InputBoxContent, InputboxContentEditor, InputboxContentEditorDefaults, InstantsiteJSAPI$1 as InstantsiteJSAPI, InstantsiteTilePromise$1 as InstantsiteTilePromise, LayoutDesignData, LayoutDesignOverride, LayoutSettings, LogoContent, LogoContentData, LogoContentEditor, LogoContentEditorDefaults, LogoDesignData$1 as LogoDesignData, LogoDesignEditor, LogoDesignEditorDefaults, LogoDesignEditorDefaultsTransformed, LogoType, MandatoryContentSettings, MandatoryDesignSettings, Manifest, MenuContent, MenuContentData, MenuContentEditor, MenuItem, NavigationMenuContentEditor, Overlay, OverlayType, ProductSelectorContent, ProductSelectorContentEditor, ProductSelectorContentEditorDefaults, ProductSelectorData, RGBAColor, Section, SelectBoxContent, SelectboxContentEditor, SelectboxContentEditorDefaults, SelectboxContentOption, SelectboxDesignData, SelectboxDesignEditor, SelectboxDesignEditorDefaults, Showcase, ShowcaseContentEditorsDefaults, ShowcaseDeckContentEditorDefaults, ShowcaseImageContentEditorDefaults, ShowcaseInputboxContentEditorDefaults, ShowcaseLogoContentEditorDefaults, ShowcaseMenuContentEditorDefaults, ShowcaseNavigationMenuContentEditorDefaults, ShowcaseOverride, ShowcaseTextareaContentEditorDefaults, SolidColor, StorePageConfiguration, StorefrontSection, StorefrontSectionId, Template, TemplateConfiguration, TemplateConfigurationSection, TemplateCustomSection, TemplateDefaultSection, TemplateMetadata, TemplatePage, TemplatePageNamed, TemplateStorefrontSection, TextAreaContent, TextDesignData$1 as TextDesignData, TextDesignEditor, TextDesignEditorDefaults, TextDesignEditorDefaultsTransformed, TextSize, TextareaContentEditor, TextareaContentEditorDefaults, TextareaDesignData$1 as TextareaDesignData, ToggleContent, ToggleContentData, ToggleContentEditor, ToggleContentEditorDefaults, ToggleDesignData, ToggleDesignEditor, ToggleDesignEditorDefaults, TransformedFrame, TranslationSettings, VuegaPageId };