@ionic/docs 8.8.6-dev.11777559143.1d1ad1ad → 8.8.6-dev.11777569278.1613db2e
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/core.json +212 -1
- package/package.json +1 -1
package/core.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2026-04-
|
|
2
|
+
"timestamp": "2026-04-30T17:17:17",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.43.0",
|
|
@@ -14224,6 +14224,212 @@
|
|
|
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": "GalleryBreakpointColumns | number | string",
|
|
14251
|
+
"complexType": {
|
|
14252
|
+
"original": "GalleryColumns",
|
|
14253
|
+
"resolved": "GalleryBreakpointColumns | 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": "GalleryBreakpointColumns"
|
|
14277
|
+
},
|
|
14278
|
+
{
|
|
14279
|
+
"type": "number"
|
|
14280
|
+
},
|
|
14281
|
+
{
|
|
14282
|
+
"type": "string"
|
|
14283
|
+
}
|
|
14284
|
+
],
|
|
14285
|
+
"optional": false,
|
|
14286
|
+
"required": false,
|
|
14287
|
+
"getter": false,
|
|
14288
|
+
"setter": false
|
|
14289
|
+
},
|
|
14290
|
+
{
|
|
14291
|
+
"name": "layout",
|
|
14292
|
+
"type": "\"masonry\" | \"uniform\"",
|
|
14293
|
+
"complexType": {
|
|
14294
|
+
"original": "'uniform' | 'masonry'",
|
|
14295
|
+
"resolved": "\"masonry\" | \"uniform\"",
|
|
14296
|
+
"references": {}
|
|
14297
|
+
},
|
|
14298
|
+
"mutable": false,
|
|
14299
|
+
"attr": "layout",
|
|
14300
|
+
"reflectToAttr": true,
|
|
14301
|
+
"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.",
|
|
14302
|
+
"docsTags": [
|
|
14303
|
+
{
|
|
14304
|
+
"name": "default",
|
|
14305
|
+
"text": "'uniform'"
|
|
14306
|
+
}
|
|
14307
|
+
],
|
|
14308
|
+
"default": "'uniform'",
|
|
14309
|
+
"values": [
|
|
14310
|
+
{
|
|
14311
|
+
"value": "masonry",
|
|
14312
|
+
"type": "string"
|
|
14313
|
+
},
|
|
14314
|
+
{
|
|
14315
|
+
"value": "uniform",
|
|
14316
|
+
"type": "string"
|
|
14317
|
+
}
|
|
14318
|
+
],
|
|
14319
|
+
"optional": false,
|
|
14320
|
+
"required": false,
|
|
14321
|
+
"getter": false,
|
|
14322
|
+
"setter": false
|
|
14323
|
+
},
|
|
14324
|
+
{
|
|
14325
|
+
"name": "mode",
|
|
14326
|
+
"type": "\"ios\" | \"md\"",
|
|
14327
|
+
"mutable": false,
|
|
14328
|
+
"attr": "mode",
|
|
14329
|
+
"reflectToAttr": false,
|
|
14330
|
+
"docs": "The mode determines the platform behaviors of the component.",
|
|
14331
|
+
"docsTags": [],
|
|
14332
|
+
"values": [
|
|
14333
|
+
{
|
|
14334
|
+
"value": "ios",
|
|
14335
|
+
"type": "string"
|
|
14336
|
+
},
|
|
14337
|
+
{
|
|
14338
|
+
"value": "md",
|
|
14339
|
+
"type": "string"
|
|
14340
|
+
}
|
|
14341
|
+
],
|
|
14342
|
+
"optional": true,
|
|
14343
|
+
"required": false
|
|
14344
|
+
},
|
|
14345
|
+
{
|
|
14346
|
+
"name": "order",
|
|
14347
|
+
"type": "\"best-fit\" | \"sequential\"",
|
|
14348
|
+
"complexType": {
|
|
14349
|
+
"original": "'sequential' | 'best-fit'",
|
|
14350
|
+
"resolved": "\"best-fit\" | \"sequential\"",
|
|
14351
|
+
"references": {}
|
|
14352
|
+
},
|
|
14353
|
+
"mutable": false,
|
|
14354
|
+
"attr": "order",
|
|
14355
|
+
"reflectToAttr": true,
|
|
14356
|
+
"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.",
|
|
14357
|
+
"docsTags": [
|
|
14358
|
+
{
|
|
14359
|
+
"name": "default",
|
|
14360
|
+
"text": "'sequential'"
|
|
14361
|
+
}
|
|
14362
|
+
],
|
|
14363
|
+
"default": "'sequential'",
|
|
14364
|
+
"values": [
|
|
14365
|
+
{
|
|
14366
|
+
"value": "best-fit",
|
|
14367
|
+
"type": "string"
|
|
14368
|
+
},
|
|
14369
|
+
{
|
|
14370
|
+
"value": "sequential",
|
|
14371
|
+
"type": "string"
|
|
14372
|
+
}
|
|
14373
|
+
],
|
|
14374
|
+
"optional": false,
|
|
14375
|
+
"required": false,
|
|
14376
|
+
"getter": false,
|
|
14377
|
+
"setter": false
|
|
14378
|
+
},
|
|
14379
|
+
{
|
|
14380
|
+
"name": "theme",
|
|
14381
|
+
"type": "\"ios\" | \"md\" | \"ionic\"",
|
|
14382
|
+
"mutable": false,
|
|
14383
|
+
"attr": "theme",
|
|
14384
|
+
"reflectToAttr": false,
|
|
14385
|
+
"docs": "The theme determines the visual appearance of the component.",
|
|
14386
|
+
"docsTags": [],
|
|
14387
|
+
"values": [
|
|
14388
|
+
{
|
|
14389
|
+
"value": "ios",
|
|
14390
|
+
"type": "string"
|
|
14391
|
+
},
|
|
14392
|
+
{
|
|
14393
|
+
"value": "md",
|
|
14394
|
+
"type": "string"
|
|
14395
|
+
},
|
|
14396
|
+
{
|
|
14397
|
+
"value": "ionic",
|
|
14398
|
+
"type": "string"
|
|
14399
|
+
}
|
|
14400
|
+
],
|
|
14401
|
+
"optional": true,
|
|
14402
|
+
"required": false
|
|
14403
|
+
}
|
|
14404
|
+
],
|
|
14405
|
+
"methods": [],
|
|
14406
|
+
"events": [],
|
|
14407
|
+
"listeners": [
|
|
14408
|
+
{
|
|
14409
|
+
"event": "load",
|
|
14410
|
+
"capture": true,
|
|
14411
|
+
"passive": false
|
|
14412
|
+
}
|
|
14413
|
+
],
|
|
14414
|
+
"styles": [
|
|
14415
|
+
{
|
|
14416
|
+
"name": "--ion-gallery-gap",
|
|
14417
|
+
"annotation": "prop",
|
|
14418
|
+
"docs": "Space between gallery items"
|
|
14419
|
+
}
|
|
14420
|
+
],
|
|
14421
|
+
"slots": [
|
|
14422
|
+
{
|
|
14423
|
+
"name": "",
|
|
14424
|
+
"docs": "Content is placed in a responsive gallery layout."
|
|
14425
|
+
}
|
|
14426
|
+
],
|
|
14427
|
+
"parts": [],
|
|
14428
|
+
"states": [],
|
|
14429
|
+
"dependents": [],
|
|
14430
|
+
"dependencies": [],
|
|
14431
|
+
"dependencyGraph": {}
|
|
14432
|
+
},
|
|
14227
14433
|
{
|
|
14228
14434
|
"filePath": "src/components/grid/grid.tsx",
|
|
14229
14435
|
"encapsulation": "shadow",
|
|
@@ -46446,6 +46652,11 @@
|
|
|
46446
46652
|
"docstring": "",
|
|
46447
46653
|
"path": "src/components/picker/picker-interfaces.ts"
|
|
46448
46654
|
},
|
|
46655
|
+
"src/components/gallery/gallery-interface.ts::GalleryColumns": {
|
|
46656
|
+
"declaration": "export type GalleryColumns = GalleryBreakpointColumns | string | number;",
|
|
46657
|
+
"docstring": "",
|
|
46658
|
+
"path": "src/components/gallery/gallery-interface.ts"
|
|
46659
|
+
},
|
|
46449
46660
|
"src/components/spinner/spinner-configs.ts::SpinnerTypes": {
|
|
46450
46661
|
"declaration": "\"lines\" | \"bubbles\" | \"circles\" | \"circular\" | \"crescent\" | \"dots\" | \"lines-small\" | \"lines-sharp\" | \"lines-sharp-small\"",
|
|
46451
46662
|
"docstring": "",
|