You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>Running <code>npm install</code> normally will launch an interactive installer, to allow this installer to run without user interaction include a special flag <code>autoInstall: true</code>in your <code>semantic.json</code> file.</p>
// install will now automatically build your project files without user interaction
41
+
"autoInstall": true,
42
+
43
+
// these settings may be different
44
+
"base": "",
45
+
"paths": {
46
+
"source": {
47
+
"config": "src/theme.config",
48
+
"definitions": "src/definitions/",
49
+
"site": "src/site/",
50
+
"themes": "src/themes/"
51
+
},
52
+
"output": {
53
+
"packaged": "dist/",
54
+
"uncompressed": "dist/components/",
55
+
"compressed": "dist/components/",
56
+
"themes": "dist/themes/"
57
+
},
58
+
"clean": "dist/"
59
+
},
60
+
"permission": false,
61
+
"rtl": false,
62
+
}
63
+
</div>
64
+
</div>
65
+
66
+
<div class="no example">
67
+
<h4>Right-to-left (RTL) Languages</h4>
68
+
<p>Including the flag <code>rtl:true</code> will build Semantic UI using <a href="https://github.com/MohammadYounes/rtlcss" target="_blank">RTLCSS</a>.</p>
69
+
<p>To build both LTR and RTL versions use the flag <code>rtl: 'both'</code></p>
Copy file name to clipboardExpand all lines: server/documents/introduction/integrations.html.eco
+35-2Lines changed: 35 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -30,12 +30,45 @@ type : 'Introduction'
30
30
31
31
<div class="no example">
32
32
<h4 class="ui header">Install via Atmosphere</h4>
33
-
<p>Install the <a href="https://atmospherejs.com/semantic/ui">Semantic UI package</a> from atmosphere. You will need a special package less-autoprefixer, to add vendor prefixes to your LESS pipeline.</p>
33
+
<p>Install the <a href="https://atmospherejs.com/semantic/ui">Semantic UI package</a> from atmosphere.</p>
34
+
<div class="code" data-type="bash">
35
+
meteor add semantic:ui
36
+
</div>
37
+
<p>The next step will differ depending on what version of Meteor you are running. Continue to the section relevant to your version of Meteor.</p>
Copy file name to clipboardExpand all lines: server/documents/modules/tab.html.eco
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -582,6 +582,11 @@ themes : ['Default']
582
582
<td>false</td>
583
583
<td>Whether tab should load remote content as same url as history</td>
584
584
</tr>
585
+
<tr>
586
+
<td>deactivate</td>
587
+
<td>'siblings'</td>
588
+
<td>When set to <code>siblings</code> will only deactivate elements that are DOM siblings with the activated element. When set to <code>all</code> the component will deactivate all other elements initialized at the same time.</td>
0 commit comments