@openwebf/react-cupertino-ui 0.3.12 → 0.3.13

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 CHANGED
@@ -265,6 +265,129 @@ declare const FlutterCupertinoTabScaffoldTab: React.ForwardRefExoticComponent<Fl
265
265
  children?: React.ReactNode;
266
266
  } & React.RefAttributes<FlutterCupertinoTabScaffoldTabElement>>;
267
267
 
268
+ interface FlutterCupertinoListSectionProps {
269
+ /**
270
+ * Whether to use the inset grouped style (iOS Settings-style sections).
271
+ * Default: false.
272
+ */
273
+ insetGrouped?: boolean;
274
+ /**
275
+ * HTML id attribute
276
+ */
277
+ id?: string;
278
+ /**
279
+ * Additional CSS styles
280
+ */
281
+ style?: React.CSSProperties;
282
+ /**
283
+ * Children elements
284
+ */
285
+ children?: React.ReactNode;
286
+ /**
287
+ * Additional CSS class names
288
+ */
289
+ className?: string;
290
+ }
291
+ interface FlutterCupertinoListSectionElement extends WebFElementWithMethods<{}> {
292
+ }
293
+ /**
294
+ * Properties for <flutter-cupertino-list-section>
295
+ Grouped list section with optional header and footer slots.
296
+ *
297
+ * @example
298
+ * ```tsx
299
+ *
300
+ * <FlutterCupertinoListSection
301
+ * // Add props here
302
+ * >
303
+ * Content
304
+ * </FlutterCupertinoListSection>
305
+ * ```
306
+ */
307
+ declare const FlutterCupertinoListSection: React.ForwardRefExoticComponent<FlutterCupertinoListSectionProps & {
308
+ className?: string;
309
+ style?: React.CSSProperties;
310
+ children?: React.ReactNode;
311
+ } & React.RefAttributes<FlutterCupertinoListSectionElement>>;
312
+ interface FlutterCupertinoListSectionHeaderProps {
313
+ /**
314
+ * HTML id attribute
315
+ */
316
+ id?: string;
317
+ /**
318
+ * Additional CSS styles
319
+ */
320
+ style?: React.CSSProperties;
321
+ /**
322
+ * Children elements
323
+ */
324
+ children?: React.ReactNode;
325
+ /**
326
+ * Additional CSS class names
327
+ */
328
+ className?: string;
329
+ }
330
+ interface FlutterCupertinoListSectionHeaderElement extends WebFElementWithMethods<{}> {
331
+ }
332
+ /**
333
+ * Properties for <flutter-cupertino-list-section-header>
334
+ Slot for the section header content.
335
+ *
336
+ * @example
337
+ * ```tsx
338
+ *
339
+ * <FlutterCupertinoListSectionHeader
340
+ * // Add props here
341
+ * >
342
+ * Content
343
+ * </FlutterCupertinoListSectionHeader>
344
+ * ```
345
+ */
346
+ declare const FlutterCupertinoListSectionHeader: React.ForwardRefExoticComponent<FlutterCupertinoListSectionHeaderProps & {
347
+ className?: string;
348
+ style?: React.CSSProperties;
349
+ children?: React.ReactNode;
350
+ } & React.RefAttributes<FlutterCupertinoListSectionHeaderElement>>;
351
+ interface FlutterCupertinoListSectionFooterProps {
352
+ /**
353
+ * HTML id attribute
354
+ */
355
+ id?: string;
356
+ /**
357
+ * Additional CSS styles
358
+ */
359
+ style?: React.CSSProperties;
360
+ /**
361
+ * Children elements
362
+ */
363
+ children?: React.ReactNode;
364
+ /**
365
+ * Additional CSS class names
366
+ */
367
+ className?: string;
368
+ }
369
+ interface FlutterCupertinoListSectionFooterElement extends WebFElementWithMethods<{}> {
370
+ }
371
+ /**
372
+ * Properties for <flutter-cupertino-list-section-footer>
373
+ Slot for the section footer content.
374
+ *
375
+ * @example
376
+ * ```tsx
377
+ *
378
+ * <FlutterCupertinoListSectionFooter
379
+ * // Add props here
380
+ * >
381
+ * Content
382
+ * </FlutterCupertinoListSectionFooter>
383
+ * ```
384
+ */
385
+ declare const FlutterCupertinoListSectionFooter: React.ForwardRefExoticComponent<FlutterCupertinoListSectionFooterProps & {
386
+ className?: string;
387
+ style?: React.CSSProperties;
388
+ children?: React.ReactNode;
389
+ } & React.RefAttributes<FlutterCupertinoListSectionFooterElement>>;
390
+
268
391
  declare enum CupertinoIcons {
269
392
  add = "add",
270
393
  add_circled = "add_circled",
@@ -3216,126 +3339,6 @@ declare const FlutterCupertinoListTileTrailing: React.ForwardRefExoticComponent<
3216
3339
  children?: React.ReactNode;
3217
3340
  } & React.RefAttributes<FlutterCupertinoListTileTrailingElement>>;
