@openwebf/react-cupertino-ui 0.3.24 → 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 +102 -1
- package/dist/index.d.ts +102 -1
- package/dist/index.js +59 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +58 -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
|
|
@@ -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
|
|
@@ -2032,6 +2067,7 @@ export {
|
|
|
2032
2067
|
FlutterCupertinoListTileLeading,
|
|
2033
2068
|
FlutterCupertinoListTileSubtitle,
|
|
2034
2069
|
FlutterCupertinoListTileTrailing,
|
|
2070
|
+
FlutterCupertinoModalPopup,
|
|
2035
2071
|
FlutterCupertinoRadio,
|
|
2036
2072
|
FlutterCupertinoSlider,
|
|
2037
2073
|
FlutterCupertinoSlidingSegmentedControl,
|