@f-ewald/components 1.19.0 → 1.21.1

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.
@@ -6793,6 +6793,22 @@
6793
6793
  "module": "./stat-meter.js"
6794
6794
  }
6795
6795
  },
6796
+ {
6797
+ "kind": "js",
6798
+ "name": "StatusBanner",
6799
+ "declaration": {
6800
+ "name": "StatusBanner",
6801
+ "module": "./status-banner.js"
6802
+ }
6803
+ },
6804
+ {
6805
+ "kind": "js",
6806
+ "name": "StatusBannerVariant",
6807
+ "declaration": {
6808
+ "name": "StatusBannerVariant",
6809
+ "module": "./status-banner.js"
6810
+ }
6811
+ },
6796
6812
  {
6797
6813
  "kind": "js",
6798
6814
  "name": "StatusPill",
@@ -7241,6 +7257,62 @@
7241
7257
  "module": "./split-hero.js"
7242
7258
  }
7243
7259
  },
7260
+ {
7261
+ "kind": "js",
7262
+ "name": "TabBar",
7263
+ "declaration": {
7264
+ "name": "TabBar",
7265
+ "module": "./tab-bar.js"
7266
+ }
7267
+ },
7268
+ {
7269
+ "kind": "js",
7270
+ "name": "TabChangeDetail",
7271
+ "declaration": {
7272
+ "name": "TabChangeDetail",
7273
+ "module": "./tab-bar.js"
7274
+ }
7275
+ },
7276
+ {
7277
+ "kind": "js",
7278
+ "name": "TabItem",
7279
+ "declaration": {
7280
+ "name": "TabItem",
7281
+ "module": "./tab-item.js"
7282
+ }
7283
+ },
7284
+ {
7285
+ "kind": "js",
7286
+ "name": "MarkdownEditor",
7287
+ "declaration": {
7288
+ "name": "MarkdownEditor",
7289
+ "module": "./markdown-editor.js"
7290
+ }
7291
+ },
7292
+ {
7293
+ "kind": "js",
7294
+ "name": "parseFrontMatter",
7295
+ "declaration": {
7296
+ "name": "parseFrontMatter",
7297
+ "module": "./utils/front-matter.js"
7298
+ }
7299
+ },
7300
+ {
7301
+ "kind": "js",
7302
+ "name": "formatFrontMatterValue",
7303
+ "declaration": {
7304
+ "name": "formatFrontMatterValue",
7305
+ "module": "./utils/front-matter.js"
7306
+ }
7307
+ },
7308
+ {
7309
+ "kind": "js",
7310
+ "name": "FrontMatterResult",
7311
+ "declaration": {
7312
+ "name": "FrontMatterResult",
7313
+ "module": "./utils/front-matter.js"
7314
+ }
7315
+ },
7244
7316
  {
7245
7317
  "kind": "js",
7246
7318
  "name": "formatDuration",
@@ -9290,6 +9362,154 @@
9290
9362
  }
9291
9363
  ]
9292
9364
  },
