@skewedaspect/sleekspace-ui 0.5.1 → 0.7.0
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/components/Card/SkCard.vue.d.ts +13 -1
- package/dist/components/ColorPicker/SkColorPicker.vue.d.ts +29 -0
- package/dist/components/ColorPicker/index.d.ts +2 -0
- package/dist/components/ColorPicker/types.d.ts +4 -0
- package/dist/components/ContextMenu/SkContextMenu.vue.d.ts +25 -0
- package/dist/components/ContextMenu/SkContextMenuCheckboxItem.vue.d.ts +28 -0
- package/dist/components/ContextMenu/SkContextMenuItem.vue.d.ts +26 -0
- package/dist/components/ContextMenu/SkContextMenuLabel.vue.d.ts +17 -0
- package/dist/components/ContextMenu/SkContextMenuRadioGroup.vue.d.ts +26 -0
- package/dist/components/ContextMenu/SkContextMenuRadioItem.vue.d.ts +23 -0
- package/dist/components/ContextMenu/SkContextMenuSeparator.vue.d.ts +2 -0
- package/dist/components/ContextMenu/SkContextMenuSubmenu.vue.d.ts +24 -0
- package/dist/components/ContextMenu/index.d.ts +9 -0
- package/dist/components/ContextMenu/types.d.ts +2 -0
- package/dist/components/Dropdown/SkDropdown.vue.d.ts +1 -1
- package/dist/components/Dropdown/SkDropdownCheckboxItem.vue.d.ts +28 -0
- package/dist/components/Dropdown/SkDropdownMenuLabel.vue.d.ts +17 -0
- package/dist/components/Dropdown/SkDropdownRadioGroup.vue.d.ts +26 -0
- package/dist/components/Dropdown/SkDropdownRadioItem.vue.d.ts +23 -0
- package/dist/components/Dropdown/index.d.ts +4 -0
- package/dist/components/Panel/SkPanel.vue.d.ts +15 -1
- package/dist/components/Panel/types.d.ts +1 -0
- package/dist/components/Popover/SkPopover.vue.d.ts +1 -1
- package/dist/components/ScrollArea/SkScrollArea.vue.d.ts +31 -0
- package/dist/components/ScrollArea/index.d.ts +2 -0
- package/dist/components/ScrollArea/types.d.ts +4 -0
- package/dist/components/Select/SkSelect.vue.d.ts +61 -0
- package/dist/components/Select/SkSelectItem.vue.d.ts +134 -0
- package/dist/components/Select/SkSelectSeparator.vue.d.ts +2 -0
- package/dist/components/Select/index.d.ts +4 -0
- package/dist/components/Select/types.d.ts +3 -0
- package/dist/components/Sidebar/SkSidebar.vue.d.ts +8 -1
- package/dist/components/Sidebar/types.d.ts +1 -0
- package/dist/components/Skeleton/SkSkeleton.vue.d.ts +2 -2
- package/dist/components/Splitter/SkSplitter.vue.d.ts +29 -0
- package/dist/components/Splitter/SkSplitterHandle.vue.d.ts +7 -0
- package/dist/components/Splitter/SkSplitterPanel.vue.d.ts +30 -0
- package/dist/components/Splitter/index.d.ts +4 -0
- package/dist/components/Splitter/types.d.ts +3 -0
- package/dist/components/Toolbar/SkToolbar.vue.d.ts +31 -0
- package/dist/components/Toolbar/SkToolbarButton.vue.d.ts +22 -0
- package/dist/components/Toolbar/SkToolbarSeparator.vue.d.ts +2 -0
- package/dist/components/Toolbar/SkToolbarToggleGroup.vue.d.ts +31 -0
- package/dist/components/Toolbar/SkToolbarToggleItem.vue.d.ts +23 -0
- package/dist/components/Toolbar/index.d.ts +6 -0
- package/dist/components/Toolbar/types.d.ts +5 -0
- package/dist/components/Tooltip/SkTooltip.vue.d.ts +1 -1
- package/dist/components/TreeView/SkTreeItem.vue.d.ts +39 -0
- package/dist/components/TreeView/SkTreeView.vue.d.ts +31 -0
- package/dist/components/TreeView/index.d.ts +3 -0
- package/dist/components/TreeView/types.d.ts +3 -0
- package/dist/index.d.ts +61 -0
- package/dist/sleekspace-ui.css +1644 -65
- package/dist/sleekspace-ui.es.js +17444 -6063
- package/dist/sleekspace-ui.umd.js +17426 -6045
- package/package.json +2 -1
- package/src/components/Card/SkCard.vue +17 -1
- package/src/components/ColorPicker/SkColorPicker.vue +355 -0
- package/src/components/ColorPicker/index.ts +6 -0
- package/src/components/ColorPicker/types.ts +11 -0
- package/src/components/ContextMenu/SkContextMenu.vue +83 -0
- package/src/components/ContextMenu/SkContextMenuCheckboxItem.vue +72 -0
- package/src/components/ContextMenu/SkContextMenuItem.vue +49 -0
- package/src/components/ContextMenu/SkContextMenuLabel.vue +17 -0
- package/src/components/ContextMenu/SkContextMenuRadioGroup.vue +36 -0
- package/src/components/ContextMenu/SkContextMenuRadioItem.vue +53 -0
- package/src/components/ContextMenu/SkContextMenuSeparator.vue +21 -0
- package/src/components/ContextMenu/SkContextMenuSubmenu.vue +94 -0
- package/src/components/ContextMenu/index.ts +15 -0
- package/src/components/ContextMenu/types.ts +9 -0
- package/src/components/Dropdown/SkDropdown.vue +1 -1
- package/src/components/Dropdown/SkDropdownCheckboxItem.vue +72 -0
- package/src/components/Dropdown/SkDropdownMenuItem.vue +1 -1
- package/src/components/Dropdown/SkDropdownMenuLabel.vue +17 -0
- package/src/components/Dropdown/SkDropdownRadioGroup.vue +36 -0
- package/src/components/Dropdown/SkDropdownRadioItem.vue +53 -0
- package/src/components/Dropdown/SkDropdownSubmenu.vue +2 -2
- package/src/components/Dropdown/index.ts +4 -0
- package/src/components/Panel/SkPanel.vue +29 -4
- package/src/components/Panel/types.ts +3 -0
- package/src/components/ScrollArea/SkScrollArea.vue +87 -0
- package/src/components/ScrollArea/index.ts +8 -0
- package/src/components/ScrollArea/types.ts +11 -0
- package/src/components/Select/SkSelect.vue +210 -0
- package/src/components/Select/SkSelectItem.vue +112 -0
- package/src/components/Select/SkSelectSeparator.vue +40 -0
- package/src/components/Select/index.ts +10 -0
- package/src/components/Select/types.ts +10 -0
- package/src/components/Sidebar/SkSidebar.vue +39 -2
- package/src/components/Sidebar/types.ts +2 -0
- package/src/components/Splitter/SkSplitter.vue +65 -0
- package/src/components/Splitter/SkSplitterHandle.vue +40 -0
- package/src/components/Splitter/SkSplitterPanel.vue +45 -0
- package/src/components/Splitter/index.ts +10 -0
- package/src/components/Splitter/types.ts +10 -0
- package/src/components/Toolbar/SkToolbar.vue +69 -0
- package/src/components/Toolbar/SkToolbarButton.vue +36 -0
- package/src/components/Toolbar/SkToolbarSeparator.vue +15 -0
- package/src/components/Toolbar/SkToolbarToggleGroup.vue +49 -0
- package/src/components/Toolbar/SkToolbarToggleItem.vue +37 -0
- package/src/components/Toolbar/index.ts +12 -0
- package/src/components/Toolbar/types.ts +12 -0
- package/src/components/TreeView/SkTreeItem.vue +84 -0
- package/src/components/TreeView/SkTreeView.vue +120 -0
- package/src/components/TreeView/index.ts +9 -0
- package/src/components/TreeView/types.ts +10 -0
- package/src/global.d.ts +22 -0
- package/src/index.ts +110 -0
- package/src/styles/components/_card.scss +45 -9
- package/src/styles/components/_color-picker.scss +552 -0
- package/src/styles/components/_index.scss +6 -0
- package/src/styles/components/_listbox.scss +1 -0
- package/src/styles/components/_menu.scss +52 -3
- package/src/styles/components/_panel.scss +119 -13
- package/src/styles/components/_scroll-area.scss +120 -0
- package/src/styles/components/_select.scss +439 -0
- package/src/styles/components/_sidebar.scss +83 -4
- package/src/styles/components/_splitter.scss +136 -0
- package/src/styles/components/_toolbar.scss +296 -0
- package/src/styles/components/_tree-view.scss +187 -0
- package/web-types.json +1244 -197
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "@skewedaspect/sleekspace-ui",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.7.0",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -590,6 +590,26 @@
|
|
|
590
590
|
"type": "boolean"
|
|
591
591
|
},
|
|
592
592
|
"default": "false"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"name": "corners",
|
|
596
|
+
"required": false,
|
|
597
|
+
"description": "Which corners receive the beveled cut. Passed through to the underlying SkPanel.",
|
|
598
|
+
"value": {
|
|
599
|
+
"kind": "expression",
|
|
600
|
+
"type": "Array"
|
|
601
|
+
},
|
|
602
|
+
"default": "() => [ 'bottom-right' ]"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"name": "decorationCorner",
|
|
606
|
+
"required": false,
|
|
607
|
+
"description": "Which corner displays the decorative accent stripe. Passed through to SkPanel.",
|
|
608
|
+
"value": {
|
|
609
|
+
"kind": "expression",
|
|
610
|
+
"type": "SkPanelCorner"
|
|
611
|
+
},
|
|
612
|
+
"default": "'bottom-right'"
|
|
593
613
|
}
|
|
594
614
|
],
|
|
595
615
|
"slots": [
|
|
@@ -760,131 +780,229 @@
|
|
|
760
780
|
}
|
|
761
781
|
},
|
|
762
782
|
{
|
|
763
|
-
"name": "
|
|
783
|
+
"name": "SkColorPicker",
|
|
764
784
|
"description": "",
|
|
765
785
|
"attributes": [
|
|
766
786
|
{
|
|
767
|
-
"name": "
|
|
787
|
+
"name": "kind",
|
|
768
788
|
"required": false,
|
|
769
|
-
"description": "Controls the direction of the divider line. Use 'horizontal' for separating\nvertically stacked content (the divider spans width), or 'vertical' for\nseparating horizontally arranged elements (the divider spans height).",
|
|
770
789
|
"value": {
|
|
771
790
|
"kind": "expression",
|
|
772
|
-
"type": "
|
|
791
|
+
"type": "SkColorPickerKind"
|
|
773
792
|
},
|
|
774
|
-
"default": "
|
|
793
|
+
"default": "undefined"
|
|
775
794
|
},
|
|
776
795
|
{
|
|
777
|
-
"name": "
|
|
796
|
+
"name": "size",
|
|
778
797
|
"required": false,
|
|
779
|
-
"description": "Semantic color kind that controls the divider's line color. Semantic kinds\n(neutral, primary, accent, etc.) adapt to your theme. Use colored dividers\nsparingly to draw attention to important content boundaries.",
|
|
780
798
|
"value": {
|
|
781
799
|
"kind": "expression",
|
|
782
|
-
"type": "
|
|
800
|
+
"type": "SkColorPickerSize"
|
|
783
801
|
},
|
|
784
|
-
"default": "'
|
|
802
|
+
"default": "'md'"
|
|
785
803
|
},
|
|
786
804
|
{
|
|
787
|
-
"name": "
|
|
805
|
+
"name": "format",
|
|
788
806
|
"required": false,
|
|
789
|
-
"description": "Visual intensity variant for the divider. The default variant provides a\nclearly visible line, while 'subtle' reduces opacity for a softer, less\nprominent separation that doesn't compete with content for attention.",
|
|
790
807
|
"value": {
|
|
791
808
|
"kind": "expression",
|
|
792
|
-
"type": "
|
|
809
|
+
"type": "SkColorPickerFormat"
|
|
793
810
|
},
|
|
794
|
-
"default": "
|
|
811
|
+
"default": "'hexa'"
|
|
795
812
|
},
|
|
796
813
|
{
|
|
797
|
-
"name": "
|
|
814
|
+
"name": "showAlpha",
|
|
798
815
|
"required": false,
|
|
799
|
-
"description": "Controls the thickness of the divider line and the spacing (margin) around it.\nLarger sizes create bolder visual breaks between content sections, while smaller\nsizes provide minimal separation. Available: 'sm', 'md', 'lg', 'xl'.",
|
|
800
816
|
"value": {
|
|
801
817
|
"kind": "expression",
|
|
802
|
-
"type": "
|
|
818
|
+
"type": "boolean"
|
|
803
819
|
},
|
|
804
|
-
"default": "
|
|
820
|
+
"default": "true"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"name": "disabled",
|
|
824
|
+
"required": false,
|
|
825
|
+
"value": {
|
|
826
|
+
"kind": "expression",
|
|
827
|
+
"type": "boolean"
|
|
828
|
+
},
|
|
829
|
+
"default": "false"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"name": "placeholder",
|
|
833
|
+
"required": false,
|
|
834
|
+
"value": {
|
|
835
|
+
"kind": "expression",
|
|
836
|
+
"type": "string"
|
|
837
|
+
},
|
|
838
|
+
"default": "'Pick a color'"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"name": "defaultValue",
|
|
842
|
+
"required": false,
|
|
843
|
+
"value": {
|
|
844
|
+
"kind": "expression",
|
|
845
|
+
"type": "string"
|
|
846
|
+
},
|
|
847
|
+
"default": "'#B63DDAFF'"
|
|
805
848
|
}
|
|
806
849
|
],
|
|
807
850
|
"source": {
|
|
808
|
-
"module": "./src/components/
|
|
851
|
+
"module": "./src/components/ColorPicker/SkColorPicker.vue",
|
|
809
852
|
"symbol": "default"
|
|
810
853
|
}
|
|
811
854
|
},
|
|
812
855
|
{
|
|
813
|
-
"name": "
|
|
856
|
+
"name": "SkContextMenu",
|
|
814
857
|
"description": "",
|
|
815
858
|
"attributes": [
|
|
816
859
|
{
|
|
817
860
|
"name": "kind",
|
|
818
861
|
"required": false,
|
|
819
|
-
"description": "Semantic color kind that controls the menu's accent colors for hover states and\nfocus indicators. The kind is inherited by nested SkDropdownSubmenu components\nunless they specify their own kind.",
|
|
820
862
|
"value": {
|
|
821
863
|
"kind": "expression",
|
|
822
|
-
"type": "
|
|
864
|
+
"type": "SkContextMenuKind"
|
|
823
865
|
},
|
|
824
866
|
"default": "'neutral'"
|
|
867
|
+
}
|
|
868
|
+
],
|
|
869
|
+
"slots": [
|
|
870
|
+
{
|
|
871
|
+
"name": "trigger"
|
|
825
872
|
},
|
|
826
873
|
{
|
|
827
|
-
"name": "
|
|
874
|
+
"name": "default"
|
|
875
|
+
}
|
|
876
|
+
],
|
|
877
|
+
"source": {
|
|
878
|
+
"module": "./src/components/ContextMenu/SkContextMenu.vue",
|
|
879
|
+
"symbol": "default"
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"name": "SkContextMenuCheckboxItem",
|
|
884
|
+
"description": "",
|
|
885
|
+
"attributes": [
|
|
886
|
+
{
|
|
887
|
+
"name": "modelValue",
|
|
828
888
|
"required": false,
|
|
829
|
-
"description": "Text displayed on the default trigger button. Only used when the trigger slot\nis not provided. For custom trigger elements (icons, avatar buttons, etc.),\nuse the trigger slot instead.",
|
|
830
889
|
"value": {
|
|
831
890
|
"kind": "expression",
|
|
832
|
-
"type": "
|
|
891
|
+
"type": "boolean"
|
|
833
892
|
},
|
|
834
|
-
"default": "
|
|
893
|
+
"default": "false"
|
|
835
894
|
},
|
|
836
895
|
{
|
|
837
|
-
"name": "
|
|
896
|
+
"name": "disabled",
|
|
838
897
|
"required": false,
|
|
839
|
-
"description": "Which side of the trigger element to position the dropdown menu. The menu\nwill automatically flip to the opposite side if there isn't enough space.\nThe caret icon on the default trigger rotates to match this direction.",
|
|
840
898
|
"value": {
|
|
841
899
|
"kind": "expression",
|
|
842
|
-
"type": "
|
|
900
|
+
"type": "boolean"
|
|
843
901
|
},
|
|
844
|
-
"default": "
|
|
845
|
-
}
|
|
902
|
+
"default": "false"
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
"events": [
|
|
846
906
|
{
|
|
847
|
-
"name": "
|
|
907
|
+
"name": "update:modelValue"
|
|
908
|
+
}
|
|
909
|
+
],
|
|
910
|
+
"slots": [
|
|
911
|
+
{
|
|
912
|
+
"name": "default"
|
|
913
|
+
}
|
|
914
|
+
],
|
|
915
|
+
"source": {
|
|
916
|
+
"module": "./src/components/ContextMenu/SkContextMenuCheckboxItem.vue",
|
|
917
|
+
"symbol": "default"
|
|
918
|
+
}
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"name": "SkContextMenuItem",
|
|
922
|
+
"description": "",
|
|
923
|
+
"attributes": [
|
|
924
|
+
{
|
|
925
|
+
"name": "disabled",
|
|
848
926
|
"required": false,
|
|
849
|
-
"description": "Horizontal alignment of the dropdown menu relative to the trigger. 'start'\naligns the menu's left edge with the trigger's left edge, 'center' centers\nthe menu, and 'end' aligns right edges.",
|
|
850
927
|
"value": {
|
|
851
928
|
"kind": "expression",
|
|
852
|
-
"type": "
|
|
929
|
+
"type": "boolean"
|
|
853
930
|
},
|
|
854
|
-
"default": "
|
|
855
|
-
}
|
|
931
|
+
"default": "false"
|
|
932
|
+
}
|
|
933
|
+
],
|
|
934
|
+
"events": [
|
|
856
935
|
{
|
|
857
|
-
"name": "
|
|
936
|
+
"name": "click"
|
|
937
|
+
}
|
|
938
|
+
],
|
|
939
|
+
"slots": [
|
|
940
|
+
{
|
|
941
|
+
"name": "default"
|
|
942
|
+
}
|
|
943
|
+
],
|
|
944
|
+
"source": {
|
|
945
|
+
"module": "./src/components/ContextMenu/SkContextMenuItem.vue",
|
|
946
|
+
"symbol": "default"
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"name": "SkContextMenuLabel",
|
|
951
|
+
"description": "",
|
|
952
|
+
"slots": [
|
|
953
|
+
{
|
|
954
|
+
"name": "default"
|
|
955
|
+
}
|
|
956
|
+
],
|
|
957
|
+
"source": {
|
|
958
|
+
"module": "./src/components/ContextMenu/SkContextMenuLabel.vue",
|
|
959
|
+
"symbol": "default"
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"name": "SkContextMenuRadioGroup",
|
|
964
|
+
"description": "",
|
|
965
|
+
"attributes": [
|
|
966
|
+
{
|
|
967
|
+
"name": "modelValue",
|
|
858
968
|
"required": false,
|
|
859
|
-
"description": "Distance in pixels between the trigger element and the dropdown menu.\nIncrease for more visual separation or decrease for a tighter connection\nto the trigger element.",
|
|
860
969
|
"value": {
|
|
861
970
|
"kind": "expression",
|
|
862
|
-
"type": "
|
|
971
|
+
"type": "string"
|
|
863
972
|
},
|
|
864
|
-
"default": "
|
|
973
|
+
"default": "''"
|
|
865
974
|
}
|
|
866
975
|
],
|
|
867
|
-
"
|
|
976
|
+
"events": [
|
|
868
977
|
{
|
|
869
|
-
"name": "
|
|
870
|
-
}
|
|
978
|
+
"name": "update:modelValue"
|
|
979
|
+
}
|
|
980
|
+
],
|
|
981
|
+
"slots": [
|
|
871
982
|
{
|
|
872
983
|
"name": "default"
|
|
873
984
|
}
|
|
874
985
|
],
|
|
875
986
|
"source": {
|
|
876
|
-
"module": "./src/components/
|
|
987
|
+
"module": "./src/components/ContextMenu/SkContextMenuRadioGroup.vue",
|
|
877
988
|
"symbol": "default"
|
|
878
989
|
}
|
|
879
990
|
},
|
|
880
991
|
{
|
|
881
|
-
"name": "
|
|
992
|
+
"name": "SkContextMenuRadioItem",
|
|
882
993
|
"description": "",
|
|
883
994
|
"attributes": [
|
|
995
|
+
{
|
|
996
|
+
"name": "value",
|
|
997
|
+
"required": true,
|
|
998
|
+
"value": {
|
|
999
|
+
"kind": "expression",
|
|
1000
|
+
"type": "string"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
884
1003
|
{
|
|
885
1004
|
"name": "disabled",
|
|
886
1005
|
"required": false,
|
|
887
|
-
"description": "When true, the menu item is visually dimmed and cannot be interacted with.\nDisabled items are skipped during keyboard navigation. Use for actions that\nare temporarily unavailable based on application state.",
|
|
888
1006
|
"value": {
|
|
889
1007
|
"kind": "expression",
|
|
890
1008
|
"type": "boolean"
|
|
@@ -892,37 +1010,31 @@
|
|
|
892
1010
|
"default": "false"
|
|
893
1011
|
}
|
|
894
1012
|
],
|
|
895
|
-
"events": [
|
|
896
|
-
{
|
|
897
|
-
"name": "click"
|
|
898
|
-
}
|
|
899
|
-
],
|
|
900
1013
|
"slots": [
|
|
901
1014
|
{
|
|
902
1015
|
"name": "default"
|
|
903
1016
|
}
|
|
904
1017
|
],
|
|
905
1018
|
"source": {
|
|
906
|
-
"module": "./src/components/
|
|
1019
|
+
"module": "./src/components/ContextMenu/SkContextMenuRadioItem.vue",
|
|
907
1020
|
"symbol": "default"
|
|
908
1021
|
}
|
|
909
1022
|
},
|
|
910
1023
|
{
|
|
911
|
-
"name": "
|
|
1024
|
+
"name": "SkContextMenuSeparator",
|
|
912
1025
|
"description": "",
|
|
913
1026
|
"source": {
|
|
914
|
-
"module": "./src/components/
|
|
1027
|
+
"module": "./src/components/ContextMenu/SkContextMenuSeparator.vue",
|
|
915
1028
|
"symbol": "default"
|
|
916
1029
|
}
|
|
917
1030
|
},
|
|
918
1031
|
{
|
|
919
|
-
"name": "
|
|
1032
|
+
"name": "SkContextMenuSubmenu",
|
|
920
1033
|
"description": "",
|
|
921
1034
|
"attributes": [
|
|
922
1035
|
{
|
|
923
1036
|
"name": "triggerText",
|
|
924
1037
|
"required": true,
|
|
925
|
-
"description": "The label text displayed on the submenu trigger item. This appears as a menu\nitem in the parent menu with a right-pointing caret indicating it opens a submenu.",
|
|
926
1038
|
"value": {
|
|
927
1039
|
"kind": "expression",
|
|
928
1040
|
"type": "string"
|
|
@@ -931,10 +1043,9 @@
|
|
|
931
1043
|
{
|
|
932
1044
|
"name": "kind",
|
|
933
1045
|
"required": false,
|
|
934
|
-
"description": "Semantic color kind for the submenu content. When not specified, the submenu\nautomatically inherits the kind from its parent SkDropdown, ensuring visual\nconsistency throughout nested menu structures.",
|
|
935
1046
|
"value": {
|
|
936
1047
|
"kind": "expression",
|
|
937
|
-
"type": "
|
|
1048
|
+
"type": "SkContextMenuKind"
|
|
938
1049
|
},
|
|
939
1050
|
"default": "undefined"
|
|
940
1051
|
}
|
|
@@ -945,81 +1056,383 @@
|
|
|
945
1056
|
}
|
|
946
1057
|
],
|
|
947
1058
|
"source": {
|
|
948
|
-
"module": "./src/components/
|
|
1059
|
+
"module": "./src/components/ContextMenu/SkContextMenuSubmenu.vue",
|
|
949
1060
|
"symbol": "default"
|
|
950
1061
|
}
|
|
951
1062
|
},
|
|
952
1063
|
{
|
|
953
|
-
"name": "
|
|
1064
|
+
"name": "SkDivider",
|
|
954
1065
|
"description": "",
|
|
955
1066
|
"attributes": [
|
|
956
1067
|
{
|
|
957
|
-
"name": "
|
|
1068
|
+
"name": "orientation",
|
|
958
1069
|
"required": false,
|
|
959
|
-
"description": "
|
|
1070
|
+
"description": "Controls the direction of the divider line. Use 'horizontal' for separating\nvertically stacked content (the divider spans width), or 'vertical' for\nseparating horizontally arranged elements (the divider spans height).",
|
|
960
1071
|
"value": {
|
|
961
1072
|
"kind": "expression",
|
|
962
|
-
"type": "
|
|
1073
|
+
"type": "SkDividerOrientation"
|
|
963
1074
|
},
|
|
964
|
-
"default": "
|
|
1075
|
+
"default": "'horizontal'"
|
|
965
1076
|
},
|
|
966
1077
|
{
|
|
967
|
-
"name": "
|
|
1078
|
+
"name": "kind",
|
|
968
1079
|
"required": false,
|
|
969
|
-
"description": "
|
|
1080
|
+
"description": "Semantic color kind that controls the divider's line color. Semantic kinds\n(neutral, primary, accent, etc.) adapt to your theme. Use colored dividers\nsparingly to draw attention to important content boundaries.",
|
|
970
1081
|
"value": {
|
|
971
1082
|
"kind": "expression",
|
|
972
|
-
"type": "
|
|
1083
|
+
"type": "ComponentKind"
|
|
973
1084
|
},
|
|
974
|
-
"default": "
|
|
1085
|
+
"default": "'neutral'"
|
|
975
1086
|
},
|
|
976
1087
|
{
|
|
977
|
-
"name": "
|
|
1088
|
+
"name": "variant",
|
|
978
1089
|
"required": false,
|
|
979
|
-
"description": "
|
|
1090
|
+
"description": "Visual intensity variant for the divider. The default variant provides a\nclearly visible line, while 'subtle' reduces opacity for a softer, less\nprominent separation that doesn't compete with content for attention.",
|
|
980
1091
|
"value": {
|
|
981
1092
|
"kind": "expression",
|
|
982
|
-
"type": "
|
|
1093
|
+
"type": "SkDividerVariant"
|
|
983
1094
|
},
|
|
984
1095
|
"default": "undefined"
|
|
985
1096
|
},
|
|
986
1097
|
{
|
|
987
|
-
"name": "
|
|
1098
|
+
"name": "size",
|
|
988
1099
|
"required": false,
|
|
989
|
-
"description": "
|
|
1100
|
+
"description": "Controls the thickness of the divider line and the spacing (margin) around it.\nLarger sizes create bolder visual breaks between content sections, while smaller\nsizes provide minimal separation. Available: 'sm', 'md', 'lg', 'xl'.",
|
|
990
1101
|
"value": {
|
|
991
1102
|
"kind": "expression",
|
|
992
|
-
"type": "
|
|
1103
|
+
"type": "ComponentSize"
|
|
993
1104
|
},
|
|
994
|
-
"default": "
|
|
995
|
-
}
|
|
1105
|
+
"default": "'md'"
|
|
1106
|
+
}
|
|
1107
|
+
],
|
|
1108
|
+
"source": {
|
|
1109
|
+
"module": "./src/components/Divider/SkDivider.vue",
|
|
1110
|
+
"symbol": "default"
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"name": "SkDropdown",
|
|
1115
|
+
"description": "",
|
|
1116
|
+
"attributes": [
|
|
996
1117
|
{
|
|
997
|
-
"name": "
|
|
1118
|
+
"name": "kind",
|
|
998
1119
|
"required": false,
|
|
999
|
-
"description": "
|
|
1120
|
+
"description": "Semantic color kind that controls the menu's accent colors for hover states and\nfocus indicators. The kind is inherited by nested SkDropdownSubmenu components\nunless they specify their own kind.",
|
|
1000
1121
|
"value": {
|
|
1001
1122
|
"kind": "expression",
|
|
1002
|
-
"type": "
|
|
1123
|
+
"type": "SkDropdownKind"
|
|
1003
1124
|
},
|
|
1004
|
-
"default": "'
|
|
1125
|
+
"default": "'neutral'"
|
|
1005
1126
|
},
|
|
1006
1127
|
{
|
|
1007
|
-
"name": "
|
|
1128
|
+
"name": "triggerText",
|
|
1008
1129
|
"required": false,
|
|
1009
|
-
"description": "
|
|
1130
|
+
"description": "Text displayed on the default trigger button. Only used when the trigger slot\nis not provided. For custom trigger elements (icons, avatar buttons, etc.),\nuse the trigger slot instead.",
|
|
1010
1131
|
"value": {
|
|
1011
1132
|
"kind": "expression",
|
|
1012
1133
|
"type": "string"
|
|
1013
1134
|
},
|
|
1014
|
-
"default": "
|
|
1135
|
+
"default": "'Menu'"
|
|
1015
1136
|
},
|
|
1016
1137
|
{
|
|
1017
|
-
"name": "
|
|
1138
|
+
"name": "side",
|
|
1018
1139
|
"required": false,
|
|
1019
|
-
"description": "
|
|
1140
|
+
"description": "Which side of the trigger element to position the dropdown menu. The menu\nwill automatically flip to the opposite side if there isn't enough space.\nThe caret icon on the default trigger rotates to match this direction.",
|
|
1020
1141
|
"value": {
|
|
1021
1142
|
"kind": "expression",
|
|
1022
|
-
"type": "
|
|
1143
|
+
"type": "SkDropdownSide"
|
|
1144
|
+
},
|
|
1145
|
+
"default": "'bottom'"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"name": "align",
|
|
1149
|
+
"required": false,
|
|
1150
|
+
"description": "Horizontal alignment of the dropdown menu relative to the trigger. 'start'\naligns the menu's left edge with the trigger's left edge, 'center' centers\nthe menu, and 'end' aligns right edges.",
|
|
1151
|
+
"value": {
|
|
1152
|
+
"kind": "expression",
|
|
1153
|
+
"type": "SkDropdownAlign"
|
|
1154
|
+
},
|
|
1155
|
+
"default": "'start'"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"name": "sideOffset",
|
|
1159
|
+
"required": false,
|
|
1160
|
+
"description": "Distance in pixels between the trigger element and the dropdown menu.\nIncrease for more visual separation or decrease for a tighter connection\nto the trigger element.",
|
|
1161
|
+
"value": {
|
|
1162
|
+
"kind": "expression",
|
|
1163
|
+
"type": "number"
|
|
1164
|
+
},
|
|
1165
|
+
"default": "4"
|
|
1166
|
+
}
|
|
1167
|
+
],
|
|
1168
|
+
"slots": [
|
|
1169
|
+
{
|
|
1170
|
+
"name": "trigger"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"name": "default"
|
|
1174
|
+
}
|
|
1175
|
+
],
|
|
1176
|
+
"source": {
|
|
1177
|
+
"module": "./src/components/Dropdown/SkDropdown.vue",
|
|
1178
|
+
"symbol": "default"
|
|
1179
|
+
}
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"name": "SkDropdownCheckboxItem",
|
|
1183
|
+
"description": "",
|
|
1184
|
+
"attributes": [
|
|
1185
|
+
{
|
|
1186
|
+
"name": "modelValue",
|
|
1187
|
+
"required": false,
|
|
1188
|
+
"value": {
|
|
1189
|
+
"kind": "expression",
|
|
1190
|
+
"type": "boolean"
|
|
1191
|
+
},
|
|
1192
|
+
"default": "false"
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
"name": "disabled",
|
|
1196
|
+
"required": false,
|
|
1197
|
+
"value": {
|
|
1198
|
+
"kind": "expression",
|
|
1199
|
+
"type": "boolean"
|
|
1200
|
+
},
|
|
1201
|
+
"default": "false"
|
|
1202
|
+
}
|
|
1203
|
+
],
|
|
1204
|
+
"events": [
|
|
1205
|
+
{
|
|
1206
|
+
"name": "update:modelValue"
|
|
1207
|
+
}
|
|
1208
|
+
],
|
|
1209
|
+
"slots": [
|
|
1210
|
+
{
|
|
1211
|
+
"name": "default"
|
|
1212
|
+
}
|
|
1213
|
+
],
|
|
1214
|
+
"source": {
|
|
1215
|
+
"module": "./src/components/Dropdown/SkDropdownCheckboxItem.vue",
|
|
1216
|
+
"symbol": "default"
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
{
|
|
1220
|
+
"name": "SkDropdownMenuItem",
|
|
1221
|
+
"description": "",
|
|
1222
|
+
"attributes": [
|
|
1223
|
+
{
|
|
1224
|
+
"name": "disabled",
|
|
1225
|
+
"required": false,
|
|
1226
|
+
"description": "When true, the menu item is visually dimmed and cannot be interacted with.\nDisabled items are skipped during keyboard navigation. Use for actions that\nare temporarily unavailable based on application state.",
|
|
1227
|
+
"value": {
|
|
1228
|
+
"kind": "expression",
|
|
1229
|
+
"type": "boolean"
|
|
1230
|
+
},
|
|
1231
|
+
"default": "false"
|
|
1232
|
+
}
|
|
1233
|
+
],
|
|
1234
|
+
"events": [
|
|
1235
|
+
{
|
|
1236
|
+
"name": "click"
|
|
1237
|
+
}
|
|
1238
|
+
],
|
|
1239
|
+
"slots": [
|
|
1240
|
+
{
|
|
1241
|
+
"name": "default"
|
|
1242
|
+
}
|
|
1243
|
+
],
|
|
1244
|
+
"source": {
|
|
1245
|
+
"module": "./src/components/Dropdown/SkDropdownMenuItem.vue",
|
|
1246
|
+
"symbol": "default"
|
|
1247
|
+
}
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"name": "SkDropdownMenuLabel",
|
|
1251
|
+
"description": "",
|
|
1252
|
+
"slots": [
|
|
1253
|
+
{
|
|
1254
|
+
"name": "default"
|
|
1255
|
+
}
|
|
1256
|
+
],
|
|
1257
|
+
"source": {
|
|
1258
|
+
"module": "./src/components/Dropdown/SkDropdownMenuLabel.vue",
|
|
1259
|
+
"symbol": "default"
|
|
1260
|
+
}
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"name": "SkDropdownMenuSeparator",
|
|
1264
|
+
"description": "",
|
|
1265
|
+
"source": {
|
|
1266
|
+
"module": "./src/components/Dropdown/SkDropdownMenuSeparator.vue",
|
|
1267
|
+
"symbol": "default"
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"name": "SkDropdownRadioGroup",
|
|
1272
|
+
"description": "",
|
|
1273
|
+
"attributes": [
|
|
1274
|
+
{
|
|
1275
|
+
"name": "modelValue",
|
|
1276
|
+
"required": false,
|
|
1277
|
+
"value": {
|
|
1278
|
+
"kind": "expression",
|
|
1279
|
+
"type": "string"
|
|
1280
|
+
},
|
|
1281
|
+
"default": "''"
|
|
1282
|
+
}
|
|
1283
|
+
],
|
|
1284
|
+
"events": [
|
|
1285
|
+
{
|
|
1286
|
+
"name": "update:modelValue"
|
|
1287
|
+
}
|
|
1288
|
+
],
|
|
1289
|
+
"slots": [
|
|
1290
|
+
{
|
|
1291
|
+
"name": "default"
|
|
1292
|
+
}
|
|
1293
|
+
],
|
|
1294
|
+
"source": {
|
|
1295
|
+
"module": "./src/components/Dropdown/SkDropdownRadioGroup.vue",
|
|
1296
|
+
"symbol": "default"
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"name": "SkDropdownRadioItem",
|
|
1301
|
+
"description": "",
|
|
1302
|
+
"attributes": [
|
|
1303
|
+
{
|
|
1304
|
+
"name": "value",
|
|
1305
|
+
"required": true,
|
|
1306
|
+
"value": {
|
|
1307
|
+
"kind": "expression",
|
|
1308
|
+
"type": "string"
|
|
1309
|
+
}
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"name": "disabled",
|
|
1313
|
+
"required": false,
|
|
1314
|
+
"value": {
|
|
1315
|
+
"kind": "expression",
|
|
1316
|
+
"type": "boolean"
|
|
1317
|
+
},
|
|
1318
|
+
"default": "false"
|
|
1319
|
+
}
|
|
1320
|
+
],
|
|
1321
|
+
"slots": [
|
|
1322
|
+
{
|
|
1323
|
+
"name": "default"
|
|
1324
|
+
}
|
|
1325
|
+
],
|
|
1326
|
+
"source": {
|
|
1327
|
+
"module": "./src/components/Dropdown/SkDropdownRadioItem.vue",
|
|
1328
|
+
"symbol": "default"
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
"name": "SkDropdownSubmenu",
|
|
1333
|
+
"description": "",
|
|
1334
|
+
"attributes": [
|
|
1335
|
+
{
|
|
1336
|
+
"name": "triggerText",
|
|
1337
|
+
"required": true,
|
|
1338
|
+
"description": "The label text displayed on the submenu trigger item. This appears as a menu\nitem in the parent menu with a right-pointing caret indicating it opens a submenu.",
|
|
1339
|
+
"value": {
|
|
1340
|
+
"kind": "expression",
|
|
1341
|
+
"type": "string"
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
"name": "kind",
|
|
1346
|
+
"required": false,
|
|
1347
|
+
"description": "Semantic color kind for the submenu content. When not specified, the submenu\nautomatically inherits the kind from its parent SkDropdown, ensuring visual\nconsistency throughout nested menu structures.",
|
|
1348
|
+
"value": {
|
|
1349
|
+
"kind": "expression",
|
|
1350
|
+
"type": "SkDropdownKind"
|
|
1351
|
+
},
|
|
1352
|
+
"default": "undefined"
|
|
1353
|
+
}
|
|
1354
|
+
],
|
|
1355
|
+
"slots": [
|
|
1356
|
+
{
|
|
1357
|
+
"name": "default"
|
|
1358
|
+
}
|
|
1359
|
+
],
|
|
1360
|
+
"source": {
|
|
1361
|
+
"module": "./src/components/Dropdown/SkDropdownSubmenu.vue",
|
|
1362
|
+
"symbol": "default"
|
|
1363
|
+
}
|
|
1364
|
+
},
|
|
1365
|
+
{
|
|
1366
|
+
"name": "SkField",
|
|
1367
|
+
"description": "",
|
|
1368
|
+
"attributes": [
|
|
1369
|
+
{
|
|
1370
|
+
"name": "label",
|
|
1371
|
+
"required": false,
|
|
1372
|
+
"description": "Label text displayed above or beside the input. The label is automatically associated\nwith the input via the `for` attribute using the generated or provided ID. Leave empty\nfor inputs that don't need a visible label (use aria-label on the input instead).",
|
|
1373
|
+
"value": {
|
|
1374
|
+
"kind": "expression",
|
|
1375
|
+
"type": "string"
|
|
1376
|
+
},
|
|
1377
|
+
"default": "undefined"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
"name": "description",
|
|
1381
|
+
"required": false,
|
|
1382
|
+
"description": "Help text displayed below the input providing additional context or instructions.\nWhen an error message is present, the description is hidden and replaced by the error.\nConnected to the input via aria-describedby for screen reader accessibility.",
|
|
1383
|
+
"value": {
|
|
1384
|
+
"kind": "expression",
|
|
1385
|
+
"type": "string"
|
|
1386
|
+
},
|
|
1387
|
+
"default": "undefined"
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
"name": "error",
|
|
1391
|
+
"required": false,
|
|
1392
|
+
"description": "Error message displayed below the input in a danger/red color. When present, replaces\nthe description text and sets aria-invalid=\"true\" on the input. Typically populated\nfrom form validation results.",
|
|
1393
|
+
"value": {
|
|
1394
|
+
"kind": "expression",
|
|
1395
|
+
"type": "string"
|
|
1396
|
+
},
|
|
1397
|
+
"default": "undefined"
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"name": "required",
|
|
1401
|
+
"required": false,
|
|
1402
|
+
"description": "When true, displays a red asterisk (*) after the label to indicate the field is required.\nThis is a visual indicator only—you must also set the `required` attribute on the input\nitself for form validation.",
|
|
1403
|
+
"value": {
|
|
1404
|
+
"kind": "expression",
|
|
1405
|
+
"type": "boolean"
|
|
1406
|
+
},
|
|
1407
|
+
"default": "false"
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"name": "labelPosition",
|
|
1411
|
+
"required": false,
|
|
1412
|
+
"description": "Position of the label relative to the input. 'top' places the label above the input\n(default, best for most forms). 'left' places the label to the left of the input\n(useful for horizontal form layouts or settings panels).",
|
|
1413
|
+
"value": {
|
|
1414
|
+
"kind": "expression",
|
|
1415
|
+
"type": "SkFieldLabelPosition"
|
|
1416
|
+
},
|
|
1417
|
+
"default": "'top'"
|
|
1418
|
+
},
|
|
1419
|
+
{
|
|
1420
|
+
"name": "id",
|
|
1421
|
+
"required": false,
|
|
1422
|
+
"description": "Custom ID for the field. When provided, this ID is passed to the slotted input and\nused for label association. When not provided, a unique ID is auto-generated. Use\ncustom IDs when you need to reference the input from elsewhere in your code.",
|
|
1423
|
+
"value": {
|
|
1424
|
+
"kind": "expression",
|
|
1425
|
+
"type": "string"
|
|
1426
|
+
},
|
|
1427
|
+
"default": "undefined"
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
"name": "state",
|
|
1431
|
+
"required": false,
|
|
1432
|
+
"description": "Validation state that controls the visual kind of the child input. `true` applies the\n`validKind` (default: 'success'), `false` applies the `invalidKind` (default: 'danger'),\nand `null`/`undefined` lets the input use its own kind prop. Child inputs automatically\ninherit this via provide/inject.",
|
|
1433
|
+
"value": {
|
|
1434
|
+
"kind": "expression",
|
|
1435
|
+
"type": "union"
|
|
1023
1436
|
},
|
|
1024
1437
|
"default": "null"
|
|
1025
1438
|
},
|
|
@@ -1837,9 +2250,29 @@
|
|
|
1837
2250
|
"description": "When true, removes the border entirely from the panel, creating a borderless container.\nUseful for nested panels or when you want the panel background without visual boundaries.\nNote: Setting this to true automatically disables the decoration stripe.",
|
|
1838
2251
|
"value": {
|
|
1839
2252
|
"kind": "expression",
|
|
1840
|
-
"type": "boolean"
|
|
2253
|
+
"type": "boolean"
|
|
2254
|
+
},
|
|
2255
|
+
"default": "false"
|
|
2256
|
+
},
|
|
2257
|
+
{
|
|
2258
|
+
"name": "corners",
|
|
2259
|
+
"required": false,
|
|
2260
|
+
"description": "Which corners receive the beveled cut. Any combination of the four corners can be\nspecified. Pass an empty array for no cut corners.",
|
|
2261
|
+
"value": {
|
|
2262
|
+
"kind": "expression",
|
|
2263
|
+
"type": "Array"
|
|
2264
|
+
},
|
|
2265
|
+
"default": "() => [ 'bottom-right' ]"
|
|
2266
|
+
},
|
|
2267
|
+
{
|
|
2268
|
+
"name": "decorationCorner",
|
|
2269
|
+
"required": false,
|
|
2270
|
+
"description": "Which corner displays the decorative accent stripe. Must be one of the active\n`corners` for the decoration to be visible.",
|
|
2271
|
+
"value": {
|
|
2272
|
+
"kind": "expression",
|
|
2273
|
+
"type": "SkPanelCorner"
|
|
1841
2274
|
},
|
|
1842
|
-
"default": "
|
|
2275
|
+
"default": "'bottom-right'"
|
|
1843
2276
|
}
|
|
1844
2277
|
],
|
|
1845
2278
|
"slots": [
|
|
@@ -2200,6 +2633,163 @@
|
|
|
2200
2633
|
"symbol": "default"
|
|
2201
2634
|
}
|
|
2202
2635
|
},
|
|
2636
|
+
{
|
|
2637
|
+
"name": "SkScrollArea",
|
|
2638
|
+
"description": "",
|
|
2639
|
+
"attributes": [
|
|
2640
|
+
{
|
|
2641
|
+
"name": "type",
|
|
2642
|
+
"required": false,
|
|
2643
|
+
"value": {
|
|
2644
|
+
"kind": "expression",
|
|
2645
|
+
"type": "SkScrollAreaType"
|
|
2646
|
+
},
|
|
2647
|
+
"default": "'hover'"
|
|
2648
|
+
},
|
|
2649
|
+
{
|
|
2650
|
+
"name": "orientation",
|
|
2651
|
+
"required": false,
|
|
2652
|
+
"value": {
|
|
2653
|
+
"kind": "expression",
|
|
2654
|
+
"type": "SkScrollAreaOrientation"
|
|
2655
|
+
},
|
|
2656
|
+
"default": "'vertical'"
|
|
2657
|
+
},
|
|
2658
|
+
{
|
|
2659
|
+
"name": "kind",
|
|
2660
|
+
"required": false,
|
|
2661
|
+
"value": {
|
|
2662
|
+
"kind": "expression",
|
|
2663
|
+
"type": "SkScrollAreaKind"
|
|
2664
|
+
},
|
|
2665
|
+
"default": "'neutral'"
|
|
2666
|
+
},
|
|
2667
|
+
{
|
|
2668
|
+
"name": "baseColor",
|
|
2669
|
+
"required": false,
|
|
2670
|
+
"value": {
|
|
2671
|
+
"kind": "expression",
|
|
2672
|
+
"type": "string"
|
|
2673
|
+
},
|
|
2674
|
+
"default": "undefined"
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
"name": "textColor",
|
|
2678
|
+
"required": false,
|
|
2679
|
+
"value": {
|
|
2680
|
+
"kind": "expression",
|
|
2681
|
+
"type": "string"
|
|
2682
|
+
},
|
|
2683
|
+
"default": "undefined"
|
|
2684
|
+
}
|
|
2685
|
+
],
|
|
2686
|
+
"slots": [
|
|
2687
|
+
{
|
|
2688
|
+
"name": "default"
|
|
2689
|
+
}
|
|
2690
|
+
],
|
|
2691
|
+
"source": {
|
|
2692
|
+
"module": "./src/components/ScrollArea/SkScrollArea.vue",
|
|
2693
|
+
"symbol": "default"
|
|
2694
|
+
}
|
|
2695
|
+
},
|
|
2696
|
+
{
|
|
2697
|
+
"name": "SkSelect",
|
|
2698
|
+
"description": "",
|
|
2699
|
+
"attributes": [
|
|
2700
|
+
{
|
|
2701
|
+
"name": "kind",
|
|
2702
|
+
"required": false,
|
|
2703
|
+
"description": "Semantic color kind that controls the trigger border, focus ring, and selected\nitem highlight appearance. When used inside SkField, inherits the field's\nkind if not explicitly set.",
|
|
2704
|
+
"value": {
|
|
2705
|
+
"kind": "expression",
|
|
2706
|
+
"type": "SkSelectKind"
|
|
2707
|
+
},
|
|
2708
|
+
"default": "undefined"
|
|
2709
|
+
},
|
|
2710
|
+
{
|
|
2711
|
+
"name": "size",
|
|
2712
|
+
"required": false,
|
|
2713
|
+
"description": "Size of the trigger and dropdown content. Controls the trigger height,\ntext size, and option item dimensions. Available sizes: 'sm' (small),\n'md' (medium), 'lg' (large).",
|
|
2714
|
+
"value": {
|
|
2715
|
+
"kind": "expression",
|
|
2716
|
+
"type": "SkSelectSize"
|
|
2717
|
+
},
|
|
2718
|
+
"default": "'md'"
|
|
2719
|
+
},
|
|
2720
|
+
{
|
|
2721
|
+
"name": "placeholder",
|
|
2722
|
+
"required": false,
|
|
2723
|
+
"description": "Placeholder text displayed in the trigger when no option is selected.\nUse to guide users on what type of selection to make.",
|
|
2724
|
+
"value": {
|
|
2725
|
+
"kind": "expression",
|
|
2726
|
+
"type": "string"
|
|
2727
|
+
},
|
|
2728
|
+
"default": "'Select...'"
|
|
2729
|
+
},
|
|
2730
|
+
{
|
|
2731
|
+
"name": "disabled",
|
|
2732
|
+
"required": false,
|
|
2733
|
+
"description": "When true, the select is disabled and cannot be interacted with. The trigger\nis non-clickable and the dropdown cannot be opened. The component appears\nwith reduced opacity and the cursor changes to not-allowed.",
|
|
2734
|
+
"value": {
|
|
2735
|
+
"kind": "expression",
|
|
2736
|
+
"type": "boolean"
|
|
2737
|
+
},
|
|
2738
|
+
"default": "false"
|
|
2739
|
+
}
|
|
2740
|
+
],
|
|
2741
|
+
"slots": [
|
|
2742
|
+
{
|
|
2743
|
+
"name": "default"
|
|
2744
|
+
}
|
|
2745
|
+
],
|
|
2746
|
+
"source": {
|
|
2747
|
+
"module": "./src/components/Select/SkSelect.vue",
|
|
2748
|
+
"symbol": "default"
|
|
2749
|
+
}
|
|
2750
|
+
},
|
|
2751
|
+
{
|
|
2752
|
+
"name": "SkSelectItem",
|
|
2753
|
+
"description": "",
|
|
2754
|
+
"attributes": [
|
|
2755
|
+
{
|
|
2756
|
+
"name": "value",
|
|
2757
|
+
"required": true,
|
|
2758
|
+
"description": "The value this option represents. When selected, the parent SkSelect's v-model\nwill be set to this value. Must be a string and unique within the select.",
|
|
2759
|
+
"value": {
|
|
2760
|
+
"kind": "expression",
|
|
2761
|
+
"type": "string"
|
|
2762
|
+
}
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"name": "disabled",
|
|
2766
|
+
"required": false,
|
|
2767
|
+
"description": "When true, this option is disabled and cannot be selected. The item appears\nwith reduced opacity and is skipped during keyboard navigation.",
|
|
2768
|
+
"value": {
|
|
2769
|
+
"kind": "expression",
|
|
2770
|
+
"type": "boolean"
|
|
2771
|
+
},
|
|
2772
|
+
"default": "false"
|
|
2773
|
+
}
|
|
2774
|
+
],
|
|
2775
|
+
"slots": [
|
|
2776
|
+
{
|
|
2777
|
+
"name": "default"
|
|
2778
|
+
}
|
|
2779
|
+
],
|
|
2780
|
+
"source": {
|
|
2781
|
+
"module": "./src/components/Select/SkSelectItem.vue",
|
|
2782
|
+
"symbol": "default"
|
|
2783
|
+
}
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
"name": "SkSelectSeparator",
|
|
2787
|
+
"description": "",
|
|
2788
|
+
"source": {
|
|
2789
|
+
"module": "./src/components/Select/SkSelectSeparator.vue",
|
|
2790
|
+
"symbol": "default"
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2203
2793
|
{
|
|
2204
2794
|
"name": "SkSidebar",
|
|
2205
2795
|
"description": "",
|
|
@@ -2223,6 +2813,16 @@
|
|
|
2223
2813
|
"type": "string"
|
|
2224
2814
|
},
|
|
2225
2815
|
"default": "'180px'"
|
|
2816
|
+
},
|
|
2817
|
+
{
|
|
2818
|
+
"name": "side",
|
|
2819
|
+
"required": false,
|
|
2820
|
+
"description": "Which side of the layout the sidebar is placed on. Controls the direction of the\npanel bevel and the sidebar-item clip-path cuts so they mirror appropriately.",
|
|
2821
|
+
"value": {
|
|
2822
|
+
"kind": "expression",
|
|
2823
|
+
"type": "SkSidebarSide"
|
|
2824
|
+
},
|
|
2825
|
+
"default": "'left'"
|
|
2226
2826
|
}
|
|
2227
2827
|
],
|
|
2228
2828
|
"slots": [
|
|
@@ -2494,57 +3094,187 @@
|
|
|
2494
3094
|
}
|
|
2495
3095
|
],
|
|
2496
3096
|
"source": {
|
|
2497
|
-
"module": "./src/components/Slider/SkSlider.vue",
|
|
3097
|
+
"module": "./src/components/Slider/SkSlider.vue",
|
|
3098
|
+
"symbol": "default"
|
|
3099
|
+
}
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
"name": "SkSpinner",
|
|
3103
|
+
"description": "",
|
|
3104
|
+
"attributes": [
|
|
3105
|
+
{
|
|
3106
|
+
"name": "kind",
|
|
3107
|
+
"required": false,
|
|
3108
|
+
"description": "Semantic color kind that controls the spinner color. Semantic kinds (neutral, primary,\naccent, etc.) adapt to your theme. Use 'primary' for general loading states, or match\nthe kind to the context (e.g., 'danger' when loading after an error action).",
|
|
3109
|
+
"value": {
|
|
3110
|
+
"kind": "expression",
|
|
3111
|
+
"type": "ComponentKind"
|
|
3112
|
+
},
|
|
3113
|
+
"default": "'primary'"
|
|
3114
|
+
},
|
|
3115
|
+
{
|
|
3116
|
+
"name": "size",
|
|
3117
|
+
"required": false,
|
|
3118
|
+
"description": "Size of the spinner. Controls both the spinner dimensions and animation scale.\nUse 'sm' for inline loading indicators (e.g., inside buttons), 'md' for standard\nloading states, and 'lg' or 'xl' for full-page or section loading overlays.",
|
|
3119
|
+
"value": {
|
|
3120
|
+
"kind": "expression",
|
|
3121
|
+
"type": "SkSpinnerSize"
|
|
3122
|
+
},
|
|
3123
|
+
"default": "'md'"
|
|
3124
|
+
},
|
|
3125
|
+
{
|
|
3126
|
+
"name": "variant",
|
|
3127
|
+
"required": false,
|
|
3128
|
+
"description": "Animation variant that determines the spinner's visual style:\n- 'circular': Two concentric spinning arcs (default, most common)\n- 'dots': Three bouncing dots in sequence\n- 'crosshair': Rotating crosshair pattern (fits cyberpunk aesthetic)",
|
|
3129
|
+
"value": {
|
|
3130
|
+
"kind": "expression",
|
|
3131
|
+
"type": "SkSpinnerVariant"
|
|
3132
|
+
},
|
|
3133
|
+
"default": "'circular'"
|
|
3134
|
+
},
|
|
3135
|
+
{
|
|
3136
|
+
"name": "color",
|
|
3137
|
+
"required": false,
|
|
3138
|
+
"description": "Custom color for the spinner, overriding the `kind` color. Accepts any valid CSS\ncolor value. Use \"currentColor\" to inherit the text color from the parent element,\nwhich is useful for spinners inside buttons or other colored containers.",
|
|
3139
|
+
"value": {
|
|
3140
|
+
"kind": "expression",
|
|
3141
|
+
"type": "string"
|
|
3142
|
+
},
|
|
3143
|
+
"default": "undefined"
|
|
3144
|
+
}
|
|
3145
|
+
],
|
|
3146
|
+
"source": {
|
|
3147
|
+
"module": "./src/components/Spinner/SkSpinner.vue",
|
|
3148
|
+
"symbol": "default"
|
|
3149
|
+
}
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"name": "SkSplitter",
|
|
3153
|
+
"description": "",
|
|
3154
|
+
"attributes": [
|
|
3155
|
+
{
|
|
3156
|
+
"name": "direction",
|
|
3157
|
+
"required": false,
|
|
3158
|
+
"value": {
|
|
3159
|
+
"kind": "expression",
|
|
3160
|
+
"type": "SkSplitterDirection"
|
|
3161
|
+
},
|
|
3162
|
+
"default": "'horizontal'"
|
|
3163
|
+
},
|
|
3164
|
+
{
|
|
3165
|
+
"name": "kind",
|
|
3166
|
+
"required": false,
|
|
3167
|
+
"value": {
|
|
3168
|
+
"kind": "expression",
|
|
3169
|
+
"type": "SkSplitterKind"
|
|
3170
|
+
},
|
|
3171
|
+
"default": "'neutral'"
|
|
3172
|
+
},
|
|
3173
|
+
{
|
|
3174
|
+
"name": "baseColor",
|
|
3175
|
+
"required": false,
|
|
3176
|
+
"value": {
|
|
3177
|
+
"kind": "expression",
|
|
3178
|
+
"type": "string"
|
|
3179
|
+
},
|
|
3180
|
+
"default": "undefined"
|
|
3181
|
+
},
|
|
3182
|
+
{
|
|
3183
|
+
"name": "textColor",
|
|
3184
|
+
"required": false,
|
|
3185
|
+
"value": {
|
|
3186
|
+
"kind": "expression",
|
|
3187
|
+
"type": "string"
|
|
3188
|
+
},
|
|
3189
|
+
"default": "undefined"
|
|
3190
|
+
}
|
|
3191
|
+
],
|
|
3192
|
+
"slots": [
|
|
3193
|
+
{
|
|
3194
|
+
"name": "default"
|
|
3195
|
+
}
|
|
3196
|
+
],
|
|
3197
|
+
"source": {
|
|
3198
|
+
"module": "./src/components/Splitter/SkSplitter.vue",
|
|
3199
|
+
"symbol": "default"
|
|
3200
|
+
}
|
|
3201
|
+
},
|
|
3202
|
+
{
|
|
3203
|
+
"name": "SkSplitterHandle",
|
|
3204
|
+
"description": "",
|
|
3205
|
+
"attributes": [
|
|
3206
|
+
{
|
|
3207
|
+
"name": "disabled",
|
|
3208
|
+
"required": false,
|
|
3209
|
+
"value": {
|
|
3210
|
+
"kind": "expression",
|
|
3211
|
+
"type": "boolean"
|
|
3212
|
+
},
|
|
3213
|
+
"default": "false"
|
|
3214
|
+
}
|
|
3215
|
+
],
|
|
3216
|
+
"source": {
|
|
3217
|
+
"module": "./src/components/Splitter/SkSplitterHandle.vue",
|
|
2498
3218
|
"symbol": "default"
|
|
2499
3219
|
}
|
|
2500
3220
|
},
|
|
2501
3221
|
{
|
|
2502
|
-
"name": "
|
|
3222
|
+
"name": "SkSplitterPanel",
|
|
2503
3223
|
"description": "",
|
|
2504
3224
|
"attributes": [
|
|
2505
3225
|
{
|
|
2506
|
-
"name": "
|
|
3226
|
+
"name": "defaultSize",
|
|
2507
3227
|
"required": false,
|
|
2508
|
-
"description": "Semantic color kind that controls the spinner color. Semantic kinds (neutral, primary,\naccent, etc.) adapt to your theme. Use 'primary' for general loading states, or match\nthe kind to the context (e.g., 'danger' when loading after an error action).",
|
|
2509
3228
|
"value": {
|
|
2510
3229
|
"kind": "expression",
|
|
2511
|
-
"type": "
|
|
3230
|
+
"type": "number"
|
|
2512
3231
|
},
|
|
2513
|
-
"default": "
|
|
3232
|
+
"default": "undefined"
|
|
2514
3233
|
},
|
|
2515
3234
|
{
|
|
2516
|
-
"name": "
|
|
3235
|
+
"name": "minSize",
|
|
2517
3236
|
"required": false,
|
|
2518
|
-
"description": "Size of the spinner. Controls both the spinner dimensions and animation scale.\nUse 'sm' for inline loading indicators (e.g., inside buttons), 'md' for standard\nloading states, and 'lg' or 'xl' for full-page or section loading overlays.",
|
|
2519
3237
|
"value": {
|
|
2520
3238
|
"kind": "expression",
|
|
2521
|
-
"type": "
|
|
3239
|
+
"type": "number"
|
|
2522
3240
|
},
|
|
2523
|
-
"default": "
|
|
3241
|
+
"default": "undefined"
|
|
2524
3242
|
},
|
|
2525
3243
|
{
|
|
2526
|
-
"name": "
|
|
3244
|
+
"name": "maxSize",
|
|
2527
3245
|
"required": false,
|
|
2528
|
-
"description": "Animation variant that determines the spinner's visual style:\n- 'circular': Two concentric spinning arcs (default, most common)\n- 'dots': Three bouncing dots in sequence\n- 'crosshair': Rotating crosshair pattern (fits cyberpunk aesthetic)",
|
|
2529
3246
|
"value": {
|
|
2530
3247
|
"kind": "expression",
|
|
2531
|
-
"type": "
|
|
3248
|
+
"type": "number"
|
|
2532
3249
|
},
|
|
2533
|
-
"default": "
|
|
3250
|
+
"default": "undefined"
|
|
2534
3251
|
},
|
|
2535
3252
|
{
|
|
2536
|
-
"name": "
|
|
3253
|
+
"name": "collapsible",
|
|
2537
3254
|
"required": false,
|
|
2538
|
-
"description": "Custom color for the spinner, overriding the `kind` color. Accepts any valid CSS\ncolor value. Use \"currentColor\" to inherit the text color from the parent element,\nwhich is useful for spinners inside buttons or other colored containers.",
|
|
2539
3255
|
"value": {
|
|
2540
3256
|
"kind": "expression",
|
|
2541
|
-
"type": "
|
|
3257
|
+
"type": "boolean"
|
|
3258
|
+
},
|
|
3259
|
+
"default": "false"
|
|
3260
|
+
},
|
|
3261
|
+
{
|
|
3262
|
+
"name": "collapsedSize",
|
|
3263
|
+
"required": false,
|
|
3264
|
+
"value": {
|
|
3265
|
+
"kind": "expression",
|
|
3266
|
+
"type": "number"
|
|
2542
3267
|
},
|
|
2543
3268
|
"default": "undefined"
|
|
2544
3269
|
}
|
|
2545
3270
|
],
|
|
3271
|
+
"slots": [
|
|
3272
|
+
{
|
|
3273
|
+
"name": "default"
|
|
3274
|
+
}
|
|
3275
|
+
],
|
|
2546
3276
|
"source": {
|
|
2547
|
-
"module": "./src/components/
|
|
3277
|
+
"module": "./src/components/Splitter/SkSplitterPanel.vue",
|
|
2548
3278
|
"symbol": "default"
|
|
2549
3279
|
}
|
|
2550
3280
|
},
|
|
@@ -3232,23 +3962,241 @@
|
|
|
3232
3962
|
}
|
|
3233
3963
|
],
|
|
3234
3964
|
"source": {
|
|
3235
|
-
"module": "./src/components/Textarea/SkTextarea.vue",
|
|
3965
|
+
"module": "./src/components/Textarea/SkTextarea.vue",
|
|
3966
|
+
"symbol": "default"
|
|
3967
|
+
}
|
|
3968
|
+
},
|
|
3969
|
+
{
|
|
3970
|
+
"name": "SkTheme",
|
|
3971
|
+
"description": "",
|
|
3972
|
+
"attributes": [
|
|
3973
|
+
{
|
|
3974
|
+
"name": "theme",
|
|
3975
|
+
"required": false,
|
|
3976
|
+
"description": "The active theme name that controls the color scheme for all child components.\nChanging this prop reactively updates the theme across the entire subtree.\nPortal components (dropdowns, modals, tooltips) automatically inherit this\ntheme even though they render outside the DOM hierarchy.",
|
|
3977
|
+
"value": {
|
|
3978
|
+
"kind": "expression",
|
|
3979
|
+
"type": "SkThemeName"
|
|
3980
|
+
},
|
|
3981
|
+
"default": "'greyscale'"
|
|
3982
|
+
}
|
|
3983
|
+
],
|
|
3984
|
+
"slots": [
|
|
3985
|
+
{
|
|
3986
|
+
"name": "default"
|
|
3987
|
+
}
|
|
3988
|
+
],
|
|
3989
|
+
"source": {
|
|
3990
|
+
"module": "./src/components/Theme/SkTheme.vue",
|
|
3991
|
+
"symbol": "default"
|
|
3992
|
+
}
|
|
3993
|
+
},
|
|
3994
|
+
{
|
|
3995
|
+
"name": "SkToast",
|
|
3996
|
+
"description": "",
|
|
3997
|
+
"attributes": [
|
|
3998
|
+
{
|
|
3999
|
+
"name": "id",
|
|
4000
|
+
"required": true,
|
|
4001
|
+
"description": "Unique identifier for this toast instance. Used internally for tracking and dismissing\nspecific toasts. Generated automatically by SkToastProvider when using useToast().",
|
|
4002
|
+
"value": {
|
|
4003
|
+
"kind": "expression",
|
|
4004
|
+
"type": "string"
|
|
4005
|
+
}
|
|
4006
|
+
},
|
|
4007
|
+
{
|
|
4008
|
+
"name": "kind",
|
|
4009
|
+
"required": true,
|
|
4010
|
+
"description": "Semantic color kind that determines the toast's visual appearance and icon. Each kind\ndisplays a contextually appropriate icon: info (circle-i), success (checkmark),\nwarning (triangle), danger (x-circle). The kind also sets the background and text colors.",
|
|
4011
|
+
"value": {
|
|
4012
|
+
"kind": "expression",
|
|
4013
|
+
"type": "SkToastKind"
|
|
4014
|
+
}
|
|
4015
|
+
},
|
|
4016
|
+
{
|
|
4017
|
+
"name": "title",
|
|
4018
|
+
"required": false,
|
|
4019
|
+
"description": "Optional bold title text displayed above the message. Use for brief headings like\n\"Success!\", \"Error\", or \"Warning\". When omitted, only the message is displayed.",
|
|
4020
|
+
"value": {
|
|
4021
|
+
"kind": "expression",
|
|
4022
|
+
"type": "string"
|
|
4023
|
+
}
|
|
4024
|
+
},
|
|
4025
|
+
{
|
|
4026
|
+
"name": "message",
|
|
4027
|
+
"required": true,
|
|
4028
|
+
"description": "The main toast message content. This is the primary text users will read, describing\nwhat happened or what action was taken. Keep messages concise and actionable.",
|
|
4029
|
+
"value": {
|
|
4030
|
+
"kind": "expression",
|
|
4031
|
+
"type": "string"
|
|
4032
|
+
}
|
|
4033
|
+
},
|
|
4034
|
+
{
|
|
4035
|
+
"name": "duration",
|
|
4036
|
+
"required": false,
|
|
4037
|
+
"description": "Time in milliseconds before the toast automatically dismisses. Set to 0 or undefined\nto disable auto-dismiss and require manual closure. When set, a progress indicator\nmay show remaining time. Overrides the provider's default duration.",
|
|
4038
|
+
"value": {
|
|
4039
|
+
"kind": "expression",
|
|
4040
|
+
"type": "number"
|
|
4041
|
+
}
|
|
4042
|
+
},
|
|
4043
|
+
{
|
|
4044
|
+
"name": "closable",
|
|
4045
|
+
"required": true,
|
|
4046
|
+
"description": "When true, displays an X button allowing users to manually dismiss the toast before\nthe duration expires. Essential for toasts with important information users may need\nmore time to read, or when auto-dismiss is disabled.",
|
|
4047
|
+
"value": {
|
|
4048
|
+
"kind": "expression",
|
|
4049
|
+
"type": "boolean"
|
|
4050
|
+
}
|
|
4051
|
+
}
|
|
4052
|
+
],
|
|
4053
|
+
"events": [
|
|
4054
|
+
{
|
|
4055
|
+
"name": "dismiss"
|
|
4056
|
+
}
|
|
4057
|
+
],
|
|
4058
|
+
"source": {
|
|
4059
|
+
"module": "./src/components/Toast/SkToast.vue",
|
|
4060
|
+
"symbol": "default"
|
|
4061
|
+
}
|
|
4062
|
+
},
|
|
4063
|
+
{
|
|
4064
|
+
"name": "SkToastProvider",
|
|
4065
|
+
"description": "",
|
|
4066
|
+
"attributes": [
|
|
4067
|
+
{
|
|
4068
|
+
"name": "position",
|
|
4069
|
+
"required": false,
|
|
4070
|
+
"description": "Preset position for the toast viewport on the screen. Controls where toasts appear\nand stack. Choose a position that doesn't obstruct important UI elements. Common\nchoices are 'bottom-right' for desktop apps and 'top-center' for mobile-first designs.\nWhen omitted, you can position the viewport via custom CSS instead.",
|
|
4071
|
+
"value": {
|
|
4072
|
+
"kind": "expression",
|
|
4073
|
+
"type": "SkToastPosition"
|
|
4074
|
+
},
|
|
4075
|
+
"default": "undefined"
|
|
4076
|
+
},
|
|
4077
|
+
{
|
|
4078
|
+
"name": "duration",
|
|
4079
|
+
"required": false,
|
|
4080
|
+
"description": "Default duration in milliseconds before toasts automatically dismiss. Individual\ntoasts can override this value. Set to 0 to disable auto-dismiss by default,\nrequiring users to manually close each toast. Recommended range: 3000-7000ms.",
|
|
4081
|
+
"value": {
|
|
4082
|
+
"kind": "expression",
|
|
4083
|
+
"type": "number"
|
|
4084
|
+
},
|
|
4085
|
+
"default": "5000"
|
|
4086
|
+
},
|
|
4087
|
+
{
|
|
4088
|
+
"name": "swipeDirection",
|
|
4089
|
+
"required": false,
|
|
4090
|
+
"description": "Direction users can swipe to dismiss toasts on touch devices. The natural direction\noften matches the toast position - 'right' for right-positioned toasts, 'up' for\ntop-positioned, etc. Set to the direction that feels like \"dismissing\" the toast.",
|
|
4091
|
+
"value": {
|
|
4092
|
+
"kind": "expression",
|
|
4093
|
+
"type": "SkToastSwipeDirection"
|
|
4094
|
+
},
|
|
4095
|
+
"default": "'right'"
|
|
4096
|
+
},
|
|
4097
|
+
{
|
|
4098
|
+
"name": "swipeThreshold",
|
|
4099
|
+
"required": false,
|
|
4100
|
+
"description": "Minimum distance in pixels a user must swipe before the toast dismisses. Lower values\nmake dismissal easier but may cause accidental dismissals. Higher values require more\nintentional swipes. Balance based on your target devices and user needs.",
|
|
4101
|
+
"value": {
|
|
4102
|
+
"kind": "expression",
|
|
4103
|
+
"type": "number"
|
|
4104
|
+
},
|
|
4105
|
+
"default": "50"
|
|
4106
|
+
},
|
|
4107
|
+
{
|
|
4108
|
+
"name": "hotkey",
|
|
4109
|
+
"required": false,
|
|
4110
|
+
"description": "Keyboard shortcut(s) to focus the toast region for screen reader users and keyboard\nnavigation. When pressed, focus moves to the toast viewport. Use an array to define\nmultiple shortcuts. Keys use standard keyboard event key names.",
|
|
4111
|
+
"value": {
|
|
4112
|
+
"kind": "expression",
|
|
4113
|
+
"type": "Array"
|
|
4114
|
+
},
|
|
4115
|
+
"default": "() => [ 'F8' ]"
|
|
4116
|
+
}
|
|
4117
|
+
],
|
|
4118
|
+
"slots": [
|
|
4119
|
+
{
|
|
4120
|
+
"name": "default"
|
|
4121
|
+
}
|
|
4122
|
+
],
|
|
4123
|
+
"source": {
|
|
4124
|
+
"module": "./src/components/Toast/SkToastProvider.vue",
|
|
4125
|
+
"symbol": "default"
|
|
4126
|
+
}
|
|
4127
|
+
},
|
|
4128
|
+
{
|
|
4129
|
+
"name": "SkToolbar",
|
|
4130
|
+
"description": "",
|
|
4131
|
+
"attributes": [
|
|
4132
|
+
{
|
|
4133
|
+
"name": "kind",
|
|
4134
|
+
"required": false,
|
|
4135
|
+
"value": {
|
|
4136
|
+
"kind": "expression",
|
|
4137
|
+
"type": "SkToolbarKind"
|
|
4138
|
+
},
|
|
4139
|
+
"default": "'neutral'"
|
|
4140
|
+
},
|
|
4141
|
+
{
|
|
4142
|
+
"name": "orientation",
|
|
4143
|
+
"required": false,
|
|
4144
|
+
"value": {
|
|
4145
|
+
"kind": "expression",
|
|
4146
|
+
"type": "SkToolbarOrientation"
|
|
4147
|
+
},
|
|
4148
|
+
"default": "'horizontal'"
|
|
4149
|
+
},
|
|
4150
|
+
{
|
|
4151
|
+
"name": "corners",
|
|
4152
|
+
"required": false,
|
|
4153
|
+
"value": {
|
|
4154
|
+
"kind": "expression",
|
|
4155
|
+
"type": "Array"
|
|
4156
|
+
},
|
|
4157
|
+
"default": "() => [ 'top-left', 'top-right', 'bottom-right', 'bottom-left' ]"
|
|
4158
|
+
},
|
|
4159
|
+
{
|
|
4160
|
+
"name": "baseColor",
|
|
4161
|
+
"required": false,
|
|
4162
|
+
"value": {
|
|
4163
|
+
"kind": "expression",
|
|
4164
|
+
"type": "string"
|
|
4165
|
+
},
|
|
4166
|
+
"default": "undefined"
|
|
4167
|
+
},
|
|
4168
|
+
{
|
|
4169
|
+
"name": "textColor",
|
|
4170
|
+
"required": false,
|
|
4171
|
+
"value": {
|
|
4172
|
+
"kind": "expression",
|
|
4173
|
+
"type": "string"
|
|
4174
|
+
},
|
|
4175
|
+
"default": "undefined"
|
|
4176
|
+
}
|
|
4177
|
+
],
|
|
4178
|
+
"slots": [
|
|
4179
|
+
{
|
|
4180
|
+
"name": "default"
|
|
4181
|
+
}
|
|
4182
|
+
],
|
|
4183
|
+
"source": {
|
|
4184
|
+
"module": "./src/components/Toolbar/SkToolbar.vue",
|
|
3236
4185
|
"symbol": "default"
|
|
3237
4186
|
}
|
|
3238
4187
|
},
|
|
3239
4188
|
{
|
|
3240
|
-
"name": "
|
|
4189
|
+
"name": "SkToolbarButton",
|
|
3241
4190
|
"description": "",
|
|
3242
4191
|
"attributes": [
|
|
3243
4192
|
{
|
|
3244
|
-
"name": "
|
|
4193
|
+
"name": "disabled",
|
|
3245
4194
|
"required": false,
|
|
3246
|
-
"description": "The active theme name that controls the color scheme for all child components.\nChanging this prop reactively updates the theme across the entire subtree.\nPortal components (dropdowns, modals, tooltips) automatically inherit this\ntheme even though they render outside the DOM hierarchy.",
|
|
3247
4195
|
"value": {
|
|
3248
4196
|
"kind": "expression",
|
|
3249
|
-
"type": "
|
|
4197
|
+
"type": "boolean"
|
|
3250
4198
|
},
|
|
3251
|
-
"default": "
|
|
4199
|
+
"default": "false"
|
|
3252
4200
|
}
|
|
3253
4201
|
],
|
|
3254
4202
|
"slots": [
|
|
@@ -3257,132 +4205,85 @@
|
|
|
3257
4205
|
}
|
|
3258
4206
|
],
|
|
3259
4207
|
"source": {
|
|
3260
|
-
"module": "./src/components/
|
|
4208
|
+
"module": "./src/components/Toolbar/SkToolbarButton.vue",
|
|
3261
4209
|
"symbol": "default"
|
|
3262
4210
|
}
|
|
3263
4211
|
},
|
|
3264
4212
|
{
|
|
3265
|
-
"name": "
|
|
4213
|
+
"name": "SkToolbarSeparator",
|
|
4214
|
+
"description": "",
|
|
4215
|
+
"source": {
|
|
4216
|
+
"module": "./src/components/Toolbar/SkToolbarSeparator.vue",
|
|
4217
|
+
"symbol": "default"
|
|
4218
|
+
}
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
"name": "SkToolbarToggleGroup",
|
|
3266
4222
|
"description": "",
|
|
3267
4223
|
"attributes": [
|
|
3268
4224
|
{
|
|
3269
|
-
"name": "
|
|
3270
|
-
"required": true,
|
|
3271
|
-
"description": "Unique identifier for this toast instance. Used internally for tracking and dismissing\nspecific toasts. Generated automatically by SkToastProvider when using useToast().",
|
|
3272
|
-
"value": {
|
|
3273
|
-
"kind": "expression",
|
|
3274
|
-
"type": "string"
|
|
3275
|
-
}
|
|
3276
|
-
},
|
|
3277
|
-
{
|
|
3278
|
-
"name": "kind",
|
|
3279
|
-
"required": true,
|
|
3280
|
-
"description": "Semantic color kind that determines the toast's visual appearance and icon. Each kind\ndisplays a contextually appropriate icon: info (circle-i), success (checkmark),\nwarning (triangle), danger (x-circle). The kind also sets the background and text colors.",
|
|
3281
|
-
"value": {
|
|
3282
|
-
"kind": "expression",
|
|
3283
|
-
"type": "SkToastKind"
|
|
3284
|
-
}
|
|
3285
|
-
},
|
|
3286
|
-
{
|
|
3287
|
-
"name": "title",
|
|
4225
|
+
"name": "modelValue",
|
|
3288
4226
|
"required": false,
|
|
3289
|
-
"description": "Optional bold title text displayed above the message. Use for brief headings like\n\"Success!\", \"Error\", or \"Warning\". When omitted, only the message is displayed.",
|
|
3290
|
-
"value": {
|
|
3291
|
-
"kind": "expression",
|
|
3292
|
-
"type": "string"
|
|
3293
|
-
}
|
|
3294
|
-
},
|
|
3295
|
-
{
|
|
3296
|
-
"name": "message",
|
|
3297
|
-
"required": true,
|
|
3298
|
-
"description": "The main toast message content. This is the primary text users will read, describing\nwhat happened or what action was taken. Keep messages concise and actionable.",
|
|
3299
4227
|
"value": {
|
|
3300
4228
|
"kind": "expression",
|
|
3301
|
-
"type": "
|
|
3302
|
-
}
|
|
4229
|
+
"type": "union"
|
|
4230
|
+
},
|
|
4231
|
+
"default": "undefined"
|
|
3303
4232
|
},
|
|
3304
4233
|
{
|
|
3305
|
-
"name": "
|
|
4234
|
+
"name": "type",
|
|
3306
4235
|
"required": false,
|
|
3307
|
-
"description": "Time in milliseconds before the toast automatically dismisses. Set to 0 or undefined\nto disable auto-dismiss and require manual closure. When set, a progress indicator\nmay show remaining time. Overrides the provider's default duration.",
|
|
3308
4236
|
"value": {
|
|
3309
4237
|
"kind": "expression",
|
|
3310
|
-
"type": "
|
|
3311
|
-
}
|
|
4238
|
+
"type": "SkToolbarToggleType"
|
|
4239
|
+
},
|
|
4240
|
+
"default": "'single'"
|
|
3312
4241
|
},
|
|
3313
4242
|
{
|
|
3314
|
-
"name": "
|
|
3315
|
-
"required":
|
|
3316
|
-
"description": "When true, displays an X button allowing users to manually dismiss the toast before\nthe duration expires. Essential for toasts with important information users may need\nmore time to read, or when auto-dismiss is disabled.",
|
|
4243
|
+
"name": "disabled",
|
|
4244
|
+
"required": false,
|
|
3317
4245
|
"value": {
|
|
3318
4246
|
"kind": "expression",
|
|
3319
4247
|
"type": "boolean"
|
|
3320
|
-
}
|
|
4248
|
+
},
|
|
4249
|
+
"default": "false"
|
|
3321
4250
|
}
|
|
3322
4251
|
],
|
|
3323
4252
|
"events": [
|
|
3324
4253
|
{
|
|
3325
|
-
"name": "
|
|
4254
|
+
"name": "update:modelValue"
|
|
4255
|
+
}
|
|
4256
|
+
],
|
|
4257
|
+
"slots": [
|
|
4258
|
+
{
|
|
4259
|
+
"name": "default"
|
|
3326
4260
|
}
|
|
3327
4261
|
],
|
|
3328
4262
|
"source": {
|
|
3329
|
-
"module": "./src/components/
|
|
4263
|
+
"module": "./src/components/Toolbar/SkToolbarToggleGroup.vue",
|
|
3330
4264
|
"symbol": "default"
|
|
3331
4265
|
}
|
|
3332
4266
|
},
|
|
3333
4267
|
{
|
|
3334
|
-
"name": "
|
|
4268
|
+
"name": "SkToolbarToggleItem",
|
|
3335
4269
|
"description": "",
|
|
3336
4270
|
"attributes": [
|
|
3337
4271
|
{
|
|
3338
|
-
"name": "
|
|
3339
|
-
"required":
|
|
3340
|
-
"description": "Preset position for the toast viewport on the screen. Controls where toasts appear\nand stack. Choose a position that doesn't obstruct important UI elements. Common\nchoices are 'bottom-right' for desktop apps and 'top-center' for mobile-first designs.\nWhen omitted, you can position the viewport via custom CSS instead.",
|
|
3341
|
-
"value": {
|
|
3342
|
-
"kind": "expression",
|
|
3343
|
-
"type": "SkToastPosition"
|
|
3344
|
-
},
|
|
3345
|
-
"default": "undefined"
|
|
3346
|
-
},
|
|
3347
|
-
{
|
|
3348
|
-
"name": "duration",
|
|
3349
|
-
"required": false,
|
|
3350
|
-
"description": "Default duration in milliseconds before toasts automatically dismiss. Individual\ntoasts can override this value. Set to 0 to disable auto-dismiss by default,\nrequiring users to manually close each toast. Recommended range: 3000-7000ms.",
|
|
3351
|
-
"value": {
|
|
3352
|
-
"kind": "expression",
|
|
3353
|
-
"type": "number"
|
|
3354
|
-
},
|
|
3355
|
-
"default": "5000"
|
|
3356
|
-
},
|
|
3357
|
-
{
|
|
3358
|
-
"name": "swipeDirection",
|
|
3359
|
-
"required": false,
|
|
3360
|
-
"description": "Direction users can swipe to dismiss toasts on touch devices. The natural direction\noften matches the toast position - 'right' for right-positioned toasts, 'up' for\ntop-positioned, etc. Set to the direction that feels like \"dismissing\" the toast.",
|
|
3361
|
-
"value": {
|
|
3362
|
-
"kind": "expression",
|
|
3363
|
-
"type": "SkToastSwipeDirection"
|
|
3364
|
-
},
|
|
3365
|
-
"default": "'right'"
|
|
3366
|
-
},
|
|
3367
|
-
{
|
|
3368
|
-
"name": "swipeThreshold",
|
|
3369
|
-
"required": false,
|
|
3370
|
-
"description": "Minimum distance in pixels a user must swipe before the toast dismisses. Lower values\nmake dismissal easier but may cause accidental dismissals. Higher values require more\nintentional swipes. Balance based on your target devices and user needs.",
|
|
4272
|
+
"name": "value",
|
|
4273
|
+
"required": true,
|
|
3371
4274
|
"value": {
|
|
3372
4275
|
"kind": "expression",
|
|
3373
|
-
"type": "
|
|
3374
|
-
}
|
|
3375
|
-
"default": "50"
|
|
4276
|
+
"type": "string"
|
|
4277
|
+
}
|
|
3376
4278
|
},
|
|
3377
4279
|
{
|
|
3378
|
-
"name": "
|
|
4280
|
+
"name": "disabled",
|
|
3379
4281
|
"required": false,
|
|
3380
|
-
"description": "Keyboard shortcut(s) to focus the toast region for screen reader users and keyboard\nnavigation. When pressed, focus moves to the toast viewport. Use an array to define\nmultiple shortcuts. Keys use standard keyboard event key names.",
|
|
3381
4282
|
"value": {
|
|
3382
4283
|
"kind": "expression",
|
|
3383
|
-
"type": "
|
|
4284
|
+
"type": "boolean"
|
|
3384
4285
|
},
|
|
3385
|
-
"default": "
|
|
4286
|
+
"default": "false"
|
|
3386
4287
|
}
|
|
3387
4288
|
],
|
|
3388
4289
|
"slots": [
|
|
@@ -3391,7 +4292,7 @@
|
|
|
3391
4292
|
}
|
|
3392
4293
|
],
|
|
3393
4294
|
"source": {
|
|
3394
|
-
"module": "./src/components/
|
|
4295
|
+
"module": "./src/components/Toolbar/SkToolbarToggleItem.vue",
|
|
3395
4296
|
"symbol": "default"
|
|
3396
4297
|
}
|
|
3397
4298
|
},
|
|
@@ -3557,6 +4458,152 @@
|
|
|
3557
4458
|
"module": "./src/components/Tooltip/SkTooltipProvider.vue",
|
|
3558
4459
|
"symbol": "default"
|
|
3559
4460
|
}
|
|
4461
|
+
},
|
|
4462
|
+
{
|
|
4463
|
+
"name": "SkTreeItem",
|
|
4464
|
+
"description": "",
|
|
4465
|
+
"attributes": [
|
|
4466
|
+
{
|
|
4467
|
+
"name": "item",
|
|
4468
|
+
"required": true,
|
|
4469
|
+
"value": {
|
|
4470
|
+
"kind": "expression",
|
|
4471
|
+
"type": "FlattenedItem"
|
|
4472
|
+
}
|
|
4473
|
+
},
|
|
4474
|
+
{
|
|
4475
|
+
"name": "disabled",
|
|
4476
|
+
"required": false,
|
|
4477
|
+
"value": {
|
|
4478
|
+
"kind": "expression",
|
|
4479
|
+
"type": "boolean"
|
|
4480
|
+
},
|
|
4481
|
+
"default": "false"
|
|
4482
|
+
},
|
|
4483
|
+
{
|
|
4484
|
+
"name": "showChevron",
|
|
4485
|
+
"required": false,
|
|
4486
|
+
"value": {
|
|
4487
|
+
"kind": "expression",
|
|
4488
|
+
"type": "boolean"
|
|
4489
|
+
},
|
|
4490
|
+
"default": "true"
|
|
4491
|
+
}
|
|
4492
|
+
],
|
|
4493
|
+
"slots": [
|
|
4494
|
+
{
|
|
4495
|
+
"name": "leading"
|
|
4496
|
+
},
|
|
4497
|
+
{
|
|
4498
|
+
"name": "default"
|
|
4499
|
+
},
|
|
4500
|
+
{
|
|
4501
|
+
"name": "trailing"
|
|
4502
|
+
}
|
|
4503
|
+
],
|
|
4504
|
+
"source": {
|
|
4505
|
+
"module": "./src/components/TreeView/SkTreeItem.vue",
|
|
4506
|
+
"symbol": "default"
|
|
4507
|
+
}
|
|
4508
|
+
},
|
|
4509
|
+
{
|
|
4510
|
+
"name": "SkTreeView",
|
|
4511
|
+
"description": "",
|
|
4512
|
+
"attributes": [
|
|
4513
|
+
{
|
|
4514
|
+
"name": "items",
|
|
4515
|
+
"required": true,
|
|
4516
|
+
"value": {
|
|
4517
|
+
"kind": "expression",
|
|
4518
|
+
"type": "Array"
|
|
4519
|
+
}
|
|
4520
|
+
},
|
|
4521
|
+
{
|
|
4522
|
+
"name": "getKey",
|
|
4523
|
+
"required": true,
|
|
4524
|
+
"value": {
|
|
4525
|
+
"kind": "expression",
|
|
4526
|
+
"type": "TSFunctionType"
|
|
4527
|
+
}
|
|
4528
|
+
},
|
|
4529
|
+
{
|
|
4530
|
+
"name": "modelValue",
|
|
4531
|
+
"required": false,
|
|
4532
|
+
"value": {
|
|
4533
|
+
"kind": "expression",
|
|
4534
|
+
"type": "union"
|
|
4535
|
+
},
|
|
4536
|
+
"default": "undefined"
|
|
4537
|
+
},
|
|
4538
|
+
{
|
|
4539
|
+
"name": "multiple",
|
|
4540
|
+
"required": false,
|
|
4541
|
+
"value": {
|
|
4542
|
+
"kind": "expression",
|
|
4543
|
+
"type": "boolean"
|
|
4544
|
+
},
|
|
4545
|
+
"default": "false"
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
"name": "propagateSelect",
|
|
4549
|
+
"required": false,
|
|
4550
|
+
"value": {
|
|
4551
|
+
"kind": "expression",
|
|
4552
|
+
"type": "boolean"
|
|
4553
|
+
},
|
|
4554
|
+
"default": "false"
|
|
4555
|
+
},
|
|
4556
|
+
{
|
|
4557
|
+
"name": "kind",
|
|
4558
|
+
"required": false,
|
|
4559
|
+
"value": {
|
|
4560
|
+
"kind": "expression",
|
|
4561
|
+
"type": "SkTreeViewKind"
|
|
4562
|
+
},
|
|
4563
|
+
"default": "'neutral'"
|
|
4564
|
+
},
|
|
4565
|
+
{
|
|
4566
|
+
"name": "defaultExpanded",
|
|
4567
|
+
"required": false,
|
|
4568
|
+
"value": {
|
|
4569
|
+
"kind": "expression",
|
|
4570
|
+
"type": "SkTreeViewDefaultExpanded"
|
|
4571
|
+
},
|
|
4572
|
+
"default": "'none'"
|
|
4573
|
+
},
|
|
4574
|
+
{
|
|
4575
|
+
"name": "baseColor",
|
|
4576
|
+
"required": false,
|
|
4577
|
+
"value": {
|
|
4578
|
+
"kind": "expression",
|
|
4579
|
+
"type": "string"
|
|
4580
|
+
},
|
|
4581
|
+
"default": "undefined"
|
|
4582
|
+
},
|
|
4583
|
+
{
|
|
4584
|
+
"name": "textColor",
|
|
4585
|
+
"required": false,
|
|
4586
|
+
"value": {
|
|
4587
|
+
"kind": "expression",
|
|
4588
|
+
"type": "string"
|
|
4589
|
+
},
|
|
4590
|
+
"default": "undefined"
|
|
4591
|
+
}
|
|
4592
|
+
],
|
|
4593
|
+
"events": [
|
|
4594
|
+
{
|
|
4595
|
+
"name": "update:modelValue"
|
|
4596
|
+
}
|
|
4597
|
+
],
|
|
4598
|
+
"slots": [
|
|
4599
|
+
{
|
|
4600
|
+
"name": "default"
|
|
4601
|
+
}
|
|
4602
|
+
],
|
|
4603
|
+
"source": {
|
|
4604
|
+
"module": "./src/components/TreeView/SkTreeView.vue",
|
|
4605
|
+
"symbol": "default"
|
|
4606
|
+
}
|
|
3560
4607
|
}
|
|
3561
4608
|
]
|
|
3562
4609
|
}
|