@syncfusion/ej2-inplace-editor 30.1.37 → 30.2.4

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.
Files changed (65) hide show
  1. package/.eslintrc.json +4 -29
  2. package/dist/ej2-inplace-editor.min.js +2 -2
  3. package/dist/ej2-inplace-editor.umd.min.js +1 -1
  4. package/dist/global/ej2-inplace-editor.min.js +1 -1
  5. package/dist/global/index.d.ts +1 -1
  6. package/package.json +23 -58
  7. package/styles/bootstrap-dark-lite.css +0 -4
  8. package/styles/bootstrap-dark.css +0 -4
  9. package/styles/bootstrap-lite.css +3 -63
  10. package/styles/bootstrap.css +3 -63
  11. package/styles/bootstrap4-lite.css +3 -87
  12. package/styles/bootstrap4.css +3 -87
  13. package/styles/fluent2-lite.css +2 -1
  14. package/styles/fluent2.css +2 -1
  15. package/styles/inplace-editor/bootstrap-dark.css +0 -4
  16. package/styles/inplace-editor/bootstrap.css +3 -63
  17. package/styles/inplace-editor/bootstrap4.css +3 -87
  18. package/styles/inplace-editor/fluent2.css +2 -1
  19. package/styles/inplace-editor/material.css +9 -0
  20. package/styles/inplace-editor/tailwind3.css +1 -0
  21. package/styles/material-lite.css +9 -0
  22. package/styles/material.css +9 -0
  23. package/styles/tailwind3-lite.css +1 -0
  24. package/styles/tailwind3.css +1 -0
  25. package/dist/ts/index.d.ts +0 -4
  26. package/dist/ts/index.ts +0 -4
  27. package/dist/ts/inplace-editor/base/classes.d.ts +0 -63
  28. package/dist/ts/inplace-editor/base/classes.ts +0 -63
  29. package/dist/ts/inplace-editor/base/events.d.ts +0 -17
  30. package/dist/ts/inplace-editor/base/events.ts +0 -18
  31. package/dist/ts/inplace-editor/base/index.d.ts +0 -10
  32. package/dist/ts/inplace-editor/base/index.ts +0 -10
  33. package/dist/ts/inplace-editor/base/inplace-editor-model.d.ts +0 -344
  34. package/dist/ts/inplace-editor/base/inplace-editor.d.ts +0 -623
  35. package/dist/ts/inplace-editor/base/inplace-editor.ts +0 -1762
  36. package/dist/ts/inplace-editor/base/interface.d.ts +0 -117
  37. package/dist/ts/inplace-editor/base/interface.ts +0 -127
  38. package/dist/ts/inplace-editor/base/models-model.d.ts +0 -22
  39. package/dist/ts/inplace-editor/base/models.d.ts +0 -31
  40. package/dist/ts/inplace-editor/base/models.ts +0 -45
  41. package/dist/ts/inplace-editor/base/util.d.ts +0 -28
  42. package/dist/ts/inplace-editor/base/util.ts +0 -104
  43. package/dist/ts/inplace-editor/index.d.ts +0 -5
  44. package/dist/ts/inplace-editor/index.ts +0 -5
  45. package/dist/ts/inplace-editor/modules/auto-complete.d.ts +0 -34
  46. package/dist/ts/inplace-editor/modules/auto-complete.ts +0 -65
  47. package/dist/ts/inplace-editor/modules/base-module.d.ts +0 -19
  48. package/dist/ts/inplace-editor/modules/base-module.ts +0 -74
  49. package/dist/ts/inplace-editor/modules/color-picker.d.ts +0 -29
  50. package/dist/ts/inplace-editor/modules/color-picker.ts +0 -55
  51. package/dist/ts/inplace-editor/modules/combo-box.d.ts +0 -34
  52. package/dist/ts/inplace-editor/modules/combo-box.ts +0 -63
  53. package/dist/ts/inplace-editor/modules/date-range-picker.d.ts +0 -29
  54. package/dist/ts/inplace-editor/modules/date-range-picker.ts +0 -55
  55. package/dist/ts/inplace-editor/modules/index.d.ts +0 -12
  56. package/dist/ts/inplace-editor/modules/index.ts +0 -12
  57. package/dist/ts/inplace-editor/modules/multi-select.d.ts +0 -35
  58. package/dist/ts/inplace-editor/modules/multi-select.ts +0 -88
  59. package/dist/ts/inplace-editor/modules/rte.d.ts +0 -31
  60. package/dist/ts/inplace-editor/modules/rte.ts +0 -73
  61. package/dist/ts/inplace-editor/modules/slider.d.ts +0 -30
  62. package/dist/ts/inplace-editor/modules/slider.ts +0 -59
  63. package/dist/ts/inplace-editor/modules/time-picker.d.ts +0 -29
  64. package/dist/ts/inplace-editor/modules/time-picker.ts +0 -54
  65. package/tslint.json +0 -111
