@ptsecurity/mosaic 15.8.8 → 15.8.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/_theming.scss +43 -15
  2. package/_visual.scss +43 -15
  3. package/core/formatters/index.d.ts +1 -1
  4. package/core/formatters/number/formatter.d.ts +30 -0
  5. package/core/locales/en-US.d.ts +12 -0
  6. package/core/locales/es-LA.d.ts +12 -0
  7. package/core/locales/fa-IR.d.ts +13 -0
  8. package/core/locales/locale-service.d.ts +134 -0
  9. package/core/locales/pt-BR.d.ts +12 -0
  10. package/core/locales/ru-RU.d.ts +12 -0
  11. package/core/locales/tk-TM.d.ts +64 -0
  12. package/core/locales/zh-CN.d.ts +11 -0
  13. package/core/pop-up/constants.d.ts +9 -0
  14. package/esm2020/core/formatters/index.mjs +6 -2
  15. package/esm2020/core/formatters/number/formatter.mjs +133 -1
  16. package/esm2020/core/locales/en-US.mjs +13 -1
  17. package/esm2020/core/locales/es-LA.mjs +13 -1
  18. package/esm2020/core/locales/fa-IR.mjs +14 -1
  19. package/esm2020/core/locales/locale-service.mjs +6 -3
  20. package/esm2020/core/locales/pt-BR.mjs +13 -1
  21. package/esm2020/core/locales/ru-RU.mjs +13 -1
  22. package/esm2020/core/locales/tk-TM.mjs +63 -0
  23. package/esm2020/core/locales/zh-CN.mjs +12 -1
  24. package/esm2020/core/pop-up/constants.mjs +6 -1
  25. package/esm2020/core/version.mjs +2 -2
  26. package/esm2020/dropdown/dropdown.component.mjs +2 -2
  27. package/esm2020/select/select.component.mjs +7 -5
  28. package/esm2020/tooltip/tooltip.component.mjs +5 -3
  29. package/esm2020/tree-select/tree-select.component.mjs +7 -5
  30. package/fesm2015/ptsecurity-mosaic-core.mjs +283 -5
  31. package/fesm2015/ptsecurity-mosaic-core.mjs.map +1 -1
  32. package/fesm2015/ptsecurity-mosaic-dropdown.mjs +2 -2
  33. package/fesm2015/ptsecurity-mosaic-select.mjs +6 -4
  34. package/fesm2015/ptsecurity-mosaic-select.mjs.map +1 -1
  35. package/fesm2015/ptsecurity-mosaic-tooltip.mjs +5 -2
  36. package/fesm2015/ptsecurity-mosaic-tooltip.mjs.map +1 -1
  37. package/fesm2015/ptsecurity-mosaic-tree-select.mjs +6 -4
  38. package/fesm2015/ptsecurity-mosaic-tree-select.mjs.map +1 -1
  39. package/fesm2020/ptsecurity-mosaic-core.mjs +281 -4
  40. package/fesm2020/ptsecurity-mosaic-core.mjs.map +1 -1
  41. package/fesm2020/ptsecurity-mosaic-dropdown.mjs +2 -2
  42. package/fesm2020/ptsecurity-mosaic-select.mjs +6 -4
  43. package/fesm2020/ptsecurity-mosaic-select.mjs.map +1 -1
  44. package/fesm2020/ptsecurity-mosaic-tooltip.mjs +4 -2
  45. package/fesm2020/ptsecurity-mosaic-tooltip.mjs.map +1 -1
  46. package/fesm2020/ptsecurity-mosaic-tree-select.mjs +6 -4
  47. package/fesm2020/ptsecurity-mosaic-tree-select.mjs.map +1 -1
  48. package/package.json +8 -8
  49. package/prebuilt-themes/dark-theme.css +1 -1
  50. package/prebuilt-themes/default-theme.css +1 -1
  51. package/tooltip/tooltip.component.d.ts +2 -1
