|
1 | 1 | { |
2 | | - "total": 166, |
| 2 | + "total": 167, |
3 | 3 | "components": [ |
4 | 4 | { |
5 | 5 | "moduleName": "Accordion", |
|
805 | 805 | { |
806 | 806 | "name": "code", |
807 | 807 | "kind": "let", |
808 | | - "description": "Set the code snippet text\nAlternatively, use the default slot (e.g., <CodeSnippet>{`code`}</CodeSnippet>)", |
| 808 | + "description": "Set the code snippet text\nAlternatively, use the default slot (e.g., <CodeSnippet>{`code`}</CodeSnippet>)\nYou must use the `code` prop to copy the code", |
809 | 809 | "type": "string", |
810 | 810 | "isFunction": false, |
811 | 811 | "constant": false, |
|
989 | 989 | "name": "mouseleave", |
990 | 990 | "element": "CodeSnippetSkeleton" |
991 | 991 | }, |
992 | | - { "type": "forwarded", "name": "animationend", "element": "CopyButton" } |
| 992 | + { |
| 993 | + "type": "forwarded", |
| 994 | + "name": "animationend", |
| 995 | + "element": "CopyButton" |
| 996 | + }, |
| 997 | + { "type": "dispatched", "name": "copy" } |
993 | 998 | ], |
994 | 999 | "typedefs": [], |
995 | 1000 | "rest_props": { "type": "InlineComponent", "name": "CodeSnippetSkeleton" } |
|
1651 | 1656 | "moduleName": "ContextMenuOption", |
1652 | 1657 | "filePath": "src/ContextMenu/ContextMenuOption.svelte", |
1653 | 1658 | "props": [ |
| 1659 | + { |
| 1660 | + "name": "kind", |
| 1661 | + "kind": "let", |
| 1662 | + "description": "Specify the kind of option", |
| 1663 | + "type": "\"default\" | \"danger\"", |
| 1664 | + "value": "\"default\"", |
| 1665 | + "isFunction": false, |
| 1666 | + "constant": false, |
| 1667 | + "reactive": false |
| 1668 | + }, |
1654 | 1669 | { |
1655 | 1670 | "name": "disabled", |
1656 | 1671 | "kind": "let", |
|
1857 | 1872 | "isFunction": false, |
1858 | 1873 | "constant": false, |
1859 | 1874 | "reactive": false |
| 1875 | + }, |
| 1876 | + { |
| 1877 | + "name": "text", |
| 1878 | + "kind": "let", |
| 1879 | + "description": "Specify the text to copy", |
| 1880 | + "type": "string", |
| 1881 | + "isFunction": false, |
| 1882 | + "constant": false, |
| 1883 | + "reactive": false |
1860 | 1884 | } |
1861 | 1885 | ], |
1862 | 1886 | "slots": [], |
1863 | 1887 | "events": [ |
1864 | 1888 | { "type": "forwarded", "name": "click", "element": "Copy" }, |
1865 | | - { "type": "forwarded", "name": "animationend", "element": "Copy" } |
| 1889 | + { "type": "forwarded", "name": "animationend", "element": "Copy" }, |
| 1890 | + { "type": "dispatched", "name": "copy" } |
1866 | 1891 | ], |
1867 | 1892 | "typedefs": [], |
1868 | 1893 | "rest_props": { "type": "InlineComponent", "name": "Copy" }, |
|
2056 | 2081 | { |
2057 | 2082 | "type": "dispatched", |
2058 | 2083 | "name": "click:header", |
2059 | | - "detail": "{ header: DataTableHeader; sortDirection: \"ascending\" | \"descending\" | \"none\" }" |
| 2084 | + "detail": "{ header: DataTableHeader; sortDirection?: \"ascending\" | \"descending\" | \"none\" }" |
2060 | 2085 | }, |
2061 | 2086 | { "type": "dispatched", "name": "click:row", "detail": "DataTableRow" }, |
2062 | 2087 | { |
|
2092 | 2117 | "ts": "type DataTableValue = any" |
2093 | 2118 | }, |
2094 | 2119 | { |
2095 | | - "type": "{ key: DataTableKey; empty: boolean; display?: (item: Value) => DataTableValue; sort?: (a: DataTableValue, b: DataTableValue) => (0 | -1 | 1); columnMenu?: boolean; }", |
| 2120 | + "type": "{ key: DataTableKey; empty: boolean; display?: (item: Value) => DataTableValue; sort?: false | ((a: DataTableValue, b: DataTableValue) => (0 | -1 | 1)); columnMenu?: boolean; }", |
2096 | 2121 | "name": "DataTableEmptyHeader", |
2097 | | - "ts": "interface DataTableEmptyHeader { key: DataTableKey; empty: boolean; display?: (item: Value) => DataTableValue; sort?: (a: DataTableValue, b: DataTableValue) => (0 | -1 | 1); columnMenu?: boolean; }" |
| 2122 | + "ts": "interface DataTableEmptyHeader { key: DataTableKey; empty: boolean; display?: (item: Value) => DataTableValue; sort?: false | ((a: DataTableValue, b: DataTableValue) => (0 | -1 | 1)); columnMenu?: boolean; }" |
2098 | 2123 | }, |
2099 | 2124 | { |
2100 | | - "type": "{ key: DataTableKey; value: DataTableValue; display?: (item: Value) => DataTableValue; sort?: (a: DataTableValue, b: DataTableValue) => (0 | -1 | 1); columnMenu?: boolean; }", |
| 2125 | + "type": "{ key: DataTableKey; value: DataTableValue; display?: (item: Value) => DataTableValue; sort?: false | ((a: DataTableValue, b: DataTableValue) => (0 | -1 | 1)); columnMenu?: boolean; }", |
2101 | 2126 | "name": "DataTableNonEmptyHeader", |
2102 | | - "ts": "interface DataTableNonEmptyHeader { key: DataTableKey; value: DataTableValue; display?: (item: Value) => DataTableValue; sort?: (a: DataTableValue, b: DataTableValue) => (0 | -1 | 1); columnMenu?: boolean; }" |
| 2127 | + "ts": "interface DataTableNonEmptyHeader { key: DataTableKey; value: DataTableValue; display?: (item: Value) => DataTableValue; sort?: false | ((a: DataTableValue, b: DataTableValue) => (0 | -1 | 1)); columnMenu?: boolean; }" |
2103 | 2128 | }, |
2104 | 2129 | { |
2105 | 2130 | "type": "DataTableNonEmptyHeader | DataTableEmptyHeader", |
|
2207 | 2232 | ], |
2208 | 2233 | "typedefs": [], |
2209 | 2234 | "rest_props": { "type": "Element", "name": "div" }, |
2210 | | - "extends": { |
2211 | | - "interface": "DataTableHeader", |
2212 | | - "import": "\"../DataTable/DataTable\"" |
2213 | | - } |
| 2235 | + "extends": { "interface": "DataTableHeader", "import": "\"./DataTable\"" } |
2214 | 2236 | }, |
2215 | 2237 | { |
2216 | 2238 | "moduleName": "DatePicker", |
|
3499 | 3521 | "constant": false, |
3500 | 3522 | "reactive": false |
3501 | 3523 | }, |
| 3524 | + { |
| 3525 | + "name": "noMargin", |
| 3526 | + "kind": "let", |
| 3527 | + "description": "Set to `true` for to remove the bottom margin", |
| 3528 | + "type": "boolean", |
| 3529 | + "value": "false", |
| 3530 | + "isFunction": false, |
| 3531 | + "constant": false, |
| 3532 | + "reactive": false |
| 3533 | + }, |
3502 | 3534 | { |
3503 | 3535 | "name": "messageText", |
3504 | 3536 | "kind": "let", |
|
5766 | 5798 | "isFunction": false, |
5767 | 5799 | "constant": false, |
5768 | 5800 | "reactive": false |
| 5801 | + }, |
| 5802 | + { |
| 5803 | + "name": "inputRef", |
| 5804 | + "kind": "let", |
| 5805 | + "description": "Obtain a reference to the input HTML element", |
| 5806 | + "type": "null | HTMLInputElement", |
| 5807 | + "value": "null", |
| 5808 | + "isFunction": false, |
| 5809 | + "constant": false, |
| 5810 | + "reactive": true |
5769 | 5811 | } |
5770 | 5812 | ], |
5771 | 5813 | "slots": [], |
|
6354 | 6396 | "type": "typeof import(\"carbon-icons-svelte\").CarbonIcon", |
6355 | 6397 | "isFunction": false, |
6356 | 6398 | "constant": false, |
6357 | | - "reactive": false |
| 6399 | + "reactive": true |
6358 | 6400 | }, |
6359 | 6401 | { |
6360 | 6402 | "name": "iconClass", |
|
7518 | 7560 | "constant": false, |
7519 | 7561 | "reactive": false |
7520 | 7562 | }, |
| 7563 | + { |
| 7564 | + "name": "disabled", |
| 7565 | + "kind": "let", |
| 7566 | + "description": "Set to `true` to disable the tile", |
| 7567 | + "type": "boolean", |
| 7568 | + "value": "false", |
| 7569 | + "isFunction": false, |
| 7570 | + "constant": false, |
| 7571 | + "reactive": false |
| 7572 | + }, |
7521 | 7573 | { |
7522 | 7574 | "name": "value", |
7523 | 7575 | "kind": "let", |
|
7690 | 7742 | "constant": false, |
7691 | 7743 | "reactive": false |
7692 | 7744 | }, |
| 7745 | + { |
| 7746 | + "name": "searchClass", |
| 7747 | + "kind": "let", |
| 7748 | + "description": "Specify the class name passed to the outer div element", |
| 7749 | + "type": "string", |
| 7750 | + "value": "\"\"", |
| 7751 | + "isFunction": false, |
| 7752 | + "constant": false, |
| 7753 | + "reactive": false |
| 7754 | + }, |
7693 | 7755 | { |
7694 | 7756 | "name": "skeleton", |
7695 | 7757 | "kind": "let", |
|
8171 | 8233 | "constant": false, |
8172 | 8234 | "reactive": false |
8173 | 8235 | }, |
| 8236 | + { |
| 8237 | + "name": "disabled", |
| 8238 | + "kind": "let", |
| 8239 | + "description": "Set to `true` to disable the tile", |
| 8240 | + "type": "boolean", |
| 8241 | + "value": "false", |
| 8242 | + "isFunction": false, |
| 8243 | + "constant": false, |
| 8244 | + "reactive": false |
| 8245 | + }, |
8174 | 8246 | { |
8175 | 8247 | "name": "title", |
8176 | 8248 | "kind": "let", |
|
9369 | 9441 | "moduleName": "TableHeader", |
9370 | 9442 | "filePath": "src/DataTable/TableHeader.svelte", |
9371 | 9443 | "props": [ |
| 9444 | + { |
| 9445 | + "name": "disableSorting", |
| 9446 | + "kind": "let", |
| 9447 | + "description": "Set to `true` to disable sorting on this specific cell", |
| 9448 | + "type": "boolean", |
| 9449 | + "value": "false", |
| 9450 | + "isFunction": false, |
| 9451 | + "constant": false, |
| 9452 | + "reactive": false |
| 9453 | + }, |
9372 | 9454 | { |
9373 | 9455 | "name": "scope", |
9374 | 9456 | "kind": "let", |
|
11157 | 11239 | "typedefs": [], |
11158 | 11240 | "rest_props": { "type": "Element", "name": "div" } |
11159 | 11241 | }, |
| 11242 | + { |
| 11243 | + "moduleName": "TooltipFooter", |
| 11244 | + "filePath": "src/Tooltip/TooltipFooter.svelte", |
| 11245 | + "props": [ |
| 11246 | + { |
| 11247 | + "name": "selectorPrimaryFocus", |
| 11248 | + "kind": "let", |
| 11249 | + "description": "Specify a selector to be focused inside the footer when opening the tooltip", |
| 11250 | + "type": "string", |
| 11251 | + "value": "\"a[href], button:not([disabled])\"", |
| 11252 | + "isFunction": false, |
| 11253 | + "constant": false, |
| 11254 | + "reactive": false |
| 11255 | + } |
| 11256 | + ], |
| 11257 | + "slots": [{ "name": "__default__", "default": true, "slot_props": "{}" }], |
| 11258 | + "events": [], |
| 11259 | + "typedefs": [] |
| 11260 | + }, |
11160 | 11261 | { |
11161 | 11262 | "moduleName": "TooltipIcon", |
11162 | 11263 | "filePath": "src/TooltipIcon/TooltipIcon.svelte", |
|
0 commit comments