@angular-wave/angular.ts 0.0.20 → 0.0.22

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.
Files changed (128) hide show
  1. package/Makefile +1 -1
  2. package/README.md +3 -3
  3. package/TODO.md +14 -0
  4. package/dist/angular-ts.esm.js +1 -1
  5. package/dist/angular-ts.umd.js +1 -1
  6. package/index.html +2 -1
  7. package/package.json +1 -1
  8. package/src/animations/animate-css-driver.js +2 -2
  9. package/src/animations/animate-css.js +15 -6
  10. package/src/animations/animate-js.js +1 -1
  11. package/src/animations/animate-queue.js +1 -1
  12. package/src/animations/shared.js +0 -14
  13. package/src/core/compile.js +6 -3
  14. package/src/core/q.js +9 -9
  15. package/src/core/sanitize-uri.js +1 -1
  16. package/src/core/sce.js +1 -1
  17. package/src/directive/if.js +0 -79
  18. package/src/directive/if.md +80 -0
  19. package/src/directive/include.js +0 -82
  20. package/src/directive/include.md +86 -0
  21. package/src/directive/repeat.js +0 -1
  22. package/src/loader.js +0 -1
  23. package/src/public.js +0 -2
  24. package/src/router/common/trace.js +1 -1
  25. package/src/router/directives/stateDirectives.js +16 -14
  26. package/src/router/directives/viewDirective.js +2 -2
  27. package/src/router/hooks/resolve.js +3 -4
  28. package/src/router/hooks/views.js +3 -2
  29. package/src/router/state/stateService.js +1 -2
  30. package/src/router/transition/interface.js +14 -14
  31. package/src/router/transition/rejectFactory.js +29 -20
  32. package/src/router/transition/transitionHook.js +5 -5
  33. package/src/router/url/urlMatcher.js +1 -2
  34. package/src/router/url/urlRule.js +1 -1
  35. package/src/router/url/urlRules.js +1 -1
  36. package/src/shared/common.js +0 -1
  37. package/test/module-test.html +44 -12
  38. package/test/router/services.spec.js +71 -0
  39. package/test/router/state-directives.spec.js +1208 -0
  40. package/types/angular.d.ts +132 -124
  41. package/types/index.d.ts +2350 -2187
  42. package/types/jqlite.d.ts +463 -418
  43. package/types/router/core/common/common.d.ts +70 -24
  44. package/types/router/core/common/coreservices.d.ts +30 -32
  45. package/types/router/core/common/glob.d.ts +9 -9
  46. package/types/router/core/common/hof.d.ts +12 -4
  47. package/types/router/core/common/index.d.ts +8 -8
  48. package/types/router/core/common/predicates.d.ts +1 -1
  49. package/types/router/core/common/queue.d.ts +13 -13
  50. package/types/router/core/common/safeConsole.d.ts +3 -3
  51. package/types/router/core/common/strings.d.ts +4 -2
  52. package/types/router/core/common/trace.d.ts +94 -82
  53. package/types/router/core/globals.d.ts +37 -37
  54. package/types/router/core/hooks/coreResolvables.d.ts +5 -3
  55. package/types/router/core/hooks/ignoredTransition.d.ts +4 -2
  56. package/types/router/core/hooks/invalidTransition.d.ts +4 -2
  57. package/types/router/core/hooks/lazyLoad.d.ts +10 -5
  58. package/types/router/core/hooks/onEnterExitRetain.d.ts +10 -4
  59. package/types/router/core/hooks/redirectTo.d.ts +4 -2
  60. package/types/router/core/hooks/resolve.d.ts +10 -4
  61. package/types/router/core/hooks/updateGlobals.d.ts +4 -2
  62. package/types/router/core/hooks/url.d.ts +4 -2
  63. package/types/router/core/hooks/views.d.ts +7 -3
  64. package/types/router/core/index.d.ts +11 -12
  65. package/types/router/core/interface.d.ts +83 -81
  66. package/types/router/core/params/index.d.ts +5 -5
  67. package/types/router/core/params/interface.d.ts +439 -439
  68. package/types/router/core/params/param.d.ts +72 -60
  69. package/types/router/core/params/paramType.d.ts +40 -40
  70. package/types/router/core/params/paramTypes.d.ts +169 -165
  71. package/types/router/core/params/stateParams.d.ts +13 -13
  72. package/types/router/core/path/index.d.ts +2 -2
  73. package/types/router/core/path/pathNode.d.ts +49 -49
  74. package/types/router/core/path/pathUtils.d.ts +100 -74
  75. package/types/router/core/resolve/index.d.ts +3 -3
  76. package/types/router/core/resolve/interface.d.ts +137 -137
  77. package/types/router/core/resolve/resolvable.d.ts +60 -54
  78. package/types/router/core/resolve/resolveContext.d.ts +84 -79
  79. package/types/router/core/router.d.ts +95 -86
  80. package/types/router/core/state/index.d.ts +8 -8
  81. package/types/router/core/state/interface.d.ts +667 -643
  82. package/types/router/core/state/stateBuilder.d.ts +41 -38
  83. package/types/router/core/state/stateMatcher.d.ts +11 -9
  84. package/types/router/core/state/stateObject.d.ts +154 -139
  85. package/types/router/core/state/stateQueueManager.d.ts +26 -21
  86. package/types/router/core/state/stateRegistry.d.ts +124 -121
  87. package/types/router/core/state/stateService.d.ts +380 -343
  88. package/types/router/core/state/targetState.d.ts +74 -69
  89. package/types/router/core/transition/hookBuilder.d.ts +34 -30
  90. package/types/router/core/transition/hookRegistry.d.ts +96 -74
  91. package/types/router/core/transition/index.d.ts +8 -8
  92. package/types/router/core/transition/interface.d.ts +652 -609
  93. package/types/router/core/transition/rejectFactory.d.ts +97 -97
  94. package/types/router/core/transition/transition.d.ts +565 -517
  95. package/types/router/core/transition/transitionEventType.d.ts +20 -11
  96. package/types/router/core/transition/transitionHook.d.ts +90 -82
  97. package/types/router/core/transition/transitionService.d.ts +228 -161
  98. package/types/router/core/url/index.d.ts +8 -8
  99. package/types/router/core/url/interface.d.ts +100 -87
  100. package/types/router/core/url/urlConfig.d.ts +130 -126
  101. package/types/router/core/url/urlMatcher.d.ts +132 -127
  102. package/types/router/core/url/urlMatcherFactory.d.ts +46 -42
  103. package/types/router/core/url/urlRouter.d.ts +91 -75
  104. package/types/router/core/url/urlRule.d.ts +123 -100
  105. package/types/router/core/url/urlRules.d.ts +240 -232
  106. package/types/router/core/url/urlService.d.ts +201 -201
  107. package/types/router/core/view/index.d.ts +2 -2
  108. package/types/router/core/view/interface.d.ts +26 -26
  109. package/types/router/core/view/view.d.ts +152 -143
  110. package/types/router/directives/viewDirective.d.ts +12 -11
  111. package/types/router/index.d.ts +11 -12
  112. package/types/router/interface.d.ts +361 -351
  113. package/types/router/legacy/resolveService.d.ts +44 -40
  114. package/types/router/legacy/stateEvents.d.ts +1 -1
  115. package/types/router/locationServices.d.ts +45 -37
  116. package/types/router/services.d.ts +9 -9
  117. package/types/router/stateFilters.d.ts +3 -3
  118. package/types/router/stateProvider.d.ts +240 -235
  119. package/types/router/statebuilders/onEnterExitRetain.d.ts +4 -2
  120. package/types/router/statebuilders/views.d.ts +35 -22
  121. package/types/router/templateFactory.d.ts +99 -79
  122. package/types/router/viewScroll.d.ts +7 -7
  123. package/src/directive/a.js +0 -37
  124. package/test/directive/a.spec.js +0 -192
  125. package/types/router/angular.d.ts +0 -1
  126. package/types/router/core/vanilla.d.ts +0 -1
  127. package/types/router/directives/stateDirectives.d.ts +0 -3
  128. package/types/router/injectables.d.ts +0 -1
