bootstrap-bookingsync-sass 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/docs/content/utilities/_navbar.html +2 -0
- data/docs/content/utilities/helpers.md +15 -0
- data/index.js +1 -19
- data/lib/bootstrap/bookingsync/version.rb +1 -1
- data/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ac0c5bd874ebc535522a8d8fd8801e2712715d2
|
4
|
+
data.tar.gz: 2ab4118dab8db19156f799b4a99ebc54874a425e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 178c39e9cb7707ab6046543bf79a5303b1cdab7d05b8f28244581362f6dc3e2d99af4ad53ab4acc873517083a864c459c4a6381d5c42626d775900143fa94c94
|
7
|
+
data.tar.gz: 08f76d31ee3be56a833e538de594f95ea74ccb55694153b53ee8bfc276e085faa93271d92aaa6ae42b26f58efeb0d3db1aa8cfe208e047b423da079386de5967
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
### master
|
2
2
|
|
3
|
+
### 1.0.3 - 2017-04-28
|
4
|
+
|
5
|
+
* bug fixes
|
6
|
+
* remove fonts from broccoli pipeline
|
7
|
+
|
3
8
|
### 1.0.2 - 2017-04-14
|
4
9
|
|
5
10
|
* bug fixes
|
@@ -17,6 +22,9 @@
|
|
17
22
|
* fix menu and navigation on tablet (768px width) devices.
|
18
23
|
* fix menu z-index.
|
19
24
|
* fix tabs styling when active tab is also focused.
|
25
|
+
|
26
|
+
* improvements
|
27
|
+
* add `.text-nowrap` util class
|
20
28
|
|
21
29
|
### 1.0.0 - 2016-12-25
|
22
30
|
|
@@ -55,3 +55,18 @@
|
|
55
55
|
</tr>
|
56
56
|
</table>
|
57
57
|
~~~
|
58
|
+
|
59
|
+
<div class="example">
|
60
|
+
<div class="sheet-header">
|
61
|
+
<h3 id="text-utils">Text Utils</h3>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<p>`.text-nowrap`</p>
|
65
|
+
|
66
|
+
<div class="bs-example bs-sheet" data-example-id="vertical-alignment">
|
67
|
+
<span class="text-nowrap">Don't wrap text, Lorem Ipsum is simply dummy text of the printing and typesetting industry.</span>
|
68
|
+
</div>
|
69
|
+
</div>
|
70
|
+
~~~ html
|
71
|
+
<span class="text-nowrap">Don't wrap text, Lorem Ipsum is simply dummy text of the printing and typesetting industry.</span>
|
72
|
+
~~~
|
data/index.js
CHANGED
@@ -15,7 +15,6 @@ module.exports = {
|
|
15
15
|
this.assetsPath = path.join(this.root, 'assets');
|
16
16
|
this.vendorPath = path.join('vendor', 'ember-cli-bootstrap-bookingsync-sass');
|
17
17
|
this.vendorJavascriptsPath = path.join(this.vendorPath, 'javascripts', 'bookingsync');
|
18
|
-
this.vendorFontsPath = path.join(this.vendorPath, 'fonts', 'bookingsync');
|
19
18
|
|
20
19
|
if (process.env.EMBER_CLI_FASTBOOT) {
|
21
20
|
this.ui.writeLine('bootstrap-bookingsync-sass: no JS enabled [FastBoot]');
|
@@ -24,17 +23,6 @@ module.exports = {
|
|
24
23
|
target.import(path.join(this.vendorJavascriptsPath, 'stackable.js'));
|
25
24
|
target.import(path.join(this.vendorJavascriptsPath, 'switch.js'));
|
26
25
|
}
|
27
|
-
|
28
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-smiles.eot'), { destDir: '/fonts/bookingsync' });
|
29
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-smiles.svg'), { destDir: '/fonts/bookingsync' });
|
30
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-smiles.ttf'), { destDir: '/fonts/bookingsync' });
|
31
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-smiles.woff'), { destDir: '/fonts/bookingsync' });
|
32
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-smiles.woff2'), { destDir: '/fonts/bookingsync' });
|
33
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-icons.eot'), { destDir: '/fonts/bookingsync' });
|
34
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-icons.svg'), { destDir: '/fonts/bookingsync' });
|
35
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-icons.ttf'), { destDir: '/fonts/bookingsync' });
|
36
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-icons.woff'), { destDir: '/fonts/bookingsync' });
|
37
|
-
target.import(path.join(this.vendorFontsPath, 'bookingsync-icons.woff2'), { destDir: '/fonts/bookingsync' });
|
38
26
|
},
|
39
27
|
|
40
28
|
contentFor: function(type) {
|
@@ -60,13 +48,7 @@ module.exports = {
|
|
60
48
|
destDir: '/ember-cli-bootstrap-bookingsync-sass/javascripts'
|
61
49
|
});
|
62
50
|
|
63
|
-
var
|
64
|
-
var fontsTree = new Funnel(this.treeGenerator(fontsPath), {
|
65
|
-
srcDir: '/',
|
66
|
-
destDir: '/ember-cli-bootstrap-bookingsync-sass/fonts'
|
67
|
-
});
|
68
|
-
|
69
|
-
var vendorTrees = new BroccoliMergeTrees([javascriptsTree, fontsTree]);
|
51
|
+
var vendorTrees = new BroccoliMergeTrees([javascriptsTree]);
|
70
52
|
|
71
53
|
return vendorTrees;
|
72
54
|
},
|
data/package.json
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-bookingsync-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastien Grosjean
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-04-
|
11
|
+
date: 2017-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bootstrap-sass
|