@ebuilding/form 2.1.11 → 2.1.13
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.
|
@@ -34,19 +34,15 @@ class DeonNzFieldTextArea extends FieldType {
|
|
|
34
34
|
this.formControl.markAsTouched();
|
|
35
35
|
}
|
|
36
36
|
onContentChanged(event) {
|
|
37
|
-
console.log("onContentChanged", event);
|
|
38
37
|
if (event.text) {
|
|
39
38
|
this.formControl.patchValue(event.editor.root.innerHTML, { emitEvent: false });
|
|
40
39
|
}
|
|
41
40
|
}
|
|
42
41
|
onSelectionChanged(event) {
|
|
43
|
-
console.log("onSelectionChanged");
|
|
44
42
|
}
|
|
45
43
|
onFocus(event) {
|
|
46
|
-
console.log("onFocus");
|
|
47
44
|
}
|
|
48
45
|
onBlur(event) {
|
|
49
|
-
console.log("onBlur");
|
|
50
46
|
}
|
|
51
47
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeonNzFieldTextArea, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
52
48
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: DeonNzFieldTextArea, isStandalone: true, selector: "deon-nz-field-textarea", usesInheritance: true, ngImport: i0, template: `
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type.textarea.mjs","sources":["../../../../packages/form/textarea/src/textarea.type.ts","../../../../packages/form/textarea/src/textarea.module.ts","../../../../packages/form/textarea/type.textarea.ts"],"sourcesContent":["import { Component, ChangeDetectionStrategy } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { NzInputModule } from 'ng-zorro-antd/input';\nimport { FormlyModule, FieldType, FieldTypeConfig } from '@kre-form/core';\n\nimport { GramPipeModule } from '@ebuilding/base/shared.pipe';\nimport { DeonNzFormFieldModule } from '@ebuilding/form/form-field';\nimport { QuillModule } from 'ngx-quill';\n\n@Component({\n selector: 'deon-nz-field-textarea',\n template: `\n <div\n class=\"field-text deon-text deon-text-textarea\"\n [ngStyle]=\"{ 'min-height': props.rows != undefined ? 26 * props.rows + 'px' : 26 + 'px' }\"\n *ngIf=\"editor == false; else tmpField\"\n [innerHtml]=\"text | safeHtml\"\n >\n {{ text }}\n </div>\n <ng-template #tmpField>\n <ng-container *ngIf=\"props!! && props.type == 'richtext'; else tmpTextare\">\n <quill-editor [formControl]=\"formControl\" [formlyAttributes]=\"field\" \n ></quill-editor>\n </ng-container>\n\n <ng-template #tmpTextare>\n <textarea\n nz-input\n [formControl]=\"formControl\"\n [formlyAttributes]=\"field\"\n [rows]=\"props.rows ? props.rows : 1\"\n style=\"resize:none\"\n ></textarea>\n </ng-template>\n </ng-template>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [\n CommonModule,\n FormsModule,\n ReactiveFormsModule,\n NzInputModule,\n DeonNzFormFieldModule,\n FormlyModule,\n GramPipeModule,\n QuillModule\n ]\n})\nexport class DeonNzFieldTextArea extends FieldType<FieldTypeConfig> {\n override get text(): string {\n if (!this.editor && this.model && this.field?.key) {\n let value = this.model[this.field.key.toString()] || '';\n return value.replace(/\\n/g, '<br>').replace(/ /g, ' ');\n }\n return this.formControl?.value || '';\n }\n public replaceAll(str: string, find: string, replace: string) {\n return str.replace(new RegExp(find, 'g'), replace);\n }\n\n onQuillTextChange(event: any) {\n // if (event.text) {\n // this.formControl.patchValue(event.editor.root.innerHTML, { emitEvent: false });\n // this.formControl.markAsTouched();\n // } \n\n this.formControl.patchValue(event.editor.root.innerHTML, { emitEvent: false });\n this.formControl.markAsTouched();\n }\n\n onContentChanged(event: any) {\n
|
|
1
|
+
{"version":3,"file":"type.textarea.mjs","sources":["../../../../packages/form/textarea/src/textarea.type.ts","../../../../packages/form/textarea/src/textarea.module.ts","../../../../packages/form/textarea/type.textarea.ts"],"sourcesContent":["import { Component, ChangeDetectionStrategy } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { NzInputModule } from 'ng-zorro-antd/input';\nimport { FormlyModule, FieldType, FieldTypeConfig } from '@kre-form/core';\n\nimport { GramPipeModule } from '@ebuilding/base/shared.pipe';\nimport { DeonNzFormFieldModule } from '@ebuilding/form/form-field';\nimport { QuillModule } from 'ngx-quill';\n\n@Component({\n selector: 'deon-nz-field-textarea',\n template: `\n <div\n class=\"field-text deon-text deon-text-textarea\"\n [ngStyle]=\"{ 'min-height': props.rows != undefined ? 26 * props.rows + 'px' : 26 + 'px' }\"\n *ngIf=\"editor == false; else tmpField\"\n [innerHtml]=\"text | safeHtml\"\n >\n {{ text }}\n </div>\n <ng-template #tmpField>\n <ng-container *ngIf=\"props!! && props.type == 'richtext'; else tmpTextare\">\n <quill-editor [formControl]=\"formControl\" [formlyAttributes]=\"field\" \n ></quill-editor>\n </ng-container>\n\n <ng-template #tmpTextare>\n <textarea\n nz-input\n [formControl]=\"formControl\"\n [formlyAttributes]=\"field\"\n [rows]=\"props.rows ? props.rows : 1\"\n style=\"resize:none\"\n ></textarea>\n </ng-template>\n </ng-template>\n `,\n changeDetection: ChangeDetectionStrategy.OnPush,\n imports: [\n CommonModule,\n FormsModule,\n ReactiveFormsModule,\n NzInputModule,\n DeonNzFormFieldModule,\n FormlyModule,\n GramPipeModule,\n QuillModule\n ]\n})\nexport class DeonNzFieldTextArea extends FieldType<FieldTypeConfig> {\n override get text(): string {\n if (!this.editor && this.model && this.field?.key) {\n let value = this.model[this.field.key.toString()] || '';\n return value.replace(/\\n/g, '<br>').replace(/ /g, ' ');\n }\n return this.formControl?.value || '';\n }\n public replaceAll(str: string, find: string, replace: string) {\n return str.replace(new RegExp(find, 'g'), replace);\n }\n\n onQuillTextChange(event: any) {\n // if (event.text) {\n // this.formControl.patchValue(event.editor.root.innerHTML, { emitEvent: false });\n // this.formControl.markAsTouched();\n // } \n\n this.formControl.patchValue(event.editor.root.innerHTML, { emitEvent: false });\n this.formControl.markAsTouched();\n }\n\n onContentChanged(event: any) {\n if (event.text) {\n this.formControl.patchValue(event.editor.root.innerHTML, { emitEvent: false });\n }\n }\n\n onSelectionChanged(event: any) {\n }\n\n onFocus(event: any) {\n }\n\n onBlur(event: any) {\n }\n}\n","import { NgModule } from '@angular/core';\nimport { FormlyModule } from '@kre-form/core';\n\nimport { DeonNzFieldTextArea } from './textarea.type';\n\n@NgModule({\n imports: [\n FormlyModule.forChild({\n types: [\n {\n name: 'textarea',\n component: DeonNzFieldTextArea,\n wrappers: ['formly-form-field'],\n },\n ],\n }),\n ],\n})\nexport class DeonNzTextAreaModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebuilding/form",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.13",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"extend": "undefined",
|
|
6
6
|
"tslib": "^2.3.0"
|
|
@@ -23,62 +23,62 @@
|
|
|
23
23
|
"types": "./checkboxgroup/index.d.ts",
|
|
24
24
|
"default": "./fesm2022/type.checkboxgroup.mjs"
|
|
25
25
|
},
|
|
26
|
-
"./dim": {
|
|
27
|
-
"types": "./dim/index.d.ts",
|
|
28
|
-
"default": "./fesm2022/type.dim.mjs"
|
|
29
|
-
},
|
|
30
26
|
"./colors": {
|
|
31
27
|
"types": "./colors/index.d.ts",
|
|
32
28
|
"default": "./fesm2022/type.colors.mjs"
|
|
33
29
|
},
|
|
30
|
+
"./datetime": {
|
|
31
|
+
"types": "./datetime/index.d.ts",
|
|
32
|
+
"default": "./fesm2022/type.datetime.mjs"
|
|
33
|
+
},
|
|
34
34
|
"./dim-indicator": {
|
|
35
35
|
"types": "./dim-indicator/index.d.ts",
|
|
36
36
|
"default": "./fesm2022/type.dim-indicator.mjs"
|
|
37
37
|
},
|
|
38
|
-
"./
|
|
39
|
-
"types": "./
|
|
40
|
-
"default": "./fesm2022/type.
|
|
38
|
+
"./form-field": {
|
|
39
|
+
"types": "./form-field/index.d.ts",
|
|
40
|
+
"default": "./fesm2022/type.form-field.mjs"
|
|
41
41
|
},
|
|
42
|
-
"./
|
|
43
|
-
"types": "./
|
|
44
|
-
"default": "./fesm2022/type.
|
|
42
|
+
"./dim": {
|
|
43
|
+
"types": "./dim/index.d.ts",
|
|
44
|
+
"default": "./fesm2022/type.dim.mjs"
|
|
45
45
|
},
|
|
46
46
|
"./desc": {
|
|
47
47
|
"types": "./desc/index.d.ts",
|
|
48
48
|
"default": "./fesm2022/type.desc.mjs"
|
|
49
49
|
},
|
|
50
|
-
"./
|
|
51
|
-
"types": "./
|
|
52
|
-
"default": "./fesm2022/type.
|
|
50
|
+
"./grid": {
|
|
51
|
+
"types": "./grid/index.d.ts",
|
|
52
|
+
"default": "./fesm2022/type.grid.mjs"
|
|
53
|
+
},
|
|
54
|
+
"./group": {
|
|
55
|
+
"types": "./group/index.d.ts",
|
|
56
|
+
"default": "./fesm2022/type.group.mjs"
|
|
53
57
|
},
|
|
54
58
|
"./html": {
|
|
55
59
|
"types": "./html/index.d.ts",
|
|
56
60
|
"default": "./fesm2022/type.html.mjs"
|
|
57
61
|
},
|
|
58
|
-
"./label": {
|
|
59
|
-
"types": "./label/index.d.ts",
|
|
60
|
-
"default": "./fesm2022/type.label.mjs"
|
|
61
|
-
},
|
|
62
62
|
"./icon": {
|
|
63
63
|
"types": "./icon/index.d.ts",
|
|
64
64
|
"default": "./fesm2022/type.icon.mjs"
|
|
65
65
|
},
|
|
66
|
-
"./
|
|
67
|
-
"types": "./
|
|
68
|
-
"default": "./fesm2022/type.
|
|
66
|
+
"./label": {
|
|
67
|
+
"types": "./label/index.d.ts",
|
|
68
|
+
"default": "./fesm2022/type.label.mjs"
|
|
69
69
|
},
|
|
70
70
|
"./line": {
|
|
71
71
|
"types": "./line/index.d.ts",
|
|
72
72
|
"default": "./fesm2022/type.line.mjs"
|
|
73
73
|
},
|
|
74
|
-
"./number": {
|
|
75
|
-
"types": "./number/index.d.ts",
|
|
76
|
-
"default": "./fesm2022/type.number.mjs"
|
|
77
|
-
},
|
|
78
74
|
"./list": {
|
|
79
75
|
"types": "./list/index.d.ts",
|
|
80
76
|
"default": "./fesm2022/type.list.mjs"
|
|
81
77
|
},
|
|
78
|
+
"./number": {
|
|
79
|
+
"types": "./number/index.d.ts",
|
|
80
|
+
"default": "./fesm2022/type.number.mjs"
|
|
81
|
+
},
|
|
82
82
|
"./overtime": {
|
|
83
83
|
"types": "./overtime/index.d.ts",
|
|
84
84
|
"default": "./fesm2022/type.overtime.mjs"
|
|
@@ -87,45 +87,45 @@
|
|
|
87
87
|
"types": "./panel/index.d.ts",
|
|
88
88
|
"default": "./fesm2022/type.panel.mjs"
|
|
89
89
|
},
|
|
90
|
+
"./reform": {
|
|
91
|
+
"types": "./reform/index.d.ts",
|
|
92
|
+
"default": "./fesm2022/type.reform.mjs"
|
|
93
|
+
},
|
|
90
94
|
"./radio": {
|
|
91
95
|
"types": "./radio/index.d.ts",
|
|
92
96
|
"default": "./fesm2022/type.radio.mjs"
|
|
93
97
|
},
|
|
98
|
+
"./repeat-card": {
|
|
99
|
+
"types": "./repeat-card/index.d.ts",
|
|
100
|
+
"default": "./fesm2022/type.repeat-card.mjs"
|
|
101
|
+
},
|
|
94
102
|
"./radiogroup": {
|
|
95
103
|
"types": "./radiogroup/index.d.ts",
|
|
96
104
|
"default": "./fesm2022/type.radiogroup.mjs"
|
|
97
105
|
},
|
|
98
|
-
"./reform": {
|
|
99
|
-
"types": "./reform/index.d.ts",
|
|
100
|
-
"default": "./fesm2022/type.reform.mjs"
|
|
101
|
-
},
|
|
102
|
-
"./repeat": {
|
|
103
|
-
"types": "./repeat/index.d.ts",
|
|
104
|
-
"default": "./fesm2022/type.repeat.mjs"
|
|
105
|
-
},
|
|
106
106
|
"./select": {
|
|
107
107
|
"types": "./select/index.d.ts",
|
|
108
108
|
"default": "./fesm2022/type.select.mjs"
|
|
109
109
|
},
|
|
110
|
-
"./repeat
|
|
111
|
-
"types": "./repeat
|
|
112
|
-
"default": "./fesm2022/type.repeat
|
|
110
|
+
"./repeat": {
|
|
111
|
+
"types": "./repeat/index.d.ts",
|
|
112
|
+
"default": "./fesm2022/type.repeat.mjs"
|
|
113
113
|
},
|
|
114
114
|
"./switch": {
|
|
115
115
|
"types": "./switch/index.d.ts",
|
|
116
116
|
"default": "./fesm2022/type.switch.mjs"
|
|
117
117
|
},
|
|
118
|
-
"./
|
|
119
|
-
"types": "./
|
|
120
|
-
"default": "./fesm2022/type.
|
|
118
|
+
"./tabs": {
|
|
119
|
+
"types": "./tabs/index.d.ts",
|
|
120
|
+
"default": "./fesm2022/type.tabs.mjs"
|
|
121
121
|
},
|
|
122
122
|
"./text": {
|
|
123
123
|
"types": "./text/index.d.ts",
|
|
124
124
|
"default": "./fesm2022/type.text.mjs"
|
|
125
125
|
},
|
|
126
|
-
"./
|
|
127
|
-
"types": "./
|
|
128
|
-
"default": "./fesm2022/type.
|
|
126
|
+
"./textarea": {
|
|
127
|
+
"types": "./textarea/index.d.ts",
|
|
128
|
+
"default": "./fesm2022/type.textarea.mjs"
|
|
129
129
|
},
|
|
130
130
|
"./textcode": {
|
|
131
131
|
"types": "./textcode/index.d.ts",
|