@tasteee/zest 0.1.0 → 0.3.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/README.md +113 -204
- package/custom-elements.json +405 -5
- package/dist/components/z-bento-grid.d.ts +3 -1
- package/dist/components/z-card.d.ts +3 -1
- package/dist/components/z-cluster.d.ts +5 -3
- package/dist/components/z-column.d.ts +31 -0
- package/dist/components/z-container.d.ts +3 -1
- package/dist/components/z-dock.d.ts +3 -1
- package/dist/components/z-dropzone.d.ts +4 -0
- package/dist/components/z-grid.d.ts +9 -3
- package/dist/components/z-marquee.d.ts +3 -1
- package/dist/components/z-row.d.ts +31 -0
- package/dist/components/z-section.d.ts +18 -4
- package/dist/components/z-stack.d.ts +3 -1
- package/dist/index.d.ts +2 -0
- package/dist/shared/layout-schema.d.ts +4 -0
- package/dist/zest.js +3248 -3092
- package/package.json +71 -85
package/custom-elements.json
CHANGED
|
@@ -3193,9 +3193,9 @@
|
|
|
3193
3193
|
},
|
|
3194
3194
|
{
|
|
3195
3195
|
"kind": "field",
|
|
3196
|
-
"name": "
|
|
3196
|
+
"name": "noWrap",
|
|
3197
3197
|
"type": {
|
|
3198
|
-
"text": "
|
|
3198
|
+
"text": "boolean"
|
|
3199
3199
|
}
|
|
3200
3200
|
},
|
|
3201
3201
|
{
|
|
@@ -3250,10 +3250,10 @@
|
|
|
3250
3250
|
}
|
|
3251
3251
|
},
|
|
3252
3252
|
{
|
|
3253
|
-
"name": "wrap",
|
|
3254
|
-
"fieldName": "
|
|
3253
|
+
"name": "no-wrap",
|
|
3254
|
+
"fieldName": "noWrap",
|
|
3255
3255
|
"type": {
|
|
3256
|
-
"text": "
|
|
3256
|
+
"text": "boolean"
|
|
3257
3257
|
}
|
|
3258
3258
|
},
|
|
3259
3259
|
{
|
|
@@ -3610,6 +3610,170 @@
|
|
|
3610
3610
|
}
|
|
3611
3611
|
]
|
|
3612
3612
|
},
|
|
3613
|
+
{
|
|
3614
|
+
"kind": "class",
|
|
3615
|
+
"customElement": true,
|
|
3616
|
+
"tagName": "z-column",
|
|
3617
|
+
"name": "ZColumn",
|
|
3618
|
+
"members": [
|
|
3619
|
+
{
|
|
3620
|
+
"kind": "field",
|
|
3621
|
+
"name": "gap",
|
|
3622
|
+
"type": {
|
|
3623
|
+
"text": "string"
|
|
3624
|
+
}
|
|
3625
|
+
},
|
|
3626
|
+
{
|
|
3627
|
+
"kind": "field",
|
|
3628
|
+
"name": "padding",
|
|
3629
|
+
"type": {
|
|
3630
|
+
"text": "string"
|
|
3631
|
+
}
|
|
3632
|
+
},
|
|
3633
|
+
{
|
|
3634
|
+
"kind": "field",
|
|
3635
|
+
"name": "margin",
|
|
3636
|
+
"type": {
|
|
3637
|
+
"text": "string"
|
|
3638
|
+
}
|
|
3639
|
+
},
|
|
3640
|
+
{
|
|
3641
|
+
"kind": "field",
|
|
3642
|
+
"name": "alignsX",
|
|
3643
|
+
"type": {
|
|
3644
|
+
"text": "string"
|
|
3645
|
+
}
|
|
3646
|
+
},
|
|
3647
|
+
{
|
|
3648
|
+
"kind": "field",
|
|
3649
|
+
"name": "alignsY",
|
|
3650
|
+
"type": {
|
|
3651
|
+
"text": "string"
|
|
3652
|
+
}
|
|
3653
|
+
},
|
|
3654
|
+
{
|
|
3655
|
+
"kind": "field",
|
|
3656
|
+
"name": "wrap",
|
|
3657
|
+
"type": {
|
|
3658
|
+
"text": "boolean"
|
|
3659
|
+
}
|
|
3660
|
+
},
|
|
3661
|
+
{
|
|
3662
|
+
"kind": "field",
|
|
3663
|
+
"name": "fullWidth",
|
|
3664
|
+
"type": {
|
|
3665
|
+
"text": "boolean"
|
|
3666
|
+
}
|
|
3667
|
+
},
|
|
3668
|
+
{
|
|
3669
|
+
"kind": "field",
|
|
3670
|
+
"name": "fullHeight",
|
|
3671
|
+
"type": {
|
|
3672
|
+
"text": "boolean"
|
|
3673
|
+
}
|
|
3674
|
+
},
|
|
3675
|
+
{
|
|
3676
|
+
"kind": "field",
|
|
3677
|
+
"name": "inset",
|
|
3678
|
+
"type": {
|
|
3679
|
+
"text": "string"
|
|
3680
|
+
}
|
|
3681
|
+
},
|
|
3682
|
+
{
|
|
3683
|
+
"kind": "field",
|
|
3684
|
+
"name": "insetX",
|
|
3685
|
+
"type": {
|
|
3686
|
+
"text": "string"
|
|
3687
|
+
}
|
|
3688
|
+
},
|
|
3689
|
+
{
|
|
3690
|
+
"kind": "field",
|
|
3691
|
+
"name": "insetY",
|
|
3692
|
+
"type": {
|
|
3693
|
+
"text": "string"
|
|
3694
|
+
}
|
|
3695
|
+
}
|
|
3696
|
+
],
|
|
3697
|
+
"attributes": [
|
|
3698
|
+
{
|
|
3699
|
+
"name": "gap",
|
|
3700
|
+
"fieldName": "gap",
|
|
3701
|
+
"type": {
|
|
3702
|
+
"text": "string"
|
|
3703
|
+
}
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
"name": "padding",
|
|
3707
|
+
"fieldName": "padding",
|
|
3708
|
+
"type": {
|
|
3709
|
+
"text": "string"
|
|
3710
|
+
}
|
|
3711
|
+
},
|
|
3712
|
+
{
|
|
3713
|
+
"name": "margin",
|
|
3714
|
+
"fieldName": "margin",
|
|
3715
|
+
"type": {
|
|
3716
|
+
"text": "string"
|
|
3717
|
+
}
|
|
3718
|
+
},
|
|
3719
|
+
{
|
|
3720
|
+
"name": "aligns-x",
|
|
3721
|
+
"fieldName": "alignsX",
|
|
3722
|
+
"type": {
|
|
3723
|
+
"text": "string"
|
|
3724
|
+
}
|
|
3725
|
+
},
|
|
3726
|
+
{
|
|
3727
|
+
"name": "aligns-y",
|
|
3728
|
+
"fieldName": "alignsY",
|
|
3729
|
+
"type": {
|
|
3730
|
+
"text": "string"
|
|
3731
|
+
}
|
|
3732
|
+
},
|
|
3733
|
+
{
|
|
3734
|
+
"name": "wrap",
|
|
3735
|
+
"fieldName": "wrap",
|
|
3736
|
+
"type": {
|
|
3737
|
+
"text": "boolean"
|
|
3738
|
+
}
|
|
3739
|
+
},
|
|
3740
|
+
{
|
|
3741
|
+
"name": "full-width",
|
|
3742
|
+
"fieldName": "fullWidth",
|
|
3743
|
+
"type": {
|
|
3744
|
+
"text": "boolean"
|
|
3745
|
+
}
|
|
3746
|
+
},
|
|
3747
|
+
{
|
|
3748
|
+
"name": "full-height",
|
|
3749
|
+
"fieldName": "fullHeight",
|
|
3750
|
+
"type": {
|
|
3751
|
+
"text": "boolean"
|
|
3752
|
+
}
|
|
3753
|
+
},
|
|
3754
|
+
{
|
|
3755
|
+
"name": "inset",
|
|
3756
|
+
"fieldName": "inset",
|
|
3757
|
+
"type": {
|
|
3758
|
+
"text": "string"
|
|
3759
|
+
}
|
|
3760
|
+
},
|
|
3761
|
+
{
|
|
3762
|
+
"name": "inset-x",
|
|
3763
|
+
"fieldName": "insetX",
|
|
3764
|
+
"type": {
|
|
3765
|
+
"text": "string"
|
|
3766
|
+
}
|
|
3767
|
+
},
|
|
3768
|
+
{
|
|
3769
|
+
"name": "inset-y",
|
|
3770
|
+
"fieldName": "insetY",
|
|
3771
|
+
"type": {
|
|
3772
|
+
"text": "string"
|
|
3773
|
+
}
|
|
3774
|
+
}
|
|
3775
|
+
]
|
|
3776
|
+
},
|
|
3613
3777
|
{
|
|
3614
3778
|
"kind": "class",
|
|
3615
3779
|
"customElement": true,
|
|
@@ -5183,6 +5347,13 @@
|
|
|
5183
5347
|
"text": "boolean"
|
|
5184
5348
|
}
|
|
5185
5349
|
},
|
|
5350
|
+
{
|
|
5351
|
+
"kind": "field",
|
|
5352
|
+
"name": "files",
|
|
5353
|
+
"type": {
|
|
5354
|
+
"text": "array"
|
|
5355
|
+
}
|
|
5356
|
+
},
|
|
5186
5357
|
{
|
|
5187
5358
|
"kind": "field",
|
|
5188
5359
|
"name": "drop",
|
|
@@ -5190,6 +5361,13 @@
|
|
|
5190
5361
|
"text": "string"
|
|
5191
5362
|
}
|
|
5192
5363
|
},
|
|
5364
|
+
{
|
|
5365
|
+
"kind": "field",
|
|
5366
|
+
"name": "clear",
|
|
5367
|
+
"type": {
|
|
5368
|
+
"text": "string"
|
|
5369
|
+
}
|
|
5370
|
+
},
|
|
5193
5371
|
{
|
|
5194
5372
|
"kind": "field",
|
|
5195
5373
|
"name": "reject",
|
|
@@ -5234,6 +5412,13 @@
|
|
|
5234
5412
|
"text": "boolean"
|
|
5235
5413
|
}
|
|
5236
5414
|
},
|
|
5415
|
+
{
|
|
5416
|
+
"name": "files",
|
|
5417
|
+
"fieldName": "files",
|
|
5418
|
+
"type": {
|
|
5419
|
+
"text": "array"
|
|
5420
|
+
}
|
|
5421
|
+
},
|
|
5237
5422
|
{
|
|
5238
5423
|
"name": "drop",
|
|
5239
5424
|
"fieldName": "drop",
|
|
@@ -5241,6 +5426,13 @@
|
|
|
5241
5426
|
"text": "string"
|
|
5242
5427
|
}
|
|
5243
5428
|
},
|
|
5429
|
+
{
|
|
5430
|
+
"name": "clear",
|
|
5431
|
+
"fieldName": "clear",
|
|
5432
|
+
"type": {
|
|
5433
|
+
"text": "string"
|
|
5434
|
+
}
|
|
5435
|
+
},
|
|
5244
5436
|
{
|
|
5245
5437
|
"name": "reject",
|
|
5246
5438
|
"fieldName": "reject",
|
|
@@ -10256,6 +10448,170 @@
|
|
|
10256
10448
|
}
|
|
10257
10449
|
]
|
|
10258
10450
|
},
|
|
10451
|
+
{
|
|
10452
|
+
"kind": "class",
|
|
10453
|
+
"customElement": true,
|
|
10454
|
+
"tagName": "z-row",
|
|
10455
|
+
"name": "ZRow",
|
|
10456
|
+
"members": [
|
|
10457
|
+
{
|
|
10458
|
+
"kind": "field",
|
|
10459
|
+
"name": "gap",
|
|
10460
|
+
"type": {
|
|
10461
|
+
"text": "string"
|
|
10462
|
+
}
|
|
10463
|
+
},
|
|
10464
|
+
{
|
|
10465
|
+
"kind": "field",
|
|
10466
|
+
"name": "padding",
|
|
10467
|
+
"type": {
|
|
10468
|
+
"text": "string"
|
|
10469
|
+
}
|
|
10470
|
+
},
|
|
10471
|
+
{
|
|
10472
|
+
"kind": "field",
|
|
10473
|
+
"name": "margin",
|
|
10474
|
+
"type": {
|
|
10475
|
+
"text": "string"
|
|
10476
|
+
}
|
|
10477
|
+
},
|
|
10478
|
+
{
|
|
10479
|
+
"kind": "field",
|
|
10480
|
+
"name": "alignsX",
|
|
10481
|
+
"type": {
|
|
10482
|
+
"text": "string"
|
|
10483
|
+
}
|
|
10484
|
+
},
|
|
10485
|
+
{
|
|
10486
|
+
"kind": "field",
|
|
10487
|
+
"name": "alignsY",
|
|
10488
|
+
"type": {
|
|
10489
|
+
"text": "string"
|
|
10490
|
+
}
|
|
10491
|
+
},
|
|
10492
|
+
{
|
|
10493
|
+
"kind": "field",
|
|
10494
|
+
"name": "wrap",
|
|
10495
|
+
"type": {
|
|
10496
|
+
"text": "boolean"
|
|
10497
|
+
}
|
|
10498
|
+
},
|
|
10499
|
+
{
|
|
10500
|
+
"kind": "field",
|
|
10501
|
+
"name": "fullWidth",
|
|
10502
|
+
"type": {
|
|
10503
|
+
"text": "boolean"
|
|
10504
|
+
}
|
|
10505
|
+
},
|
|
10506
|
+
{
|
|
10507
|
+
"kind": "field",
|
|
10508
|
+
"name": "fullHeight",
|
|
10509
|
+
"type": {
|
|
10510
|
+
"text": "boolean"
|
|
10511
|
+
}
|
|
10512
|
+
},
|
|
10513
|
+
{
|
|
10514
|
+
"kind": "field",
|
|
10515
|
+
"name": "inset",
|
|
10516
|
+
"type": {
|
|
10517
|
+
"text": "string"
|
|
10518
|
+
}
|
|
10519
|
+
},
|
|
10520
|
+
{
|
|
10521
|
+
"kind": "field",
|
|
10522
|
+
"name": "insetX",
|
|
10523
|
+
"type": {
|
|
10524
|
+
"text": "string"
|
|
10525
|
+
}
|
|
10526
|
+
},
|
|
10527
|
+
{
|
|
10528
|
+
"kind": "field",
|
|
10529
|
+
"name": "insetY",
|
|
10530
|
+
"type": {
|
|
10531
|
+
"text": "string"
|
|
10532
|
+
}
|
|
10533
|
+
}
|
|
10534
|
+
],
|
|
10535
|
+
"attributes": [
|
|
10536
|
+
{
|
|
10537
|
+
"name": "gap",
|
|
10538
|
+
"fieldName": "gap",
|
|
10539
|
+
"type": {
|
|
10540
|
+
"text": "string"
|
|
10541
|
+
}
|
|
10542
|
+
},
|
|
10543
|
+
{
|
|
10544
|
+
"name": "padding",
|
|
10545
|
+
"fieldName": "padding",
|
|
10546
|
+
"type": {
|
|
10547
|
+
"text": "string"
|
|
10548
|
+
}
|
|
10549
|
+
},
|
|
10550
|
+
{
|
|
10551
|
+
"name": "margin",
|
|
10552
|
+
"fieldName": "margin",
|
|
10553
|
+
"type": {
|
|
10554
|
+
"text": "string"
|
|
10555
|
+
}
|
|
10556
|
+
},
|
|
10557
|
+
{
|
|
10558
|
+
"name": "aligns-x",
|
|
10559
|
+
"fieldName": "alignsX",
|
|
10560
|
+
"type": {
|
|
10561
|
+
"text": "string"
|
|
10562
|
+
}
|
|
10563
|
+
},
|
|
10564
|
+
{
|
|
10565
|
+
"name": "aligns-y",
|
|
10566
|
+
"fieldName": "alignsY",
|
|
10567
|
+
"type": {
|
|
10568
|
+
"text": "string"
|
|
10569
|
+
}
|
|
10570
|
+
},
|
|
10571
|
+
{
|
|
10572
|
+
"name": "wrap",
|
|
10573
|
+
"fieldName": "wrap",
|
|
10574
|
+
"type": {
|
|
10575
|
+
"text": "boolean"
|
|
10576
|
+
}
|
|
10577
|
+
},
|
|
10578
|
+
{
|
|
10579
|
+
"name": "full-width",
|
|
10580
|
+
"fieldName": "fullWidth",
|
|
10581
|
+
"type": {
|
|
10582
|
+
"text": "boolean"
|
|
10583
|
+
}
|
|
10584
|
+
},
|
|
10585
|
+
{
|
|
10586
|
+
"name": "full-height",
|
|
10587
|
+
"fieldName": "fullHeight",
|
|
10588
|
+
"type": {
|
|
10589
|
+
"text": "boolean"
|
|
10590
|
+
}
|
|
10591
|
+
},
|
|
10592
|
+
{
|
|
10593
|
+
"name": "inset",
|
|
10594
|
+
"fieldName": "inset",
|
|
10595
|
+
"type": {
|
|
10596
|
+
"text": "string"
|
|
10597
|
+
}
|
|
10598
|
+
},
|
|
10599
|
+
{
|
|
10600
|
+
"name": "inset-x",
|
|
10601
|
+
"fieldName": "insetX",
|
|
10602
|
+
"type": {
|
|
10603
|
+
"text": "string"
|
|
10604
|
+
}
|
|
10605
|
+
},
|
|
10606
|
+
{
|
|
10607
|
+
"name": "inset-y",
|
|
10608
|
+
"fieldName": "insetY",
|
|
10609
|
+
"type": {
|
|
10610
|
+
"text": "string"
|
|
10611
|
+
}
|
|
10612
|
+
}
|
|
10613
|
+
]
|
|
10614
|
+
},
|
|
10259
10615
|
{
|
|
10260
10616
|
"kind": "class",
|
|
10261
10617
|
"customElement": true,
|
|
@@ -10471,6 +10827,20 @@
|
|
|
10471
10827
|
"text": "string"
|
|
10472
10828
|
}
|
|
10473
10829
|
},
|
|
10830
|
+
{
|
|
10831
|
+
"kind": "field",
|
|
10832
|
+
"name": "spaceLeft",
|
|
10833
|
+
"type": {
|
|
10834
|
+
"text": "string"
|
|
10835
|
+
}
|
|
10836
|
+
},
|
|
10837
|
+
{
|
|
10838
|
+
"kind": "field",
|
|
10839
|
+
"name": "spaceRight",
|
|
10840
|
+
"type": {
|
|
10841
|
+
"text": "string"
|
|
10842
|
+
}
|
|
10843
|
+
},
|
|
10474
10844
|
{
|
|
10475
10845
|
"kind": "field",
|
|
10476
10846
|
"name": "container",
|
|
@@ -10508,6 +10878,20 @@
|
|
|
10508
10878
|
"text": "string"
|
|
10509
10879
|
}
|
|
10510
10880
|
},
|
|
10881
|
+
{
|
|
10882
|
+
"name": "space-left",
|
|
10883
|
+
"fieldName": "spaceLeft",
|
|
10884
|
+
"type": {
|
|
10885
|
+
"text": "string"
|
|
10886
|
+
}
|
|
10887
|
+
},
|
|
10888
|
+
{
|
|
10889
|
+
"name": "space-right",
|
|
10890
|
+
"fieldName": "spaceRight",
|
|
10891
|
+
"type": {
|
|
10892
|
+
"text": "string"
|
|
10893
|
+
}
|
|
10894
|
+
},
|
|
10511
10895
|
{
|
|
10512
10896
|
"name": "container",
|
|
10513
10897
|
"fieldName": "container",
|
|
@@ -15136,6 +15520,14 @@
|
|
|
15136
15520
|
"module": "dist/zest.js"
|
|
15137
15521
|
}
|
|
15138
15522
|
},
|
|
15523
|
+
{
|
|
15524
|
+
"kind": "custom-element-definition",
|
|
15525
|
+
"name": "z-column",
|
|
15526
|
+
"declaration": {
|
|
15527
|
+
"name": "ZColumn",
|
|
15528
|
+
"module": "dist/zest.js"
|
|
15529
|
+
}
|
|
15530
|
+
},
|
|
15139
15531
|
{
|
|
15140
15532
|
"kind": "custom-element-definition",
|
|
15141
15533
|
"name": "z-combobox",
|
|
@@ -15648,6 +16040,14 @@
|
|
|
15648
16040
|
"module": "dist/zest.js"
|
|
15649
16041
|
}
|
|
15650
16042
|
},
|
|
16043
|
+
{
|
|
16044
|
+
"kind": "custom-element-definition",
|
|
16045
|
+
"name": "z-row",
|
|
16046
|
+
"declaration": {
|
|
16047
|
+
"name": "ZRow",
|
|
16048
|
+
"module": "dist/zest.js"
|
|
16049
|
+
}
|
|
16050
|
+
},
|
|
15651
16051
|
{
|
|
15652
16052
|
"kind": "custom-element-definition",
|
|
15653
16053
|
"name": "z-scroll",
|
|
@@ -2,7 +2,9 @@ export declare const ZBentoGrid: import("atomico/types/dom").Atomico<{
|
|
|
2
2
|
props: {
|
|
3
3
|
columns: NumberConstructor;
|
|
4
4
|
rowHeight: StringConstructor;
|
|
5
|
-
gap:
|
|
5
|
+
gap: {
|
|
6
|
+
readonly type: StringConstructor;
|
|
7
|
+
};
|
|
6
8
|
isHidden: {
|
|
7
9
|
type: BooleanConstructor;
|
|
8
10
|
reflect: true;
|
|
@@ -3,11 +3,13 @@ export declare const ZCluster: import("atomico/types/dom").Atomico<{
|
|
|
3
3
|
inset: StringConstructor;
|
|
4
4
|
insetX: StringConstructor;
|
|
5
5
|
insetY: StringConstructor;
|
|
6
|
-
gap:
|
|
6
|
+
gap: {
|
|
7
|
+
readonly type: StringConstructor;
|
|
8
|
+
};
|
|
7
9
|
alignsX: StringConstructor;
|
|
8
10
|
alignsY: StringConstructor;
|
|
9
|
-
|
|
10
|
-
type:
|
|
11
|
+
noWrap: {
|
|
12
|
+
type: BooleanConstructor;
|
|
11
13
|
reflect: true;
|
|
12
14
|
};
|
|
13
15
|
fullWidth: {
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const ZColumn: import("atomico/types/dom").Atomico<{
|
|
2
|
+
props: {
|
|
3
|
+
inset: StringConstructor;
|
|
4
|
+
insetX: StringConstructor;
|
|
5
|
+
insetY: StringConstructor;
|
|
6
|
+
gap: {
|
|
7
|
+
readonly type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
padding: {
|
|
10
|
+
readonly type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
margin: {
|
|
13
|
+
readonly type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
alignsX: StringConstructor;
|
|
16
|
+
alignsY: StringConstructor;
|
|
17
|
+
wrap: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
reflect: true;
|
|
20
|
+
};
|
|
21
|
+
fullWidth: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
reflect: true;
|
|
24
|
+
};
|
|
25
|
+
fullHeight: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
reflect: true;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
styles: CSSStyleSheet[];
|
|
31
|
+
}>;
|
|
@@ -3,7 +3,9 @@ export declare const ZDock: import("atomico/types/dom").Atomico<{
|
|
|
3
3
|
magnification: NumberConstructor;
|
|
4
4
|
distance: NumberConstructor;
|
|
5
5
|
itemSize: StringConstructor;
|
|
6
|
-
gap:
|
|
6
|
+
gap: {
|
|
7
|
+
readonly type: StringConstructor;
|
|
8
|
+
};
|
|
7
9
|
floating: {
|
|
8
10
|
type: BooleanConstructor;
|
|
9
11
|
reflect: true;
|
|
@@ -20,9 +20,13 @@ export declare const ZDropzone: import("atomico/types/dom").Atomico<{
|
|
|
20
20
|
type: BooleanConstructor;
|
|
21
21
|
reflect: true;
|
|
22
22
|
};
|
|
23
|
+
files: {
|
|
24
|
+
type: ArrayConstructor;
|
|
25
|
+
};
|
|
23
26
|
drop: import("atomico/types/schema").EventProp<{
|
|
24
27
|
files: File[];
|
|
25
28
|
}>;
|
|
29
|
+
clear: import("atomico/types/schema").EventProp<void>;
|
|
26
30
|
reject: import("atomico/types/schema").EventProp<{
|
|
27
31
|
files: File[];
|
|
28
32
|
reason: string;
|
|
@@ -5,9 +5,15 @@ export declare const ZGrid: import("atomico/types/dom").Atomico<{
|
|
|
5
5
|
insetY: StringConstructor;
|
|
6
6
|
columns: StringConstructor;
|
|
7
7
|
minColumnWidth: StringConstructor;
|
|
8
|
-
gap:
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
gap: {
|
|
9
|
+
readonly type: StringConstructor;
|
|
10
|
+
};
|
|
11
|
+
gapX: {
|
|
12
|
+
readonly type: StringConstructor;
|
|
13
|
+
};
|
|
14
|
+
gapY: {
|
|
15
|
+
readonly type: StringConstructor;
|
|
16
|
+
};
|
|
11
17
|
alignsX: StringConstructor;
|
|
12
18
|
alignsY: StringConstructor;
|
|
13
19
|
fullWidth: {
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const ZRow: import("atomico/types/dom").Atomico<{
|
|
2
|
+
props: {
|
|
3
|
+
inset: StringConstructor;
|
|
4
|
+
insetX: StringConstructor;
|
|
5
|
+
insetY: StringConstructor;
|
|
6
|
+
gap: {
|
|
7
|
+
readonly type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
padding: {
|
|
10
|
+
readonly type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
margin: {
|
|
13
|
+
readonly type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
alignsX: StringConstructor;
|
|
16
|
+
alignsY: StringConstructor;
|
|
17
|
+
wrap: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
reflect: true;
|
|
20
|
+
};
|
|
21
|
+
fullWidth: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
reflect: true;
|
|
24
|
+
};
|
|
25
|
+
fullHeight: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
reflect: true;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
styles: CSSStyleSheet[];
|
|
31
|
+
}>;
|
|
@@ -1,10 +1,24 @@
|
|
|
1
1
|
export declare const ZSection: import("atomico/types/dom").Atomico<{
|
|
2
2
|
props: {
|
|
3
|
-
space:
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
space: {
|
|
4
|
+
readonly type: StringConstructor;
|
|
5
|
+
};
|
|
6
|
+
spaceTop: {
|
|
7
|
+
readonly type: StringConstructor;
|
|
8
|
+
};
|
|
9
|
+
spaceBottom: {
|
|
10
|
+
readonly type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
spaceLeft: {
|
|
13
|
+
readonly type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
spaceRight: {
|
|
16
|
+
readonly type: StringConstructor;
|
|
17
|
+
};
|
|
6
18
|
container: StringConstructor;
|
|
7
|
-
gutter:
|
|
19
|
+
gutter: {
|
|
20
|
+
readonly type: StringConstructor;
|
|
21
|
+
};
|
|
8
22
|
};
|
|
9
23
|
styles: CSSStyleSheet[];
|
|
10
24
|
}>;
|