Skip to content
This repository was archived by the owner on Sep 26, 2022. It is now read-only.

Commit 4262297

Browse files
author
TheComputerM
committed
chore: api
1 parent 7cdec36 commit 4262297

File tree

5 files changed

+69
-3
lines changed

5 files changed

+69
-3
lines changed

packages/api-generator/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"version": 3,
3+
"name": "Carousel",
4+
"data": [
5+
{
6+
"visibility": "public",
7+
"description": null,
8+
"keywords": [],
9+
"name": "value",
10+
"kind": "let",
11+
"static": false,
12+
"readonly": false,
13+
"type": {
14+
"kind": "type",
15+
"text": "number",
16+
"type": "number"
17+
},
18+
"defaultValue": 0,
19+
"bind": [
20+
{
21+
"source": "Window",
22+
"property": "value"
23+
}
24+
]
25+
}
26+
],
27+
"computed": [],
28+
"methods": [],
29+
"components": [],
30+
"description": null,
31+
"keywords": [],
32+
"events": [],
33+
"slots": [
34+
{
35+
"name": "default",
36+
"description": null,
37+
"visibility": "public",
38+
"parameters": []
39+
}
40+
],
41+
"refs": []
42+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": 3,
3+
"name": "CarouselItem",
4+
"data": [],
5+
"computed": [],
6+
"methods": [],
7+
"components": [],
8+
"description": null,
9+
"keywords": [],
10+
"events": [],
11+
"slots": [
12+
{
13+
"name": "default",
14+
"description": null,
15+
"visibility": "public",
16+
"parameters": []
17+
}
18+
],
19+
"refs": []
20+
}

packages/api-generator/src/all.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"names": [
33
"Alert",
44
"AppBar",
5-
"Avatar",
65
"Badge",
6+
"Avatar",
77
"Breadcrumbs",
88
"Button",
99
"ButtonGroup",
@@ -13,6 +13,8 @@
1313
"CardSubtitle",
1414
"CardText",
1515
"CardTitle",
16+
"Carousel",
17+
"CarouselItem",
1618
"Checkbox",
1719
"Chip",
1820
"Dialog",

packages/api-generator/src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
export { default as all } from './all.json';
22
export { default as Alert } from './Alert.json';
33
export { default as AppBar } from './AppBar.json';
4-
export { default as Avatar } from './Avatar.json';
54
export { default as Badge } from './Badge.json';
5+
export { default as Avatar } from './Avatar.json';
66
export { default as Breadcrumbs } from './Breadcrumbs.json';
77
export { default as Button } from './Button.json';
88
export { default as ButtonGroup } from './ButtonGroup.json';
@@ -12,6 +12,8 @@ export { default as CardActions } from './CardActions.json';
1212
export { default as CardSubtitle } from './CardSubtitle.json';
1313
export { default as CardText } from './CardText.json';
1414
export { default as CardTitle } from './CardTitle.json';
15+
export { default as Carousel } from './Carousel.json';
16+
export { default as CarouselItem } from './CarouselItem.json';
1517
export { default as Checkbox } from './Checkbox.json';
1618
export { default as Chip } from './Chip.json';
1719
export { default as Dialog } from './Dialog.json';

0 commit comments

Comments
 (0)