Skip to content
This repository was archived by the owner on May 20, 2023. It is now read-only.

Rename package angular2_components -> angular_components #81

Merged
merged 2 commits into from
Apr 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.5.0-beta

This code is considered production quality, but depends on angular2:
^3.0.0-alpha+1. The alpha tag represents the evolving nature of the AngularDart
api, not code quality (3.0.0-beta+1 is used in production Google apps).

* Rename library to angular_components.

> All previous versions were published as the
> [Pub Package](https://pub.dartlang.org/packages/angular_components) named
> `angular2_components`.

## 0.4.1-beta

* Updated dependencies on `pkg/quiver` and `pkg/intl`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Firefox, and Safari.

## Useful links

* **[Example gallery](https://dart-lang.github.io/angular2_components_example/)**
* **[Example gallery](https://dart-lang.github.io/angular_components_example/)**
* [AngularDart pub package](https://pub.dartlang.org/packages/angular2)
* [AngularDart documentation](https://angulardart.org/)
* [Material Design site](https://material.google.com/)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components;
library angular_components;

import 'package:angular2/angular2.dart' show Provider;
import 'src/all_components.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/all_components.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.all_components;
library angular_components.all_components;

export 'components/annotations/rtl_annotation.dart';
export 'components/auto_dismiss/auto_dismiss.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/css/acux/acux_css_const.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.css.shared.acux_css_const;
library angular_components.css.shared.acux_css_const;

/// Global registry for z-index values used by various components.
/// A z-index creates a new stacking context and you can go back to using
Expand Down
2 changes: 1 addition & 1 deletion lib/src/css/acux/zindexer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

@JS()
library angular2_components.css.acux.zindexer;
library angular_components.css.acux.zindexer;

import 'package:angular2/angular2.dart';
import 'package:js/js.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/framework_stabilizers/framework_stabilizers.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

@JS()
library angular2_components.framework_stabilizers.framework_stabilizers;
library angular_components.framework_stabilizers.framework_stabilizers;

import 'dart:js';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/framework_stabilizers/testability.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.

@JS()
library angular2_components.framework_stabilizers.testability;
library angular_components.framework_stabilizers.testability;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/components/modal/modal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.components.modal.modal;
library angular_components.laminate.components.modal.modal;

import 'dart:async';
import 'dart:html';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.components.modal.src.modal_controller_directive;
library angular_components.laminate.components.modal.src.modal_controller_directive;

import 'package:angular2/angular2.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/components/popup/base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.components.popup.base;
library angular_components.laminate.components.popup.base;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/components/popup/popup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.components.popup.popup;
library angular_components.laminate.components.popup.popup;

import 'dart:async';
import 'dart:html';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.components.popup.src.popup_source_directive;
library angular_components.laminate.components.popup.src.popup_source_directive;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/enums/alignment.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.enums.alignment;
library angular_components.laminate.enums.alignment;

import 'dart:math';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/enums/src/base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.enums.src.base;
library angular_components.laminate.enums.src.base;

/// A function that sets [propertyName] to [propertyValue].
typedef void SetPropertyFn(String propertyName, propertyValue);
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/enums/visibility.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.enums.visibility;
library angular_components.laminate.enums.visibility;

import 'src/base.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/overlay/module.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.module;
library angular_components.laminate.overlay.module;

import 'dart:html';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/overlay/overlay.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.overlay;
library angular_components.laminate.overlay.overlay;

export 'src/overlay_ref.dart'
show BaseOverlayRef, OverlayRef;
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/overlay/src/overlay_dom_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.src.overlay_dom_service;
library angular_components.laminate.overlay.src.overlay_dom_service;

import 'dart:async';
import 'dart:html';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/overlay/src/overlay_ref.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.src.overlay_ref;
library angular_components.laminate.overlay.src.overlay_ref;

import 'dart:async';
import 'dart:html';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/overlay/src/overlay_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.src.overlay_service;
library angular_components.laminate.overlay.src.overlay_service;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/overlay/src/overlay_state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.src.overlay_state;
library angular_components.laminate.overlay.src.overlay_state;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/overlay/src/render/overlay_dom_ref.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.src.render.overlay_dom_ref;
library angular_components.laminate.overlay.src.render.overlay_dom_ref;

import 'dart:async';
import 'dart:html';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.src.render.overlay_dom_render_service;
library angular_components.laminate.overlay.src.render.overlay_dom_render_service;

import 'dart:async';
import 'dart:html';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.overlay.src.render.overlay_style_config;
library angular_components.laminate.overlay.src.render.overlay_style_config;

import 'dart:html';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/module.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.module;
library angular_components.laminate.popup.module;

import 'package:angular2/di.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/popup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.popup;
library angular_components.laminate.popup.popup;

// TODO(google): Move this to another exported library.
export 'src/dom_popup_source.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/dom_popup_source.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.dom_popup_source;
library angular_components.laminate.popup.src.dom_popup_source;

import 'dart:async';
import 'dart:html';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_controller_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_controller_base;
library angular_components.laminate.popup.src.popup_controller_base;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_directive.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_directive;
library angular_components.laminate.popup.src.popup_directive;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_event.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_event;
library angular_components.laminate.popup.src.popup_event;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_position_mixin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_position_mixin;
library angular_components.laminate.popup.src.popup_position_mixin;

import 'dart:math';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_ref.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_ref;
library angular_components.laminate.popup.src.popup_ref;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_service;
library angular_components.laminate.popup.src.popup_service;

import 'dart:async';
import 'dart:html';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_size_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_size_provider;
library angular_components.laminate.popup.src.popup_size_provider;

/// A handler that provides max width and max height of a popup based on its
/// position and the current viewport size.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_size_provider_directive;
library angular_components.laminate.popup.src.popup_size_provider_directive;

import './popup_size_provider.dart';
import 'package:angular2/angular2.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_source.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_source;
library angular_components.laminate.popup.src.popup_source;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_source_directive.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_source_directive;
library angular_components.laminate.popup.src.popup_source_directive;

import 'dart:async';
import 'dart:math';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/popup/src/popup_state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.popup.src.popup_state;
library angular_components.laminate.popup.src.popup_state;

import 'dart:async';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/portal/portal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.portal.portal;
library angular_components.laminate.portal.portal;

import 'dart:async';
import 'dart:html';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/ruler/dom_ruler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.ruler.dom_ruler;
library angular_components.laminate.ruler.dom_ruler;

import 'dart:async';
import 'dart:html';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/ruler/module.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.ruler.module;
library angular_components.laminate.ruler.module;

import 'package:angular2/angular2.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/laminate/ruler/ng_ruler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

library angular2_components.laminate.ruler.ng_ruler;
library angular_components.laminate.ruler.ng_ruler;

import 'dart:async';
import 'dart:math';
Expand Down
Loading