intia-theme 0.1.0 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/hero.html +5 -3
  3. data/_includes/introduction.html +1 -1
  4. data/_includes/story-slider.html +1 -1
  5. data/_layouts/404.html +7 -0
  6. data/_sass/_layout.scss +40 -11
  7. data/_sass/_main.scss +32 -11
  8. data/assets/img/404.png +0 -0
  9. data/assets/img/arrow-down.png +0 -0
  10. data/assets/img/arrow-left.png +0 -0
  11. data/assets/js/main.js +4 -1
  12. data/favicon.png +0 -0
  13. data/node_modules/bulma/CHANGELOG.md +1558 -0
  14. data/node_modules/bulma/LICENSE +21 -0
  15. data/node_modules/bulma/README.md +134 -0
  16. data/node_modules/bulma/bulma.sass +10 -0
  17. data/node_modules/bulma/css/bulma-rtl.css +11811 -0
  18. data/node_modules/bulma/css/bulma-rtl.css.map +1 -0
  19. data/node_modules/bulma/css/bulma-rtl.min.css +1 -0
  20. data/node_modules/bulma/css/bulma.css +11811 -0
  21. data/node_modules/bulma/css/bulma.css.map +1 -0
  22. data/node_modules/bulma/css/bulma.min.css +1 -0
  23. data/node_modules/bulma/package.json +82 -0
  24. data/node_modules/bulma/sass/base/_all.sass +6 -0
  25. data/node_modules/bulma/sass/base/animations.sass +5 -0
  26. data/node_modules/bulma/sass/base/generic.sass +145 -0
  27. data/node_modules/bulma/sass/base/helpers.sass +1 -0
  28. data/node_modules/bulma/sass/base/minireset.sass +79 -0
  29. data/node_modules/bulma/sass/components/_all.sass +15 -0
  30. data/node_modules/bulma/sass/components/breadcrumb.sass +77 -0
  31. data/node_modules/bulma/sass/components/card.sass +103 -0
  32. data/node_modules/bulma/sass/components/dropdown.sass +83 -0
  33. data/node_modules/bulma/sass/components/level.sass +79 -0
  34. data/node_modules/bulma/sass/components/media.sass +59 -0
  35. data/node_modules/bulma/sass/components/menu.sass +59 -0
  36. data/node_modules/bulma/sass/components/message.sass +101 -0
  37. data/node_modules/bulma/sass/components/modal.sass +117 -0
  38. data/node_modules/bulma/sass/components/navbar.sass +446 -0
  39. data/node_modules/bulma/sass/components/pagination.sass +166 -0
  40. data/node_modules/bulma/sass/components/panel.sass +121 -0
  41. data/node_modules/bulma/sass/components/tabs.sass +176 -0
  42. data/node_modules/bulma/sass/elements/_all.sass +16 -0
  43. data/node_modules/bulma/sass/elements/box.sass +26 -0
  44. data/node_modules/bulma/sass/elements/button.sass +345 -0
  45. data/node_modules/bulma/sass/elements/container.sass +29 -0
  46. data/node_modules/bulma/sass/elements/content.sass +159 -0
  47. data/node_modules/bulma/sass/elements/form.sass +1 -0
  48. data/node_modules/bulma/sass/elements/icon.sass +46 -0
  49. data/node_modules/bulma/sass/elements/image.sass +73 -0
  50. data/node_modules/bulma/sass/elements/notification.sass +52 -0
  51. data/node_modules/bulma/sass/elements/other.sass +31 -0
  52. data/node_modules/bulma/sass/elements/progress.sass +73 -0
  53. data/node_modules/bulma/sass/elements/table.sass +133 -0
  54. data/node_modules/bulma/sass/elements/tag.sass +140 -0
  55. data/node_modules/bulma/sass/elements/title.sass +70 -0
  56. data/node_modules/bulma/sass/form/_all.sass +9 -0
  57. data/node_modules/bulma/sass/form/checkbox-radio.sass +22 -0
  58. data/node_modules/bulma/sass/form/file.sass +184 -0
  59. data/node_modules/bulma/sass/form/input-textarea.sass +66 -0
  60. data/node_modules/bulma/sass/form/select.sass +87 -0
  61. data/node_modules/bulma/sass/form/shared.sass +60 -0
  62. data/node_modules/bulma/sass/form/tools.sass +215 -0
  63. data/node_modules/bulma/sass/grid/_all.sass +5 -0
  64. data/node_modules/bulma/sass/grid/columns.sass +513 -0
  65. data/node_modules/bulma/sass/grid/tiles.sass +36 -0
  66. data/node_modules/bulma/sass/helpers/_all.sass +12 -0
  67. data/node_modules/bulma/sass/helpers/color.sass +39 -0
  68. data/node_modules/bulma/sass/helpers/flexbox.sass +35 -0
  69. data/node_modules/bulma/sass/helpers/float.sass +10 -0
  70. data/node_modules/bulma/sass/helpers/other.sass +14 -0
  71. data/node_modules/bulma/sass/helpers/overflow.sass +2 -0
  72. data/node_modules/bulma/sass/helpers/position.sass +7 -0
  73. data/node_modules/bulma/sass/helpers/spacing.sass +31 -0
  74. data/node_modules/bulma/sass/helpers/typography.sass +103 -0
  75. data/node_modules/bulma/sass/helpers/visibility.sass +122 -0
  76. data/node_modules/bulma/sass/layout/_all.sass +6 -0
  77. data/node_modules/bulma/sass/layout/footer.sass +11 -0
  78. data/node_modules/bulma/sass/layout/hero.sass +153 -0
  79. data/node_modules/bulma/sass/layout/section.sass +17 -0
  80. data/node_modules/bulma/sass/utilities/_all.sass +9 -0
  81. data/node_modules/bulma/sass/utilities/animations.sass +1 -0
  82. data/node_modules/bulma/sass/utilities/controls.sass +49 -0
  83. data/node_modules/bulma/sass/utilities/derived-variables.sass +114 -0
  84. data/node_modules/bulma/sass/utilities/extends.sass +25 -0
  85. data/node_modules/bulma/sass/utilities/functions.sass +136 -0
  86. data/node_modules/bulma/sass/utilities/initial-variables.sass +78 -0
  87. data/node_modules/bulma/sass/utilities/mixins.sass +280 -0
  88. data/node_modules/bulma-block-list/LICENSE.txt +21 -0
  89. data/node_modules/bulma-block-list/README.md +32 -0
  90. data/node_modules/bulma-block-list/node_modules/bulma/CHANGELOG.md +1390 -0
  91. data/node_modules/bulma-block-list/node_modules/bulma/LICENSE +21 -0
  92. data/node_modules/bulma-block-list/node_modules/bulma/README.md +130 -0
  93. data/node_modules/bulma-block-list/node_modules/bulma/bulma.sass +9 -0
  94. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css +10855 -0
  95. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.css.map +1 -0
  96. data/node_modules/bulma-block-list/node_modules/bulma/css/bulma.min.css +1 -0
  97. data/node_modules/bulma-block-list/node_modules/bulma/package.json +80 -0
  98. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/_all.sass +5 -0
  99. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/generic.sass +142 -0
  100. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/helpers.sass +281 -0
  101. data/node_modules/bulma-block-list/node_modules/bulma/sass/base/minireset.sass +79 -0
  102. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/_all.sass +15 -0
  103. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/breadcrumb.sass +75 -0
  104. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/card.sass +79 -0
  105. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/dropdown.sass +81 -0
  106. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/level.sass +77 -0
  107. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/list.sass +39 -0
  108. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/media.sass +50 -0
  109. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/menu.sass +57 -0
  110. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/message.sass +99 -0
  111. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/modal.sass +113 -0
  112. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/navbar.sass +441 -0
  113. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/pagination.sass +150 -0
  114. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/panel.sass +119 -0
  115. data/node_modules/bulma-block-list/node_modules/bulma/sass/components/tabs.sass +151 -0
  116. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/_all.sass +15 -0
  117. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/box.sass +24 -0
  118. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/button.sass +323 -0
  119. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/container.sass +24 -0
  120. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/content.sass +155 -0
  121. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/form.sass +1 -0
  122. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/icon.sass +21 -0
  123. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/image.sass +71 -0
  124. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/notification.sass +43 -0
  125. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/other.sass +39 -0
  126. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/progress.sass +67 -0
  127. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/table.sass +127 -0
  128. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/tag.sass +128 -0
  129. data/node_modules/bulma-block-list/node_modules/bulma/sass/elements/title.sass +70 -0
  130. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/_all.sass +8 -0
  131. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/checkbox-radio.sass +21 -0
  132. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/file.sass +180 -0
  133. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/input-textarea.sass +64 -0
  134. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/select.sass +85 -0
  135. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/shared.sass +55 -0
  136. data/node_modules/bulma-block-list/node_modules/bulma/sass/form/tools.sass +205 -0
  137. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/_all.sass +4 -0
  138. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/columns.sass +504 -0
  139. data/node_modules/bulma-block-list/node_modules/bulma/sass/grid/tiles.sass +34 -0
  140. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/_all.sass +5 -0
  141. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/footer.sass +9 -0
  142. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/hero.sass +145 -0
  143. data/node_modules/bulma-block-list/node_modules/bulma/sass/layout/section.sass +13 -0
  144. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/_all.sass +8 -0
  145. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/animations.sass +5 -0
  146. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/controls.sass +50 -0
  147. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/derived-variables.sass +106 -0
  148. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/functions.sass +110 -0
  149. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/initial-variables.sass +77 -0
  150. data/node_modules/bulma-block-list/node_modules/bulma/sass/utilities/mixins.sass +261 -0
  151. data/node_modules/bulma-block-list/package.json +59 -0
  152. data/node_modules/bulma-block-list/src/block-list.scss +109 -0
  153. data/node_modules/bulma-block-list/src/demo.scss +3 -0
  154. data/node_modules/bulma-carousel/CHANGELOG.md +307 -0
  155. data/node_modules/bulma-carousel/LICENSE +21 -0
  156. data/node_modules/bulma-carousel/README.md +13 -0
  157. data/node_modules/bulma-carousel/dist/css/bulma-carousel.min.css +1 -0
  158. data/node_modules/bulma-carousel/dist/js/bulma-carousel.js +2371 -0
  159. data/node_modules/bulma-carousel/package.json +108 -0
  160. data/node_modules/bulma-carousel/src/demo/_data/events.yml +15 -0
  161. data/node_modules/bulma-carousel/src/demo/_data/getters.yml +26 -0
  162. data/node_modules/bulma-carousel/src/demo/_data/menu.yml +26 -0
  163. data/node_modules/bulma-carousel/src/demo/_data/methods.yml +57 -0
  164. data/node_modules/bulma-carousel/src/demo/_data/options.yml +79 -0
  165. data/node_modules/bulma-carousel/src/demo/_data/setters.yml +0 -0
  166. data/node_modules/bulma-carousel/src/demo/_data/tree.yml +30 -0
  167. data/node_modules/bulma-carousel/src/demo/_includes/anchor.html +3 -0
  168. data/node_modules/bulma-carousel/src/demo/_includes/breadcrumb.html +5 -0
  169. data/node_modules/bulma-carousel/src/demo/_includes/events.html +33 -0
  170. data/node_modules/bulma-carousel/src/demo/_includes/getters.html +28 -0
  171. data/node_modules/bulma-carousel/src/demo/_includes/head.html +22 -0
  172. data/node_modules/bulma-carousel/src/demo/_includes/menu.html +22 -0
  173. data/node_modules/bulma-carousel/src/demo/_includes/methods.html +49 -0
  174. data/node_modules/bulma-carousel/src/demo/_includes/options.html +33 -0
  175. data/node_modules/bulma-carousel/src/demo/_includes/setters.html +28 -0
  176. data/node_modules/bulma-carousel/src/demo/_includes/tree.html +25 -0
  177. data/node_modules/bulma-carousel/src/demo/_includes/variables.html +28 -0
  178. data/node_modules/bulma-carousel/src/demo/_layouts/default.html +47 -0
  179. data/node_modules/bulma-carousel/src/demo/assets/css/bulma-carousel.min.css +1 -0
  180. data/node_modules/bulma-carousel/src/demo/assets/css/documentation.min.css +1 -0
  181. data/node_modules/bulma-carousel/src/demo/assets/css/highlight.css +78 -0
  182. data/node_modules/bulma-carousel/src/demo/assets/images/1.jpg +0 -0
  183. data/node_modules/bulma-carousel/src/demo/assets/images/2.jpg +0 -0
  184. data/node_modules/bulma-carousel/src/demo/assets/images/3.jpg +0 -0
  185. data/node_modules/bulma-carousel/src/demo/assets/images/4.jpg +0 -0
  186. data/node_modules/bulma-carousel/src/demo/assets/images/5.jpg +0 -0
  187. data/node_modules/bulma-carousel/src/demo/assets/images/6.jpg +0 -0
  188. data/node_modules/bulma-carousel/src/demo/assets/images/left.svg +3 -0
  189. data/node_modules/bulma-carousel/src/demo/assets/images/right.svg +3 -0
  190. data/node_modules/bulma-carousel/src/demo/assets/js/bulma-carousel.min.js +1 -0
  191. data/node_modules/bulma-carousel/src/demo/assets/js/doc.js +111 -0
  192. data/node_modules/bulma-carousel/src/demo/assets/js/main.js +23 -0
  193. data/node_modules/bulma-carousel/src/demo/changelog.html +17 -0
  194. data/node_modules/bulma-carousel/src/demo/customization.html +78 -0
  195. data/node_modules/bulma-carousel/src/demo/demonstration/index.html +402 -0
  196. data/node_modules/bulma-carousel/src/demo/index.html +396 -0
  197. data/node_modules/bulma-carousel/src/js/components/Media.js +129 -0
  198. data/node_modules/bulma-carousel/src/js/components/autoplay.js +111 -0
  199. data/node_modules/bulma-carousel/src/js/components/breakpoint.js +91 -0
  200. data/node_modules/bulma-carousel/src/js/components/infinite.js +60 -0
  201. data/node_modules/bulma-carousel/src/js/components/loop.js +35 -0
  202. data/node_modules/bulma-carousel/src/js/components/navigation.js +107 -0
  203. data/node_modules/bulma-carousel/src/js/components/pagination.js +103 -0
  204. data/node_modules/bulma-carousel/src/js/components/swipe.js +106 -0
  205. data/node_modules/bulma-carousel/src/js/components/transitioner.js +74 -0
  206. data/node_modules/bulma-carousel/src/js/components/transitions/fade.js +90 -0
  207. data/node_modules/bulma-carousel/src/js/components/transitions/translate.js +98 -0
  208. data/node_modules/bulma-carousel/src/js/defaultOptions.js +50 -0
  209. data/node_modules/bulma-carousel/src/js/index.js +428 -0
  210. data/node_modules/bulma-carousel/src/js/templates/index.js +5 -0
  211. data/node_modules/bulma-carousel/src/js/templates/item.js +3 -0
  212. data/node_modules/bulma-carousel/src/js/templates/navigation.js +4 -0
  213. data/node_modules/bulma-carousel/src/js/templates/pagination-page.js +3 -0
  214. data/node_modules/bulma-carousel/src/js/templates/pagination.js +3 -0
  215. data/node_modules/bulma-carousel/src/js/utils/coordinate.js +98 -0
  216. data/node_modules/bulma-carousel/src/js/utils/css.js +84 -0
  217. data/node_modules/bulma-carousel/src/js/utils/detect-prefixes.js +50 -0
  218. data/node_modules/bulma-carousel/src/js/utils/detect-supportsPassive.js +16 -0
  219. data/node_modules/bulma-carousel/src/js/utils/device.js +17 -0
  220. data/node_modules/bulma-carousel/src/js/utils/dom.js +10 -0
  221. data/node_modules/bulma-carousel/src/js/utils/eventEmitter.js +19 -0
  222. data/node_modules/bulma-carousel/src/js/utils/events.js +65 -0
  223. data/node_modules/bulma-carousel/src/js/utils/index.js +16 -0
  224. data/node_modules/bulma-carousel/src/js/utils/type.js +21 -0
  225. data/node_modules/bulma-carousel/src/sass/index.sass +145 -0
  226. data/package-lock.json +32 -0
  227. data/package.json +10 -0
  228. metadata +222 -4
  229. data/_config.yml +0 -72
  230. data/assets/img/arrow.png +0 -0