@@ -1,24 +1,27 @@
1
- import { TypedMap } from '../common/common';
2
- import { PathNode } from '../path/pathNode';
3
- import { ActiveUIView, ViewContext, ViewConfig } from './interface';
4
- import { _ViewDeclaration } from '../state/interface';
5
- import { UIRouter } from '../router';
6
- export declare type ViewConfigFactory = (path: PathNode[], decl: _ViewDeclaration) => ViewConfig | ViewConfig[];
1
+ import { TypedMap } from "../common/common";
2
+ import { PathNode } from "../path/pathNode";
3
+ import { ActiveUIView, ViewContext, ViewConfig } from "./interface";
4
+ import { _ViewDeclaration } from "../state/interface";
5
+ import { UIRouter } from "../router";
6
+ export declare type ViewConfigFactory = (
7
+ path: PathNode[],
8
+ decl: _ViewDeclaration,
9
+ ) => ViewConfig | ViewConfig[];
7
10
  export interface ViewServicePluginAPI {
8
- _rootViewContext(context?: ViewContext): ViewContext;
9
- _viewConfigFactory(viewType: string, factory: ViewConfigFactory): any;
10
- /** @param id router.$id + "." + uiView.id */
11
- _registeredUIView(id: string): ActiveUIView;
12
- _registeredUIViews(): ActiveUIView[];
13
- _activeViewConfigs(): ViewConfig[];
14
- _onSync(listener: ViewSyncListener): Function;
11
+ _rootViewContext(context?: ViewContext): ViewContext;
12
+ _viewConfigFactory(viewType: string, factory: ViewConfigFactory): any;
13
+ /** @param id router.$id + "." + uiView.id */
14
+ _registeredUIView(id: string): ActiveUIView;
15
+ _registeredUIViews(): ActiveUIView[];
16
+ _activeViewConfigs(): ViewConfig[];
17
+ _onSync(listener: ViewSyncListener): Function;
15
18
  }
