@datarailsshared/datarailsshared 1.6.216 → 1.6.220
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/datarailsshared-datarailsshared-1.6.220.tgz +0 -0
- package/esm2022/lib/dr-inputs/dr-select/dr-select.component.mjs +5 -1
- package/esm2022/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.mjs +10 -4
- package/esm2022/lib/emoji-picker/emoji-picker.component.mjs +87 -25
- package/esm2022/local-api.mjs +176 -0
- package/esm2022/public-api.mjs +4 -177
- package/fesm2022/datarailsshared-datarailsshared.mjs +261 -214
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.d.ts +2 -1
- package/lib/emoji-picker/emoji-picker.component.d.ts +14 -5
- package/local-api.d.ts +173 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -174
- package/datarailsshared-datarailsshared-1.6.216.tgz +0 -0
- package/esm2022/lib/emoji-picker/emoji-data.service.mjs +0 -29
- package/lib/emoji-picker/emoji-data.service.d.ts +0 -13
|
@@ -13,6 +13,7 @@ export declare class DrSelectAddItemComponent implements OnInit, OnChanges {
|
|
|
13
13
|
private values;
|
|
14
14
|
alertMsg: string;
|
|
15
15
|
showOnlyInput: boolean;
|
|
16
|
+
instantAddValue: string;
|
|
16
17
|
private dynamicValueAdded;
|
|
17
18
|
set inputRef(input: DrInputComponent);
|
|
18
19
|
constructor(drSelect: DrSelectComponent);
|
|
@@ -24,5 +25,5 @@ export declare class DrSelectAddItemComponent implements OnInit, OnChanges {
|
|
|
24
25
|
onDynamicAdd(value: string, keydownEvent?: KeyboardEvent): void;
|
|
25
26
|
private calculateCurrentValues;
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrSelectAddItemComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrSelectAddItemComponent, "dr-select-add-item", never, { "dynamicAddLabel": { "alias": "dynamicAddLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "values": { "alias": "values"; "required": false; }; "alertMsg": { "alias": "alertMsg"; "required": false; }; "showOnlyInput": { "alias": "showOnlyInput"; "required": false; }; }, { "dynamicValueAdded": "dynamicValueAdded"; }, never, never, false, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrSelectAddItemComponent, "dr-select-add-item", never, { "dynamicAddLabel": { "alias": "dynamicAddLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "values": { "alias": "values"; "required": false; }; "alertMsg": { "alias": "alertMsg"; "required": false; }; "showOnlyInput": { "alias": "showOnlyInput"; "required": false; }; "instantAddValue": { "alias": "instantAddValue"; "required": false; }; }, { "dynamicValueAdded": "dynamicValueAdded"; }, never, never, false, never>;
|
|
28
29
|
}
|
|
@@ -1,19 +1,28 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, EventEmitter, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ConnectionPositionPair } from '@angular/cdk/overlay';
|
|
2
3
|
import { EmojiPickerMode, IEmojiReaction } from './emoji-picker.types';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EmojiPickerComponent {
|
|
5
|
+
export declare class EmojiPickerComponent implements AfterViewInit {
|
|
6
|
+
private readonly cdr;
|
|
5
7
|
mode: EmojiPickerMode;
|
|
6
8
|
emojiSelected: EventEmitter<IEmojiReaction>;
|
|
7
|
-
|
|
9
|
+
pickerContainer?: ViewContainerRef;
|
|
10
|
+
emojiOverlayOpened: boolean;
|
|
8
11
|
protected readonly EmojiPickerMode: typeof EmojiPickerMode;
|
|
9
|
-
|
|
10
|
-
|
|
12
|
+
protected readonly positions: ConnectionPositionPair[];
|
|
13
|
+
private pickerComponentRef?;
|
|
14
|
+
private PickerComponent;
|
|
15
|
+
constructor(cdr: ChangeDetectorRef);
|
|
16
|
+
ngAfterViewInit(): Promise<void>;
|
|
17
|
+
toggleEmojiPicker(): Promise<void>;
|
|
11
18
|
onEmojiSelected(event: {
|
|
12
19
|
emoji: {
|
|
13
20
|
native: string;
|
|
14
21
|
id: string | number;
|
|
15
22
|
};
|
|
16
23
|
}): void;
|
|
24
|
+
destroyEmojiPicker(): void;
|
|
25
|
+
private renderEmojiPicker;
|
|
17
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmojiPickerComponent, never>;
|
|
18
27
|
static ɵcmp: i0.ɵɵComponentDeclaration<EmojiPickerComponent, "dr-emoji-picker", never, { "mode": { "alias": "mode"; "required": false; }; }, { "emojiSelected": "emojiSelected"; }, never, never, true, never>;
|
|
19
28
|
}
|
package/local-api.d.ts
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
1
|
+
export * from './lib/date-tags/any-tag.component';
|
|
2
|
+
export * from './lib/date-tags/date-tag.component';
|
|
3
|
+
export * from './lib/date-tags/forecast-tag/forecast-tag.component';
|
|
4
|
+
export * from './lib/date-tags/forecast-tag/forecast-tag.service';
|
|
5
|
+
export * from './lib/date-tags/month-tag/month-tag.component';
|
|
6
|
+
export * from './lib/date-tags/quarter-tag/quarter-tag.component';
|
|
7
|
+
export * from './lib/date-tags/week-tag/week-tag.component';
|
|
8
|
+
export * from './lib/date-tags/year-tag/year-tag.component';
|
|
9
|
+
export * from './lib/dr-tags/dr-tag.component';
|
|
10
|
+
export * from './lib/dr-tags/dr-tag.types';
|
|
11
|
+
export * from './lib/list-tags/list-tag.component';
|
|
12
|
+
export * from './lib/date-tags/day-tag/day-tag.component';
|
|
13
|
+
export * from './lib/date-tags/date-tag.component';
|
|
14
|
+
export * from './lib/dr-inputs/radio-button/radio-button.component';
|
|
15
|
+
export * from './lib/dr-inputs/radio-button/radio-group.component';
|
|
16
|
+
export * from './lib/dr-inputs/checkbox/checkbox.component';
|
|
17
|
+
export * from './lib/dr-inputs/dr-input/dr-input.component';
|
|
18
|
+
export * from './lib/dr-inputs/dr-link/dr-link.component';
|
|
19
|
+
export * from './lib/dr-inputs/dr-select/dr-select.component';
|
|
20
|
+
export * from './lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component';
|
|
21
|
+
export * from './lib/dr-inputs/date-pickers/dr-fiscal-month-calendar-picker/dr-fiscal-month-calendar-header.component';
|
|
22
|
+
export * from './lib/dr-inputs/date-pickers/dr-fiscal-month-calendar-picker/dr-fiscal-month-calendar-picker.component';
|
|
23
|
+
export * from './lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component';
|
|
24
|
+
export * from './lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component';
|
|
25
|
+
export * from './lib/dr-inputs/date-pickers/dr-date-picker-range/dr-date-picker-range.component';
|
|
26
|
+
export * from './lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive';
|
|
27
|
+
export * from './lib/dr-inputs/date-pickers/dr-show-timeframe.pipe';
|
|
28
|
+
export * from './lib/dr-inputs/date-pickers/time-picker/time-picker.component';
|
|
29
|
+
export * from './lib/dr-inputs/date-pickers/date-time-picker/date-time-picker.component';
|
|
30
|
+
export * from './lib/dr-inputs/dr-select-add-item/dr-select-add-item.component';
|
|
31
|
+
export * from './lib/dr-tooltip/components/tooltip-default/tooltip-default.component';
|
|
32
|
+
export * from './lib/dr-tooltip/components/tooltip-info/tooltip-info.component';
|
|
33
|
+
export * from './lib/dr-tooltip/components/tooltip-custom/tooltip-custom.component';
|
|
34
|
+
export * from './lib/stepper/stepper.component';
|
|
35
|
+
export * from './lib/dr-chat/chat.component';
|
|
36
|
+
export * from './lib/dr-chat/dr-chat-form/chat-form.component';
|
|
37
|
+
export * from './lib/dr-chat/dr-chat-form-dropdown/dr-chat-form-dropdown.component';
|
|
38
|
+
export * from './lib/dr-chat/dr-chat-dropped-files/dr-chat-dropped-files.component';
|
|
39
|
+
export * from './lib/dr-chat/dr-chat-suggestions/chat-suggestions.component';
|
|
40
|
+
export * from './lib/dr-chat/dr-chat-message/chat-message.component';
|
|
41
|
+
export * from './lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component';
|
|
42
|
+
export * from './lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive';
|
|
43
|
+
export * from './lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component';
|
|
44
|
+
export * from './lib/dr-chat/dr-dot-flashing/dr-dot-flashing.component';
|
|
45
|
+
export * from './lib/dr-chat/dr-chat-alert/dr-chat-alert.component';
|
|
46
|
+
export * from './lib/dr-avatar/dr-avatar.component';
|
|
47
|
+
export * from './lib/dr-avatar/dr-avatar.pipe';
|
|
48
|
+
export * from './lib/dr-tooltip/dr-tooltip.component';
|
|
49
|
+
export * from './lib/dr-tooltip/dr-tooltip.directive';
|
|
50
|
+
export * from './lib/dr-inputs/dr-toggle/dr-toggle.component';
|
|
51
|
+
export * from './lib/dr-inputs/dr-toggle-button/dr-toggle-button.component';
|
|
52
|
+
export * from './lib/dr-spinner/dr-spinner.component';
|
|
53
|
+
export * from './lib/dr-spinner/dr-spinner.directive';
|
|
54
|
+
export * from './lib/dr-inputs/button/button.component';
|
|
55
|
+
export * from './lib/dr-badge-status/dr-badge-status.component';
|
|
56
|
+
export * from './lib/dr-alert/dr-alert.component';
|
|
57
|
+
export * from './lib/dr-code-editor/dr-code-editor.component';
|
|
58
|
+
export * from './lib/dr-code-editor/components/dr-codemirror.component';
|
|
59
|
+
export * from './lib/dr-code-editor/components/code-editor-hint-wrapper.component';
|
|
60
|
+
export * from './lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component';
|
|
61
|
+
export * from './lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component';
|
|
62
|
+
export * from './lib/dr-tags-constructor/dr-tags-constructor.component';
|
|
63
|
+
export * from './lib/dr-popover/dr-popover.directive';
|
|
64
|
+
export * from './lib/dr-popover/dr-popover.component';
|
|
65
|
+
export * from './lib/dr-popover/dr-popover.service';
|
|
66
|
+
export * from './lib/dr-dropdown/dr-dropdown.directive';
|
|
67
|
+
export * from './lib/dr-dropdown/dr-dropdown.component';
|
|
68
|
+
export * from './lib/dr-dropdown/dr-dropdown-item/dr-dropdown-item.component';
|
|
69
|
+
export * from './lib/dr-dropdown/dr-dropdown.service';
|
|
70
|
+
export * from './lib/dr-dropdown/dr-dropdown-item-show.pipe';
|
|
71
|
+
export * from './lib/dr-tabs/dr-tabs.component';
|
|
72
|
+
export * from './lib/dr-tabs/dr-tab.component';
|
|
73
|
+
export * from './lib/dr-accordion/accordion.component';
|
|
74
|
+
export * from './lib/dr-accordion/accordion-item.component';
|
|
75
|
+
export * from './lib/dr-accordion/accordion-item-header.component';
|
|
76
|
+
export * from './lib/dr-accordion/accordion-item-body.component';
|
|
77
|
+
export * from './lib/dr-layout/dr-layout.component';
|
|
78
|
+
export * from './lib/dr-layout/dr-layout-header.component';
|
|
79
|
+
export * from './lib/dr-layout/dr-layout-body.component';
|
|
80
|
+
export * from './lib/dr-error/dr-error.component';
|
|
81
|
+
export * from './lib/dr-dialog/services/dialog.service';
|
|
82
|
+
export * from './lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component';
|
|
83
|
+
export * from './lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component';
|
|
84
|
+
export * from './lib/dr-details-list/dr-details-list.component';
|
|
85
|
+
export * from './lib/dr-chat/chat.component';
|
|
86
|
+
export * from './lib/dr-treeview/components/treeview/treeview.component';
|
|
87
|
+
export * from './lib/dr-treeview/pipes/treeview.pipe';
|
|
88
|
+
export * from './lib/dr-treeview/models/treeview-item';
|
|
89
|
+
export * from './lib/dr-treeview/models/treeview-config';
|
|
90
|
+
export * from './lib/dr-treeview/models/treeview-i18n';
|
|
91
|
+
export * from './lib/dr-treeview/models/treeview-item-template-context';
|
|
92
|
+
export * from './lib/dr-treeview/helpers/treeview-event-parser';
|
|
93
|
+
export * from './lib/dr-treeview/helpers/treeview-helper';
|
|
94
|
+
export * from './lib/dr-toastr/default-toastr/default-toastr.component';
|
|
95
|
+
export * from './lib/utils/data-analytics.service';
|
|
96
|
+
export { TooltipTheme } from './lib/dr-tooltip/enums/tooltip-theme.enum';
|
|
97
|
+
export { Scenario, TScenarioDataChanged } from './lib/dr-scenario/interfaces/scenario';
|
|
98
|
+
export { ToggleButtonMode } from './lib/dr-inputs/dr-toggle-button/toggle-button-mode';
|
|
99
|
+
export { DrAlertTheme } from './lib/dr-alert/enums/dr-alert-theme.enum';
|
|
100
|
+
export { TooltipInfoContext, TooltipInfoWidth, TooltipInfoIconTheme, } from './lib/dr-tooltip/interfaces/tooltip-component-context';
|
|
101
|
+
export { Step } from './lib/stepper/interfaces/stepper';
|
|
102
|
+
export * from './lib/dr-dialog/interfaces/dialog-data';
|
|
103
|
+
export * from './lib/dr-avatar/types';
|
|
104
|
+
export { IFIle } from './lib/models/chat';
|
|
105
|
+
export * from './lib/dr-inputs/dr-model-debounce-change.directive';
|
|
106
|
+
export * from './lib/directives/click-outside/click-outside.directive';
|
|
107
|
+
export * from './lib/directives/dr-shine-animation/dr-shine-animation.directive';
|
|
108
|
+
export * from './lib/directives/let/let.directive';
|
|
109
|
+
export * from './lib/directives/ng-track-by-property/ng-track-by-property.directive';
|
|
110
|
+
export * from './lib/pipes/img/img.pipe';
|
|
111
|
+
export * from './lib/pipes/filter/filter.pipe';
|
|
112
|
+
export * from './lib/models/datePicker';
|
|
113
|
+
export { TAG_TYPES, ITag, IDateTag, IListTag, ITagForServer, IDynamicTag, TDynamicTagValue, TDynamicTag, TagTypes, TagsConfigSubType, TConnectedTags, } from './lib/models/serverTags';
|
|
114
|
+
export { ISpinnerOptions, SpinnerType, SpinnerSize } from './lib/models/spinnerOptions';
|
|
115
|
+
export { IDropdown, IDropdownItem, IDropdownActionIcon, IDropdownAction, ICustomTooltipComponent, ICustomTooltipComponentOptions, } from './lib/models/dropdown';
|
|
116
|
+
export { Position } from './lib/models/position';
|
|
117
|
+
export { DrPopoverRef, IDrPopoverComponentModel, Point, DrPopoverConfig, IPopoverManualClosing, DrPopoverAlignment, DrPopoverAlignmentDimension, } from './lib/models/popover';
|
|
118
|
+
export { IValidationError } from './lib/models/validationError';
|
|
119
|
+
export * from './lib/models/chat';
|
|
120
|
+
export * from './lib/models/badgeStatus';
|
|
121
|
+
export * from './lib/models/feedback';
|
|
122
|
+
export * from './lib/models/toastr';
|
|
123
|
+
export * from './lib/models/datePickerRange';
|
|
124
|
+
export * from './lib/dr-code-editor/models/code-editor-hint';
|
|
125
|
+
export { ScenarioService } from './lib/dr-scenario/services/scenario.service';
|
|
126
|
+
export { TagsConstructorService } from './lib/dr-tags-constructor/tags-constructor.service';
|
|
127
|
+
export { DrAvatarService } from './lib/dr-avatar/services/dr-avatar.service';
|
|
128
|
+
export { DrToastrService } from './lib/dr-toastr/dr-toastr.service';
|
|
129
|
+
export { DateTagModule } from './lib/date-tags/date-tag.module';
|
|
130
|
+
export { ListTagModule } from './lib/list-tags/list-tag.module';
|
|
131
|
+
export { DrTagModule } from './lib/dr-tags/dr-tag.module';
|
|
132
|
+
export { DrInputsModule } from './lib/dr-inputs/dr-inputs.module';
|
|
133
|
+
export { DrTooltipModule } from './lib/dr-tooltip/dr-tooltip.module';
|
|
134
|
+
export { DrAvatarModule } from './lib/dr-avatar/dr-avatar.module';
|
|
135
|
+
export { DrSpinnerModule } from './lib/dr-spinner/dr-spinner.module';
|
|
136
|
+
export { DrPopoverModule } from './lib/dr-popover/dr-popover.module';
|
|
137
|
+
export { DrSliderComponent } from './lib/dr-inputs/dr-slider/dr-slider.component';
|
|
138
|
+
export { DrImageCropperComponent } from './lib/image-cropper/dr-image-cropper.component';
|
|
139
|
+
export * from './lib/image-cropper/dr-image-cropper.types';
|
|
140
|
+
export { DrDropdownModule } from './lib/dr-dropdown/dr-dropdown.module';
|
|
141
|
+
export { DrTabsModule } from './lib/dr-tabs/dr-tabs.module';
|
|
142
|
+
export { DrAccordionModule } from './lib/dr-accordion/accordion.module';
|
|
143
|
+
export { DrSharedUtils } from './lib/utils/dr-shared-utils';
|
|
144
|
+
export { DrLayoutModule } from './lib/dr-layout/dr-layout.module';
|
|
145
|
+
export { DrErrorModule } from './lib/dr-error/dr-error.module';
|
|
146
|
+
export { DrStepperModule } from './lib/stepper/stepper.module';
|
|
147
|
+
export { DrDialogModule } from './lib/dr-dialog/dialog.module';
|
|
148
|
+
export { DrChatModule } from './lib/dr-chat/chat.module';
|
|
149
|
+
export { DrDetailsListModule } from './lib/dr-details-list/dr-details-list.module';
|
|
150
|
+
export { DrScenarioModule } from './lib/dr-scenario/dr-scenario.module';
|
|
151
|
+
export { DrBadgeStatusModule } from './lib/dr-badge-status/dr-badge-status.module';
|
|
152
|
+
export { TreeviewModule } from './lib/dr-treeview/dr-tree-view.module';
|
|
153
|
+
export { ClickOutsideModule } from './lib/directives/click-outside/click-outside.module';
|
|
154
|
+
export { DrAlertModule } from './lib/dr-alert/dr-alert.module';
|
|
155
|
+
export { DrTagsConstructorModule } from './lib/dr-tags-constructor/dr-tags-constructor.module';
|
|
156
|
+
export { DrToastrModule } from './lib/dr-toastr/dr-toastr.module';
|
|
157
|
+
export { DrCodeEditorModule } from './lib/dr-code-editor/dr-code-editor.module';
|
|
158
|
+
export { DrChipComponent } from './lib/dr-chip/dr-chip.component';
|
|
159
|
+
export { DrGalleryComponent } from './lib/dr-gallery/dr-gallery.component';
|
|
160
|
+
export { DrProgressBarComponent, TProgressBarTheme } from './lib/dr-progress-bar/dr-progress-bar.component';
|
|
161
|
+
export { DrBadgeComponent, TBadgeColor, TBadgeSize } from './lib/dr-badge/dr-badge.component';
|
|
162
|
+
export * from './lib/drawer/public-api';
|
|
163
|
+
export * from './lib/stepper-wizard/stepper-wizard.component';
|
|
164
|
+
export * from './lib/stepper-wizard/directives/step-wizard.directive';
|
|
165
|
+
export * from './lib/separate-table/separate-table.component';
|
|
166
|
+
export * from './lib/separate-table/separate-table-column.directive';
|
|
167
|
+
export * from './lib/text-overflow/element-overflow.directive';
|
|
168
|
+
export * from './lib/dr-list-overflow/dr-list-overflow.component';
|
|
169
|
+
export * from './lib/text-overflow/text-overflow.component';
|
|
170
|
+
export * from './lib/truncate-text/truncate-text.directive';
|
|
171
|
+
export * from './lib/directives/autofocus/autofocus.directive';
|
|
172
|
+
export * from './lib/pipes/search/search.pipe';
|
|
173
|
+
export * from './lib/filter-dropdown/filter-dropdown.component';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1,175 +1,2 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './lib/date-tags/date-tag.component';
|
|
3
|
-
export * from './lib/date-tags/forecast-tag/forecast-tag.component';
|
|
4
|
-
export * from './lib/date-tags/forecast-tag/forecast-tag.service';
|
|
5
|
-
export * from './lib/date-tags/month-tag/month-tag.component';
|
|
6
|
-
export * from './lib/date-tags/quarter-tag/quarter-tag.component';
|
|
7
|
-
export * from './lib/date-tags/week-tag/week-tag.component';
|
|
8
|
-
export * from './lib/date-tags/year-tag/year-tag.component';
|
|
9
|
-
export * from './lib/dr-tags/dr-tag.component';
|
|
10
|
-
export * from './lib/dr-tags/dr-tag.types';
|
|
11
|
-
export * from './lib/list-tags/list-tag.component';
|
|
12
|
-
export * from './lib/date-tags/day-tag/day-tag.component';
|
|
13
|
-
export * from './lib/date-tags/date-tag.component';
|
|
14
|
-
export * from './lib/dr-inputs/radio-button/radio-button.component';
|
|
15
|
-
export * from './lib/dr-inputs/radio-button/radio-group.component';
|
|
16
|
-
export * from './lib/dr-inputs/checkbox/checkbox.component';
|
|
17
|
-
export * from './lib/dr-inputs/dr-input/dr-input.component';
|
|
18
|
-
export * from './lib/dr-inputs/dr-link/dr-link.component';
|
|
19
|
-
export * from './lib/dr-inputs/dr-select/dr-select.component';
|
|
20
|
-
export * from './lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component';
|
|
21
|
-
export * from './lib/dr-inputs/date-pickers/dr-fiscal-month-calendar-picker/dr-fiscal-month-calendar-header.component';
|
|
22
|
-
export * from './lib/dr-inputs/date-pickers/dr-fiscal-month-calendar-picker/dr-fiscal-month-calendar-picker.component';
|
|
23
|
-
export * from './lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component';
|
|
24
|
-
export * from './lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component';
|
|
25
|
-
export * from './lib/dr-inputs/date-pickers/dr-date-picker-range/dr-date-picker-range.component';
|
|
26
|
-
export * from './lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive';
|
|
27
|
-
export * from './lib/dr-inputs/date-pickers/dr-show-timeframe.pipe';
|
|
28
|
-
export * from './lib/dr-inputs/date-pickers/time-picker/time-picker.component';
|
|
29
|
-
export * from './lib/dr-inputs/date-pickers/date-time-picker/date-time-picker.component';
|
|
30
|
-
export * from './lib/dr-inputs/dr-select-add-item/dr-select-add-item.component';
|
|
31
|
-
export * from './lib/dr-tooltip/components/tooltip-default/tooltip-default.component';
|
|
32
|
-
export * from './lib/dr-tooltip/components/tooltip-info/tooltip-info.component';
|
|
33
|
-
export * from './lib/stepper/stepper.component';
|
|
34
|
-
export * from './lib/dr-chat/chat.component';
|
|
35
|
-
export * from './lib/dr-chat/dr-chat-form/chat-form.component';
|
|
36
|
-
export * from './lib/dr-chat/dr-chat-form-dropdown/dr-chat-form-dropdown.component';
|
|
37
|
-
export * from './lib/dr-chat/dr-chat-dropped-files/dr-chat-dropped-files.component';
|
|
38
|
-
export * from './lib/dr-chat/dr-chat-suggestions/chat-suggestions.component';
|
|
39
|
-
export * from './lib/dr-chat/dr-chat-message/chat-message.component';
|
|
40
|
-
export * from './lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component';
|
|
41
|
-
export * from './lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive';
|
|
42
|
-
export * from './lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component';
|
|
43
|
-
export * from './lib/dr-chat/dr-dot-flashing/dr-dot-flashing.component';
|
|
44
|
-
export * from './lib/dr-chat/dr-chat-alert/dr-chat-alert.component';
|
|
45
|
-
export * from './lib/dr-avatar/dr-avatar.component';
|
|
46
|
-
export * from './lib/dr-avatar/dr-avatar.pipe';
|
|
47
|
-
export * from './lib/dr-tooltip/dr-tooltip.component';
|
|
48
|
-
export * from './lib/dr-tooltip/dr-tooltip.directive';
|
|
49
|
-
export * from './lib/dr-inputs/dr-toggle/dr-toggle.component';
|
|
50
|
-
export * from './lib/dr-inputs/dr-toggle-button/dr-toggle-button.component';
|
|
51
|
-
export * from './lib/dr-spinner/dr-spinner.component';
|
|
52
|
-
export * from './lib/dr-spinner/dr-spinner.directive';
|
|
53
|
-
export * from './lib/dr-inputs/button/button.component';
|
|
54
|
-
export * from './lib/dr-badge-status/dr-badge-status.component';
|
|
55
|
-
export * from './lib/dr-alert/dr-alert.component';
|
|
56
|
-
export * from './lib/dr-code-editor/dr-code-editor.component';
|
|
57
|
-
export * from './lib/dr-code-editor/components/dr-codemirror.component';
|
|
58
|
-
export * from './lib/dr-code-editor/components/code-editor-hint-wrapper.component';
|
|
59
|
-
export * from './lib/dr-scenario/components/dr-scenario-tag-configuration/dr-scenario-tag-configuration.component';
|
|
60
|
-
export * from './lib/dr-scenario/components/dr-scenario-configuration/dr-scenario-configuration.component';
|
|
61
|
-
export * from './lib/dr-tags-constructor/dr-tags-constructor.component';
|
|
62
|
-
export * from './lib/dr-popover/dr-popover.directive';
|
|
63
|
-
export * from './lib/dr-popover/dr-popover.component';
|
|
64
|
-
export * from './lib/dr-popover/dr-popover.service';
|
|
65
|
-
export * from './lib/dr-dropdown/dr-dropdown.directive';
|
|
66
|
-
export * from './lib/dr-dropdown/dr-dropdown.component';
|
|
67
|
-
export * from './lib/dr-dropdown/dr-dropdown-item/dr-dropdown-item.component';
|
|
68
|
-
export * from './lib/dr-dropdown/dr-dropdown.service';
|
|
69
|
-
export * from './lib/dr-dropdown/dr-dropdown-item-show.pipe';
|
|
70
|
-
export * from './lib/dr-tabs/dr-tabs.component';
|
|
71
|
-
export * from './lib/dr-tabs/dr-tab.component';
|
|
72
|
-
export * from './lib/dr-accordion/accordion.component';
|
|
73
|
-
export * from './lib/dr-accordion/accordion-item.component';
|
|
74
|
-
export * from './lib/dr-accordion/accordion-item-header.component';
|
|
75
|
-
export * from './lib/dr-accordion/accordion-item-body.component';
|
|
76
|
-
export * from './lib/dr-layout/dr-layout.component';
|
|
77
|
-
export * from './lib/dr-layout/dr-layout-header.component';
|
|
78
|
-
export * from './lib/dr-layout/dr-layout-body.component';
|
|
79
|
-
export * from './lib/dr-error/dr-error.component';
|
|
80
|
-
export * from './lib/dr-dialog/services/dialog.service';
|
|
81
|
-
export * from './lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component';
|
|
82
|
-
export * from './lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component';
|
|
83
|
-
export * from './lib/dr-details-list/dr-details-list.component';
|
|
84
|
-
export * from './lib/dr-chat/chat.component';
|
|
85
|
-
export * from './lib/dr-treeview/components/treeview/treeview.component';
|
|
86
|
-
export * from './lib/dr-treeview/pipes/treeview.pipe';
|
|
87
|
-
export * from './lib/dr-treeview/models/treeview-item';
|
|
88
|
-
export * from './lib/dr-treeview/models/treeview-config';
|
|
89
|
-
export * from './lib/dr-treeview/models/treeview-i18n';
|
|
90
|
-
export * from './lib/dr-treeview/models/treeview-item-template-context';
|
|
91
|
-
export * from './lib/dr-treeview/helpers/treeview-event-parser';
|
|
92
|
-
export * from './lib/dr-treeview/helpers/treeview-helper';
|
|
93
|
-
export * from './lib/dr-toastr/default-toastr/default-toastr.component';
|
|
94
|
-
export * from './lib/utils/data-analytics.service';
|
|
95
|
-
export { TooltipTheme } from './lib/dr-tooltip/enums/tooltip-theme.enum';
|
|
96
|
-
export { Scenario, TScenarioDataChanged } from './lib/dr-scenario/interfaces/scenario';
|
|
97
|
-
export { ToggleButtonMode } from './lib/dr-inputs/dr-toggle-button/toggle-button-mode';
|
|
98
|
-
export { DrAlertTheme } from './lib/dr-alert/enums/dr-alert-theme.enum';
|
|
99
|
-
export { TooltipInfoContext, TooltipInfoWidth, TooltipInfoIconTheme, } from './lib/dr-tooltip/interfaces/tooltip-component-context';
|
|
100
|
-
export { Step } from './lib/stepper/interfaces/stepper';
|
|
101
|
-
export * from './lib/dr-dialog/interfaces/dialog-data';
|
|
102
|
-
export * from './lib/dr-avatar/types';
|
|
103
|
-
export { IFIle } from './lib/models/chat';
|
|
104
|
-
export { EmojiPickerMode, IEmojiReaction } from './lib/emoji-picker/emoji-picker.types';
|
|
105
|
-
export * from './lib/dr-inputs/dr-model-debounce-change.directive';
|
|
106
|
-
export * from './lib/directives/click-outside/click-outside.directive';
|
|
107
|
-
export * from './lib/directives/dr-shine-animation/dr-shine-animation.directive';
|
|
108
|
-
export * from './lib/directives/let/let.directive';
|
|
109
|
-
export * from './lib/directives/ng-track-by-property/ng-track-by-property.directive';
|
|
110
|
-
export * from './lib/pipes/img/img.pipe';
|
|
111
|
-
export * from './lib/pipes/filter/filter.pipe';
|
|
112
|
-
export * from './lib/models/datePicker';
|
|
113
|
-
export { TAG_TYPES, ITag, IDateTag, IListTag, ITagForServer, IDynamicTag, TDynamicTagValue, TDynamicTag, TagTypes, TagsConfigSubType, TConnectedTags, } from './lib/models/serverTags';
|
|
114
|
-
export { ISpinnerOptions, SpinnerType, SpinnerSize } from './lib/models/spinnerOptions';
|
|
115
|
-
export { IDropdown, IDropdownItem, IDropdownActionIcon, IDropdownAction, ICustomTooltipComponent, ICustomTooltipComponentOptions, } from './lib/models/dropdown';
|
|
116
|
-
export { Position } from './lib/models/position';
|
|
117
|
-
export { DrPopoverRef, IDrPopoverComponentModel, Point, DrPopoverConfig, IPopoverManualClosing, DrPopoverAlignment, DrPopoverAlignmentDimension, } from './lib/models/popover';
|
|
118
|
-
export { IValidationError } from './lib/models/validationError';
|
|
119
|
-
export * from './lib/models/chat';
|
|
120
|
-
export * from './lib/models/badgeStatus';
|
|
121
|
-
export * from './lib/models/feedback';
|
|
122
|
-
export * from './lib/models/toastr';
|
|
123
|
-
export * from './lib/models/datePickerRange';
|
|
124
|
-
export * from './lib/dr-code-editor/models/code-editor-hint';
|
|
125
|
-
export { ScenarioService } from './lib/dr-scenario/services/scenario.service';
|
|
126
|
-
export { TagsConstructorService } from './lib/dr-tags-constructor/tags-constructor.service';
|
|
127
|
-
export { DrAvatarService } from './lib/dr-avatar/services/dr-avatar.service';
|
|
128
|
-
export { DrToastrService } from './lib/dr-toastr/dr-toastr.service';
|
|
129
|
-
export { EmojiDataService } from './lib/emoji-picker/emoji-data.service';
|
|
130
|
-
export { DateTagModule } from './lib/date-tags/date-tag.module';
|
|
131
|
-
export { ListTagModule } from './lib/list-tags/list-tag.module';
|
|
132
|
-
export { DrTagModule } from './lib/dr-tags/dr-tag.module';
|
|
133
|
-
export { DrInputsModule } from './lib/dr-inputs/dr-inputs.module';
|
|
134
|
-
export { DrTooltipModule } from './lib/dr-tooltip/dr-tooltip.module';
|
|
135
|
-
export { DrAvatarModule } from './lib/dr-avatar/dr-avatar.module';
|
|
136
|
-
export { DrSpinnerModule } from './lib/dr-spinner/dr-spinner.module';
|
|
137
|
-
export { DrPopoverModule } from './lib/dr-popover/dr-popover.module';
|
|
138
|
-
export { DrSliderComponent } from './lib/dr-inputs/dr-slider/dr-slider.component';
|
|
139
|
-
export { DrImageCropperComponent } from './lib/image-cropper/dr-image-cropper.component';
|
|
140
|
-
export * from './lib/image-cropper/dr-image-cropper.types';
|
|
141
|
-
export { DrDropdownModule } from './lib/dr-dropdown/dr-dropdown.module';
|
|
142
|
-
export { DrTabsModule } from './lib/dr-tabs/dr-tabs.module';
|
|
143
|
-
export { DrAccordionModule } from './lib/dr-accordion/accordion.module';
|
|
144
|
-
export { DrSharedUtils } from './lib/utils/dr-shared-utils';
|
|
145
|
-
export { DrLayoutModule } from './lib/dr-layout/dr-layout.module';
|
|
146
|
-
export { DrErrorModule } from './lib/dr-error/dr-error.module';
|
|
147
|
-
export { DrStepperModule } from './lib/stepper/stepper.module';
|
|
148
|
-
export { DrDialogModule } from './lib/dr-dialog/dialog.module';
|
|
149
|
-
export { DrChatModule } from './lib/dr-chat/chat.module';
|
|
150
|
-
export { DrDetailsListModule } from './lib/dr-details-list/dr-details-list.module';
|
|
151
|
-
export { DrScenarioModule } from './lib/dr-scenario/dr-scenario.module';
|
|
152
|
-
export { DrBadgeStatusModule } from './lib/dr-badge-status/dr-badge-status.module';
|
|
153
|
-
export { TreeviewModule } from './lib/dr-treeview/dr-tree-view.module';
|
|
1
|
+
export * from './local-api';
|
|
154
2
|
export { EmojiPickerComponent } from './lib/emoji-picker/emoji-picker.component';
|
|
155
|
-
export { ClickOutsideModule } from './lib/directives/click-outside/click-outside.module';
|
|
156
|
-
export { DrAlertModule } from './lib/dr-alert/dr-alert.module';
|
|
157
|
-
export { DrTagsConstructorModule } from './lib/dr-tags-constructor/dr-tags-constructor.module';
|
|
158
|
-
export { DrToastrModule } from './lib/dr-toastr/dr-toastr.module';
|
|
159
|
-
export { DrCodeEditorModule } from './lib/dr-code-editor/dr-code-editor.module';
|
|
160
|
-
export { DrChipComponent } from './lib/dr-chip/dr-chip.component';
|
|
161
|
-
export { DrGalleryComponent } from './lib/dr-gallery/dr-gallery.component';
|
|
162
|
-
export { DrProgressBarComponent, TProgressBarTheme } from './lib/dr-progress-bar/dr-progress-bar.component';
|
|
163
|
-
export { DrBadgeComponent, TBadgeColor, TBadgeSize } from './lib/dr-badge/dr-badge.component';
|
|
164
|
-
export * from './lib/drawer/public-api';
|
|
165
|
-
export * from './lib/stepper-wizard/stepper-wizard.component';
|
|
166
|
-
export * from './lib/stepper-wizard/directives/step-wizard.directive';
|
|
167
|
-
export * from './lib/separate-table/separate-table.component';
|
|
168
|
-
export * from './lib/separate-table/separate-table-column.directive';
|
|
169
|
-
export * from './lib/text-overflow/element-overflow.directive';
|
|
170
|
-
export * from './lib/dr-list-overflow/dr-list-overflow.component';
|
|
171
|
-
export * from './lib/text-overflow/text-overflow.component';
|
|
172
|
-
export * from './lib/truncate-text/truncate-text.directive';
|
|
173
|
-
export * from './lib/directives/autofocus/autofocus.directive';
|
|
174
|
-
export * from './lib/pipes/search/search.pipe';
|
|
175
|
-
export * from './lib/filter-dropdown/filter-dropdown.component';
|
|
Binary file
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import { EmojiService } from '@ctrl/ngx-emoji-mart/ngx-emoji';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class EmojiDataService {
|
|
5
|
-
constructor() {
|
|
6
|
-
this.emojiService = new EmojiService();
|
|
7
|
-
}
|
|
8
|
-
getEmojiPickerSet() {
|
|
9
|
-
const emojiSet = {};
|
|
10
|
-
const allEmojis = this.emojiService.emojis;
|
|
11
|
-
allEmojis.forEach((emoji) => {
|
|
12
|
-
if (emoji.shortName && emoji.native) {
|
|
13
|
-
emojiSet[emoji.shortName] = {
|
|
14
|
-
emoji: emoji.native,
|
|
15
|
-
};
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
return emojiSet;
|
|
19
|
-
}
|
|
20
|
-
/** @nocollapse */ static { this.ɵfac = function EmojiDataService_Factory(t) { return new (t || EmojiDataService)(); }; }
|
|
21
|
-
/** @nocollapse */ static { this.ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: EmojiDataService, factory: EmojiDataService.ɵfac, providedIn: 'root' }); }
|
|
22
|
-
}
|
|
23
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EmojiDataService, [{
|
|
24
|
-
type: Injectable,
|
|
25
|
-
args: [{
|
|
26
|
-
providedIn: 'root',
|
|
27
|
-
}]
|
|
28
|
-
}], function () { return []; }, null); })();
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1vamktZGF0YS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZGF0YXJhaWxzc2hhcmVkL3NyYy9saWIvZW1vamktcGlja2VyL2Vtb2ppLWRhdGEuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNDLE9BQU8sRUFBRSxZQUFZLEVBQWEsTUFBTSxnQ0FBZ0MsQ0FBQzs7QUFTekUsTUFBTSxPQUFPLGdCQUFnQjtJQUd6QjtRQUNJLElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztJQUMzQyxDQUFDO0lBRUQsaUJBQWlCO1FBQ2IsTUFBTSxRQUFRLEdBQXdDLEVBQUUsQ0FBQztRQUV6RCxNQUFNLFNBQVMsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQztRQUMzQyxTQUFTLENBQUMsT0FBTyxDQUFDLENBQUMsS0FBZ0IsRUFBRSxFQUFFO1lBQ25DLElBQUksS0FBSyxDQUFDLFNBQVMsSUFBSSxLQUFLLENBQUMsTUFBTSxFQUFFO2dCQUNqQyxRQUFRLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxHQUFHO29CQUN4QixLQUFLLEVBQUUsS0FBSyxDQUFDLE1BQU07aUJBQ3RCLENBQUM7YUFDTDtRQUNMLENBQUMsQ0FBQyxDQUFDO1FBRUgsT0FBTyxRQUFRLENBQUM7SUFDcEIsQ0FBQztvR0FwQlEsZ0JBQWdCO3NHQUFoQixnQkFBZ0IsV0FBaEIsZ0JBQWdCLG1CQUZiLE1BQU07O3VGQUVULGdCQUFnQjtjQUg1QixVQUFVO2VBQUM7Z0JBQ1IsVUFBVSxFQUFFLE1BQU07YUFDckIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBFbW9qaVNlcnZpY2UsIEVtb2ppRGF0YSB9IGZyb20gJ0BjdHJsL25neC1lbW9qaS1tYXJ0L25neC1lbW9qaSc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSUVtb2ppUGlja2VySXRlbSB7XG4gICAgZW1vamk6IHN0cmluZztcbn1cblxuQEluamVjdGFibGUoe1xuICAgIHByb3ZpZGVkSW46ICdyb290Jyxcbn0pXG5leHBvcnQgY2xhc3MgRW1vamlEYXRhU2VydmljZSB7XG4gICAgcHJpdmF0ZSBlbW9qaVNlcnZpY2U6IEVtb2ppU2VydmljZTtcblxuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICB0aGlzLmVtb2ppU2VydmljZSA9IG5ldyBFbW9qaVNlcnZpY2UoKTtcbiAgICB9XG5cbiAgICBnZXRFbW9qaVBpY2tlclNldCgpOiB7IFtrZXk6IHN0cmluZ106IElFbW9qaVBpY2tlckl0ZW0gfSB7XG4gICAgICAgIGNvbnN0IGVtb2ppU2V0OiB7IFtrZXk6IHN0cmluZ106IElFbW9qaVBpY2tlckl0ZW0gfSA9IHt9O1xuXG4gICAgICAgIGNvbnN0IGFsbEVtb2ppcyA9IHRoaXMuZW1vamlTZXJ2aWNlLmVtb2ppcztcbiAgICAgICAgYWxsRW1vamlzLmZvckVhY2goKGVtb2ppOiBFbW9qaURhdGEpID0+IHtcbiAgICAgICAgICAgIGlmIChlbW9qaS5zaG9ydE5hbWUgJiYgZW1vamkubmF0aXZlKSB7XG4gICAgICAgICAgICAgICAgZW1vamlTZXRbZW1vamkuc2hvcnROYW1lXSA9IHtcbiAgICAgICAgICAgICAgICAgICAgZW1vamk6IGVtb2ppLm5hdGl2ZSxcbiAgICAgICAgICAgICAgICB9O1xuICAgICAgICAgICAgfVxuICAgICAgICB9KTtcblxuICAgICAgICByZXR1cm4gZW1vamlTZXQ7XG4gICAgfVxufVxuIl19
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export interface IEmojiPickerItem {
|
|
3
|
-
emoji: string;
|
|
4
|
-
}
|
|
5
|
-
export declare class EmojiDataService {
|
|
6
|
-
private emojiService;
|
|
7
|
-
constructor();
|
|
8
|
-
getEmojiPickerSet(): {
|
|
9
|
-
[key: string]: IEmojiPickerItem;
|
|
10
|
-
};
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EmojiDataService, never>;
|
|
12
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<EmojiDataService>;
|
|
13
|
-
}
|