Skip to content

Commit

Permalink
Release to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shivajivarma committed Jul 17, 2024
1 parent 61da353 commit 6cd1745
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 15 deletions.
28 changes: 25 additions & 3 deletions astro-docs/src/_data/componentsDetails.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"timestamp": "2024-07-17T03:18:36",
"timestamp": "2024-07-17T13:16:59",
"compiler": {
"name": "@stencil/core",
"version": "4.19.2",
Expand Down Expand Up @@ -8745,6 +8745,28 @@
"optional": false,
"required": false
},
{
"name": "managed",
"type": "boolean",
"complexType": {
"original": "boolean",
"resolved": "boolean",
"references": {}
},
"mutable": false,
"attr": "managed",
"reflectToAttr": false,
"docs": "Specify whether the Modal is managed by the parent component",
"docsTags": [],
"default": "false",
"values": [
{
"type": "boolean"
}
],
"optional": false,
"required": false
},
{
"name": "open",
"type": "boolean",
Expand All @@ -8756,7 +8778,7 @@
"mutable": false,
"attr": "open",
"reflectToAttr": true,
"docs": "",
"docs": "Specify whether the Modal is currently open",
"docsTags": [],
"default": "false",
"values": [
Expand Down Expand Up @@ -11278,7 +11300,7 @@
"passive": false
},
{
"event": "goat-tag-dismiss",
"event": "goat-tag--dismiss",
"capture": false,
"passive": false
},
Expand Down
8 changes: 4 additions & 4 deletions astro-docs/src/_data/site.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"github_project": "components",
"npm_package": "@goatui/components",
"prod": {
"script": "https://cdn.jsdelivr.net/npm/@goatui/[email protected].1/dist/goatui/goatui.esm.js",
"themeCss": "https://cdn.jsdelivr.net/npm/@goatui/[email protected].1/dist/goatui/assets/styles/theme.css",
"version": "2.17.1"
"script": "https://cdn.jsdelivr.net/npm/@goatui/[email protected].2/dist/goatui/goatui.esm.js",
"themeCss": "https://cdn.jsdelivr.net/npm/@goatui/[email protected].2/dist/goatui/assets/styles/theme.css",
"version": "2.17.2"
},
"dev": {
"script": "/assets/goatui-dev/build/goatui.esm.js",
"themeCss": "/assets/goatui-dev/build/assets/styles/theme.css",
"version": "2.17.1"
"version": "2.17.2"
}
}
17 changes: 9 additions & 8 deletions src/components/informational/modal/modal/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@

## Properties

| Property | Attribute | Description | Type | Default |
| ------------ | ------------- | ----------- | ---------------------- | ----------- |
| `heading` | `heading` | | `string` | `undefined` |
| `hideClose` | `hide-close` | | `boolean` | `false` |
| `open` | `open` | | `boolean` | `false` |
| `showLoader` | `show-loader` | | `boolean` | `false` |
| `size` | `size` | | `"lg" \| "md" \| "sm"` | `'md'` |
| `subheading` | `subheading` | | `string` | `undefined` |
| Property | Attribute | Description | Type | Default |
| ------------ | ------------- | ------------------------------------------------------------ | ---------------------- | ----------- |
| `heading` | `heading` | | `string` | `undefined` |
| `hideClose` | `hide-close` | | `boolean` | `false` |
| `managed` | `managed` | Specify whether the Modal is managed by the parent component | `boolean` | `false` |
| `open` | `open` | Specify whether the Modal is currently open | `boolean` | `false` |
| `showLoader` | `show-loader` | | `boolean` | `false` |
| `size` | `size` | | `"lg" \| "md" \| "sm"` | `'md'` |
| `subheading` | `subheading` | | `string` | `undefined` |


## Events
Expand Down

0 comments on commit 6cd1745

Please sign in to comment.