@agorapulse/ui-components 14.0.6 → 14.1.1
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/agorapulse-ui-components-14.1.1.tgz +0 -0
- package/directives/truncate-tooltip.directive.d.ts +3 -2
- package/directives/truncate-tooltip.model.d.ts +5 -0
- package/esm2020/datepicker/datepicker.component.mjs +2 -2
- package/esm2020/directives/truncate-tooltip.directive.mjs +11 -3
- package/esm2020/directives/truncate-tooltip.model.mjs +2 -0
- package/esm2020/index.mjs +2 -1
- package/esm2020/neo-datepicker/agorapulse-ui-components-neo-datepicker.mjs +5 -0
- package/esm2020/neo-datepicker/day-detail.model.mjs +2 -0
- package/esm2020/neo-datepicker/day-disabled.pipe.mjs +21 -0
- package/esm2020/neo-datepicker/neo-datepicker.component.mjs +189 -0
- package/esm2020/neo-datepicker/public_api.mjs +4 -0
- package/esm2020/src/lib/agorapulse-ui-components.module.mjs +16 -2
- package/esm2020/tooltip-neo/tooltip-neo.component.mjs +6 -3
- package/esm2020/tooltip-neo/tooltip-neo.directive.mjs +3 -2
- package/esm2020/tooltip-neo/tooltip-neo.model.mjs +1 -1
- package/fesm2015/agorapulse-ui-components-datepicker.mjs +1 -1
- package/fesm2015/agorapulse-ui-components-datepicker.mjs.map +1 -1
- package/fesm2015/agorapulse-ui-components-directives.mjs +6 -1
- package/fesm2015/agorapulse-ui-components-directives.mjs.map +1 -1
- package/fesm2015/agorapulse-ui-components-neo-datepicker.mjs +214 -0
- package/fesm2015/agorapulse-ui-components-neo-datepicker.mjs.map +1 -0
- package/fesm2015/agorapulse-ui-components-tooltip-neo.mjs +7 -3
- package/fesm2015/agorapulse-ui-components-tooltip-neo.mjs.map +1 -1
- package/fesm2015/agorapulse-ui-components.mjs +16 -1
- package/fesm2015/agorapulse-ui-components.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components-datepicker.mjs +1 -1
- package/fesm2020/agorapulse-ui-components-datepicker.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components-directives.mjs +9 -1
- package/fesm2020/agorapulse-ui-components-directives.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components-neo-datepicker.mjs +214 -0
- package/fesm2020/agorapulse-ui-components-neo-datepicker.mjs.map +1 -0
- package/fesm2020/agorapulse-ui-components-tooltip-neo.mjs +7 -3
- package/fesm2020/agorapulse-ui-components-tooltip-neo.mjs.map +1 -1
- package/fesm2020/agorapulse-ui-components.mjs +16 -1
- package/fesm2020/agorapulse-ui-components.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/neo-datepicker/day-detail.model.d.ts +9 -0
- package/neo-datepicker/day-disabled.pipe.d.ts +8 -0
- package/neo-datepicker/index.d.ts +5 -0
- package/neo-datepicker/neo-datepicker.component.d.ts +49 -0
- package/neo-datepicker/public_api.d.ts +3 -0
- package/package.json +11 -2
- package/src/lib/agorapulse-ui-components.module.d.ts +13 -12
- package/tooltip-neo/tooltip-neo.component.d.ts +1 -0
- package/tooltip-neo/tooltip-neo.model.d.ts +1 -0
- package/agorapulse-ui-components-14.0.6.tgz +0 -0
|
@@ -20,6 +20,8 @@ import { MediaDisplayOverlayDialogComponent } from '@agorapulse/ui-components/me
|
|
|
20
20
|
export { MediaDisplayOverlayDialogComponent } from '@agorapulse/ui-components/media-display-overlay';
|
|
21
21
|
import { ModalComponent } from '@agorapulse/ui-components/modal';
|
|
22
22
|
export { ModalComponent } from '@agorapulse/ui-components/modal';
|
|
23
|
+
import { NeoDatepickerComponent, DayDisabledPipe } from '@agorapulse/ui-components/neo-datepicker';
|
|
24
|
+
export { DayDisabledPipe, NeoDatepickerComponent } from '@agorapulse/ui-components/neo-datepicker';
|
|
23
25
|
import { NotificationComponent } from '@agorapulse/ui-components/notification';
|
|
24
26
|
export { NotificationComponent } from '@agorapulse/ui-components/notification';
|
|
25
27
|
import { PaginatorComponent, PaginatorButtonComponent } from '@agorapulse/ui-components/paginator';
|
|
@@ -60,6 +62,7 @@ AgorapulseUiComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.
|
|
|
60
62
|
InfoboxComponent,
|
|
61
63
|
LabelListComponent,
|
|
62
64
|
LabelsSelectorComponent,
|
|
65
|
+
NeoDatepickerComponent,
|
|
63
66
|
MediaDisplayOverlayDialogComponent,
|
|
64
67
|
ModalComponent,
|
|
65
68
|
PasswordInputComponent,
|
|
@@ -80,13 +83,16 @@ AgorapulseUiComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.
|
|
|
80
83
|
TruncateTooltipDirective,
|
|
81
84
|
TooltipNeoDirective,
|
|
82
85
|
AddCommentComponent,
|
|
83
|
-
AutosizeTextareaDirective
|
|
86
|
+
AutosizeTextareaDirective,
|
|
87
|
+
// Pipes
|
|
88
|
+
DayDisabledPipe], exports: [
|
|
84
89
|
// Components
|
|
85
90
|
AddCommentComponent,
|
|
86
91
|
AvatarComponent,
|
|
87
92
|
StepperComponent,
|
|
88
93
|
ConfirmModalComponent,
|
|
89
94
|
DatepickerComponent,
|
|
95
|
+
NeoDatepickerComponent,
|
|
90
96
|
DotsStepperComponent,
|
|
91
97
|
EllipsisDirective,
|
|
92
98
|
InfoboxComponent,
|
|
@@ -102,6 +108,8 @@ AgorapulseUiComponentsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.
|
|
|
102
108
|
PaginatorButtonComponent,
|
|
103
109
|
SlideToggleComponent,
|
|
104
110
|
SnackbarsThreadComponent,
|
|
111
|
+
// Pipes
|
|
112
|
+
DayDisabledPipe,
|
|
105
113
|
// Directives
|
|
106
114
|
AutosizeTextareaDirective,
|
|
107
115
|
DefaultImageDirective,
|
|
@@ -127,6 +135,7 @@ AgorapulseUiComponentsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.
|
|
|
127
135
|
InfoboxComponent,
|
|
128
136
|
LabelListComponent,
|
|
129
137
|
LabelsSelectorComponent,
|
|
138
|
+
NeoDatepickerComponent,
|
|
130
139
|
MediaDisplayOverlayDialogComponent,
|
|
131
140
|
ModalComponent,
|
|
132
141
|
PasswordInputComponent,
|
|
@@ -157,6 +166,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
157
166
|
InfoboxComponent,
|
|
158
167
|
LabelListComponent,
|
|
159
168
|
LabelsSelectorComponent,
|
|
169
|
+
NeoDatepickerComponent,
|
|
160
170
|
MediaDisplayOverlayDialogComponent,
|
|
161
171
|
ModalComponent,
|
|
162
172
|
PasswordInputComponent,
|
|
@@ -178,6 +188,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
178
188
|
TooltipNeoDirective,
|
|
179
189
|
AddCommentComponent,
|
|
180
190
|
AutosizeTextareaDirective,
|
|
191
|
+
// Pipes
|
|
192
|
+
DayDisabledPipe,
|
|
181
193
|
],
|
|
182
194
|
exports: [
|
|
183
195
|
// Components
|
|
@@ -186,6 +198,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
186
198
|
StepperComponent,
|
|
187
199
|
ConfirmModalComponent,
|
|
188
200
|
DatepickerComponent,
|
|
201
|
+
NeoDatepickerComponent,
|
|
189
202
|
DotsStepperComponent,
|
|
190
203
|
EllipsisDirective,
|
|
191
204
|
InfoboxComponent,
|
|
@@ -201,6 +214,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.0", ngImpor
|
|
|
201
214
|
PaginatorButtonComponent,
|
|
202
215
|
SlideToggleComponent,
|
|
203
216
|
SnackbarsThreadComponent,
|
|
217
|
+
// Pipes
|
|
218
|
+
DayDisabledPipe,
|
|
204
219
|
// Directives
|
|
205
220
|
AutosizeTextareaDirective,
|
|
206
221
|
DefaultImageDirective,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agorapulse-ui-components.mjs","sources":["../../../libs/ui-components/src/lib/agorapulse-ui-components.module.ts","../../../libs/ui-components/index.ts","../../../libs/ui-components/agorapulse-ui-components.ts"],"sourcesContent":["// Modules\nimport {AddCommentComponent} from '@agorapulse/ui-components/add-comment';\nimport {AvatarComponent} from '@agorapulse/ui-components/avatar';\nimport {ConfirmModalComponent} from '@agorapulse/ui-components/confirm-modal';\nimport {DatepickerComponent} from '@agorapulse/ui-components/datepicker';\nimport {\n AutosizeTextareaDirective,\n DefaultImageDirective,\n EllipsisDirective,\n EqualValidatorDirective,\n FrozenGifDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n} from '@agorapulse/ui-components/directives';\nimport {DotsStepperComponent} from '@agorapulse/ui-components/dots-stepper';\nimport {InfoboxComponent} from '@agorapulse/ui-components/infobox';\nimport {LabelComponent, LabelListComponent} from '@agorapulse/ui-components/labels';\nimport {LabelsSelectorComponent} from '@agorapulse/ui-components/labels-selector';\nimport {MediaDisplayOverlayDialogComponent} from '@agorapulse/ui-components/media-display-overlay';\nimport {ModalComponent} from '@agorapulse/ui-components/modal';\nimport {NotificationComponent} from '@agorapulse/ui-components/notification';\nimport {PaginatorButtonComponent, PaginatorComponent} from '@agorapulse/ui-components/paginator';\nimport {PasswordInputComponent} from '@agorapulse/ui-components/password-input';\nimport {PopmenuModule} from '@agorapulse/ui-components/popmenu';\nimport {SlideToggleComponent} from '@agorapulse/ui-components/slide-toggle';\nimport {SnackBarComponent} from '@agorapulse/ui-components/snackbar';\nimport {SnackbarsThreadComponent} from '@agorapulse/ui-components/snackbars-thread';\nimport {StepperComponent} from '@agorapulse/ui-components/stepper';\nimport {TooltipNeoComponent, TooltipNeoDirective} from '@agorapulse/ui-components/tooltip-neo';\nimport {NgModule} from '@angular/core';\nimport {MAT_TABS_CONFIG} from '@angular/material/tabs';\n\n\n/**\n * @deprecated for better tree-shaking, use standalone component import instead\n */\n@NgModule({\n declarations: [],\n imports: [\n // Components\n AvatarComponent,\n StepperComponent,\n ConfirmModalComponent,\n DatepickerComponent,\n DotsStepperComponent,\n EllipsisDirective,\n InfoboxComponent,\n LabelListComponent,\n LabelsSelectorComponent,\n MediaDisplayOverlayDialogComponent,\n ModalComponent,\n PasswordInputComponent,\n SnackBarComponent,\n LabelComponent,\n NotificationComponent,\n PaginatorComponent,\n PaginatorButtonComponent,\n SlideToggleComponent,\n SnackbarsThreadComponent,\n TooltipNeoComponent,\n // Directives\n DefaultImageDirective,\n FrozenGifDirective,\n SlideToggleComponent,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n TooltipNeoDirective,\n AddCommentComponent,\n AutosizeTextareaDirective,\n ],\n exports: [\n // Components\n AddCommentComponent,\n AvatarComponent,\n StepperComponent,\n ConfirmModalComponent,\n DatepickerComponent,\n DotsStepperComponent,\n EllipsisDirective,\n InfoboxComponent,\n LabelComponent,\n LabelListComponent,\n MediaDisplayOverlayDialogComponent,\n ModalComponent,\n PasswordInputComponent,\n SnackBarComponent,\n LabelsSelectorComponent,\n NotificationComponent,\n PaginatorComponent,\n PaginatorButtonComponent,\n SlideToggleComponent,\n SnackbarsThreadComponent,\n // Directives\n AutosizeTextareaDirective,\n DefaultImageDirective,\n FrozenGifDirective,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n TooltipNeoDirective,\n // Modules\n PopmenuModule,\n ],\n providers: [\n // Disable ripple effect\n // {provide: MAT_RIPPLE_GLOBAL_OPTIONS, useValue: {disabled: true}},\n // Disable tabs animation\n {provide: MAT_TABS_CONFIG, useValue: {animationDuration: '0ms'}},\n ],\n})\nexport class AgorapulseUiComponentsModule {}\n","/*\n * Public API Surface of ui\n */\n\n// Module\nexport {AgorapulseUiComponentsModule} from './src/lib/agorapulse-ui-components.module';\nexport {PopmenuModule} from '@agorapulse/ui-components/popmenu';\n\n// Directive\nexport {AutosizeTextareaDirective, DefaultImageDirective, EllipsisDirective,\n FrozenGifDirective, EqualValidatorDirective, MultiStyleTextDirective, TruncateTooltipDirective} from '@agorapulse/ui-components/directives';\nexport {PopmenuDirective} from '@agorapulse/ui-components/popmenu';\nexport {TooltipNeoDirective} from '@agorapulse/ui-components/tooltip-neo';\n\n// Component\nexport {AddCommentComponent} from '@agorapulse/ui-components/add-comment';\nexport {AvatarComponent} from '@agorapulse/ui-components/avatar';\nexport {StepperComponent} from '@agorapulse/ui-components/stepper';\nexport {ConfirmModalComponent} from '@agorapulse/ui-components/confirm-modal';\nexport {DatepickerComponent, DatepickerMode, I18nDatePicker, Period} from '@agorapulse/ui-components/datepicker';\nexport {DotsStepperComponent} from '@agorapulse/ui-components/dots-stepper';\nexport {InfoboxComponent} from '@agorapulse/ui-components/infobox';\nexport {LabelComponent} from '@agorapulse/ui-components/labels';\nexport {LabelListComponent} from '@agorapulse/ui-components/labels';\nexport {LabelsSelectorComponent} from '@agorapulse/ui-components/labels-selector';\nexport {MediaDisplayOverlayDialogComponent} from '@agorapulse/ui-components/media-display-overlay';\nexport {ModalComponent, ModalConfig} from '@agorapulse/ui-components/modal';\nexport {PaginatorComponent} from '@agorapulse/ui-components/paginator';\nexport {PasswordInputComponent} from '@agorapulse/ui-components/password-input';\nexport {PopmenuComponent} from '@agorapulse/ui-components/popmenu';\nexport {SnackBarComponent} from '@agorapulse/ui-components/snackbar';\nexport {NotificationComponent} from '@agorapulse/ui-components/notification';\nexport {PaginatorButtonComponent} from '@agorapulse/ui-components/paginator';\nexport {SlideToggleComponent} from '@agorapulse/ui-components/slide-toggle';\nexport {SnackbarsThreadComponent} from '@agorapulse/ui-components/snackbars-thread';\n\n// Service\nexport {SnackbarsThreadService} from '@agorapulse/ui-components/snackbars-thread';\n\n// Model\nexport {Step} from '@agorapulse/ui-components/stepper';\nexport {ConfirmModalTexts} from '@agorapulse/ui-components/confirm-modal';\nexport {generateCodeStatus, CodeStatus, SnackbarsThreadBase, SnackbarTypeValues, externalSnackbarTypeAllowed} from '@agorapulse/ui-components/snackbars-thread';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"agorapulse-ui-components.mjs","sources":["../../../libs/ui-components/src/lib/agorapulse-ui-components.module.ts","../../../libs/ui-components/index.ts","../../../libs/ui-components/agorapulse-ui-components.ts"],"sourcesContent":["// Modules\nimport {AddCommentComponent} from '@agorapulse/ui-components/add-comment';\nimport {AvatarComponent} from '@agorapulse/ui-components/avatar';\nimport {ConfirmModalComponent} from '@agorapulse/ui-components/confirm-modal';\nimport {DatepickerComponent} from '@agorapulse/ui-components/datepicker';\nimport {\n AutosizeTextareaDirective,\n DefaultImageDirective,\n EllipsisDirective,\n EqualValidatorDirective,\n FrozenGifDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n} from '@agorapulse/ui-components/directives';\nimport {DotsStepperComponent} from '@agorapulse/ui-components/dots-stepper';\nimport {InfoboxComponent} from '@agorapulse/ui-components/infobox';\nimport {LabelComponent, LabelListComponent} from '@agorapulse/ui-components/labels';\nimport {LabelsSelectorComponent} from '@agorapulse/ui-components/labels-selector';\nimport {MediaDisplayOverlayDialogComponent} from '@agorapulse/ui-components/media-display-overlay';\nimport {ModalComponent} from '@agorapulse/ui-components/modal';\nimport {DayDisabledPipe, NeoDatepickerComponent} from '@agorapulse/ui-components/neo-datepicker';\nimport {NotificationComponent} from '@agorapulse/ui-components/notification';\nimport {PaginatorButtonComponent, PaginatorComponent} from '@agorapulse/ui-components/paginator';\nimport {PasswordInputComponent} from '@agorapulse/ui-components/password-input';\nimport {PopmenuModule} from '@agorapulse/ui-components/popmenu';\nimport {SlideToggleComponent} from '@agorapulse/ui-components/slide-toggle';\nimport {SnackBarComponent} from '@agorapulse/ui-components/snackbar';\nimport {SnackbarsThreadComponent} from '@agorapulse/ui-components/snackbars-thread';\nimport {StepperComponent} from '@agorapulse/ui-components/stepper';\nimport {TooltipNeoComponent, TooltipNeoDirective} from '@agorapulse/ui-components/tooltip-neo';\nimport {NgModule} from '@angular/core';\nimport {MAT_TABS_CONFIG} from '@angular/material/tabs';\n\n\n/**\n * @deprecated for better tree-shaking, use standalone component import instead\n */\n@NgModule({\n declarations: [],\n imports: [\n // Components\n AvatarComponent,\n StepperComponent,\n ConfirmModalComponent,\n DatepickerComponent,\n DotsStepperComponent,\n EllipsisDirective,\n InfoboxComponent,\n LabelListComponent,\n LabelsSelectorComponent,\n NeoDatepickerComponent,\n MediaDisplayOverlayDialogComponent,\n ModalComponent,\n PasswordInputComponent,\n SnackBarComponent,\n LabelComponent,\n NotificationComponent,\n PaginatorComponent,\n PaginatorButtonComponent,\n SlideToggleComponent,\n SnackbarsThreadComponent,\n TooltipNeoComponent,\n // Directives\n DefaultImageDirective,\n FrozenGifDirective,\n SlideToggleComponent,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n TooltipNeoDirective,\n AddCommentComponent,\n AutosizeTextareaDirective,\n // Pipes\n DayDisabledPipe,\n ],\n exports: [\n // Components\n AddCommentComponent,\n AvatarComponent,\n StepperComponent,\n ConfirmModalComponent,\n DatepickerComponent,\n NeoDatepickerComponent,\n DotsStepperComponent,\n EllipsisDirective,\n InfoboxComponent,\n LabelComponent,\n LabelListComponent,\n MediaDisplayOverlayDialogComponent,\n ModalComponent,\n PasswordInputComponent,\n SnackBarComponent,\n LabelsSelectorComponent,\n NotificationComponent,\n PaginatorComponent,\n PaginatorButtonComponent,\n SlideToggleComponent,\n SnackbarsThreadComponent,\n // Pipes\n DayDisabledPipe,\n // Directives\n AutosizeTextareaDirective,\n DefaultImageDirective,\n FrozenGifDirective,\n EqualValidatorDirective,\n MultiStyleTextDirective,\n TruncateTooltipDirective,\n TooltipNeoDirective,\n // Modules\n PopmenuModule,\n ],\n providers: [\n // Disable ripple effect\n // {provide: MAT_RIPPLE_GLOBAL_OPTIONS, useValue: {disabled: true}},\n // Disable tabs animation\n {provide: MAT_TABS_CONFIG, useValue: {animationDuration: '0ms'}},\n ],\n})\nexport class AgorapulseUiComponentsModule {}\n","/*\n * Public API Surface of ui\n */\n\n// Module\nexport {AgorapulseUiComponentsModule} from './src/lib/agorapulse-ui-components.module';\nexport {PopmenuModule} from '@agorapulse/ui-components/popmenu';\n\n// Directive\nexport {AutosizeTextareaDirective, DefaultImageDirective, EllipsisDirective,\n FrozenGifDirective, EqualValidatorDirective, MultiStyleTextDirective, TruncateTooltipDirective} from '@agorapulse/ui-components/directives';\nexport {PopmenuDirective} from '@agorapulse/ui-components/popmenu';\nexport {TooltipNeoDirective} from '@agorapulse/ui-components/tooltip-neo';\n\n// Component\nexport {AddCommentComponent} from '@agorapulse/ui-components/add-comment';\nexport {AvatarComponent} from '@agorapulse/ui-components/avatar';\nexport {StepperComponent} from '@agorapulse/ui-components/stepper';\nexport {ConfirmModalComponent} from '@agorapulse/ui-components/confirm-modal';\nexport {DatepickerComponent, DatepickerMode, I18nDatePicker, Period} from '@agorapulse/ui-components/datepicker';\nexport {NeoDatepickerComponent, NeoDatePickerStartsOn, NeoDatePickerMode, NeoDatePickerLocale, DayDisabledPipe} from '@agorapulse/ui-components/neo-datepicker';\nexport {DotsStepperComponent} from '@agorapulse/ui-components/dots-stepper';\nexport {InfoboxComponent} from '@agorapulse/ui-components/infobox';\nexport {LabelComponent} from '@agorapulse/ui-components/labels';\nexport {LabelListComponent} from '@agorapulse/ui-components/labels';\nexport {LabelsSelectorComponent} from '@agorapulse/ui-components/labels-selector';\nexport {MediaDisplayOverlayDialogComponent} from '@agorapulse/ui-components/media-display-overlay';\nexport {ModalComponent, ModalConfig} from '@agorapulse/ui-components/modal';\nexport {PaginatorComponent} from '@agorapulse/ui-components/paginator';\nexport {PasswordInputComponent} from '@agorapulse/ui-components/password-input';\nexport {PopmenuComponent} from '@agorapulse/ui-components/popmenu';\nexport {SnackBarComponent} from '@agorapulse/ui-components/snackbar';\nexport {NotificationComponent} from '@agorapulse/ui-components/notification';\nexport {PaginatorButtonComponent} from '@agorapulse/ui-components/paginator';\nexport {SlideToggleComponent} from '@agorapulse/ui-components/slide-toggle';\nexport {SnackbarsThreadComponent} from '@agorapulse/ui-components/snackbars-thread';\n\n// Service\nexport {SnackbarsThreadService} from '@agorapulse/ui-components/snackbars-thread';\n\n// Model\nexport {Step} from '@agorapulse/ui-components/stepper';\nexport {ConfirmModalTexts} from '@agorapulse/ui-components/confirm-modal';\nexport {generateCodeStatus, CodeStatus, SnackbarsThreadBase, SnackbarTypeValues, externalSnackbarTypeAllowed} from '@agorapulse/ui-components/snackbars-thread';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { AvatarComponent } from '@agorapulse/ui-components/avatar';
|
|
|
8
8
|
export { StepperComponent } from '@agorapulse/ui-components/stepper';
|
|
9
9
|
export { ConfirmModalComponent } from '@agorapulse/ui-components/confirm-modal';
|
|
10
10
|
export { DatepickerComponent, DatepickerMode, I18nDatePicker, Period } from '@agorapulse/ui-components/datepicker';
|
|
11
|
+
export { NeoDatepickerComponent, NeoDatePickerStartsOn, NeoDatePickerMode, NeoDatePickerLocale, DayDisabledPipe } from '@agorapulse/ui-components/neo-datepicker';
|
|
11
12
|
export { DotsStepperComponent } from '@agorapulse/ui-components/dots-stepper';
|
|
12
13
|
export { InfoboxComponent } from '@agorapulse/ui-components/infobox';
|
|
13
14
|
export { LabelComponent } from '@agorapulse/ui-components/labels';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { DayDetail } from "./day-detail.model";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DayDisabledPipe implements PipeTransform {
|
|
5
|
+
transform(day: DayDetail, todayTimestamp: number, minDateTimestamp?: number, maxDateTimestamp?: number): boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DayDisabledPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DayDisabledPipe, "dayDisabled", true>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import dayjs from 'dayjs';
|
|
3
|
+
import 'dayjs/locale/de';
|
|
4
|
+
import 'dayjs/locale/en';
|
|
5
|
+
import 'dayjs/locale/es';
|
|
6
|
+
import 'dayjs/locale/fr';
|
|
7
|
+
import 'dayjs/locale/pt';
|
|
8
|
+
import { DayDetail } from './day-detail.model';
|
|
9
|
+
import { DayDisabledPipe } from './day-disabled.pipe';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare type NeoDatePickerMode = 'single' | 'multiple';
|
|
12
|
+
export declare type NeoDatePickerStartsOn = 'monday' | 'sunday';
|
|
13
|
+
export declare type NeoDatePickerLocale = 'en' | 'es' | 'fr' | 'pt' | 'de';
|
|
14
|
+
export declare class NeoDatepickerComponent implements OnInit {
|
|
15
|
+
readonly ONE_DAY: number;
|
|
16
|
+
readonly TODAY_TIMESTAMP: number;
|
|
17
|
+
dayTemplate: TemplateRef<HTMLElement>;
|
|
18
|
+
locale: NeoDatePickerLocale;
|
|
19
|
+
minDate: dayjs.Dayjs;
|
|
20
|
+
maxDate: dayjs.Dayjs;
|
|
21
|
+
private _mode;
|
|
22
|
+
set mode(mode: NeoDatePickerMode);
|
|
23
|
+
get mode(): NeoDatePickerMode;
|
|
24
|
+
private _selectedDates;
|
|
25
|
+
set selectedDates(dates: dayjs.Dayjs[]);
|
|
26
|
+
get selectedDates(): dayjs.Dayjs[];
|
|
27
|
+
startsOn: NeoDatePickerStartsOn;
|
|
28
|
+
datesSelected: EventEmitter<dayjs.Dayjs[]>;
|
|
29
|
+
nextMonth: EventEmitter<void>;
|
|
30
|
+
previousMonth: EventEmitter<void>;
|
|
31
|
+
currentYear: number;
|
|
32
|
+
currentMonth: number;
|
|
33
|
+
currentMonthDates: any;
|
|
34
|
+
minDateTimestamp: number;
|
|
35
|
+
maxDateTimestamp: number;
|
|
36
|
+
months: string[];
|
|
37
|
+
selectedDaysTimestamp: Set<number>;
|
|
38
|
+
weekDays: string[];
|
|
39
|
+
dayDisabledPipe: DayDisabledPipe;
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
getDayDetails(index: number, firstDay: number, month: number, numberOfDays: number, year: number): DayDetail;
|
|
42
|
+
getNumberOfDays(year: number, month: number): number;
|
|
43
|
+
getMonthDetails(year: number, month: number): DayDetail[];
|
|
44
|
+
onPreviousMonth(): void;
|
|
45
|
+
onNextMonth(): void;
|
|
46
|
+
onSelectDay(dayDetail: DayDetail): void;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NeoDatepickerComponent, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NeoDatepickerComponent, "ap-neo-date-picker", never, { "dayTemplate": "dayTemplate"; "locale": "locale"; "minDate": "minDate"; "maxDate": "maxDate"; "mode": "mode"; "selectedDates": "selectedDates"; "startsOn": "startsOn"; }, { "datesSelected": "datesSelected"; "nextMonth": "nextMonth"; "previousMonth": "previousMonth"; }, never, never, true>;
|
|
49
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agorapulse/ui-components",
|
|
3
3
|
"description": "Agorapulse UI Components Library",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.1.1",
|
|
5
5
|
"author": "Benoit Hediard",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"@angular/animations": "^14.2.0",
|
|
22
22
|
"@ng-select/ng-select": "^9.0.2",
|
|
23
23
|
"moment": "^2.29.1",
|
|
24
|
-
"ngx-daterangepicker-material": "^4.0.1"
|
|
24
|
+
"ngx-daterangepicker-material": "^4.0.1",
|
|
25
|
+
"dayjs": "^1.11.6"
|
|
25
26
|
},
|
|
26
27
|
"module": "fesm2015/agorapulse-ui-components.mjs",
|
|
27
28
|
"es2020": "fesm2020/agorapulse-ui-components.mjs",
|
|
@@ -129,6 +130,14 @@
|
|
|
129
130
|
"node": "./fesm2015/agorapulse-ui-components-modal.mjs",
|
|
130
131
|
"default": "./fesm2020/agorapulse-ui-components-modal.mjs"
|
|
131
132
|
},
|
|
133
|
+
"./neo-datepicker": {
|
|
134
|
+
"types": "./neo-datepicker/index.d.ts",
|
|
135
|
+
"esm2020": "./esm2020/neo-datepicker/agorapulse-ui-components-neo-datepicker.mjs",
|
|
136
|
+
"es2020": "./fesm2020/agorapulse-ui-components-neo-datepicker.mjs",
|
|
137
|
+
"es2015": "./fesm2015/agorapulse-ui-components-neo-datepicker.mjs",
|
|
138
|
+
"node": "./fesm2015/agorapulse-ui-components-neo-datepicker.mjs",
|
|
139
|
+
"default": "./fesm2020/agorapulse-ui-components-neo-datepicker.mjs"
|
|
140
|
+
},
|
|
132
141
|
"./notification": {
|
|
133
142
|
"types": "./notification/index.d.ts",
|
|
134
143
|
"esm2020": "./esm2020/notification/agorapulse-ui-components-notification.mjs",
|
|
@@ -8,22 +8,23 @@ import * as i6 from "@agorapulse/ui-components/directives";
|
|
|
8
8
|
import * as i7 from "@agorapulse/ui-components/infobox";
|
|
9
9
|
import * as i8 from "@agorapulse/ui-components/labels";
|
|
10
10
|
import * as i9 from "@agorapulse/ui-components/labels-selector";
|
|
11
|
-
import * as i10 from "@agorapulse/ui-components/
|
|
12
|
-
import * as i11 from "@agorapulse/ui-components/
|
|
13
|
-
import * as i12 from "@agorapulse/ui-components/
|
|
14
|
-
import * as i13 from "@agorapulse/ui-components/
|
|
15
|
-
import * as i14 from "@agorapulse/ui-components/
|
|
16
|
-
import * as i15 from "@agorapulse/ui-components/
|
|
17
|
-
import * as i16 from "@agorapulse/ui-components/
|
|
18
|
-
import * as i17 from "@agorapulse/ui-components/
|
|
19
|
-
import * as i18 from "@agorapulse/ui-components/
|
|
20
|
-
import * as i19 from "@agorapulse/ui-components/
|
|
21
|
-
import * as i20 from "@agorapulse/ui-components/
|
|
11
|
+
import * as i10 from "@agorapulse/ui-components/neo-datepicker";
|
|
12
|
+
import * as i11 from "@agorapulse/ui-components/media-display-overlay";
|
|
13
|
+
import * as i12 from "@agorapulse/ui-components/modal";
|
|
14
|
+
import * as i13 from "@agorapulse/ui-components/password-input";
|
|
15
|
+
import * as i14 from "@agorapulse/ui-components/snackbar";
|
|
16
|
+
import * as i15 from "@agorapulse/ui-components/notification";
|
|
17
|
+
import * as i16 from "@agorapulse/ui-components/paginator";
|
|
18
|
+
import * as i17 from "@agorapulse/ui-components/slide-toggle";
|
|
19
|
+
import * as i18 from "@agorapulse/ui-components/snackbars-thread";
|
|
20
|
+
import * as i19 from "@agorapulse/ui-components/tooltip-neo";
|
|
21
|
+
import * as i20 from "@agorapulse/ui-components/add-comment";
|
|
22
|
+
import * as i21 from "@agorapulse/ui-components/popmenu";
|
|
22
23
|
/**
|
|
23
24
|
* @deprecated for better tree-shaking, use standalone component import instead
|
|
24
25
|
*/
|
|
25
26
|
export declare class AgorapulseUiComponentsModule {
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<AgorapulseUiComponentsModule, never>;
|
|
27
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AgorapulseUiComponentsModule, never, [typeof i1.AvatarComponent, typeof i2.StepperComponent, typeof i3.ConfirmModalComponent, typeof i4.DatepickerComponent, typeof i5.DotsStepperComponent, typeof i6.EllipsisDirective, typeof i7.InfoboxComponent, typeof i8.LabelListComponent, typeof i9.LabelsSelectorComponent, typeof i10.
|
|
28
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AgorapulseUiComponentsModule, never, [typeof i1.AvatarComponent, typeof i2.StepperComponent, typeof i3.ConfirmModalComponent, typeof i4.DatepickerComponent, typeof i5.DotsStepperComponent, typeof i6.EllipsisDirective, typeof i7.InfoboxComponent, typeof i8.LabelListComponent, typeof i9.LabelsSelectorComponent, typeof i10.NeoDatepickerComponent, typeof i11.MediaDisplayOverlayDialogComponent, typeof i12.ModalComponent, typeof i13.PasswordInputComponent, typeof i14.SnackBarComponent, typeof i8.LabelComponent, typeof i15.NotificationComponent, typeof i16.PaginatorComponent, typeof i16.PaginatorButtonComponent, typeof i17.SlideToggleComponent, typeof i18.SnackbarsThreadComponent, typeof i19.TooltipNeoComponent, typeof i6.DefaultImageDirective, typeof i6.FrozenGifDirective, typeof i17.SlideToggleComponent, typeof i6.EqualValidatorDirective, typeof i6.MultiStyleTextDirective, typeof i6.TruncateTooltipDirective, typeof i19.TooltipNeoDirective, typeof i20.AddCommentComponent, typeof i6.AutosizeTextareaDirective, typeof i10.DayDisabledPipe], [typeof i20.AddCommentComponent, typeof i1.AvatarComponent, typeof i2.StepperComponent, typeof i3.ConfirmModalComponent, typeof i4.DatepickerComponent, typeof i10.NeoDatepickerComponent, typeof i5.DotsStepperComponent, typeof i6.EllipsisDirective, typeof i7.InfoboxComponent, typeof i8.LabelComponent, typeof i8.LabelListComponent, typeof i11.MediaDisplayOverlayDialogComponent, typeof i12.ModalComponent, typeof i13.PasswordInputComponent, typeof i14.SnackBarComponent, typeof i9.LabelsSelectorComponent, typeof i15.NotificationComponent, typeof i16.PaginatorComponent, typeof i16.PaginatorButtonComponent, typeof i17.SlideToggleComponent, typeof i18.SnackbarsThreadComponent, typeof i10.DayDisabledPipe, typeof i6.AutosizeTextareaDirective, typeof i6.DefaultImageDirective, typeof i6.FrozenGifDirective, typeof i6.EqualValidatorDirective, typeof i6.MultiStyleTextDirective, typeof i6.TruncateTooltipDirective, typeof i19.TooltipNeoDirective, typeof i21.PopmenuModule]>;
|
|
28
29
|
static ɵinj: i0.ɵɵInjectorDeclaration<AgorapulseUiComponentsModule>;
|
|
29
30
|
}
|
|
@@ -8,6 +8,7 @@ export declare class TooltipNeoComponent implements OnInit {
|
|
|
8
8
|
params: TooltipNeoParams;
|
|
9
9
|
border: string;
|
|
10
10
|
templateRefContent: TemplateRef<any>;
|
|
11
|
+
templateContext: any;
|
|
11
12
|
constructor(elementRef: ElementRef, tooltipNeoService: TooltipNeoService);
|
|
12
13
|
ngOnInit(): void;
|
|
13
14
|
onClickOutside(event: any): void;
|
|
Binary file
|