@skewedaspect/sleekspace-ui 0.6.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/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/Sidebar/SkSidebar.vue.d.ts +1 -1
- package/dist/components/Skeleton/SkSkeleton.vue.d.ts +1 -1
- 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 +54 -0
- package/dist/sleekspace-ui.css +1215 -46
- package/dist/sleekspace-ui.es.js +16874 -7224
- package/dist/sleekspace-ui.umd.js +16855 -7205
- package/package.json +2 -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/ScrollArea/SkScrollArea.vue +87 -0
- package/src/components/ScrollArea/index.ts +8 -0
- package/src/components/ScrollArea/types.ts +11 -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 +20 -0
- package/src/index.ts +100 -0
- package/src/styles/components/_color-picker.scss +552 -0
- package/src/styles/components/_index.scss +5 -0
- package/src/styles/components/_menu.scss +52 -3
- package/src/styles/components/_scroll-area.scss +120 -0
- package/src/styles/components/_slider.scss +4 -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 +1022 -122
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.1",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -779,6 +779,287 @@
|
|
|
779
779
|
"symbol": "default"
|
|
780
780
|
}
|
|
781
781
|
},
|
|
782
|
+
{
|
|
783
|
+
"name": "SkColorPicker",
|
|
784
|
+
"description": "",
|
|
785
|
+
"attributes": [
|
|
786
|
+
{
|
|
787
|
+
"name": "kind",
|
|
788
|
+
"required": false,
|
|
789
|
+
"value": {
|
|
790
|
+
"kind": "expression",
|
|
791
|
+
"type": "SkColorPickerKind"
|
|
792
|
+
},
|
|
793
|
+
"default": "undefined"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"name": "size",
|
|
797
|
+
"required": false,
|
|
798
|
+
"value": {
|
|
799
|
+
"kind": "expression",
|
|
800
|
+
"type": "SkColorPickerSize"
|
|
801
|
+
},
|
|
802
|
+
"default": "'md'"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"name": "format",
|
|
806
|
+
"required": false,
|
|
807
|
+
"value": {
|
|
808
|
+
"kind": "expression",
|
|
809
|
+
"type": "SkColorPickerFormat"
|
|
810
|
+
},
|
|
811
|
+
"default": "'hexa'"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"name": "showAlpha",
|
|
815
|
+
"required": false,
|
|
816
|
+
"value": {
|
|
817
|
+
"kind": "expression",
|
|
818
|
+
"type": "boolean"
|
|
819
|
+
},
|
|
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'"
|
|
848
|
+
}
|
|
849
|
+
],
|
|
850
|
+
"source": {
|
|
851
|
+
"module": "./src/components/ColorPicker/SkColorPicker.vue",
|
|
852
|
+
"symbol": "default"
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"name": "SkContextMenu",
|
|
857
|
+
"description": "",
|
|
858
|
+
"attributes": [
|
|
859
|
+
{
|
|
860
|
+
"name": "kind",
|
|
861
|
+
"required": false,
|
|
862
|
+
"value": {
|
|
863
|
+
"kind": "expression",
|
|
864
|
+
"type": "SkContextMenuKind"
|
|
865
|
+
},
|
|
866
|
+
"default": "'neutral'"
|
|
867
|
+
}
|
|
868
|
+
],
|
|
869
|
+
"slots": [
|
|
870
|
+
{
|
|
871
|
+
"name": "trigger"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
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",
|
|
888
|
+
"required": false,
|
|
889
|
+
"value": {
|
|
890
|
+
"kind": "expression",
|
|
891
|
+
"type": "boolean"
|
|
892
|
+
},
|
|
893
|
+
"default": "false"
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
"name": "disabled",
|
|
897
|
+
"required": false,
|
|
898
|
+
"value": {
|
|
899
|
+
"kind": "expression",
|
|
900
|
+
"type": "boolean"
|
|
901
|
+
},
|
|
902
|
+
"default": "false"
|
|
903
|
+
}
|
|
904
|
+
],
|
|
905
|
+
"events": [
|
|
906
|
+
{
|
|
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",
|
|
926
|
+
"required": false,
|
|
927
|
+
"value": {
|
|
928
|
+
"kind": "expression",
|
|
929
|
+
"type": "boolean"
|
|
930
|
+
},
|
|
931
|
+
"default": "false"
|
|
932
|
+
}
|
|
933
|
+
],
|
|
934
|
+
"events": [
|
|
935
|
+
{
|
|
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",
|
|
968
|
+
"required": false,
|
|
969
|
+
"value": {
|
|
970
|
+
"kind": "expression",
|
|
971
|
+
"type": "string"
|
|
972
|
+
},
|
|
973
|
+
"default": "''"
|
|
974
|
+
}
|
|
975
|
+
],
|
|
976
|
+
"events": [
|
|
977
|
+
{
|
|
978
|
+
"name": "update:modelValue"
|
|
979
|
+
}
|
|
980
|
+
],
|
|
981
|
+
"slots": [
|
|
982
|
+
{
|
|
983
|
+
"name": "default"
|
|
984
|
+
}
|
|
985
|
+
],
|
|
986
|
+
"source": {
|
|
987
|
+
"module": "./src/components/ContextMenu/SkContextMenuRadioGroup.vue",
|
|
988
|
+
"symbol": "default"
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"name": "SkContextMenuRadioItem",
|
|
993
|
+
"description": "",
|
|
994
|
+
"attributes": [
|
|
995
|
+
{
|
|
996
|
+
"name": "value",
|
|
997
|
+
"required": true,
|
|
998
|
+
"value": {
|
|
999
|
+
"kind": "expression",
|
|
1000
|
+
"type": "string"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"name": "disabled",
|
|
1005
|
+
"required": false,
|
|
1006
|
+
"value": {
|
|
1007
|
+
"kind": "expression",
|
|
1008
|
+
"type": "boolean"
|
|
1009
|
+
},
|
|
1010
|
+
"default": "false"
|
|
1011
|
+
}
|
|
1012
|
+
],
|
|
1013
|
+
"slots": [
|
|
1014
|
+
{
|
|
1015
|
+
"name": "default"
|
|
1016
|
+
}
|
|
1017
|
+
],
|
|
1018
|
+
"source": {
|
|
1019
|
+
"module": "./src/components/ContextMenu/SkContextMenuRadioItem.vue",
|
|
1020
|
+
"symbol": "default"
|
|
1021
|
+
}
|
|
1022
|
+
},
|
|
1023
|
+
{
|
|
1024
|
+
"name": "SkContextMenuSeparator",
|
|
1025
|
+
"description": "",
|
|
1026
|
+
"source": {
|
|
1027
|
+
"module": "./src/components/ContextMenu/SkContextMenuSeparator.vue",
|
|
1028
|
+
"symbol": "default"
|
|
1029
|
+
}
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"name": "SkContextMenuSubmenu",
|
|
1033
|
+
"description": "",
|
|
1034
|
+
"attributes": [
|
|
1035
|
+
{
|
|
1036
|
+
"name": "triggerText",
|
|
1037
|
+
"required": true,
|
|
1038
|
+
"value": {
|
|
1039
|
+
"kind": "expression",
|
|
1040
|
+
"type": "string"
|
|
1041
|
+
}
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"name": "kind",
|
|
1045
|
+
"required": false,
|
|
1046
|
+
"value": {
|
|
1047
|
+
"kind": "expression",
|
|
1048
|
+
"type": "SkContextMenuKind"
|
|
1049
|
+
},
|
|
1050
|
+
"default": "undefined"
|
|
1051
|
+
}
|
|
1052
|
+
],
|
|
1053
|
+
"slots": [
|
|
1054
|
+
{
|
|
1055
|
+
"name": "default"
|
|
1056
|
+
}
|
|
1057
|
+
],
|
|
1058
|
+
"source": {
|
|
1059
|
+
"module": "./src/components/ContextMenu/SkContextMenuSubmenu.vue",
|
|
1060
|
+
"symbol": "default"
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
782
1063
|
{
|
|
783
1064
|
"name": "SkDivider",
|
|
784
1065
|
"description": "",
|
|
@@ -864,36 +1145,74 @@
|
|
|
864
1145
|
"default": "'bottom'"
|
|
865
1146
|
},
|
|
866
1147
|
{
|
|
867
|
-
"name": "align",
|
|
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",
|
|
868
1187
|
"required": false,
|
|
869
|
-
"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.",
|
|
870
1188
|
"value": {
|
|
871
1189
|
"kind": "expression",
|
|
872
|
-
"type": "
|
|
1190
|
+
"type": "boolean"
|
|
873
1191
|
},
|
|
874
|
-
"default": "
|
|
1192
|
+
"default": "false"
|
|
875
1193
|
},
|
|
876
1194
|
{
|
|
877
|
-
"name": "
|
|
1195
|
+
"name": "disabled",
|
|
878
1196
|
"required": false,
|
|
879
|
-
"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.",
|
|
880
1197
|
"value": {
|
|
881
1198
|
"kind": "expression",
|
|
882
|
-
"type": "
|
|
1199
|
+
"type": "boolean"
|
|
883
1200
|
},
|
|
884
|
-
"default": "
|
|
1201
|
+
"default": "false"
|
|
885
1202
|
}
|
|
886
1203
|
],
|
|
887
|
-
"
|
|
1204
|
+
"events": [
|
|
888
1205
|
{
|
|
889
|
-
"name": "
|
|
890
|
-
}
|
|
1206
|
+
"name": "update:modelValue"
|
|
1207
|
+
}
|
|
1208
|
+
],
|
|
1209
|
+
"slots": [
|
|
891
1210
|
{
|
|
892
1211
|
"name": "default"
|
|
893
1212
|
}
|
|
894
1213
|
],
|
|
895
1214
|
"source": {
|
|
896
|
-
"module": "./src/components/Dropdown/
|
|
1215
|
+
"module": "./src/components/Dropdown/SkDropdownCheckboxItem.vue",
|
|
897
1216
|
"symbol": "default"
|
|
898
1217
|
}
|
|
899
1218
|
},
|
|
@@ -927,6 +1246,19 @@
|
|
|
927
1246
|
"symbol": "default"
|
|
928
1247
|
}
|
|
929
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
|
+
},
|
|
930
1262
|
{
|
|
931
1263
|
"name": "SkDropdownMenuSeparator",
|
|
932
1264
|
"description": "",
|
|
@@ -935,6 +1267,67 @@
|
|
|
935
1267
|
"symbol": "default"
|
|
936
1268
|
}
|
|
937
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
|
+
},
|
|
938
1331
|
{
|
|
939
1332
|
"name": "SkDropdownSubmenu",
|
|
940
1333
|
"description": "",
|
|
@@ -2240,6 +2633,66 @@
|
|
|
2240
2633
|
"symbol": "default"
|
|
2241
2634
|
}
|
|
2242
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
|
+
},
|
|
2243
2696
|
{
|
|
2244
2697
|
"name": "SkSelect",
|
|
2245
2698
|
"description": "",
|
|
@@ -2641,57 +3094,187 @@
|
|
|
2641
3094
|
}
|
|
2642
3095
|
],
|
|
2643
3096
|
"source": {
|
|
2644
|
-
"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",
|
|
2645
3218
|
"symbol": "default"
|
|
2646
3219
|
}
|
|
2647
3220
|
},
|
|
2648
3221
|
{
|
|
2649
|
-
"name": "
|
|
3222
|
+
"name": "SkSplitterPanel",
|
|
2650
3223
|
"description": "",
|
|
2651
3224
|
"attributes": [
|
|
2652
3225
|
{
|
|
2653
|
-
"name": "
|
|
3226
|
+
"name": "defaultSize",
|
|
2654
3227
|
"required": false,
|
|
2655
|
-
"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).",
|
|
2656
3228
|
"value": {
|
|
2657
3229
|
"kind": "expression",
|
|
2658
|
-
"type": "
|
|
3230
|
+
"type": "number"
|
|
2659
3231
|
},
|
|
2660
|
-
"default": "
|
|
3232
|
+
"default": "undefined"
|
|
2661
3233
|
},
|
|
2662
3234
|
{
|
|
2663
|
-
"name": "
|
|
3235
|
+
"name": "minSize",
|
|
2664
3236
|
"required": false,
|
|
2665
|
-
"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.",
|
|
2666
3237
|
"value": {
|
|
2667
3238
|
"kind": "expression",
|
|
2668
|
-
"type": "
|
|
3239
|
+
"type": "number"
|
|
2669
3240
|
},
|
|
2670
|
-
"default": "
|
|
3241
|
+
"default": "undefined"
|
|
2671
3242
|
},
|
|
2672
3243
|
{
|
|
2673
|
-
"name": "
|
|
3244
|
+
"name": "maxSize",
|
|
2674
3245
|
"required": false,
|
|
2675
|
-
"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)",
|
|
2676
3246
|
"value": {
|
|
2677
3247
|
"kind": "expression",
|
|
2678
|
-
"type": "
|
|
3248
|
+
"type": "number"
|
|
2679
3249
|
},
|
|
2680
|
-
"default": "
|
|
3250
|
+
"default": "undefined"
|
|
2681
3251
|
},
|
|
2682
3252
|
{
|
|
2683
|
-
"name": "
|
|
3253
|
+
"name": "collapsible",
|
|
2684
3254
|
"required": false,
|
|
2685
|
-
"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.",
|
|
2686
3255
|
"value": {
|
|
2687
3256
|
"kind": "expression",
|
|
2688
|
-
"type": "
|
|
3257
|
+
"type": "boolean"
|
|
3258
|
+
},
|
|
3259
|
+
"default": "false"
|
|
3260
|
+
},
|
|
3261
|
+
{
|
|
3262
|
+
"name": "collapsedSize",
|
|
3263
|
+
"required": false,
|
|
3264
|
+
"value": {
|
|
3265
|
+
"kind": "expression",
|
|
3266
|
+
"type": "number"
|
|
2689
3267
|
},
|
|
2690
3268
|
"default": "undefined"
|
|
2691
3269
|
}
|
|
2692
3270
|
],
|
|
3271
|
+
"slots": [
|
|
3272
|
+
{
|
|
3273
|
+
"name": "default"
|
|
3274
|
+
}
|
|
3275
|
+
],
|
|
2693
3276
|
"source": {
|
|
2694
|
-
"module": "./src/components/
|
|
3277
|
+
"module": "./src/components/Splitter/SkSplitterPanel.vue",
|
|
2695
3278
|
"symbol": "default"
|
|
2696
3279
|
}
|
|
2697
3280
|
},
|
|
@@ -3379,23 +3962,241 @@
|
|
|
3379
3962
|
}
|
|
3380
3963
|
],
|
|
3381
3964
|
"source": {
|
|
3382
|
-
"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",
|
|
3383
4185
|
"symbol": "default"
|
|
3384
4186
|
}
|
|
3385
4187
|
},
|
|
3386
4188
|
{
|
|
3387
|
-
"name": "
|
|
4189
|
+
"name": "SkToolbarButton",
|
|
3388
4190
|
"description": "",
|
|
3389
4191
|
"attributes": [
|
|
3390
4192
|
{
|
|
3391
|
-
"name": "
|
|
4193
|
+
"name": "disabled",
|
|
3392
4194
|
"required": false,
|
|
3393
|
-
"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.",
|
|
3394
4195
|
"value": {
|
|
3395
4196
|
"kind": "expression",
|
|
3396
|
-
"type": "
|
|
4197
|
+
"type": "boolean"
|
|
3397
4198
|
},
|
|
3398
|
-
"default": "
|
|
4199
|
+
"default": "false"
|
|
3399
4200
|
}
|
|
3400
4201
|
],
|
|
3401
4202
|
"slots": [
|
|
@@ -3404,132 +4205,85 @@
|
|
|
3404
4205
|
}
|
|
3405
4206
|
],
|
|
3406
4207
|
"source": {
|
|
3407
|
-
"module": "./src/components/
|
|
4208
|
+
"module": "./src/components/Toolbar/SkToolbarButton.vue",
|
|
3408
4209
|
"symbol": "default"
|
|
3409
4210
|
}
|
|
3410
4211
|
},
|
|
3411
4212
|
{
|
|
3412
|
-
"name": "
|
|
4213
|
+
"name": "SkToolbarSeparator",
|
|
4214
|
+
"description": "",
|
|
4215
|
+
"source": {
|
|
4216
|
+
"module": "./src/components/Toolbar/SkToolbarSeparator.vue",
|
|
4217
|
+
"symbol": "default"
|
|
4218
|
+
}
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
"name": "SkToolbarToggleGroup",
|
|
3413
4222
|
"description": "",
|
|
3414
4223
|
"attributes": [
|
|
3415
4224
|
{
|
|
3416
|
-
"name": "
|
|
3417
|
-
"required": true,
|
|
3418
|
-
"description": "Unique identifier for this toast instance. Used internally for tracking and dismissing\nspecific toasts. Generated automatically by SkToastProvider when using useToast().",
|
|
3419
|
-
"value": {
|
|
3420
|
-
"kind": "expression",
|
|
3421
|
-
"type": "string"
|
|
3422
|
-
}
|
|
3423
|
-
},
|
|
3424
|
-
{
|
|
3425
|
-
"name": "kind",
|
|
3426
|
-
"required": true,
|
|
3427
|
-
"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.",
|
|
3428
|
-
"value": {
|
|
3429
|
-
"kind": "expression",
|
|
3430
|
-
"type": "SkToastKind"
|
|
3431
|
-
}
|
|
3432
|
-
},
|
|
3433
|
-
{
|
|
3434
|
-
"name": "title",
|
|
4225
|
+
"name": "modelValue",
|
|
3435
4226
|
"required": false,
|
|
3436
|
-
"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.",
|
|
3437
|
-
"value": {
|
|
3438
|
-
"kind": "expression",
|
|
3439
|
-
"type": "string"
|
|
3440
|
-
}
|
|
3441
|
-
},
|
|
3442
|
-
{
|
|
3443
|
-
"name": "message",
|
|
3444
|
-
"required": true,
|
|
3445
|
-
"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.",
|
|
3446
4227
|
"value": {
|
|
3447
4228
|
"kind": "expression",
|
|
3448
|
-
"type": "
|
|
3449
|
-
}
|
|
4229
|
+
"type": "union"
|
|
4230
|
+
},
|
|
4231
|
+
"default": "undefined"
|
|
3450
4232
|
},
|
|
3451
4233
|
{
|
|
3452
|
-
"name": "
|
|
4234
|
+
"name": "type",
|
|
3453
4235
|
"required": false,
|
|
3454
|
-
"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.",
|
|
3455
4236
|
"value": {
|
|
3456
4237
|
"kind": "expression",
|
|
3457
|
-
"type": "
|
|
3458
|
-
}
|
|
4238
|
+
"type": "SkToolbarToggleType"
|
|
4239
|
+
},
|
|
4240
|
+
"default": "'single'"
|
|
3459
4241
|
},
|
|
3460
4242
|
{
|
|
3461
|
-
"name": "
|
|
3462
|
-
"required":
|
|
3463
|
-
"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,
|
|
3464
4245
|
"value": {
|
|
3465
4246
|
"kind": "expression",
|
|
3466
4247
|
"type": "boolean"
|
|
3467
|
-
}
|
|
4248
|
+
},
|
|
4249
|
+
"default": "false"
|
|
3468
4250
|
}
|
|
3469
4251
|
],
|
|
3470
4252
|
"events": [
|
|
3471
4253
|
{
|
|
3472
|
-
"name": "
|
|
4254
|
+
"name": "update:modelValue"
|
|
4255
|
+
}
|
|
4256
|
+
],
|
|
4257
|
+
"slots": [
|
|
4258
|
+
{
|
|
4259
|
+
"name": "default"
|
|
3473
4260
|
}
|
|
3474
4261
|
],
|
|
3475
4262
|
"source": {
|
|
3476
|
-
"module": "./src/components/
|
|
4263
|
+
"module": "./src/components/Toolbar/SkToolbarToggleGroup.vue",
|
|
3477
4264
|
"symbol": "default"
|
|
3478
4265
|
}
|
|
3479
4266
|
},
|
|
3480
4267
|
{
|
|
3481
|
-
"name": "
|
|
4268
|
+
"name": "SkToolbarToggleItem",
|
|
3482
4269
|
"description": "",
|
|
3483
4270
|
"attributes": [
|
|
3484
4271
|
{
|
|
3485
|
-
"name": "
|
|
3486
|
-
"required":
|
|
3487
|
-
"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.",
|
|
3488
|
-
"value": {
|
|
3489
|
-
"kind": "expression",
|
|
3490
|
-
"type": "SkToastPosition"
|
|
3491
|
-
},
|
|
3492
|
-
"default": "undefined"
|
|
3493
|
-
},
|
|
3494
|
-
{
|
|
3495
|
-
"name": "duration",
|
|
3496
|
-
"required": false,
|
|
3497
|
-
"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.",
|
|
3498
|
-
"value": {
|
|
3499
|
-
"kind": "expression",
|
|
3500
|
-
"type": "number"
|
|
3501
|
-
},
|
|
3502
|
-
"default": "5000"
|
|
3503
|
-
},
|
|
3504
|
-
{
|
|
3505
|
-
"name": "swipeDirection",
|
|
3506
|
-
"required": false,
|
|
3507
|
-
"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.",
|
|
3508
|
-
"value": {
|
|
3509
|
-
"kind": "expression",
|
|
3510
|
-
"type": "SkToastSwipeDirection"
|
|
3511
|
-
},
|
|
3512
|
-
"default": "'right'"
|
|
3513
|
-
},
|
|
3514
|
-
{
|
|
3515
|
-
"name": "swipeThreshold",
|
|
3516
|
-
"required": false,
|
|
3517
|
-
"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,
|
|
3518
4274
|
"value": {
|
|
3519
4275
|
"kind": "expression",
|
|
3520
|
-
"type": "
|
|
3521
|
-
}
|
|
3522
|
-
"default": "50"
|
|
4276
|
+
"type": "string"
|
|
4277
|
+
}
|
|
3523
4278
|
},
|
|
3524
4279
|
{
|
|
3525
|
-
"name": "
|
|
4280
|
+
"name": "disabled",
|
|
3526
4281
|
"required": false,
|
|
3527
|
-
"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.",
|
|
3528
4282
|
"value": {
|
|
3529
4283
|
"kind": "expression",
|
|
3530
|
-
"type": "
|
|
4284
|
+
"type": "boolean"
|
|
3531
4285
|
},
|
|
3532
|
-
"default": "
|
|
4286
|
+
"default": "false"
|
|
3533
4287
|
}
|
|
3534
4288
|
],
|
|
3535
4289
|
"slots": [
|
|
@@ -3538,7 +4292,7 @@
|
|
|
3538
4292
|
}
|
|
3539
4293
|
],
|
|
3540
4294
|
"source": {
|
|
3541
|
-
"module": "./src/components/
|
|
4295
|
+
"module": "./src/components/Toolbar/SkToolbarToggleItem.vue",
|
|
3542
4296
|
"symbol": "default"
|
|
3543
4297
|
}
|
|
3544
4298
|
},
|
|
@@ -3704,6 +4458,152 @@
|
|
|
3704
4458
|
"module": "./src/components/Tooltip/SkTooltipProvider.vue",
|
|
3705
4459
|
"symbol": "default"
|
|
3706
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
|
+
}
|
|
3707
4607
|
}
|
|
3708
4608
|
]
|
|
3709
4609
|
}
|