@elite.framework/ng.ui.core 1.0.5 → 1.0.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/fesm2022/elite.framework-ng.ui.core-formly-ui-all.mjs +119 -0
- package/fesm2022/elite.framework-ng.ui.core-formly-ui-all.mjs.map +1 -0
- package/fesm2022/elite.framework-ng.ui.core-formly-ui.mjs +37 -387
- package/fesm2022/elite.framework-ng.ui.core-formly-ui.mjs.map +1 -1
- package/fesm2022/elite.framework-ng.ui.core-input.mjs +7 -1
- package/fesm2022/elite.framework-ng.ui.core-input.mjs.map +1 -1
- package/fesm2022/elite.framework-ng.ui.core-label-type.mjs +36 -36
- package/fesm2022/elite.framework-ng.ui.core-label-type.mjs.map +1 -1
- package/formly-ui/index.d.ts +4 -31
- package/formly-ui-all/README.md +3 -0
- package/formly-ui-all/index.d.ts +38 -0
- package/input/index.d.ts +7 -2
- package/package.json +20 -16
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Provider } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/common';
|
|
4
|
+
|
|
5
|
+
declare class FormlyUiAllModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyUiAllModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FormlyUiAllModule, never, [typeof i1.CommonModule], never>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FormlyUiAllModule>;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare function provideAllFormlyFields(): Provider[];
|
|
12
|
+
declare const withFormlyFieldInputWithIcon: () => Provider;
|
|
13
|
+
declare const withFormlyFieldAttachment: () => Provider;
|
|
14
|
+
declare const withFormlyFieldRichTextEditor: () => Provider;
|
|
15
|
+
declare const withFormlyFieldGenericSelector: () => Provider;
|
|
16
|
+
declare const withFormlyFieldSwitch: () => Provider;
|
|
17
|
+
declare const withFormlyFieldUsernameWithDomain: () => Provider;
|
|
18
|
+
declare const withFormlyFieldCustomSwitch: () => Provider;
|
|
19
|
+
declare const withFormlyFieldFormlySplit: () => Provider;
|
|
20
|
+
declare const withFormlyFieldButtonSelection: () => Provider;
|
|
21
|
+
declare const withFormlyFieldAvatarLabelButton: () => Provider;
|
|
22
|
+
declare const withFormlyFieldFormlyButton: () => Provider;
|
|
23
|
+
declare const withFormlyFieldLabelType: () => Provider;
|
|
24
|
+
declare const withFormlyFieldClickableLabelType: () => Provider;
|
|
25
|
+
declare const withFormlyFieldOptionTag: () => Provider;
|
|
26
|
+
declare const withFormlyFieldRepeat: () => Provider;
|
|
27
|
+
declare const withFormlyFieldTabs: () => Provider;
|
|
28
|
+
declare const withFormlyFieldTag: () => Provider;
|
|
29
|
+
declare const withFormlyFieldColorTag: () => Provider;
|
|
30
|
+
declare const withFormlyFieldConditionBuilder: () => Provider;
|
|
31
|
+
declare const withFormlyFieldIconPicker: () => Provider;
|
|
32
|
+
declare const withFormlyFieldColorPicker: () => Provider;
|
|
33
|
+
declare const withFormlyFieldTemplate: () => Provider;
|
|
34
|
+
declare const withFormlyFieldButton: () => Provider;
|
|
35
|
+
declare const withFormlyFieldAvatarImage: () => Provider;
|
|
36
|
+
declare const withFormlyWrappers: () => Provider;
|
|
37
|
+
|
|
38
|
+
export { FormlyUiAllModule, provideAllFormlyFields, withFormlyFieldAttachment, withFormlyFieldAvatarImage, withFormlyFieldAvatarLabelButton, withFormlyFieldButton, withFormlyFieldButtonSelection, withFormlyFieldClickableLabelType, withFormlyFieldColorPicker, withFormlyFieldColorTag, withFormlyFieldConditionBuilder, withFormlyFieldCustomSwitch, withFormlyFieldFormlyButton, withFormlyFieldFormlySplit, withFormlyFieldGenericSelector, withFormlyFieldIconPicker, withFormlyFieldInputWithIcon, withFormlyFieldLabelType, withFormlyFieldOptionTag, withFormlyFieldRepeat, withFormlyFieldRichTextEditor, withFormlyFieldSwitch, withFormlyFieldTabs, withFormlyFieldTag, withFormlyFieldTemplate, withFormlyFieldUsernameWithDomain, withFormlyWrappers };
|
package/input/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { AfterViewInit, ElementRef, Type } from '@angular/core';
|
|
2
|
+
import { AfterViewInit, ElementRef, Type, Provider } from '@angular/core';
|
|
3
3
|
import * as i1 from '@angular/common';
|
|
4
4
|
import * as i5 from '@ngx-formly/core';
|
|
5
5
|
import { ConfigOption, FieldType, FieldTypeConfig, FormlyFieldConfig } from '@ngx-formly/core';
|
|
@@ -38,5 +38,10 @@ declare class FormlyFieldInput extends FieldType<FieldTypeConfig<InputProps>> im
|
|
|
38
38
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyFieldInput, "formly-field-primeng-input", never, {}, {}, never, never, true, never>;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
declare const withFormlyFieldAdvancedInput: () => Provider;
|
|
42
|
+
declare const withFormlyFieldString: () => Provider;
|
|
43
|
+
declare const withFormlyFieldNumber: () => Provider;
|
|
44
|
+
declare const withFormlyFieldInteger: () => Provider;
|
|
45
|
+
|
|
46
|
+
export { FormlyFieldInput, FormlyInputModule, InputModule, withFormlyFieldAdvancedInput, withFormlyFieldInput, withFormlyFieldInteger, withFormlyFieldNumber, withFormlyFieldString };
|
|
42
47
|
export type { FormlyInputFieldConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elite.framework/ng.ui.core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^20.1.0",
|
|
6
6
|
"@angular/core": "^20.1.0"
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"types": "./index.d.ts",
|
|
17
17
|
"default": "./fesm2022/elite.framework-ng.ui.core.mjs"
|
|
18
18
|
},
|
|
19
|
-
"./attachments": {
|
|
20
|
-
"types": "./attachments/index.d.ts",
|
|
21
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-attachments.mjs"
|
|
22
|
-
},
|
|
23
19
|
"./base-crud": {
|
|
24
20
|
"types": "./base-crud/index.d.ts",
|
|
25
21
|
"default": "./fesm2022/elite.framework-ng.ui.core-base-crud.mjs"
|
|
26
22
|
},
|
|
23
|
+
"./attachments": {
|
|
24
|
+
"types": "./attachments/index.d.ts",
|
|
25
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-attachments.mjs"
|
|
26
|
+
},
|
|
27
27
|
"./breadcrumb": {
|
|
28
28
|
"types": "./breadcrumb/index.d.ts",
|
|
29
29
|
"default": "./fesm2022/elite.framework-ng.ui.core-breadcrumb.mjs"
|
|
@@ -48,22 +48,22 @@
|
|
|
48
48
|
"types": "./custom-switch/index.d.ts",
|
|
49
49
|
"default": "./fesm2022/elite.framework-ng.ui.core-custom-switch.mjs"
|
|
50
50
|
},
|
|
51
|
-
"./deactivation-reason": {
|
|
52
|
-
"types": "./deactivation-reason/index.d.ts",
|
|
53
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-deactivation-reason.mjs"
|
|
54
|
-
},
|
|
55
51
|
"./datepicker": {
|
|
56
52
|
"types": "./datepicker/index.d.ts",
|
|
57
53
|
"default": "./fesm2022/elite.framework-ng.ui.core-datepicker.mjs"
|
|
58
54
|
},
|
|
59
|
-
"./
|
|
60
|
-
"types": "./
|
|
61
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-
|
|
55
|
+
"./deactivation-reason": {
|
|
56
|
+
"types": "./deactivation-reason/index.d.ts",
|
|
57
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-deactivation-reason.mjs"
|
|
62
58
|
},
|
|
63
59
|
"./form-button": {
|
|
64
60
|
"types": "./form-button/index.d.ts",
|
|
65
61
|
"default": "./fesm2022/elite.framework-ng.ui.core-form-button.mjs"
|
|
66
62
|
},
|
|
63
|
+
"./excel-import": {
|
|
64
|
+
"types": "./excel-import/index.d.ts",
|
|
65
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-excel-import.mjs"
|
|
66
|
+
},
|
|
67
67
|
"./form-field": {
|
|
68
68
|
"types": "./form-field/index.d.ts",
|
|
69
69
|
"default": "./fesm2022/elite.framework-ng.ui.core-form-field.mjs"
|
|
@@ -100,18 +100,22 @@
|
|
|
100
100
|
"types": "./formly-ui/index.d.ts",
|
|
101
101
|
"default": "./fesm2022/elite.framework-ng.ui.core-formly-ui.mjs"
|
|
102
102
|
},
|
|
103
|
+
"./formly-ui-all": {
|
|
104
|
+
"types": "./formly-ui-all/index.d.ts",
|
|
105
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-formly-ui-all.mjs"
|
|
106
|
+
},
|
|
103
107
|
"./formly-username-with-domain": {
|
|
104
108
|
"types": "./formly-username-with-domain/index.d.ts",
|
|
105
109
|
"default": "./fesm2022/elite.framework-ng.ui.core-formly-username-with-domain.mjs"
|
|
106
110
|
},
|
|
107
|
-
"./generic-autocomplete": {
|
|
108
|
-
"types": "./generic-autocomplete/index.d.ts",
|
|
109
|
-
"default": "./fesm2022/elite.framework-ng.ui.core-generic-autocomplete.mjs"
|
|
110
|
-
},
|
|
111
111
|
"./generic-button": {
|
|
112
112
|
"types": "./generic-button/index.d.ts",
|
|
113
113
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-button.mjs"
|
|
114
114
|
},
|
|
115
|
+
"./generic-autocomplete": {
|
|
116
|
+
"types": "./generic-autocomplete/index.d.ts",
|
|
117
|
+
"default": "./fesm2022/elite.framework-ng.ui.core-generic-autocomplete.mjs"
|
|
118
|
+
},
|
|
115
119
|
"./generic-card": {
|
|
116
120
|
"types": "./generic-card/index.d.ts",
|
|
117
121
|
"default": "./fesm2022/elite.framework-ng.ui.core-generic-card.mjs"
|