16
19
  export interface ViewTuple {
17
- uiView: ActiveUIView;
18
- viewConfig: ViewConfig;
20
+ uiView: ActiveUIView;
21
+ viewConfig: ViewConfig;
19
22
  }
20
23
  export interface ViewSyncListener {
21
- (viewTuples: ViewTuple[]): void;
24
+ (viewTuples: ViewTuple[]): void;
22
25
  }
23
26
  /**
24
27
  * The View service
@@ -37,131 +40,137 @@ export interface ViewSyncListener {
37
40
  *
38
41
  */
39
42
  export declare class ViewService {
40
- private router;
41
- /** @internal */ private _uiViews;
42
- /** @internal */ private _viewConfigs;
43
- /** @internal */ private _rootContext;
44
- /** @internal */ private _viewConfigFactories;
45
- /** @internal */ private _listeners;
46
- /** @internal */
47
- _pluginapi: ViewServicePluginAPI;
48
- /**
49
- * Given a ui-view and a ViewConfig, determines if they "match".
50
- *
51
- * A ui-view has a fully qualified name (fqn) and a context object. The fqn is built from its overall location in
52
- * the DOM, describing its nesting relationship to any parent ui-view tags it is nested inside of.
53
- *
54
- * A ViewConfig has a target ui-view name and a context anchor. The ui-view name can be a simple name, or
55
- * can be a segmented ui-view path, describing a portion of a ui-view fqn.
56
- *
57
- * In order for a ui-view to match ViewConfig, ui-view's $type must match the ViewConfig's $type
58
- *
59
- * If the ViewConfig's target ui-view name is a simple name (no dots), then a ui-view matches if:
60
- * - the ui-view's name matches the ViewConfig's target name
61
- * - the ui-view's context matches the ViewConfig's anchor
62
- *
63
- * If the ViewConfig's target ui-view name is a segmented name (with dots), then a ui-view matches if:
64
- * - There exists a parent ui-view where:
65
- * - the parent ui-view's name matches the first segment (index 0) of the ViewConfig's target name
66
- * - the parent ui-view's context matches the ViewConfig's anchor
67
- * - And the remaining segments (index 1..n) of the ViewConfig's target name match the tail of the ui-view's fqn
68
- *
69
- * Example:
70
- *
71
- * DOM:
72
- * <ui-view> <!-- created in the root context (name: "") -->
73
- * <ui-view name="foo"> <!-- created in the context named: "A" -->
74
- * <ui-view> <!-- created in the context named: "A.B" -->
75
- * <ui-view name="bar"> <!-- created in the context named: "A.B.C" -->
76
- * </ui-view>
77
- * </ui-view>
78
- * </ui-view>
79
- * </ui-view>
80
- *
81
- * uiViews: [
82
- * { fqn: "$default", creationContext: { name: "" } },
83
- * { fqn: "$default.foo", creationContext: { name: "A" } },
84
- * { fqn: "$default.foo.$default", creationContext: { name: "A.B" } }
85
- * { fqn: "$default.foo.$default.bar", creationContext: { name: "A.B.C" } }
86
- * ]
87
- *
88
- * These four view configs all match the ui-view with the fqn: "$default.foo.$default.bar":
89
- *
90
- * - ViewConfig1: { uiViewName: "bar", uiViewContextAnchor: "A.B.C" }
91
- * - ViewConfig2: { uiViewName: "$default.bar", uiViewContextAnchor: "A.B" }
92
- * - ViewConfig3: { uiViewName: "foo.$default.bar", uiViewContextAnchor: "A" }
93
- * - ViewConfig4: { uiViewName: "$default.foo.$default.bar", uiViewContextAnchor: "" }
94
- *
95
- * Using ViewConfig3 as an example, it matches the ui-view with fqn "$default.foo.$default.bar" because:
96
- * - The ViewConfig's segmented target name is: [ "foo", "$default", "bar" ]
97
- * - There exists a parent ui-view (which has fqn: "$default.foo") where:
98
- * - the parent ui-view's name "foo" matches the first segment "foo" of the ViewConfig's target name
99
- * - the parent ui-view's context "A" matches the ViewConfig's anchor context "A"
100
- * - And the remaining segments [ "$default", "bar" ].join("."_ of the ViewConfig's target name match
101
- * the tail of the ui-view's fqn "default.bar"
102
- *
103
- * @internal
104
- */
105
- static matches: (uiViewsByFqn: TypedMap<ActiveUIView>, uiView: ActiveUIView) => (viewConfig: ViewConfig) => boolean;
106
- /**
107
- * Normalizes a view's name from a state.views configuration block.
108
- *
109
- * This should be used by a framework implementation to calculate the values for
110
- * [[_ViewDeclaration.$uiViewName]] and [[_ViewDeclaration.$uiViewContextAnchor]].
111
- *
112
- * @param context the context object (state declaration) that the view belongs to
113
- * @param rawViewName the name of the view, as declared in the [[StateDeclaration.views]]
114
- *
115
- * @returns the normalized uiViewName and uiViewContextAnchor that the view targets
116
- */
117
- static normalizeUIViewTarget(context: ViewContext, rawViewName?: string): {
118
- uiViewName: string;
119
- uiViewContextAnchor: string;
120
- };
121
- /** @internal */
122
- constructor(/** @internal */ router: UIRouter);
123
- /** @internal */
124
- private _rootViewContext;
125
- /** @internal */
126
- private _viewConfigFactory;
127
- createViewConfig(path: PathNode[], decl: _ViewDeclaration): ViewConfig[];
128
- /**
129
- * Deactivates a ViewConfig.
130
- *
131
- * This function deactivates a `ViewConfig`.
132
- * After calling [[sync]], it will un-pair from any `ui-view` with which it is currently paired.
133
- *
134
- * @param viewConfig The ViewConfig view to deregister.
135
- */
136
- deactivateViewConfig(viewConfig: ViewConfig): void;
137
- activateViewConfig(viewConfig: ViewConfig): void;
138
- sync(): void;
139
- /**
140
- * Registers a `ui-view` component
141
- *
142
- * When a `ui-view` component is created, it uses this method to register itself.
143
- * After registration the [[sync]] method is used to ensure all `ui-view` are configured with the proper [[ViewConfig]].
144
- *
145
- * Note: the `ui-view` component uses the `ViewConfig` to determine what view should be loaded inside the `ui-view`,
146
- * and what the view's state context is.
147
- *
148
- * Note: There is no corresponding `deregisterUIView`.
149
- * A `ui-view` should hang on to the return value of `registerUIView` and invoke it to deregister itself.
150
- *
151
- * @param uiView The metadata for a UIView
152
- * @return a de-registration function used when the view is destroyed.
153
- */
154
- registerUIView(uiView: ActiveUIView): () => void;
155
- /**
156
- * Returns the list of views currently available on the page, by fully-qualified name.
157
- *
158
- * @return {Array} Returns an array of fully-qualified view names.
159
- */
160
- available(): any[];
161
- /**
162
- * Returns the list of views on the page containing loaded content.
163
- *
164
- * @return {Array} Returns an array of fully-qualified view names.
165
- */
166
- active(): any[];
43
+ private router;
44
+ /** @internal */ private _uiViews;
45
+ /** @internal */ private _viewConfigs;
46
+ /** @internal */ private _rootContext;
47
+ /** @internal */ private _viewConfigFactories;
48
+ /** @internal */ private _listeners;
49
+ /** @internal */
50
+ _pluginapi: ViewServicePluginAPI;
51
+ /**
52
+ * Given a ui-view and a ViewConfig, determines if they "match".
53
+ *
54
+ * A ui-view has a fully qualified name (fqn) and a context object. The fqn is built from its overall location in
55
+ * the DOM, describing its nesting relationship to any parent ui-view tags it is nested inside of.
56
+ *
57
+ * A ViewConfig has a target ui-view name and a context anchor. The ui-view name can be a simple name, or
58
+ * can be a segmented ui-view path, describing a portion of a ui-view fqn.
59
+ *
60
+ * In order for a ui-view to match ViewConfig, ui-view's $type must match the ViewConfig's $type
61
+ *
62
+ * If the ViewConfig's target ui-view name is a simple name (no dots), then a ui-view matches if:
63
+ * - the ui-view's name matches the ViewConfig's target name
64
+ * - the ui-view's context matches the ViewConfig's anchor
65
+ *
66
+ * If the ViewConfig's target ui-view name is a segmented name (with dots), then a ui-view matches if:
67
+ * - There exists a parent ui-view where:
68
+ * - the parent ui-view's name matches the first segment (index 0) of the ViewConfig's target name
69
+ * - the parent ui-view's context matches the ViewConfig's anchor
70
+ * - And the remaining segments (index 1..n) of the ViewConfig's target name match the tail of the ui-view's fqn
71
+ *
72
+ * Example:
73
+ *
74
+ * DOM:
75
+ * <ui-view> <!-- created in the root context (name: "") -->
76
+ * <ui-view name="foo"> <!-- created in the context named: "A" -->
77
+ * <ui-view> <!-- created in the context named: "A.B" -->
78
+ * <ui-view name="bar"> <!-- created in the context named: "A.B.C" -->
79
+ * </ui-view>
80
+ * </ui-view>
81
+ * </ui-view>
82
+ * </ui-view>
83
+ *
84
+ * uiViews: [
85
+ * { fqn: "$default", creationContext: { name: "" } },
86
+ * { fqn: "$default.foo", creationContext: { name: "A" } },
87
+ * { fqn: "$default.foo.$default", creationContext: { name: "A.B" } }
88
+ * { fqn: "$default.foo.$default.bar", creationContext: { name: "A.B.C" } }
89
+ * ]
90
+ *
91
+ * These four view configs all match the ui-view with the fqn: "$default.foo.$default.bar":
92
+ *
93
+ * - ViewConfig1: { uiViewName: "bar", uiViewContextAnchor: "A.B.C" }
94
+ * - ViewConfig2: { uiViewName: "$default.bar", uiViewContextAnchor: "A.B" }
95
+ * - ViewConfig3: { uiViewName: "foo.$default.bar", uiViewContextAnchor: "A" }
96
+ * - ViewConfig4: { uiViewName: "$default.foo.$default.bar", uiViewContextAnchor: "" }
97
+ *
98
+ * Using ViewConfig3 as an example, it matches the ui-view with fqn "$default.foo.$default.bar" because:
99
+ * - The ViewConfig's segmented target name is: [ "foo", "$default", "bar" ]
100
+ * - There exists a parent ui-view (which has fqn: "$default.foo") where:
101
+ * - the parent ui-view's name "foo" matches the first segment "foo" of the ViewConfig's target name
102
+ * - the parent ui-view's context "A" matches the ViewConfig's anchor context "A"
103
+ * - And the remaining segments [ "$default", "bar" ].join("."_ of the ViewConfig's target name match
104
+ * the tail of the ui-view's fqn "default.bar"
105
+ *
106
+ * @internal
107
+ */
108
+ static matches: (
109
+ uiViewsByFqn: TypedMap<ActiveUIView>,
110
+ uiView: ActiveUIView,
111
+ ) => (viewConfig: ViewConfig) => boolean;
112
+ /**
113
+ * Normalizes a view's name from a state.views configuration block.
114
+ *
115
+ * This should be used by a framework implementation to calculate the values for
116
+ * [[_ViewDeclaration.$uiViewName]] and [[_ViewDeclaration.$uiViewContextAnchor]].
117
+ *
118
+ * @param context the context object (state declaration) that the view belongs to
119
+ * @param rawViewName the name of the view, as declared in the [[StateDeclaration.views]]
120
+ *
121
+ * @returns the normalized uiViewName and uiViewContextAnchor that the view targets
122
+ */
123
+ static normalizeUIViewTarget(
124
+ context: ViewContext,
125
+ rawViewName?: string,
126
+ ): {
127
+ uiViewName: string;
128
+ uiViewContextAnchor: string;
129
+ };
130
+ /** @internal */
131
+ constructor(/** @internal */ router: UIRouter);
132
+ /** @internal */
133
+ private _rootViewContext;
134
+ /** @internal */
135
+ private _viewConfigFactory;
136
+ createViewConfig(path: PathNode[], decl: _ViewDeclaration): ViewConfig[];
137
+ /**
138
+ * Deactivates a ViewConfig.
139
+ *
140
+ * This function deactivates a `ViewConfig`.
141
+ * After calling [[sync]], it will un-pair from any `ui-view` with which it is currently paired.
142
+ *
143
+ * @param viewConfig The ViewConfig view to deregister.
144
+ */
145
+ deactivateViewConfig(viewConfig: ViewConfig): void;
146
+ activateViewConfig(viewConfig: ViewConfig): void;
147
+ sync(): void;
148
+ /**
149
+ * Registers a `ui-view` component
150
+ *
151
+ * When a `ui-view` component is created, it uses this method to register itself.
152
+ * After registration the [[sync]] method is used to ensure all `ui-view` are configured with the proper [[ViewConfig]].
153
+ *
154
+ * Note: the `ui-view` component uses the `ViewConfig` to determine what view should be loaded inside the `ui-view`,
155
+ * and what the view's state context is.
156
+ *
157
+ * Note: There is no corresponding `deregisterUIView`.
158
+ * A `ui-view` should hang on to the return value of `registerUIView` and invoke it to deregister itself.
159
+ *
160
+ * @param uiView The metadata for a UIView
161
+ * @return a de-registration function used when the view is destroyed.
162
+ */
163
+ registerUIView(uiView: ActiveUIView): () => void;
164
+ /**
165
+ * Returns the list of views currently available on the page, by fully-qualified name.
166
+ *
167
+ * @return {Array} Returns an array of fully-qualified view names.
168
+ */
169
+ available(): any[];
170
+ /**
171
+ * Returns the list of views on the page containing loaded content.
172
+ *
173
+ * @return {Array} Returns an array of fully-qualified view names.
174
+ */
175
+ active(): any[];
167
176
  }
