xing-framework 0.3.0 → 0.3.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17587315d5317f1edbe17305afc28f35da50c38d
4
- data.tar.gz: 0c97f6223ff8cc052ba8722c0766f3dbdaff0ac0
3
+ metadata.gz: 79c9185b1504f29fbc63d458e4e5931557529be7
4
+ data.tar.gz: b360d306893563ce8719c57bfa07bcf6f26bfd4b
5
5
  SHA512:
6
- metadata.gz: 1a3108c4788f31a5058d351cc400038cf799cc8b82efbb1ef53ec08f991eb6cff2d83e7009b320bcbc89c70ff97882409bee67838e7fc52055f53ce9b069b09c
7
- data.tar.gz: fefdeb1d4b9ee2c127767b7da80093fdb4c86c80d53029b22a890677d98525f9000e2c4ce9485cc224ac1275096dd397306ac1fb788d0376cce5a322d6d5363f
6
+ metadata.gz: 37dce22380878ec59852385780bb4c45448764b762da5f72d4a2bf80761cf1dea3d6872da0cafd7173cb29272d6377965cbffcef0ccf05fb659fc747f4a2cec1
7
+ data.tar.gz: 6b7500b65371dfd2f4d8a357be1a67ba190d53173f51a294fd5faae233671f0f892126a144cf58bc85e70a7b0624f5a86830f2059023a790ad23d86bdeededba
@@ -1,9 +1,11 @@
1
1
  import {Controller} from 'a1atscript';
2
2
 
3
3
  @Controller('HomepageShowCtrl', [])
4
- export function HomepageShowController(){
4
+ export class HomepageShowController {
5
+ constructor() {}
5
6
  }
6
7
 
7
8
  @Controller('HomepageCtrl', [])
8
- export function HomepageController() {
9
+ export class HomepageController {
10
+ constructor() {}
9
11
  }
@@ -6,6 +6,7 @@ export class HomepageState extends TrackAdminState {
6
6
  constructor() {
7
7
  super();
8
8
  this.controller = 'HomepageCtrl';
9
+ this.controllerAs = 'homepage';
9
10
  this.templateUrl = 'homepage/homepage.tpl.html';
10
11
  this.abstract = true;
11
12
  this.url = 'home';
@@ -17,6 +18,7 @@ export class HomepageShowState {
17
18
  constructor() {
18
19
  this.url = '';
19
20
  this.controller = 'HomepageShowCtrl';
21
+ this.controllerAs = 'homepageShow';
20
22
  this.templateUrl = 'homepage/homepage-show.tpl.html';
21
23
  }
22
24
  }
@@ -1,14 +1,30 @@
1
- $navbar_link_h_padding: 10px
2
- $navbar_link_v_padding: 10px
1
+ // These are default constants for Xing
2
+ // Uncomment to override any of these
3
3
 
4
- $call_to_action_color: #8E5
4
+ // Breakpoints
5
+ // $small: 500px
6
+ // $medium: 768px
7
+ // $desktop: 960px
5
8
 
6
- $error_bg_color: #e9b2b2
9
+ // General content & nav layout
10
+ // @include breakpoint-set('to ems', true)
11
+ // $content_width: 960px
7
12
 
8
- @mixin error_notice_colors
9
- border-width: 2px
10
- border-style: solid
11
- border-color: #ff4444
12
- background: $error_bg_color
13
+ // $main_background_color: #67c
13
14
 
14
- $link_color: #00e
15
+ // $navbar_link_h_padding: 10px
16
+ // $navbar_link_v_padding: 10px
17
+ // $navbar_responsive_background_color: #ddd
18
+
19
+ // Success color for forms, flashes etc.
20
+ // $success_color: #0C0
21
+ // $error_color: #C00
22
+
23
+ // Admin menu & callout color
24
+ // $admin_menu_height: 22px
25
+ // $admin_background_color: #777755
26
+
27
+ // $link_color: #00e
28
+ // $call_to_action_color: #0e0
29
+
30
+ // $text_highlight_color: #777755
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: xing-framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Evan Dorn
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-01-31 00:00:00.000000000 Z
12
+ date: 2016-02-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: trollop
@@ -213,13 +213,9 @@ files:
213
213
  - default_configuration/base_app/frontend/config/environments/integration.js
214
214
  - default_configuration/base_app/frontend/config/environments/production.js
215
215
  - default_configuration/base_app/frontend/config/environments/test.js
216
- - default_configuration/base_app/frontend/create
217
216
  - default_configuration/base_app/frontend/karma/karma-unit.tpl.js
218
- - default_configuration/base_app/frontend/module.prefix
219
- - default_configuration/base_app/frontend/module.suffix
220
217
  - default_configuration/base_app/frontend/npm-shrinkwrap.json
221
218
  - default_configuration/base_app/frontend/package.json
222
- - default_configuration/base_app/frontend/sprockets/index.tpl.js
223
219
  - default_configuration/base_app/frontend/src/app/app.js
224
220
  - default_configuration/base_app/frontend/src/app/appConfig.js
225
221
  - default_configuration/base_app/frontend/src/app/auth/auth.js
@@ -336,7 +332,7 @@ rdoc_options:
336
332
  - "--main"
337
333
  - doc/README
338
334
  - "--title"
339
- - xing-framework-0.3.0 Documentation
335
+ - xing-framework-0.3.1 Documentation
340
336
  require_paths:
341
337
  - lib/
342
338
  required_ruby_version: !ruby/object:Gem::Requirement
File without changes
@@ -1 +0,0 @@
1
- (function ( window, angular, undefined ) {
@@ -1 +0,0 @@
1
- })( window, window.angular );
@@ -1,2 +0,0 @@
1
- <% scripts.forEach(function(file) { %>//= require <%= file %>
2
- <% }); %>