@@ -517,6 +517,18 @@ const enUSLocaleData = {
517
517
  select: { hiddenItemsText: 'one more' },
518
518
  datepicker: {
519
519
  placeholder: 'dd/mm/yyyy'
520
+ },
521
+ formatters: {
522
+ number: {
523
+ rounding: {
524
+ separator: '',
525
+ groupSeparator: '.',
526
+ thousand: 'K',
527
+ million: 'M',
528
+ billion: 'B',
529
+ trillion: 'T'
530
+ }
531
+ }
520
532
  }
521
533
  }
522
534
  };
@@ -532,6 +544,18 @@ const esLALocaleData = {
532
544
  full: 'hh:mm:ss',
533
545
  short: 'hh:mm'
534
546
  }
547
+ },
548
+ formatters: {
549
+ number: {
550
+ rounding: {
551
+ separator: '',
552
+ groupSeparator: ',',
553
+ thousand: 'K',
554
+ million: 'M',
555
+ billion: 'MRD',
556
+ trillion: 'B'
557
+ }
558
+ }
535
559
  }
536
560
  }
537
561
  };
@@ -547,6 +571,19 @@ const faIRLocaleData = {
547
571
  full: 'ثانیه:دقیقه:ساعت',
548
572
  short: 'دقیقه:ساعت'
549
573
  }
574
+ },
575
+ formatters: {
576
+ number: {
577
+ rounding: {
578
+ separator: ' ',
579
+ groupSeparator: '٫',
580
+ thousand: 'هزار',
581
+ million: 'میلیون',
582
+ billion: 'م',
583
+ trillion: 'تریلیون',
584
+ rtl: true
585
+ }
586
+ }
550
587
  }
551
588
  }
552
589
  };
@@ -562,6 +599,18 @@ const ptBRLocaleData = {
562
599
  full: 'hh:mm:ss',
563
600
  short: 'hh:mm'
564
601
  }
602
+ },
603
+ formatters: {
604
+ number: {
605
+ rounding: {
606
+ separator: ' ',
607
+ groupSeparator: ',',
608
+ thousand: 'mil',
609
+ million: 'mi',
610
+ billion: 'bi',
611
+ trillion: 'tri'
612
+ }
613
+ }
565
614
  }
566
615
  }
567
616
  };
@@ -571,6 +620,81 @@ const ruRULocaleData = {
571
620
  select: { hiddenItemsText: 'еще' },
572
621
  datepicker: {
573
622
  placeholder: 'дд.мм.гггг'
623
+ },
624
+ formatters: {
625
+ number: {
626
+ rounding: {
627
+ separator: ' ',
628
+ groupSeparator: ',',
629
+ thousand: 'К',
630
+ million: 'М',
631
+ billion: 'М',
632
+ trillion: 'Т'
633
+ }
634
+ }
635
+ }
636
+ }
637
+ };
638
+
639
+ const tkTMLocaleData = {
640
+ 'tk-TM': {
641
+ select: { hiddenItemsText: 'ýene {{ number }}' },
642
+ datepicker: {
643
+ placeholder: 'gg.aa.ýý.'
644
+ },
645
+ timepicker: {
646
+ placeholder: {
647
+ full: 'ss:mm:seksek',
648
+ short: 'ss:mm'
649
+ }
650
+ },
651
+ formatters: {
652
+ number: {
653
+ rounding: {
654
+ separator: ' ',
655
+ groupSeparator: '',
656
+ thousand: 'M',
657
+ million: 'Mn',
658
+ billion: 'Mr',
659
+ trillion: 'Tn'
660
+ }
661
+ }
662
+ },
663
+ input: {
664
+ number: {
665
+ groupSeparator: [' '],
666
+ fractionSeparator: ','
667
+ }
668
+ },
669
+ codeBlock: {
670
+ softWrapOnTooltip: 'Sözler boýunça geçirmäni işjeňleşdirmek',
671
+ softWrapOffTooltip: 'Sözler boýunça geçirmäni öçürmek',
672
+ downloadTooltip: 'Ýüklemek',
673
+ copiedTooltip: '✓ Göçürildi',
674
+ copyTooltip: 'Göçürmek',
675
+ viewAllText: 'Hemmesini görkezmek',
676
+ viewLessText: 'Ýygyrmak',
677
+ openExternalSystemTooltip: 'Daşarky ulgamda açmak'
678
+ },
679
+ timezone: {
680
+ searchPlaceholder: 'Şäher ýa-da sagat guşagy'
681
+ },
682
+ fileUpload: {
683
+ single: {
684
+ captionText: 'Faýly geçiriň ýa-da {{ browseLink }} ',
685
+ browseLink: 'saýlaň'
686
+ },
687
+ multiple: {
688
+ captionText: 'Şu ýere geçiriň ýa-da {{ browseLink }}',
689
+ captionTextWhenSelected: 'Ýene geçiriň ýa-da {{ browseLink }}',
690
+ captionTextForCompactSize: 'Faýllary geçiriň ýa-da {{ browseLink }}',
691
+ browseLink: 'saýlaň',
692
+ title: 'Faýl ýükläň',
693
+ gridHeaders: {
694
+ file: 'Faýl',
695
+ size: 'Ölçegi'
696
+ }
697
+ }
574
698
  }
575
699
  }
576
700
  };
