@taiga-ui/core 5.0.0 → 5.1.0
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/components/textfield/textfield-content.directive.d.ts +6 -1
- package/fesm2022/taiga-ui-core-classes.mjs +3 -3
- package/fesm2022/taiga-ui-core-components-button.mjs +7 -7
- package/fesm2022/taiga-ui-core-components-calendar.mjs +18 -18
- package/fesm2022/taiga-ui-core-components-carousel.mjs +6 -6
- package/fesm2022/taiga-ui-core-components-cell.mjs +7 -7
- package/fesm2022/taiga-ui-core-components-cell.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-checkbox.mjs +4 -4
- package/fesm2022/taiga-ui-core-components-data-list.mjs +20 -20
- package/fesm2022/taiga-ui-core-components-error.mjs +9 -9
- package/fesm2022/taiga-ui-core-components-expand.mjs +3 -3
- package/fesm2022/taiga-ui-core-components-icon.mjs +7 -7
- package/fesm2022/taiga-ui-core-components-input.mjs +6 -6
- package/fesm2022/taiga-ui-core-components-label.mjs +7 -7
- package/fesm2022/taiga-ui-core-components-link.mjs +7 -7
- package/fesm2022/taiga-ui-core-components-loader.mjs +3 -3
- package/fesm2022/taiga-ui-core-components-notification.mjs +16 -16
- package/fesm2022/taiga-ui-core-components-radio.mjs +7 -7
- package/fesm2022/taiga-ui-core-components-root.mjs +3 -3
- package/fesm2022/taiga-ui-core-components-scrollbar.mjs +21 -21
- package/fesm2022/taiga-ui-core-components-slider.mjs +16 -17
- package/fesm2022/taiga-ui-core-components-slider.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-spin-button.mjs +3 -3
- package/fesm2022/taiga-ui-core-components-textfield.mjs +41 -34
- package/fesm2022/taiga-ui-core-components-textfield.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-components-title.mjs +7 -7
- package/fesm2022/taiga-ui-core-directives-appearance.mjs +10 -10
- package/fesm2022/taiga-ui-core-directives-button-x.mjs +3 -3
- package/fesm2022/taiga-ui-core-directives-date-format.mjs +3 -3
- package/fesm2022/taiga-ui-core-directives-group.mjs +7 -7
- package/fesm2022/taiga-ui-core-directives-icons.mjs +10 -10
- package/fesm2022/taiga-ui-core-directives-items-handlers.mjs +9 -9
- package/fesm2022/taiga-ui-core-directives-number-format.mjs +3 -3
- package/fesm2022/taiga-ui-core-pipes-filter-by-input.mjs +3 -3
- package/fesm2022/taiga-ui-core-pipes-format-number.mjs +4 -4
- package/fesm2022/taiga-ui-core-pipes-format-number.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-portals-alert.mjs +10 -10
- package/fesm2022/taiga-ui-core-portals-dialog.mjs +13 -13
- package/fesm2022/taiga-ui-core-portals-dropdown.mjs +57 -57
- package/fesm2022/taiga-ui-core-portals-dropdown.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-portals-hint.mjs +36 -36
- package/fesm2022/taiga-ui-core-portals-modal.mjs +8 -8
- package/fesm2022/taiga-ui-core-portals-popup.mjs +11 -10
- package/fesm2022/taiga-ui-core-portals-popup.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-services.mjs +6 -6
- package/fesm2022/taiga-ui-core-tokens.mjs +14 -9
- package/fesm2022/taiga-ui-core-tokens.mjs.map +1 -1
- package/fesm2022/taiga-ui-core-utils-format.mjs +4 -2
- package/fesm2022/taiga-ui-core-utils-format.mjs.map +1 -1
- package/package.json +30 -30
|
@@ -68,14 +68,16 @@ function tuiFormatNumber(value, settings = {}) {
|
|
|
68
68
|
}
|
|
69
69
|
const remainder = integerPartString.length % 3;
|
|
70
70
|
const sign = value < 0 ? CHAR_HYPHEN : '';
|
|
71
|
-
let result = sign
|
|
71
|
+
let result = `${sign}${integerPartString.charAt(0)}`;
|
|
72
72
|
for (let i = 1; i < integerPartString.length; i++) {
|
|
73
73
|
if (i % 3 === remainder && integerPartString.length > 3) {
|
|
74
74
|
result += thousandSeparator;
|
|
75
75
|
}
|
|
76
76
|
result += integerPartString.charAt(i);
|
|
77
77
|
}
|
|
78
|
-
return fractionPartPadded
|
|
78
|
+
return fractionPartPadded
|
|
79
|
+
? `${result}${decimalSeparator}${fractionPartPadded}`
|
|
80
|
+
: result;
|
|
79
81
|
}
|
|
80
82
|
|
|
81
83
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taiga-ui-core-utils-format.mjs","sources":["../../../projects/core/utils/format/number-to-string-without-exp.ts","../../../projects/core/utils/format/get-fractional-part-padded.ts","../../../projects/core/utils/format/format-number.ts","../../../projects/core/utils/format/taiga-ui-core-utils-format.ts"],"sourcesContent":["/**\n * Convert number to string with replacing exponent part on decimals\n *\n * @param value the number\n * @return string representation of a number\n */\nexport function tuiNumberToStringWithoutExp(value: number): string {\n const valueAsString = String(value);\n const [numberPart, expPart] = valueAsString.split('e-');\n\n let valueWithoutExp = valueAsString;\n\n if (expPart) {\n const [, fractionalPart = ''] = numberPart?.split('.') ?? [];\n const decimalDigits = Number(expPart) + (fractionalPart?.length || 0);\n\n valueWithoutExp = value.toFixed(decimalDigits);\n }\n\n return valueWithoutExp;\n}\n","import {tuiIsNumber} from '@taiga-ui/cdk/utils/miscellaneous';\n\nimport {tuiNumberToStringWithoutExp} from './number-to-string-without-exp';\n\n/**\n * Return fractional part of number\n *\n * @param value the number\n * @param precision number of digits of decimal part, null to keep untouched\n * @return the fractional part of number\n */\nexport function tuiGetFractionPartPadded(\n value: number,\n precision?: number | null,\n): string {\n const [, fractionPartPadded = ''] = tuiNumberToStringWithoutExp(value).split('.');\n\n return tuiIsNumber(precision)\n ? fractionPartPadded.slice(0, Math.max(0, precision))\n : fractionPartPadded;\n}\n","import {CHAR_HYPHEN} from '@taiga-ui/cdk/constants';\nimport {tuiRoundWith} from '@taiga-ui/cdk/utils/math';\nimport {\n TUI_DEFAULT_NUMBER_FORMAT,\n type TuiNumberFormatSettings,\n} from '@taiga-ui/core/tokens';\n\nimport {tuiGetFractionPartPadded} from './get-fractional-part-padded';\n\n/**\n * Formats number adding a thousand separators and correct decimal separator\n * padding decimal part with zeroes to given length\n *\n * @param value the input number\n * @param settings See {@link TuiNumberFormatSettings}\n * @return the formatted string\n */\nexport function tuiFormatNumber(\n value: number,\n settings: Partial<TuiNumberFormatSettings> = {},\n): string {\n const {precision, decimalSeparator, thousandSeparator, decimalMode, rounding} = {\n ...TUI_DEFAULT_NUMBER_FORMAT,\n decimalMode: 'always',\n precision: Infinity,\n ...settings,\n };\n\n const rounded = Number.isFinite(precision)\n ? tuiRoundWith({value, precision, method: rounding})\n : value;\n const integerPartString = String(Math.floor(Math.abs(rounded)));\n\n let fractionPartPadded = tuiGetFractionPartPadded(rounded, precision);\n const hasFraction = Number(fractionPartPadded) > 0;\n\n if (Number.isFinite(precision)) {\n if (decimalMode === 'always' || (hasFraction && decimalMode === 'pad')) {\n const zeroPaddingSize: number = Math.max(\n precision - fractionPartPadded.length,\n 0,\n );\n const zeroPartString = '0'.repeat(zeroPaddingSize);\n\n fractionPartPadded = `${fractionPartPadded}${zeroPartString}`;\n } else {\n fractionPartPadded = fractionPartPadded.replace(/0*$/, '');\n }\n }\n\n const remainder = integerPartString.length % 3;\n const sign = value < 0 ? CHAR_HYPHEN : '';\n let result = sign
|
|
1
|
+
{"version":3,"file":"taiga-ui-core-utils-format.mjs","sources":["../../../projects/core/utils/format/number-to-string-without-exp.ts","../../../projects/core/utils/format/get-fractional-part-padded.ts","../../../projects/core/utils/format/format-number.ts","../../../projects/core/utils/format/taiga-ui-core-utils-format.ts"],"sourcesContent":["/**\n * Convert number to string with replacing exponent part on decimals\n *\n * @param value the number\n * @return string representation of a number\n */\nexport function tuiNumberToStringWithoutExp(value: number): string {\n const valueAsString = String(value);\n const [numberPart, expPart] = valueAsString.split('e-');\n\n let valueWithoutExp = valueAsString;\n\n if (expPart) {\n const [, fractionalPart = ''] = numberPart?.split('.') ?? [];\n const decimalDigits = Number(expPart) + (fractionalPart?.length || 0);\n\n valueWithoutExp = value.toFixed(decimalDigits);\n }\n\n return valueWithoutExp;\n}\n","import {tuiIsNumber} from '@taiga-ui/cdk/utils/miscellaneous';\n\nimport {tuiNumberToStringWithoutExp} from './number-to-string-without-exp';\n\n/**\n * Return fractional part of number\n *\n * @param value the number\n * @param precision number of digits of decimal part, null to keep untouched\n * @return the fractional part of number\n */\nexport function tuiGetFractionPartPadded(\n value: number,\n precision?: number | null,\n): string {\n const [, fractionPartPadded = ''] = tuiNumberToStringWithoutExp(value).split('.');\n\n return tuiIsNumber(precision)\n ? fractionPartPadded.slice(0, Math.max(0, precision))\n : fractionPartPadded;\n}\n","import {CHAR_HYPHEN} from '@taiga-ui/cdk/constants';\nimport {tuiRoundWith} from '@taiga-ui/cdk/utils/math';\nimport {\n TUI_DEFAULT_NUMBER_FORMAT,\n type TuiNumberFormatSettings,\n} from '@taiga-ui/core/tokens';\n\nimport {tuiGetFractionPartPadded} from './get-fractional-part-padded';\n\n/**\n * Formats number adding a thousand separators and correct decimal separator\n * padding decimal part with zeroes to given length\n *\n * @param value the input number\n * @param settings See {@link TuiNumberFormatSettings}\n * @return the formatted string\n */\nexport function tuiFormatNumber(\n value: number,\n settings: Partial<TuiNumberFormatSettings> = {},\n): string {\n const {precision, decimalSeparator, thousandSeparator, decimalMode, rounding} = {\n ...TUI_DEFAULT_NUMBER_FORMAT,\n decimalMode: 'always',\n precision: Infinity,\n ...settings,\n };\n\n const rounded = Number.isFinite(precision)\n ? tuiRoundWith({value, precision, method: rounding})\n : value;\n const integerPartString = String(Math.floor(Math.abs(rounded)));\n\n let fractionPartPadded = tuiGetFractionPartPadded(rounded, precision);\n const hasFraction = Number(fractionPartPadded) > 0;\n\n if (Number.isFinite(precision)) {\n if (decimalMode === 'always' || (hasFraction && decimalMode === 'pad')) {\n const zeroPaddingSize: number = Math.max(\n precision - fractionPartPadded.length,\n 0,\n );\n const zeroPartString = '0'.repeat(zeroPaddingSize);\n\n fractionPartPadded = `${fractionPartPadded}${zeroPartString}`;\n } else {\n fractionPartPadded = fractionPartPadded.replace(/0*$/, '');\n }\n }\n\n const remainder = integerPartString.length % 3;\n const sign = value < 0 ? CHAR_HYPHEN : '';\n let result = `${sign}${integerPartString.charAt(0)}`;\n\n for (let i = 1; i < integerPartString.length; i++) {\n if (i % 3 === remainder && integerPartString.length > 3) {\n result += thousandSeparator;\n }\n\n result += integerPartString.charAt(i);\n }\n\n return fractionPartPadded\n ? `${result}${decimalSeparator}${fractionPartPadded}`\n : result;\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/core",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Core library for creating Angular components and applications using Taiga UI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -19,16 +19,16 @@
|
|
|
19
19
|
"license": "Apache-2.0",
|
|
20
20
|
"contributors": [
|
|
21
21
|
{
|
|
22
|
-
"
|
|
23
|
-
"
|
|
22
|
+
"email": "alexander@inkin.ru",
|
|
23
|
+
"name": "Alex Inkin"
|
|
24
24
|
},
|
|
25
25
|
{
|
|
26
|
-
"
|
|
27
|
-
"
|
|
26
|
+
"email": "vladimir.potekh@gmail.com",
|
|
27
|
+
"name": "Vladimir Potekhin"
|
|
28
28
|
},
|
|
29
29
|
{
|
|
30
|
-
"
|
|
31
|
-
"
|
|
30
|
+
"email": "nikita.s.barsukov@gmail.com",
|
|
31
|
+
"name": "Nikita Barsukov"
|
|
32
32
|
}
|
|
33
33
|
],
|
|
34
34
|
"peerDependencies": {
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"@ng-web-apis/common": "^5.2.0",
|
|
41
41
|
"@ng-web-apis/mutation-observer": "^5.2.0",
|
|
42
42
|
"@ng-web-apis/platform": "^5.2.0",
|
|
43
|
-
"@taiga-ui/cdk": "5.
|
|
43
|
+
"@taiga-ui/cdk": "5.1.0",
|
|
44
44
|
"@taiga-ui/event-plugins": "^5.0.0",
|
|
45
|
-
"@taiga-ui/i18n": "5.
|
|
45
|
+
"@taiga-ui/i18n": "5.1.0",
|
|
46
46
|
"@taiga-ui/polymorpheus": "^5.0.0",
|
|
47
|
-
"@taiga-ui/styles": "5.
|
|
47
|
+
"@taiga-ui/styles": "5.1.0",
|
|
48
48
|
"rxjs": ">=7.0.0"
|
|
49
49
|
},
|
|
50
50
|
"schematics": "./schematics/collection.json",
|
|
@@ -70,14 +70,14 @@
|
|
|
70
70
|
"types": "./directives/index.d.ts",
|
|
71
71
|
"default": "./fesm2022/taiga-ui-core-directives.mjs"
|
|
72
72
|
},
|
|
73
|
-
"./pipes": {
|
|
74
|
-
"types": "./pipes/index.d.ts",
|
|
75
|
-
"default": "./fesm2022/taiga-ui-core-pipes.mjs"
|
|
76
|
-
},
|
|
77
73
|
"./portals": {
|
|
78
74
|
"types": "./portals/index.d.ts",
|
|
79
75
|
"default": "./fesm2022/taiga-ui-core-portals.mjs"
|
|
80
76
|
},
|
|
77
|
+
"./pipes": {
|
|
78
|
+
"types": "./pipes/index.d.ts",
|
|
79
|
+
"default": "./fesm2022/taiga-ui-core-pipes.mjs"
|
|
80
|
+
},
|
|
81
81
|
"./services": {
|
|
82
82
|
"types": "./services/index.d.ts",
|
|
83
83
|
"default": "./fesm2022/taiga-ui-core-services.mjs"
|
|
@@ -122,14 +122,14 @@
|
|
|
122
122
|
"types": "./components/error/index.d.ts",
|
|
123
123
|
"default": "./fesm2022/taiga-ui-core-components-error.mjs"
|
|
124
124
|
},
|
|
125
|
-
"./components/icon": {
|
|
126
|
-
"types": "./components/icon/index.d.ts",
|
|
127
|
-
"default": "./fesm2022/taiga-ui-core-components-icon.mjs"
|
|
128
|
-
},
|
|
129
125
|
"./components/expand": {
|
|
130
126
|
"types": "./components/expand/index.d.ts",
|
|
131
127
|
"default": "./fesm2022/taiga-ui-core-components-expand.mjs"
|
|
132
128
|
},
|
|
129
|
+
"./components/icon": {
|
|
130
|
+
"types": "./components/icon/index.d.ts",
|
|
131
|
+
"default": "./fesm2022/taiga-ui-core-components-icon.mjs"
|
|
132
|
+
},
|
|
133
133
|
"./components/input": {
|
|
134
134
|
"types": "./components/input/index.d.ts",
|
|
135
135
|
"default": "./fesm2022/taiga-ui-core-components-input.mjs"
|
|
@@ -150,14 +150,14 @@
|
|
|
150
150
|
"types": "./components/notification/index.d.ts",
|
|
151
151
|
"default": "./fesm2022/taiga-ui-core-components-notification.mjs"
|
|
152
152
|
},
|
|
153
|
-
"./components/root": {
|
|
154
|
-
"types": "./components/root/index.d.ts",
|
|
155
|
-
"default": "./fesm2022/taiga-ui-core-components-root.mjs"
|
|
156
|
-
},
|
|
157
153
|
"./components/radio": {
|
|
158
154
|
"types": "./components/radio/index.d.ts",
|
|
159
155
|
"default": "./fesm2022/taiga-ui-core-components-radio.mjs"
|
|
160
156
|
},
|
|
157
|
+
"./components/root": {
|
|
158
|
+
"types": "./components/root/index.d.ts",
|
|
159
|
+
"default": "./fesm2022/taiga-ui-core-components-root.mjs"
|
|
160
|
+
},
|
|
161
161
|
"./components/scrollbar": {
|
|
162
162
|
"types": "./components/scrollbar/index.d.ts",
|
|
163
163
|
"default": "./fesm2022/taiga-ui-core-components-scrollbar.mjs"
|
|
@@ -206,14 +206,6 @@
|
|
|
206
206
|
"types": "./directives/number-format/index.d.ts",
|
|
207
207
|
"default": "./fesm2022/taiga-ui-core-directives-number-format.mjs"
|
|
208
208
|
},
|
|
209
|
-
"./pipes/filter-by-input": {
|
|
210
|
-
"types": "./pipes/filter-by-input/index.d.ts",
|
|
211
|
-
"default": "./fesm2022/taiga-ui-core-pipes-filter-by-input.mjs"
|
|
212
|
-
},
|
|
213
|
-
"./pipes/format-number": {
|
|
214
|
-
"types": "./pipes/format-number/index.d.ts",
|
|
215
|
-
"default": "./fesm2022/taiga-ui-core-pipes-format-number.mjs"
|
|
216
|
-
},
|
|
217
209
|
"./portals/alert": {
|
|
218
210
|
"types": "./portals/alert/index.d.ts",
|
|
219
211
|
"default": "./fesm2022/taiga-ui-core-portals-alert.mjs"
|
|
@@ -238,6 +230,14 @@
|
|
|
238
230
|
"types": "./portals/popup/index.d.ts",
|
|
239
231
|
"default": "./fesm2022/taiga-ui-core-portals-popup.mjs"
|
|
240
232
|
},
|
|
233
|
+
"./pipes/filter-by-input": {
|
|
234
|
+
"types": "./pipes/filter-by-input/index.d.ts",
|
|
235
|
+
"default": "./fesm2022/taiga-ui-core-pipes-filter-by-input.mjs"
|
|
236
|
+
},
|
|
237
|
+
"./pipes/format-number": {
|
|
238
|
+
"types": "./pipes/format-number/index.d.ts",
|
|
239
|
+
"default": "./fesm2022/taiga-ui-core-pipes-format-number.mjs"
|
|
240
|
+
},
|
|
241
241
|
"./utils/dom": {
|
|
242
242
|
"types": "./utils/dom/index.d.ts",
|
|
243
243
|
"default": "./fesm2022/taiga-ui-core-utils-dom.mjs"
|