@openwebf/react-cupertino-ui 0.3.24 → 0.3.26
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 +199 -1
- package/dist/index.d.ts +199 -1
- package/dist/index.js +100 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +97 -22
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -296,9 +296,44 @@ 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
|
|
@@ -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
|
|
@@ -449,9 +484,46 @@ var FlutterCupertinoIcon = createWebFComponent11({
|
|
|
449
484
|
}
|
|
450
485
|
});
|
|
451
486
|
|
|
487
|
+
// src/lib/src/form-section.tsx
|
|
488
|
+
import { createWebFComponent as createWebFComponent13 } from "@openwebf/react-core-ui";
|
|
489
|
+
var FlutterCupertinoFormSection = createWebFComponent13({
|
|
490
|
+
tagName: "flutter-cupertino-form-section",
|
|
491
|
+
displayName: "FlutterCupertinoFormSection",
|
|
492
|
+
// Map props to attributes
|
|
493
|
+
attributeProps: [
|
|
494
|
+
"insetGrouped",
|
|
495
|
+
"clipBehavior"
|
|
496
|
+
],
|
|
497
|
+
// Convert prop names to attribute names if needed
|
|
498
|
+
attributeMap: {
|
|
499
|
+
insetGrouped: "inset-grouped",
|
|
500
|
+
clipBehavior: "clip-behavior"
|
|
501
|
+
},
|
|
502
|
+
// Event handlers
|
|
503
|
+
events: [],
|
|
504
|
+
// Default prop values
|
|
505
|
+
defaultProps: {
|
|
506
|
+
// Add default values here
|
|
507
|
+
}
|
|
508
|
+
});
|
|
509
|
+
var FlutterCupertinoFormRow = createWebFComponent13({
|
|
510
|
+
tagName: "flutter-cupertino-form-row",
|
|
511
|
+
displayName: "FlutterCupertinoFormRow",
|
|
512
|
+
// Map props to attributes
|
|
513
|
+
attributeProps: [],
|
|
514
|
+
// Convert prop names to attribute names if needed
|
|
515
|
+
attributeMap: {},
|
|
516
|
+
// Event handlers
|
|
517
|
+
events: [],
|
|
518
|
+
// Default prop values
|
|
519
|
+
defaultProps: {
|
|
520
|
+
// Add default values here
|
|
521
|
+
}
|
|
522
|
+
});
|
|
523
|
+
|
|
452
524
|
// src/lib/src/context-menu.tsx
|
|
453
|
-
import { createWebFComponent as
|
|
454
|
-
var FlutterCupertinoContextMenu =
|
|
525
|
+
import { createWebFComponent as createWebFComponent14 } from "@openwebf/react-core-ui";
|
|
526
|
+
var FlutterCupertinoContextMenu = createWebFComponent14({
|
|
455
527
|
tagName: "flutter-cupertino-context-menu",
|
|
456
528
|
displayName: "FlutterCupertinoContextMenu",
|
|
457
529
|
// Map props to attributes
|
|
@@ -479,8 +551,8 @@ var FlutterCupertinoContextMenu = createWebFComponent12({
|
|
|
479
551
|
});
|
|
480
552
|
|
|
481
553
|
// src/lib/src/checkbox.tsx
|
|
482
|
-
import { createWebFComponent as
|
|
483
|
-
var FlutterCupertinoCheckbox =
|
|
554
|
+
import { createWebFComponent as createWebFComponent15 } from "@openwebf/react-core-ui";
|
|
555
|
+
var FlutterCupertinoCheckbox = createWebFComponent15({
|
|
484
556
|
tagName: "flutter-cupertino-checkbox",
|
|
485
557
|
displayName: "FlutterCupertinoCheckbox",
|
|
486
558
|
// Map props to attributes
|
|
@@ -529,8 +601,8 @@ var FlutterCupertinoCheckbox = createWebFComponent13({
|
|
|
529
601
|
});
|
|
530
602
|
|
|
531
603
|
// src/lib/src/button.tsx
|
|
532
|
-
import { createWebFComponent as
|
|
533
|
-
var FlutterCupertinoButton =
|
|
604
|
+
import { createWebFComponent as createWebFComponent16 } from "@openwebf/react-core-ui";
|
|
605
|
+
var FlutterCupertinoButton = createWebFComponent16({
|
|
534
606
|
tagName: "flutter-cupertino-button",
|
|
535
607
|
displayName: "FlutterCupertinoButton",
|
|
536
608
|
// Map props to attributes
|
|
@@ -563,8 +635,8 @@ var FlutterCupertinoButton = createWebFComponent14({
|
|
|
563
635
|
});
|
|
564
636
|
|
|
565
637
|
// src/lib/src/alert.tsx
|
|
566
|
-
import { createWebFComponent as
|
|
567
|
-
var FlutterCupertinoAlert =
|
|
638
|
+
import { createWebFComponent as createWebFComponent17 } from "@openwebf/react-core-ui";
|
|
639
|
+
var FlutterCupertinoAlert = createWebFComponent17({
|
|
568
640
|
tagName: "flutter-cupertino-alert",
|
|
569
641
|
displayName: "FlutterCupertinoAlert",
|
|
570
642
|
// Map props to attributes
|
|
@@ -615,8 +687,8 @@ var FlutterCupertinoAlert = createWebFComponent15({
|
|
|
615
687
|
});
|
|
616
688
|
|
|
617
689
|
// src/lib/src/action-sheet.tsx
|
|
618
|
-
import { createWebFComponent as
|
|
619
|
-
var FlutterCupertinoActionSheet =
|
|
690
|
+
import { createWebFComponent as createWebFComponent18 } from "@openwebf/react-core-ui";
|
|
691
|
+
var FlutterCupertinoActionSheet = createWebFComponent18({
|
|
620
692
|
tagName: "flutter-cupertino-action-sheet",
|
|
621
693
|
displayName: "FlutterCupertinoActionSheet",
|
|
622
694
|
// Map props to attributes
|
|
@@ -2023,6 +2095,8 @@ export {
|
|
|
2023
2095
|
FlutterCupertinoButton,
|
|
2024
2096
|
FlutterCupertinoCheckbox,
|
|
2025
2097
|
FlutterCupertinoContextMenu,
|
|
2098
|
+
FlutterCupertinoFormRow,
|
|
2099
|
+
FlutterCupertinoFormSection,
|
|
2026
2100
|
FlutterCupertinoIcon,
|
|
2027
2101
|
FlutterCupertinoListSection,
|
|
2028
2102
|
FlutterCupertinoListSectionFooter,
|
|
@@ -2032,6 +2106,7 @@ export {
|
|
|
2032
2106
|
FlutterCupertinoListTileLeading,
|
|
2033
2107
|
FlutterCupertinoListTileSubtitle,
|
|
2034
2108
|
FlutterCupertinoListTileTrailing,
|
|
2109
|
+
FlutterCupertinoModalPopup,
|
|
2035
2110
|
FlutterCupertinoRadio,
|
|
2036
2111
|
FlutterCupertinoSlider,
|
|
2037
2112
|
FlutterCupertinoSlidingSegmentedControl,
|