@swiftwc/ui 0.0.0-dev.65 → 0.0.0-dev.67

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 (34) hide show
  1. package/generated/client/index.js +0 -1
  2. package/generated/components/h-stack.d.ts +4 -0
  3. package/generated/components/h-stack.js +4 -0
  4. package/generated/components/index.d.ts +1 -0
  5. package/generated/components/index.js +1 -0
  6. package/generated/components/label-view.d.ts +5 -0
  7. package/generated/components/label-view.js +5 -0
  8. package/generated/components/toggle-view.d.ts +28 -0
  9. package/generated/components/toggle-view.js +222 -0
  10. package/generated/components/v-stack.d.ts +4 -0
  11. package/generated/components/v-stack.js +4 -0
  12. package/generated/css/index.css +135 -31
  13. package/generated/events/index.d.ts +1 -0
  14. package/generated/events/index.js +1 -0
  15. package/generated/events/toggle-view.d.ts +9 -0
  16. package/generated/events/toggle-view.js +1 -0
  17. package/package.json +1 -1
  18. package/scss/_components.scss +2 -0
  19. package/scss/components/_date-picker.scss +15 -15
  20. package/scss/components/_h-stack.scss +17 -1
  21. package/scss/components/_index.scss +4 -0
  22. package/scss/components/_menu-view.scss +53 -49
  23. package/scss/components/_picker-view.scss +38 -39
  24. package/scss/components/_scroll-view-proxy.scss +4 -2
  25. package/scss/components/_section-view.scss +23 -22
  26. package/scss/components/_table-view.scss +6 -6
  27. package/scss/components/_text-field.scss +26 -26
  28. package/scss/components/_toggle-view.scss +79 -0
  29. package/scss/components/_tool-bar.scss +52 -52
  30. package/scss/mixins/_index.scss +10 -2
  31. package/scss/placeholders/_lists.scss +14 -12
  32. package/scss/transitions/_menu-view.scss +17 -15
  33. package/scss/utils/_index.scss +6 -1
  34. package/web-components.html-data/en.json +175 -0
@@ -182,6 +182,21 @@
182
182
  "name": "spacing",
183
183
  "description": "\nDescription: The gap between the primary axis",
184
184
  "valueSet": "spacingSet"
185
+ },
186
+ {
187
+ "name": "alignment - The cross",
188
+ "description": "\nDescription: axis alignment",
189
+ "valueSet": "alignmentSet"
190
+ },
191
+ {
192
+ "name": "distribution - The main",
193
+ "description": "\nDescription: axis alignment",
194
+ "valueSet": "distributionSet"
195
+ },
196
+ {
197
+ "name": "placement - The main",
198
+ "description": "\nDescription: axis alignment",
199
+ "valueSet": "placementSet"
185
200
  }
186
201
  ]
187
202
  },
@@ -195,7 +210,13 @@
195
210
  },
196
211
  {
197
212
  "name": "label-view",
213
+ "description": "",
198
214
  "attributes": [
215
+ {
216
+ "name": "font",
217
+ "description": "\nDescription: Sets the default font for text in this view.",
218
+ "valueSet": "fontSet"
219
+ },
199
220
  {
200
221
  "name": "system-image"
201
222
  },
@@ -493,6 +514,33 @@
493
514
  }
494
515
  ]
495
516
  },
517
+ {
518
+ "name": "toggle-view",
519
+ "description": "",
520
+ "attributes": [
521
+ {
522
+ "name": "label"
523
+ },
524
+ {
525
+ "name": "name"
526
+ },
527
+ {
528
+ "name": "value"
529
+ },
530
+ {
531
+ "name": "is-on"
532
+ },
533
+ {
534
+ "name": "keyboard-type"
535
+ },
536
+ {
537
+ "name": "required"
538
+ },
539
+ {
540
+ "name": "disabled"
541
+ }
542
+ ]
543
+ },
496
544
  {
497
545
  "name": "tool-bar-item-group"
498
546
  },
@@ -576,6 +624,21 @@
576
624
  "name": "spacing",
577
625
  "description": "\nDescription: The gap between the primary axis",
