Skip to content

Commit

Permalink
Merge pull request #8400 from zurb/customizer
Browse files Browse the repository at this point in the history
Customizer Updates
  • Loading branch information
kball committed Mar 30, 2016
2 parents c42fa9d + 02711b7 commit af2be14
Show file tree
Hide file tree
Showing 11 changed files with 683 additions and 89 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -15,6 +15,7 @@
.sass-cache/*
.yardoc
_build
.customizer

bower_components
bundle
Expand Down
46 changes: 46 additions & 0 deletions customizer/complete.json
@@ -0,0 +1,46 @@
{
"modules": [
"grid",
"typography",
"button",
"forms",
"abide",
"accordion",
"accordion_menu",
"badge",
"breadcrumbs",
"button_group",
"callout",
"close_button",
"menu",
"menu_icon",
"drilldown_menu",
"dropdown",
"dropdown_menu",
"equalizer",
"flex_video",
"interchange",
"label",
"magellan",
"media_object",
"off_canvas",
"orbit",
"pagination",
"progress_bar",
"responsive_menu",
"responsive_toggle",
"reveal",
"slider",
"sticky",
"switch",
"table",
"tabs",
"thumbnail",
"title_bar",
"toggler",
"tooltip",
"top_bar",
"visibility",
"float"
]
}
204 changes: 204 additions & 0 deletions customizer/config.yml
@@ -0,0 +1,204 @@
# This is the customizer's master module list.
# Each item in the list is a module with any of these keys:
# - sass: Name of the CSS export. 'grid' becomes '@include foundation-grid;'
# - js: Name of the JavaScript file. 'accordion' becomes 'foundation.accordion.js'
# - js_utils: Names of plugin dependencies. 'box' becomes 'foundation.util.box.js'

grid:
sass: grid

typography:
sass: typography

button:
sass: button

forms:
sass: forms

input_range:
sass: range-input

abide:
js: abide

accordion:
sass: accordion
js: accordion
js_utils:
- keyboard
- motion

accordion_menu:
sass: accordion-menu
js: accordionMenu
js_utils:
- keyboard
- motion
- nest

badge:
sass: badge

breadcrumbs:
sass: breadcrumbs

button_group:
sass: button-group

callout:
sass: callout

close_button:
sass: close-button

drilldown_menu:
sass: drilldown-menu
js: drilldown
js_utils:
- keyboard
- motion
- nest

dropdown:
sass: dropdown
js: dropdown
js_utils:
- keyboard
- box
- triggers

dropdown_menu:
sass: dropdown-menu
js: dropdownMenu
js_utils:
- keyboard
- motion
- box
- nest

equalizer:
js: equalizer

flex_video:
sass: flex-video

interchange:
js: interchange
js_utils:
- triggers
- timerAndImageLoader

label:
sass: label

magellan:
js: magellan
js_utils:
- motion

media_object:
sass: media-object

menu:
sass: menu

off_canvas:
sass: off-canvas
js: offcanvas

orbit:
sass: orbit
js: orbit
js_utils:
- motion
- timerAndImageLoader
- keyboard
- touch

progress_bar:
sass: progress-bar

progress_element:
sass: progress-element

responsive_menu:
js: responsiveMenu
js_utils:
- triggers
- mediaQuery

responsive_toggle:
js: responsiveToggle
js_utils:
- mediaQuery

meter_element:
sass: meter-element

slider:
sass: slider
js: slider
js_utils:
- box
- motion
- triggers
- mediaQuery

sticky:
sass: sticky
js: sticky
js_utils:
- triggers
- mediaQuery

reveal:
sass: reveal
js: reveal
js_utils:
- box
- motion
- triggers
- mediaQuery

switch:
sass: switch

table:
sass: table

tabs:
sass: tabs
js: tabs
js_utils:
- keyboard
- timerAndImageLoader

thumbnail:
sass: thumbnail

title_bar:
sass: title-bar

toggler:
js: toggler
js_utils:
- motion

tooltip:
sass: tooltip
js: tooltip
js_utils:
- box
- triggers
- mediaQuery
- motion

top_bar:
sass: top-bar

visibility:
sass: visibility-classes

float:
sass: float-classes
11 changes: 11 additions & 0 deletions customizer/essential.json
@@ -0,0 +1,11 @@
{
"modules": [
"typography",
"grid",
"forms",
"button",
"callout",
"reveal"
],
"variables": {}
}

0 comments on commit af2be14

Please sign in to comment.