-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update fomantic-ui to 2.8.3 + support fileMaxSize on fileuploader
- Loading branch information
Showing
173 changed files
with
18,820 additions
and
15,203 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"/css/app.css": "/css/app.css?id=84c9515032f958dd16e4", | ||
"/js/all.js": "/js/all.js?id=44dc54f58eb1e7cd60e7", | ||
"/js/all.js": "/js/all.js?id=34709c61a4505a9416fa", | ||
"/css/all.css": "/css/all.css?id=4b3a003417c65cef7fc1", | ||
"/semantic/semantic.min.css": "/semantic/semantic.min.css?id=2a6f167e594f0513e5b8" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,5 @@ | |
"permission": false, | ||
"autoInstall": false, | ||
"rtl": false, | ||
"version": "2.7.8" | ||
"version": "2.8.3" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
/******************************* | ||
* Set-up | ||
*******************************/ | ||
|
||
var | ||
gulp = require('gulp'), | ||
|
||
// read user config to know what task to load | ||
config = require('./tasks/config/user') | ||
; | ||
|
||
|
||
/******************************* | ||
* Tasks | ||
*******************************/ | ||
|
||
require('./tasks/collections/build')(gulp); | ||
require('./tasks/collections/install')(gulp); | ||
|
||
gulp.task('default', gulp.series('watch')); | ||
|
||
/*-------------- | ||
Docs | ||
---------------*/ | ||
|
||
require('./tasks/collections/docs')(gulp); | ||
|
||
/*-------------- | ||
RTL | ||
---------------*/ | ||
|
||
if (config.rtl) { | ||
require('./tasks/collections/rtl')(gulp); | ||
/******************************* | ||
* Set-up | ||
*******************************/ | ||
|
||
var | ||
gulp = require('gulp'), | ||
|
||
// read user config to know what task to load | ||
config = require('./tasks/config/user') | ||
; | ||
|
||
|
||
/******************************* | ||
* Tasks | ||
*******************************/ | ||
|
||
require('./tasks/collections/build')(gulp); | ||
require('./tasks/collections/install')(gulp); | ||
|
||
gulp.task('default', gulp.series('watch')); | ||
|
||
/*-------------- | ||
Docs | ||
---------------*/ | ||
|
||
require('./tasks/collections/docs')(gulp); | ||
|
||
/*-------------- | ||
RTL | ||
---------------*/ | ||
|
||
if (config.rtl) { | ||
require('./tasks/collections/rtl')(gulp); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,77 @@ | ||
/******************************* | ||
Import Directives | ||
*******************************/ | ||
|
||
/*------------------ | ||
Theme | ||
-------------------*/ | ||
|
||
@theme: @@element; | ||
|
||
/*-------------------- | ||
Site Variables | ||
---------------------*/ | ||
|
||
/* Default site.variables */ | ||
@import "@{themesFolder}/default/globals/site.variables"; | ||
|
||
/* Packaged site.variables */ | ||
@import "@{themesFolder}/@{site}/globals/site.variables"; | ||
|
||
/* Component's site.variables */ | ||
@import (optional) "@{themesFolder}/@{theme}/globals/site.variables"; | ||
|
||
/* Site theme site.variables */ | ||
@import (optional) "@{siteFolder}/globals/site.variables"; | ||
|
||
|
||
/*------------------- | ||
Component Variables | ||
---------------------*/ | ||
|
||
/* Default */ | ||
@import "@{themesFolder}/default/@{type}s/@{element}.variables"; | ||
|
||
/* Packaged Theme */ | ||
@import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.variables"; | ||
|
||
/* Site Theme */ | ||
@import (optional) "@{siteFolder}/@{type}s/@{element}.variables"; | ||
|
||
|
||
/*------------------------- | ||
Central Color Map | ||
-------------------------*/ | ||
|
||
/* Default */ | ||
@import "@{themesFolder}/default/globals/colors.less"; | ||
|
||
/* Site Theme */ | ||
@import (optional) "@{themesFolder}/@{site}/globals/colors.less"; | ||
|
||
|
||
/******************************* | ||
Mix-ins | ||
*******************************/ | ||
|
||
/*------------------ | ||
Fonts | ||
-------------------*/ | ||
|
||
.loadFonts() when (@importGoogleFonts) { | ||
@import (css) url('@{googleProtocol}fonts.googleapis.com/css?family=@{googleFontRequest}'); | ||
} | ||
|
||
/*------------------ | ||
Overrides | ||
-------------------*/ | ||
|
||
.loadUIOverrides() { | ||
& when not (@theme = 'default') { | ||
@import (optional) "@{themesFolder}/default/@{type}s/@{element}.overrides"; | ||
} | ||
@import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.overrides"; | ||
@import (optional) "@{siteFolder}/@{type}s/@{element}.overrides"; | ||
} | ||
/******************************* | ||
Import Directives | ||
*******************************/ | ||
|
||
/*------------------ | ||
Theme | ||
-------------------*/ | ||
|
||
@theme: @@element; | ||
|
||
/*-------------------- | ||
Site Variables | ||
---------------------*/ | ||
|
||
/* Default site.variables */ | ||
@import "@{themesFolder}/default/globals/site.variables"; | ||
|
||
/* Packaged site.variables */ | ||
@import (optional) "@{themesFolder}/@{site}/globals/site.variables"; | ||
|
||
/* Component's site.variables */ | ||
& when not (@theme = 'default') { | ||
@import (optional) "@{themesFolder}/@{theme}/globals/site.variables"; | ||
} | ||
|
||
/* Site theme site.variables */ | ||
@import (optional) "@{siteFolder}/globals/site.variables"; | ||
|
||
|
||
/*------------------- | ||
Component Variables | ||
---------------------*/ | ||
|
||
/* Default */ | ||
@import "@{themesFolder}/default/@{type}s/@{element}.variables"; | ||
|
||
/* Packaged Theme */ | ||
@import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.variables"; | ||
|
||
/* Site Theme */ | ||
@import (optional) "@{siteFolder}/@{type}s/@{element}.variables"; | ||
|
||
|
||
/*------------------------- | ||
Central Color Map | ||
-------------------------*/ | ||
|
||
/* Default */ | ||
@import "@{themesFolder}/default/globals/colors.less"; | ||
|
||
/* Site Theme */ | ||
@import (optional) "@{themesFolder}/@{site}/globals/colors.less"; | ||
|
||
|
||
/******************************* | ||
Mix-ins | ||
*******************************/ | ||
|
||
/*------------------ | ||
Fonts | ||
-------------------*/ | ||
|
||
.loadFonts() when (@importGoogleFonts) { | ||
@import (css) url('@{googleProtocol}fonts.googleapis.com/css?family=@{googleFontRequest}'); | ||
} | ||
|
||
/*------------------ | ||
Overrides | ||
-------------------*/ | ||
|
||
.loadUIOverrides() { | ||
& when not (@theme = 'default') { | ||
@import (optional) "@{themesFolder}/default/@{type}s/@{element}.overrides"; | ||
} | ||
@import (optional) "@{themesFolder}/@{theme}/@{type}s/@{element}.overrides"; | ||
@import (optional) "@{siteFolder}/@{type}s/@{element}.overrides"; | ||
} |
Binary file not shown.
Oops, something went wrong.