@@ -1,19 +1,20 @@
1
1
  /** @publicapi @module directives */ /** */
2
- import { ActiveUIView } from './core';
3
- import { Ng1ViewConfig } from '../statebuilders/views';
4
- import { ng1_directive } from './stateDirectives';
2
+ import { IDirective } from "../..";
3
+ import { ActiveUIView } from "../core";
4
+ import { Ng1ViewConfig } from "../statebuilders/views";
5
+
5
6
  /** @hidden */
6
7
  export declare type UIViewData = {
7
- $cfg: Ng1ViewConfig;
8
- $uiView: ActiveUIView;
8
+ $cfg: Ng1ViewConfig;
9
+ $uiView: ActiveUIView;
9
10
  };
10
11
  /** @hidden */
11
12
  export declare type UIViewAnimData = {
12
- $animEnter: Promise<any>;
13
- $animLeave: Promise<any>;
14
- $$animLeave: {
15
- resolve: () => any;
16
- };
13
+ $animEnter: Promise<any>;
14
+ $animLeave: Promise<any>;
15
+ $$animLeave: {
16
+ resolve: () => any;
17
+ };
17
18
  };
18
19
  /**
19
20
  * `ui-view`: A viewport directive which is filled in by a view from the active state.
@@ -140,4 +141,4 @@ export declare type UIViewAnimData = {
140
141
  * });
141
142
  * ```
142
143
  */
143
- export declare let uiView: ng1_directive;
144
+ export declare let uiView: IDirective;
@@ -2,18 +2,17 @@
2
2
  * Main entry point for angular 1.x build
3
3
  * @publicapi @module ng1
4
4
  */ /** */
5
- export * from './interface';
6
- export * from './services';
7
- export * from './statebuilders/views';
8
- export * from './stateProvider';
9
- export * from './urlRouterProvider';
10
- import './injectables';
11
- import './directives/stateDirectives';
12
- import './stateFilters';
13
- import './directives/viewDirective';
14
- import './viewScroll';
5
+ export * from "./interface";
6
+ export * from "./services";
7
+ export * from "./statebuilders/views";
8
+ export * from "./stateProvider";
9
+ import "./injectables";
10
+ import "./directives/stateDirectives";
11
+ import "./stateFilters";
12
+ import "./directives/viewDirective";
13
+ import "./viewScroll";
15
14
  declare const _default: "router";
16
15
  export default _default;
17
- import * as core from './core/index';
16
+ import * as core from "./core/index";
18
17
  export { core };
19
- export * from './core/index';
18
+ export * from "./core/index";