@@ -586,6 +710,17 @@ const znCNLocaleData = {
586
710
  full: '时:分:秒',
587
711
  short: '时:分'
588
712
  }
713
+ },
714
+ formatters: {
715
+ number: {
716
+ rounding: {
717
+ separator: ' ',
718
+ groupSeparator: '.',
719
+ tenThousand: '万',
720
+ oneHundredMillions: '亿',
721
+ trillion: '兆'
722
+ }
723
+ }
589
724
  }
590
725
  }
591
726
  };
@@ -600,14 +735,16 @@ function MC_DEFAULT_LOCALE_DATA_FACTORY() {
600
735
  { id: 'es-LA', name: 'Español' },
601
736
  { id: 'pt-BR', name: 'Português' },
602
737
  { id: 'ru-RU', name: 'Русский' },
603
- { id: 'fa-IR', name: 'فارسی' }
738
+ { id: 'fa-IR', name: 'فارسی' },
739
+ { id: 'tk-TM', name: 'Türkmen' }
604
740
  ],
605
741
  ...ruRULocaleData,
606
742
  ...enUSLocaleData,
607
743
  ...esLALocaleData,
608
744
  ...faIRLocaleData,
609
745
  ...ptBRLocaleData,
610
- ...znCNLocaleData
746
+ ...znCNLocaleData,
747
+ ...tkTMLocaleData
611
748
  };
612
749
  }
613
750
  const MC_LOCALE_DATA = new InjectionToken('MC_LOCALE_DATA', { providedIn: 'root', factory: MC_DEFAULT_LOCALE_DATA_FACTORY });
@@ -692,6 +829,26 @@ const minIntGroupPosition = 1;
692
829
  const minFractionGroupPosition = 3;
693
830
  const maxFractionGroupPosition = 5;
694
831
  const useGroupingPosition = 7;
832
+ // tslint:disable:no-magic-numbers
833
+ const ROUNDING_UNITS = {
834
+ thousand: 1e3,
835
+ tenThousand: 10 * 1e3,
836
+ million: 1e6,
837
+ oneHundredMillions: 100 * 1e6,
838
+ billion: 1e9,
839
+ trillion: 1e12
840
+ };
841
+ const intervalsConfig = {
842
+ supportedLanguages: ['ru-RU', 'en-US', 'es-LA', 'pt-BR', 'fa-IR'],
843
+ intervals: [
844
+ { startRange: 1, endRange: ROUNDING_UNITS.thousand },
845
+ { startRange: ROUNDING_UNITS.thousand, endRange: ROUNDING_UNITS.tenThousand, precision: 1 },
846
+ { startRange: ROUNDING_UNITS.tenThousand, endRange: ROUNDING_UNITS.million },
847
+ { startRange: ROUNDING_UNITS.million, endRange: ROUNDING_UNITS.million * 10, precision: 1 },
848
+ { startRange: ROUNDING_UNITS.million * 10, endRange: ROUNDING_UNITS.billion }
849
+ ]
850
+ };
851
+ // tslint:enable:no-magic-numbers
695
852
  class ParsedDigitsInfo {
696
853
  }
