@syncfusion/ej2-inplace-editor 19.3.45 → 19.4.38
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +41 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +27 -0
- package/CHANGELOG.md +6 -0
- package/dist/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +6 -4
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +6 -4
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/inplace-editor/base/classes.ts +63 -0
- package/dist/ts/inplace-editor/base/events.ts +18 -0
- package/dist/ts/inplace-editor/base/inplace-editor.ts +1750 -0
- package/dist/ts/inplace-editor/base/interface.ts +129 -0
- package/dist/ts/inplace-editor/base/models.ts +49 -0
- package/dist/ts/inplace-editor/base/util.ts +106 -0
- package/dist/ts/inplace-editor/modules/auto-complete.ts +65 -0
- package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
- package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/multi-select.ts +88 -0
- package/dist/ts/inplace-editor/modules/rte.ts +72 -0
- package/dist/ts/inplace-editor/modules/slider.ts +59 -0
- package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
- package/package.json +16 -16
- package/src/inplace-editor/base/inplace-editor.d.ts +1 -0
- package/src/inplace-editor/base/inplace-editor.js +6 -4
- package/styles/bootstrap-dark.css +5 -0
- package/styles/bootstrap.css +5 -0
- package/styles/bootstrap4.css +10 -0
- package/styles/bootstrap5-dark.css +10 -4
- package/styles/bootstrap5.css +10 -4
- package/styles/fabric-dark.css +5 -0
- package/styles/fabric.css +5 -0
- package/styles/highcontrast-light.css +5 -0
- package/styles/highcontrast.css +5 -0
- package/styles/inplace-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap4-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap5-definition.scss +1 -0
- package/styles/inplace-editor/_fabric-dark-definition.scss +1 -0
- package/styles/inplace-editor/_fabric-definition.scss +1 -0
- package/styles/inplace-editor/_fluent-definition.scss +69 -0
- package/styles/inplace-editor/_highcontrast-definition.scss +1 -0
- package/styles/inplace-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/inplace-editor/_layout.scss +3 -4
- package/styles/inplace-editor/_material-dark-definition.scss +1 -0
- package/styles/inplace-editor/_material-definition.scss +1 -0
- package/styles/inplace-editor/_tailwind-definition.scss +1 -0
- package/styles/inplace-editor/_theme.scss +4 -1
- package/styles/inplace-editor/bootstrap-dark.css +5 -0
- package/styles/inplace-editor/bootstrap.css +5 -0
- package/styles/inplace-editor/bootstrap4.css +10 -0
- package/styles/inplace-editor/bootstrap5-dark.css +10 -4
- package/styles/inplace-editor/bootstrap5.css +10 -4
- package/styles/inplace-editor/fabric-dark.css +5 -0
- package/styles/inplace-editor/fabric.css +5 -0
- package/styles/inplace-editor/highcontrast-light.css +5 -0
- package/styles/inplace-editor/highcontrast.css +5 -0
- package/styles/inplace-editor/icons/_fluent.scss +19 -0
- package/styles/inplace-editor/material-dark.css +5 -0
- package/styles/inplace-editor/material.css +5 -0
- package/styles/inplace-editor/tailwind-dark.css +5 -4
- package/styles/inplace-editor/tailwind.css +5 -4
- package/styles/material-dark.css +5 -0
- package/styles/material.css +5 -0
- package/styles/tailwind-dark.css +5 -4
- package/styles/tailwind.css +5 -4
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 19.
|
|
3
|
+
* version : 19.4.38
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* In-place Editor classes defined here.
|
|
3
|
+
*/
|
|
4
|
+
/** @hidden */
|
|
5
|
+
export const ROOT: string = 'e-inplaceeditor';
|
|
6
|
+
/** @hidden */
|
|
7
|
+
export const ROOT_TIP: string = 'e-inplaceeditor-tip';
|
|
8
|
+
/** @hidden */
|
|
9
|
+
export const VALUE_WRAPPER: string = 'e-editable-value-wrapper';
|
|
10
|
+
/** @hidden */
|
|
11
|
+
export const VALUE: string = 'e-editable-value';
|
|
12
|
+
/** @hidden */
|
|
13
|
+
export const OVERLAY_ICON: string = 'e-editable-overlay-icon';
|
|
14
|
+
/** @hidden */
|
|
15
|
+
export const TIP_TITLE: string = 'e-editable-tip-title';
|
|
16
|
+
/** @hidden */
|
|
17
|
+
export const TITLE: string = 'e-editable-title';
|
|
18
|
+
/** @hidden */
|
|
19
|
+
export const INLINE: string = 'e-editable-inline';
|
|
20
|
+
/** @hidden */
|
|
21
|
+
export const POPUP: string = 'e-editable-popup';
|
|
22
|
+
/** @hidden */
|
|
23
|
+
export const WRAPPER: string = 'e-editable-wrapper';
|
|
24
|
+
/** @hidden */
|
|
25
|
+
export const LOADING: string = 'e-editable-loading';
|
|
26
|
+
/** @hidden */
|
|
27
|
+
export const FORM: string = 'e-editable-form';
|
|
28
|
+
/** @hidden */
|
|
29
|
+
export const CTRL_GROUP: string = 'e-component-group';
|
|
30
|
+
/** @hidden */
|
|
31
|
+
export const INPUT: string = 'e-editable-component';
|
|
32
|
+
/** @hidden */
|
|
33
|
+
export const BUTTONS: string = 'e-editable-action-buttons';
|
|
34
|
+
/** @hidden */
|
|
35
|
+
export const EDITABLE_ERROR: string = 'e-editable-error';
|
|
36
|
+
/** @hidden */
|
|
37
|
+
export const ELEMENTS: string = 'e-editable-elements';
|
|
38
|
+
/** @hidden */
|
|
39
|
+
export const OPEN: string = 'e-editable-open';
|
|
40
|
+
/** @hidden */
|
|
41
|
+
export const BTN_SAVE: string = 'e-btn-save';
|
|
42
|
+
/** @hidden */
|
|
43
|
+
export const BTN_CANCEL: string = 'e-btn-cancel';
|
|
44
|
+
/** @hidden */
|
|
45
|
+
export const RTE_SPIN_WRAP: string = 'e-rte-spin-wrap';
|
|
46
|
+
/** @hidden */
|
|
47
|
+
export const CTRL_OVERLAY: string = 'e-control-overlay';
|
|
48
|
+
/** @hidden */
|
|
49
|
+
export const DISABLE: string = 'e-disable';
|
|
50
|
+
/** @hidden */
|
|
51
|
+
export const ICONS: string = 'e-icons';
|
|
52
|
+
/** @hidden */
|
|
53
|
+
export const PRIMARY: string = 'e-primary';
|
|
54
|
+
/** @hidden */
|
|
55
|
+
export const SHOW: string = 'e-show';
|
|
56
|
+
/** @hidden */
|
|
57
|
+
export const HIDE: string = 'e-hide';
|
|
58
|
+
/** @hidden */
|
|
59
|
+
export const RTL: string = 'e-rtl';
|
|
60
|
+
/** @hidden */
|
|
61
|
+
export const ERROR: string = 'e-error';
|
|
62
|
+
/** @hidden */
|
|
63
|
+
export const LOAD: string = 'e-loading';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* In-place Editor events defined here.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/** @hidden */
|
|
6
|
+
export const render: string = 'render';
|
|
7
|
+
/** @hidden */
|
|
8
|
+
export const update: string = 'update';
|
|
9
|
+
/** @hidden */
|
|
10
|
+
export const destroy: string = 'destroy';
|
|
11
|
+
/** @hidden */
|
|
12
|
+
export const setFocus: string = 'set-focus';
|
|
13
|
+
/** @hidden */
|
|
14
|
+
export const accessValue: string = 'access-value';
|
|
15
|
+
/** @hidden */
|
|
16
|
+
export const destroyModules: string = 'destroy-modules';
|
|
17
|
+
/** @hidden */
|
|
18
|
+
export const showPopup: string = 'show-popup';
|