Skip to content

Commit

Permalink
gh-pages v3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
JLLeitschuh committed Aug 26, 2015
1 parent 17bc0bb commit cd18cd9
Show file tree
Hide file tree
Showing 47 changed files with 30,582 additions and 211 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
</button>


<a href="http://ui-grid.info" class="navbar-brand">UI Grid</a>
<a href="http://127.0.0.1:9003" class="navbar-brand">UI Grid</a>

</div>

Expand Down
6 changes: 3 additions & 3 deletions docs/js/docs-setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ NG_DOCS={
"shortName": "ui.grid.autoResize",
"type": "overview",
"moduleName": "ui.grid.autoResize",
"shortDescription": "#ui.grid.autoResize",
"shortDescription": "ui.grid.autoResize",
"keywords": "alert alert-warning api auto-resizing autoresize bugs class feature functionality grid hasn lot module overview ready role testing ui ui-grid"
},
{
Expand All @@ -37,7 +37,7 @@ NG_DOCS={
"shortName": "ui.grid.cellNav",
"type": "overview",
"moduleName": "ui.grid.cellNav",
"shortDescription": "#ui.grid.cellNav",
"shortDescription": "ui.grid.cellNav",
"keywords": "alert alert-success api auto-resizing breaking cellnav changes class deprecation feature functionality grid longer module overview role stable ui ui-grid warning"
},
{
Expand Down Expand Up @@ -910,7 +910,7 @@ NG_DOCS={
"shortName": "ui.grid.infiniteScroll",
"type": "overview",
"moduleName": "ui.grid.infiniteScroll",
"shortDescription": "#ui.grid.infiniteScroll",
"shortDescription": "ui.grid.infiniteScroll",
"keywords": "alert alert-warning api bugs class feature functionality grid hasn infinite infinitescroll lot module overview ready role scroll testing ui ui-grid"
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/partials/api/ui.grid.autoResize.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div><span class="hint"></span>
</div>
</h1>
<div><div class="ui-grid-autoresize-page"><p>#ui.grid.autoResize</p>
<div><div class="ui-grid-autoresize-page"><h2 id="uigridautoresize">ui.grid.autoResize</h2>
<div class="alert alert-warning" role="alert"><strong>Beta</strong> This feature is ready for testing, but it either hasn&#39;t seen a lot of use or has some known bugs.</div>

<p>This module provides auto-resizing functionality to UI-Grid.</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/partials/api/ui.grid.cellNav.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div><span class="hint"></span>
</div>
</h1>
<div><div class="ui-grid-cellnav-page"><p>#ui.grid.cellNav</p>
<div><div class="ui-grid-cellnav-page"><h2 id="uigridcellnav">ui.grid.cellNav</h2>
<div class="alert alert-success" role="alert"><strong>Stable</strong> This feature is stable. There should no longer be breaking api changes without a deprecation warning.</div>

<p>This module provides auto-resizing functionality to UI-Grid.</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/partials/api/ui.grid.infiniteScroll.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div><span class="hint"></span>
</div>
</h1>
<div><div class="ui-grid-infinitescroll-page"><p>#ui.grid.infiniteScroll</p>
<div><div class="ui-grid-infinitescroll-page"><h2 id="uigridinfinitescroll">ui.grid.infiniteScroll</h2>
<div class="alert alert-warning" role="alert"><strong>Beta</strong> This feature is ready for testing, but it either hasn&#39;t seen a lot of use or has some known bugs.</div>

<p>This module provides infinite scroll functionality to ui-grid</p>
Expand Down
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ <h1 class="text-center">Angular UI Grid</h1>
Code on Github
</a>

<a class="btn btn-danger btn-large" href="https://github.com/angular-ui/ui-grid.info/tree/gh-pages/release" title="Download 3.0.4-f2ed365">
<a class="btn btn-danger btn-large" href="https://github.com/angular-ui/ui-grid.info/tree/gh-pages/release" title="Download 3.0.5">
<i class="fa fa-download fa-fw"></i>
<!-- Download <small>( 3.0.4 / 3.0.4-f2ed365 )</small> --> <!-- TODO(c0bra): note: not showing stable version till 3.0.0 is released -->
<!-- Download <small>( 3.0.5 / 3.0.5 )</small> --> <!-- TODO(c0bra): note: not showing stable version till 3.0.0 is released -->

Download <small>( 3.0.4-f2ed365 )</small>
Download <small>( 3.0.5 )</small>
</a>

<a class="btn btn-success btn-large" href="/docs/#/tutorial" title="Tutorial">
Expand Down
85 changes: 85 additions & 0 deletions release/3.0.5/less/animation.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
Animation example, for spinners
*/
.ui-grid-animate-spin {
-moz-animation: ui-grid-spin 2s infinite linear;
-o-animation: ui-grid-spin 2s infinite linear;
-webkit-animation: ui-grid-spin 2s infinite linear;
animation: ui-grid-spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes ui-grid-spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-webkit-keyframes ui-grid-spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-o-keyframes ui-grid-spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@-ms-keyframes ui-grid-spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes ui-grid-spin {
0% {
-moz-transform: rotate(0deg);
-o-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}

100% {
-moz-transform: rotate(359deg);
-o-transform: rotate(359deg);
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
76 changes: 76 additions & 0 deletions release/3.0.5/less/body.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@

.ui-grid-render-container {
position: inherit;
// overflow: hidden;

.border-radius(0, @gridBorderRadius, @gridBorderRadius, 0);

// Prevent an outline from showing if we focus the render container element
&:focus {
outline: none;
}
}

.ui-grid-viewport {
// overflow: auto; // TODO(c0bra): turn back on when virtual repeater is hooked up
min-height: 20px;
position: relative;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;

&:focus {
outline: none !important;
}
}

.ui-grid-canvas {
position: relative;
padding-top:1px; //to prevent canvas from absorbing the 1st rendered row's margin
}

.ui-grid-row {
//position: absolute;
// border-bottom: 1px solid @borderColor;

&:nth-child(odd) .ui-grid-cell {
background-color: @rowColorOdd; //rgb(253, 253, 253);
}

&:nth-child(even) .ui-grid-cell {
background-color: @rowColorEven;
}

&:last-child .ui-grid-cell {
border-bottom-color: @borderColor;
border-bottom-style: solid;

}
}

.ui-grid-no-row-overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: 10%;

.ui-grid-top-panel-background;
.border-radius(@gridBorderRadius);
border: @gridBorderWidth solid @borderColor;

font-size: 2em;
text-align: center;

> * {
position: absolute;
display: table;
margin: auto 0;
width: 100%;
top: 0;
bottom: 0;
left: 0;
right: 0;
opacity: 0.66;
}
}
78 changes: 78 additions & 0 deletions release/3.0.5/less/bootstrap/bootstrap.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/*!
* Bootstrap v3.3.5 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/

/****** NOTE: IMPORTANT INFORMATION ABOUT USING THIS FILE *********\
* If you are importing this file then use `@import (reference) '..../bootstrap'`
* ENSURE that you use the (refrerence)
* WHY? Because otherwise you will import the entire contents of less bootstrap
*
* How does this work?
* All of the bootstrap less elements are namespaced under `#ui-grid-twbs`
* This prevents the CSS generated using this file from conflicting with a project's
* import of bootstrap.
*
* XXX: Why are so many of these imports commented out?
* There are several issues with the `extend` function in less.
* Using extend, even within an import that only has a reference will import that
* css element. This causes bloat in the distributed css files.
* Related Issues:
* https://github.com/less/less.js/issues/1968
* https://github.com/less/less.js/issues/1851
*
* If you comment in one of these files you may get much more than css then you want.
* Only do this sparingly.
*/
#ui-grid-twbs {
// Core variables and mixins
@import (reference) "@{bootstrapDirectory}/less/variables.less";
@import (reference) "@{bootstrapDirectory}/less/mixins.less";

// Reset and dependencies
@import (reference) "@{bootstrapDirectory}/less/normalize.less";
@import (reference) "@{bootstrapDirectory}/less/print.less";
@import (reference) "@{bootstrapDirectory}/less/glyphicons.less";

// Core CSS
@import (reference) "@{bootstrapDirectory}/less/scaffolding.less";
@import (reference) "@{bootstrapDirectory}/less/code.less";
@import (reference) "@{bootstrapDirectory}/less/tables.less";
@import (reference) "@{bootstrapDirectory}/less/forms.less";
@import (reference) "@{bootstrapDirectory}/less/buttons.less";
//@import (reference) "@{bootstrapDirectory}/less/type.less";
//@import (reference) "@{bootstrapDirectory}/less/grid.less";

// Components
@import (reference) "@{bootstrapDirectory}/less/component-animations.less";
@import (reference) "@{bootstrapDirectory}/less/dropdowns.less";
@import (reference) "@{bootstrapDirectory}/less/button-groups.less";
@import (reference) "@{bootstrapDirectory}/less/input-groups.less";
@import (reference) "@{bootstrapDirectory}/less/breadcrumbs.less";
@import (reference) "@{bootstrapDirectory}/less/pagination.less";
@import (reference) "@{bootstrapDirectory}/less/labels.less";
@import (reference) "@{bootstrapDirectory}/less/badges.less";
@import (reference) "@{bootstrapDirectory}/less/jumbotron.less";
@import (reference) "@{bootstrapDirectory}/less/alerts.less";
@import (reference) "@{bootstrapDirectory}/less/progress-bars.less";
@import (reference) "@{bootstrapDirectory}/less/media.less";
@import (reference) "@{bootstrapDirectory}/less/list-group.less";
@import (reference) "@{bootstrapDirectory}/less/responsive-embed.less";
@import (reference) "@{bootstrapDirectory}/less/wells.less";
@import (reference) "@{bootstrapDirectory}/less/close.less";
//@import (reference) "@{bootstrapDirectory}/less/navs.less";
//@import (reference) "@{bootstrapDirectory}/less/navbar.less";
//@import (reference) "@{bootstrapDirectory}/less/pager.less";
//@import (reference) "@{bootstrapDirectory}/less/thumbnails.less";
//@import (reference) "@{bootstrapDirectory}/less/panels.less";

// Components w/ JavaScript
@import (reference) "@{bootstrapDirectory}/less/tooltip.less";
//@import (reference) "@{bootstrapDirectory}/less/modals.less";
//@import (reference) "@{bootstrapDirectory}/less/popovers.less";

// Utility classes
@import (reference) "@{bootstrapDirectory}/less/utilities.less";
//@import (reference) "@{bootstrapDirectory}/less/responsive-utilities.less";
}
43 changes: 43 additions & 0 deletions release/3.0.5/less/cell.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
@import 'variables';

.ui-grid-cell {
overflow: hidden;
// position: absolute;
// position: relative; // NOTE: removing so border is visible
float: left;
background-color: inherit;
border-right: @gridBorderWidth solid;
border-color: @borderColor;
box-sizing: border-box;

&:last-child {
border-right: 0;
}
}

.ui-grid-cell-contents {
padding: 5px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
white-space: nowrap;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
height: 100%;
// width: 100%;
}

.ui-grid-cell-contents-hidden {
visibility: hidden;
width: 0;
height:0;
display: none;
}

.ui-grid-row .ui-grid-cell.ui-grid-row-header-cell {
background-color: @rowHeaderCell;
border-bottom: solid @gridBorderWidth @borderColor;
}

30 changes: 30 additions & 0 deletions release/3.0.5/less/cellnav/less/cellNav.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
@import '../../../less/variables';
@import (reference) '../../../less/bootstrap/bootstrap';

// .ui-grid-cell-contents:focus {
// outline: 0;
// background-color: @focusedCell;
// }

.ui-grid-cell-focus {
outline: 0;
background-color: @focusedCell;
}

.ui-grid-focuser {
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
width:100%;
height:100%;
#ui-grid-twbs > .form-control-focus();
}

.ui-grid-offscreen{
display: block;
position: absolute;
left: -10000px;
top: -10000px;
clip:rect(0px,0px,0px,0px);
}
Loading

0 comments on commit cd18cd9

Please sign in to comment.