@syncfusion/ej2-angular-inplace-editor 20.2.43 → 20.2.45-ngcc
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/@syncfusion/ej2-angular-inplace-editor.es5.js +275 -0
- package/@syncfusion/ej2-angular-inplace-editor.es5.js.map +1 -0
- package/@syncfusion/ej2-angular-inplace-editor.js +256 -0
- package/@syncfusion/ej2-angular-inplace-editor.js.map +1 -0
- package/CHANGELOG.md +246 -0
- package/dist/ej2-angular-inplace-editor.umd.js +350 -0
- package/dist/ej2-angular-inplace-editor.umd.js.map +1 -0
- package/dist/ej2-angular-inplace-editor.umd.min.js +11 -0
- package/dist/ej2-angular-inplace-editor.umd.min.js.map +1 -0
- package/ej2-angular-inplace-editor.d.ts +5 -0
- package/ej2-angular-inplace-editor.metadata.json +1 -0
- package/package.json +15 -29
- package/postinstall/tagchange.js +18 -0
- package/schematics/collection.json +35 -0
- package/schematics/generators/inplaceeditor-inline/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-inline/index.js +8 -0
- package/schematics/generators/inplaceeditor-inline/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-inline/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-inline/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +5 -0
- package/schematics/generators/inplaceeditor-inline/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-inline/schema.js +2 -0
- package/schematics/generators/inplaceeditor-inline/schema.json +125 -0
- package/schematics/generators/inplaceeditor-popup/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-popup/index.js +8 -0
- package/schematics/generators/inplaceeditor-popup/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-popup/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-popup/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +5 -0
- package/schematics/generators/inplaceeditor-popup/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-popup/schema.js +2 -0
- package/schematics/generators/inplaceeditor-popup/schema.json +125 -0
- package/schematics/generators/inplaceeditor-popup-position/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-popup-position/index.js +8 -0
- package/schematics/generators/inplaceeditor-popup-position/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-popup-position/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-popup-position/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-popup-position/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +5 -0
- package/schematics/generators/inplaceeditor-popup-position/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-popup-position/schema.js +2 -0
- package/schematics/generators/inplaceeditor-popup-position/schema.json +125 -0
- package/schematics/generators/inplaceeditor-template/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-template/index.js +8 -0
- package/schematics/generators/inplaceeditor-template/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-template/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-template/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +8 -0
- package/schematics/generators/inplaceeditor-template/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-template/schema.js +2 -0
- package/schematics/generators/inplaceeditor-template/schema.json +125 -0
- package/schematics/generators/inplaceeditor-validation/index.d.ts +3 -0
- package/schematics/generators/inplaceeditor-validation/index.js +8 -0
- package/schematics/generators/inplaceeditor-validation/sample-details.d.ts +5 -0
- package/schematics/generators/inplaceeditor-validation/sample-details.js +7 -0
- package/schematics/generators/inplaceeditor-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +3 -0
- package/schematics/generators/inplaceeditor-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +5 -0
- package/schematics/generators/inplaceeditor-validation/schema.d.ts +3 -0
- package/schematics/generators/inplaceeditor-validation/schema.js +2 -0
- package/schematics/generators/inplaceeditor-validation/schema.json +125 -0
- package/schematics/ng-add/index.d.ts +3 -0
- package/schematics/ng-add/index.js +9 -0
- package/schematics/ng-add/schema.d.ts +13 -0
- package/schematics/ng-add/schema.js +2 -0
- package/schematics/ng-add/schema.json +34 -0
- package/schematics/tsconfig.json +25 -0
- package/schematics/utils/lib-details.d.ts +4 -0
- package/schematics/utils/lib-details.js +6 -0
- package/schematics/utils/lib-details.ts +2 -2
- package/src/inplace-editor/inplaceeditor-all.module.d.ts +0 -6
- package/src/inplace-editor/inplaceeditor.component.d.ts +0 -3
- package/src/inplace-editor/inplaceeditor.module.d.ts +0 -6
- package/styles/bootstrap-dark.css +0 -3
- package/styles/bootstrap.css +1 -3
- package/styles/bootstrap4.css +1 -3
- package/styles/bootstrap5-dark.css +1 -17
- package/styles/bootstrap5.css +1 -17
- package/styles/fabric-dark.css +0 -3
- package/styles/fabric.css +1 -3
- package/styles/fluent-dark.css +1 -4
- package/styles/fluent.css +1 -4
- package/styles/highcontrast-light.css +0 -6
- package/styles/highcontrast.css +1 -6
- package/styles/inplace-editor/bootstrap-dark.css +0 -3
- package/styles/inplace-editor/bootstrap-dark.scss +1 -26
- package/styles/inplace-editor/bootstrap.css +1 -3
- package/styles/inplace-editor/bootstrap.scss +1 -26
- package/styles/inplace-editor/bootstrap4.css +1 -3
- package/styles/inplace-editor/bootstrap4.scss +1 -26
- package/styles/inplace-editor/bootstrap5-dark.css +1 -17
- package/styles/inplace-editor/bootstrap5-dark.scss +1 -26
- package/styles/inplace-editor/bootstrap5.css +1 -17
- package/styles/inplace-editor/bootstrap5.scss +1 -26
- package/styles/inplace-editor/fabric-dark.css +0 -3
- package/styles/inplace-editor/fabric-dark.scss +1 -26
- package/styles/inplace-editor/fabric.css +1 -3
- package/styles/inplace-editor/fabric.scss +1 -26
- package/styles/inplace-editor/fluent-dark.css +1 -4
- package/styles/inplace-editor/fluent-dark.scss +1 -26
- package/styles/inplace-editor/fluent.css +1 -4
- package/styles/inplace-editor/fluent.scss +1 -26
- package/styles/inplace-editor/highcontrast-light.css +0 -6
- package/styles/inplace-editor/highcontrast-light.scss +1 -26
- package/styles/inplace-editor/highcontrast.css +1 -6
- package/styles/inplace-editor/highcontrast.scss +1 -26
- package/styles/inplace-editor/material-dark.css +0 -3
- package/styles/inplace-editor/material-dark.scss +1 -26
- package/styles/inplace-editor/material.css +1 -3
- package/styles/inplace-editor/material.scss +1 -26
- package/styles/inplace-editor/tailwind-dark.css +1 -4
- package/styles/inplace-editor/tailwind-dark.scss +1 -26
- package/styles/inplace-editor/tailwind.css +1 -4
- package/styles/inplace-editor/tailwind.scss +1 -26
- package/styles/material-dark.css +0 -3
- package/styles/material.css +1 -3
- package/styles/tailwind-dark.css +1 -4
- package/styles/tailwind.css +1 -4
- package/esm2020/public_api.mjs +0 -3
- package/esm2020/src/index.mjs +0 -5
- package/esm2020/src/inplace-editor/inplaceeditor-all.module.mjs +0 -50
- package/esm2020/src/inplace-editor/inplaceeditor.component.mjs +0 -146
- package/esm2020/src/inplace-editor/inplaceeditor.module.mjs +0 -25
- package/esm2020/syncfusion-ej2-angular-inplace-editor.mjs +0 -5
- package/fesm2015/syncfusion-ej2-angular-inplace-editor.mjs +0 -221
- package/fesm2015/syncfusion-ej2-angular-inplace-editor.mjs.map +0 -1
- package/fesm2020/syncfusion-ej2-angular-inplace-editor.mjs +0 -221
- package/fesm2020/syncfusion-ej2-angular-inplace-editor.mjs.map +0 -1
- package/styles/inplace-editor/_all.scss +0 -2
- package/styles/inplace-editor/_bootstrap-dark-definition.scss +0 -75
- package/styles/inplace-editor/_bootstrap-definition.scss +0 -76
- package/styles/inplace-editor/_bootstrap4-definition.scss +0 -76
- package/styles/inplace-editor/_bootstrap5-dark-definition.scss +0 -1
- package/styles/inplace-editor/_bootstrap5-definition.scss +0 -71
- package/styles/inplace-editor/_fabric-dark-definition.scss +0 -75
- package/styles/inplace-editor/_fabric-definition.scss +0 -76
- package/styles/inplace-editor/_fluent-dark-definition.scss +0 -1
- package/styles/inplace-editor/_fluent-definition.scss +0 -72
- package/styles/inplace-editor/_fusionnew-definition.scss +0 -71
- package/styles/inplace-editor/_highcontrast-definition.scss +0 -75
- package/styles/inplace-editor/_highcontrast-light-definition.scss +0 -75
- package/styles/inplace-editor/_layout.scss +0 -658
- package/styles/inplace-editor/_material-dark-definition.scss +0 -76
- package/styles/inplace-editor/_material-definition.scss +0 -76
- package/styles/inplace-editor/_material3-definition.scss +0 -71
- package/styles/inplace-editor/_tailwind-dark-definition.scss +0 -1
- package/styles/inplace-editor/_tailwind-definition.scss +0 -72
- package/styles/inplace-editor/_theme.scss +0 -250
- package/styles/inplace-editor/icons/_bootstrap-dark.scss +0 -19
- package/styles/inplace-editor/icons/_bootstrap.scss +0 -19
- package/styles/inplace-editor/icons/_bootstrap4.scss +0 -19
- package/styles/inplace-editor/icons/_bootstrap5-dark.scss +0 -1
- package/styles/inplace-editor/icons/_bootstrap5.scss +0 -19
- package/styles/inplace-editor/icons/_fabric-dark.scss +0 -19
- package/styles/inplace-editor/icons/_fabric.scss +0 -19
- package/styles/inplace-editor/icons/_fluent-dark.scss +0 -1
- package/styles/inplace-editor/icons/_fluent.scss +0 -19
- package/styles/inplace-editor/icons/_fusionnew.scss +0 -19
- package/styles/inplace-editor/icons/_highcontrast-light.scss +0 -19
- package/styles/inplace-editor/icons/_highcontrast.scss +0 -19
- package/styles/inplace-editor/icons/_material-dark.scss +0 -19
- package/styles/inplace-editor/icons/_material.scss +0 -19
- package/styles/inplace-editor/icons/_material3.scss +0 -19
- package/styles/inplace-editor/icons/_tailwind-dark.scss +0 -1
- package/styles/inplace-editor/icons/_tailwind.scss +0 -19
- package/syncfusion-ej2-angular-inplace-editor.d.ts +0 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ej2-angular-inplace-editor.umd.min.js","sources":["~/@syncfusion/ej2-angular-inplace-editor/src/inplace-editor/inplaceeditor.component.ts","~/@syncfusion/ej2-angular-inplace-editor/src/inplace-editor/inplaceeditor.module.ts","~/@syncfusion/ej2-angular-inplace-editor/src/inplace-editor/inplaceeditor-all.module.ts"],"sourcesContent":["import { Component, ElementRef, ViewContainerRef, ValueProvider, Renderer2, Injector, ChangeDetectionStrategy, forwardRef, ContentChild } from '@angular/core';\nimport { NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { ComponentBase, IComponentBase, applyMixins, ComponentMixins, PropertyCollectionInfo, FormBase, setValue } from '@syncfusion/ej2-angular-base';\nimport { InPlaceEditor } from '@syncfusion/ej2-inplace-editor';\nimport { Template } from '@syncfusion/ej2-angular-base';\n\n\nexport const /** @type {?} */ inputs: string[] = ['actionOnBlur','adaptor','cancelButton','cssClass','disabled','editableOn','emptyText','enableEditMode','enableHtmlParse','enableHtmlSanitizer','enablePersistence','enableRtl','locale','mode','model','name','popupSettings','primaryKey','saveButton','showButtons','submitOnEnter','template','textOption','type','url','validationRules','value'];\nexport const /** @type {?} */ outputs: string[] = ['focus', 'blur', 'actionBegin','actionFailure','actionSuccess','beforeSanitizeHtml','beginEdit','cancelClick','change','created','destroyed','endEdit','submitClick','validating','valueChange'];\nexport const /** @type {?} */ twoWays: string[] = ['value'];\n/**\n * `ejs-inplaceeditor` represents the Angular InPlaceEditor Component.\n * ```html\n * <ejs-inplaceeditor></ejs-inplaceeditor>\n * ```\n */\n@ComponentMixins([ComponentBase, FormBase])\nexport class InPlaceEditorComponent extends InPlaceEditor implements IComponentBase {\npublic formCompContext : any;\npublic formContext : any;\npublic tagObjects: any;\n\tactionBegin: any;\n\tactionFailure: any;\n\tactionSuccess: any;\n\tbeforeSanitizeHtml: any;\n\tbeginEdit: any;\n\tcancelClick: any;\n\tchange: any;\n\tcreated: any;\n\tdestroyed: any;\n\tendEdit: any;\n\tsubmitClick: any;\n\tvalidating: any;\npublic valueChange: any;\n/**\n * Specifies the HTML element ID as a string that can be added as a editable field.\n * \n * {% codeBlock src='inplace-editor/template/index.md' %}{% endcodeBlock %}\n * \n * \\@default ''\n * \\@blazortype string\n */\n@Template()\n public template: any;\npublic focus: any;\npublic blur: any;\n/**\n * @param {?} ngEle\n * @param {?} srenderer\n * @param {?} viewContainerRef\n * @param {?} injector\n */\nconstructor(private ngEle: ElementRef,\nprivate srenderer: Renderer2,\nprivate viewContainerRef:ViewContainerRef,\nprivate injector: Injector) {\n super();\n this.element = this.ngEle.nativeElement;\n this.injectedModules = this.injectedModules || [];\n try {\n let mod = this.injector.get('InPlace-EditorAutoComplete');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('InPlace-EditorColorPicker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('InPlace-EditorComboBox');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('InPlace-EditorDateRangePicker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('InPlace-EditorMultiSelect');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('InPlace-EditorRte');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('InPlace-EditorSlider');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n try {\n let mod = this.injector.get('InPlace-EditorTimePicker');\n if(this.injectedModules.indexOf(mod) === -1) {\n this.injectedModules.push(mod)\n }\n } catch { }\n\n this.registerEvents(outputs);\n this.addTwoWay.call(this, twoWays);\n setValue('currentInstance', this, this.viewContainerRef);\n this.formContext = new FormBase();\n this.formCompContext = new ComponentBase();\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnChange(registerFunction: (_: any) => void): void {\n }\n/**\n * @param {?} registerFunction\n * @return {?}\n */\npublic registerOnTouched(registerFunction: () => void): void {\n }\n/**\n * @param {?} value\n * @return {?}\n */\npublic writeValue(value: any): void {\n }\n/**\n * @param {?} disabled\n * @return {?}\n */\npublic setDisabledState(disabled: boolean): void {\n }\n/**\n * @return {?}\n */\npublic ngOnInit() {\n this.formCompContext.ngOnInit(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterViewInit(): void {\n this.formContext.ngAfterViewInit(this);\n }\n/**\n * @return {?}\n */\npublic ngOnDestroy(): void {\n this.formCompContext.ngOnDestroy(this);\n }\n/**\n * @return {?}\n */\npublic ngAfterContentChecked(): void {\n \n this.formCompContext.ngAfterContentChecked(this);\n }\npublic registerEvents: (eventList: string[]) => void;\npublic addTwoWay: (propList: string[]) => void;\nstatic decorators: DecoratorInvocation[] = [\n{ type: Component, args: [{\n selector: 'ejs-inplaceeditor',\n inputs: inputs,\n outputs: outputs,\n template: '',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => InPlaceEditorComponent),\n multi: true\n }\n ],\n queries: {\n\n }\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n{type: ElementRef, },\n{type: Renderer2, },\n{type: ViewContainerRef, },\n{type: Injector, },\n];\nstatic propDecorators: {[key: string]: DecoratorInvocation[]} = {\n'template': [{ type: ContentChild, args: ['template', ] },],\n};\n}\n\nfunction InPlaceEditorComponent_tsickle_Closure_declarations() {\n/** @type {?} */\nInPlaceEditorComponent.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nInPlaceEditorComponent.ctorParameters;\n/** @type {?} */\nInPlaceEditorComponent.propDecorators;\n/** @type {?} */\nInPlaceEditorComponent.prototype.formCompContext;\n/** @type {?} */\nInPlaceEditorComponent.prototype.formContext;\n/** @type {?} */\nInPlaceEditorComponent.prototype.tagObjects;\n/** @type {?} */\nInPlaceEditorComponent.prototype.actionBegin;\n/** @type {?} */\nInPlaceEditorComponent.prototype.actionFailure;\n/** @type {?} */\nInPlaceEditorComponent.prototype.actionSuccess;\n/** @type {?} */\nInPlaceEditorComponent.prototype.beforeSanitizeHtml;\n/** @type {?} */\nInPlaceEditorComponent.prototype.beginEdit;\n/** @type {?} */\nInPlaceEditorComponent.prototype.cancelClick;\n/** @type {?} */\nInPlaceEditorComponent.prototype.change;\n/** @type {?} */\nInPlaceEditorComponent.prototype.created;\n/** @type {?} */\nInPlaceEditorComponent.prototype.destroyed;\n/** @type {?} */\nInPlaceEditorComponent.prototype.endEdit;\n/** @type {?} */\nInPlaceEditorComponent.prototype.submitClick;\n/** @type {?} */\nInPlaceEditorComponent.prototype.validating;\n/** @type {?} */\nInPlaceEditorComponent.prototype.valueChange;\n/**\n * Specifies the HTML element ID as a string that can be added as a editable field.\n * \n * {% codeBlock src='inplace-editor/template/index.md' %}{% endcodeBlock %}\n * \n * \\@default ''\n * \\@blazortype string\n * @type {?}\n */\nInPlaceEditorComponent.prototype.template;\n/** @type {?} */\nInPlaceEditorComponent.prototype.focus;\n/** @type {?} */\nInPlaceEditorComponent.prototype.blur;\n/** @type {?} */\nInPlaceEditorComponent.prototype.registerEvents;\n/** @type {?} */\nInPlaceEditorComponent.prototype.addTwoWay;\n/** @type {?} */\nInPlaceEditorComponent.prototype.ngEle;\n/** @type {?} */\nInPlaceEditorComponent.prototype.srenderer;\n/** @type {?} */\nInPlaceEditorComponent.prototype.viewContainerRef;\n/** @type {?} */\nInPlaceEditorComponent.prototype.injector;\n}\n\n\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { InPlaceEditorComponent } from './inplaceeditor.component';\n/**\n * NgModule definition for the InPlaceEditor component.\n */\nexport class InPlaceEditorModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule],\n declarations: [\n InPlaceEditorComponent\n ],\n exports: [\n InPlaceEditorComponent\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction InPlaceEditorModule_tsickle_Closure_declarations() {\n/** @type {?} */\nInPlaceEditorModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nInPlaceEditorModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n","import { NgModule, ValueProvider } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { InPlaceEditorComponent } from './inplaceeditor.component';\nimport { InPlaceEditorModule } from './inplaceeditor.module';\nimport {AutoComplete, ColorPicker, ComboBox, DateRangePicker, MultiSelect, Rte, Slider, TimePicker} from '@syncfusion/ej2-inplace-editor';\n\n\nexport const /** @type {?} */ AutoCompleteService: ValueProvider = { provide: 'InPlace-EditorAutoComplete', useValue: AutoComplete};\nexport const /** @type {?} */ ColorPickerService: ValueProvider = { provide: 'InPlace-EditorColorPicker', useValue: ColorPicker};\nexport const /** @type {?} */ ComboBoxService: ValueProvider = { provide: 'InPlace-EditorComboBox', useValue: ComboBox};\nexport const /** @type {?} */ DateRangePickerService: ValueProvider = { provide: 'InPlace-EditorDateRangePicker', useValue: DateRangePicker};\nexport const /** @type {?} */ MultiSelectService: ValueProvider = { provide: 'InPlace-EditorMultiSelect', useValue: MultiSelect};\nexport const /** @type {?} */ RteService: ValueProvider = { provide: 'InPlace-EditorRte', useValue: Rte};\nexport const /** @type {?} */ SliderService: ValueProvider = { provide: 'InPlace-EditorSlider', useValue: Slider};\nexport const /** @type {?} */ TimePickerService: ValueProvider = { provide: 'InPlace-EditorTimePicker', useValue: TimePicker};\n/**\n * NgModule definition for the InPlaceEditor component with providers.\n */\nexport class InPlaceEditorAllModule { static decorators: DecoratorInvocation[] = [\n{ type: NgModule, args: [{\n imports: [CommonModule, InPlaceEditorModule],\n exports: [\n InPlaceEditorModule\n ],\n providers:[\n AutoCompleteService,\n ColorPickerService,\n ComboBoxService,\n DateRangePickerService,\n MultiSelectService,\n RteService,\n SliderService,\n TimePickerService\n ]\n}, ] },\n];\n/**\n * @nocollapse\n */\nstatic ctorParameters: () => ({type: any, decorators?: DecoratorInvocation[]}|null)[] = () => [\n];\n}\n\nfunction InPlaceEditorAllModule_tsickle_Closure_declarations() {\n/** @type {?} */\nInPlaceEditorAllModule.decorators;\n/**\n * @nocollapse\n * @type {?}\n */\nInPlaceEditorAllModule.ctorParameters;\n}\n\ninterface DecoratorInvocation {\n type: Function;\n args?: any[];\n}\n"],"names":["inputs","outputs","twoWays","exports","InPlaceEditorComponent","InPlaceEditorComponent_1","_super","ngEle","srenderer","viewContainerRef","injector","_this","call","this","element","nativeElement","injectedModules","mod","get","indexOf","push","_a","_b","_c","_d","_e","_f","_g","_h","registerEvents","addTwoWay","setValue","formContext","FormBase","formCompContext","ComponentBase","__extends","prototype","registerOnChange","registerFunction","registerOnTouched","writeValue","value","setDisabledState","disabled","ngOnInit","ngAfterViewInit","ngOnDestroy","ngAfterContentChecked","InPlaceEditor","decorators","type","Component","args","selector","template","changeDetection","ChangeDetectionStrategy","OnPush","providers","provide","NG_VALUE_ACCESSOR","useExisting","forwardRef","multi","queries","ctorParameters","ElementRef","Renderer2","ViewContainerRef","Injector","propDecorators","ContentChild","__decorate","Template","ComponentMixins","__metadata","InPlaceEditorModule","NgModule","imports","CommonModule","declarations","AutoCompleteService","useValue","AutoComplete","ColorPickerService","ColorPicker","ComboBoxService","ComboBox","DateRangePickerService","DateRangePicker","MultiSelectService","MultiSelect","RteService","Rte","SliderService","Slider","TimePickerService","TimePicker","InPlaceEditorAllModule"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"__symbolic":"module","version":3,"exports":[{"from":"@syncfusion/ej2-inplace-editor"}],"metadata":{"ɵa":["actionOnBlur","adaptor","cancelButton","cssClass","disabled","editableOn","emptyText","enableEditMode","enableHtmlParse","enableHtmlSanitizer","enablePersistence","enableRtl","locale","mode","model","name","popupSettings","primaryKey","saveButton","showButtons","submitOnEnter","template","textOption","type","url","validationRules","value"],"ɵb":["focus","blur","actionBegin","actionFailure","actionSuccess","beforeSanitizeHtml","beginEdit","cancelClick","change","created","destroyed","endEdit","submitClick","validating","valueChange"],"InPlaceEditorComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"InPlaceEditor"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":"ejs-inplaceeditor","inputs":{"__symbolic":"reference","name":"ɵa"},"outputs":{"__symbolic":"reference","name":"ɵb"},"template":"","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy"},"member":"OnPush"},"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useExisting":{"__symbolic":"reference","name":"InPlaceEditorComponent"},"multi":true}],"queries":{}}]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentMixins"},"arguments":[[{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"ComponentBase"},{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"FormBase"}]]}],"members":{"template":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ContentChild"},"arguments":["template"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@syncfusion/ej2-angular-base","name":"Template"}}]}],"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Renderer2"},{"__symbolic":"reference","module":"@angular/core","name":"ViewContainerRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],"registerOnChange":[{"__symbolic":"method"}],"registerOnTouched":[{"__symbolic":"method"}],"writeValue":[{"__symbolic":"method"}],"setDisabledState":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"ngAfterContentChecked":[{"__symbolic":"method"}]}},"InPlaceEditorModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"InPlaceEditorComponent"}],"exports":[{"__symbolic":"reference","name":"InPlaceEditorComponent"}]}]}],"members":{}},"InPlaceEditorAllModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"},{"__symbolic":"reference","name":"InPlaceEditorModule"}],"exports":[{"__symbolic":"reference","name":"InPlaceEditorModule"}],"providers":[{"__symbolic":"reference","name":"AutoCompleteService"},{"__symbolic":"reference","name":"ColorPickerService"},{"__symbolic":"reference","name":"ComboBoxService"},{"__symbolic":"reference","name":"DateRangePickerService"},{"__symbolic":"reference","name":"MultiSelectService"},{"__symbolic":"reference","name":"RteService"},{"__symbolic":"reference","name":"SliderService"},{"__symbolic":"reference","name":"TimePickerService"}]}]}],"members":{}},"AutoCompleteService":{"provide":"InPlace-EditorAutoComplete","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"AutoComplete"}},"ColorPickerService":{"provide":"InPlace-EditorColorPicker","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"ColorPicker"}},"ComboBoxService":{"provide":"InPlace-EditorComboBox","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"ComboBox"}},"DateRangePickerService":{"provide":"InPlace-EditorDateRangePicker","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"DateRangePicker"}},"MultiSelectService":{"provide":"InPlace-EditorMultiSelect","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"MultiSelect"}},"RteService":{"provide":"InPlace-EditorRte","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"Rte"}},"SliderService":{"provide":"InPlace-EditorSlider","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"Slider"}},"TimePickerService":{"provide":"InPlace-EditorTimePicker","useValue":{"__symbolic":"reference","module":"@syncfusion/ej2-inplace-editor","name":"TimePicker"}}},"origins":{"ɵa":"./src/inplace-editor/inplaceeditor.component","ɵb":"./src/inplace-editor/inplaceeditor.component","InPlaceEditorComponent":"./src/inplace-editor/inplaceeditor.component","InPlaceEditorModule":"./src/inplace-editor/inplaceeditor.module","InPlaceEditorAllModule":"./src/inplace-editor/inplaceeditor-all.module","AutoCompleteService":"./src/inplace-editor/inplaceeditor-all.module","ColorPickerService":"./src/inplace-editor/inplaceeditor-all.module","ComboBoxService":"./src/inplace-editor/inplaceeditor-all.module","DateRangePickerService":"./src/inplace-editor/inplaceeditor-all.module","MultiSelectService":"./src/inplace-editor/inplaceeditor-all.module","RteService":"./src/inplace-editor/inplaceeditor-all.module","SliderService":"./src/inplace-editor/inplaceeditor-all.module","TimePickerService":"./src/inplace-editor/inplaceeditor-all.module"},"importAs":"@syncfusion/ej2-angular-inplace-editor"}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-inplace-editor@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-inplace-editor@20.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-inplace-editor@20.2.38",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-aGPlXXzcvEd4vY5iwugvvyBwn8IZ2vhDkh1THBWN2ScEtCAuOgAyz9PHCaJlsii1izDnXik8KZCE07RBr9olmA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-inplace-editor",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-inplace-editor/-/ej2-angular-inplace-editor-20.2.38.tgz",
|
|
23
|
+
"_shasum": "3f86ffae5ae190ed240169965c3f9a2a07aa3d3e",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-inplace-editor@*",
|
|
25
|
-
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/
|
|
25
|
+
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -31,30 +31,14 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~20.2.
|
|
35
|
-
"@syncfusion/ej2-base": "~20.2.
|
|
36
|
-
"@syncfusion/ej2-inplace-editor": "20.2.
|
|
37
|
-
"tslib": "^2.3.0"
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~20.2.45",
|
|
35
|
+
"@syncfusion/ej2-base": "~20.2.45",
|
|
36
|
+
"@syncfusion/ej2-inplace-editor": "20.2.45"
|
|
38
37
|
},
|
|
39
38
|
"deprecated": false,
|
|
40
39
|
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for Angular",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"exports": {
|
|
44
|
-
"./package.json": {
|
|
45
|
-
"default": "./package.json"
|
|
46
|
-
},
|
|
47
|
-
".": {
|
|
48
|
-
"types": "./syncfusion-ej2-angular-inplace-editor.d.ts",
|
|
49
|
-
"esm2020": "./esm2020/syncfusion-ej2-angular-inplace-editor.mjs",
|
|
50
|
-
"es2020": "./fesm2020/syncfusion-ej2-angular-inplace-editor.mjs",
|
|
51
|
-
"es2015": "./fesm2015/syncfusion-ej2-angular-inplace-editor.mjs",
|
|
52
|
-
"node": "./fesm2015/syncfusion-ej2-angular-inplace-editor.mjs",
|
|
53
|
-
"default": "./fesm2020/syncfusion-ej2-angular-inplace-editor.mjs"
|
|
54
|
-
}
|
|
55
|
-
},
|
|
56
|
-
"fesm2015": "fesm2015/syncfusion-ej2-angular-inplace-editor.mjs",
|
|
57
|
-
"fesm2020": "fesm2020/syncfusion-ej2-angular-inplace-editor.mjs",
|
|
40
|
+
"devDependencies": {},
|
|
41
|
+
"es2015": "@syncfusion/ej2-angular-inplace-editor.js",
|
|
58
42
|
"homepage": "https://github.com/syncfusion/ej2-angular-ui-components#readme",
|
|
59
43
|
"keywords": [
|
|
60
44
|
"ej2",
|
|
@@ -69,7 +53,9 @@
|
|
|
69
53
|
"ej2-angular-inplace-editor"
|
|
70
54
|
],
|
|
71
55
|
"license": "SEE LICENSE IN license",
|
|
72
|
-
"
|
|
56
|
+
"main": "dist/ej2-angular-inplace-editor.umd.js",
|
|
57
|
+
"metadata": "ej2-angular-inplace-editor.metadata.json",
|
|
58
|
+
"module": "@syncfusion/ej2-angular-inplace-editor.es5.js",
|
|
73
59
|
"name": "@syncfusion/ej2-angular-inplace-editor",
|
|
74
60
|
"repository": {
|
|
75
61
|
"type": "git",
|
|
@@ -77,6 +63,6 @@
|
|
|
77
63
|
},
|
|
78
64
|
"schematics": "./schematics/collection.json",
|
|
79
65
|
"sideEffects": false,
|
|
80
|
-
"typings": "
|
|
81
|
-
"version": "20.2.
|
|
66
|
+
"typings": "ej2-angular-inplace-editor.d.ts",
|
|
67
|
+
"version": "20.2.45-ngcc"
|
|
82
68
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
var fs = require("fs");
|
|
2
|
+
var glob = require("glob");
|
|
3
|
+
|
|
4
|
+
var selectors = ['ejs-inplaceeditor'];
|
|
5
|
+
|
|
6
|
+
if (process.env.tagName !== undefined) {
|
|
7
|
+
var newTagPrefix = process.env.tagName.trim();
|
|
8
|
+
var files = glob.sync("./@syncfusion/*");
|
|
9
|
+
for (var i = 0; i < files.length; i++) {
|
|
10
|
+
var sourceFile = fs.readFileSync(files[i], "utf8");
|
|
11
|
+
for (var j = 0; j < selectors.length; j++) {
|
|
12
|
+
selectors[j] = selectors[j].replace('[','').replace(']','');
|
|
13
|
+
var tagRegex = new RegExp(selectors[j], "g");
|
|
14
|
+
sourceFile = sourceFile.replace(tagRegex,selectors[j].replace("ejs", newTagPrefix));
|
|
15
|
+
}
|
|
16
|
+
fs.writeFileSync(files[i], sourceFile, "utf8");
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/@angular-devkit/schematics/collection-schema.json",
|
|
3
|
+
"schematics": {
|
|
4
|
+
"ng-add": {
|
|
5
|
+
"description": "Adds Essential JS 2 specific Angular package to an application",
|
|
6
|
+
"factory": "./ng-add",
|
|
7
|
+
"schema": "./ng-add/schema.json"
|
|
8
|
+
},
|
|
9
|
+
"inplaceeditor-inline": {
|
|
10
|
+
"description": "Create an Angular In-place Editor component with inline mode",
|
|
11
|
+
"factory": "./generators/inplaceeditor-inline",
|
|
12
|
+
"schema": "./generators/inplaceeditor-inline/schema.json"
|
|
13
|
+
},
|
|
14
|
+
"inplaceeditor-popup-position": {
|
|
15
|
+
"description": "Create an Angular In-place Editor component with customizing a popup position",
|
|
16
|
+
"factory": "./generators/inplaceeditor-popup-position",
|
|
17
|
+
"schema": "./generators/inplaceeditor-popup-position/schema.json"
|
|
18
|
+
},
|
|
19
|
+
"inplaceeditor-popup": {
|
|
20
|
+
"description": "Create an Angular In-place Editor component with popup mode",
|
|
21
|
+
"factory": "./generators/inplaceeditor-popup",
|
|
22
|
+
"schema": "./generators/inplaceeditor-popup/schema.json"
|
|
23
|
+
},
|
|
24
|
+
"inplaceeditor-template": {
|
|
25
|
+
"description": "Create an Angular In-place Editor component with a template",
|
|
26
|
+
"factory": "./generators/inplaceeditor-template",
|
|
27
|
+
"schema": "./generators/inplaceeditor-template/schema.json"
|
|
28
|
+
},
|
|
29
|
+
"inplaceeditor-validation": {
|
|
30
|
+
"description": "Create an Angular In-place Editor component with validation",
|
|
31
|
+
"factory": "./generators/inplaceeditor-validation",
|
|
32
|
+
"schema": "./generators/inplaceeditor-validation/schema.json"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const schematics_1 = require("@syncfusion/ej2-angular-base/schematics");
|
|
4
|
+
const sampleDetails = require("./sample-details");
|
|
5
|
+
function default_1(options) {
|
|
6
|
+
return schematics_1.componentBuilder(options, sampleDetails);
|
|
7
|
+
}
|
|
8
|
+
exports.default = default_1;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.componentName = 'inplaceeditor';
|
|
4
|
+
exports.sampleName = 'inline';
|
|
5
|
+
exports.diModules = null;
|
|
6
|
+
exports.packageName = '@syncfusion/ej2-angular-inplace-editor';
|
|
7
|
+
exports.libModules = 'InPlaceEditorModule';
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "EJ2SchemaTemplateID",
|
|
4
|
+
"title": "inplaceeditor-inline",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"path": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"format": "path",
|
|
10
|
+
"description": "The path to create the component.",
|
|
11
|
+
"visible": false
|
|
12
|
+
},
|
|
13
|
+
"project": {
|
|
14
|
+
"type": "string",
|
|
15
|
+
"description": "The name of the project.",
|
|
16
|
+
"$default": {
|
|
17
|
+
"$source": "projectName"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"name": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"description": "The name of the component.",
|
|
23
|
+
"$default": {
|
|
24
|
+
"$source": "argv",
|
|
25
|
+
"index": 0
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"inlineStyle": {
|
|
29
|
+
"description": "Specifies if the style will be in the ts file.",
|
|
30
|
+
"type": "boolean",
|
|
31
|
+
"default": false,
|
|
32
|
+
"alias": "s"
|
|
33
|
+
},
|
|
34
|
+
"inlineTemplate": {
|
|
35
|
+
"description": "Specifies if the template will be in the ts file.",
|
|
36
|
+
"type": "boolean",
|
|
37
|
+
"default": false,
|
|
38
|
+
"alias": "t"
|
|
39
|
+
},
|
|
40
|
+
"viewEncapsulation": {
|
|
41
|
+
"description": "Specifies the view encapsulation strategy.",
|
|
42
|
+
"enum": [
|
|
43
|
+
"Emulated",
|
|
44
|
+
"Native",
|
|
45
|
+
"None",
|
|
46
|
+
"ShadowDom"
|
|
47
|
+
],
|
|
48
|
+
"type": "string",
|
|
49
|
+
"alias": "v"
|
|
50
|
+
},
|
|
51
|
+
"changeDetection": {
|
|
52
|
+
"description": "Specifies the change detection strategy.",
|
|
53
|
+
"enum": [
|
|
54
|
+
"Default",
|
|
55
|
+
"OnPush"
|
|
56
|
+
],
|
|
57
|
+
"type": "string",
|
|
58
|
+
"default": "Default",
|
|
59
|
+
"alias": "c"
|
|
60
|
+
},
|
|
61
|
+
"prefix": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"description": "The prefix to apply to generated selectors.",
|
|
64
|
+
"alias": "p",
|
|
65
|
+
"oneOf": [
|
|
66
|
+
{
|
|
67
|
+
"maxLength": 0
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"minLength": 1,
|
|
71
|
+
"format": "html-selector"
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"styleext": {
|
|
76
|
+
"description": "The file extension to be used for style files.",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"default": "css"
|
|
79
|
+
},
|
|
80
|
+
"spec": {
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"description": "Specifies if a spec file is generated.",
|
|
83
|
+
"default": true
|
|
84
|
+
},
|
|
85
|
+
"flat": {
|
|
86
|
+
"type": "boolean",
|
|
87
|
+
"description": "Flag to indicate if a dir is created.",
|
|
88
|
+
"default": false
|
|
89
|
+
},
|
|
90
|
+
"skipImport": {
|
|
91
|
+
"type": "boolean",
|
|
92
|
+
"description": "Flag to skip the module import.",
|
|
93
|
+
"default": false
|
|
94
|
+
},
|
|
95
|
+
"selector": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"format": "html-selector",
|
|
98
|
+
"description": "The selector to use for the component."
|
|
99
|
+
},
|
|
100
|
+
"module": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"description": "Allows specification of the declaring module.",
|
|
103
|
+
"alias": "m"
|
|
104
|
+
},
|
|
105
|
+
"export": {
|
|
106
|
+
"type": "boolean",
|
|
107
|
+
"default": false,
|
|
108
|
+
"description": "Specifies if declaring module exports the component."
|
|
109
|
+
},
|
|
110
|
+
"entryComponent": {
|
|
111
|
+
"type": "boolean",
|
|
112
|
+
"default": false,
|
|
113
|
+
"description": "Specifies if the component is an entry component of declaring module."
|
|
114
|
+
},
|
|
115
|
+
"lintFix": {
|
|
116
|
+
"type": "boolean",
|
|
117
|
+
"default": false,
|
|
118
|
+
"description": "Specifies whether to apply lint fixes after generating the component."
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"required": [
|
|
122
|
+
"name"
|
|
123
|
+
],
|
|
124
|
+
"id": "inplaceeditor-inline"
|
|
125
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const schematics_1 = require("@syncfusion/ej2-angular-base/schematics");
|
|
4
|
+
const sampleDetails = require("./sample-details");
|
|
5
|
+
function default_1(options) {
|
|
6
|
+
return schematics_1.componentBuilder(options, sampleDetails);
|
|
7
|
+
}
|
|
8
|
+
exports.default = default_1;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.componentName = 'inplaceeditor';
|
|
4
|
+
exports.sampleName = 'popup';
|
|
5
|
+
exports.diModules = null;
|
|
6
|
+
exports.packageName = '@syncfusion/ej2-angular-inplace-editor';
|
|
7
|
+
exports.libModules = 'InPlaceEditorModule';
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "EJ2SchemaTemplateID",
|
|
4
|
+
"title": "inplaceeditor-popup",
|
|
5
|
+
"type": "object",
|
|
6
|
+
"properties": {
|
|
7
|
+
"path": {
|
|
8
|
+
"type": "string",
|
|
9
|
+
"format": "path",
|
|
10
|
+
"description": "The path to create the component.",
|
|
11
|
+
"visible": false
|
|
12
|
+
},
|
|
13
|
+
"project": {
|
|
14
|
+
"type": "string",
|
|
15
|
+
"description": "The name of the project.",
|
|
16
|
+
"$default": {
|
|
17
|
+
"$source": "projectName"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"name": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"description": "The name of the component.",
|
|
23
|
+
"$default": {
|
|
24
|
+
"$source": "argv",
|
|
25
|
+
"index": 0
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"inlineStyle": {
|
|
29
|
+
"description": "Specifies if the style will be in the ts file.",
|
|
30
|
+
"type": "boolean",
|
|
31
|
+
"default": false,
|
|
32
|
+
"alias": "s"
|
|
33
|
+
},
|
|
34
|
+
"inlineTemplate": {
|
|
35
|
+
"description": "Specifies if the template will be in the ts file.",
|
|
36
|
+
"type": "boolean",
|
|
37
|
+
"default": false,
|
|
38
|
+
"alias": "t"
|
|
39
|
+
},
|
|
40
|
+
"viewEncapsulation": {
|
|
41
|
+
"description": "Specifies the view encapsulation strategy.",
|
|
42
|
+
"enum": [
|
|
43
|
+
"Emulated",
|
|
44
|
+
"Native",
|
|
45
|
+
"None",
|
|
46
|
+
"ShadowDom"
|
|
47
|
+
],
|
|
48
|
+
"type": "string",
|
|
49
|
+
"alias": "v"
|
|
50
|
+
},
|
|
51
|
+
"changeDetection": {
|
|
52
|
+
"description": "Specifies the change detection strategy.",
|
|
53
|
+
"enum": [
|
|
54
|
+
"Default",
|
|
55
|
+
"OnPush"
|
|
56
|
+
],
|
|
57
|
+
"type": "string",
|
|
58
|
+
"default": "Default",
|
|
59
|
+
"alias": "c"
|
|
60
|
+
},
|
|
61
|
+
"prefix": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"description": "The prefix to apply to generated selectors.",
|
|
64
|
+
"alias": "p",
|
|
65
|
+
"oneOf": [
|
|
66
|
+
{
|
|
67
|
+
"maxLength": 0
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"minLength": 1,
|
|
71
|
+
"format": "html-selector"
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"styleext": {
|
|
76
|
+
"description": "The file extension to be used for style files.",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"default": "css"
|
|
79
|
+
},
|
|
80
|
+
"spec": {
|
|
81
|
+
"type": "boolean",
|
|
82
|
+
"description": "Specifies if a spec file is generated.",
|
|
83
|
+
"default": true
|
|
84
|
+
},
|
|
85
|
+
"flat": {
|
|
86
|
+
"type": "boolean",
|
|
87
|
+
"description": "Flag to indicate if a dir is created.",
|
|
88
|
+
"default": false
|
|
89
|
+
},
|
|
90
|
+
"skipImport": {
|
|
91
|
+
"type": "boolean",
|
|
92
|
+
"description": "Flag to skip the module import.",
|
|
93
|
+
"default": false
|
|
94
|
+
},
|
|
95
|
+
"selector": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"format": "html-selector",
|
|
98
|
+
"description": "The selector to use for the component."
|
|
99
|
+
},
|
|
100
|
+
"module": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"description": "Allows specification of the declaring module.",
|
|
103
|
+
"alias": "m"
|
|
104
|
+
},
|
|
105
|
+
"export": {
|
|
106
|
+
"type": "boolean",
|
|
107
|
+
"default": false,
|
|
108
|
+
"description": "Specifies if declaring module exports the component."
|
|
109
|
+
},
|
|
110
|
+
"entryComponent": {
|
|
111
|
+
"type": "boolean",
|
|
112
|
+
"default": false,
|
|
113
|
+
"description": "Specifies if the component is an entry component of declaring module."
|
|
114
|
+
},
|
|
115
|
+
"lintFix": {
|
|
116
|
+
"type": "boolean",
|
|
117
|
+
"default": false,
|
|
118
|
+
"description": "Specifies whether to apply lint fixes after generating the component."
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"required": [
|
|
122
|
+
"name"
|
|
123
|
+
],
|
|
124
|
+
"id": "inplaceeditor-popup"
|
|
125
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const schematics_1 = require("@syncfusion/ej2-angular-base/schematics");
|
|
4
|
+
const sampleDetails = require("./sample-details");
|
|
5
|
+
function default_1(options) {
|
|
6
|
+
return schematics_1.componentBuilder(options, sampleDetails);
|
|
7
|
+
}
|
|
8
|
+
exports.default = default_1;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.componentName = 'inplaceeditor';
|
|
4
|
+
exports.sampleName = 'popup-position';
|
|
5
|
+
exports.diModules = null;
|
|
6
|
+
exports.packageName = '@syncfusion/ej2-angular-inplace-editor';
|
|
7
|
+
exports.libModules = 'InPlaceEditorModule';
|