578
626
  "valueSet": "spacingSet"
627
+ },
628
+ {
629
+ "name": "alignment - The cross",
630
+ "description": "\nDescription: axis alignment",
631
+ "valueSet": "alignmentSet"
632
+ },
633
+ {
634
+ "name": "distribution - The main",
635
+ "description": "\nDescription: axis alignment",
636
+ "valueSet": "distributionSet"
637
+ },
638
+ {
639
+ "name": "placement - The main",
640
+ "description": "\nDescription: axis alignment",
641
+ "valueSet": "placementSet"
579
642
  }
580
643
  ]
581
644
  }
@@ -608,6 +671,59 @@
608
671
  }
609
672
  ],
610
673
  "valueSets": [
674
+ {
675
+ "name": "fontSet",
676
+ "values": [
677
+ {
678
+ "name": "footnote",
679
+ "description": "A font with the footnote text style"
680
+ },
681
+ {
682
+ "name": "caption2",
683
+ "description": "Create a font with the alternate caption text style"
684
+ },
685
+ {
686
+ "name": "caption",
687
+ "description": "A font with the caption text style"
688
+ },
689
+ {
690
+ "name": "callout",
691
+ "description": "A font with the callout text style"
692
+ },
693
+ {
694
+ "name": "body",
695
+ "description": "A font with the body text style"
696
+ },
697
+ {
698
+ "name": "subheadline",
699
+ "description": "A font with the subheadline text style"
700
+ },
701
+ {
702
+ "name": "headline",
703
+ "description": "A font with the headline text style"
704
+ },
705
+ {
706
+ "name": "title3",
707
+ "description": "Create a font for third level hierarchical headings"
708
+ },
709
+ {
710
+ "name": "title2",
711
+ "description": "Create a font for second level hierarchical headings"
712
+ },
713
+ {
714
+ "name": "title",
715
+ "description": "A font with the title text style"
716
+ },
717
+ {
718
+ "name": "large-title",
719
+ "description": "A font with the large title text style"
720
+ },
721
+ {
722
+ "name": "extra-large-title",
723
+ "description": "Create a font with the extra large title text style"
724
+ }
725
+ ]
726
+ },
611
727
  {
612
728
  "name": "spacingSet",
613
729
  "values": [
@@ -699,6 +815,65 @@
699
815
  }
700
816
  ]
701
817
  },
818
+ {
819
+ "name": "alignmentSet",
820
+ "values": [
821
+ {
822
+ "name": "leading",
823
+ "description": "start cross-axis alignment"
824
+ },
825
+ {
826
+ "name": "center",
827
+ "description": "center cross-axis alignment"
828
+ },
829
+ {
830
+ "name": "trailing",
831
+ "description": "end cross-axis alignment"
832
+ },
833
+ {
834
+ "name": "fill",
835
+ "description": "stretch cross-axis alignment"
836
+ }
837
+ ]
838
+ },
839
+ {
840
+ "name": "distributionSet",
841
+ "values": [
842
+ {
843
+ "name": "leading",
844
+ "description": "start cross-axis distribution"
845
+ },
846
+ {
847
+ "name": "center",
848
+ "description": "center cross-axis distribution"
849
+ },
850
+ {
851
+ "name": "trailing",
852
+ "description": "end cross-axis distribution"
853
+ },
854
+ {
855
+ "name": "fill",
856
+ "description": "stretch cross-axis distribution"
857
+ }
858
+ ]
859
+ },
860
+ {
861
+ "name": "placementSet",
862
+ "values": [
863
+ {
864
+ "name": "fill",
865
+ "description": "short cut for `distribution=\"fill\" alignment=\"fill\"`"
866
+ },
867
+ {
868
+ "name": "leading fill",
869
+ "description": "short cut for `distribution=\"leading\" alignment=\"fill\"`"
870
+ },
871
+ {
872
+ "name": "fill leading",
873
+ "description": "short cut for `distribution=\"fill\" alignment=\"leading\"`"
874
+ }
875
+ ]
876
+ },
702
877
  {
703
878
  "name": "frameWidth",
704
879
  "values": [