@kubex/zinc 1.0.103 → 1.0.105

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.
@@ -16329,6 +16329,884 @@
16329
16329
  }
16330
16330
  ]
16331
16331
  },
16332
+ {
16333
+ "kind": "javascript-module",
16334
+ "path": "components/markdown-editor/markdown-editor.js",
16335
+ "declarations": [
16336
+ {
16337
+ "kind": "class",
16338
+ "description": "",
16339
+ "name": "ZnMarkdownEditor",
16340
+ "cssParts": [
16341
+ {
16342
+ "description": "The component's base wrapper.",
16343
+ "name": "base",
16344
+ "inheritedFrom": {
16345
+ "name": "ZnPanel",
16346
+ "module": "src/components/panel/panel.component.ts"
16347
+ }
16348
+ },
16349
+ {
16350
+ "description": "The toolbar containing the view-mode and fullscreen controls.",
16351
+ "name": "toolbar"
16352
+ },
16353
+ {
16354
+ "description": "The textarea wrapper.",
16355
+ "name": "editor"
16356
+ },
16357
+ {
16358
+ "description": "The rendered markdown preview.",
16359
+ "name": "preview"
16360
+ }
16361
+ ],
16362
+ "slots": [
16363
+ {
16364
+ "description": "The editor label. Alternatively, use the `label` attribute.",
16365
+ "name": "label"
16366
+ },
16367
+ {
16368
+ "description": "Help text shown below the editor. Alternatively, use the `help-text` attribute.",
16369
+ "name": "help-text"
16370
+ },
16371
+ {
16372
+ "description": "The panel's main content.",
16373
+ "name": "",
16374
+ "inheritedFrom": {
16375
+ "name": "ZnPanel",
16376
+ "module": "src/components/panel/panel.component.ts"
16377
+ }
16378
+ },
16379
+ {
16380
+ "description": "Actions displayed in the panel header (buttons, chips, etc).",
16381
+ "name": "actions",
16382
+ "inheritedFrom": {
16383
+ "name": "ZnPanel",
16384
+ "module": "src/components/panel/panel.component.ts"
16385
+ }
16386
+ },
16387
+ {
16388
+ "description": "Content displayed in the panel footer.",
16389
+ "name": "footer",
16390
+ "inheritedFrom": {
16391
+ "name": "ZnPanel",
16392
+ "module": "src/components/panel/panel.component.ts"
16393
+ }
16394
+ }
16395
+ ],
16396
+ "members": [
16397
+ {
16398
+ "kind": "field",
16399
+ "name": "formControlController",
16400
+ "privacy": "private",
16401
+ "readonly": true,
16402
+ "default": "new FormControlController(this, { assumeInteractionOn: ['zn-input', 'zn-change'], })"
16403
+ },
16404
+ {
16405
+ "kind": "field",
16406
+ "name": "markdownSlotController",
16407
+ "privacy": "private",
16408
+ "readonly": true,
16409
+ "default": "new HasSlotController(this, 'label', 'help-text', 'actions', 'footer')"
16410
+ },
16411
+ {
16412
+ "kind": "field",
16413
+ "name": "debounceTimer",
16414
+ "type": {
16415
+ "text": "ReturnType<typeof setTimeout> | null"
16416
+ },
16417
+ "privacy": "private",
16418
+ "default": "null"
16419
+ },
16420
+ {
16421
+ "kind": "field",
16422
+ "name": "textarea",
16423
+ "type": {
16424
+ "text": "ZnTextarea"
16425
+ }
16426
+ },
16427
+ {
16428
+ "kind": "field",
16429
+ "name": "previewEl",
16430
+ "type": {
16431
+ "text": "HTMLDivElement"
16432
+ }
16433
+ },
16434
+ {
16435
+ "kind": "field",
16436
+ "name": "name",
16437
+ "type": {
16438
+ "text": "string"
16439
+ },
16440
+ "default": "''",
16441
+ "description": "The name of the control, submitted as part of form data.",
16442
+ "attribute": "name"
16443
+ },
16444
+ {
16445
+ "kind": "field",
16446
+ "name": "value",
16447
+ "type": {
16448
+ "text": "string"
16449
+ },
16450
+ "default": "''",
16451
+ "description": "The current markdown content.",
16452
+ "attribute": "value"
16453
+ },
16454
+ {
16455
+ "kind": "field",
16456
+ "name": "defaultValue",
16457
+ "type": {
16458
+ "text": "string"
16459
+ },
16460
+ "default": "''",
16461
+ "description": "The default value — used when resetting the form."
16462
+ },
16463
+ {
16464
+ "kind": "field",
16465
+ "name": "label",
16466
+ "type": {
16467
+ "text": "string"
16468
+ },
16469
+ "default": "''",
16470
+ "description": "The control's label. If you need HTML, use the `label` slot.",
16471
+ "attribute": "label"
16472
+ },
16473
+ {
16474
+ "kind": "field",
16475
+ "name": "helpText",
16476
+ "type": {
16477
+ "text": "string"
16478
+ },
16479
+ "default": "''",
16480
+ "description": "Help text displayed below the editor. If you need HTML, use the `help-text` slot.",
16481
+ "attribute": "help-text"
16482
+ },
16483
+ {
16484
+ "kind": "field",
16485
+ "name": "placeholder",
16486
+ "type": {
16487
+ "text": "string"
16488
+ },
16489
+ "default": "'Enter markdown content...'",
16490
+ "description": "Placeholder text shown when the editor is empty.",
16491
+ "attribute": "placeholder"
16492
+ },
16493
+ {
16494
+ "kind": "field",
16495
+ "name": "rows",
16496
+ "type": {
16497
+ "text": "number"
16498
+ },
16499
+ "default": "20",
16500
+ "description": "Number of rows for the textarea.",
16501
+ "attribute": "rows"
16502
+ },
16503
+ {
16504
+ "kind": "field",
16505
+ "name": "viewMode",
16506
+ "type": {
16507
+ "text": "ViewMode"
16508
+ },
16509
+ "default": "'editor'",
16510
+ "description": "Which view to show.",
16511
+ "attribute": "view-mode",
16512
+ "reflects": true
16513
+ },
16514
+ {
16515
+ "kind": "field",
16516
+ "name": "storageKey",
16517
+ "type": {
16518
+ "text": "string"
16519
+ },
16520
+ "default": "'zn-markdown-editor-view-mode'",
16521
+ "description": "Key used to persist the selected view mode to `localStorage`. Set to an empty string to disable persistence.",
16522
+ "attribute": "storage-key"
16523
+ },
16524
+ {
16525
+ "kind": "field",
16526
+ "name": "required",
16527
+ "type": {
16528
+ "text": "boolean"
16529
+ },
16530
+ "default": "false",
16531
+ "description": "Makes the editor required for form submission.",
16532
+ "attribute": "required",
16533
+ "reflects": true
16534
+ },
16535
+ {
16536
+ "kind": "field",
16537
+ "name": "readonly",
16538
+ "type": {
16539
+ "text": "boolean"
16540
+ },
16541
+ "default": "false",
16542
+ "description": "Makes the editor read-only.",
16543
+ "attribute": "readonly",
16544
+ "reflects": true
16545
+ },
16546
+ {
16547
+ "kind": "field",
16548
+ "name": "disabled",
16549
+ "type": {
16550
+ "text": "boolean"
16551
+ },
16552
+ "default": "false",
16553
+ "description": "Disables the editor.",
16554
+ "attribute": "disabled",
16555
+ "reflects": true
16556
+ },
16557
+ {
16558
+ "kind": "field",
16559
+ "name": "expanded",
16560
+ "type": {
16561
+ "text": "boolean"
16562
+ },
16563
+ "default": "false",
16564
+ "description": "Whether the editor is currently expanded to cover its containing positioned ancestor.",
16565
+ "attribute": "expanded",
16566
+ "reflects": true
16567
+ },
16568
+ {
16569
+ "kind": "field",
16570
+ "name": "validity",
16571
+ "type": {
16572
+ "text": "ValidityState"
16573
+ },
16574
+ "readonly": true
16575
+ },
16576
+ {
16577
+ "kind": "field",
16578
+ "name": "validationMessage",
16579
+ "type": {
16580
+ "text": "string"
16581
+ },
16582
+ "readonly": true
16583
+ },
16584
+ {
16585
+ "kind": "method",
16586
+ "name": "checkValidity",
16587
+ "return": {
16588
+ "type": {
16589
+ "text": "boolean"
16590
+ }
16591
+ }
16592
+ },
16593
+ {
16594
+ "kind": "method",
16595
+ "name": "getForm",
16596
+ "return": {
16597
+ "type": {
16598
+ "text": "HTMLFormElement | null"
16599
+ }
16600
+ }
16601
+ },
16602
+ {
16603
+ "kind": "method",
16604
+ "name": "reportValidity",
16605
+ "return": {
16606
+ "type": {
16607
+ "text": "boolean"
16608
+ }
16609
+ }
16610
+ },
16611
+ {
16612
+ "kind": "method",
16613
+ "name": "setCustomValidity",
16614
+ "return": {
16615
+ "type": {
16616
+ "text": "void"
16617
+ }
16618
+ },
16619
+ "parameters": [
16620
+ {
16621
+ "name": "message",
16622
+ "type": {
16623
+ "text": "string"
16624
+ }
16625
+ }
16626
+ ]
16627
+ },
16628
+ {
16629
+ "kind": "method",
16630
+ "name": "focus",
16631
+ "parameters": [
16632
+ {
16633
+ "name": "options",
16634
+ "optional": true,
16635
+ "type": {
16636
+ "text": "FocusOptions"
16637
+ }
16638
+ }
16639
+ ],
16640
+ "description": "Sets focus on the editor."
16641
+ },
16642
+ {
16643
+ "kind": "method",
16644
+ "name": "blur",
16645
+ "description": "Removes focus from the editor."
16646
+ },
16647
+ {
16648
+ "kind": "method",
16649
+ "name": "readStoredViewMode",
16650
+ "privacy": "private",
16651
+ "return": {
16652
+ "type": {
16653
+ "text": "ViewMode | null"
16654
+ }
16655
+ }
16656
+ },
16657
+ {
16658
+ "kind": "method",
16659
+ "name": "writeStoredViewMode",
16660
+ "privacy": "private",
16661
+ "parameters": [
16662
+ {
16663
+ "name": "mode",
16664
+ "type": {
16665
+ "text": "ViewMode"
16666
+ }
16667
+ }
16668
+ ]
16669
+ },
16670
+ {
16671
+ "kind": "method",
16672
+ "name": "renderPreview",
16673
+ "privacy": "private"
16674
+ },
16675
+ {
16676
+ "kind": "field",
16677
+ "name": "handleInput",
16678
+ "privacy": "private"
16679
+ },
16680
+ {
16681
+ "kind": "field",
16682
+ "name": "handleChange",
16683
+ "privacy": "private"
16684
+ },
16685
+ {
16686
+ "kind": "field",
16687
+ "name": "handleViewToggle",
16688
+ "privacy": "private"
16689
+ },
16690
+ {
16691
+ "kind": "field",
16692
+ "name": "handleExpandToggle",
16693
+ "privacy": "private"
16694
+ },
16695
+ {
16696
+ "kind": "method",
16697
+ "name": "handleViewModeChange"
16698
+ },
16699
+ {
16700
+ "kind": "method",
16701
+ "name": "handleValueChange"
16702
+ },
16703
+ {
16704
+ "kind": "method",
16705
+ "name": "handleMarkedReady"
16706
+ },
16707
+ {
16708
+ "kind": "method",
16709
+ "name": "renderViewButton",
16710
+ "privacy": "private",
16711
+ "parameters": [
16712
+ {
16713
+ "name": "mode",
16714
+ "type": {
16715
+ "text": "ViewMode"
16716
+ }
16717
+ },
16718
+ {
16719
+ "name": "icon",
16720
+ "type": {
16721
+ "text": "string"
16722
+ }
16723
+ },
16724
+ {
16725
+ "name": "label",
16726
+ "type": {
16727
+ "text": "string"
16728
+ }
16729
+ }
16730
+ ]
16731
+ },
16732
+ {
16733
+ "kind": "field",
16734
+ "name": "hasSlotController",
16735
+ "privacy": "private",
16736
+ "readonly": true,
16737
+ "default": "new HasSlotController(this, '[default]', 'actions', 'footer')",
16738
+ "inheritedFrom": {
16739
+ "name": "ZnPanel",
16740
+ "module": "components/panel/panel.js"
16741
+ }
16742
+ },
16743
+ {
16744
+ "kind": "field",
16745
+ "name": "basis",
16746
+ "type": {
16747
+ "text": "number"
16748
+ },
16749
+ "attribute": "basis-px",
16750
+ "inheritedFrom": {
16751
+ "name": "ZnPanel",
16752
+ "module": "components/panel/panel.js"
16753
+ }
16754
+ },
16755
+ {
16756
+ "kind": "field",
16757
+ "name": "caption",
16758
+ "type": {
16759
+ "text": "string"
16760
+ },
16761
+ "attribute": "caption",
16762
+ "inheritedFrom": {
16763
+ "name": "ZnPanel",
16764
+ "module": "components/panel/panel.js"
16765
+ }
16766
+ },
16767
+ {
16768
+ "kind": "field",
16769
+ "name": "icon",
16770
+ "type": {
16771
+ "text": "string"
16772
+ },
16773
+ "attribute": "icon",
16774
+ "inheritedFrom": {
16775
+ "name": "ZnPanel",
16776
+ "module": "components/panel/panel.js"
16777
+ }
16778
+ },
16779
+ {
16780
+ "kind": "field",
16781
+ "name": "description",
16782
+ "type": {
16783
+ "text": "string"
16784
+ },
16785
+ "attribute": "description",
16786
+ "inheritedFrom": {
16787
+ "name": "ZnPanel",
16788
+ "module": "components/panel/panel.js"
16789
+ }
16790
+ },
16791
+ {
16792
+ "kind": "field",
16793
+ "name": "tabbed",
16794
+ "type": {
16795
+ "text": "boolean"
16796
+ },
16797
+ "attribute": "tabbed",
16798
+ "inheritedFrom": {
16799
+ "name": "ZnPanel",
16800
+ "module": "components/panel/panel.js"
16801
+ }
16802
+ },
16803
+ {
16804
+ "kind": "field",
16805
+ "name": "underlineHeader",
16806
+ "type": {
16807
+ "text": "boolean"
16808
+ },
16809
+ "attribute": "header-underline",
16810
+ "inheritedFrom": {
16811
+ "name": "ZnPanel",
16812
+ "module": "components/panel/panel.js"
16813
+ }
16814
+ },
16815
+ {
16816
+ "kind": "field",
16817
+ "name": "cosmic",
16818
+ "type": {
16819
+ "text": "boolean"
16820
+ },
16821
+ "attribute": "cosmic",
16822
+ "inheritedFrom": {
16823
+ "name": "ZnPanel",
16824
+ "module": "components/panel/panel.js"
16825
+ }
16826
+ },
16827
+ {
16828
+ "kind": "field",
16829
+ "name": "flush",
16830
+ "type": {
16831
+ "text": "boolean"
16832
+ },
16833
+ "attribute": "flush",
16834
+ "inheritedFrom": {
16835
+ "name": "ZnPanel",
16836
+ "module": "components/panel/panel.js"
16837
+ }
16838
+ },
16839
+ {
16840
+ "kind": "field",
16841
+ "name": "flushX",
16842
+ "type": {
16843
+ "text": "boolean"
16844
+ },
16845
+ "attribute": "flush-x",
16846
+ "inheritedFrom": {
16847
+ "name": "ZnPanel",
16848
+ "module": "components/panel/panel.js"
16849
+ }
16850
+ },
16851
+ {
16852
+ "kind": "field",
16853
+ "name": "flushY",
16854
+ "type": {
16855
+ "text": "boolean"
16856
+ },
16857
+ "attribute": "flush-y",
16858
+ "inheritedFrom": {
16859
+ "name": "ZnPanel",
16860
+ "module": "components/panel/panel.js"
16861
+ }
16862
+ },
16863
+ {
16864
+ "kind": "field",
16865
+ "name": "flushFooter",
16866
+ "type": {
16867
+ "text": "boolean"
16868
+ },
16869
+ "attribute": "flush-footer",
16870
+ "inheritedFrom": {
16871
+ "name": "ZnPanel",
16872
+ "module": "components/panel/panel.js"
16873
+ }
16874
+ },
16875
+ {
16876
+ "kind": "field",
16877
+ "name": "transparent",
16878
+ "type": {
16879
+ "text": "boolean"
16880
+ },
16881
+ "attribute": "transparent",
16882
+ "inheritedFrom": {
16883
+ "name": "ZnPanel",
16884
+ "module": "components/panel/panel.js"
16885
+ }
16886
+ },
16887
+ {
16888
+ "kind": "field",
16889
+ "name": "shadow",
16890
+ "type": {
16891
+ "text": "boolean"
16892
+ },
16893
+ "attribute": "shadow",
16894
+ "inheritedFrom": {
16895
+ "name": "ZnPanel",
16896
+ "module": "components/panel/panel.js"
16897
+ }
16898
+ }
16899
+ ],
16900
+ "events": [
16901
+ {
16902
+ "name": "zn-view-mode-change",
16903
+ "type": {
16904
+ "text": "CustomEvent"
16905
+ },
16906
+ "description": "Emitted when the user switches between editor / split / preview."
16907
+ },
16908
+ {
16909
+ "description": "Emitted when the markdown content changes.",
16910
+ "name": "zn-change"
16911
+ },
16912
+ {
16913
+ "description": "Emitted on each keystroke in the editor.",
16914
+ "name": "zn-input"
16915
+ }
16916
+ ],
16917
+ "attributes": [
16918
+ {
16919
+ "name": "name",
16920
+ "type": {
16921
+ "text": "string"
16922
+ },
16923
+ "default": "''",
16924
+ "description": "The name of the control, submitted as part of form data.",
16925
+ "fieldName": "name"
16926
+ },
16927
+ {
16928
+ "name": "value",
16929
+ "type": {
16930
+ "text": "string"
16931
+ },
16932
+ "default": "''",
16933
+ "description": "The current markdown content.",
16934
+ "fieldName": "value"
16935
+ },
16936
+ {
16937
+ "name": "label",
16938
+ "type": {
16939
+ "text": "string"
16940
+ },
16941
+ "default": "''",
16942
+ "description": "The control's label. If you need HTML, use the `label` slot.",
16943
+ "fieldName": "label"
16944
+ },
16945
+ {
16946
+ "name": "help-text",
16947
+ "type": {
16948
+ "text": "string"
16949
+ },
16950
+ "default": "''",
16951
+ "description": "Help text displayed below the editor. If you need HTML, use the `help-text` slot.",
16952
+ "fieldName": "helpText"
16953
+ },
16954
+ {
16955
+ "name": "placeholder",
16956
+ "type": {
16957
+ "text": "string"
16958
+ },
16959
+ "default": "'Enter markdown content...'",
16960
+ "description": "Placeholder text shown when the editor is empty.",
16961
+ "fieldName": "placeholder"
16962
+ },
16963
+ {
16964
+ "name": "rows",
16965
+ "type": {
16966
+ "text": "number"
16967
+ },
16968
+ "default": "20",
16969
+ "description": "Number of rows for the textarea.",
16970
+ "fieldName": "rows"
16971
+ },
16972
+ {
16973
+ "name": "view-mode",
16974
+ "type": {
16975
+ "text": "ViewMode"
16976
+ },
16977
+ "default": "'editor'",
16978
+ "description": "Which view to show.",
16979
+ "fieldName": "viewMode"
16980
+ },
16981
+ {
16982
+ "name": "storage-key",
16983
+ "type": {
16984
+ "text": "string"
16985
+ },
16986
+ "default": "'zn-markdown-editor-view-mode'",
16987
+ "description": "Key used to persist the selected view mode to `localStorage`. Set to an empty string to disable persistence.",
16988
+ "fieldName": "storageKey"
16989
+ },
16990
+ {
16991
+ "name": "required",
16992
+ "type": {
16993
+ "text": "boolean"
16994
+ },
16995
+ "default": "false",
16996
+ "description": "Makes the editor required for form submission.",
16997
+ "fieldName": "required"
16998
+ },
16999
+ {
17000
+ "name": "readonly",
17001
+ "type": {
17002
+ "text": "boolean"
17003
+ },
17004
+ "default": "false",
17005
+ "description": "Makes the editor read-only.",
17006
+ "fieldName": "readonly"
17007
+ },
17008
+ {
17009
+ "name": "disabled",
17010
+ "type": {
17011
+ "text": "boolean"
17012
+ },
17013
+ "default": "false",
17014
+ "description": "Disables the editor.",
17015
+ "fieldName": "disabled"
17016
+ },
17017
+ {
17018
+ "name": "expanded",
17019
+ "type": {
17020
+ "text": "boolean"
17021
+ },
17022
+ "default": "false",
17023
+ "description": "Whether the editor is currently expanded to cover its containing positioned ancestor.",
17024
+ "fieldName": "expanded"
17025
+ },
17026
+ {
17027
+ "name": "basis-px",
17028
+ "type": {
17029
+ "text": "number"
17030
+ },
17031
+ "fieldName": "basis",
17032
+ "inheritedFrom": {
17033
+ "name": "ZnPanel",
17034
+ "module": "src/components/panel/panel.component.ts"
17035
+ }
17036
+ },
17037
+ {
17038
+ "name": "caption",
17039
+ "type": {
17040
+ "text": "string"
17041
+ },
17042
+ "fieldName": "caption",
17043
+ "inheritedFrom": {
17044
+ "name": "ZnPanel",
17045
+ "module": "src/components/panel/panel.component.ts"
17046
+ }
17047
+ },
17048
+ {
17049
+ "name": "icon",
17050
+ "type": {
17051
+ "text": "string"
17052
+ },
17053
+ "fieldName": "icon",
17054
+ "inheritedFrom": {
17055
+ "name": "ZnPanel",
17056
+ "module": "src/components/panel/panel.component.ts"
17057
+ }
17058
+ },
17059
+ {
17060
+ "name": "description",
17061
+ "type": {
17062
+ "text": "string"
17063
+ },
17064
+ "fieldName": "description",
17065
+ "inheritedFrom": {
17066
+ "name": "ZnPanel",
17067
+ "module": "src/components/panel/panel.component.ts"
17068
+ }
17069
+ },
17070
+ {
17071
+ "name": "tabbed",
17072
+ "type": {
17073
+ "text": "boolean"
17074
+ },
17075
+ "fieldName": "tabbed",
17076
+ "inheritedFrom": {
17077
+ "name": "ZnPanel",
17078
+ "module": "src/components/panel/panel.component.ts"
17079
+ }
17080
+ },
17081
+ {
17082
+ "name": "header-underline",
17083
+ "type": {
17084
+ "text": "boolean"
17085
+ },
17086
+ "fieldName": "underlineHeader",
17087
+ "inheritedFrom": {
17088
+ "name": "ZnPanel",
17089
+ "module": "src/components/panel/panel.component.ts"
17090
+ }
17091
+ },
17092
+ {
17093
+ "name": "cosmic",
17094
+ "type": {
17095
+ "text": "boolean"
17096
+ },
17097
+ "fieldName": "cosmic",
17098
+ "inheritedFrom": {
17099
+ "name": "ZnPanel",
17100
+ "module": "src/components/panel/panel.component.ts"
17101
+ }
17102
+ },
17103
+ {
17104
+ "name": "flush",
17105
+ "type": {
17106
+ "text": "boolean"
17107
+ },
17108
+ "fieldName": "flush",
17109
+ "inheritedFrom": {
17110
+ "name": "ZnPanel",
17111
+ "module": "src/components/panel/panel.component.ts"
17112
+ }
17113
+ },
17114
+ {
17115
+ "name": "flush-x",
17116
+ "type": {
17117
+ "text": "boolean"
17118
+ },
17119
+ "fieldName": "flushX",
17120
+ "inheritedFrom": {
17121
+ "name": "ZnPanel",
17122
+ "module": "src/components/panel/panel.component.ts"
17123
+ }
17124
+ },
17125
+ {
17126
+ "name": "flush-y",
17127
+ "type": {
17128
+ "text": "boolean"
17129
+ },
17130
+ "fieldName": "flushY",
17131
+ "inheritedFrom": {
17132
+ "name": "ZnPanel",
17133
+ "module": "src/components/panel/panel.component.ts"
17134
+ }
17135
+ },
17136
+ {
17137
+ "name": "flush-footer",
17138
+ "type": {
17139
+ "text": "boolean"
17140
+ },
17141
+ "fieldName": "flushFooter",
17142
+ "inheritedFrom": {
17143
+ "name": "ZnPanel",
17144
+ "module": "src/components/panel/panel.component.ts"
17145
+ }
17146
+ },
17147
+ {
17148
+ "name": "transparent",
17149
+ "type": {
17150
+ "text": "boolean"
17151
+ },
17152
+ "fieldName": "transparent",
17153
+ "inheritedFrom": {
17154
+ "name": "ZnPanel",
17155
+ "module": "src/components/panel/panel.component.ts"
17156
+ }
17157
+ },
17158
+ {
17159
+ "name": "shadow",
17160
+ "type": {
17161
+ "text": "boolean"
17162
+ },
17163
+ "fieldName": "shadow",
17164
+ "inheritedFrom": {
17165
+ "name": "ZnPanel",
17166
+ "module": "src/components/panel/panel.component.ts"
17167
+ }
17168
+ }
17169
+ ],
17170
+ "superclass": {
17171
+ "name": "ZnPanel",
17172
+ "module": "/src/components/panel/panel.component"
17173
+ },
17174
+ "summary": "A markdown editor with live preview, split view, and a fullscreen mode.",
17175
+ "tagNameWithoutPrefix": "markdown-editor",
17176
+ "tagName": "zn-markdown-editor",
17177
+ "customElement": true,
17178
+ "jsDoc": "/**\n * @summary A markdown editor with live preview, split view, and a fullscreen mode.\n * @documentation https://zinc.style/components/markdown-editor\n * @status experimental\n * @since 1.0\n *\n * @dependency zn-textarea\n * @dependency zn-button-group\n * @dependency zn-icon\n *\n * @event zn-change - Emitted when the markdown content changes.\n * @event zn-input - Emitted on each keystroke in the editor.\n * @event zn-view-mode-change - Emitted when the user switches between editor / split / preview.\n *\n * @slot label - The editor label. Alternatively, use the `label` attribute.\n * @slot help-text - Help text shown below the editor. Alternatively, use the `help-text` attribute.\n *\n * @csspart base - The component's base wrapper.\n * @csspart toolbar - The toolbar containing the view-mode and fullscreen controls.\n * @csspart editor - The textarea wrapper.\n * @csspart preview - The rendered markdown preview.\n */",
17179
+ "documentation": "https://zinc.style/components/markdown-editor",
17180
+ "status": "experimental",
17181
+ "since": "1.0",
17182
+ "dependencies": [
17183
+ "zn-textarea",
17184
+ "zn-button-group",
17185
+ "zn-icon"
17186
+ ],
17187
+ "cssProperties": [
17188
+ {
17189
+ "description": "The flex-basis of the panel. Can be set using the basis-px attribute.",
17190
+ "name": "--zn-panel-basis",
17191
+ "inheritedFrom": {
17192
+ "name": "ZnPanel",
17193
+ "module": "src/components/panel/panel.component.ts"
17194
+ }
17195
+ }
17196
+ ]
17197
+ }
17198
+ ],
17199
+ "exports": [
17200
+ {
17201
+ "kind": "js",
17202
+ "name": "default",
17203
+ "declaration": {
17204
+ "name": "ZnMarkdownEditor",
17205
+ "module": "components/markdown-editor/markdown-editor.js"
17206
+ }
17207
+ }
17208
+ ]
17209
+ },
16332
17210
  {
16333
17211
  "kind": "javascript-module",
16334
17212
  "path": "components/menu/menu.js",
@@ -32043,7 +32921,7 @@
32043
32921
  "package": {
32044
32922
  "name": "@kubex/zinc",
32045
32923
  "description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
32046
- "version": "1.0.103",
32924
+ "version": "1.0.105",
32047
32925
  "author": "",
32048
32926
  "license": "MIT"
32049
32927
  }