Skip to content

Commit 9e9557b

Browse files
jonasjabarigitbook-bot
authored andcommitted
GitBook: [main] 44 pages modified
1 parent 35b4212 commit 9e9557b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+99
-117
lines changed

docs/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Install
22

3-
{% hint style="danger" %}
4-
Docs and specs in progress, please wait for official release announcement before using this gem
5-
{% endhint %}
6-
73
### Webpacker Installation
84

95
```text

docs/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,4 @@
4545
* [Templates](api/templates/README.md)
4646
* [Apps](api/templates/apps/README.md)
4747
* [Admin App Template](api/templates/apps/admin.md)
48+

docs/api/components/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# components
1+
# Components
22

docs/api/components/accordion.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Matestack Bootstrap Component: Accordion
1+
# Accordion
22

33
The Bootstrap `accordion` component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.
44

@@ -56,3 +56,4 @@ bs_accordion open: true, items: [
5656
}
5757
]
5858
```
59+

docs/api/components/alert.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Matestack Bootstrap Component: Alert
1+
# Alert
22

33
The Bootstrap `alert` component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.
44

@@ -77,3 +77,4 @@ onclick emit: "my-event" do
7777
bs_btn text: "Show Alert"
7878
end
7979
```
80+

docs/api/components/badge.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Matestack Bootstrap Component: Badge
1+
# Badge
22

33
The Bootstrap `badge` component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.
44

@@ -60,3 +60,4 @@ Result:
6060
```markup
6161
<span class="badge rounded-pill bg-success">Success</span>
6262
```
63+

docs/api/components/breadcrumb.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Matestack Bootstrap Component: Breadcrumb
1+
# Breadcrumb
22

33
The Bootstrap `breadcrumb` component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.
44

@@ -68,3 +68,4 @@ Result:
6868
</ol>
6969
</nav>
7070
```
71+

docs/api/components/button.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Matestack Bootstrap Component: Button
1+
# Button
22

33
The Bootstrap `button` component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.
44

@@ -13,10 +13,10 @@ Returns a bootstrap button containing text or content specified by a block. Also
1313
* `:size` - Use `:block, :sm, :md or :lg` to change the size of the button. The default is `nil`.
1414
* `:type` - Specify the type button tags. By default is set as `button`. You can set is for example as `submit`, `reset`, etc.
1515
* `:text` - Expects a string with the text that should go inside the button
16-
* `:link` - Expects a hash with parameters for a link component, button will act as a link (`a` tag with btn css classes)
17-
* `:transition` - Expects a hash with parameters for a transition component, button will act as a transition (`a` tag with btn css classes)
18-
* `:action` - Expects a hash with parameters for a action component, button will act as a action (`a` tag with btn css classes)
19-
* `:onclick` - Expects a hash with parameters for a onclick component, button will act as a onclick (`a` tag with btn css classes)
16+
* `:link` - Expects a hash with parameters for a link component, button will act as a link \(`a` tag with btn css classes\)
17+
* `:transition` - Expects a hash with parameters for a transition component, button will act as a transition \(`a` tag with btn css classes\)
18+
* `:action` - Expects a hash with parameters for a action component, button will act as a action \(`a` tag with btn css classes\)
19+
* `:onclick` - Expects a hash with parameters for a onclick component, button will act as a onclick \(`a` tag with btn css classes\)
2020
* Html attributes - all w3c confirm html attributes for div's can be set via options and will be added to the surrounding button div.
2121

2222
## Examples
@@ -105,3 +105,4 @@ returns
105105
106106
<btn type="button" class="btn btn-secondary btn-lg">Large btn</btn>
107107
```
108+

docs/api/components/button_group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Matestack Bootstrap Component: ButtonGroup
1+
# ButtonGroup
22

33
The Bootstrap `button group` component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.
44

docs/api/components/card.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Matestack Bootstrap Component: Card
1+
# Card
22

33
The Bootstrap `card` component, implemented in Ruby. Use it like any other matestack component in your apps, pages and components. It offers customizable options to simply achieve what is possible in bootstrap with this component. See below for more information about the possible options.
44

0 commit comments

Comments
 (0)