@@ -0,0 +1,108 @@
1
+ {
2
+ "_from": "bulma-carousel",
3
+ "_id": "bulma-carousel@4.0.24",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-DLYKmf/iHH8yAQSo8+O/cQvSVSAo15f+XmbiQvAvu5hUJs5O8I40RbZqrF9OougNs4n4JMokPEIBUiDGAsFuRA==",
6
+ "_location": "/bulma-carousel",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "tag",
10
+ "registry": true,
11
+ "raw": "bulma-carousel",
12
+ "name": "bulma-carousel",
13
+ "escapedName": "bulma-carousel",
14
+ "rawSpec": "",
15
+ "saveSpec": null,
16
+ "fetchSpec": "latest"
17
+ },
18
+ "_requiredBy": [
19
+ "#USER",
20
+ "/"
21
+ ],
22
+ "_resolved": "https://registry.npmjs.org/bulma-carousel/-/bulma-carousel-4.0.24.tgz",
23
+ "_shasum": "fa0e56650fccc77d44b05628a941287ba7aadc5b",
24
+ "_spec": "bulma-carousel",
25
+ "_where": "C:\\Users\\marc\\Desktop\\Git-Projekte\\dchwilk.github.io",
26
+ "author": {
27
+ "name": "Wikiki",
28
+ "email": "wikiki@protonmail.com",
29
+ "url": "https://wikiki.github.io/bulma-extensions/overview"
30
+ },
31
+ "bugs": {
32
+ "url": "https://github.com/Wikiki/bulma-carousel/issues"
33
+ },
34
+ "bundleDependencies": false,
35
+ "config": {
36
+ "commitizen": {
37
+ "path": "node_modules/cz-conventional-changelog"
38
+ }
39
+ },
40
+ "deprecated": false,
41
+ "description": "Display a Image / Content carousel",
42
+ "devDependencies": {
43
+ "ansi-colors": "^2.0.1",
44
+ "autoprefixer": "^8.6.2",
45
+ "babel-core": "^6.26.3",
46
+ "babel-jest": "^23.0.1",
47
+ "babel-loader": "^7.1.4",
48
+ "babel-plugin-transform-object-rest-spread": "^6.26.0",
49
+ "babel-preset-env": "^1.7.0",
50
+ "browser-sync": "^2.26.3",
51
+ "bulma": "^0.7.1",
52
+ "camelcase": "^5.0.0",
53
+ "commitizen": "^2.10.1",
54
+ "cz-conventional-changelog": "^2.1.0",
55
+ "del": "^3.0.0",
56
+ "event-stream": "^4.0.1",
57
+ "fancy-log": "^1.3.2",
58
+ "gulp": "^4.0.0",
59
+ "gulp-autoprefixer": "^5.0.0",
60
+ "gulp-clean-css": "^3.9.4",
61
+ "gulp-concat": "^2.6.1",
62
+ "gulp-nop": "0.0.3",
63
+ "gulp-postcss": "^7.0.1",
64
+ "gulp-run": "^1.7.1",
65
+ "gulp-sass": "^4.0.1",
66
+ "gulp-uglify": "^3.0.0",
67
+ "jest": "^23.1.0",
68
+ "regenerator-runtime": "^0.11.1",
69
+ "semantic-release": "^15.5.2",
70
+ "travis-deploy-once": "^5.0.0",
71
+ "webpack": "^4.12.0",
72
+ "webpack-stream": "^4.0.3"
73
+ },
74
+ "files": [
75
+ "dist/**",
76
+ "src/**",
77
+ "LICENSE",
78
+ "README.md"
79
+ ],
80
+ "homepage": "https://github.com/Wikiki/bulma-carousel#readme",
81
+ "keywords": [
82
+ "creativebulma",
83
+ "bulma.io",
84
+ "bulma",
85
+ "extension",
86
+ "carousel",
87
+ "slideshow"
88
+ ],
89
+ "license": "MIT",
90
+ "main": "dist/js/bulma-carousel.js",
91
+ "name": "bulma-carousel",
92
+ "repository": {
93
+ "type": "git",
94
+ "url": "git+https://github.com/Wikiki/bulma-carousel.git"
95
+ },
96
+ "sass": "src/sass/index.sass",
97
+ "scripts": {
98
+ "build": "gulp",
99
+ "commit": "git-cz",
100
+ "precommit": "npm test",
101
+ "semantic-release": "semantic-release",
102
+ "test": "jest test/index.test.js",
103
+ "travis-deploy-once": "travis-deploy-once",
104
+ "watch:test": "jest test/index.test.js -w"
105
+ },
106
+ "style": "dist/css/bulma-carousel.min.css",
107
+ "version": "4.0.24"
108
+ }
@@ -0,0 +1,15 @@
1
+ - name: 'before:show'
2
+ description: 'Triggered before showing item'
3
+ parameters: 'bulmaCarousel State object instance'
4
+ - name: 'show'
5
+ description: 'Triggered when item is displayed'
6
+ parameters: 'bulmaCarousel State object instance'
7
+ - name: 'after:show'
8
+ description: 'Triggered once item has been displayed'
9
+ parameters: 'bulmaCarousel State object instance'
10
+ - name: 'start'
11
+ description: 'Triggered when autoplay start'
12
+ parameters: 'bulmaCarousel State object instance'
13
+ - name: 'stop'
14
+ description: 'Triggered when autoplay stop'
15
+ parameters: 'bulmaCarousel State object instance'
@@ -0,0 +1,26 @@
1
+ - name: 'id'
2
+ description: 'Get component instance ID'
3
+ - name: 'index'
4
+ description: 'Get active item index'
5
+ - name: 'length'
6
+ description: 'Get number of items'
7
+ - name: 'slides'
8
+ description: 'Get all items as array'
9
+ - name: 'slidesToScroll'
10
+ description: 'Get current slidesToScroll'
11
+ - name: 'slidesToShow'
12
+ description: 'Get current slidesToShow'
13
+ - name: 'direction'
14
+ description: 'Get direction (rtl or ltr)'
15
+ - name: 'wrapper'
16
+ description: 'Get Carousel wrapper'
17
+ - name: 'wrapperWidth'
18
+ description: 'Get Carousel wrapper width'
19
+ - name: 'container'
20
+ description: 'Get Carousel container'
21
+ - name: 'containerWidth'
22
+ description: 'Get Carousel container width'
23
+ - name: 'slideWidth'
24
+ description: 'Get slide with'
25
+ - name: 'transitioner'
26
+ description: 'Get transitioner'
@@ -0,0 +1,26 @@
1
+ - name: Demonstrations
2
+ link: 'demonstration'
3
+ - name: Quick Start
4
+ submenus:
5
+ - name: Features
6
+ link: '#features'
7
+ - name: Installation
8
+ link: '#installation'
9
+ - name: Starter Template
10
+ link: '#starter-template'
11
+ - name: Integration
12
+ link: '#integration'
13
+ - name: Options
14
+ link: '#options'
15
+ - name: Methods
16
+ link: '#methods'
17
+ - name: Getters
18
+ link: '#getters'
19
+ - name: Setters
20
+ link: '#setters'
21
+ - name: Events
22
+ link: '#events'
23
+ - name: Customization
24
+ link: 'customization'
25
+ - name: Changelog
26
+ link: 'changelog'
@@ -0,0 +1,57 @@
1
+ - name: 'next()'
2
+ description: 'Slide to next item'
3
+ parameters:
4
+ - name: 'none'
5
+ type: ''
6
+ description: ''
7
+ returns:
8
+ - type: 'none'
9
+ description: ''
10
+ - name: 'previous()'
11
+ description: 'Slide to previous item'
12
+ parameters:
13
+ - name: 'none'
14
+ type: ''
15
+ description: ''
16
+ returns:
17
+ - type: 'none'
18
+ description: ''
19
+ - name: 'start()'
20
+ description: 'Start autoplay'
21
+ parameters:
22
+ - name: 'none'
23
+ type: ''
24
+ description: ''
25
+ returns:
26
+ - type: 'none'
27
+ description: ''
28
+ - name: 'stop()'
29
+ description: 'Stop autoplay'
30
+ parameters:
31
+ - name: 'none'
32
+ type: ''
33
+ description: ''
34
+ returns:
35
+ - type: 'none'
36
+ description: ''
37
+ - name: 'show(index, force)'
38
+ description: 'Show item at "index" a'
39
+ parameters:
40
+ - name: 'index'
41
+ type: 'Integer|null'
42
+ description: 'Index of item to show'
43
+ - name: 'force'
44
+ type: 'Boolean'
45
+ description: 'Animate transition if true (default) or not if false'
46
+ returns:
47
+ - type: 'none'
48
+ description: ''
49
+ - name: 'reset()'
50
+ description: 'Reset Carousel to initial values'
51
+ parameters:
52
+ - name: 'none'
53
+ type: ''
54
+ description: ''
55
+ returns:
56
+ - type: 'none'
57
+ description: ''
@@ -0,0 +1,79 @@
1
+ - name: 'initialSlide'
2
+ type: Integer
3
+ description: 'Initial item index'
4
+ value: '0'
5
+ - name: 'slidesToScroll'
6
+ type: Integer
7
+ description: 'Slide to scroll on each step'
8
+ value: '1'
9
+ - name: 'slidesToShow'
10
+ type: Integer
11
+ description: 'Slides to show at a time'
12
+ value: '1'
13
+ - name: 'navigation'
14
+ type: Boolean
15
+ description: 'Display navigation buttons'
16
+ value: 'true'
17
+ - name: 'navigationKeys'
18
+ type: Boolean
19
+ description: 'Enable navigation with arrow keys'
20
+ value: 'true'
21
+ - name: 'navigationSwipe'
22
+ type: Boolean
23
+ description: 'Enable swipe navigation'
24
+ value: 'true'
25
+ - name: 'pagination'
26
+ type: Boolean
27
+ description: 'Display pagination bullets'
28
+ value: 'true'
29
+ - name: 'loop'
30
+ type: Boolean
31
+ description: 'Activate loop display mode'
32
+ value: 'false'
33
+ - name: 'infinite'
34
+ type: Boolean
35
+ description: 'Activate infinite display mode'
36
+ value: 'false'
37
+ - name: 'effect'
38
+ type: String
39
+ description: 'Animation effect for item transition (translate|fade)'
40
+ value: 'translate'
41
+ - name: 'duration'
42
+ type: Integer
43
+ description: 'Transition animation duration (in ms)'
44
+ value: '300'
45
+ - name: 'timing'
46
+ type: String
47
+ description: 'Transiation animation type'
48
+ value: 'ease'
49
+ - name: 'autoplay'
50
+ type: Boolean
51
+ description: 'Autoplay carousel'
52
+ value: 'false'
53
+ - name: 'autoplaySpeed'
54
+ type: Integer
55
+ description: 'Time between each transition when autoplay is active (ms)'
56
+ value: '3000'
57
+ - name: 'pauseOnHover'
58
+ type: Boolean
59
+ description: 'Stop autoplay when cursor hover carousel'
60
+ value: 'true'
61
+ - name: 'breakpoints'
62
+ type: Array
63
+ description: 'List all breakpoints for responsiveness'
64
+ value: '[{
65
+ changePoint: 480,
66
+ slidesToShow: 1,
67
+ slidesToScroll: 1
68
+ },
69
+ {
70
+ changePoint: 640,
71
+ slidesToShow: 2,
72
+ slidesToScroll: 2
73
+ },
74
+ {
75
+ changePoint: 768,
76
+ slidesToShow: 3,
77
+ slidesToScroll: 3
78
+ }
79
+ ]'
@@ -0,0 +1,30 @@
1
+ - name: dist
2
+ open: true
3
+ subtree:
4
+ - name: css
5
+ open: true
6
+ subtree:
7
+ - name: bulma-carousel.min.css
8
+ details: Minified version of all required CSS in one file
9
+ - name: bulma-carousel.sass
10
+ details: Copy of Sass sources from src/
11
+ - name: js
12
+ open: true
13
+ subtree:
14
+ - name: bulma-carousel.js
15
+ details: JavaScript code
16
+ - name: bulma-carousel.min.js
17
+ details: Minified version of JavaScript code
18
+ - name: src
19
+ open: true
20
+ subtree:
21
+ - name: js
22
+ open: true
23
+ subtree:
24
+ - name: index.js
25
+ details: Javascript ES6 source code
26
+ - name: sass
27
+ open: true
28
+ subtree:
29
+ - name: index.sass
30
+ details: SASS source code
@@ -0,0 +1,3 @@
1
+ <a href="#{{ include.name | slugify }}" id="{{ include.name | slugify }}" class="title is-3 is-spaced anchor">
2
+ <span class="anchor-name">{{ include.name }}</span>
3
+ </a>
@@ -0,0 +1,5 @@
1
+ <nav class="breadcrumb" aria-label="breadcrumbs">
2
+ <ul>
3
+ <li><a href="{{ site.url }}/">Documentation</a></li>
4
+ </ul>
5
+ </nav>
@@ -0,0 +1,33 @@
1
+ <div class="table-container">
2
+ <table class="table is-bordered {{ table_class }}">
3
+ <thead>
4
+ <tr>
5
+ <th>Name</th>
6
+ <th>Description</th>
7
+ <th>Values</th>
8
+ </tr>
9
+ </thead>
10
+ <tfoot>
11
+ <tr>
12
+ <th>Name</th>
13
+ <th>Description</th>
14
+ <th>Values</th>
15
+ </tr>
16
+ </tfoot>
17
+ <tbody>
18
+ {% for event in site.data.events %}
19
+ <tr>
20
+ <td>
21
+ <code style="white-space: nowrap;">{{ event.name }}</code>
22
+ </td>
23
+ <td>
24
+ <span>{{ event.description }}</span>
25
+ </td>
26
+ <td>
27
+ <code>{{ event.parameters }}</code>
28
+ </td>
29
+ </tr>
30
+ {% endfor %}
31
+ </tbody>
32
+ </table>
33
+ </div>
@@ -0,0 +1,28 @@
1
+ <div class="table-container">
2
+ <table class="table is-bordered {{ table_class }}">
3
+ <thead>
4
+ <tr>
5
+ <th>Name</th>
6
+ <th>Description</th>
7
+ </tr>
8
+ </thead>
9
+ <tfoot>
10
+ <tr>
11
+ <th>Name</th>
12
+ <th>Description</th>
13
+ </tr>
14
+ </tfoot>
15
+ <tbody>
16
+ {% for getter in site.data.getters %}
17
+ <tr>
18
+ <td>
19
+ <code style="white-space: nowrap;">{{ getter.name }}</code>
20
+ </td>
21
+ <td>
22
+ <span>{{ getter.description }}</span>
23
+ </td>
24
+ </tr>
25
+ {% endfor %}
26
+ </tbody>
27
+ </table>
28
+ </div>
@@ -0,0 +1,22 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ <meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
6
+
7
+ <title>Documentation</title>
8
+
9
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
10
+
11
+ <link href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.min.css" rel="stylesheet">
12
+ <link href="{{ site.url }}/assets/css/highlight.css" rel="stylesheet">
13
+ <link href="{{ site.url }}/assets/css/documentation.min.css" rel="stylesheet">
14
+ <link href="{{ site.url }}/assets/css/bulma-carousel.min.css" rel="stylesheet">
15
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
16
+ crossorigin="anonymous">
17
+
18
+ <!-- Load Font Awesome 5 -->
19
+ <script defer src="https://use.fontawesome.com/releases/v5.7.1/js/all.js"></script>
20
+
21
+ <script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
22
+ </head>
@@ -0,0 +1,22 @@
1
+
2
+ <ul class="menu-list">
3
+ {% for menu in site.data.menu %}
4
+ {% if menu.submenus %}
5
+ <li class="menu-item has-dropdown">
6
+ <a class="menu-title">
7
+ {{ menu.name }}
8
+ <span class="menu-caret"></span>
9
+ </a>
10
+ <ul class="menu-dropdown">
11
+ {% for submenu in menu.submenus %}
12
+ <li><a class="menu-item{% if page.route == submenu.link %} is-active{% endif %}" href="{{ site.url }}/{{ submenu.link }}">{{ submenu.name }}</a></li>
13
+ {% endfor %}
14
+ </ul>
15
+ </li>
16
+ {% else %}
17
+ <li>
18
+ <a class="menu-item{% if page.route == submenu.link %} is-active{% endif %}" href="{{ site.url }}/{{ menu.link }}">{{ menu.name }}</a>
19
+ </li>
20
+ {% endif %}
21
+ {% endfor %}
22
+ </ul>
@@ -0,0 +1,49 @@
1
+ {% for method in site.data.methods %}
2
+ <div class="table-container">
3
+ <table class="table is-bordered is-fullwidth {{ table_class }}">
4
+ <thead>
5
+ <tr>
6
+ <th colspan="3">{{method.name}}</th>
7
+ </tr>
8
+ <tr>
9
+ <th colspan="3"><span class="has-text-weight-light">{{method.description}}</span></th>
10
+ </tr>
11
+ </thead>
12
+ <tbody>
13
+ <tr>
14
+ <td colspan="3">
15
+ <span class="title is-7">Parameters</span>
16
+ </td>
17
+ </tr>
18
+ {% for parameter in method.parameters %}
19
+ <tr>
20
+ <td>
21
+ <code style="white-space: nowrap;">{{ parameter.name }}</code>
22
+ </td>
23
+ <td>
24
+ <span>{{ parameter.type }}</span>
25
+ </td>
26
+ <td>
27
+ <span>{{ parameter.description }}</span>
28
+ </td>
29
+ </tr>
30
+ {% endfor %}
31
+ <tr>
32
+ <td colspan="3">
33
+ <span class="title is-7">Return values</span>
34
+ </td>
35
+ </tr>
36
+ {% for return in method.returns %}
37
+ <tr>
38
+ <td>
39
+ <code style="white-space: nowrap;">{{ return.type }}</code>
40
+ </td>
41
+ <td colspan="2">
42
+ <span>{{ return.description }}</span>
43
+ </td>
44
+ </tr>
45
+ {% endfor %}
46
+ </tbody>
47
+ </table>
48
+ </div>
49
+ {% endfor %}
@@ -0,0 +1,33 @@
1
+ <div class="table-container">
2
+ <table class="table is-bordered {{ table_class }}">
3
+ <thead>
4
+ <tr>
5
+ <th>Name</th>
6
+ <th>Description</th>
7
+ <th>Default value</th>
8
+ </tr>
9
+ </thead>
10
+ <tfoot>
11
+ <tr>
12
+ <th>Name</th>
13
+ <th>Description</th>
14
+ <th>Default value</th>
15
+ </tr>
16
+ </tfoot>
17
+ <tbody>
18
+ {% for option in site.data.options %}
19
+ <tr>
20
+ <td >
21
+ <code style="white-space: nowrap;">{{ option.name }}</code>
22
+ </td>
23
+ <td >
24
+ {{ option.description }}
25
+ </td>
26
+ <td>
27
+ <code>{{ option.value }}</code>
28
+ </td>
29
+ </tr>
30
+ {% endfor %}
31
+ </tbody>
32
+ </table>
33
+ </div>
@@ -0,0 +1,28 @@
1
+ <div class="table-container">
2
+ <table class="table is-bordered {{ table_class }}">
3
+ <thead>
4
+ <tr>
5
+ <th>Name</th>
6
+ <th>Description</th>
7
+ </tr>
8
+ </thead>
9
+ <tfoot>
10
+ <tr>
11
+ <th>Name</th>
12
+ <th>Description</th>
13
+ </tr>
14
+ </tfoot>
15
+ <tbody>
16
+ {% for setter in site.data.setters %}
17
+ <tr>
18
+ <td>
19
+ <code style="white-space: nowrap;">{{ setter.name }}</code>
20
+ </td>
21
+ <td>
22
+ <span>{{ setter.description }}</span>
23
+ </td>
24
+ </tr>
25
+ {% endfor %}
26
+ </tbody>
27
+ </table>
28
+ </div>
@@ -0,0 +1,25 @@
1
+ <ul>
2
+ {% for item in site.data.tree %}
3
+ {% if item.subtree %}
4
+ <li class="is-folder {% if item.open %}is-open{% endif %}">
5
+ <span>
6
+ {% if item.name %}{{ item.name }}{% endif %}
7
+ </span>
8
+ {% if item.details %}
9
+ <i>{{ item.details }}</i>
10
+ {% endif %}
11
+ {% include tree.html tree=item.subtree %}
12
+ </li>
13
+ {% else %}
14
+ <li class="is-file">
15
+ <span>
16
+ {% if item.name %}{{ item.name }}{% endif %}
17
+ </span>
18
+ {% if item.details %}
19
+ <i>{{ item.details }}</i>
20
+ {% endif %}
21
+ </li>
22
+ {% endif %}
23
+
24
+ {% endfor %}
25
+ </ul>
@@ -0,0 +1,28 @@
1
+ <div class="table-container">
2
+ <table class="table is-bordered {{ table_class }}">
3
+ <thead>
4
+ <tr>
5
+ <th>Name</th>
6
+ <th>Default value</th>
7
+ </tr>
8
+ </thead>
9
+ <tfoot>
10
+ <tr>
11
+ <th>Name</th>
12
+ <th>Default value</th>
13
+ </tr>
14
+ </tfoot>
15
+ <tbody>
16
+ {% for variable in page.variables %}
17
+ <tr>
18
+ <td >
19
+ <code style="white-space: nowrap;">{{ variable.name }}</code>
20
+ </td>
21
+ <td>
22
+ <code>{{ variable.value }}</code>
23
+ </td>
24
+ </tr>
25
+ {% endfor %}
26
+ </tbody>
27
+ </table>
28
+ </div>