@openwebf/react-cupertino-ui 0.3.30 → 0.3.32
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 +151 -21
- package/dist/index.d.ts +151 -21
- package/dist/index.js +85 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +83 -21
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
// src/
|
|
1
|
+
// src/lib/src/text-form-field-row.tsx
|
|
2
2
|
import { createWebFComponent } from "@openwebf/react-core-ui";
|
|
3
|
-
var
|
|
4
|
-
tagName: "flutter-cupertino-
|
|
5
|
-
displayName: "
|
|
3
|
+
var FlutterCupertinoTextFormFieldRow = createWebFComponent({
|
|
4
|
+
tagName: "flutter-cupertino-text-form-field-row",
|
|
5
|
+
displayName: "FlutterCupertinoTextFormFieldRow",
|
|
6
6
|
// Map props to attributes
|
|
7
7
|
attributeProps: [
|
|
8
8
|
"val",
|
|
@@ -10,7 +10,6 @@ var FlutterCupertinoInput = createWebFComponent({
|
|
|
10
10
|
"type",
|
|
11
11
|
"disabled",
|
|
12
12
|
"autofocus",
|
|
13
|
-
"clearable",
|
|
14
13
|
"maxlength",
|
|
15
14
|
"readonly"
|
|
16
15
|
],
|
|
@@ -528,9 +527,71 @@ var FlutterCupertinoListSectionFooter = createWebFComponent12({
|
|
|
528
527
|
}
|
|
529
528
|
});
|
|
530
529
|
|
|
531
|
-
// src/lib/src/
|
|
530
|
+
// src/lib/src/input.tsx
|
|
532
531
|
import { createWebFComponent as createWebFComponent13 } from "@openwebf/react-core-ui";
|
|
533
|
-
var
|
|
532
|
+
var FlutterCupertinoInput = createWebFComponent13({
|
|
533
|
+
tagName: "flutter-cupertino-input",
|
|
534
|
+
displayName: "FlutterCupertinoInput",
|
|
535
|
+
// Map props to attributes
|
|
536
|
+
attributeProps: [
|
|
537
|
+
"val",
|
|
538
|
+
"placeholder",
|
|
539
|
+
"type",
|
|
540
|
+
"disabled",
|
|
541
|
+
"autofocus",
|
|
542
|
+
"clearable",
|
|
543
|
+
"maxlength",
|
|
544
|
+
"readonly"
|
|
545
|
+
],
|
|
546
|
+
// Convert prop names to attribute names if needed
|
|
547
|
+
attributeMap: {},
|
|
548
|
+
// Event handlers
|
|
549
|
+
events: [
|
|
550
|
+
{
|
|
551
|
+
propName: "onInput",
|
|
552
|
+
eventName: "input",
|
|
553
|
+
handler: (callback) => (event) => {
|
|
554
|
+
callback(event);
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
propName: "onSubmit",
|
|
559
|
+
eventName: "submit",
|
|
560
|
+
handler: (callback) => (event) => {
|
|
561
|
+
callback(event);
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
propName: "onFocus",
|
|
566
|
+
eventName: "focus",
|
|
567
|
+
handler: (callback) => (event) => {
|
|
568
|
+
callback(event);
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
propName: "onBlur",
|
|
573
|
+
eventName: "blur",
|
|
574
|
+
handler: (callback) => (event) => {
|
|
575
|
+
callback(event);
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
propName: "onClear",
|
|
580
|
+
eventName: "clear",
|
|
581
|
+
handler: (callback) => (event) => {
|
|
582
|
+
callback(event);
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
],
|
|
586
|
+
// Default prop values
|
|
587
|
+
defaultProps: {
|
|
588
|
+
// Add default values here
|
|
589
|
+
}
|
|
590
|
+
});
|
|
591
|
+
|
|
592
|
+
// src/lib/src/icon.tsx
|
|
593
|
+
import { createWebFComponent as createWebFComponent14 } from "@openwebf/react-core-ui";
|
|
594
|
+
var FlutterCupertinoIcon = createWebFComponent14({
|
|
534
595
|
tagName: "flutter-cupertino-icon",
|
|
535
596
|
displayName: "FlutterCupertinoIcon",
|
|
536
597
|
// Map props to attributes
|
|
@@ -547,8 +608,8 @@ var FlutterCupertinoIcon = createWebFComponent13({
|
|
|
547
608
|
});
|
|
548
609
|
|
|
549
610
|
// src/lib/src/form-section.tsx
|
|
550
|
-
import { createWebFComponent as
|
|
551
|
-
var FlutterCupertinoFormSection =
|
|
611
|
+
import { createWebFComponent as createWebFComponent15 } from "@openwebf/react-core-ui";
|
|
612
|
+
var FlutterCupertinoFormSection = createWebFComponent15({
|
|
552
613
|
tagName: "flutter-cupertino-form-section",
|
|
553
614
|
displayName: "FlutterCupertinoFormSection",
|
|
554
615
|
// Map props to attributes
|
|
@@ -568,7 +629,7 @@ var FlutterCupertinoFormSection = createWebFComponent14({
|
|
|
568
629
|
// Add default values here
|
|
569
630
|
}
|
|
570
631
|
});
|
|
571
|
-
var FlutterCupertinoFormRow =
|
|
632
|
+
var FlutterCupertinoFormRow = createWebFComponent15({
|
|
572
633
|
tagName: "flutter-cupertino-form-row",
|
|
573
634
|
displayName: "FlutterCupertinoFormRow",
|
|
574
635
|
// Map props to attributes
|
|
@@ -584,8 +645,8 @@ var FlutterCupertinoFormRow = createWebFComponent14({
|
|
|
584
645
|
});
|
|
585
646
|
|
|
586
647
|
// src/lib/src/context-menu.tsx
|
|
587
|
-
import { createWebFComponent as
|
|
588
|
-
var FlutterCupertinoContextMenu =
|
|
648
|
+
import { createWebFComponent as createWebFComponent16 } from "@openwebf/react-core-ui";
|
|
649
|
+
var FlutterCupertinoContextMenu = createWebFComponent16({
|
|
589
650
|
tagName: "flutter-cupertino-context-menu",
|
|
590
651
|
displayName: "FlutterCupertinoContextMenu",
|
|
591
652
|
// Map props to attributes
|
|
@@ -613,8 +674,8 @@ var FlutterCupertinoContextMenu = createWebFComponent15({
|
|
|
613
674
|
});
|
|
614
675
|
|
|
615
676
|
// src/lib/src/checkbox.tsx
|
|
616
|
-
import { createWebFComponent as
|
|
617
|
-
var FlutterCupertinoCheckbox =
|
|
677
|
+
import { createWebFComponent as createWebFComponent17 } from "@openwebf/react-core-ui";
|
|
678
|
+
var FlutterCupertinoCheckbox = createWebFComponent17({
|
|
618
679
|
tagName: "flutter-cupertino-checkbox",
|
|
619
680
|
displayName: "FlutterCupertinoCheckbox",
|
|
620
681
|
// Map props to attributes
|
|
@@ -663,8 +724,8 @@ var FlutterCupertinoCheckbox = createWebFComponent16({
|
|
|
663
724
|
});
|
|
664
725
|
|
|
665
726
|
// src/lib/src/button.tsx
|
|
666
|
-
import { createWebFComponent as
|
|
667
|
-
var FlutterCupertinoButton =
|
|
727
|
+
import { createWebFComponent as createWebFComponent18 } from "@openwebf/react-core-ui";
|
|
728
|
+
var FlutterCupertinoButton = createWebFComponent18({
|
|
668
729
|
tagName: "flutter-cupertino-button",
|
|
669
730
|
displayName: "FlutterCupertinoButton",
|
|
670
731
|
// Map props to attributes
|
|
@@ -697,8 +758,8 @@ var FlutterCupertinoButton = createWebFComponent17({
|
|
|
697
758
|
});
|
|
698
759
|
|
|
699
760
|
// src/lib/src/alert.tsx
|
|
700
|
-
import { createWebFComponent as
|
|
701
|
-
var FlutterCupertinoAlert =
|
|
761
|
+
import { createWebFComponent as createWebFComponent19 } from "@openwebf/react-core-ui";
|
|
762
|
+
var FlutterCupertinoAlert = createWebFComponent19({
|
|
702
763
|
tagName: "flutter-cupertino-alert",
|
|
703
764
|
displayName: "FlutterCupertinoAlert",
|
|
704
765
|
// Map props to attributes
|
|
@@ -749,8 +810,8 @@ var FlutterCupertinoAlert = createWebFComponent18({
|
|
|
749
810
|
});
|
|
750
811
|
|
|
751
812
|
// src/lib/src/action-sheet.tsx
|
|
752
|
-
import { createWebFComponent as
|
|
753
|
-
var FlutterCupertinoActionSheet =
|
|
813
|
+
import { createWebFComponent as createWebFComponent20 } from "@openwebf/react-core-ui";
|
|
814
|
+
var FlutterCupertinoActionSheet = createWebFComponent20({
|
|
754
815
|
tagName: "flutter-cupertino-action-sheet",
|
|
755
816
|
displayName: "FlutterCupertinoActionSheet",
|
|
756
817
|
// Map props to attributes
|
|
@@ -2179,6 +2240,7 @@ export {
|
|
|
2179
2240
|
FlutterCupertinoTabBarItem,
|
|
2180
2241
|
FlutterCupertinoTabScaffold,
|
|
2181
2242
|
FlutterCupertinoTabScaffoldTab,
|
|
2182
|
-
FlutterCupertinoTabView
|
|
2243
|
+
FlutterCupertinoTabView,
|
|
2244
|
+
FlutterCupertinoTextFormFieldRow
|
|
2183
2245
|
};
|
|
2184
2246
|
//# sourceMappingURL=index.mjs.map
|