@wizishop/angular-components 14.4.23 → 14.4.25

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 (27) hide show
  1. package/esm2020/lib/animations/list/animate-list-from-bottom.animation.mjs +18 -0
  2. package/esm2020/lib/animations/list/animate-list-from-left.animation.mjs +18 -0
  3. package/esm2020/lib/animations/list/animate-list-from-right.animation.mjs +18 -0
  4. package/esm2020/lib/animations/list/animate-list-from-top.animation.mjs +16 -0
  5. package/esm2020/lib/animations/show/show-from-bottom.animation.mjs +15 -0
  6. package/esm2020/lib/animations/show/show-from-left.animation.mjs +15 -0
  7. package/esm2020/lib/animations/show/show-from-right.animation.mjs +15 -0
  8. package/esm2020/lib/animations/show/show-from-top.animation.mjs +15 -0
  9. package/esm2020/lib/animations/switch/switch-in-out.animation.mjs +6 -0
  10. package/esm2020/public-api.mjs +13 -1
  11. package/fesm2015/wizishop-angular-components.mjs +129 -2
  12. package/fesm2015/wizishop-angular-components.mjs.map +1 -1
  13. package/fesm2020/wizishop-angular-components.mjs +129 -2
  14. package/fesm2020/wizishop-angular-components.mjs.map +1 -1
  15. package/lib/animations/list/animate-list-from-bottom.animation.d.ts +1 -0
  16. package/lib/animations/list/animate-list-from-left.animation.d.ts +1 -0
  17. package/lib/animations/list/animate-list-from-right.animation.d.ts +1 -0
  18. package/lib/animations/list/animate-list-from-top.animation.d.ts +1 -0
  19. package/lib/animations/show/show-from-bottom.animation.d.ts +1 -0
  20. package/lib/animations/show/show-from-left.animation.d.ts +1 -0
  21. package/lib/animations/show/show-from-right.animation.d.ts +1 -0
  22. package/lib/animations/show/show-from-top.animation.d.ts +1 -0
  23. package/lib/animations/switch/switch-in-out.animation.d.ts +1 -0
  24. package/package.json +1 -1
  25. package/public-api.d.ts +12 -0
  26. package/wizishop-angular-components-14.4.25.tgz +0 -0
  27. package/wizishop-angular-components-14.4.23.tgz +0 -0
@@ -13,7 +13,7 @@ import { takeUntil, debounceTime, distinctUntilChanged, tap, filter, map, takeWh
13
13
  import * as i1$1 from '@angular/cdk/overlay';
14
14
  import { TAB, DOWN_ARROW, UP_ARROW, LEFT_ARROW, RIGHT_ARROW, A, Z, ZERO, NINE, ENTER, SPACE, hasModifierKey, ESCAPE } from '@angular/cdk/keycodes';
15
15
  import { CdkTableModule } from '@angular/cdk/table';
16
- import { trigger, transition, style, animate, state } from '@angular/animations';
16
+ import { trigger, transition, style, animate, state, animation, query, stagger } from '@angular/animations';
17
17
  import { TagInputModule } from 'ngx-chips';
18
18
  import * as i1$2 from '@ngx-translate/core';
19
19
  import { TranslateModule } from '@ngx-translate/core';
@@ -6223,6 +6223,133 @@ class TableFiltersGroup extends NwbFilterGroup {
6223
6223
  }
6224
6224
  }
6225
6225
 
