@seniorsistemas/angular-components 17.9.6 → 17.9.7
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/seniorsistemas-angular-components.umd.js +89 -88
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/components/locale/index.d.ts +1 -0
- package/esm2015/components/locale/index.js +2 -1
- package/esm2015/components/locale/services/numeric.service.js +4 -3
- package/esm2015/seniorsistemas-angular-components.js +86 -87
- package/esm5/components/locale/index.js +2 -1
- package/esm5/components/locale/services/numeric.service.js +4 -3
- package/esm5/seniorsistemas-angular-components.js +86 -87
- package/fesm2015/seniorsistemas-angular-components.js +4 -3
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +4 -3
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-angular-components.d.ts +85 -86
- package/seniorsistemas-angular-components.metadata.json +1 -1
|
@@ -7423,10 +7423,11 @@
|
|
|
7423
7423
|
* @return `string` The formatted value.
|
|
7424
7424
|
*/
|
|
7425
7425
|
NumericService.prototype.instant = function (value, options) {
|
|
7426
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
7426
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;
|
|
7427
7427
|
options = __assign(__assign({}, options), { locale: (_c = (_a = options === null || options === void 0 ? void 0 : options.locale) !== null && _a !== void 0 ? _a : (_b = this.localeService.getLocaleOptions()) === null || _b === void 0 ? void 0 : _b.locale) !== null && _c !== void 0 ? _c : "pt-BR", numberFormatOptions: __assign(__assign({}, options === null || options === void 0 ? void 0 : options.numberFormatOptions), { currency: ((_d = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _d === void 0 ? void 0 : _d.style) === "currency" ? ((_f = (_e = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _e === void 0 ? void 0 : _e.currency) !== null && _f !== void 0 ? _f : "BRL") : undefined, currencyDisplay: ((_g = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _g === void 0 ? void 0 : _g.style) === "currency"
|
|
7428
7428
|
? ((_j = (_h = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _h === void 0 ? void 0 : _h.currencyDisplay) !== null && _j !== void 0 ? _j : "narrowSymbol")
|
|
7429
|
-
: undefined, minimumFractionDigits: (_l = (_k = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _k === void 0 ? void 0 : _k.minimumFractionDigits) !== null && _l !== void 0 ? _l : 2, maximumFractionDigits: (
|
|
7429
|
+
: undefined, minimumFractionDigits: (_o = (_l = (_k = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _k === void 0 ? void 0 : _k.minimumFractionDigits) !== null && _l !== void 0 ? _l : (_m = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _m === void 0 ? void 0 : _m.maximumFractionDigits) !== null && _o !== void 0 ? _o : 2, maximumFractionDigits: (_s = (_q = (_p = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _p === void 0 ? void 0 : _p.maximumFractionDigits) !== null && _q !== void 0 ? _q : (_r = options === null || options === void 0 ? void 0 : options.numberFormatOptions) === null || _r === void 0 ? void 0 : _r.minimumFractionDigits) !== null && _s !== void 0 ? _s : 2 }) });
|
|
7430
|
+
options.numberFormatOptions["roundingMode"] = "trunc";
|
|
7430
7431
|
options.numberFormatOptions["trailingZeroDisplay"] = "stripIfInteger";
|
|
7431
7432
|
// From https://developer.mozilla.org/pt-BR/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat
|
|
7432
7433
|
return new Intl.NumberFormat(options.locale, options.numberFormatOptions).format(this.getType(value) === "number" || this.getType(value) === "string" ? value : value.toString());
|
|
@@ -18961,6 +18962,7 @@
|
|
|
18961
18962
|
exports.NumberInputDirective = NumberInputDirective;
|
|
18962
18963
|
exports.NumberInputModule = NumberInputModule;
|
|
18963
18964
|
exports.NumberLocaleOptions = NumberLocaleOptions;
|
|
18965
|
+
exports.NumericService = NumericService;
|
|
18964
18966
|
exports.ObjectCardComponent = ObjectCardComponent;
|
|
18965
18967
|
exports.ObjectCardFieldComponent = ObjectCardFieldComponent;
|
|
18966
18968
|
exports.ObjectCardMainComponent = ObjectCardMainComponent;
|
|
@@ -19029,81 +19031,80 @@
|
|
|
19029
19031
|
exports.fallback = fallback;
|
|
19030
19032
|
exports.ɵa = TooltipComponent;
|
|
19031
19033
|
exports.ɵb = TooltipDirective;
|
|
19032
|
-
exports.ɵba =
|
|
19033
|
-
exports.ɵbb =
|
|
19034
|
-
exports.ɵbc =
|
|
19035
|
-
exports.ɵbd =
|
|
19036
|
-
exports.ɵbe =
|
|
19037
|
-
exports.ɵbf =
|
|
19038
|
-
exports.ɵbg =
|
|
19039
|
-
exports.ɵbh =
|
|
19040
|
-
exports.ɵbi =
|
|
19041
|
-
exports.ɵbj =
|
|
19042
|
-
exports.ɵbk =
|
|
19043
|
-
exports.ɵbl =
|
|
19044
|
-
exports.ɵbm =
|
|
19045
|
-
exports.ɵbn =
|
|
19046
|
-
exports.ɵbo =
|
|
19047
|
-
exports.ɵbp =
|
|
19048
|
-
exports.ɵbq =
|
|
19049
|
-
exports.ɵbr =
|
|
19050
|
-
exports.ɵbs =
|
|
19051
|
-
exports.ɵbt =
|
|
19052
|
-
exports.ɵbu =
|
|
19053
|
-
exports.ɵbv =
|
|
19054
|
-
exports.ɵbw =
|
|
19055
|
-
exports.ɵbx =
|
|
19056
|
-
exports.ɵby =
|
|
19057
|
-
exports.ɵbz =
|
|
19034
|
+
exports.ɵba = PasswordFieldComponent;
|
|
19035
|
+
exports.ɵbb = TextFieldModule;
|
|
19036
|
+
exports.ɵbc = TextFieldComponent;
|
|
19037
|
+
exports.ɵbd = NumberFieldModule;
|
|
19038
|
+
exports.ɵbe = LocalizedNumberInputModule;
|
|
19039
|
+
exports.ɵbf = NumberInputModule;
|
|
19040
|
+
exports.ɵbg = NumberFieldComponent;
|
|
19041
|
+
exports.ɵbh = CurrencyFieldModule;
|
|
19042
|
+
exports.ɵbi = CurrencyFieldComponent;
|
|
19043
|
+
exports.ɵbj = BignumberFieldModule;
|
|
19044
|
+
exports.ɵbk = BignumberInputModule;
|
|
19045
|
+
exports.ɵbl = BignumberFieldComponent;
|
|
19046
|
+
exports.ɵbm = ProfilePictureModule;
|
|
19047
|
+
exports.ɵbn = ThumbnailService;
|
|
19048
|
+
exports.ɵbo = StructureModule;
|
|
19049
|
+
exports.ɵbp = HeaderComponent;
|
|
19050
|
+
exports.ɵbq = FooterComponent;
|
|
19051
|
+
exports.ɵbr = ProfilePictureFieldComponent;
|
|
19052
|
+
exports.ɵbs = AutocompleteFieldComponent;
|
|
19053
|
+
exports.ɵbt = BooleanFieldComponent;
|
|
19054
|
+
exports.ɵbu = BooleanSwitchFieldComponent;
|
|
19055
|
+
exports.ɵbv = CalendarFieldComponent;
|
|
19056
|
+
exports.ɵbw = ChipsFieldComponent;
|
|
19057
|
+
exports.ɵbx = CountryPhonePickerFieldComponent;
|
|
19058
|
+
exports.ɵby = DynamicFieldComponent;
|
|
19059
|
+
exports.ɵbz = DynamicFormDirective;
|
|
19058
19060
|
exports.ɵc = TemplateDirective;
|
|
19059
|
-
exports.ɵca =
|
|
19060
|
-
exports.ɵcb =
|
|
19061
|
-
exports.ɵcc =
|
|
19062
|
-
exports.ɵcd =
|
|
19063
|
-
exports.ɵce =
|
|
19064
|
-
exports.ɵcf =
|
|
19065
|
-
exports.ɵcg =
|
|
19066
|
-
exports.ɵch =
|
|
19067
|
-
exports.ɵci =
|
|
19068
|
-
exports.ɵcj =
|
|
19069
|
-
exports.ɵck =
|
|
19070
|
-
exports.ɵ
|
|
19071
|
-
exports.ɵcn =
|
|
19072
|
-
exports.ɵco =
|
|
19073
|
-
exports.ɵcp =
|
|
19074
|
-
exports.ɵcq =
|
|
19075
|
-
exports.ɵcr =
|
|
19076
|
-
exports.ɵcs =
|
|
19077
|
-
exports.ɵct =
|
|
19078
|
-
exports.ɵcu =
|
|
19079
|
-
exports.ɵcv =
|
|
19080
|
-
exports.ɵcw =
|
|
19081
|
-
exports.ɵcx =
|
|
19082
|
-
exports.ɵcy =
|
|
19083
|
-
exports.ɵcz =
|
|
19061
|
+
exports.ɵca = FieldsetComponent;
|
|
19062
|
+
exports.ɵcb = FileUploadComponent$1;
|
|
19063
|
+
exports.ɵcc = LookupFieldComponent;
|
|
19064
|
+
exports.ɵcd = RadioButtonComponent;
|
|
19065
|
+
exports.ɵce = RowComponent;
|
|
19066
|
+
exports.ɵcf = SectionComponent;
|
|
19067
|
+
exports.ɵcg = SelectFieldComponent;
|
|
19068
|
+
exports.ɵch = SliderFieldComponent;
|
|
19069
|
+
exports.ɵci = TextAreaFieldComponent;
|
|
19070
|
+
exports.ɵcj = TextAreaIAFieldComponent;
|
|
19071
|
+
exports.ɵck = IAssistService;
|
|
19072
|
+
exports.ɵcm = DecimalField;
|
|
19073
|
+
exports.ɵcn = SideTableComponent;
|
|
19074
|
+
exports.ɵco = InfiniteScrollModule;
|
|
19075
|
+
exports.ɵcp = InfiniteScrollDirective;
|
|
19076
|
+
exports.ɵcq = IAInsightSidebarComponent;
|
|
19077
|
+
exports.ɵcr = IAInsightCardComponent;
|
|
19078
|
+
exports.ɵcs = IAInsightCardLoaderComponent;
|
|
19079
|
+
exports.ɵct = KanbanEventService;
|
|
19080
|
+
exports.ɵcu = KanbanItemComponent;
|
|
19081
|
+
exports.ɵcv = KanbanColumnComponent;
|
|
19082
|
+
exports.ɵcw = KanbanItemDraggingComponent;
|
|
19083
|
+
exports.ɵcx = NumberLocaleOptions;
|
|
19084
|
+
exports.ɵcy = TieredMenuEventService;
|
|
19085
|
+
exports.ɵcz = TieredMenuService;
|
|
19084
19086
|
exports.ɵd = TemplateModule;
|
|
19085
|
-
exports.ɵda =
|
|
19086
|
-
exports.ɵdb =
|
|
19087
|
-
exports.ɵdc =
|
|
19088
|
-
exports.ɵdd =
|
|
19089
|
-
exports.ɵde =
|
|
19090
|
-
exports.ɵdf =
|
|
19091
|
-
exports.ɵdg =
|
|
19092
|
-
exports.ɵdh =
|
|
19093
|
-
exports.ɵdi =
|
|
19094
|
-
exports.ɵdj =
|
|
19095
|
-
exports.ɵdk =
|
|
19096
|
-
exports.ɵdl =
|
|
19097
|
-
exports.ɵdm =
|
|
19098
|
-
exports.ɵdn =
|
|
19099
|
-
exports.ɵdo =
|
|
19100
|
-
exports.ɵdp =
|
|
19101
|
-
exports.ɵdq =
|
|
19102
|
-
exports.ɵdr =
|
|
19103
|
-
exports.ɵds =
|
|
19104
|
-
exports.ɵdt =
|
|
19105
|
-
exports.ɵdu =
|
|
19106
|
-
exports.ɵdv = VerticalItemsComponent;
|
|
19087
|
+
exports.ɵda = TieredMenuGlobalService;
|
|
19088
|
+
exports.ɵdb = TieredMenuComponent;
|
|
19089
|
+
exports.ɵdc = TieredMenuNestedComponent;
|
|
19090
|
+
exports.ɵdd = TieredMenuItemComponent;
|
|
19091
|
+
exports.ɵde = TieredMenuDividerComponent;
|
|
19092
|
+
exports.ɵdf = BorderButtonModule;
|
|
19093
|
+
exports.ɵdg = BorderButtonComponent;
|
|
19094
|
+
exports.ɵdh = ProgressBarDeterminateComponent;
|
|
19095
|
+
exports.ɵdi = ProgressBarIndeterminateComponent;
|
|
19096
|
+
exports.ɵdj = SelectButtonItemComponent;
|
|
19097
|
+
exports.ɵdk = SlidePanelService;
|
|
19098
|
+
exports.ɵdl = TimelineItemModule;
|
|
19099
|
+
exports.ɵdm = TimelineIconItemComponent;
|
|
19100
|
+
exports.ɵdn = HorizontalTimelineModule;
|
|
19101
|
+
exports.ɵdo = HorizontalTimelineComponent;
|
|
19102
|
+
exports.ɵdp = VerticalTimelineModule;
|
|
19103
|
+
exports.ɵdq = VerticalTimelineComponent;
|
|
19104
|
+
exports.ɵdr = RangeLineComponent;
|
|
19105
|
+
exports.ɵds = CollapseOptionComponent;
|
|
19106
|
+
exports.ɵdt = CollapsedItemsComponent;
|
|
19107
|
+
exports.ɵdu = VerticalItemsComponent;
|
|
19107
19108
|
exports.ɵe = CustomTranslationsModule;
|
|
19108
19109
|
exports.ɵf = CodeEditorComponent;
|
|
19109
19110
|
exports.ɵg = CoreFacade;
|
|
@@ -19113,19 +19114,19 @@
|
|
|
19113
19114
|
exports.ɵk = LocalizedBignumberPipe;
|
|
19114
19115
|
exports.ɵl = LocalizedBignumberImpurePipe;
|
|
19115
19116
|
exports.ɵm = NumericPipe;
|
|
19116
|
-
exports.ɵn =
|
|
19117
|
-
exports.ɵo =
|
|
19118
|
-
exports.ɵp =
|
|
19119
|
-
exports.ɵq =
|
|
19120
|
-
exports.ɵr =
|
|
19121
|
-
exports.ɵs =
|
|
19122
|
-
exports.ɵt =
|
|
19123
|
-
exports.ɵu =
|
|
19124
|
-
exports.ɵv =
|
|
19125
|
-
exports.ɵw =
|
|
19126
|
-
exports.ɵx =
|
|
19127
|
-
exports.ɵy =
|
|
19128
|
-
exports.ɵz =
|
|
19117
|
+
exports.ɵn = EmptyStateGoBackComponent;
|
|
19118
|
+
exports.ɵo = IAssistIconComponent;
|
|
19119
|
+
exports.ɵp = SeniorIconComponent;
|
|
19120
|
+
exports.ɵq = DotsIndicatorComponent;
|
|
19121
|
+
exports.ɵr = LoadingIndicatorComponent;
|
|
19122
|
+
exports.ɵs = FileUploadService;
|
|
19123
|
+
exports.ɵt = InfoSignComponent;
|
|
19124
|
+
exports.ɵu = TableColumnsComponent;
|
|
19125
|
+
exports.ɵv = TablePagingComponent;
|
|
19126
|
+
exports.ɵw = PasswordFieldModule;
|
|
19127
|
+
exports.ɵx = FieldLabelModule;
|
|
19128
|
+
exports.ɵy = InfoSignModule;
|
|
19129
|
+
exports.ɵz = FieldLabelComponent;
|
|
19129
19130
|
|
|
19130
19131
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
19131
19132
|
|