ng-wsl-library 0.4.0 → 0.5.0
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 +183 -133
- package/esm2020/lib/components/public-api.mjs +3 -2
- package/esm2020/lib/components/wsl-carousel/index.mjs +5 -0
- package/esm2020/lib/components/wsl-carousel/wsl-carousel.component.mjs +8 -2
- package/esm2020/lib/components/wsl-cms/cms-item/cms-item.component.mjs +3 -3
- package/esm2020/lib/components/wsl-cms/wsl-cms.component.mjs +3 -3
- package/esm2020/lib/components/wsl-components.module.mjs +13 -9
- package/esm2020/lib/components/wsl-datetime-picker/wsl-datetime-picker.component.mjs +666 -0
- package/esm2020/lib/components/wsl-datetime-picker/wsl-datetime-picker.module.mjs +36 -0
- package/esm2020/lib/constants/datetime-picker.constants.mjs +251 -0
- package/esm2020/lib/constants/public-api.mjs +5 -0
- package/esm2020/lib/directives/public-api.mjs +2 -1
- package/esm2020/lib/directives/wsl-directives.module.mjs +17 -4
- package/esm2020/lib/directives/wsl-tooltip.directive.mjs +336 -0
- package/esm2020/lib/interfaces/date-format.interface.mjs +7 -0
- package/esm2020/lib/interfaces/public-api.mjs +2 -1
- package/esm2020/lib/metadata/wsl-cms.metadata.mjs +3 -16
- package/esm2020/lib/models/public-api.mjs +3 -1
- package/esm2020/lib/models/wsl-date-formats.mjs +80 -0
- package/esm2020/lib/models/wsl-date-time.model.mjs +58 -0
- package/esm2020/lib/pipes/wsl-currency/wsl-currency.pipe.mjs +2 -2
- package/esm2020/lib/services/config/wsl-config.service.mjs +95 -0
- package/esm2020/lib/services/i18n/wsl-i18n.service.mjs +137 -0
- package/esm2020/lib/services/public-api.mjs +4 -2
- package/esm2020/lib/services/wsl-microfrontend.service.mjs +52 -5
- package/esm2020/lib/utils/date-time/index.mjs +5 -0
- package/esm2020/lib/utils/date-time/wsl-date-time.utils.mjs +194 -0
- package/esm2020/lib/utils/public-api.mjs +6 -0
- package/esm2020/lib/wsl-library.module.mjs +1 -1
- package/esm2020/public-api.mjs +5 -1
- package/fesm2015/ng-wsl-library.mjs +1887 -146
- package/fesm2015/ng-wsl-library.mjs.map +1 -1
- package/fesm2020/ng-wsl-library.mjs +1877 -148
- package/fesm2020/ng-wsl-library.mjs.map +1 -1
- package/lib/components/public-api.d.ts +2 -1
- package/lib/components/wsl-carousel/index.d.ts +4 -0
- package/lib/components/wsl-components.module.d.ts +5 -5
- package/lib/components/wsl-datetime-picker/wsl-datetime-picker.component.d.ts +120 -0
- package/lib/components/wsl-datetime-picker/wsl-datetime-picker.module.d.ts +11 -0
- package/lib/constants/datetime-picker.constants.d.ts +111 -0
- package/lib/constants/public-api.d.ts +1 -0
- package/lib/directives/public-api.d.ts +1 -0
- package/lib/directives/wsl-directives.module.d.ts +2 -1
- package/lib/directives/wsl-tooltip.directive.d.ts +29 -0
- package/lib/interfaces/date-format.interface.d.ts +35 -0
- package/lib/interfaces/public-api.d.ts +1 -0
- package/lib/models/public-api.d.ts +2 -0
- package/lib/models/wsl-date-formats.d.ts +26 -0
- package/lib/models/wsl-date-time.model.d.ts +25 -0
- package/lib/pipes/wsl-currency/wsl-currency.pipe.d.ts +1 -1
- package/lib/services/{wsl-config.service.d.ts → config/wsl-config.service.d.ts} +23 -3
- package/lib/services/i18n/wsl-i18n.service.d.ts +55 -0
- package/lib/services/public-api.d.ts +3 -1
- package/lib/services/wsl-microfrontend.service.d.ts +12 -2
- package/lib/utils/date-time/index.d.ts +1 -0
- package/lib/utils/date-time/wsl-date-time.utils.d.ts +127 -0
- package/lib/utils/public-api.d.ts +1 -0
- package/lib/wsl-library.module.d.ts +1 -1
- package/package.json +11 -14
- package/public-api.d.ts +2 -0
- package/src/assets/fonts/internal.eot +0 -0
- package/src/assets/fonts/internal.ttf +0 -0
- package/src/lib/components/wsl-carousel/README.md +69 -54
- package/src/lib/components/wsl-datetime-picker/README.md +484 -0
- package/src/lib/components/wsl-datetime-picker/wsl-datetime-picker.component.scss +674 -0
- package/src/lib/utils/date-time/README.md +148 -0
- package/esm2020/lib/components/wsl-banner-slider/wsl-banner-slider.component.mjs +0 -30
- package/esm2020/lib/components/wsl-slider/wsl-slider.component.mjs +0 -63
- package/esm2020/lib/services/wsl-config.service.mjs +0 -61
- package/lib/components/wsl-banner-slider/wsl-banner-slider.component.d.ts +0 -11
- package/lib/components/wsl-slider/wsl-slider.component.d.ts +0 -19
- package/src/lib/components/wsl-banner-slider/wsl-banner-slider.component.scss +0 -0
- package/src/lib/components/wsl-slider/wsl-slider.component.scss +0 -152
package/README.md
CHANGED
|
@@ -1,133 +1,183 @@
|
|
|
1
|
-
# WS Library NG
|
|
2
|
-
|
|
3
|
-
Angular component library for Winsys Lottery.
|
|
4
|
-
|
|
5
|
-
## Installation
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install ng-wsl-library
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
## Available Components
|
|
12
|
-
|
|
13
|
-
### WslButtonComponent
|
|
14
|
-
Custom button with multiple variants and sizes.
|
|
15
|
-
|
|
16
|
-
```typescript
|
|
17
|
-
// Basic usage
|
|
18
|
-
<wsl-button>Click me</wsl-button>
|
|
19
|
-
|
|
20
|
-
// With variant and size
|
|
21
|
-
<wsl-button variant="success" size="large">Save</wsl-button>
|
|
22
|
-
|
|
23
|
-
// Disabled
|
|
24
|
-
<wsl-button [disabled]="true">Not available</wsl-button>
|
|
25
|
-
|
|
26
|
-
// With click event
|
|
27
|
-
<wsl-button (click)="onButtonClick($event)">Click me</wsl-button>
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
Properties:
|
|
31
|
-
- `type`: 'button' | 'submit' | 'reset' (default: 'button')
|
|
32
|
-
- `disabled`: boolean (default: false)
|
|
33
|
-
- `variant`: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' (default: 'primary')
|
|
34
|
-
- `size`: 'small' | 'medium' | 'large' (default: 'medium')
|
|
35
|
-
|
|
36
|
-
###
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
###
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
###
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
1
|
+
# WS Library NG
|
|
2
|
+
|
|
3
|
+
Angular component library for Winsys Lottery.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install ng-wsl-library
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Available Components
|
|
12
|
+
|
|
13
|
+
### WslButtonComponent
|
|
14
|
+
Custom button with multiple variants and sizes, featuring self-contained styling.
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
// Basic usage
|
|
18
|
+
<wsl-button>Click me</wsl-button>
|
|
19
|
+
|
|
20
|
+
// With variant and size
|
|
21
|
+
<wsl-button variant="success" size="large">Save</wsl-button>
|
|
22
|
+
|
|
23
|
+
// Disabled
|
|
24
|
+
<wsl-button [disabled]="true">Not available</wsl-button>
|
|
25
|
+
|
|
26
|
+
// With click event
|
|
27
|
+
<wsl-button (click)="onButtonClick($event)">Click me</wsl-button>
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Properties:
|
|
31
|
+
- `type`: 'button' | 'submit' | 'reset' (default: 'button')
|
|
32
|
+
- `disabled`: boolean (default: false)
|
|
33
|
+
- `variant`: 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' (default: 'primary')
|
|
34
|
+
- `size`: 'small' | 'medium' | 'large' (default: 'medium')
|
|
35
|
+
|
|
36
|
+
### WslDatetimePickerComponent
|
|
37
|
+
Powerful and flexible datetime picker component with extensive customization options and self-contained styling.
|
|
38
|
+
|
|
39
|
+
Features calendar state events, proper ngModelChange handling, flexible time steps, and organized constants for date formats and time steps.
|
|
40
|
+
|
|
41
|
+
📖 [View detailed documentation](src/lib/components/wsl-datetime-picker/README.md)
|
|
42
|
+
|
|
43
|
+
### WslCarouselComponent
|
|
44
|
+
High-performance carousel component for displaying scrollable content with self-contained styling.
|
|
45
|
+
|
|
46
|
+
📖 [View detailed documentation](src/lib/components/wsl-carousel/README.md)
|
|
47
|
+
|
|
48
|
+
### WslBannerSliderComponent
|
|
49
|
+
Specialized component for displaying banners in carousel format.
|
|
50
|
+
|
|
51
|
+
### WslCustomComponent
|
|
52
|
+
Customizable component for specific use cases.
|
|
53
|
+
|
|
54
|
+
### WslFooterComponent
|
|
55
|
+
Footer component.
|
|
56
|
+
|
|
57
|
+
### WslHeaderComponent
|
|
58
|
+
Header component.
|
|
59
|
+
|
|
60
|
+
### WslMainMenuComponent
|
|
61
|
+
Main menu component.
|
|
62
|
+
|
|
63
|
+
## Available Services
|
|
64
|
+
|
|
65
|
+
### WslCmsService
|
|
66
|
+
Service for managing CMS content.
|
|
67
|
+
|
|
68
|
+
```typescript
|
|
69
|
+
import { WslCmsService } from 'ng-wsl-library';
|
|
70
|
+
|
|
71
|
+
constructor(private wslCmsService: WslCmsService) {}
|
|
72
|
+
|
|
73
|
+
// Get available components
|
|
74
|
+
const availableComponents = this.wslCmsService.getAvalaiableComponents();
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Available Directives
|
|
78
|
+
|
|
79
|
+
### WslCmsItemDirective
|
|
80
|
+
Directive for handling CMS items.
|
|
81
|
+
|
|
82
|
+
## Integration in an Angular Project
|
|
83
|
+
|
|
84
|
+
1. Import the module in your `app.module.ts`:
|
|
85
|
+
|
|
86
|
+
```typescript
|
|
87
|
+
import { WslComponentsModule } from 'ng-wsl-library';
|
|
88
|
+
|
|
89
|
+
@NgModule({
|
|
90
|
+
imports: [
|
|
91
|
+
WslComponentsModule,
|
|
92
|
+
// ... other modules
|
|
93
|
+
],
|
|
94
|
+
// ...
|
|
95
|
+
})
|
|
96
|
+
export class AppModule { }
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
2. Use the components in your templates:
|
|
100
|
+
|
|
101
|
+
```html
|
|
102
|
+
<wsl-button variant="primary">My Button</wsl-button>
|
|
103
|
+
<wsl-datetime-picker [(ngModel)]="selectedDate"></wsl-datetime-picker>
|
|
104
|
+
<wsl-carousel>
|
|
105
|
+
<!-- Carousel content -->
|
|
106
|
+
</wsl-carousel>
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Styling
|
|
110
|
+
|
|
111
|
+
The library includes its own **self-contained styles** and does not require any external CSS frameworks. All components come with modern, responsive styling out of the box.
|
|
112
|
+
|
|
113
|
+
If you need to include the component styles in your build, add them to your `angular.json`:
|
|
114
|
+
|
|
115
|
+
```json
|
|
116
|
+
{
|
|
117
|
+
"styles": [
|
|
118
|
+
"node_modules/ng-wsl-library/dist/ng-wsl-library.css",
|
|
119
|
+
// ... other styles
|
|
120
|
+
]
|
|
121
|
+
}
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
### Custom Styling
|
|
125
|
+
|
|
126
|
+
You can override component styles using CSS custom properties or by targeting component CSS classes:
|
|
127
|
+
|
|
128
|
+
```css
|
|
129
|
+
wsl-datetime-picker {
|
|
130
|
+
--input-border-color: #007bff;
|
|
131
|
+
--input-focus-border-color: #86b7fe;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
wsl-button {
|
|
135
|
+
--button-primary-bg: #28a745;
|
|
136
|
+
--button-primary-border: #28a745;
|
|
137
|
+
}
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
## Requirements
|
|
141
|
+
|
|
142
|
+
- Angular 14.0.0 or higher
|
|
143
|
+
- Node.js 14.0.0 or higher
|
|
144
|
+
- npm 6.0.0 or higher
|
|
145
|
+
|
|
146
|
+
## Current Dependencies
|
|
147
|
+
|
|
148
|
+
This library uses the following dependencies:
|
|
149
|
+
|
|
150
|
+
- @angular/material
|
|
151
|
+
- @angular/cdk
|
|
152
|
+
- ngx-file-drop
|
|
153
|
+
- single-spa (for microfrontend support)
|
|
154
|
+
- lodash
|
|
155
|
+
|
|
156
|
+
## Support
|
|
157
|
+
|
|
158
|
+
To report issues or request new features, please create an issue in the repository.
|
|
159
|
+
|
|
160
|
+
## License
|
|
161
|
+
|
|
162
|
+
MIT
|
|
163
|
+
|
|
164
|
+
## Available Utilities
|
|
165
|
+
|
|
166
|
+
### WslDateTimeUtils
|
|
167
|
+
Convenient helper functions for working with dates and times in WSL format structures.
|
|
168
|
+
|
|
169
|
+
```typescript
|
|
170
|
+
import { WslDateTimeUtils } from 'ng-wsl-library';
|
|
171
|
+
|
|
172
|
+
// Get current date/time values
|
|
173
|
+
const currentDate = WslDateTimeUtils.getCurrentDate();
|
|
174
|
+
const currentTime = WslDateTimeUtils.getCurrentTime();
|
|
175
|
+
const currentDateTime = WslDateTimeUtils.getCurrentDateTime();
|
|
176
|
+
|
|
177
|
+
// Convert JavaScript Date objects
|
|
178
|
+
const jsDate = new Date();
|
|
179
|
+
const wslDate = WslDateTimeUtils.getWslDate(jsDate);
|
|
180
|
+
const wslTime = WslDateTimeUtils.getWslTime(jsDate);
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
📖 [View detailed documentation](src/lib/utils/date-time/README.md)
|
|
@@ -6,11 +6,12 @@ export * from './wsl-components.module';
|
|
|
6
6
|
export * from './wsl-cms/wsl-cms.module';
|
|
7
7
|
export * from './wsl-cms/cms-editor/cms-editor.module';
|
|
8
8
|
export * from './wsl-carousel/wsl-carousel.module';
|
|
9
|
+
export * from './wsl-datetime-picker/wsl-datetime-picker.module';
|
|
9
10
|
// Componentes principales
|
|
10
11
|
export * from './wsl-button/wsl-button.component';
|
|
11
12
|
export * from './wsl-header/wsl-header.component';
|
|
12
|
-
export * from './wsl-slider/wsl-slider.component';
|
|
13
13
|
export * from './wsl-carousel/wsl-carousel.component';
|
|
14
|
+
export * from './wsl-datetime-picker/wsl-datetime-picker.component';
|
|
14
15
|
// Componentes CMS
|
|
15
16
|
export * from './wsl-cms/wsl-cms.component';
|
|
16
17
|
export * from './wsl-cms/cms-item/cms-item.component';
|
|
@@ -33,4 +34,4 @@ export * from './wsl-cms/cms-editor/cms-editor-slider/cms-editor-slider.componen
|
|
|
33
34
|
export * from './wsl-cms/wsl-cms.module';
|
|
34
35
|
export * from './wsl-cms/cms-editor/cms-editor.module';
|
|
35
36
|
export * from './wsl-cms/cms-editor/cms-editor-main-menu/cms-editor-main-menu.component'; */
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
37
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25nLXdzbC1saWJyYXJ5L3NyYy9saWIvY29tcG9uZW50cy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsc0JBQXNCO0FBQ3RCLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYywwQkFBMEIsQ0FBQztBQUN6QyxjQUFjLHdDQUF3QyxDQUFDO0FBQ3ZELGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxrREFBa0QsQ0FBQztBQUVqRSwwQkFBMEI7QUFDMUIsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsdUNBQXVDLENBQUM7QUFDdEQsY0FBYyxxREFBcUQsQ0FBQztBQUVwRSxrQkFBa0I7QUFDbEIsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsZ0VBQWdFLENBQUM7QUFDL0UsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLDBFQUEwRSxDQUFDO0FBQ3pGLGNBQWMsOEVBQThFLENBQUM7QUFDN0YsY0FBYyxvRUFBb0UsQ0FBQztBQUVuRjs7Ozs7Ozs7Ozs7Ozs2RkFhNkYiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2Ygbmctd3NsLWxpYnJhcnlcclxuICovXHJcblxyXG4vLyBNw7NkdWxvcyBwcmluY2lwYWxlc1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jb21wb25lbnRzLm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vd3NsLWNtcy93c2wtY21zLm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vd3NsLWNtcy9jbXMtZWRpdG9yL2Ntcy1lZGl0b3IubW9kdWxlJztcclxuZXhwb3J0ICogZnJvbSAnLi93c2wtY2Fyb3VzZWwvd3NsLWNhcm91c2VsLm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vd3NsLWRhdGV0aW1lLXBpY2tlci93c2wtZGF0ZXRpbWUtcGlja2VyLm1vZHVsZSc7XHJcblxyXG4vLyBDb21wb25lbnRlcyBwcmluY2lwYWxlc1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1idXR0b24vd3NsLWJ1dHRvbi5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1oZWFkZXIvd3NsLWhlYWRlci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jYXJvdXNlbC93c2wtY2Fyb3VzZWwuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi93c2wtZGF0ZXRpbWUtcGlja2VyL3dzbC1kYXRldGltZS1waWNrZXIuY29tcG9uZW50JztcclxuXHJcbi8vIENvbXBvbmVudGVzIENNU1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvd3NsLWNtcy5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvY21zLWl0ZW0vY21zLWl0ZW0uY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi93c2wtY21zL2Ntcy1pdGVtL2Ntcy1pdGVtLW9wdGlvbnMvY21zLWl0ZW0tb3B0aW9ucy5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvY21zLWVkaXRvci9jbXMtZWRpdG9yLmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vd3NsLWNtcy9jbXMtZWRpdG9yL2Ntcy1lZGl0b3ItbWFpbi1tZW51L2Ntcy1lZGl0b3ItbWFpbi1tZW51LmNvbXBvbmVudCc7XHJcbmV4cG9ydCAqIGZyb20gJy4vd3NsLWNtcy9jbXMtZWRpdG9yL3dzbC1jbXMtYWRkLWNvbXBvbmVudHMvd3NsLWNtcy1hZGQtY29tcG9uZW50cy5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvY21zLWVkaXRvci9jbXMtZWRpdG9yLXNsaWRlci9jbXMtZWRpdG9yLXNsaWRlci5jb21wb25lbnQnO1xyXG5cclxuLyogeHBvcnQgKiBmcm9tICcuL3dzbC1mb290ZXIvd3NsLWZvb3Rlci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jdXN0b20vd3NsLWN1c3RvbS5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1tYWluLW1lbnUvd3NsLW1haW4tbWVudS5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1iYW5uZXItc2xpZGVyL3dzbC1iYW5uZXItc2xpZGVyLmNvbXBvbmVudCdcclxuZXhwb3J0ICogZnJvbSAnLi93c2wtY21zL2Ntcy1lZGl0b3IvY21zLWVkaXRvci5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvY21zLWl0ZW0vY21zLWl0ZW0uY29tcG9uZW50J1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvY21zLWVkaXRvci93c2wtY21zLWFkZC1jb21wb25lbnRzL3dzbC1jbXMtYWRkLWNvbXBvbmVudHMuY29tcG9uZW50JztcclxuZXhwb3J0ICogZnJvbSAnLi93c2wtY21zL2Ntcy1lZGl0b3IvY21zLWVkaXRvci5jb21wb25lbnQnXHJcbmV4cG9ydCAqIGZyb20gJy4vd3NsLWNtcy9jbXMtaXRlbS9jbXMtaXRlbS1vcHRpb25zL2Ntcy1pdGVtLW9wdGlvbnMuY29tcG9uZW50J1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvY21zLWVkaXRvci9jbXMtZWRpdG9yLXNsaWRlci9jbXMtZWRpdG9yLXNsaWRlci5jb21wb25lbnQnXHJcblxyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvd3NsLWNtcy5tb2R1bGUnO1xyXG5leHBvcnQgKiBmcm9tICcuL3dzbC1jbXMvY21zLWVkaXRvci9jbXMtZWRpdG9yLm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vd3NsLWNtcy9jbXMtZWRpdG9yL2Ntcy1lZGl0b3ItbWFpbi1tZW51L2Ntcy1lZGl0b3ItbWFpbi1tZW51LmNvbXBvbmVudCc7ICAqL1xyXG4iXX0=
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from './wsl-carousel.component';
|
|
2
|
+
export * from '../../directives/wsl-carousel-item.directive';
|
|
3
|
+
export * from './wsl-carousel.module';
|
|
4
|
+
export * from '../../models/wsl-carousel-config.model';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZy13c2wtbGlicmFyeS9zcmMvbGliL2NvbXBvbmVudHMvd3NsLWNhcm91c2VsL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyw4Q0FBOEMsQ0FBQztBQUM3RCxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsd0NBQXdDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3dzbC1jYXJvdXNlbC5jb21wb25lbnQnO1xyXG5leHBvcnQgKiBmcm9tICcuLi8uLi9kaXJlY3RpdmVzL3dzbC1jYXJvdXNlbC1pdGVtLmRpcmVjdGl2ZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vd3NsLWNhcm91c2VsLm1vZHVsZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4uLy4uL21vZGVscy93c2wtY2Fyb3VzZWwtY29uZmlnLm1vZGVsJztcclxuIl19
|