ember-tribe 2.0.3 → 2.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,2 @@
1
1
  TRIBE_API_URL=""
2
- PUSHER_API_KEY=""
3
- PUSHER_CLUSTER="ap2"
2
+ TRIBE_API_TOKEN=""
@@ -0,0 +1,5 @@
1
+ <section class="flame-bg d-flex align-items-center justify-content-center">
2
+ <div class="py-6 container px-0 text-center text-dark">
3
+ <img src="/assets/img/flame.png" width="200">
4
+ </div>
5
+ </section>
@@ -1,4 +1,38 @@
1
+ /* STYLE GUIDE */
2
+ //$font-family-sans-serif: "Helvetica Neue", sans-serif !default;
3
+ //$display-font-family: "Helvetica Neue", sans-serif !default;
4
+
5
+ //$primary: #0000ff !default;
6
+ //$secondary: #cccccc !default;
7
+ //$success: #00ff00 !default;
8
+ //$info: #00ffff !default;
9
+ //$warning: #ffff00 !default;
10
+ //$danger: #ff0000 !default;
11
+ //$light: #eeeeee !default;
12
+ //$dark: $333333 !default;
13
+ /* /STYLE GUIDE */
14
+
15
+ $enable-rounded: false !default;
16
+ $enable-negative-margins: true !default;
17
+ $enable-cssgrid: true !default;
18
+
19
+ $spacer: 1rem !default;
20
+ $spacers: (
21
+ 0: 0,
22
+ 1: $spacer * .25,
23
+ 2: $spacer * .5,
24
+ 3: $spacer,
25
+ 4: $spacer * 1.5,
26
+ 5: $spacer * 3,
27
+ 6: $spacer * 4.5,
28
+ 7: $spacer * 6,
29
+ 8: $spacer * 7.5,
30
+ 9: $spacer * 9,
31
+ 10: $spacer * 12,
32
+ ) !default;
33
+
1
34
  @import "node_modules/bootstrap/scss/bootstrap";
35
+ @import "node_modules/animate.css/animate";
2
36
 
3
37
  .flame-bg {
4
38
  background: linear-gradient(0deg, rgba(153,51,153,1) 0%, rgba(255,51,153,1) 100%);
@@ -1,7 +1,7 @@
1
- <section class="flame-bg d-flex align-items-center justify-content-center">
2
- <div class="py-6 container px-0 text-center text-dark">
3
- <img src="/assets/img/flame.png" width="200">
4
- </div>
5
- </section>
1
+ {{!-- Remove the WelcomeFlame component and write your HTML code here --}}
2
+
3
+ <WelcomeFlame />
4
+
5
+ {{!-- / --}}
6
6
 
7
7
  {{outlet}}
@@ -0,0 +1,31 @@
1
+ 'use strict';
2
+
3
+ module.exports = function(/* environment, appConfig */) {
4
+ // See https://zonkyio.github.io/ember-web-app for a list of
5
+ // supported properties
6
+
7
+ return {
8
+ name: "<%= classifiedPackageName %>",
9
+ short_name: "<%= classifiedPackageName %>",
10
+ description: "Built using ember-tribe.",
11
+ start_url: "/",
12
+ scope: "/",
13
+ display: "standalone",
14
+ background_color: "#e9ecef",
15
+ theme_color: "#0A1119",
16
+ prefer_related_applications: true,
17
+ apple: {
18
+ statusBarStyle: 'black-translucent',
19
+ precomposed: 'true',
20
+ },
21
+ icons: [
22
+ {
23
+ src: '/favicon.png',
24
+ sizes: '512x512',
25
+ },
26
+ ],
27
+ ms: {
28
+ tileColor: '#0A1119'
29
+ }
30
+ };
31
+ }
@@ -21,7 +21,6 @@ module.exports = {
21
21
  { name: 'ember-flatpickr' },
22
22
  { name: 'ember-file-upload' },
23
23
  { name: 'ember-toggle' },
24
- { name: '@fortawesome/ember-fontawesome' },
25
24
  { name: 'ember-basic-dropdown' },
26
25
  { name: 'ember-power-select' },
27
26
  { name: 'ember-click-outside' },
@@ -39,15 +38,7 @@ module.exports = {
39
38
  { name: 'video.js' },
40
39
  { name: 'swiper' },
41
40
  { name: 'howler' },
42
- { name: 'peerjs' },
43
41
  { name: 'ripplet.js' },
44
- { name: '@fortawesome/free-solid-svg-icons' },
45
- { name: '@fortawesome/free-brands-svg-icons' },
46
- { name: '@fortawesome/pro-solid-svg-icons' },
47
- { name: '@fortawesome/pro-regular-svg-icons' },
48
- { name: '@fortawesome/pro-light-svg-icons' },
49
- { name: '@fortawesome/pro-duotone-svg-icons' },
50
- { name: '@fortawesome/pro-thin-svg-icons' },
51
42
  ]);
52
43
  });
53
44
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-tribe",
3
- "version": "2.0.3",
3
+ "version": "2.1.4",
4
4
  "description": "The default blueprint for using Tribe within EmberJS.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -1,5 +0,0 @@
1
- module.exports = function () {
2
- return {
3
- 'free-solid-svg-icons': ['magnifying-glass', 'bars', 'times', 'lock'],
4
- };
5
- };