9365
+ {
9366
+ "kind": "javascript-module",
9367
+ "path": "src/markdown-editor.ts",
9368
+ "declarations": [
9369
+ {
9370
+ "kind": "class",
9371
+ "description": "GitHub-style markdown editor: a \"Write\" tab holding a plain textarea and a\n\"Preview\" tab rendering the markdown body (via `markdown-view`). Leading\nYAML front matter (a `---`-delimited block) is detected, parsed, and shown\nas a key-value table above the rendered body rather than as raw text.",
9372
+ "name": "MarkdownEditor",
9373
+ "members": [
9374
+ {
9375
+ "kind": "field",
9376
+ "name": "value",
9377
+ "type": {
9378
+ "text": "string"
9379
+ },
9380
+ "default": "\"\"",
9381
+ "description": "Full raw document text, including any front matter block.",
9382
+ "attribute": "value"
9383
+ },
9384
+ {
9385
+ "kind": "field",
9386
+ "name": "rows",
9387
+ "type": {
9388
+ "text": "number"
9389
+ },
9390
+ "default": "12",
9391
+ "description": "Visible row count for the Write tab's textarea.",
9392
+ "attribute": "rows"
9393
+ },
9394
+ {
9395
+ "kind": "field",
9396
+ "name": "placeholder",
9397
+ "type": {
9398
+ "text": "string"
9399
+ },
9400
+ "default": "\"\"",
9401
+ "description": "Placeholder text shown when the Write tab is empty.",
9402
+ "attribute": "placeholder"
9403
+ },
9404
+ {
9405
+ "kind": "method",
9406
+ "name": "_onInput",
9407
+ "privacy": "private",
9408
+ "return": {
9409
+ "type": {
9410
+ "text": "void"
9411
+ }
9412
+ },
9413
+ "parameters": [
9414
+ {
9415
+ "name": "e",
9416
+ "type": {
9417
+ "text": "Event"
9418
+ }
9419
+ }
9420
+ ]
9421
+ },
9422
+ {
9423
+ "kind": "method",
9424
+ "name": "_onChange",
9425
+ "privacy": "private",
9426
+ "return": {
9427
+ "type": {
9428
+ "text": "void"
9429
+ }
9430
+ },
9431
+ "parameters": [
9432
+ {
9433
+ "name": "e",
9434
+ "type": {
9435
+ "text": "Event"
9436
+ }
9437
+ }
9438
+ ]
9439
+ }
9440
+ ],
9441
+ "events": [
9442
+ {
9443
+ "name": "input",
9444
+ "type": {
9445
+ "text": "CustomEvent"
9446
+ },
9447
+ "description": "Fires on every keystroke in the Write tab; detail: { value: string }."
9448
+ },
9449
+ {
9450
+ "name": "change",
9451
+ "type": {
9452
+ "text": "CustomEvent"
9453
+ },
9454
+ "description": "Native change semantics (on blur, if the value changed); detail: { value: string }."
9455
+ }
9456
+ ],
9457
+ "attributes": [
9458
+ {
9459
+ "name": "value",
9460
+ "type": {
9461
+ "text": "string"
9462
+ },
9463
+ "default": "\"\"",
9464
+ "description": "Full raw document text, including any front matter block.",
9465
+ "fieldName": "value"
9466
+ },
9467
+ {
9468
+ "name": "rows",
9469
+ "type": {
9470
+ "text": "number"
9471
+ },
9472
+ "default": "12",
9473
+ "description": "Visible row count for the Write tab's textarea.",
9474
+ "fieldName": "rows"
9475
+ },
9476
+ {
9477
+ "name": "placeholder",
9478
+ "type": {
9479
+ "text": "string"
9480
+ },
9481
+ "default": "\"\"",
9482
+ "description": "Placeholder text shown when the Write tab is empty.",
9483
+ "fieldName": "placeholder"
9484
+ }
9485
+ ],
9486
+ "superclass": {
9487
+ "name": "LitElement",
9488
+ "package": "lit"
9489
+ },
9490
+ "tagName": "markdown-editor",
9491
+ "customElement": true
9492
+ }
9493
+ ],
9494
+ "exports": [
9495
+ {
9496
+ "kind": "js",
9497
+ "name": "MarkdownEditor",
9498
+ "declaration": {
9499
+ "name": "MarkdownEditor",
9500
+ "module": "src/markdown-editor.ts"
9501
+ }
9502
+ },
9503
+ {
9504
+ "kind": "custom-element-definition",
9505
+ "name": "markdown-editor",
9506
+ "declaration": {
9507
+ "name": "MarkdownEditor",
9508
+ "module": "src/markdown-editor.ts"
9509
+ }
9510
+ }
9511
+ ]
9512
+ },
9293
9513
  {
9294
9514
  "kind": "javascript-module",
9295
9515
  "path": "src/markdown-view.ts",
@@ -13231,6 +13451,84 @@
13231
13451
  }
13232
13452
  ]
13233
13453
  },
