@seniorsistemas/angular-components 19.6.2 → 19.7.1
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/dynamic-form/dynamic-form/components/lookup/lookup.component.d.ts +2 -1
- package/dynamic-form/dynamic-form/components/lookup/types/lookup-models.d.ts +2 -1
- package/dynamic-form/dynamic-form/form-field/configurations/fields/number-field.d.ts +1 -1
- package/dynamic-form/dynamic-form/form-field/fields/bignumber/bignumber-field.component.d.ts +1 -1
- package/dynamic-form/dynamic-form/form-field/fields/currency/currency-field.component.d.ts +1 -1
- package/dynamic-form/dynamic-form/form-field/fields/text/text-field.component.d.ts +1 -2
- package/esm2022/alert/lib/alert/alert.component.mjs +3 -3
- package/esm2022/dynamic-form/dynamic-form/components/lookup/lookup.component.mjs +1 -1
- package/esm2022/dynamic-form/dynamic-form/components/lookup/types/lookup-models.mjs +1 -1
- package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/number-field.mjs +1 -1
- package/esm2022/dynamic-form/dynamic-form/form-field/fields/bignumber/bignumber-field.component.mjs +16 -17
- package/esm2022/dynamic-form/dynamic-form/form-field/fields/currency/currency-field.component.mjs +20 -23
- package/esm2022/dynamic-form/dynamic-form/form-field/fields/number/number-field.component.mjs +9 -10
- package/esm2022/dynamic-form/dynamic-form/form-field/fields/text/text-field.component.mjs +9 -15
- package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-number/inline-edit-number.component.mjs +4 -4
- package/esm2022/inline-edit/lib/inline-edit/fields/inline-edit-number-field.mjs +1 -1
- package/esm2022/inline-edit/lib/inline-edit/inline-edit.module.mjs +4 -5
- package/esm2022/input-mask/lib/input-mask/input-mask.directive.mjs +460 -0
- package/esm2022/input-mask/lib/input-mask/input-mask.module.mjs +16 -0
- package/esm2022/input-mask/public-api.mjs +3 -0
- package/esm2022/input-mask/seniorsistemas-angular-components-input-mask.mjs +5 -0
- package/esm2022/lib/locale/fallback.mjs +3 -1
- package/esm2022/table/lib/table/table-column/column-number-format.utils.mjs +24 -0
- package/esm2022/table/lib/table/table-paging/export-number-format.mjs +104 -0
- package/esm2022/table/lib/table/table-paging/models/export-number-format.enum.mjs +6 -0
- package/esm2022/table/lib/table/table-paging/models/index.mjs +2 -2
- package/esm2022/table/lib/table/table-paging/table-paging.component.mjs +58 -99
- package/fesm2022/seniorsistemas-angular-components-alert.mjs +2 -2
- package/fesm2022/seniorsistemas-angular-components-alert.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs +53 -62
- package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs +6 -7
- package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components-input-mask.mjs +480 -0
- package/fesm2022/seniorsistemas-angular-components-input-mask.mjs.map +1 -0
- package/fesm2022/seniorsistemas-angular-components-table.mjs +181 -98
- package/fesm2022/seniorsistemas-angular-components-table.mjs.map +1 -1
- package/fesm2022/seniorsistemas-angular-components.mjs +2 -0
- package/fesm2022/seniorsistemas-angular-components.mjs.map +1 -1
- package/inline-edit/lib/inline-edit/fields/inline-edit-number-field.d.ts +2 -2
- package/inline-edit/lib/inline-edit/inline-edit.module.d.ts +2 -2
- package/input-mask/README.md +183 -0
- package/input-mask/index.d.ts +5 -0
- package/input-mask/lib/input-mask/input-mask.directive.d.ts +103 -0
- package/input-mask/lib/input-mask/input-mask.module.d.ts +7 -0
- package/input-mask/public-api.d.ts +2 -0
- package/package.json +18 -12
- package/schematics/migrations/migrate-dynamic-form-v19/index.d.ts +2 -0
- package/schematics/migrations/migrate-dynamic-form-v19/index.js +964 -0
- package/schematics/migrations/migrate-dynamic-form-v19/index.js.map +1 -0
- package/schematics/migrations/migrate-dynamic-form-v19/index.test.d.ts +1 -0
- package/schematics/migrations/migrate-dynamic-form-v19/index.test.js +888 -0
- package/schematics/migrations/migrate-dynamic-form-v19/index.test.js.map +1 -0
- package/schematics/migrations/migrate-p-datepicker/index.js +4 -8
- package/schematics/migrations/migrate-p-datepicker/index.js.map +1 -1
- package/schematics/migrations/migrate-p-editor/index.d.ts +2 -0
- package/schematics/migrations/migrate-p-editor/index.js +301 -0
- package/schematics/migrations/migrate-p-editor/index.js.map +1 -0
- package/schematics/migrations/migrate-p-editor/index.test.d.ts +1 -0
- package/schematics/migrations/migrate-p-editor/index.test.js +393 -0
- package/schematics/migrations/migrate-p-editor/index.test.js.map +1 -0
- package/schematics/migrations.json +11 -0
- package/schematics/utils/ast-utils.d.ts +7 -0
- package/schematics/utils/ast-utils.js +20 -0
- package/schematics/utils/ast-utils.js.map +1 -1
- package/schematics/utils/html-utils.d.ts +6 -0
- package/schematics/utils/html-utils.js +15 -0
- package/schematics/utils/html-utils.js.map +1 -0
- package/table/README.md +28 -0
- package/table/lib/table/table-column/column-number-format.utils.d.ts +5 -0
- package/table/lib/table/table-paging/export-number-format.d.ts +15 -0
- package/table/lib/table/table-paging/models/export-number-format.enum.d.ts +4 -0
- package/table/lib/table/table-paging/models/index.d.ts +1 -0
- package/table/lib/table/table-paging/table-paging.component.d.ts +10 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seniorsistemas/angular-components",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.7.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^18.2.14",
|
|
6
6
|
"@angular/common": "^18.2.0",
|
|
@@ -96,23 +96,17 @@
|
|
|
96
96
|
"esm": "./esm2022/accordion/seniorsistemas-angular-components-accordion.mjs",
|
|
97
97
|
"default": "./fesm2022/seniorsistemas-angular-components-accordion.mjs"
|
|
98
98
|
},
|
|
99
|
-
"./autocomplete": {
|
|
100
|
-
"types": "./autocomplete/index.d.ts",
|
|
101
|
-
"esm2022": "./esm2022/autocomplete/seniorsistemas-angular-components-autocomplete.mjs",
|
|
102
|
-
"esm": "./esm2022/autocomplete/seniorsistemas-angular-components-autocomplete.mjs",
|
|
103
|
-
"default": "./fesm2022/seniorsistemas-angular-components-autocomplete.mjs"
|
|
104
|
-
},
|
|
105
99
|
"./alert": {
|
|
106
100
|
"types": "./alert/index.d.ts",
|
|
107
101
|
"esm2022": "./esm2022/alert/seniorsistemas-angular-components-alert.mjs",
|
|
108
102
|
"esm": "./esm2022/alert/seniorsistemas-angular-components-alert.mjs",
|
|
109
103
|
"default": "./fesm2022/seniorsistemas-angular-components-alert.mjs"
|
|
110
104
|
},
|
|
111
|
-
"./
|
|
112
|
-
"types": "./
|
|
113
|
-
"esm2022": "./esm2022/
|
|
114
|
-
"esm": "./esm2022/
|
|
115
|
-
"default": "./fesm2022/seniorsistemas-angular-components-
|
|
105
|
+
"./autocomplete": {
|
|
106
|
+
"types": "./autocomplete/index.d.ts",
|
|
107
|
+
"esm2022": "./esm2022/autocomplete/seniorsistemas-angular-components-autocomplete.mjs",
|
|
108
|
+
"esm": "./esm2022/autocomplete/seniorsistemas-angular-components-autocomplete.mjs",
|
|
109
|
+
"default": "./fesm2022/seniorsistemas-angular-components-autocomplete.mjs"
|
|
116
110
|
},
|
|
117
111
|
"./bignumber-input": {
|
|
118
112
|
"types": "./bignumber-input/index.d.ts",
|
|
@@ -120,6 +114,12 @@
|
|
|
120
114
|
"esm": "./esm2022/bignumber-input/seniorsistemas-angular-components-bignumber-input.mjs",
|
|
121
115
|
"default": "./fesm2022/seniorsistemas-angular-components-bignumber-input.mjs"
|
|
122
116
|
},
|
|
117
|
+
"./badge": {
|
|
118
|
+
"types": "./badge/index.d.ts",
|
|
119
|
+
"esm2022": "./esm2022/badge/seniorsistemas-angular-components-badge.mjs",
|
|
120
|
+
"esm": "./esm2022/badge/seniorsistemas-angular-components-badge.mjs",
|
|
121
|
+
"default": "./fesm2022/seniorsistemas-angular-components-badge.mjs"
|
|
122
|
+
},
|
|
123
123
|
"./breadcrumb": {
|
|
124
124
|
"types": "./breadcrumb/index.d.ts",
|
|
125
125
|
"esm2022": "./esm2022/breadcrumb/seniorsistemas-angular-components-breadcrumb.mjs",
|
|
@@ -330,6 +330,12 @@
|
|
|
330
330
|
"esm": "./esm2022/inline-edit/seniorsistemas-angular-components-inline-edit.mjs",
|
|
331
331
|
"default": "./fesm2022/seniorsistemas-angular-components-inline-edit.mjs"
|
|
332
332
|
},
|
|
333
|
+
"./input-mask": {
|
|
334
|
+
"types": "./input-mask/index.d.ts",
|
|
335
|
+
"esm2022": "./esm2022/input-mask/seniorsistemas-angular-components-input-mask.mjs",
|
|
336
|
+
"esm": "./esm2022/input-mask/seniorsistemas-angular-components-input-mask.mjs",
|
|
337
|
+
"default": "./fesm2022/seniorsistemas-angular-components-input-mask.mjs"
|
|
338
|
+
},
|
|
333
339
|
"./insights": {
|
|
334
340
|
"types": "./insights/index.d.ts",
|
|
335
341
|
"esm2022": "./esm2022/insights/seniorsistemas-angular-components-insights.mjs",
|