Skip to content

Commit

Permalink
Merge pull request #33 from st3phhays/choco-theme-0.8.3
Browse files Browse the repository at this point in the history
(#31)(#32) Nested lists and Tab component
  • Loading branch information
alexaveldanez authored Dec 5, 2024
2 parents a6a8170 + 0b9eb8d commit ee47ab6
Show file tree
Hide file tree
Showing 8 changed files with 964 additions and 607 deletions.
2 changes: 1 addition & 1 deletion assets/theme-toggle.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions assets/zendesk.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/zendesk.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions assets/zendesk.min.purged.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "choco-theme",
"author": "Chocolatey Software",
"version": "102.0.0",
"version": "102.1.0",
"api_version": 2,
"default_locale": "en-us",
"settings": [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"node-fetch": "^2.1.2"
},
"devDependencies": {
"choco-theme": "0.8.1"
"choco-theme": "0.8.3"
},
"scripts": {
"build": "./bin/compile.rb & yarn choco-theme",
Expand Down
15 changes: 15 additions & 0 deletions templates/home_page.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,18 @@
{{/if}}
</section>
</div>
{{!-- The below container is used for components that should not be purged from choco-theme css. --}}
<div class="d-none">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<button class="nav-link active" id="home-tab" data-bs-toggle="tab" data-bs-target="#home-tab-pane" type="button" role="tab" aria-controls="home-tab-pane" aria-selected="true">Home</button>
</li>
<li class="nav-item" role="presentation">
<button class="nav-link" id="profile-tab" data-bs-toggle="tab" data-bs-target="#profile-tab-pane" type="button" role="tab" aria-controls="profile-tab-pane" aria-selected="false">Profile</button>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="home-tab-pane" role="tabpanel" aria-labelledby="home-tab" tabindex="0"></div>
<div class="tab-pane fade" id="profile-tab-pane" role="tabpanel" aria-labelledby="profile-tab" tabindex="0"></div>
</div>
</div>
Loading

0 comments on commit ee47ab6

Please sign in to comment.