13454
+ {
13455
+ "kind": "javascript-module",
13456
+ "path": "src/status-banner.ts",
13457
+ "declarations": [
13458
+ {
13459
+ "kind": "class",
13460
+ "description": "Full-width, app-level status bar for a persistent condition — \"Reconnecting…\",\n\"Read-only mode\", \"New version available\". Unlike `toast-notification` (which\nis transient, imperative, and stacks in a corner) this stays put for as long\nas the condition holds, so the consumer controls its presence by rendering it\nor not.\n\nColors mirror `status-pill`: a tinted background with accent-colored text.\nAnnounced to assistive tech via `role=\"status\"` (or `role=\"alert\"` for the\n`danger` variant, matching `toast-notification`'s split).",
13461
+ "name": "StatusBanner",
13462
+ "slots": [
13463
+ {
13464
+ "description": "The message text.",
13465
+ "name": ""
13466
+ },
13467
+ {
13468
+ "description": "Optional trailing controls, e.g. a \"Retry\" button.",
13469
+ "name": "actions"
13470
+ }
13471
+ ],
13472
+ "members": [
13473
+ {
13474
+ "kind": "field",
13475
+ "name": "variant",
13476
+ "type": {
13477
+ "text": "StatusBannerVariant"
13478
+ },
13479
+ "default": "\"info\"",
13480
+ "description": "Visual style; also selects the accent color.",
13481
+ "attribute": "variant",
13482
+ "reflects": true
13483
+ },
13484
+ {
13485
+ "kind": "field",
13486
+ "name": "icon",
13487
+ "type": {
13488
+ "text": "TemplateResult | null"
13489
+ },
13490
+ "default": "null",
13491
+ "description": "Optional leading icon, pre-rendered by the consumer (e.g. `iconInfo(14)`),\nmatching `nav-item`/`icon-button` — icons are passed in, not named, so the\ncomponent never has to know the icon catalog."
13492
+ }
13493
+ ],
13494
+ "attributes": [
13495
+ {
13496
+ "name": "variant",
13497
+ "type": {
13498
+ "text": "StatusBannerVariant"
13499
+ },
13500
+ "default": "\"info\"",
13501
+ "description": "Visual style; also selects the accent color.",
13502
+ "fieldName": "variant"
13503
+ }
13504
+ ],
13505
+ "superclass": {
13506
+ "name": "LitElement",
13507
+ "package": "lit"
13508
+ },
13509
+ "tagName": "status-banner",
13510
+ "customElement": true
13511
+ }
13512
+ ],
13513
+ "exports": [
13514
+ {
13515
+ "kind": "js",
13516
+ "name": "StatusBanner",
13517
+ "declaration": {
13518
+ "name": "StatusBanner",
13519
+ "module": "src/status-banner.ts"
13520
+ }
13521
+ },
13522
+ {
13523
+ "kind": "custom-element-definition",
13524
+ "name": "status-banner",
13525
+ "declaration": {
13526
+ "name": "StatusBanner",
13527
+ "module": "src/status-banner.ts"
13528
+ }
13529
+ }
13530
+ ]
13531
+ },
13234
13532
  {
13235
13533
  "kind": "javascript-module",
13236
13534
  "path": "src/status-pill.ts",
@@ -13329,38 +13627,358 @@
13329
13627
  },