6226
+ const currentUsedSelectorForThisAnimation$3 = 'li, div';
6227
+ const showFromBottom = trigger('showFromBottom', [
6228
+ transition('* => *', [
6229
+ animation([
6230
+ query(currentUsedSelectorForThisAnimation$3, style({
6231
+ opacity: 0,
6232
+ position: 'relative',
6233
+ bottom: -150
6234
+ }), { optional: true }),
6235
+ query(currentUsedSelectorForThisAnimation$3, [stagger('150ms', animate('100ms', style({ opacity: 1, bottom: 0 })))], { optional: true })
6236
+ ])
6237
+ ])
6238
+ ]);
6239
+
6240
+ const currentUsedSelectorForThisAnimation$2 = 'li, div';
6241
+ const showFromTop = trigger('showFromTop', [
6242
+ transition('* => *', [
6243
+ animation([
6244
+ query(currentUsedSelectorForThisAnimation$2, style({
6245
+ opacity: 0,
6246
+ position: 'relative',
6247
+ top: -150
6248
+ }), { optional: true }),
6249
+ query(currentUsedSelectorForThisAnimation$2, [stagger('150ms', animate('100ms', style({ opacity: 1, top: 0 })))], { optional: true })
6250
+ ])
6251
+ ])
6252
+ ]);
6253
+
6254
+ const currentUsedSelectorForThisAnimation$1 = 'li, div';
6255
+ const showFromLeft = trigger('showFromLeft', [
6256
+ transition('* => *', [
6257
+ animation([
6258
+ query(currentUsedSelectorForThisAnimation$1, style({
6259
+ opacity: 0,
6260
+ position: 'relative',
6261
+ left: -150
6262
+ }), { optional: true }),
6263
+ query(currentUsedSelectorForThisAnimation$1, [stagger('150ms', animate('100ms', style({ opacity: 1, left: 0 })))], { optional: true })
6264
+ ])
6265
+ ])
6266
+ ]);
6267
+
6268
+ const currentUsedSelectorForThisAnimation = 'li, div';
6269
+ const showFromRight = trigger('showFromRight', [
6270
+ transition('* => *', [
6271
+ animation([
6272
+ query(currentUsedSelectorForThisAnimation, style({
6273
+ opacity: 0,
6274
+ position: 'relative',
6275
+ right: -150
6276
+ }), { optional: true }),
6277
+ query(currentUsedSelectorForThisAnimation, [stagger('150ms', animate('100ms', style({ opacity: 1, right: 0 })))], { optional: true })
6278
+ ])
6279
+ ])
6280
+ ]);
6281
+
6282
+ function animateListFromBottom(passedTime = '.3s ease') {
6283
+ return trigger('animateList', [
6284
+ transition('* => *', [
6285
+ animation([
6286
+ query(':enter', [style({ position: 'relative', opacity: 0, bottom: '-60px' })], { optional: true }),
6287
+ query(':leave', [
6288
+ style({ position: 'relative', opacity: 1, bottom: 0 }),
6289
+ animate('{{time}}', style({ position: 'relative', opacity: 0, bottom: '-60px' }))
6290
+ ], { optional: true }),
6291
+ query(':enter', stagger('100ms', [animate('{{time}}', style({ position: 'relative', opacity: 1, bottom: 0 }))]), {
6292
+ optional: true
6293
+ })
6294
+ ], { params: { time: passedTime } })
6295
+ ])
6296
+ ]);
6297
+ }
6298
+
6299
+ function animateListFromTop(passedTime = '.3s ease') {
6300
+ return trigger('animateList', [
6301
+ transition('* => *', [
6302
+ animation([
6303
+ query(':enter', [style({ position: 'relative', opacity: 0, top: '-60px' })], { optional: true }),
6304
+ query(':leave', [
6305
+ style({ position: 'relative', opacity: 1, top: 0 }),
6306
+ animate('{{time}}', style({ position: 'relative', opacity: 0, top: '-60px' }))
6307
+ ], { optional: true }),
6308
+ query(':enter', stagger('200ms', [animate('{{time}}', style({ position: 'relative', opacity: 1, top: 0 }))]), { optional: true })
6309
+ ], { params: { time: passedTime } })
6310
+ ])
6311
+ ]);
6312
+ }
6313
+
6314
+ function animateListFromRight(passedTime = '.3s ease-in-out', staggerTime = '50ms') {
6315
+ return trigger('animateList', [
6316
+ transition('* => *', [
6317
+ animation([
6318
+ query(':enter', [style({ position: 'relative', opacity: 0, right: '-60px' })], { optional: true }),
6319
+ query(':leave', [
6320
+ style({ position: 'relative', opacity: 1, right: 0 }),
6321
+ animate('{{time}}', style({ position: 'relative', opacity: 0, right: '-60px' }))
6322
+ ], { optional: true }),
6323
+ query(':enter', stagger(staggerTime, [animate('{{time}}', style({ position: 'relative', opacity: 1, right: 0 }))]), {
6324
+ optional: true
6325
+ })
6326
+ ], { params: { time: passedTime } })
6327
+ ])
6328
+ ]);
6329
+ }
6330
+
6331
+ function animateListFromLeft(passedTime = '.3s ease') {
6332
+ return trigger('animateList', [
6333
+ transition('* => *', [
6334
+ animation([
6335
+ query(':enter', [style({ position: 'relative', opacity: 0, left: '-60px' })], { optional: true }),
6336
+ query(':leave', [
6337
+ style({ position: 'relative', opacity: 1, left: 0 }),
6338
+ animate('{{time}}', style({ position: 'relative', opacity: 0, left: '-60px' }))
6339
+ ], { optional: true }),
6340
+ query(':enter', stagger('{{time}}', [animate('{{time}}', style({ position: 'relative', opacity: 1, left: 0 }))]), {
6341
+ optional: true
6342
+ })
6343
+ ], { params: { time: passedTime } })
6344
+ ])
6345
+ ]);
6346
+ }
6347
+
6348
+ const switchInOut = trigger('switchInOut', [
6349
+ transition(':enter', [animation([style({ transform: 'translateX(100%)', opacity: 0 }), animate('200ms 200ms ease')])]),
6350
+ transition(':leave', [animation([animate('200ms ease', style({ transform: 'translateX(-100%)', opacity: 0 }))])])
6351
+ ]);
6352
+
6226
6353
  /*
6227
6354
  * Public API Surface of angular-components
6228
6355
  */
