Skip to content

Commit cd18cd9

Browse files
committed
gh-pages v3.0.5
1 parent 17bc0bb commit cd18cd9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+30582
-211
lines changed

docs/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
</button>
122122

123123

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

126126
</div>
127127

docs/js/docs-setup.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ NG_DOCS={
2828
"shortName": "ui.grid.autoResize",
2929
"type": "overview",
3030
"moduleName": "ui.grid.autoResize",
31-
"shortDescription": "#ui.grid.autoResize",
31+
"shortDescription": "ui.grid.autoResize",
3232
"keywords": "alert alert-warning api auto-resizing autoresize bugs class feature functionality grid hasn lot module overview ready role testing ui ui-grid"
3333
},
3434
{
@@ -37,7 +37,7 @@ NG_DOCS={
3737
"shortName": "ui.grid.cellNav",
3838
"type": "overview",
3939
"moduleName": "ui.grid.cellNav",
40-
"shortDescription": "#ui.grid.cellNav",
40+
"shortDescription": "ui.grid.cellNav",
4141
"keywords": "alert alert-success api auto-resizing breaking cellnav changes class deprecation feature functionality grid longer module overview role stable ui ui-grid warning"
4242
},
4343
{
@@ -910,7 +910,7 @@ NG_DOCS={
910910
"shortName": "ui.grid.infiniteScroll",
911911
"type": "overview",
912912
"moduleName": "ui.grid.infiniteScroll",
913-
"shortDescription": "#ui.grid.infiniteScroll",
913+
"shortDescription": "ui.grid.infiniteScroll",
914914
"keywords": "alert alert-warning api bugs class feature functionality grid hasn infinite infinitescroll lot module overview ready role scroll testing ui ui-grid"
915915
},
916916
{

docs/partials/api/ui.grid.autoResize.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div><span class="hint"></span>
33
</div>
44
</h1>
5-
<div><div class="ui-grid-autoresize-page"><p>#ui.grid.autoResize</p>
5+
<div><div class="ui-grid-autoresize-page"><h2 id="uigridautoresize">ui.grid.autoResize</h2>
66
<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>
77

88
<p>This module provides auto-resizing functionality to UI-Grid.</p>

docs/partials/api/ui.grid.cellNav.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div><span class="hint"></span>
33
</div>
44
</h1>
5-
<div><div class="ui-grid-cellnav-page"><p>#ui.grid.cellNav</p>
5+
<div><div class="ui-grid-cellnav-page"><h2 id="uigridcellnav">ui.grid.cellNav</h2>
66
<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>
77

88
<p>This module provides auto-resizing functionality to UI-Grid.</p>

docs/partials/api/ui.grid.infiniteScroll.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div><span class="hint"></span>
33
</div>
44
</h1>
5-
<div><div class="ui-grid-infinitescroll-page"><p>#ui.grid.infiniteScroll</p>
5+
<div><div class="ui-grid-infinitescroll-page"><h2 id="uigridinfinitescroll">ui.grid.infiniteScroll</h2>
66
<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>
77

88
<p>This module provides infinite scroll functionality to ui-grid</p>

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ <h1 class="text-center">Angular UI Grid</h1>
6464
Code on Github
6565
</a>
6666

67-
<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">
67+
<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">
6868
<i class="fa fa-download fa-fw"></i>
69-
<!-- Download <small>( 3.0.4 / 3.0.4-f2ed365 )</small> --> <!-- TODO(c0bra): note: not showing stable version till 3.0.0 is released -->
69+
<!-- Download <small>( 3.0.5 / 3.0.5 )</small> --> <!-- TODO(c0bra): note: not showing stable version till 3.0.0 is released -->
7070

71-
Download <small>( 3.0.4-f2ed365 )</small>
71+
Download <small>( 3.0.5 )</small>
7272
</a>
7373

7474
<a class="btn btn-success btn-large" href="/docs/#/tutorial" title="Tutorial">

release/3.0.5/less/animation.less

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/*
2+
Animation example, for spinners
3+
*/
4+
.ui-grid-animate-spin {
5+
-moz-animation: ui-grid-spin 2s infinite linear;
6+
-o-animation: ui-grid-spin 2s infinite linear;
7+
-webkit-animation: ui-grid-spin 2s infinite linear;
8+
animation: ui-grid-spin 2s infinite linear;
9+
display: inline-block;
10+
}
11+
@-moz-keyframes ui-grid-spin {
12+
0% {
13+
-moz-transform: rotate(0deg);
14+
-o-transform: rotate(0deg);
15+
-webkit-transform: rotate(0deg);
16+
transform: rotate(0deg);
17+
}
18+
19+
100% {
20+
-moz-transform: rotate(359deg);
21+
-o-transform: rotate(359deg);
22+
-webkit-transform: rotate(359deg);
23+
transform: rotate(359deg);
24+
}
25+
}
26+
@-webkit-keyframes ui-grid-spin {
27+
0% {
28+
-moz-transform: rotate(0deg);
29+
-o-transform: rotate(0deg);
30+
-webkit-transform: rotate(0deg);
31+
transform: rotate(0deg);
32+
}
33+
34+
100% {
35+
-moz-transform: rotate(359deg);
36+
-o-transform: rotate(359deg);
37+
-webkit-transform: rotate(359deg);
38+
transform: rotate(359deg);
39+
}
40+
}
41+
@-o-keyframes ui-grid-spin {
42+
0% {
43+
-moz-transform: rotate(0deg);
44+
-o-transform: rotate(0deg);
45+
-webkit-transform: rotate(0deg);
46+
transform: rotate(0deg);
47+
}
48+
49+
100% {
50+
-moz-transform: rotate(359deg);
51+
-o-transform: rotate(359deg);
52+
-webkit-transform: rotate(359deg);
53+
transform: rotate(359deg);
54+
}
55+
}
56+
@-ms-keyframes ui-grid-spin {
57+
0% {
58+
-moz-transform: rotate(0deg);
59+
-o-transform: rotate(0deg);
60+
-webkit-transform: rotate(0deg);
61+
transform: rotate(0deg);
62+
}
63+
64+
100% {
65+
-moz-transform: rotate(359deg);
66+
-o-transform: rotate(359deg);
67+
-webkit-transform: rotate(359deg);
68+
transform: rotate(359deg);
69+
}
70+
}
71+
@keyframes ui-grid-spin {
72+
0% {
73+
-moz-transform: rotate(0deg);
74+
-o-transform: rotate(0deg);
75+
-webkit-transform: rotate(0deg);
76+
transform: rotate(0deg);
77+
}
78+
79+
100% {
80+
-moz-transform: rotate(359deg);
81+
-o-transform: rotate(359deg);
82+
-webkit-transform: rotate(359deg);
83+
transform: rotate(359deg);
84+
}
85+
}

release/3.0.5/less/body.less

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
2+
.ui-grid-render-container {
3+
position: inherit;
4+
// overflow: hidden;
5+
6+
.border-radius(0, @gridBorderRadius, @gridBorderRadius, 0);
7+
8+
// Prevent an outline from showing if we focus the render container element
9+
&:focus {
10+
outline: none;
11+
}
12+
}
13+
14+
.ui-grid-viewport {
15+
// overflow: auto; // TODO(c0bra): turn back on when virtual repeater is hooked up
16+
min-height: 20px;
17+
position: relative;
18+
overflow-y: scroll;
19+
-webkit-overflow-scrolling: touch;
20+
21+
&:focus {
22+
outline: none !important;
23+
}
24+
}
25+
26+
.ui-grid-canvas {
27+
position: relative;
28+
padding-top:1px; //to prevent canvas from absorbing the 1st rendered row's margin
29+
}
30+
31+
.ui-grid-row {
32+
//position: absolute;
33+
// border-bottom: 1px solid @borderColor;
34+
35+
&:nth-child(odd) .ui-grid-cell {
36+
background-color: @rowColorOdd; //rgb(253, 253, 253);
37+
}
38+
39+
&:nth-child(even) .ui-grid-cell {
40+
background-color: @rowColorEven;
41+
}
42+
43+
&:last-child .ui-grid-cell {
44+
border-bottom-color: @borderColor;
45+
border-bottom-style: solid;
46+
47+
}
48+
}
49+
50+
.ui-grid-no-row-overlay {
51+
position: absolute;
52+
top: 0;
53+
bottom: 0;
54+
left: 0;
55+
right: 0;
56+
margin: 10%;
57+
58+
.ui-grid-top-panel-background;
59+
.border-radius(@gridBorderRadius);
60+
border: @gridBorderWidth solid @borderColor;
61+
62+
font-size: 2em;
63+
text-align: center;
64+
65+
> * {
66+
position: absolute;
67+
display: table;
68+
margin: auto 0;
69+
width: 100%;
70+
top: 0;
71+
bottom: 0;
72+
left: 0;
73+
right: 0;
74+
opacity: 0.66;
75+
}
76+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
/*!
2+
* Bootstrap v3.3.5 (http://getbootstrap.com)
3+
* Copyright 2011-2015 Twitter, Inc.
4+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5+
*/
6+
7+
/****** NOTE: IMPORTANT INFORMATION ABOUT USING THIS FILE *********\
8+
* If you are importing this file then use `@import (reference) '..../bootstrap'`
9+
* ENSURE that you use the (refrerence)
10+
* WHY? Because otherwise you will import the entire contents of less bootstrap
11+
*
12+
* How does this work?
13+
* All of the bootstrap less elements are namespaced under `#ui-grid-twbs`
14+
* This prevents the CSS generated using this file from conflicting with a project's
15+
* import of bootstrap.
16+
*
17+
* XXX: Why are so many of these imports commented out?
18+
* There are several issues with the `extend` function in less.
19+
* Using extend, even within an import that only has a reference will import that
20+
* css element. This causes bloat in the distributed css files.
21+
* Related Issues:
22+
* https://github.com/less/less.js/issues/1968
23+
* https://github.com/less/less.js/issues/1851
24+
*
25+
* If you comment in one of these files you may get much more than css then you want.
26+
* Only do this sparingly.
27+
*/
28+
#ui-grid-twbs {
29+
// Core variables and mixins
30+
@import (reference) "@{bootstrapDirectory}/less/variables.less";
31+
@import (reference) "@{bootstrapDirectory}/less/mixins.less";
32+
33+
// Reset and dependencies
34+
@import (reference) "@{bootstrapDirectory}/less/normalize.less";
35+
@import (reference) "@{bootstrapDirectory}/less/print.less";
36+
@import (reference) "@{bootstrapDirectory}/less/glyphicons.less";
37+
38+
// Core CSS
39+
@import (reference) "@{bootstrapDirectory}/less/scaffolding.less";
40+
@import (reference) "@{bootstrapDirectory}/less/code.less";
41+
@import (reference) "@{bootstrapDirectory}/less/tables.less";
42+
@import (reference) "@{bootstrapDirectory}/less/forms.less";
43+
@import (reference) "@{bootstrapDirectory}/less/buttons.less";
44+
//@import (reference) "@{bootstrapDirectory}/less/type.less";
45+
//@import (reference) "@{bootstrapDirectory}/less/grid.less";
46+
47+
// Components
48+
@import (reference) "@{bootstrapDirectory}/less/component-animations.less";
49+
@import (reference) "@{bootstrapDirectory}/less/dropdowns.less";
50+
@import (reference) "@{bootstrapDirectory}/less/button-groups.less";
51+
@import (reference) "@{bootstrapDirectory}/less/input-groups.less";
52+
@import (reference) "@{bootstrapDirectory}/less/breadcrumbs.less";
53+
@import (reference) "@{bootstrapDirectory}/less/pagination.less";
54+
@import (reference) "@{bootstrapDirectory}/less/labels.less";
55+
@import (reference) "@{bootstrapDirectory}/less/badges.less";
56+
@import (reference) "@{bootstrapDirectory}/less/jumbotron.less";
57+
@import (reference) "@{bootstrapDirectory}/less/alerts.less";
58+
@import (reference) "@{bootstrapDirectory}/less/progress-bars.less";
59+
@import (reference) "@{bootstrapDirectory}/less/media.less";
60+
@import (reference) "@{bootstrapDirectory}/less/list-group.less";
61+
@import (reference) "@{bootstrapDirectory}/less/responsive-embed.less";
62+
@import (reference) "@{bootstrapDirectory}/less/wells.less";
63+
@import (reference) "@{bootstrapDirectory}/less/close.less";
64+
//@import (reference) "@{bootstrapDirectory}/less/navs.less";
65+
//@import (reference) "@{bootstrapDirectory}/less/navbar.less";
66+
//@import (reference) "@{bootstrapDirectory}/less/pager.less";
67+
//@import (reference) "@{bootstrapDirectory}/less/thumbnails.less";
68+
//@import (reference) "@{bootstrapDirectory}/less/panels.less";
69+
70+
// Components w/ JavaScript
71+
@import (reference) "@{bootstrapDirectory}/less/tooltip.less";
72+
//@import (reference) "@{bootstrapDirectory}/less/modals.less";
73+
//@import (reference) "@{bootstrapDirectory}/less/popovers.less";
74+
75+
// Utility classes
76+
@import (reference) "@{bootstrapDirectory}/less/utilities.less";
77+
//@import (reference) "@{bootstrapDirectory}/less/responsive-utilities.less";
78+
}

release/3.0.5/less/cell.less

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
@import 'variables';
2+
3+
.ui-grid-cell {
4+
overflow: hidden;
5+
// position: absolute;
6+
// position: relative; // NOTE: removing so border is visible
7+
float: left;
8+
background-color: inherit;
9+
border-right: @gridBorderWidth solid;
10+
border-color: @borderColor;
11+
box-sizing: border-box;
12+
13+
&:last-child {
14+
border-right: 0;
15+
}
16+
}
17+
18+
.ui-grid-cell-contents {
19+
padding: 5px;
20+
-moz-box-sizing: border-box;
21+
-webkit-box-sizing: border-box;
22+
box-sizing: border-box;
23+
white-space: nowrap;
24+
-ms-text-overflow: ellipsis;
25+
-o-text-overflow: ellipsis;
26+
text-overflow: ellipsis;
27+
overflow: hidden;
28+
height: 100%;
29+
// width: 100%;
30+
}
31+
32+
.ui-grid-cell-contents-hidden {
33+
visibility: hidden;
34+
width: 0;
35+
height:0;
36+
display: none;
37+
}
38+
39+
.ui-grid-row .ui-grid-cell.ui-grid-row-header-cell {
40+
background-color: @rowHeaderCell;
41+
border-bottom: solid @gridBorderWidth @borderColor;
42+
}
43+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
@import '../../../less/variables';
2+
@import (reference) '../../../less/bootstrap/bootstrap';
3+
4+
// .ui-grid-cell-contents:focus {
5+
// outline: 0;
6+
// background-color: @focusedCell;
7+
// }
8+
9+
.ui-grid-cell-focus {
10+
outline: 0;
11+
background-color: @focusedCell;
12+
}
13+
14+
.ui-grid-focuser {
15+
position: absolute;
16+
left: 0px;
17+
top: 0px;
18+
z-index: -1;
19+
width:100%;
20+
height:100%;
21+
#ui-grid-twbs > .form-control-focus();
22+
}
23+
24+
.ui-grid-offscreen{
25+
display: block;
26+
position: absolute;
27+
left: -10000px;
28+
top: -10000px;
29+
clip:rect(0px,0px,0px,0px);
30+
}

0 commit comments

Comments
 (0)