Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Fixes: Package entry points
Browse files Browse the repository at this point in the history
Fix package entry points and demo site
  • Loading branch information
Wikiki committed Mar 25, 2019
1 parent 8b47162 commit 2e32732
Show file tree
Hide file tree
Showing 11 changed files with 216 additions and 20,443 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "dist/js/bulma-carousel.js",
"style": "dist/css/bulma-carousel.min.css",
"sass": "src/sass/index.sass",
"version": "4.0.3",
"version": "4.0.4",
"scripts": {
"build": "gulp",
"commit": "git-cz",
Expand Down
3 changes: 0 additions & 3 deletions src/demo/_data/events.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
- name: 'ready'
description: 'Triggered when carousel is intialized (DO NOT USE IT but pass callback into the onReady option)'
parameters: 'bulmaCarousel State object instance'
- name: 'before:show'
description: 'Triggered before showing item'
parameters: 'bulmaCarousel State object instance'
Expand Down
6 changes: 2 additions & 4 deletions src/demo/_data/menu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@
link: '#features'
- name: Installation
link: '#installation'
- name: Content
link: '#content'
- name: HTML Structure
link: '#html-structure'
- name: Starter Template
link: '#starter-template'
- name: Integration
link: '#integration'
- name: Options
Expand Down
8 changes: 4 additions & 4 deletions src/demo/_data/tree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
- name: css
open: true
subtree:
- name: bulma-calendar.min.css
- name: bulma-carousel.min.css
details: Minified version of all required CSS in one file
- name: bulma-calendar.sass
- name: bulma-carousel.sass
details: Copy of Sass sources from src/
- name: js
open: true
subtree:
- name: bulma-calendar.js
- name: bulma-carousel.js
details: JavaScript code
- name: bulma-calendar.min.js
- name: bulma-carousel.min.js
details: Minified version of JavaScript code
- name: src
open: true
Expand Down
2 changes: 1 addition & 1 deletion src/demo/_includes/anchor.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<a href="#{{ include.name | slugify }}" id="{{ include.name | slugify }}" class="title is-4 has-text-weight-normal is-spaced anchor">
<a href="#{{ include.name | slugify }}" id="{{ include.name | slugify }}" class="title is-3 is-spaced anchor">
<span class="anchor-name">{{ include.name }}</span>
</a>
4 changes: 2 additions & 2 deletions src/demo/_layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
<span></span>
</div>
<div class="columns is-gapless">
<div id="doc-menu" class="column is-2 has-background-grey-lighter menu is-mobile">
<div id="doc-menu" class="column is-2 menu is-dark is-mobile">
<section class="section">
<h1 class="title is-4 has-text-weight-semibold has-text-centered">{{ site.title }} <span class="is-size-5 has-text-primary has-text-weight-light">documentation</span></h1>
<h1 class="title is-4 has-text-weight-semibold has-text-centered has-text-white">{{ site.title }} <span class="is-size-5 has-text-primary has-text-weight-light">documentation</span></h1>
<div class="has-text-centered">
<span>
<img src="https://badgen.net/badge/Version/{{ site.version }}/green" alt="v{{ site.version }}">
Expand Down
Loading

0 comments on commit 2e32732

Please sign in to comment.