@@ -6231,5 +6358,5 @@ class TableFiltersGroup extends NwbFilterGroup {
6231
6358
  * Generated bundle index. Do not edit.
6232
6359
  */
6233
6360
 
6234
- export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelBase, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OnlyNumberDirective, OptionCallToActionComponent, OptionComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectDirective, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectTestComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, TwoDigitDecimalNumberDirective, UploadComponent, ValueChangeService, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective };
6361
+ export { ACCORDION_ITEM, AbstractDebounceDirective, AccordionComponent, AlertComponent, AlertPopupComponent, AlertPopupModule, AlertPopupService, AreAllOptionsSelectedPipe, AutoHideDirective, BackComponent, BlockComponent, BlockSeparatorComponent, BlockTitleLegacyComponent, BlockWithCheckboxComponent, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CallComponentFunctionPipe, CardPriceComponent, ChargingBarComponent, CheckBoxRow, CheckboxComponent, ConfirmDeleteComponent, ContentWithButtonsComponent, DebounceKeyupDirective, DeleteComponent, DraganddropListComponent, DropdownComponent, EXPANSION_PANEL_HEADER, ExpandedPanelComponent, ExpansionExport, ExpansionModule, ExpansionPanelBase, ExpansionPanelComponent, ExpansionPanelDirective, ExpansionPanelHeaderComponent, ExpansionPanelHeaderDirective, FilterOptionsPipe, FiltersComponent, FiltersTableService, FindOptionSelectedPipe, FormatObjectToRecursifTreePipe, FormatObjectToSimpleTreePipe, FreePopinComponent, GooglePreviewComponent, H1Component, H2Component, H3Component, H4Component, HeaderPageComponent, HtmlContainer, ImageComponent, InfoComponent, InputComponent, InputSearchComponent, InputWithSelectComponent, KeypressEnterDirective, LabelComponent, LinkComponent, LoaderComponent, LogoComponent, MosaicComponent, MultipleSearchComponent, MultipleSearchPlusComponent, OnlyNumberDirective, OptionCallToActionComponent, OptionComponent, OptionalDisableContainerComponent, PaginationComponent, PlaceholderComponent, PopinComponent, ProgressBarComponent, RadioComponent, SearchComponent, SelectComponent, SelectDirective, SelectFiltersPipe, SelectInTextComponent, SelectOptionDirective, SelectSearchTriggerComponent, SelectTestComponent, SelectedListComponent, SeparatorComponent, SettingsComponent, SharedComponentsModule, SharedDirectives, SharedPipes, SnackbarComponent, StateComponent, SummaryComponent, SwitchComponent, TabComponent, TableColumn, TableColumnHeader, TableComponent, TableFiltersGroup, TableRow, TagComponent, TagLabelComponent, TextAreaComponent, TextComponent, TokenCheckComponent, TooltipComponent, TreeComponent, TreeModule, TwoDigitDecimalNumberDirective, UploadComponent, ValueChangeService, VarDirective, WiziComponentsModule, WrapperBlocsComponent, WrapperComponent, WrapperMultipleBlockComponent, WrapperSidebarComponent, WzEditInPlaceComponent, ZindexToggleDirective, animateListFromBottom, animateListFromLeft, animateListFromRight, animateListFromTop, inOutX, inOutY, opacityAnimation, showFromBottom, showFromLeft, showFromRight, showFromTop, switchInOut };
6235
6362
  //# sourceMappingURL=wizishop-angular-components.mjs.map