13330
13628
  {
13331
13629
  "kind": "javascript-module",
13332
- "path": "src/text-area.ts",
13630
+ "path": "src/tab-bar.ts",
13333
13631
  "declarations": [
13334
13632
  {
13335
13633
  "kind": "class",
13336
- "description": "Plain multi-line text field a thin, tokenized wrapper around a native\n`<textarea>`, styled to match the other value-entry form fields\n(autocomplete-input, form-select, ...). Not a rich editor; use `readonly`\nto display pre-formatted text (e.g. an error message) that the user can\nstill select and copy, typically paired with `<copy-link-button>`.",
13337
- "name": "TextArea",
13634
+ "description": "WAI-ARIA tabs pattern (automatic activation, roving tabindex) driving a\nstrip of declarative `tab-item` children. `tab-bar` renders the `role=\"tab\"`\nbutton strip itself, reading `label`/`value`/`selected` off each slotted\n`tab-item`; each `tab-item` owns its own visibility via its reflected\n`selected` attribute.\n\nThe active tab's underline uses `--ui-primary`; a `--ui-border` line spans\nthe full strip beneath every tab, standing in for the inactive state since\nthis design system has no dedicated secondary accent color.",
13635
+ "name": "TabBar",
13636
+ "slots": [
13637
+ {
13638
+ "description": "`tab-item` elements.",
13639
+ "name": ""
13640
+ }
13641
+ ],
13338
13642
  "members": [
13339
13643
  {
13340
13644
  "kind": "field",
13341
- "name": "value",
13645
+ "name": "label",
13342
13646
  "type": {
13343
13647
  "text": "string"
13344
13648
  },
13345
13649
  "default": "\"\"",
13346
- "description": "Current text content.",
13347
- "attribute": "value"
13650
+ "description": "Accessible name for the tablist (e.g. \"Editor mode\").",
13651
+ "attribute": "label"
13348
13652
  },
13349
13653
  {
13350
13654
  "kind": "field",
13351
- "name": "rows",
13655
+ "name": "_tabItems",
13352
13656
  "type": {
13353
- "text": "number"
13657
+ "text": "TabItem[]"
13354
13658
  },
13355
- "default": "4",
13356
- "description": "Visible row count (native `<textarea rows>`).",
13357
- "attribute": "rows"
13659
+ "privacy": "private",
13660
+ "readonly": true
13358
13661
  },
13359
13662
  {
13360
13663
  "kind": "field",
13361
- "name": "placeholder",
13664
+ "name": "_version",
13362
13665
  "type": {
13363
- "text": "string"
13666
+ "text": "number"
13667
+ },
13668
+ "privacy": "private",
13669
+ "default": "0"
13670
+ },
13671
+ {
13672
+ "kind": "field",
13673
+ "name": "_uid",
13674
+ "privacy": "private",
13675
+ "readonly": true,
13676
+ "default": "`tab-bar-${++instanceCount}`"
13677
+ },
13678
+ {
13679
+ "kind": "field",
13680
+ "name": "_observer",
13681
+ "type": {
13682
+ "text": "MutationObserver | undefined"
13683
+ },
13684
+ "privacy": "private"
13685
+ },
13686
+ {
13687
+ "kind": "method",
13688
+ "name": "_handleSlotChange",
13689
+ "privacy": "private",
13690
+ "return": {
13691
+ "type": {
13692
+ "text": "void"
13693
+ }
13694
+ }
13695
+ },
13696
+ {
13697
+ "kind": "method",
13698
+ "name": "_ensureSelection",
13699
+ "privacy": "private",
13700
+ "return": {
13701
+ "type": {
13702
+ "text": "void"
13703
+ }
13704
+ },
13705
+ "description": "Defaults the first tab-item to selected if none was marked so by the consumer."
13706
+ },
13707
+ {
13708
+ "kind": "method",
13709
+ "name": "_currentIndex",
13710
+ "privacy": "private",
13711
+ "return": {
13712
+ "type": {
13713
+ "text": "number"
13714
+ }
13715
+ }
13716
+ },
13717
+ {
13718
+ "kind": "method",
13719
+ "name": "_tabButtonId",
13720
+ "privacy": "private",
13721
+ "return": {
13722
+ "type": {
13723
+ "text": "string"
13724
+ }
13725
+ },
13726
+ "parameters": [
13727
+ {
13728
+ "name": "index",
13729
+ "type": {
13730
+ "text": "number"
13731
+ }
13732
+ }
13733
+ ]
13734
+ },
13735
+ {
13736
+ "kind": "method",
13737
+ "name": "_select",
13738
+ "privacy": "private",
13739
+ "return": {
13740
+ "type": {
13741
+ "text": "void"
13742
+ }
13743
+ },
13744
+ "parameters": [
13745
+ {
13746
+ "name": "index",
13747
+ "type": {
13748
+ "text": "number"
13749
+ }
13750
+ },
13751
+ {
13752
+ "name": "options",
13753
+ "optional": true,
13754
+ "type": {
13755
+ "text": "{ focus?: boolean }"
13756
+ }
13757
+ }
13758
+ ]
13759
+ },
13760
+ {
13761
+ "kind": "method",
13762
+ "name": "_focusButton",
13763
+ "privacy": "private",
13764
+ "return": {
13765
+ "type": {
13766
+ "text": "void"
13767
+ }
13768
+ },
13769
+ "parameters": [
13770
+ {
13771
+ "name": "index",
13772
+ "type": {
13773
+ "text": "number"
13774
+ }
13775
+ }
13776
+ ]
13777
+ },
13778
+ {
13779
+ "kind": "method",
13780
+ "name": "_onKeydown",
13781
+ "privacy": "private",
13782
+ "return": {
13783
+ "type": {
13784
+ "text": "void"
13785
+ }
13786
+ },
13787
+ "parameters": [
13788
+ {
13789
+ "name": "event",
13790
+ "type": {
13791
+ "text": "KeyboardEvent"
13792
+ }
13793
+ }
13794
+ ],
13795
+ "description": "Arrow/Home/End roving-tabindex navigation with automatic activation."
13796
+ }
13797
+ ],
13798
+ "events": [
13799
+ {
13800
+ "name": "change",
13801
+ "type": {
13802
+ "text": "CustomEvent"
13803
+ },
13804
+ "description": "The active tab changed via click or keyboard; detail: `TabChangeDetail`."
13805
+ }
13806
+ ],
13807
+ "attributes": [
13808
+ {
13809
+ "name": "label",
13810
+ "type": {
13811
+ "text": "string"
13812
+ },
13813
+ "default": "\"\"",
13814
+ "description": "Accessible name for the tablist (e.g. \"Editor mode\").",
13815
+ "fieldName": "label"
13816
+ }
13817
+ ],
13818
+ "superclass": {
13819
+ "name": "LitElement",
13820
+ "package": "lit"
13821
+ },
13822
+ "tagName": "tab-bar",
13823
+ "customElement": true
13824
+ }
13825
+ ],
13826
+ "exports": [
13827
+ {
13828
+ "kind": "js",
13829
+ "name": "TabBar",
13830
+ "declaration": {
13831
+ "name": "TabBar",
13832
+ "module": "src/tab-bar.ts"
13833
+ }
13834
+ },
13835
+ {
13836
+ "kind": "custom-element-definition",
13837
+ "name": "tab-bar",
13838
+ "declaration": {
13839
+ "name": "TabBar",
13840
+ "module": "src/tab-bar.ts"
13841
+ }
13842
+ }
13843
+ ]
13844
+ },
13845
+ {
13846
+ "kind": "javascript-module",
13847
+ "path": "src/tab-item.ts",
13848
+ "declarations": [
13849
+ {
13850
+ "kind": "class",
13851
+ "description": "A single labeled panel inside a `tab-bar`. Renders its default slot as an\nARIA `tabpanel`, shown or hidden based on `selected` — `tab-bar` reads\n`label`/`value` to build its tab strip and toggles `selected` on the\nactive panel.",
13852
+ "name": "TabItem",
13853
+ "slots": [
13854
+ {
13855
+ "description": "Panel content, shown only while `selected`.",
13856
+ "name": ""
13857
+ }
13858
+ ],
13859
+ "members": [
13860
+ {
13861
+ "kind": "field",
13862
+ "name": "label",
13863
+ "type": {
13864
+ "text": "string"
13865
+ },
13866
+ "default": "\"\"",
13867
+ "description": "Text shown in the tab-bar's tab button for this panel.",
13868
+ "attribute": "label"
13869
+ },
13870
+ {
13871
+ "kind": "field",
13872
+ "name": "value",
13873
+ "type": {
13874
+ "text": "string"
13875
+ },
13876
+ "default": "\"\"",
13877
+ "description": "Stable identifier reported in `tab-bar`'s `change` event; defaults to `label`.",
13878
+ "attribute": "value"
13879
+ },
13880
+ {
13881
+ "kind": "field",
13882
+ "name": "selected",
13883
+ "type": {
13884
+ "text": "boolean"
13885
+ },
13886
+ "default": "false",
13887
+ "description": "Whether this panel is the active one; `tab-bar` owns this.",
13888
+ "attribute": "selected",
13889
+ "reflects": true
13890
+ }
13891
+ ],
13892
+ "attributes": [
13893
+ {
13894
+ "name": "label",
13895
+ "type": {
13896
+ "text": "string"
13897
+ },
13898
+ "default": "\"\"",
13899
+ "description": "Text shown in the tab-bar's tab button for this panel.",
13900
+ "fieldName": "label"
13901
+ },
13902
+ {
13903
+ "name": "value",
13904
+ "type": {
13905
+ "text": "string"
13906
+ },
13907
+ "default": "\"\"",
13908
+ "description": "Stable identifier reported in `tab-bar`'s `change` event; defaults to `label`.",
13909
+ "fieldName": "value"
13910
+ },
13911
+ {
13912
+ "name": "selected",
13913
+ "type": {
13914
+ "text": "boolean"
13915
+ },
13916
+ "default": "false",
13917
+ "description": "Whether this panel is the active one; `tab-bar` owns this.",
13918
+ "fieldName": "selected"
13919
+ }
13920
+ ],
13921
+ "superclass": {
13922
+ "name": "LitElement",
13923
+ "package": "lit"
13924
+ },
13925
+ "tagName": "tab-item",
13926
+ "customElement": true
13927
+ }
13928
+ ],
13929
+ "exports": [
13930
+ {
13931
+ "kind": "js",
13932
+ "name": "TabItem",
13933
+ "declaration": {
13934
+ "name": "TabItem",
13935
+ "module": "src/tab-item.ts"
13936
+ }
13937
+ },
13938
+ {
13939
+ "kind": "custom-element-definition",
13940
+ "name": "tab-item",
13941
+ "declaration": {
13942
+ "name": "TabItem",
13943
+ "module": "src/tab-item.ts"
13944
+ }
13945
+ }
13946
+ ]
13947
+ },
13948
+ {
13949
+ "kind": "javascript-module",
13950
+ "path": "src/text-area.ts",
13951
+ "declarations": [
13952
+ {
13953
+ "kind": "class",
13954
+ "description": "Plain multi-line text field — a thin, tokenized wrapper around a native\n`<textarea>`, styled to match the other value-entry form fields\n(autocomplete-input, form-select, ...). Not a rich editor; use `readonly`\nto display pre-formatted text (e.g. an error message) that the user can\nstill select and copy, typically paired with `<copy-link-button>`.",
13955
+ "name": "TextArea",
13956
+ "members": [
13957
+ {
13958
+ "kind": "field",
13959
+ "name": "value",
13960
+ "type": {
13961
+ "text": "string"
13962
+ },
13963
+ "default": "\"\"",
13964
+ "description": "Current text content.",
13965
+ "attribute": "value"
13966
+ },
13967
+ {
13968
+ "kind": "field",
13969
+ "name": "rows",
13970
+ "type": {
13971
+ "text": "number"
13972
+ },
13973
+ "default": "4",
13974
+ "description": "Visible row count (native `<textarea rows>`).",
13975
+ "attribute": "rows"
13976
+ },
13977
+ {
13978
+ "kind": "field",
13979
+ "name": "placeholder",
13980
+ "type": {
13981
+ "text": "string"
13364
13982
  },
13365
13983
  "default": "\"\"",
13366
13984
  "description": "Placeholder text shown when empty.",
@@ -15577,6 +16195,66 @@
15577
16195
  }
15578
16196
  ]
15579
16197
  },
16198
+ {
16199
+ "kind": "javascript-module",
16200
+ "path": "src/utils/front-matter.ts",
16201
+ "declarations": [
16202
+ {
16203
+ "kind": "function",
16204
+ "name": "parseFrontMatter",
16205
+ "return": {
16206
+ "type": {
16207
+ "text": "FrontMatterResult"
16208
+ }
16209
+ },
16210
+ "parameters": [
16211
+ {
16212
+ "name": "text",
16213
+ "type": {
16214
+ "text": "string"
16215
+ }
16216
+ }
16217
+ ],
16218
+ "description": "Splits a leading `---`-delimited YAML front matter block off a document.\n\nOnly treats the block as front matter if it parses as a non-empty plain\nobject — this avoids misreading a markdown horizontal rule (also `---`) as\nfront matter, and tolerates malformed YAML typed mid-edit by falling back\nto treating the whole document as plain body text."
16219
+ },
16220
+ {
16221
+ "kind": "function",
16222
+ "name": "formatFrontMatterValue",
16223
+ "return": {
16224
+ "type": {
16225
+ "text": "string"
16226
+ }
16227
+ },
16228
+ "parameters": [
16229
+ {
16230
+ "name": "value",
16231
+ "type": {
16232
+ "text": "unknown"
16233
+ }
16234
+ }
16235
+ ],
16236
+ "description": "Stringifies a parsed front matter value for key-value table display."
16237
+ }
16238
+ ],
16239
+ "exports": [
16240
+ {
16241
+ "kind": "js",
16242
+ "name": "parseFrontMatter",
16243
+ "declaration": {
16244
+ "name": "parseFrontMatter",
16245
+ "module": "src/utils/front-matter.ts"
16246
+ }
16247
+ },
16248
+ {
16249
+ "kind": "js",
16250
+ "name": "formatFrontMatterValue",
16251
+ "declaration": {
16252
+ "name": "formatFrontMatterValue",
16253
+ "module": "src/utils/front-matter.ts"
16254
+ }
16255
+ }
16256
+ ]
16257
+ },
15580
16258
  {
15581
16259
  "kind": "javascript-module",
15582
16260
  "path": "src/utils/layer-stack.ts",