@openwebf/react-cupertino-ui 0.3.23 → 0.3.25
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.mts +118 -1288
- package/dist/index.d.ts +118 -1288
- package/dist/index.js +61 -615
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -594
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -296,15 +296,50 @@ var FlutterCupertinoRadio = createWebFComponent8({
|
|
|
296
296
|
}
|
|
297
297
|
});
|
|
298
298
|
|
|
299
|
-
// src/lib/src/
|
|
299
|
+
// src/lib/src/modal-popup.tsx
|
|
300
300
|
import { createWebFComponent as createWebFComponent9 } from "@openwebf/react-core-ui";
|
|
301
|
-
var
|
|
301
|
+
var FlutterCupertinoModalPopup = createWebFComponent9({
|
|
302
|
+
tagName: "flutter-cupertino-modal-popup",
|
|
303
|
+
displayName: "FlutterCupertinoModalPopup",
|
|
304
|
+
// Map props to attributes
|
|
305
|
+
attributeProps: [
|
|
306
|
+
"visible",
|
|
307
|
+
"height",
|
|
308
|
+
"surfacePainted",
|
|
309
|
+
"maskClosable",
|
|
310
|
+
"backgroundOpacity"
|
|
311
|
+
],
|
|
312
|
+
// Convert prop names to attribute names if needed
|
|
313
|
+
attributeMap: {
|
|
314
|
+
surfacePainted: "surface-painted",
|
|
315
|
+
maskClosable: "mask-closable",
|
|
316
|
+
backgroundOpacity: "background-opacity"
|
|
317
|
+
},
|
|
318
|
+
// Event handlers
|
|
319
|
+
events: [
|
|
320
|
+
{
|
|
321
|
+
propName: "onClose",
|
|
322
|
+
eventName: "close",
|
|
323
|
+
handler: (callback) => (event) => {
|
|
324
|
+
callback(event);
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
],
|
|
328
|
+
// Default prop values
|
|
329
|
+
defaultProps: {
|
|
330
|
+
// Add default values here
|
|
331
|
+
}
|
|
332
|
+
});
|
|
333
|
+
|
|
334
|
+
// src/lib/src/list_tile.tsx
|
|
335
|
+
import { createWebFComponent as createWebFComponent10 } from "@openwebf/react-core-ui";
|
|
336
|
+
var FlutterCupertinoListTile = createWebFComponent10({
|
|
302
337
|
tagName: "flutter-cupertino-list-tile",
|
|
303
338
|
displayName: "FlutterCupertinoListTile",
|
|
304
339
|
// Map props to attributes
|
|
305
340
|
attributeProps: [
|
|
306
|
-
"
|
|
307
|
-
"
|
|
341
|
+
"showChevron",
|
|
342
|
+
"notched"
|
|
308
343
|
],
|
|
309
344
|
// Convert prop names to attribute names if needed
|
|
310
345
|
attributeMap: {
|
|
@@ -325,7 +360,7 @@ var FlutterCupertinoListTile = createWebFComponent9({
|
|
|
325
360
|
// Add default values here
|
|
326
361
|
}
|
|
327
362
|
});
|
|
328
|
-
var FlutterCupertinoListTileLeading =
|
|
363
|
+
var FlutterCupertinoListTileLeading = createWebFComponent10({
|
|
329
364
|
tagName: "flutter-cupertino-list-tile-leading",
|
|
330
365
|
displayName: "FlutterCupertinoListTileLeading",
|
|
331
366
|
// Map props to attributes
|
|
@@ -339,7 +374,7 @@ var FlutterCupertinoListTileLeading = createWebFComponent9({
|
|
|
339
374
|
// Add default values here
|
|
340
375
|
}
|
|
341
376
|
});
|
|
342
|
-
var FlutterCupertinoListTileSubtitle =
|
|
377
|
+
var FlutterCupertinoListTileSubtitle = createWebFComponent10({
|
|
343
378
|
tagName: "flutter-cupertino-list-tile-subtitle",
|
|
344
379
|
displayName: "FlutterCupertinoListTileSubtitle",
|
|
345
380
|
// Map props to attributes
|
|
@@ -353,7 +388,7 @@ var FlutterCupertinoListTileSubtitle = createWebFComponent9({
|
|
|
353
388
|
// Add default values here
|
|
354
389
|
}
|
|
355
390
|
});
|
|
356
|
-
var FlutterCupertinoListTileAdditionalInfo =
|
|
391
|
+
var FlutterCupertinoListTileAdditionalInfo = createWebFComponent10({
|
|
357
392
|
tagName: "flutter-cupertino-list-tile-additional-info",
|
|
358
393
|
displayName: "FlutterCupertinoListTileAdditionalInfo",
|
|
359
394
|
// Map props to attributes
|
|
@@ -367,7 +402,7 @@ var FlutterCupertinoListTileAdditionalInfo = createWebFComponent9({
|
|
|
367
402
|
// Add default values here
|
|
368
403
|
}
|
|
369
404
|
});
|
|
370
|
-
var FlutterCupertinoListTileTrailing =
|
|
405
|
+
var FlutterCupertinoListTileTrailing = createWebFComponent10({
|
|
371
406
|
tagName: "flutter-cupertino-list-tile-trailing",
|
|
372
407
|
displayName: "FlutterCupertinoListTileTrailing",
|
|
373
408
|
// Map props to attributes
|
|
@@ -383,8 +418,8 @@ var FlutterCupertinoListTileTrailing = createWebFComponent9({
|
|
|
383
418
|
});
|
|
384
419
|
|
|
385
420
|
// src/lib/src/list_section.tsx
|
|
386
|
-
import { createWebFComponent as
|
|
387
|
-
var FlutterCupertinoListSection =
|
|
421
|
+
import { createWebFComponent as createWebFComponent11 } from "@openwebf/react-core-ui";
|
|
422
|
+
var FlutterCupertinoListSection = createWebFComponent11({
|
|
388
423
|
tagName: "flutter-cupertino-list-section",
|
|
389
424
|
displayName: "FlutterCupertinoListSection",
|
|
390
425
|
// Map props to attributes
|
|
@@ -402,7 +437,7 @@ var FlutterCupertinoListSection = createWebFComponent10({
|
|
|
402
437
|
// Add default values here
|
|
403
438
|
}
|
|
404
439
|
});
|
|
405
|
-
var FlutterCupertinoListSectionHeader =
|
|
440
|
+
var FlutterCupertinoListSectionHeader = createWebFComponent11({
|
|
406
441
|
tagName: "flutter-cupertino-list-section-header",
|
|
407
442
|
displayName: "FlutterCupertinoListSectionHeader",
|
|
408
443
|
// Map props to attributes
|
|
@@ -416,7 +451,7 @@ var FlutterCupertinoListSectionHeader = createWebFComponent10({
|
|
|
416
451
|
// Add default values here
|
|
417
452
|
}
|
|
418
453
|
});
|
|
419
|
-
var FlutterCupertinoListSectionFooter =
|
|
454
|
+
var FlutterCupertinoListSectionFooter = createWebFComponent11({
|
|
420
455
|
tagName: "flutter-cupertino-list-section-footer",
|
|
421
456
|
displayName: "FlutterCupertinoListSectionFooter",
|
|
422
457
|
// Map props to attributes
|
|
@@ -432,8 +467,8 @@ var FlutterCupertinoListSectionFooter = createWebFComponent10({
|
|
|
432
467
|
});
|
|
433
468
|
|
|
434
469
|
// src/lib/src/icon.tsx
|
|
435
|
-
import { createWebFComponent as
|
|
436
|
-
var FlutterCupertinoIcon =
|
|
470
|
+
import { createWebFComponent as createWebFComponent12 } from "@openwebf/react-core-ui";
|
|
471
|
+
var FlutterCupertinoIcon = createWebFComponent12({
|
|
437
472
|
tagName: "flutter-cupertino-icon",
|
|
438
473
|
displayName: "FlutterCupertinoIcon",
|
|
439
474
|
// Map props to attributes
|
|
@@ -450,8 +485,8 @@ var FlutterCupertinoIcon = createWebFComponent11({
|
|
|
450
485
|
});
|
|
451
486
|
|
|
452
487
|
// src/lib/src/context-menu.tsx
|
|
453
|
-
import { createWebFComponent as
|
|
454
|
-
var FlutterCupertinoContextMenu =
|
|
488
|
+
import { createWebFComponent as createWebFComponent13 } from "@openwebf/react-core-ui";
|
|
489
|
+
var FlutterCupertinoContextMenu = createWebFComponent13({
|
|
455
490
|
tagName: "flutter-cupertino-context-menu",
|
|
456
491
|
displayName: "FlutterCupertinoContextMenu",
|
|
457
492
|
// Map props to attributes
|
|
@@ -479,8 +514,8 @@ var FlutterCupertinoContextMenu = createWebFComponent12({
|
|
|
479
514
|
});
|
|
480
515
|
|
|
481
516
|
// src/lib/src/checkbox.tsx
|
|
482
|
-
import { createWebFComponent as
|
|
483
|
-
var FlutterCupertinoCheckbox =
|
|
517
|
+
import { createWebFComponent as createWebFComponent14 } from "@openwebf/react-core-ui";
|
|
518
|
+
var FlutterCupertinoCheckbox = createWebFComponent14({
|
|
484
519
|
tagName: "flutter-cupertino-checkbox",
|
|
485
520
|
displayName: "FlutterCupertinoCheckbox",
|
|
486
521
|
// Map props to attributes
|
|
@@ -529,8 +564,8 @@ var FlutterCupertinoCheckbox = createWebFComponent13({
|
|
|
529
564
|
});
|
|
530
565
|
|
|
531
566
|
// src/lib/src/button.tsx
|
|
532
|
-
import { createWebFComponent as
|
|
533
|
-
var FlutterCupertinoButton =
|
|
567
|
+
import { createWebFComponent as createWebFComponent15 } from "@openwebf/react-core-ui";
|
|
568
|
+
var FlutterCupertinoButton = createWebFComponent15({
|
|
534
569
|
tagName: "flutter-cupertino-button",
|
|
535
570
|
displayName: "FlutterCupertinoButton",
|
|
536
571
|
// Map props to attributes
|
|
@@ -563,8 +598,8 @@ var FlutterCupertinoButton = createWebFComponent14({
|
|
|
563
598
|
});
|
|
564
599
|
|
|
565
600
|
// src/lib/src/alert.tsx
|
|
566
|
-
import { createWebFComponent as
|
|
567
|
-
var FlutterCupertinoAlert =
|
|
601
|
+
import { createWebFComponent as createWebFComponent16 } from "@openwebf/react-core-ui";
|
|
602
|
+
var FlutterCupertinoAlert = createWebFComponent16({
|
|
568
603
|
tagName: "flutter-cupertino-alert",
|
|
569
604
|
displayName: "FlutterCupertinoAlert",
|
|
570
605
|
// Map props to attributes
|
|
@@ -615,8 +650,8 @@ var FlutterCupertinoAlert = createWebFComponent15({
|
|
|
615
650
|
});
|
|
616
651
|
|
|
617
652
|
// src/lib/src/action-sheet.tsx
|
|
618
|
-
import { createWebFComponent as
|
|
619
|
-
var FlutterCupertinoActionSheet =
|
|
653
|
+
import { createWebFComponent as createWebFComponent17 } from "@openwebf/react-core-ui";
|
|
654
|
+
var FlutterCupertinoActionSheet = createWebFComponent17({
|
|
620
655
|
tagName: "flutter-cupertino-action-sheet",
|
|
621
656
|
displayName: "FlutterCupertinoActionSheet",
|
|
622
657
|
// Map props to attributes
|
|
@@ -639,555 +674,6 @@ var FlutterCupertinoActionSheet = createWebFComponent16({
|
|
|
639
674
|
}
|
|
640
675
|
});
|
|
641
676
|
|
|
642
|
-
// src/lib/src/legacy/toast.tsx
|
|
643
|
-
import { createWebFComponent as createWebFComponent17 } from "@openwebf/react-core-ui";
|
|
644
|
-
var FlutterCupertinoToast = createWebFComponent17({
|
|
645
|
-
tagName: "flutter-cupertino-toast",
|
|
646
|
-
displayName: "FlutterCupertinoToast",
|
|
647
|
-
// Map props to attributes
|
|
648
|
-
attributeProps: [],
|
|
649
|
-
// Convert prop names to attribute names if needed
|
|
650
|
-
attributeMap: {},
|
|
651
|
-
// Event handlers
|
|
652
|
-
events: [],
|
|
653
|
-
// Default prop values
|
|
654
|
-
defaultProps: {
|
|
655
|
-
// Add default values here
|
|
656
|
-
}
|
|
657
|
-
});
|
|
658
|
-
|
|
659
|
-
// src/lib/src/legacy/timer-picker.tsx
|
|
660
|
-
import { createWebFComponent as createWebFComponent18 } from "@openwebf/react-core-ui";
|
|
661
|
-
var FlutterCupertinoTimerPicker = createWebFComponent18({
|
|
662
|
-
tagName: "flutter-cupertino-timer-picker",
|
|
663
|
-
displayName: "FlutterCupertinoTimerPicker",
|
|
664
|
-
// Map props to attributes
|
|
665
|
-
attributeProps: [
|
|
666
|
-
"mode",
|
|
667
|
-
"initialTimerDuration",
|
|
668
|
-
"minuteInterval",
|
|
669
|
-
"secondInterval",
|
|
670
|
-
"backgroundColor",
|
|
671
|
-
"height"
|
|
672
|
-
],
|
|
673
|
-
// Convert prop names to attribute names if needed
|
|
674
|
-
attributeMap: {
|
|
675
|
-
initialTimerDuration: "initial-timer-duration",
|
|
676
|
-
minuteInterval: "minute-interval",
|
|
677
|
-
secondInterval: "second-interval",
|
|
678
|
-
backgroundColor: "background-color"
|
|
679
|
-
},
|
|
680
|
-
// Event handlers
|
|
681
|
-
events: [
|
|
682
|
-
{
|
|
683
|
-
propName: "onChange",
|
|
684
|
-
eventName: "change",
|
|
685
|
-
handler: (callback) => (event) => {
|
|
686
|
-
callback(event);
|
|
687
|
-
}
|
|
688
|
-
}
|
|
689
|
-
],
|
|
690
|
-
// Default prop values
|
|
691
|
-
defaultProps: {
|
|
692
|
-
// Add default values here
|
|
693
|
-
}
|
|
694
|
-
});
|
|
695
|
-
|
|
696
|
-
// src/lib/src/legacy/textarea.tsx
|
|
697
|
-
import { createWebFComponent as createWebFComponent19 } from "@openwebf/react-core-ui";
|
|
698
|
-
var FlutterCupertinoTextarea = createWebFComponent19({
|
|
699
|
-
tagName: "flutter-cupertino-textarea",
|
|
700
|
-
displayName: "FlutterCupertinoTextarea",
|
|
701
|
-
// Map props to attributes
|
|
702
|
-
attributeProps: [
|
|
703
|
-
"val",
|
|
704
|
-
"placeholder",
|
|
705
|
-
"disabled",
|
|
706
|
-
"readonly",
|
|
707
|
-
"maxLength",
|
|
708
|
-
"rows",
|
|
709
|
-
"showCount",
|
|
710
|
-
"autoSize",
|
|
711
|
-
"transparent"
|
|
712
|
-
],
|
|
713
|
-
// Convert prop names to attribute names if needed
|
|
714
|
-
attributeMap: {
|
|
715
|
-
maxLength: "max-length",
|
|
716
|
-
showCount: "show-count",
|
|
717
|
-
autoSize: "auto-size"
|
|
718
|
-
},
|
|
719
|
-
// Event handlers
|
|
720
|
-
events: [
|
|
721
|
-
{
|
|
722
|
-
propName: "onInput",
|
|
723
|
-
eventName: "input",
|
|
724
|
-
handler: (callback) => (event) => {
|
|
725
|
-
callback(event);
|
|
726
|
-
}
|
|
727
|
-
},
|
|
728
|
-
{
|
|
729
|
-
propName: "onComplete",
|
|
730
|
-
eventName: "complete",
|
|
731
|
-
handler: (callback) => (event) => {
|
|
732
|
-
callback(event);
|
|
733
|
-
}
|
|
734
|
-
}
|
|
735
|
-
],
|
|
736
|
-
// Default prop values
|
|
737
|
-
defaultProps: {
|
|
738
|
-
// Add default values here
|
|
739
|
-
}
|
|
740
|
-
});
|
|
741
|
-
|
|
742
|
-
// src/lib/src/legacy/segmented-tab.tsx
|
|
743
|
-
import { createWebFComponent as createWebFComponent20 } from "@openwebf/react-core-ui";
|
|
744
|
-
var FlutterCupertinoSegmentedTab = createWebFComponent20({
|
|
745
|
-
tagName: "flutter-cupertino-segmented-tab",
|
|
746
|
-
displayName: "FlutterCupertinoSegmentedTab",
|
|
747
|
-
// Map props to attributes
|
|
748
|
-
attributeProps: [],
|
|
749
|
-
// Convert prop names to attribute names if needed
|
|
750
|
-
attributeMap: {},
|
|
751
|
-
// Event handlers
|
|
752
|
-
events: [
|
|
753
|
-
{
|
|
754
|
-
propName: "onChange",
|
|
755
|
-
eventName: "change",
|
|
756
|
-
handler: (callback) => (event) => {
|
|
757
|
-
callback(event);
|
|
758
|
-
}
|
|
759
|
-
}
|
|
760
|
-
],
|
|
761
|
-
// Default prop values
|
|
762
|
-
defaultProps: {
|
|
763
|
-
// Add default values here
|
|
764
|
-
}
|
|
765
|
-
});
|
|
766
|
-
var FlutterCupertinoSegmentedTabItem = createWebFComponent20({
|
|
767
|
-
tagName: "flutter-cupertino-segmented-tab-item",
|
|
768
|
-
displayName: "FlutterCupertinoSegmentedTabItem",
|
|
769
|
-
// Map props to attributes
|
|
770
|
-
attributeProps: [
|
|
771
|
-
"title"
|
|
772
|
-
],
|
|
773
|
-
// Convert prop names to attribute names if needed
|
|
774
|
-
attributeMap: {},
|
|
775
|
-
// Event handlers
|
|
776
|
-
events: [],
|
|
777
|
-
// Default prop values
|
|
778
|
-
defaultProps: {
|
|
779
|
-
// Add default values here
|
|
780
|
-
}
|
|
781
|
-
});
|
|
782
|
-
|
|
783
|
-
// src/lib/src/legacy/search-input.tsx
|
|
784
|
-
import { createWebFComponent as createWebFComponent21 } from "@openwebf/react-core-ui";
|
|
785
|
-
var FlutterCupertinoSearchInput = createWebFComponent21({
|
|
786
|
-
tagName: "flutter-cupertino-search-input",
|
|
787
|
-
displayName: "FlutterCupertinoSearchInput",
|
|
788
|
-
// Map props to attributes
|
|
789
|
-
attributeProps: [
|
|
790
|
-
"val",
|
|
791
|
-
"placeholder",
|
|
792
|
-
"disabled",
|
|
793
|
-
"type",
|
|
794
|
-
"prefixIcon",
|
|
795
|
-
"suffixIcon",
|
|
796
|
-
"suffixModel",
|
|
797
|
-
"itemColor",
|
|
798
|
-
"itemSize",
|
|
799
|
-
"autofocus"
|
|
800
|
-
],
|
|
801
|
-
// Convert prop names to attribute names if needed
|
|
802
|
-
attributeMap: {
|
|
803
|
-
prefixIcon: "prefix-icon",
|
|
804
|
-
suffixIcon: "suffix-icon",
|
|
805
|
-
suffixModel: "suffix-model",
|
|
806
|
-
itemColor: "item-color",
|
|
807
|
-
itemSize: "item-size"
|
|
808
|
-
},
|
|
809
|
-
// Event handlers
|
|
810
|
-
events: [
|
|
811
|
-
{
|
|
812
|
-
propName: "onInput",
|
|
813
|
-
eventName: "input",
|
|
814
|
-
handler: (callback) => (event) => {
|
|
815
|
-
callback(event);
|
|
816
|
-
}
|
|
817
|
-
},
|
|
818
|
-
{
|
|
819
|
-
propName: "onSearch",
|
|
820
|
-
eventName: "search",
|
|
821
|
-
handler: (callback) => (event) => {
|
|
822
|
-
callback(event);
|
|
823
|
-
}
|
|
824
|
-
},
|
|
825
|
-
{
|
|
826
|
-
propName: "onClear",
|
|
827
|
-
eventName: "clear",
|
|
828
|
-
handler: (callback) => (event) => {
|
|
829
|
-
callback(event);
|
|
830
|
-
}
|
|
831
|
-
}
|
|
832
|
-
],
|
|
833
|
-
// Default prop values
|
|
834
|
-
defaultProps: {
|
|
835
|
-
// Add default values here
|
|
836
|
-
}
|
|
837
|
-
});
|
|
838
|
-
|
|
839
|
-
// src/lib/src/legacy/picker.tsx
|
|
840
|
-
import { createWebFComponent as createWebFComponent22 } from "@openwebf/react-core-ui";
|
|
841
|
-
var FlutterCupertinoPicker = createWebFComponent22({
|
|
842
|
-
tagName: "flutter-cupertino-picker",
|
|
843
|
-
displayName: "FlutterCupertinoPicker",
|
|
844
|
-
// Map props to attributes
|
|
845
|
-
attributeProps: [
|
|
846
|
-
"height",
|
|
847
|
-
"itemHeight"
|
|
848
|
-
],
|
|
849
|
-
// Convert prop names to attribute names if needed
|
|
850
|
-
attributeMap: {
|
|
851
|
-
itemHeight: "item-height"
|
|
852
|
-
},
|
|
853
|
-
// Event handlers
|
|
854
|
-
events: [
|
|
855
|
-
{
|
|
856
|
-
propName: "onChange",
|
|
857
|
-
eventName: "change",
|
|
858
|
-
handler: (callback) => (event) => {
|
|
859
|
-
callback(event);
|
|
860
|
-
}
|
|
861
|
-
}
|
|
862
|
-
],
|
|
863
|
-
// Default prop values
|
|
864
|
-
defaultProps: {
|
|
865
|
-
// Add default values here
|
|
866
|
-
}
|
|
867
|
-
});
|
|
868
|
-
|
|
869
|
-
// src/lib/src/legacy/picker-item.tsx
|
|
870
|
-
import { createWebFComponent as createWebFComponent23 } from "@openwebf/react-core-ui";
|
|
871
|
-
var FlutterCupertinoPickerItem = createWebFComponent23({
|
|
872
|
-
tagName: "flutter-cupertino-picker-item",
|
|
873
|
-
displayName: "FlutterCupertinoPickerItem",
|
|
874
|
-
// Map props to attributes
|
|
875
|
-
attributeProps: [
|
|
876
|
-
"label",
|
|
877
|
-
"val"
|
|
878
|
-
],
|
|
879
|
-
// Convert prop names to attribute names if needed
|
|
880
|
-
attributeMap: {},
|
|
881
|
-
// Event handlers
|
|
882
|
-
events: [],
|
|
883
|
-
// Default prop values
|
|
884
|
-
defaultProps: {
|
|
885
|
-
// Add default values here
|
|
886
|
-
}
|
|
887
|
-
});
|
|
888
|
-
|
|
889
|
-
// src/lib/src/legacy/modal-popup.tsx
|
|
890
|
-
import { createWebFComponent as createWebFComponent24 } from "@openwebf/react-core-ui";
|
|
891
|
-
var FlutterCupertinoModalPopup = createWebFComponent24({
|
|
892
|
-
tagName: "flutter-cupertino-modal-popup",
|
|
893
|
-
displayName: "FlutterCupertinoModalPopup",
|
|
894
|
-
// Map props to attributes
|
|
895
|
-
attributeProps: [
|
|
896
|
-
"visible",
|
|
897
|
-
"height",
|
|
898
|
-
"surfacePainted",
|
|
899
|
-
"maskClosable",
|
|
900
|
-
"backgroundOpacity"
|
|
901
|
-
],
|
|
902
|
-
// Convert prop names to attribute names if needed
|
|
903
|
-
attributeMap: {
|
|
904
|
-
surfacePainted: "surface-painted",
|
|
905
|
-
maskClosable: "mask-closable",
|
|
906
|
-
backgroundOpacity: "background-opacity"
|
|
907
|
-
},
|
|
908
|
-
// Event handlers
|
|
909
|
-
events: [
|
|
910
|
-
{
|
|
911
|
-
propName: "onClose",
|
|
912
|
-
eventName: "close",
|
|
913
|
-
handler: (callback) => (event) => {
|
|
914
|
-
callback(event);
|
|
915
|
-
}
|
|
916
|
-
}
|
|
917
|
-
],
|
|
918
|
-
// Default prop values
|
|
919
|
-
defaultProps: {
|
|
920
|
-
// Add default values here
|
|
921
|
-
}
|
|
922
|
-
});
|
|
923
|
-
|
|
924
|
-
// src/lib/src/legacy/loading.tsx
|
|
925
|
-
import { createWebFComponent as createWebFComponent25 } from "@openwebf/react-core-ui";
|
|
926
|
-
var FlutterCupertinoLoading = createWebFComponent25({
|
|
927
|
-
tagName: "flutter-cupertino-loading",
|
|
928
|
-
displayName: "FlutterCupertinoLoading",
|
|
929
|
-
// Map props to attributes
|
|
930
|
-
attributeProps: [
|
|
931
|
-
"maskClosable"
|
|
932
|
-
],
|
|
933
|
-
// Convert prop names to attribute names if needed
|
|
934
|
-
attributeMap: {
|
|
935
|
-
maskClosable: "mask-closable"
|
|
936
|
-
},
|
|
937
|
-
// Event handlers
|
|
938
|
-
events: [],
|
|
939
|
-
// Default prop values
|
|
940
|
-
defaultProps: {
|
|
941
|
-
// Add default values here
|
|
942
|
-
}
|
|
943
|
-
});
|
|
944
|
-
|
|
945
|
-
// src/lib/src/legacy/input.tsx
|
|
946
|
-
import { createWebFComponent as createWebFComponent26 } from "@openwebf/react-core-ui";
|
|
947
|
-
var FlutterCupertinoInput = createWebFComponent26({
|
|
948
|
-
tagName: "flutter-cupertino-input",
|
|
949
|
-
displayName: "FlutterCupertinoInput",
|
|
950
|
-
// Map props to attributes
|
|
951
|
-
attributeProps: [
|
|
952
|
-
"val",
|
|
953
|
-
"placeholder",
|
|
954
|
-
"type",
|
|
955
|
-
"disabled",
|
|
956
|
-
"autofocus",
|
|
957
|
-
"clearable",
|
|
958
|
-
"maxlength",
|
|
959
|
-
"readonly"
|
|
960
|
-
],
|
|
961
|
-
// Convert prop names to attribute names if needed
|
|
962
|
-
attributeMap: {},
|
|
963
|
-
// Event handlers
|
|
964
|
-
events: [
|
|
965
|
-
{
|
|
966
|
-
propName: "onInput",
|
|
967
|
-
eventName: "input",
|
|
968
|
-
handler: (callback) => (event) => {
|
|
969
|
-
callback(event);
|
|
970
|
-
}
|
|
971
|
-
},
|
|
972
|
-
{
|
|
973
|
-
propName: "onSubmit",
|
|
974
|
-
eventName: "submit",
|
|
975
|
-
handler: (callback) => (event) => {
|
|
976
|
-
callback(event);
|
|
977
|
-
}
|
|
978
|
-
},
|
|
979
|
-
{
|
|
980
|
-
propName: "onFocus",
|
|
981
|
-
eventName: "focus",
|
|
982
|
-
handler: (callback) => (event) => {
|
|
983
|
-
callback(event);
|
|
984
|
-
}
|
|
985
|
-
},
|
|
986
|
-
{
|
|
987
|
-
propName: "onBlur",
|
|
988
|
-
eventName: "blur",
|
|
989
|
-
handler: (callback) => (event) => {
|
|
990
|
-
callback(event);
|
|
991
|
-
}
|
|
992
|
-
},
|
|
993
|
-
{
|
|
994
|
-
propName: "onClear",
|
|
995
|
-
eventName: "clear",
|
|
996
|
-
handler: (callback) => (event) => {
|
|
997
|
-
callback(event);
|
|
998
|
-
}
|
|
999
|
-
}
|
|
1000
|
-
],
|
|
1001
|
-
// Default prop values
|
|
1002
|
-
defaultProps: {
|
|
1003
|
-
// Add default values here
|
|
1004
|
-
}
|
|
1005
|
-
});
|
|
1006
|
-
var FlutterCupertinoInputPrefix = createWebFComponent26({
|
|
1007
|
-
tagName: "flutter-cupertino-input-prefix",
|
|
1008
|
-
displayName: "FlutterCupertinoInputPrefix",
|
|
1009
|
-
// Map props to attributes
|
|
1010
|
-
attributeProps: [],
|
|
1011
|
-
// Convert prop names to attribute names if needed
|
|
1012
|
-
attributeMap: {},
|
|
1013
|
-
// Event handlers
|
|
1014
|
-
events: [],
|
|
1015
|
-
// Default prop values
|
|
1016
|
-
defaultProps: {
|
|
1017
|
-
// Add default values here
|
|
1018
|
-
}
|
|
1019
|
-
});
|
|
1020
|
-
var FlutterCupertinoInputSuffix = createWebFComponent26({
|
|
1021
|
-
tagName: "flutter-cupertino-input-suffix",
|
|
1022
|
-
displayName: "FlutterCupertinoInputSuffix",
|
|
1023
|
-
// Map props to attributes
|
|
1024
|
-
attributeProps: [],
|
|
1025
|
-
// Convert prop names to attribute names if needed
|
|
1026
|
-
attributeMap: {},
|
|
1027
|
-
// Event handlers
|
|
1028
|
-
events: [],
|
|
1029
|
-
// Default prop values
|
|
1030
|
-
defaultProps: {
|
|
1031
|
-
// Add default values here
|
|
1032
|
-
}
|
|
1033
|
-
});
|
|
1034
|
-
|
|
1035
|
-
// src/lib/src/legacy/form_section.tsx
|
|
1036
|
-
import { createWebFComponent as createWebFComponent27 } from "@openwebf/react-core-ui";
|
|
1037
|
-
var FlutterCupertinoFormSection = createWebFComponent27({
|
|
1038
|
-
tagName: "flutter-cupertino-form-section",
|
|
1039
|
-
displayName: "FlutterCupertinoFormSection",
|
|
1040
|
-
// Map props to attributes
|
|
1041
|
-
attributeProps: [
|
|
1042
|
-
"insetGrouped",
|
|
1043
|
-
"clipBehavior"
|
|
1044
|
-
],
|
|
1045
|
-
// Convert prop names to attribute names if needed
|
|
1046
|
-
attributeMap: {
|
|
1047
|
-
insetGrouped: "inset-grouped",
|
|
1048
|
-
clipBehavior: "clip-behavior"
|
|
1049
|
-
},
|
|
1050
|
-
// Event handlers
|
|
1051
|
-
events: [],
|
|
1052
|
-
// Default prop values
|
|
1053
|
-
defaultProps: {
|
|
1054
|
-
// Add default values here
|
|
1055
|
-
}
|
|
1056
|
-
});
|
|
1057
|
-
var FlutterCupertinoFormSectionHeader = createWebFComponent27({
|
|
1058
|
-
tagName: "flutter-cupertino-form-section-header",
|
|
1059
|
-
displayName: "FlutterCupertinoFormSectionHeader",
|
|
1060
|
-
// Map props to attributes
|
|
1061
|
-
attributeProps: [],
|
|
1062
|
-
// Convert prop names to attribute names if needed
|
|
1063
|
-
attributeMap: {},
|
|
1064
|
-
// Event handlers
|
|
1065
|
-
events: [],
|
|
1066
|
-
// Default prop values
|
|
1067
|
-
defaultProps: {
|
|
1068
|
-
// Add default values here
|
|
1069
|
-
}
|
|
1070
|
-
});
|
|
1071
|
-
var FlutterCupertinoFormSectionFooter = createWebFComponent27({
|
|
1072
|
-
tagName: "flutter-cupertino-form-section-footer",
|
|
1073
|
-
displayName: "FlutterCupertinoFormSectionFooter",
|
|
1074
|
-
// Map props to attributes
|
|
1075
|
-
attributeProps: [],
|
|
1076
|
-
// Convert prop names to attribute names if needed
|
|
1077
|
-
attributeMap: {},
|
|
1078
|
-
// Event handlers
|
|
1079
|
-
events: [],
|
|
1080
|
-
// Default prop values
|
|
1081
|
-
defaultProps: {
|
|
1082
|
-
// Add default values here
|
|
1083
|
-
}
|
|
1084
|
-
});
|
|
1085
|
-
|
|
1086
|
-
// src/lib/src/legacy/form_row.tsx
|
|
1087
|
-
import { createWebFComponent as createWebFComponent28 } from "@openwebf/react-core-ui";
|
|
1088
|
-
var FlutterCupertinoFormRow = createWebFComponent28({
|
|
1089
|
-
tagName: "flutter-cupertino-form-row",
|
|
1090
|
-
displayName: "FlutterCupertinoFormRow",
|
|
1091
|
-
// Map props to attributes
|
|
1092
|
-
attributeProps: [],
|
|
1093
|
-
// Convert prop names to attribute names if needed
|
|
1094
|
-
attributeMap: {},
|
|
1095
|
-
// Event handlers
|
|
1096
|
-
events: [],
|
|
1097
|
-
// Default prop values
|
|
1098
|
-
defaultProps: {
|
|
1099
|
-
// Add default values here
|
|
1100
|
-
}
|
|
1101
|
-
});
|
|
1102
|
-
var FlutterCupertinoFormRowPrefix = createWebFComponent28({
|
|
1103
|
-
tagName: "flutter-cupertino-form-row-prefix",
|
|
1104
|
-
displayName: "FlutterCupertinoFormRowPrefix",
|
|
1105
|
-
// Map props to attributes
|
|
1106
|
-
attributeProps: [],
|
|
1107
|
-
// Convert prop names to attribute names if needed
|
|
1108
|
-
attributeMap: {},
|
|
1109
|
-
// Event handlers
|
|
1110
|
-
events: [],
|
|
1111
|
-
// Default prop values
|
|
1112
|
-
defaultProps: {
|
|
1113
|
-
// Add default values here
|
|
1114
|
-
}
|
|
1115
|
-
});
|
|
1116
|
-
var FlutterCupertinoFormRowHelper = createWebFComponent28({
|
|
1117
|
-
tagName: "flutter-cupertino-form-row-helper",
|
|
1118
|
-
displayName: "FlutterCupertinoFormRowHelper",
|
|
1119
|
-
// Map props to attributes
|
|
1120
|
-
attributeProps: [],
|
|
1121
|
-
// Convert prop names to attribute names if needed
|
|
1122
|
-
attributeMap: {},
|
|
1123
|
-
// Event handlers
|
|
1124
|
-
events: [],
|
|
1125
|
-
// Default prop values
|
|
1126
|
-
defaultProps: {
|
|
1127
|
-
// Add default values here
|
|
1128
|
-
}
|
|
1129
|
-
});
|
|
1130
|
-
var FlutterCupertinoFormRowError = createWebFComponent28({
|
|
1131
|
-
tagName: "flutter-cupertino-form-row-error",
|
|
1132
|
-
displayName: "FlutterCupertinoFormRowError",
|
|
1133
|
-
// Map props to attributes
|
|
1134
|
-
attributeProps: [],
|
|
1135
|
-
// Convert prop names to attribute names if needed
|
|
1136
|
-
attributeMap: {},
|
|
1137
|
-
// Event handlers
|
|
1138
|
-
events: [],
|
|
1139
|
-
// Default prop values
|
|
1140
|
-
defaultProps: {
|
|
1141
|
-
// Add default values here
|
|
1142
|
-
}
|
|
1143
|
-
});
|
|
1144
|
-
|
|
1145
|
-
// src/lib/src/legacy/date-picker.tsx
|
|
1146
|
-
import { createWebFComponent as createWebFComponent29 } from "@openwebf/react-core-ui";
|
|
1147
|
-
var FlutterCupertinoDatePicker = createWebFComponent29({
|
|
1148
|
-
tagName: "flutter-cupertino-date-picker",
|
|
1149
|
-
displayName: "FlutterCupertinoDatePicker",
|
|
1150
|
-
// Map props to attributes
|
|
1151
|
-
attributeProps: [
|
|
1152
|
-
"mode",
|
|
1153
|
-
"minimumDate",
|
|
1154
|
-
"maximumDate",
|
|
1155
|
-
"minuteInterval",
|
|
1156
|
-
"value",
|
|
1157
|
-
"minimumYear",
|
|
1158
|
-
"maximumYear",
|
|
1159
|
-
"showDayOfWeek",
|
|
1160
|
-
"dateOrder",
|
|
1161
|
-
"height",
|
|
1162
|
-
"use24H"
|
|
1163
|
-
],
|
|
1164
|
-
// Convert prop names to attribute names if needed
|
|
1165
|
-
attributeMap: {
|
|
1166
|
-
minimumDate: "minimum-date",
|
|
1167
|
-
maximumDate: "maximum-date",
|
|
1168
|
-
minuteInterval: "minute-interval",
|
|
1169
|
-
minimumYear: "minimum-year",
|
|
1170
|
-
maximumYear: "maximum-year",
|
|
1171
|
-
showDayOfWeek: "show-day-of-week",
|
|
1172
|
-
dateOrder: "date-order",
|
|
1173
|
-
use24H: "use-24-h"
|
|
1174
|
-
},
|
|
1175
|
-
// Event handlers
|
|
1176
|
-
events: [
|
|
1177
|
-
{
|
|
1178
|
-
propName: "onChange",
|
|
1179
|
-
eventName: "change",
|
|
1180
|
-
handler: (callback) => (event) => {
|
|
1181
|
-
callback(event);
|
|
1182
|
-
}
|
|
1183
|
-
}
|
|
1184
|
-
],
|
|
1185
|
-
// Default prop values
|
|
1186
|
-
defaultProps: {
|
|
1187
|
-
// Add default values here
|
|
1188
|
-
}
|
|
1189
|
-
});
|
|
1190
|
-
|
|
1191
677
|
// src/types.ts
|
|
1192
678
|
var CupertinoIcons = /* @__PURE__ */ ((CupertinoIcons2) => {
|
|
1193
679
|
CupertinoIcons2["add"] = "add";
|
|
@@ -2572,18 +2058,7 @@ export {
|
|
|
2572
2058
|
FlutterCupertinoButton,
|
|
2573
2059
|
FlutterCupertinoCheckbox,
|
|
2574
2060
|
FlutterCupertinoContextMenu,
|
|
2575
|
-
FlutterCupertinoDatePicker,
|
|
2576
|
-
FlutterCupertinoFormRow,
|
|
2577
|
-
FlutterCupertinoFormRowError,
|
|
2578
|
-
FlutterCupertinoFormRowHelper,
|
|
2579
|
-
FlutterCupertinoFormRowPrefix,
|
|
2580
|
-
FlutterCupertinoFormSection,
|
|
2581
|
-
FlutterCupertinoFormSectionFooter,
|
|
2582
|
-
FlutterCupertinoFormSectionHeader,
|
|
2583
2061
|
FlutterCupertinoIcon,
|
|
2584
|
-
FlutterCupertinoInput,
|
|
2585
|
-
FlutterCupertinoInputPrefix,
|
|
2586
|
-
FlutterCupertinoInputSuffix,
|
|
2587
2062
|
FlutterCupertinoListSection,
|
|
2588
2063
|
FlutterCupertinoListSectionFooter,
|
|
2589
2064
|
FlutterCupertinoListSectionHeader,
|
|
@@ -2592,14 +2067,8 @@ export {
|
|
|
2592
2067
|
FlutterCupertinoListTileLeading,
|
|
2593
2068
|
FlutterCupertinoListTileSubtitle,
|
|
2594
2069
|
FlutterCupertinoListTileTrailing,
|
|
2595
|
-
FlutterCupertinoLoading,
|
|
2596
2070
|
FlutterCupertinoModalPopup,
|
|
2597
|
-
FlutterCupertinoPicker,
|
|
2598
|
-
FlutterCupertinoPickerItem,
|
|
2599
2071
|
FlutterCupertinoRadio,
|
|
2600
|
-
FlutterCupertinoSearchInput,
|
|
2601
|
-
FlutterCupertinoSegmentedTab,
|
|
2602
|
-
FlutterCupertinoSegmentedTabItem,
|
|
2603
2072
|
FlutterCupertinoSlider,
|
|
2604
2073
|
FlutterCupertinoSlidingSegmentedControl,
|
|
2605
2074
|
FlutterCupertinoSlidingSegmentedControlItem,
|
|
@@ -2608,9 +2077,6 @@ export {
|
|
|
2608
2077
|
FlutterCupertinoTabBarItem,
|
|
2609
2078
|
FlutterCupertinoTabScaffold,
|
|
2610
2079
|
FlutterCupertinoTabScaffoldTab,
|
|
2611
|
-
FlutterCupertinoTabView
|
|
2612
|
-
FlutterCupertinoTextarea,
|
|
2613
|
-
FlutterCupertinoTimerPicker,
|
|
2614
|
-
FlutterCupertinoToast
|
|
2080
|
+
FlutterCupertinoTabView
|
|
2615
2081
|
};
|
|
2616
2082
|
//# sourceMappingURL=index.mjs.map
|