@@ -1,54 +0,0 @@
1
- import { TimePicker as EJ2TimePicker, TimePickerModel } from '@syncfusion/ej2-calendars';
2
- import { Base } from './base-module';
3
- import { InPlaceEditor } from '../base/inplace-editor';
4
- import { NotifyParams, IComponent } from '../base/interface';
5
-
6
- /**
7
- * The `TimePicker` module is used configure the properties of Time picker type editor.
8
- */
9
- export class TimePicker implements IComponent {
10
- private base: Base;
11
- protected parent: InPlaceEditor;
12
- public compObj: EJ2TimePicker = undefined;
13
-
14
- public constructor(parent?: InPlaceEditor) {
15
- this.parent = parent;
16
- this.parent.timeModule = this;
17
- this.base = new Base(this.parent, this);
18
- }
19
-
20
- public render(e: NotifyParams): void {
21
- this.compObj = new EJ2TimePicker(this.parent.model as TimePickerModel);
22
- this.compObj.appendTo(e.target as HTMLInputElement);
23
- }
24
-
25
- public focus(): void {
26
- this.compObj.focusIn();
27
- }
28
-
29
- public updateValue(e: NotifyParams): void {
30
- if (this.compObj && e.type === 'Time') {
31
- this.parent.setProperties({ value: this.compObj.value }, true);
32
- this.parent.extendModelValue(this.compObj.value);
33
- }
34
- }
35
- /**
36
- * For internal use only - Get the module name.
37
- *
38
- * @returns {string} - returns the string
39
- */
40
- private getModuleName(): string {
41
- return 'time-picker';
42
- }
43
-
44
- /**
45
- * Destroys the module.
46
- *
47
- * @function destroy
48
- * @returns {void}
49
- * @hidden
50
- */
51
- public destroy(): void {
52
- this.base.destroy();
53
- }
54
- }
package/tslint.json DELETED
@@ -1,111 +0,0 @@
1
- {
2
- "rules": {
3
- "chai-vague-errors": true,
4
- "use-isnan": true,
5
- "missing-jsdoc": true,
6
- "missing-optional-annotation": true,
7
- "no-backbone-get-set-outside-model": true,
8
- "no-banned-terms": true,
9
- "no-constant-condition": true,
10
- "no-control-regex": true,
11
- "no-cookies": true,
12
- "no-delete-expression": true,
13
- "no-document-write": true,
14
- "no-document-domain": true,
15
- "no-disable-auto-sanitization": true,
16
- "no-duplicate-case": true,
17
- "no-duplicate-parameter-names": true,
18
- "no-empty-interfaces": true,
19
- "no-exec-script": true,
20
- "no-function-constructor-with-string-args": true,
21
- "no-function-expression": true,
22
- "no-invalid-regexp": true,
23
- "no-for-in": true,
24
- "member-access": true,
25
- "no-multiline-string": true,
26
- "no-multiple-var-decl": true,
27
- "no-unnecessary-bind": true,
28
- "no-unnecessary-semicolons": true,
29
- "no-octal-literal": true,
30
- "no-regex-spaces": true,
31
- "no-sparse-arrays": true,
32
- "no-string-based-set-immediate": true,
33
- "no-string-based-set-interval": true,
34
- "no-unused-imports": true,
35
- "no-with-statement": true,
36
- "prefer-array-literal": true,
37
- "promise-must-complete": false,
38
- "react-no-dangerous-html": true,
39
- "use-named-parameter": true,
40
- "valid-typeof": true,
41
- "max-func-body-length": [true, 100, {
42
- "ignore-parameters-to-function-regex": "describe"
43
- }],
44
- "class-name": true,
45
- "curly": true,
46
- "eofline": false,
47
- "forin": true,
48
- "indent": [
49
- true,
50
- "spaces"
51
- ],
52
- "label-position": true,
53
- "max-line-length": [true, 140],
54
- "no-arg": true,
55
- "no-console": [true,
56
- "debug",
57
- "info",
58
- "log",
59
- "time",
60
- "timeEnd",
61
- "trace"
62
- ],
63
- "no-construct": true,
64
- "no-parameter-properties": true,
65
- "no-debugger": true,
66
- "no-duplicate-variable": true,
67
- "no-empty": true,
68
- "no-eval": true,
69
- "no-string-literal": true,
70
- "no-switch-case-fall-through": true,
71
- "trailing-comma": true,
72
- "no-trailing-whitespace": true,
73
- "no-unused-expression": true,
74
- "no-use-before-declare": false,
75
- "no-var-requires": true,
76
- "one-line": [true,
77
- "check-open-brace",
78
- "check-catch",
79
- "check-else",
80
- "check-whitespace"
81
- ],
82
- "no-any": true,
83
- "no-conditional-assignment": true,
84
- "no-angle-bracket-type-assertion": false,
85
- "align": [true, "parameters", "arguments", "statements"],
86
- "no-empty-line-after-opening-brace": false,
87
- "typedef-whitespace": [false],
88
- "ban": true,
89
- "quotemark": [true, "single"],
90
- "semicolon": true,
91
- "triple-equals": [true, "allow-null-check"],
92
- "typedef": [true,
93
- "call-signature",
94
- "parameter",
95
- "property-declaration",
96
- "variable-declaration",
97
- "arrow-parameter",
98
- "member-variable-declaration"],
99
- "variable-name": true,
100
- "whitespace": [true,
101
- "check-branch",
102
- "check-decl",
103
- "check-operator",
104
- "check-separator",
105
- "check-type"
106
- ],
107
- "jsdoc-format": true,
108
- "no-var-keyword": true,
109
- "radix": true
110
- }
111
- }