@ionic/docs 8.8.7-dev.11778599050.191a48e3 → 8.8.7-dev.11778680417.1f9234bd

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.
Files changed (2) hide show
  1. package/core.json +256 -1
  2. package/package.json +1 -1
package/core.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2026-05-12T15:19:49",
2
+ "timestamp": "2026-05-13T13:56:11",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.43.0",
@@ -14224,6 +14224,251 @@
14224
14224
  "dependencies": [],
14225
14225
  "dependencyGraph": {}
14226
14226
  },
14227
+ {
14228
+ "filePath": "src/components/gallery/gallery.tsx",
14229
+ "encapsulation": "shadow",
14230
+ "tag": "ion-gallery",
14231
+ "docs": "",
14232
+ "docsTags": [
14233
+ {
14234
+ "name": "virtualProp",
14235
+ "text": "{\"ios\" | \"md\"} mode - The mode determines the platform behaviors of the component."
14236
+ },
14237
+ {
14238
+ "name": "virtualProp",
14239
+ "text": "{\"ios\" | \"md\" | \"ionic\"} theme - The theme determines the visual appearance of the component."
14240
+ },
14241
+ {
14242
+ "name": "slot",
14243
+ "text": "- Content is placed in a responsive gallery layout."
14244
+ }
14245
+ ],
14246
+ "usage": {},
14247
+ "props": [
14248
+ {
14249
+ "name": "columns",
14250
+ "type": "GalleryBreakpoints<string | number> | number | string",
14251
+ "complexType": {
14252
+ "original": "GalleryColumns",
14253
+ "resolved": "GalleryBreakpoints<string | number> | number | string",
14254
+ "references": {
14255
+ "GalleryColumns": {
14256
+ "location": "import",
14257
+ "path": "./gallery-interface",
14258
+ "id": "src/components/gallery/gallery-interface.ts::GalleryColumns",
14259
+ "referenceLocation": "GalleryColumns"
14260
+ }
14261
+ }
14262
+ },
14263
+ "mutable": false,
14264
+ "attr": "columns",
14265
+ "reflectToAttr": false,
14266
+ "docs": "The number of columns to display. Can be set as a number or an object of\nbreakpoint values (e.g. `{ xs: 2, sm: 3, md: 4 }`).",
14267
+ "docsTags": [
14268
+ {
14269
+ "name": "default",
14270
+ "text": "DEFAULT_COLUMNS"
14271
+ }
14272
+ ],
14273
+ "default": "DEFAULT_COLUMNS",
14274
+ "values": [
14275
+ {
14276
+ "type": "GalleryBreakpoints<string"
14277
+ },
14278
+ {
14279
+ "type": "number>"
14280
+ },
14281
+ {
14282
+ "type": "number"
14283
+ },
14284
+ {
14285
+ "type": "string"
14286
+ }
14287
+ ],
14288
+ "optional": false,
14289
+ "required": false,
14290
+ "getter": false,
14291
+ "setter": false
14292
+ },
14293
+ {
14294
+ "name": "gap",
14295
+ "type": "GalleryBreakpoints<string | number> | number | string",
14296
+ "complexType": {
14297
+ "original": "GalleryGap",
14298
+ "resolved": "GalleryBreakpoints<string | number> | number | string",
14299
+ "references": {
14300
+ "GalleryGap": {
14301
+ "location": "import",
14302
+ "path": "./gallery-interface",
14303
+ "id": "src/components/gallery/gallery-interface.ts::GalleryGap",
14304
+ "referenceLocation": "GalleryGap"
14305
+ }
14306
+ }
14307
+ },
14308
+ "mutable": false,
14309
+ "attr": "gap",
14310
+ "reflectToAttr": false,
14311
+ "docs": "The space between gallery items. Accepts valid CSS [length-percentage](https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Values/length-percentage)\nvalues like `16px`, `1rem`, `20%`, math functions like `calc(10px + 20%)`,\nor numbers (treated as pixel values). Can also be set as a breakpoint map\n(e.g. `{ xs: '8px', sm: '1rem', md: '24px' }`). Does not accept\nspace-separated values or CSS keyword values like `inherit`, `auto`, etc.",
14312
+ "docsTags": [
14313
+ {
14314
+ "name": "default",
14315
+ "text": "DEFAULT_GAP"
14316
+ }
14317
+ ],
14318
+ "default": "DEFAULT_GAP",
14319
+ "values": [
14320
+ {
14321
+ "type": "GalleryBreakpoints<string"
14322
+ },
14323
+ {
14324
+ "type": "number>"
14325
+ },
14326
+ {
14327
+ "type": "number"
14328
+ },
14329
+ {
14330
+ "type": "string"
14331
+ }
14332
+ ],
14333
+ "optional": false,
14334
+ "required": false,
14335
+ "getter": false,
14336
+ "setter": false
14337
+ },
14338
+ {
14339
+ "name": "layout",
14340
+ "type": "\"masonry\" | \"uniform\"",
14341
+ "complexType": {
14342
+ "original": "'uniform' | 'masonry'",
14343
+ "resolved": "\"masonry\" | \"uniform\"",
14344
+ "references": {}
14345
+ },
14346
+ "mutable": false,
14347
+ "attr": "layout",
14348
+ "reflectToAttr": false,
14349
+ "docs": "The visual layout of the gallery. When `uniform`, rows take up the height\nof the tallest item and are spaced evenly across the gallery. Additionally,\nitems will have an aspect ratio of 1/1, forcing them to be square unless a\nheight is explicitly set. When `masonry`, items will be positioned under each\nother with only the specified gap between them.",
14350
+ "docsTags": [
14351
+ {
14352
+ "name": "default",
14353
+ "text": "'uniform'"
14354
+ }
14355
+ ],
14356
+ "default": "'uniform'",
14357
+ "values": [
14358
+ {
14359
+ "value": "masonry",
14360
+ "type": "string"
14361
+ },
14362
+ {
14363
+ "value": "uniform",
14364
+ "type": "string"
14365
+ }
14366
+ ],
14367
+ "optional": false,
14368
+ "required": false,
14369
+ "getter": false,
14370
+ "setter": false
14371
+ },
14372
+ {
14373
+ "name": "mode",
14374
+ "type": "\"ios\" | \"md\"",
14375
+ "mutable": false,
14376
+ "attr": "mode",
14377
+ "reflectToAttr": false,
14378
+ "docs": "The mode determines the platform behaviors of the component.",
14379
+ "docsTags": [],
14380
+ "values": [
14381
+ {
14382
+ "value": "ios",
14383
+ "type": "string"
14384
+ },
14385
+ {
14386
+ "value": "md",
14387
+ "type": "string"
14388
+ }
14389
+ ],
14390
+ "optional": true,
14391
+ "required": false
14392
+ },
14393
+ {
14394
+ "name": "order",
14395
+ "type": "\"best-fit\" | \"sequential\" | undefined",
14396
+ "complexType": {
14397
+ "original": "'sequential' | 'best-fit'",
14398
+ "resolved": "\"best-fit\" | \"sequential\" | undefined",
14399
+ "references": {}
14400
+ },
14401
+ "mutable": false,
14402
+ "attr": "order",
14403
+ "reflectToAttr": false,
14404
+ "docs": "The order in which items are positioned. Only applies when layout is\n`masonry`. When `sequential`, items are positioned in the order they are\nplaced in the DOM. When `best-fit`, items are positioned under the column\nwith the most available space. Defaults to `sequential` when layout is\n`masonry` and `order` is not explicitly set.",
14405
+ "docsTags": [],
14406
+ "values": [
14407
+ {
14408
+ "value": "best-fit",
14409
+ "type": "string"
14410
+ },
14411
+ {
14412
+ "value": "sequential",
14413
+ "type": "string"
14414
+ },
14415
+ {
14416
+ "type": "undefined"
14417
+ }
14418
+ ],
14419
+ "optional": true,
14420
+ "required": false,
14421
+ "getter": false,
14422
+ "setter": false
14423
+ },
14424
+ {
14425
+ "name": "theme",
14426
+ "type": "\"ios\" | \"md\" | \"ionic\"",
14427
+ "mutable": false,
14428
+ "attr": "theme",
14429
+ "reflectToAttr": false,
14430
+ "docs": "The theme determines the visual appearance of the component.",
14431
+ "docsTags": [],
14432
+ "values": [
14433
+ {
14434
+ "value": "ios",
14435
+ "type": "string"
14436
+ },
14437
+ {
14438
+ "value": "md",
14439
+ "type": "string"
14440
+ },
14441
+ {
14442
+ "value": "ionic",
14443
+ "type": "string"
14444
+ }
14445
+ ],
14446
+ "optional": true,
14447
+ "required": false
14448
+ }
14449
+ ],
14450
+ "methods": [],
14451
+ "events": [],
14452
+ "listeners": [
14453
+ {
14454
+ "event": "load",
14455
+ "capture": true,
14456
+ "passive": false
14457
+ }
14458
+ ],
14459
+ "styles": [],
14460
+ "slots": [
14461
+ {
14462
+ "name": "",
14463
+ "docs": "Content is placed in a responsive gallery layout."
14464
+ }
14465
+ ],
14466
+ "parts": [],
14467
+ "states": [],
14468
+ "dependents": [],
14469
+ "dependencies": [],
14470
+ "dependencyGraph": {}
14471
+ },
14227
14472
  {
14228
14473
  "filePath": "src/components/grid/grid.tsx",
14229
14474
  "encapsulation": "shadow",
@@ -46446,6 +46691,16 @@
46446
46691
  "docstring": "",
46447
46692
  "path": "src/components/picker/picker-interfaces.ts"
46448
46693
  },
46694
+ "src/components/gallery/gallery-interface.ts::GalleryColumns": {
46695
+ "declaration": "export type GalleryColumns = GalleryBreakpoints | string | number;",
46696
+ "docstring": "",
46697
+ "path": "src/components/gallery/gallery-interface.ts"
46698
+ },
46699
+ "src/components/gallery/gallery-interface.ts::GalleryGap": {
46700
+ "declaration": "export type GalleryGap = GalleryBreakpoints | string | number;",
46701
+ "docstring": "",
46702
+ "path": "src/components/gallery/gallery-interface.ts"
46703
+ },
46449
46704
  "src/components/spinner/spinner-configs.ts::SpinnerTypes": {
46450
46705
  "declaration": "\"lines\" | \"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines-small\" | \"lines-sharp\" | \"lines-sharp-small\"",
46451
46706
  "docstring": "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionic/docs",
3
- "version": "8.8.7-dev.11778599050.191a48e3",
3
+ "version": "8.8.7-dev.11778680417.1f9234bd",
4
4
  "description": "Pre-packaged API documentation for the Ionic docs.",
5
5
  "main": "core.json",
6
6
  "types": "core.d.ts",