@datarailsshared/datarailsshared 1.4.121 → 1.4.122
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/bundles/datarailsshared-datarailsshared.umd.js +344 -52
- package/bundles/datarailsshared-datarailsshared.umd.js.map +1 -1
- package/datarailsshared-datarailsshared-1.4.122.tgz +0 -0
- package/datarailsshared-datarailsshared.d.ts +23 -20
- package/datarailsshared-datarailsshared.metadata.json +1 -1
- package/esm2015/datarailsshared-datarailsshared.js +24 -21
- package/esm2015/lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component.js +1 -1
- package/esm2015/lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component.js +1 -1
- package/esm2015/lib/dr-dialog/interfaces/dialog-data.js +2 -1
- package/esm2015/lib/dr-dynamic-tag/dr-dynamic-tag.component.js +91 -0
- package/esm2015/lib/dr-dynamic-tag/dr-dynamic-tag.module.js +19 -0
- package/esm2015/lib/dr-inputs/dr-input/dr-input.component.js +7 -3
- package/esm2015/lib/dr-inputs/dr-inputs.module.js +4 -2
- package/esm2015/lib/dr-inputs/dr-select/dr-select.component.js +7 -2
- package/esm2015/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.js +65 -0
- package/esm2015/lib/dr-tags/dr-tag.component.js +102 -6
- package/esm2015/lib/dr-tags/dr-tag.module.js +4 -2
- package/esm2015/lib/models/serverTags.js +8 -2
- package/esm2015/public-api.js +2 -1
- package/fesm2015/datarailsshared-datarailsshared.js +310 -32
- package/fesm2015/datarailsshared-datarailsshared.js.map +1 -1
- package/lib/dr-dialog/interfaces/dialog-data.d.ts +2 -1
- package/lib/dr-dynamic-tag/dr-dynamic-tag.component.d.ts +20 -0
- package/lib/dr-dynamic-tag/dr-dynamic-tag.module.d.ts +2 -0
- package/lib/dr-inputs/dr-input/dr-input.component.d.ts +2 -0
- package/lib/dr-inputs/dr-select/dr-select.component.d.ts +2 -0
- package/lib/dr-inputs/dr-select-add-item/dr-select-add-item.component.d.ts +21 -0
- package/lib/dr-tags/dr-tag.component.d.ts +17 -1
- package/lib/models/serverTags.d.ts +13 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
- package/datarailsshared-datarailsshared-1.4.121.tgz +0 -0
|
Binary file
|
|
@@ -3,24 +3,27 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
5
|
export { components as ɵa } from './lib/date-tags/date-tag.module';
|
|
6
|
-
export { DrChatComponent as
|
|
7
|
-
export { DrChatFormComponent as
|
|
8
|
-
export { DrChatMessageComponent as
|
|
9
|
-
export { DrChatCustomMessageDirective as
|
|
10
|
-
export { DrChatCustomMessageService as
|
|
11
|
-
export { DrChatMessageFileComponent as
|
|
12
|
-
export { DrChatMessageTextComponent as
|
|
13
|
-
export { DialogModalWrapperComponent as
|
|
14
|
-
export { DialogWrapperComponent as
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
6
|
+
export { DrChatComponent as ɵs } from './lib/dr-chat/chat.component';
|
|
7
|
+
export { DrChatFormComponent as ɵv } from './lib/dr-chat/dr-chat-form/chat-form.component';
|
|
8
|
+
export { DrChatMessageComponent as ɵu } from './lib/dr-chat/dr-chat-message/chat-message.component';
|
|
9
|
+
export { DrChatCustomMessageDirective as ɵy } from './lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.directive';
|
|
10
|
+
export { DrChatCustomMessageService as ɵt } from './lib/dr-chat/dr-chat-message/dr-chat-message-custom/chat-custom-message.service';
|
|
11
|
+
export { DrChatMessageFileComponent as ɵx } from './lib/dr-chat/dr-chat-message/dr-chat-message-file/chat-message-file.component';
|
|
12
|
+
export { DrChatMessageTextComponent as ɵw } from './lib/dr-chat/dr-chat-message/dr-chat-message-text/chat-message-text.component';
|
|
13
|
+
export { DialogModalWrapperComponent as ɵr } from './lib/dr-dialog/components/dialog-modal-wrapper/dialog-modal-wrapper.component';
|
|
14
|
+
export { DialogWrapperComponent as ɵq } from './lib/dr-dialog/components/dialog-wrapper/dialog-wrapper.component';
|
|
15
|
+
export { DrDynamicTagComponent as ɵd } from './lib/dr-dynamic-tag/dr-dynamic-tag.component';
|
|
16
|
+
export { DrDynamicTagModule as ɵc } from './lib/dr-dynamic-tag/dr-dynamic-tag.module';
|
|
17
|
+
export { DrDatePickerFormatDirective as ɵh } from './lib/dr-inputs/date-pickers/directives/dr-date-picker-format.directive';
|
|
18
|
+
export { DrDatePickerWithTimeframeComponent as ɵg } from './lib/dr-inputs/date-pickers/dr-date-picker-with-timeframe/dr-date-picker-with-timeframe.component';
|
|
19
|
+
export { DrDatePickerComponent as ɵe } from './lib/dr-inputs/date-pickers/dr-date-picker/dr-date-picker.component';
|
|
20
|
+
export { DrDatePickerCustomHeaderComponent as ɵi } from './lib/dr-inputs/date-pickers/dr-date-picker_custom-header/dr-date-picker_custom-header.component';
|
|
21
|
+
export { DrShowTimeframePipe as ɵj } from './lib/dr-inputs/date-pickers/dr-show-timeframe.pipe';
|
|
22
|
+
export { DrDatePickerService as ɵf } from './lib/dr-inputs/date-pickers/services/dr-date-picker.service';
|
|
23
|
+
export { DrSelectAddItemComponent as ɵk } from './lib/dr-inputs/dr-select-add-item/dr-select-add-item.component';
|
|
24
|
+
export { TooltipInfoSimpleComponent as ɵm } from './lib/dr-tooltip/components/tooltip-info-simple/tooltip-info-simple.component';
|
|
25
|
+
export { TooltipInfoComponent as ɵl } from './lib/dr-tooltip/components/tooltip-info/tooltip-info.component';
|
|
26
|
+
export { TooltipNoBodyComponent as ɵn } from './lib/dr-tooltip/components/tooltip-no-body/tooltip-no-body.component';
|
|
27
|
+
export { TooltipProcessDefaultComponent as ɵo } from './lib/dr-tooltip/components/tooltip-process-default/tooltip-process-default.component';
|
|
25
28
|
export { POPUP_ANIMATION as ɵb } from './lib/models/constants';
|
|
26
|
-
export { StepperComponent as
|
|
29
|
+
export { StepperComponent as ɵp } from './lib/stepper/stepper.component';
|