697
854
  const defaultValueForGroupingInRULocale = 10000;
@@ -880,11 +1037,124 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
880
1037
  type: Inject,
881
1038
  args: [MC_NUMBER_FORMATTER_OPTIONS]
882
1039
  }] }]; } });
1040
+ function isWithin(startRange, endRange, valueToCheck) {
1041
+ return startRange <= valueToCheck && valueToCheck < endRange;
1042
+ }
1043
+ class McRoundDecimalPipe {
1044
+ constructor(id, localeService) {
1045
+ this.id = id;
1046
+ this.localeService = localeService;
1047
+ this.localeService?.changes
1048
+ .subscribe((newId) => this.id = newId);
1049
+ }
1050
+ transform(value, locale) {
1051
+ if (isEmpty(value)) {
1052
+ return null;
1053
+ }
1054
+ const currentLocale = locale || this.id || MC_DEFAULT_LOCALE_ID;
1055
+ this.roundingOptions = this.localeService.locales[currentLocale].formatters.number.rounding;
1056
+ try {
1057
+ const num = strToNumber(value);
1058
+ const unit = this.calculateUnit(num);
1059
+ if (!unit) {
1060
+ return Intl.NumberFormat.call(this, currentLocale, { useGrouping: false }).format(num);
1061
+ }
1062
+ let parts = {};
1063
+ if (intervalsConfig.supportedLanguages.includes(currentLocale)) {
1064
+ intervalsConfig.intervals
1065
+ .find(({ startRange, endRange, precision }) => {
1066
+ const within = isWithin(startRange, endRange, num);
1067
+ if (within) {
1068
+ if (precision) {
1069
+ parts = unit === 'thousand' ?
1070
+ this.calculatePartsForThousands(num) :
1071
+ {
1072
+ num: Math.trunc(num / ROUNDING_UNITS[unit]),
1073
+ fraction: this.calculateDecimal(num, ROUNDING_UNITS[unit])
1074
+ };
1075
+ }
1076
+ else {
1077
+ parts = { num: Math.round(num / ROUNDING_UNITS[unit]) };
1078
+ }
1079
+ }
1080
+ return within;
1081
+ });
1082
+ }
1083
+ parts = parts.num ? parts : {
1084
+ num: Math.trunc(num / ROUNDING_UNITS[unit]),
1085
+ fraction: this.calculateDecimal(num, ROUNDING_UNITS[unit])
1086
+ };
1087
+ Object.keys(parts).forEach((key) => {
1088
+ parts[key] = Intl.NumberFormat.call(this, currentLocale, { useGrouping: false }).format(parts[key]);
1089
+ });
1090
+ const calculatedValue = parts.fraction
1091
+ ? `${parts.num}${this.roundingOptions.groupSeparator}${parts.fraction}`
1092
+ : `${parts.num}`;
1093
+ return `${calculatedValue}${this.roundingOptions.separator}${this.roundingOptions[unit]}`;
1094
+ }
1095
+ catch (error) {
1096
+ throw Error(`InvalidPipeArgument: McRoundDecimalPipe for pipe '${JSON.stringify(error.message)}'`);
1097
+ }
1098
+ }
1099
+ calculateDecimal(num, divider) {
1100
+ /* tslint:disable-next-line:no-magic-numbers */
1101
+ return Math.round(num / divider % 1 * 10);
1102
+ }
1103
+ /**
1104
+ * 2 * 1000 is a number in the interval of [1500...2500)
1105
+ *
1106
+ * 2,0 * 1000 is a number in the interval of [1950...2050)
1107
+ */
1108
+ calculatePartsForThousands(num) {
1109
+ const dividedValue = num / ROUNDING_UNITS.thousand;
1110
+ const div = Math.round(dividedValue) * ROUNDING_UNITS.thousand;
1111
+ const fifty = 50;
1112
+ return isWithin(div - fifty, div + fifty, num)
1113
+ ? { num: Math.round(dividedValue), fraction: 0 }
1114
+ : { num: Math.round(dividedValue) };
1115
+ }
1116
+ calculateUnit(num) {
1117
+ let currentUnit;
1118
+ const localizedOptions = Object.keys(this.roundingOptions);
1119
+ Object.keys(ROUNDING_UNITS).every((key) => {
1120
+ if (!localizedOptions.includes(key)) {
1121
+ return true;
1122
+ }
1123
+ if (num / ROUNDING_UNITS[key] >= 1) {
1124
+ currentUnit = key;
1125
+ return true;
1126
+ }
1127
+ return false;
1128
+ });
1129
+ return currentUnit;
1130
+ }
1131
+ }
1132
+ /** @nocollapse */ McRoundDecimalPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McRoundDecimalPipe, deps: [{ token: MC_LOCALE_ID, optional: true }, { token: MC_LOCALE_SERVICE, optional: true }], target: i0.ɵɵFactoryTarget.Pipe });
1133
+ /** @nocollapse */ McRoundDecimalPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: McRoundDecimalPipe, name: "mcRoundNumber", pure: false });
1134
+ /** @nocollapse */ McRoundDecimalPipe.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McRoundDecimalPipe, providedIn: 'root' });
1135
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McRoundDecimalPipe, decorators: [{
1136
+ type: Injectable,
1137
+ args: [{ providedIn: 'root' }]
1138
+ }, {
1139
+ type: Pipe,
1140
+ args: [{ name: 'mcRoundNumber', pure: false }]
1141
+ }], ctorParameters: function () { return [{ type: undefined, decorators: [{
1142
+ type: Optional
1143
+ }, {
1144
+ type: Inject,
1145
+ args: [MC_LOCALE_ID]
1146
+ }] }, { type: McLocaleService, decorators: [{
1147
+ type: Optional
1148
+ }, {
1149
+ type: Inject,
1150
+ args: [MC_LOCALE_SERVICE]
1151
+ }] }]; } });
883
1152
 
