asap-feed-beta 12.1.9 → 12.2.0-dev.2
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.
- package/README.md +24 -24
- package/asap-feed-beta.d.ts +19 -19
- package/asap-feed-beta.metadata.json +1 -1
- package/bundles/asap-feed-beta.umd.js +6070 -6054
- package/bundles/asap-feed-beta.umd.js.map +1 -1
- package/bundles/asap-feed-beta.umd.min.js +1 -15
- package/bundles/asap-feed-beta.umd.min.js.map +1 -1
- package/esm2015/asap-feed-beta.js +24 -24
- package/esm2015/lib/asap-feed-beta.component.js +386 -380
- package/esm2015/lib/asap-feed-beta.module.js +131 -131
- package/esm2015/lib/asap-feed-beta.routing.js +18 -18
- package/esm2015/lib/asap-feed-beta.service.js +38 -38
- package/esm2015/lib/constants/constants.js +19 -19
- package/esm2015/lib/feed-actions/feed-actions.component.js +384 -384
- package/esm2015/lib/feed-comments/feed-comments.component.js +520 -520
- package/esm2015/lib/feed-item/feed-item.component.js +347 -346
- package/esm2015/lib/feed-publication/feed-modal-item-edit/feed-modal-item-edit.component.js +627 -627
- package/esm2015/lib/feed-publication/feed-publication.component.js +610 -610
- package/esm2015/lib/feed-publication/modal-announce/modal-announce.component.js +779 -779
- package/esm2015/lib/models/feed.model.js +168 -168
- package/esm2015/lib/pipes/currency.pipe.js +47 -47
- package/esm2015/lib/pipes/pipes.module.js +31 -31
- package/esm2015/lib/pipes/safe.pipe.js +49 -49
- package/esm2015/lib/pipes/stream.pipe.js +112 -112
- package/esm2015/lib/services/asap-feed.service.js +167 -167
- package/esm2015/lib/services/channel.service.js +211 -211
- package/esm2015/lib/services/product.service.js +133 -133
- package/esm2015/lib/services/stream.service.js +88 -88
- package/esm2015/lib/services/utils.service.js +139 -139
- package/esm2015/lib/stories/stories.component.js +171 -171
- package/esm2015/public-api.js +15 -15
- package/esm5/asap-feed-beta.js +24 -24
- package/esm5/lib/asap-feed-beta.component.js +452 -446
- package/esm5/lib/asap-feed-beta.module.js +131 -131
- package/esm5/lib/asap-feed-beta.routing.js +18 -18
- package/esm5/lib/asap-feed-beta.service.js +40 -40
- package/esm5/lib/constants/constants.js +19 -19
- package/esm5/lib/feed-actions/feed-actions.component.js +407 -407
- package/esm5/lib/feed-comments/feed-comments.component.js +592 -592
- package/esm5/lib/feed-item/feed-item.component.js +430 -429
- package/esm5/lib/feed-publication/feed-modal-item-edit/feed-modal-item-edit.component.js +939 -939
- package/esm5/lib/feed-publication/feed-publication.component.js +710 -710
- package/esm5/lib/feed-publication/modal-announce/modal-announce.component.js +928 -928
- package/esm5/lib/models/feed.model.js +178 -178
- package/esm5/lib/pipes/currency.pipe.js +53 -53
- package/esm5/lib/pipes/pipes.module.js +35 -35
- package/esm5/lib/pipes/safe.pipe.js +53 -53
- package/esm5/lib/pipes/stream.pipe.js +136 -136
- package/esm5/lib/services/asap-feed.service.js +232 -232
- package/esm5/lib/services/channel.service.js +290 -290
- package/esm5/lib/services/product.service.js +180 -180
- package/esm5/lib/services/stream.service.js +105 -105
- package/esm5/lib/services/utils.service.js +168 -168
- package/esm5/lib/stories/stories.component.js +178 -178
- package/esm5/public-api.js +15 -15
- package/fesm2015/asap-feed-beta.js +4995 -4988
- package/fesm2015/asap-feed-beta.js.map +1 -1
- package/fesm5/asap-feed-beta.js +6066 -6059
- package/fesm5/asap-feed-beta.js.map +1 -1
- package/lib/asap-feed-beta.component.d.ts +39 -38
- package/lib/asap-feed-beta.module.d.ts +5 -5
- package/lib/asap-feed-beta.routing.d.ts +2 -2
- package/lib/asap-feed-beta.service.d.ts +8 -8
- package/lib/constants/constants.d.ts +6 -6
- package/lib/feed-actions/feed-actions.component.d.ts +35 -35
- package/lib/feed-comments/feed-comments.component.d.ts +45 -45
- package/lib/feed-item/feed-item.component.d.ts +42 -42
- package/lib/feed-publication/feed-modal-item-edit/feed-modal-item-edit.component.d.ts +43 -43
- package/lib/feed-publication/feed-publication.component.d.ts +47 -47
- package/lib/feed-publication/modal-announce/modal-announce.component.d.ts +64 -64
- package/lib/models/feed.model.d.ts +54 -54
- package/lib/pipes/currency.pipe.d.ts +7 -7
- package/lib/pipes/pipes.module.d.ts +2 -2
- package/lib/pipes/safe.pipe.d.ts +7 -7
- package/lib/pipes/stream.pipe.d.ts +13 -13
- package/lib/services/asap-feed.service.d.ts +19 -19
- package/lib/services/channel.service.d.ts +22 -22
- package/lib/services/product.service.d.ts +20 -20
- package/lib/services/stream.service.d.ts +11 -11
- package/lib/services/utils.service.d.ts +25 -25
- package/lib/stories/stories.component.d.ts +19 -19
- package/package.json +2 -1
- package/public-api.d.ts +6 -6
package/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# AsapFeedBeta
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.14.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project asap-feed-beta` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project asap-feed-beta`.
|
|
8
|
-
> Note: Don't forget to add `--project asap-feed-beta` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build asap-feed-beta` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build asap-feed-beta`, go to the dist folder `cd dist/asap-feed-beta` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test asap-feed-beta` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
|
|
1
|
+
# AsapFeedBeta
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.2.14.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project asap-feed-beta` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project asap-feed-beta`.
|
|
8
|
+
> Note: Don't forget to add `--project asap-feed-beta` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build asap-feed-beta` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build asap-feed-beta`, go to the dist folder `cd dist/asap-feed-beta` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test asap-feed-beta` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
|
package/asap-feed-beta.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public-api';
|
|
5
|
-
export { FeedActionsComponent as ɵi } from './lib/feed-actions/feed-actions.component';
|
|
6
|
-
export { FeedCommentsComponent as ɵh } from './lib/feed-comments/feed-comments.component';
|
|
7
|
-
export { FeedItemComponent as ɵf } from './lib/feed-item/feed-item.component';
|
|
8
|
-
export { FeedModalItemEditComponent as ɵk } from './lib/feed-publication/feed-modal-item-edit/feed-modal-item-edit.component';
|
|
9
|
-
export { FeedPublicationComponent as ɵj } from './lib/feed-publication/feed-publication.component';
|
|
10
|
-
export { ModalAnnounceComponent as ɵn } from './lib/feed-publication/modal-announce/modal-announce.component';
|
|
11
|
-
export { LooseCurrencyPipe as ɵe } from './lib/pipes/currency.pipe';
|
|
12
|
-
export { PipesModule as ɵb } from './lib/pipes/pipes.module';
|
|
13
|
-
export { SafePipe as ɵc } from './lib/pipes/safe.pipe';
|
|
14
|
-
export { StreamPipe as ɵd } from './lib/pipes/stream.pipe';
|
|
15
|
-
export { AsapFeedService as ɵa } from './lib/services/asap-feed.service';
|
|
16
|
-
export { ChannelService as ɵm } from './lib/services/channel.service';
|
|
17
|
-
export { ProductService as ɵo } from './lib/services/product.service';
|
|
18
|
-
export { StreamService as ɵg } from './lib/services/stream.service';
|
|
19
|
-
export { StoriesComponent as ɵl } from './lib/stories/stories.component';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
export { FeedActionsComponent as ɵi } from './lib/feed-actions/feed-actions.component';
|
|
6
|
+
export { FeedCommentsComponent as ɵh } from './lib/feed-comments/feed-comments.component';
|
|
7
|
+
export { FeedItemComponent as ɵf } from './lib/feed-item/feed-item.component';
|
|
8
|
+
export { FeedModalItemEditComponent as ɵk } from './lib/feed-publication/feed-modal-item-edit/feed-modal-item-edit.component';
|
|
9
|
+
export { FeedPublicationComponent as ɵj } from './lib/feed-publication/feed-publication.component';
|
|
10
|
+
export { ModalAnnounceComponent as ɵn } from './lib/feed-publication/modal-announce/modal-announce.component';
|
|
11
|
+
export { LooseCurrencyPipe as ɵe } from './lib/pipes/currency.pipe';
|
|
12
|
+
export { PipesModule as ɵb } from './lib/pipes/pipes.module';
|
|
13
|
+
export { SafePipe as ɵc } from './lib/pipes/safe.pipe';
|
|
14
|
+
export { StreamPipe as ɵd } from './lib/pipes/stream.pipe';
|
|
15
|
+
export { AsapFeedService as ɵa } from './lib/services/asap-feed.service';
|
|
16
|
+
export { ChannelService as ɵm } from './lib/services/channel.service';
|
|
17
|
+
export { ProductService as ɵo } from './lib/services/product.service';
|
|
18
|
+
export { StreamService as ɵg } from './lib/services/stream.service';
|
|
19
|
+
export { StoriesComponent as ɵl } from './lib/stories/stories.component';
|