@acorex/components 3.0.65 → 3.0.66
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/acorex-components.d.ts +2 -0
- package/acorex-components.metadata.json +1 -1
- package/bundles/acorex-components.umd.js +57 -1
- package/bundles/acorex-components.umd.js.map +1 -1
- package/bundles/acorex-components.umd.min.js +1 -1
- package/bundles/acorex-components.umd.min.js.map +1 -1
- package/esm2015/acorex-components.js +3 -1
- package/esm2015/lib/property-editor/editors/textarea-editor/textarea.editor.js +35 -0
- package/esm2015/lib/property-editor/editors/textarea-editor/textarea.module.js +23 -0
- package/esm2015/lib/property-editor/property-editor.module.js +9 -2
- package/esm2015/lib/toolbar/menu/toolbar-menu.component.js +2 -2
- package/esm5/acorex-components.js +3 -1
- package/esm5/lib/property-editor/editors/textarea-editor/textarea.editor.js +38 -0
- package/esm5/lib/property-editor/editors/textarea-editor/textarea.module.js +24 -0
- package/esm5/lib/property-editor/property-editor.module.js +9 -2
- package/esm5/lib/toolbar/menu/toolbar-menu.component.js +2 -2
- package/fesm2015/acorex-components.js +52 -2
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +56 -2
- package/fesm5/acorex-components.js.map +1 -1
- package/lib/property-editor/editors/textarea-editor/textarea.editor.d.ts +14 -0
- package/lib/property-editor/editors/textarea-editor/textarea.module.d.ts +3 -0
- package/package.json +1 -1
package/acorex-components.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ export { AXNumberBoxPropertyEditorComponent as ɵg } from './lib/property-editor
|
|
|
11
11
|
export { AXNumberBoxPropertyEditorModule as ɵf } from './lib/property-editor/editors/number-editor/number.module';
|
|
12
12
|
export { AXSwitchPropertyEditorComponent as ɵk } from './lib/property-editor/editors/switch-editor/number.editor';
|
|
13
13
|
export { AXSwitchPropertyEditorModule as ɵj } from './lib/property-editor/editors/switch-editor/number.module';
|
|
14
|
+
export { AXTextareaPropertyEditorComponent as ɵq } from './lib/property-editor/editors/textarea-editor/textarea.editor';
|
|
15
|
+
export { AXTextareaPropertyEditorModule as ɵp } from './lib/property-editor/editors/textarea-editor/textarea.module';
|
|
14
16
|
export { AXTimePropertyEditorComponent as ɵo } from './lib/property-editor/editors/time-editor/time.editor';
|
|
15
17
|
export { AXTimePropertyEditorModule as ɵn } from './lib/property-editor/editors/time-editor/time.module';
|
|
16
18
|
export { AXQueryBuilderGroupComponent as ɵc } from './lib/query-builder/query-builder-group.component';
|