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