884
1153
  class McFormattersModule {
885
1154
  }
886
1155
  /** @nocollapse */ McFormattersModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: McFormattersModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
887
1156
  /** @nocollapse */ McFormattersModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: McFormattersModule, declarations: [McDecimalPipe,
1157
+ McRoundDecimalPipe,
888
1158
  McTableNumberPipe,
889
1159
  AbsoluteDateFormatterPipe,
890
1160
  AbsoluteDateTimeFormatterPipe,
@@ -899,6 +1169,7 @@ class McFormattersModule {
899
1169
  RangeDateTimeFormatterPipe,
900
1170
  RangeShortDateTimeFormatterPipe,
901
1171
  RangeMiddleDateTimeFormatterPipe], exports: [McDecimalPipe,
1172
+ McRoundDecimalPipe,
902
1173
  McTableNumberPipe,
903
1174
  AbsoluteDateFormatterPipe,
904
1175
  AbsoluteDateTimeFormatterPipe,
@@ -919,6 +1190,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
919
1190
  args: [{
920
1191
  declarations: [
921
1192
  McDecimalPipe,
1193
+ McRoundDecimalPipe,
922
1194
  McTableNumberPipe,
923
1195
  AbsoluteDateFormatterPipe,
924
1196
  AbsoluteDateTimeFormatterPipe,
@@ -936,6 +1208,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
936
1208
  ],
937
1209
  exports: [
938
1210
  McDecimalPipe,
1211
+ McRoundDecimalPipe,
939
1212
  McTableNumberPipe,
940
1213
  AbsoluteDateFormatterPipe,
941
1214
  AbsoluteDateTimeFormatterPipe,
@@ -1906,6 +2179,10 @@ function objectValues(object) {
1906
2179
  return object === null ? [] : baseValues(object, Object.keys(object));
1907
2180
  }
1908
2181
 
2182
+ /**
2183
+ * InjectionToken for providing component with popup. Used in select and tree-select for tooltip.
2184
+ */
2185
+ const MC_PARENT_POPUP = new InjectionToken('mc-parent-popup');
1909
2186
  var PopUpPlacements;
1910
2187
  (function (PopUpPlacements) {
1911
2188
  PopUpPlacements["Top"] = "top";
@@ -2478,11 +2755,11 @@ const validationTooltipShowDelay = 10;
2478
2755
  const validationTooltipHideDelay = 3000;
2479
2756
  const MC_VALIDATION = new InjectionToken('McUseValidation', { factory: () => ({ useValidation: true }) });
2480
2757
 
2481
- const VERSION = new Version('15.8.8+sha-f7fce63');
2758
+ const VERSION = new Version('15.8.10+sha-e38d354');
2482
2759
 
2483
2760
  /**
2484
2761
  * Generated bundle index. Do not edit.
2485
2762
  */
2486
2763
 
2487
- export { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, ErrorStateMatcher, LEFT_BOTTOM_POSITION_PRIORITY, LEFT_POSITION_PRIORITY, LEFT_TOP_POSITION_PRIORITY, MC_CUSTOM_SCROLL_STRATEGY_PROVIDER, MC_DATE_FORMATS, MC_DATE_LOCALE, MC_DATE_LOCALE_FACTORY, MC_DEFAULT_LOCALE_DATA_FACTORY, MC_DEFAULT_LOCALE_ID, MC_LABEL_GLOBAL_OPTIONS, MC_LOCALE_DATA, MC_LOCALE_ID, MC_LOCALE_SERVICE, MC_NUMBER_FORMATTER_DEFAULT_OPTIONS, MC_NUMBER_FORMATTER_OPTIONS, MC_OPTION_ACTION_PARENT, MC_OPTION_PARENT_COMPONENT, MC_SANITY_CHECKS, MC_SELECT_SCROLL_STRATEGY, MC_SELECT_SCROLL_STRATEGY_PROVIDER, MC_TITLE_TEXT_REF, MC_VALIDATION, McCommonModule, McDataSizeModule, McDataSizePipe, McDecimalPipe, McForm, McFormElement, McFormattersModule, McFormsModule, McHighlightModule, McHighlightPipe, McLine, McLineModule, McLineSetter, McLocaleService, McLocaleServiceModule, McMeasureScrollbarService, McOptgroup, McOptgroupBase, McOptgroupMixinBase, McOption, McOptionActionBase, McOptionActionComponent, McOptionActionMixinBase, McOptionBase, McOptionModule, McOptionSelectionChange, McPopUp, McPopUpTrigger, McPseudoCheckbox, McPseudoCheckboxBase, McPseudoCheckboxMixinBase, McPseudoCheckboxModule, McTableNumberPipe, McVirtualOption, MeasurementSystem, MultipleMode, NUMBER_FORMAT_REGEXP, POSITION_MAP, POSITION_PRIORITY_STRATEGY, POSITION_TO_CSS_MAP, PopUpPlacements, PopUpSizes, PopUpTriggers, PopUpVisibility, RIGHT_BOTTOM_POSITION_PRIORITY, RIGHT_POSITION_PRIORITY, RIGHT_TOP_POSITION_PRIORITY, RangeDateFormatterPipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterPipe, SELECT_PANEL_INDENT_PADDING_X, SELECT_PANEL_MAX_HEIGHT, SELECT_PANEL_PADDING_X, SELECT_PANEL_VIEWPORT_PADDING, ShowOnDirtyErrorStateMatcher, TOP_LEFT_POSITION_PRIORITY, TOP_POSITION_PRIORITY, TOP_RIGHT_POSITION_PRIORITY, ThemePalette, VERSION, countGroupLabelsBeforeOption, escapeRegExp, fadeAnimation, formatDataSize, getHumanizedBytes, getMcSelectDynamicMultipleError, getMcSelectNonArrayValueError, getMcSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, mcSelectAnimations, mcSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, selectEvents, sizeUnitsConfig, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay };
2764
+ export { AbsoluteDateFormatterPipe, AbsoluteDateShortFormatterPipe, AbsoluteDateTimeFormatterPipe, AbsoluteShortDateTimeFormatterPipe, AnimationCurves, BOTTOM_LEFT_POSITION_PRIORITY, BOTTOM_POSITION_PRIORITY, BOTTOM_RIGHT_POSITION_PRIORITY, DateAdapter, DateFormatter, EXTENDED_OVERLAY_POSITIONS, ErrorStateMatcher, LEFT_BOTTOM_POSITION_PRIORITY, LEFT_POSITION_PRIORITY, LEFT_TOP_POSITION_PRIORITY, MC_CUSTOM_SCROLL_STRATEGY_PROVIDER, MC_DATE_FORMATS, MC_DATE_LOCALE, MC_DATE_LOCALE_FACTORY, MC_DEFAULT_LOCALE_DATA_FACTORY, MC_DEFAULT_LOCALE_ID, MC_LABEL_GLOBAL_OPTIONS, MC_LOCALE_DATA, MC_LOCALE_ID, MC_LOCALE_SERVICE, MC_NUMBER_FORMATTER_DEFAULT_OPTIONS, MC_NUMBER_FORMATTER_OPTIONS, MC_OPTION_ACTION_PARENT, MC_OPTION_PARENT_COMPONENT, MC_PARENT_POPUP, MC_SANITY_CHECKS, MC_SELECT_SCROLL_STRATEGY, MC_SELECT_SCROLL_STRATEGY_PROVIDER, MC_TITLE_TEXT_REF, MC_VALIDATION, McCommonModule, McDataSizeModule, McDataSizePipe, McDecimalPipe, McForm, McFormElement, McFormattersModule, McFormsModule, McHighlightModule, McHighlightPipe, McLine, McLineModule, McLineSetter, McLocaleService, McLocaleServiceModule, McMeasureScrollbarService, McOptgroup, McOptgroupBase, McOptgroupMixinBase, McOption, McOptionActionBase, McOptionActionComponent, McOptionActionMixinBase, McOptionBase, McOptionModule, McOptionSelectionChange, McPopUp, McPopUpTrigger, McPseudoCheckbox, McPseudoCheckboxBase, McPseudoCheckboxMixinBase, McPseudoCheckboxModule, McRoundDecimalPipe, McTableNumberPipe, McVirtualOption, MeasurementSystem, MultipleMode, NUMBER_FORMAT_REGEXP, POSITION_MAP, POSITION_PRIORITY_STRATEGY, POSITION_TO_CSS_MAP, PopUpPlacements, PopUpSizes, PopUpTriggers, PopUpVisibility, RIGHT_BOTTOM_POSITION_PRIORITY, RIGHT_POSITION_PRIORITY, RIGHT_TOP_POSITION_PRIORITY, RangeDateFormatterPipe, RangeDateTimeFormatterPipe, RangeMiddleDateTimeFormatterPipe, RangeShortDateFormatterPipe, RangeShortDateTimeFormatterPipe, RelativeDateFormatterPipe, RelativeDateTimeFormatterPipe, RelativeShortDateFormatterPipe, RelativeShortDateTimeFormatterPipe, SELECT_PANEL_INDENT_PADDING_X, SELECT_PANEL_MAX_HEIGHT, SELECT_PANEL_PADDING_X, SELECT_PANEL_VIEWPORT_PADDING, ShowOnDirtyErrorStateMatcher, TOP_LEFT_POSITION_PRIORITY, TOP_POSITION_PRIORITY, TOP_RIGHT_POSITION_PRIORITY, ThemePalette, VERSION, countGroupLabelsBeforeOption, escapeRegExp, fadeAnimation, formatDataSize, getHumanizedBytes, getMcSelectDynamicMultipleError, getMcSelectNonArrayValueError, getMcSelectNonFunctionValueError, getOptionScrollPosition, isBoolean, isWithin, mcSelectAnimations, mcSelectScrollStrategyProviderFactory, mixinColor, mixinDisabled, mixinErrorState, mixinTabIndex, selectEvents, sizeUnitsConfig, toBoolean, validationTooltipHideDelay, validationTooltipShowDelay };
2488
2765
  //# sourceMappingURL=ptsecurity-mosaic-core.mjs.map