3218
3341
 
3219
- interface FlutterCupertinoListSectionProps {
3220
- /**
3221
- * insetGrouped property
3222
- * @default undefined
3223
- */
3224
- insetGrouped?: string;
3225
- /**
3226
- * HTML id attribute
3227
- */
3228
- id?: string;
3229
- /**
3230
- * Additional CSS styles
3231
- */
3232
- style?: React.CSSProperties;
3233
- /**
3234
- * Children elements
3235
- */
3236
- children?: React.ReactNode;
3237
- /**
3238
- * Additional CSS class names
3239
- */
3240
- className?: string;
3241
- }
3242
- interface FlutterCupertinoListSectionElement extends WebFElementWithMethods<{}> {
3243
- }
3244
- /**
3245
- * FlutterCupertinoListSection - WebF FlutterCupertinoListSection component
3246
- *
3247
- * @example
3248
- * ```tsx
3249
- *
3250
- * <FlutterCupertinoListSection
3251
- * // Add props here
3252
- * >
3253
- * Content
3254
- * </FlutterCupertinoListSection>
3255
- * ```
3256
- */
3257
- declare const FlutterCupertinoListSection: React.ForwardRefExoticComponent<FlutterCupertinoListSectionProps & {
3258
- className?: string;
3259
- style?: React.CSSProperties;
3260
- children?: React.ReactNode;
3261
- } & React.RefAttributes<FlutterCupertinoListSectionElement>>;
3262
- interface FlutterCupertinoListSectionHeaderProps {
3263
- /**
3264
- * HTML id attribute
3265
- */
3266
- id?: string;
3267
- /**
3268
- * Additional CSS styles
3269
- */
3270
- style?: React.CSSProperties;
3271
- /**
3272
- * Children elements
3273
- */
3274
- children?: React.ReactNode;
3275
- /**
3276
- * Additional CSS class names
3277
- */
3278
- className?: string;
3279
- }
3280
- interface FlutterCupertinoListSectionHeaderElement extends WebFElementWithMethods<{}> {
3281
- }
3282
- /**
3283
- * FlutterCupertinoListSectionHeader - WebF FlutterCupertinoListSectionHeader component
3284
- *
3285
- * @example
3286
- * ```tsx
3287
- *
3288
- * <FlutterCupertinoListSectionHeader
3289
- * // Add props here
3290
- * >
3291
- * Content
3292
- * </FlutterCupertinoListSectionHeader>
3293
- * ```
3294
- */
3295
- declare const FlutterCupertinoListSectionHeader: React.ForwardRefExoticComponent<FlutterCupertinoListSectionHeaderProps & {
3296
- className?: string;
3297
- style?: React.CSSProperties;
3298
- children?: React.ReactNode;
3299
- } & React.RefAttributes<FlutterCupertinoListSectionHeaderElement>>;
3300
- interface FlutterCupertinoListSectionFooterProps {
3301
- /**
3302
- * HTML id attribute
3303
- */
3304
- id?: string;
3305
- /**
3306
- * Additional CSS styles
3307
- */
3308
- style?: React.CSSProperties;
3309
- /**
3310
- * Children elements
3311
- */
3312
- children?: React.ReactNode;
3313
- /**
3314
- * Additional CSS class names
3315
- */
3316
- className?: string;
3317
- }
3318
- interface FlutterCupertinoListSectionFooterElement extends WebFElementWithMethods<{}> {
3319
- }
3320
- /**
3321
- * FlutterCupertinoListSectionFooter - WebF FlutterCupertinoListSectionFooter component
3322
- *
3323
- * @example
3324
- * ```tsx
3325
- *
3326
- * <FlutterCupertinoListSectionFooter
3327
- * // Add props here
3328
- * >
3329
- * Content
3330
- * </FlutterCupertinoListSectionFooter>
3331
- * ```
3332
- */
3333
- declare const FlutterCupertinoListSectionFooter: React.ForwardRefExoticComponent<FlutterCupertinoListSectionFooterProps & {
3334
- className?: string;
3335
- style?: React.CSSProperties;
3336
- children?: React.ReactNode;
3337
- } & React.RefAttributes<FlutterCupertinoListSectionFooterElement>>;
3338
-
3339
3342
  interface FlutterCupertinoInputProps {
3340
3343
  /**
3341
3344
  * val property
package/dist/index.d.ts CHANGED
@@ -265,6 +265,129 @@ declare const FlutterCupertinoTabScaffoldTab: React.ForwardRefExoticComponent<Fl
265
265
  children?: React.ReactNode;
266
266
  } & React.RefAttributes<FlutterCupertinoTabScaffoldTabElement>>;
267
267
 
268
+ interface FlutterCupertinoListSectionProps {
269
+ /**
270
+ * Whether to use the inset grouped style (iOS Settings-style sections).
271
+ * Default: false.
272
+ */
273
+ insetGrouped?: boolean;
274
+ /**
275
+ * HTML id attribute
276
+ */
277
+ id?: string;
278
+ /**
279
+ * Additional CSS styles
280
+ */
281
+ style?: React.CSSProperties;
282
+ /**
283
+ * Children elements
284
+ */
285
+ children?: React.ReactNode;
286
+ /**
287
+ * Additional CSS class names
288
+ */
289
+ className?: string;
290
+ }
291
+ interface FlutterCupertinoListSectionElement extends WebFElementWithMethods<{}> {
292
+ }
293
+ /**
294
+ * Properties for <flutter-cupertino-list-section>
295
+ Grouped list section with optional header and footer slots.
296
+ *
297
+ * @example
298
+ * ```tsx
299
+ *
300
+ * <FlutterCupertinoListSection
301
+ * // Add props here
302
+ * >
303
+ * Content
304
+ * </FlutterCupertinoListSection>
305
+ * ```
306
+ */
307
+ declare const FlutterCupertinoListSection: React.ForwardRefExoticComponent<FlutterCupertinoListSectionProps & {
308
+ className?: string;
309
+ style?: React.CSSProperties;
310
+ children?: React.ReactNode;
311
+ } & React.RefAttributes<FlutterCupertinoListSectionElement>>;
312
+ interface FlutterCupertinoListSectionHeaderProps {
313
+ /**
314
+ * HTML id attribute
315
+ */
316
+ id?: string;
317
+ /**
318
+ * Additional CSS styles
319
+ */
320
+ style?: React.CSSProperties;
321
+ /**
322
+ * Children elements
323
+ */
324
+ children?: React.ReactNode;
325
+ /**
326
+ * Additional CSS class names
327
+ */
328
+ className?: string;
329
+ }
330
+ interface FlutterCupertinoListSectionHeaderElement extends WebFElementWithMethods<{}> {
331
+ }
332
+ /**
333
+ * Properties for <flutter-cupertino-list-section-header>
334
+ Slot for the section header content.
335
+ *
336
+ * @example
337
+ * ```tsx
338
+ *
339
+ * <FlutterCupertinoListSectionHeader
340
+ * // Add props here
341
+ * >
342
+ * Content
343
+ * </FlutterCupertinoListSectionHeader>
344
+ * ```
345
+ */
346
+ declare const FlutterCupertinoListSectionHeader: React.ForwardRefExoticComponent<FlutterCupertinoListSectionHeaderProps & {
347
+ className?: string;
348
+ style?: React.CSSProperties;
349
+ children?: React.ReactNode;
350
+ } & React.RefAttributes<FlutterCupertinoListSectionHeaderElement>>;
351
+ interface FlutterCupertinoListSectionFooterProps {
352
+ /**
353
+ * HTML id attribute
354
+ */
355
+ id?: string;
356
+ /**
357
+ * Additional CSS styles
358
+ */
359
+ style?: React.CSSProperties;
360
+ /**
361
+ * Children elements
362
+ */
363
+ children?: React.ReactNode;
364
+ /**
365
+ * Additional CSS class names
366
+ */
367
+ className?: string;
368
+ }
369
+ interface FlutterCupertinoListSectionFooterElement extends WebFElementWithMethods<{}> {
370
+ }
371
+ /**
372
+ * Properties for <flutter-cupertino-list-section-footer>
373
+ Slot for the section footer content.
374
+ *
375
+ * @example
376
+ * ```tsx
377
+ *
378
+ * <FlutterCupertinoListSectionFooter
379
+ * // Add props here
380
+ * >
381
+ * Content
382
+ * </FlutterCupertinoListSectionFooter>
383
+ * ```
384
+ */
385
+ declare const FlutterCupertinoListSectionFooter: React.ForwardRefExoticComponent<FlutterCupertinoListSectionFooterProps & {
386
+ className?: string;
387
+ style?: React.CSSProperties;
388
+ children?: React.ReactNode;
389
+ } & React.RefAttributes<FlutterCupertinoListSectionFooterElement>>;
390
+
268
391
  declare enum CupertinoIcons {
269
392
  add = "add",
270
393
  add_circled = "add_circled",
@@ -3216,126 +3339,6 @@ declare const FlutterCupertinoListTileTrailing: React.ForwardRefExoticComponent<
3216
3339
  children?: React.ReactNode;
3217
3340
  } & React.RefAttributes<FlutterCupertinoListTileTrailingElement>>;
3218
3341
 
3219
- interface FlutterCupertinoListSectionProps {
3220
- /**
3221
- * insetGrouped property
3222
- * @default undefined
3223
- */
3224
- insetGrouped?: string;
3225
- /**
3226
- * HTML id attribute
3227
- */
3228
- id?: string;
3229
- /**
3230
- * Additional CSS styles
3231
- */
3232
- style?: React.CSSProperties;
3233
- /**
3234
- * Children elements
3235
- */
3236
- children?: React.ReactNode;
3237
- /**
3238
- * Additional CSS class names
3239
- */
3240
- className?: string;
3241
- }
3242
- interface FlutterCupertinoListSectionElement extends WebFElementWithMethods<{}> {
3243
- }
3244
- /**
3245
- * FlutterCupertinoListSection - WebF FlutterCupertinoListSection component
3246
- *
3247
- * @example
3248
- * ```tsx
3249
- *
3250
- * <FlutterCupertinoListSection
3251
- * // Add props here
3252
- * >
3253
- * Content
3254
- * </FlutterCupertinoListSection>
3255
- * ```
3256
- */
3257
- declare const FlutterCupertinoListSection: React.ForwardRefExoticComponent<FlutterCupertinoListSectionProps & {
3258
- className?: string;
3259
- style?: React.CSSProperties;
3260
- children?: React.ReactNode;
3261
- } & React.RefAttributes<FlutterCupertinoListSectionElement>>;
3262
- interface FlutterCupertinoListSectionHeaderProps {
3263
- /**
3264
- * HTML id attribute
3265
- */
3266
- id?: string;
3267
- /**
3268
- * Additional CSS styles
3269
- */
3270
- style?: React.CSSProperties;
3271
- /**
3272
- * Children elements
3273
- */
3274
- children?: React.ReactNode;
3275
- /**
3276
- * Additional CSS class names
3277
- */
3278
- className?: string;
3279
- }
3280
- interface FlutterCupertinoListSectionHeaderElement extends WebFElementWithMethods<{}> {
3281
- }
3282
- /**
3283
- * FlutterCupertinoListSectionHeader - WebF FlutterCupertinoListSectionHeader component
3284
- *
3285
- * @example
3286
- * ```tsx
3287
- *
3288
- * <FlutterCupertinoListSectionHeader
3289
- * // Add props here
3290
- * >
3291
- * Content
3292
- * </FlutterCupertinoListSectionHeader>
3293
- * ```
3294
- */
3295
- declare const FlutterCupertinoListSectionHeader: React.ForwardRefExoticComponent<FlutterCupertinoListSectionHeaderProps & {
3296
- className?: string;
3297
- style?: React.CSSProperties;
3298
- children?: React.ReactNode;
3299
- } & React.RefAttributes<FlutterCupertinoListSectionHeaderElement>>;
3300
- interface FlutterCupertinoListSectionFooterProps {
3301
- /**
3302
- * HTML id attribute
3303
- */
3304
- id?: string;
3305
- /**
3306
- * Additional CSS styles
3307
- */
3308
- style?: React.CSSProperties;
3309
- /**
3310
- * Children elements
3311
- */
3312
- children?: React.ReactNode;
3313
- /**
3314
- * Additional CSS class names
3315
- */
3316
- className?: string;
3317
- }
3318
- interface FlutterCupertinoListSectionFooterElement extends WebFElementWithMethods<{}> {
3319
- }
3320
- /**
3321
- * FlutterCupertinoListSectionFooter - WebF FlutterCupertinoListSectionFooter component
3322
- *
3323
- * @example
3324
- * ```tsx
3325
- *
3326
- * <FlutterCupertinoListSectionFooter
3327
- * // Add props here
3328
- * >
3329
- * Content
3330
- * </FlutterCupertinoListSectionFooter>
3331
- * ```
3332
- */
3333
- declare const FlutterCupertinoListSectionFooter: React.ForwardRefExoticComponent<FlutterCupertinoListSectionFooterProps & {
3334
- className?: string;
3335
- style?: React.CSSProperties;
3336
- children?: React.ReactNode;
3337
- } & React.RefAttributes<FlutterCupertinoListSectionFooterElement>>;
3338
-
3339
3342
  interface FlutterCupertinoInputProps {
3340
3343
  /**
3341
3344
  * val property