@syncfusion/ej2-inplace-editor 20.2.45 → 20.3.56

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 (63) hide show
  1. package/.eslintrc.json +1 -9
  2. package/dist/ej2-inplace-editor.min.js +10 -0
  3. package/dist/ej2-inplace-editor.umd.min.js +2 -2
  4. package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-inplace-editor.es2015.js +6 -10
  6. package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-inplace-editor.es5.js +5 -8
  8. package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
  9. package/dist/global/ej2-inplace-editor.min.js +2 -2
  10. package/dist/global/ej2-inplace-editor.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +18 -18
  13. package/src/inplace-editor/base/inplace-editor-model.d.ts +7 -7
  14. package/src/inplace-editor/base/inplace-editor.js +3 -2
  15. package/src/inplace-editor/base/interface.d.ts +0 -1
  16. package/src/inplace-editor/base/models-model.d.ts +0 -2
  17. package/src/inplace-editor/base/models.d.ts +1 -3
  18. package/src/inplace-editor/base/util.d.ts +0 -1
  19. package/src/inplace-editor/base/util.js +2 -3
  20. package/src/inplace-editor/modules/combo-box.d.ts +0 -2
  21. package/src/inplace-editor/modules/combo-box.js +0 -2
  22. package/src/inplace-editor/modules/date-range-picker.d.ts +0 -1
  23. package/src/inplace-editor/modules/date-range-picker.js +0 -1
  24. package/styles/bootstrap-dark.css +3 -0
  25. package/styles/bootstrap.css +3 -1
  26. package/styles/bootstrap4.css +4 -2
  27. package/styles/bootstrap5-dark.css +17 -1
  28. package/styles/bootstrap5.css +17 -1
  29. package/styles/fabric-dark.css +3 -0
  30. package/styles/fabric.css +3 -1
  31. package/styles/fluent-dark.css +4 -1
  32. package/styles/fluent.css +4 -1
  33. package/styles/highcontrast-light.css +6 -0
  34. package/styles/highcontrast.css +6 -1
  35. package/styles/inplace-editor/_all.scss +1 -1
  36. package/styles/inplace-editor/_bootstrap5-definition.scss +3 -0
  37. package/styles/inplace-editor/_fluent-definition.scss +3 -0
  38. package/styles/inplace-editor/_fusionnew-definition.scss +3 -0
  39. package/styles/inplace-editor/_layout.scss +12 -13
  40. package/styles/inplace-editor/_material-definition.scss +1 -1
  41. package/styles/inplace-editor/_material3-definition.scss +3 -0
  42. package/styles/inplace-editor/_tailwind-definition.scss +3 -0
  43. package/styles/inplace-editor/_theme.scss +3 -3
  44. package/styles/inplace-editor/bootstrap-dark.css +3 -0
  45. package/styles/inplace-editor/bootstrap.css +3 -1
  46. package/styles/inplace-editor/bootstrap4.css +4 -2
  47. package/styles/inplace-editor/bootstrap5-dark.css +17 -1
  48. package/styles/inplace-editor/bootstrap5.css +17 -1
  49. package/styles/inplace-editor/fabric-dark.css +3 -0
  50. package/styles/inplace-editor/fabric.css +3 -1
  51. package/styles/inplace-editor/fluent-dark.css +4 -1
  52. package/styles/inplace-editor/fluent.css +4 -1
  53. package/styles/inplace-editor/highcontrast-light.css +6 -0
  54. package/styles/inplace-editor/highcontrast.css +6 -1
  55. package/styles/inplace-editor/material-dark.css +3 -0
  56. package/styles/inplace-editor/material.css +3 -1
  57. package/styles/inplace-editor/tailwind-dark.css +4 -1
  58. package/styles/inplace-editor/tailwind.css +4 -1
  59. package/styles/material-dark.css +3 -0
  60. package/styles/material.css +3 -1
  61. package/styles/tailwind-dark.css +4 -1
  62. package/styles/tailwind.css +4 -1
  63. package/tslint.json +0 -111
@@ -1,4 +1,5 @@
1
- @include export-module('inplaceeditor-layout') {
1
+ @include export-module('inplaceeditor-layout') {
2
+
2
3
  /*! inplaceeditor layout */
3
4
 
4
5
  .e-bigger .e-inplaceeditor,
@@ -327,7 +328,7 @@
327
328
  .e-inplaceeditor-tip.e-bigger {
328
329
  width: auto;
329
330
 
330
- .e-input-group+.e-editable-loading {
331
+ .e-input-group + .e-editable-loading {
331
332
 
332
333
  @if $inplace-skin == 'material' {
333
334
  .e-spinner-inner {
@@ -354,7 +355,7 @@
354
355
  .e-inplaceeditor,
355
356
  .e-inplaceeditor-tip {
356
357
 
357
- .e-input-group+.e-editable-loading {
358
+ .e-input-group + .e-editable-loading {
358
359
 
359
360
  @if $inplace-skin == 'material' {
360
361
  .e-spinner-inner {
@@ -363,14 +364,14 @@
363
364
  }
364
365
  }
365
366
 
366
- .e-editable-elements:not(.e-richtexteditor)+.e-editable-loading {
367
+ .e-editable-elements:not(.e-richtexteditor) + .e-editable-loading {
367
368
 
368
369
  .e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 .e-path-circle {
369
370
  stroke-width: inherit;
370
371
  }
371
372
  }
372
373
 
373
- .e-input-group+.e-editable-loading {
374
+ .e-input-group + .e-editable-loading {
374
375
 
375
376
  @if $inplace-skin == 'material' {
376
377
  .e-spinner-inner {
@@ -379,7 +380,7 @@
379
380
  }
380
381
  }
381
382
 
382
- .e-editable-elements:not(.e-richtexteditor)+.e-editable-loading {
383
+ .e-editable-elements:not(.e-richtexteditor) + .e-editable-loading {
383
384
 
384
385
  .e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 .e-path-circle {
385
386
  stroke-width: inherit;
@@ -496,11 +497,11 @@
496
497
  padding: $editor-big-tip-wrapper-padding;
497
498
  }
498
499
 
499
- .e-editable-title+.e-editable-wrapper {
500
+ .e-editable-title + .e-editable-wrapper {
500
501
  padding: $editor-big-wrapper-title-with-padding;
501
502
  }
502
503
 
503
- .e-editable-title+.e-editable-container {
504
+ .e-editable-title + .e-editable-container {
504
505
  padding: $editor-big-wrapper-title-with-padding;
505
506
  }
506
507
  }
@@ -577,11 +578,11 @@
577
578
  }
578
579
  }
579
580
 
580
- .e-editable-title+.e-editable-wrapper {
581
+ .e-editable-title + .e-editable-wrapper {
581
582
  padding: $editor-nrml-wrapper-title-with-padding;
582
583
  }
583
584
 
584
- .e-editable-title+.e-editable-container {
585
+ .e-editable-title + .e-editable-container {
585
586
  padding: $editor-nrml-wrapper-title-with-padding;
586
587
  }
587
588
  }
@@ -612,7 +613,6 @@
612
613
  float: left;
613
614
  }
614
615
  }
615
-
616
616
  }
617
617
  }
618
618
  }
@@ -651,8 +651,7 @@
651
651
  font-size: $editor-big-tip-title-font-size;
652
652
  }
653
653
 
654
- .e-bigger .e-inplaceeditor .e-editable-action-buttons .e-btn-icon.e-icons
655
- .e-bigger.e-inplaceeditor .e-editable-action-buttons .e-btn-icon.e-icons {
654
+ .e-bigger .e-inplaceeditor .e-editable-action-buttons .e-btn-icon.e-icons .e-bigger.e-inplaceeditor .e-editable-action-buttons .e-btn-icon.e-icons {
656
655
  font-size: 22px;
657
656
  }
658
657
  }
@@ -73,4 +73,4 @@ $editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
73
73
  $editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
74
74
  $editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
75
75
  $editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
76
- $editor-btn-icon-color: rgba($grey-light-font , .54) !default;
76
+ $editor-btn-icon-color: rgba($grey-light-font, .54) !default;
@@ -1,4 +1,5 @@
1
1
  $inplace-skin: 'bootstrap5' !default;
2
+
2
3
  //Layout Variable Start
3
4
  $editor-big-value-text-font-size: $text-base !default;
4
5
  $editor-nrml-value-text-font-size: $text-sm !default;
@@ -43,6 +44,7 @@ $editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
43
44
  $editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
44
45
  $editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
45
46
  $editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
47
+
46
48
  //Layout Variable End
47
49
 
48
50
  //Theme Variable Start
@@ -65,4 +67,5 @@ $editor-tip-title-color: $content-text-color !default;
65
67
  $editable-overlay-icon-height: inherit !default;
66
68
  $editable-overlay-icon: 0 !default;
67
69
  $editor-btn-icon-color: $icon-color !default;
70
+
68
71
  //Theme Variable End
@@ -1,4 +1,5 @@
1
1
  $inplace-skin: 'tailwind' !default;
2
+
2
3
  //Layout Variable Start
3
4
  $editor-big-value-text-font-size: $text-base !default;
4
5
  $editor-nrml-value-text-font-size: $text-sm !default;
@@ -43,6 +44,7 @@ $editor-rtl-big-btn-save-margin: 0 0 0 4px !default;
43
44
  $editor-rtl-nrml-btn-save-margin: 0 0 0 4px !default;
44
45
  $editor-rtl-big-btn-cancel-margin: 0 4px 0 0 !default;
45
46
  $editor-rtl-nrml-btn-cancel-margin: 0 4px 0 0 !default;
47
+
46
48
  //Layout Variable End
47
49
 
48
50
  //Theme Variable Start
@@ -66,4 +68,5 @@ $editor-tip-title-color: $content-text-color-alt2 !default;
66
68
  $editable-overlay-icon-height: inherit !default;
67
69
  $editable-overlay-icon: 0 !default;
68
70
  $editor-btn-icon-color: $icon-color !default;
71
+
69
72
  //Theme Variable End
@@ -1,4 +1,5 @@
1
- @include export-module('inplaceeditor-theme') {
1
+ @include export-module('inplaceeditor-theme') {
2
+
2
3
  /*! inplaceeditor theme */
3
4
 
4
5
  .e-inplaceeditor {
@@ -144,7 +145,6 @@
144
145
  }
145
146
  }
146
147
 
147
-
148
148
  @if $inplace-skin == 'bootstrap4' {
149
149
 
150
150
  &:focus {
@@ -167,7 +167,7 @@
167
167
 
168
168
  .e-btn-icon.e-icons {
169
169
 
170
- @if $inplace-skin == 'bootstrap4' {
170
+ @if $inplace-skin == 'bootstrap4' or $inplace-skin =='bootstrap5' {
171
171
  color: $white;
172
172
  }
173
173
  }
@@ -1,3 +1,5 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */
1
3
  .e-popup.e-ddl {
2
4
  border-radius: 4px;
3
5
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
@@ -131,6 +133,7 @@
131
133
  width: 40px;
132
134
  }
133
135
 
136
+ /* stylelint-disable property-no-vendor-prefix */
134
137
  @keyframes material-spinner-rotate {
135
138
  0% {
136
139
  transform: rotate(0);
@@ -1,4 +1,5 @@
1
- /*! calendar bootstrap theme variables */
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap theme variables */
2
3
  .e-popup.e-ddl {
3
4
  border-radius: 4px;
4
5
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
@@ -130,6 +131,7 @@
130
131
  width: 40px;
131
132
  }
132
133
 
134
+ /* stylelint-disable property-no-vendor-prefix */
133
135
  @keyframes material-spinner-rotate {
134
136
  0% {
135
137
  transform: rotate(0);
@@ -1,4 +1,5 @@
1
- /*! calendar bootstrap theme variables */
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap theme variables */
2
3
  .e-input-group.e-ddl .e-control.e-autocomplete ~ .e-ddl-icon {
3
4
  font-size: 8px;
4
5
  }
@@ -176,7 +177,7 @@
176
177
 
177
178
  .e-bigger .e-multi-select-wrapper .e-chips-close {
178
179
  height: 30px;
179
- width: 30px;
180
+ width: auto;
180
181
  }
181
182
 
182
183
  .e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus.e-hover {
@@ -226,6 +227,7 @@
226
227
  margin-top: -3.5em;
227
228
  }
228
229
 
230
+ /* stylelint-disable property-no-vendor-prefix */
229
231
  @keyframes material-spinner-rotate {
230
232
  0% {
231
233
  transform: rotate(0);
@@ -1,4 +1,5 @@
1
- /*! calendar bootstrap5 theme variables */
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap5 theme variables */
2
3
  .e-popup.e-ddl {
3
4
  border-radius: 4px;
4
5
  box-shadow: none;
@@ -180,6 +181,8 @@
180
181
  border-left-width: 0;
181
182
  }
182
183
 
184
+ /* stylelint-disable-line no-empty-source */
185
+ /* stylelint-disable property-no-vendor-prefix */
183
186
  @keyframes material-spinner-rotate {
184
187
  0% {
185
188
  transform: rotate(0);
@@ -774,6 +777,19 @@
774
777
  background-color: #5a6268;
775
778
  border: 1px solid #545b62;
776
779
  }
780
+ .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:focus .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
781
+ .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover .e-btn-icon.e-icons,
782
+ .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:focus .e-btn-icon.e-icons,
783
+ .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active .e-btn-icon.e-icons,
784
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons,
785
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:focus .e-btn-icon.e-icons,
786
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
787
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover .e-btn-icon.e-icons,
788
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:focus .e-btn-icon.e-icons,
789
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active .e-btn-icon.e-icons {
790
+ color: #fff;
791
+ }
792
+
777
793
  .e-inplaceeditor .e-editable-value-wrapper {
778
794
  background-color: transparent;
779
795
  border-radius: 4px;
@@ -1,4 +1,5 @@
1
- /*! calendar bootstrap5 theme variables */
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap5 theme variables */
2
3
  .e-popup.e-ddl {
3
4
  border-radius: 4px;
4
5
  box-shadow: none;
@@ -180,6 +181,8 @@
180
181
  border-left-width: 0;
181
182
  }
182
183
 
184
+ /* stylelint-disable-line no-empty-source */
185
+ /* stylelint-disable property-no-vendor-prefix */
183
186
  @keyframes material-spinner-rotate {
184
187
  0% {
185
188
  transform: rotate(0);
@@ -774,6 +777,19 @@
774
777
  background-color: #5a6268;
775
778
  border: 1px solid #545b62;
776
779
  }
780
+ .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:focus .e-btn-icon.e-icons, .e-inplaceeditor .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
781
+ .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover .e-btn-icon.e-icons,
782
+ .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:focus .e-btn-icon.e-icons,
783
+ .e-inplaceeditor .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active .e-btn-icon.e-icons,
784
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:hover .e-btn-icon.e-icons,
785
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:focus .e-btn-icon.e-icons,
786
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-save.e-icon-btn:active .e-btn-icon.e-icons,
787
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:hover .e-btn-icon.e-icons,
788
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:focus .e-btn-icon.e-icons,
789
+ .e-inplaceeditor-tip .e-editable-action-buttons .e-btn-cancel.e-icon-btn:active .e-btn-icon.e-icons {
790
+ color: #fff;
791
+ }
792
+
777
793
  .e-inplaceeditor .e-editable-value-wrapper {
778
794
  background-color: transparent;
779
795
  border-radius: 4px;
@@ -1,3 +1,5 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */
1
3
  .e-ddl.e-popup {
2
4
  border: 0;
3
5
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.26);
@@ -98,6 +100,7 @@
98
100
  margin: 2px 2px 2px 0;
99
101
  }
100
102
 
103
+ /* stylelint-disable property-no-vendor-prefix */
101
104
  @keyframes material-spinner-rotate {
102
105
  0% {
103
106
  transform: rotate(0);
@@ -1,4 +1,5 @@
1
- /*! calendar fabric theme variables */
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */ /*! calendar fabric theme variables */
2
3
  .e-ddl.e-popup {
3
4
  border: 0;
4
5
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
@@ -92,6 +93,7 @@
92
93
  margin: 2px 2px 2px 0;
93
94
  }
94
95
 
96
+ /* stylelint-disable property-no-vendor-prefix */
95
97
  @keyframes material-spinner-rotate {
96
98
  0% {
97
99
  transform: rotate(0);
@@ -1,4 +1,5 @@
1
- /*! calendar bootstrap5 theme variables */
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap5 theme variables */
2
3
  .e-popup.e-ddl {
3
4
  border-radius: 4px;
4
5
  box-shadow: none;
@@ -160,6 +161,8 @@
160
161
  border-left-width: 0;
161
162
  }
162
163
 
164
+ /* stylelint-disable-line no-empty-source */
165
+ /* stylelint-disable property-no-vendor-prefix */
163
166
  @keyframes material-spinner-rotate {
164
167
  0% {
165
168
  transform: rotate(0);
@@ -1,4 +1,5 @@
1
- /*! calendar bootstrap5 theme variables */
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */ /*! calendar bootstrap5 theme variables */
2
3
  .e-popup.e-ddl {
3
4
  border-radius: 4px;
4
5
  box-shadow: none;
@@ -160,6 +161,8 @@
160
161
  border-left-width: 0;
161
162
  }
162
163
 
164
+ /* stylelint-disable-line no-empty-source */
165
+ /* stylelint-disable property-no-vendor-prefix */
163
166
  @keyframes material-spinner-rotate {
164
167
  0% {
165
168
  transform: rotate(0);
@@ -1,3 +1,5 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */
1
3
  .e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
2
4
  height: 36px;
3
5
  }
@@ -80,6 +82,9 @@
80
82
  color: #000;
81
83
  top: 12px;
82
84
  }
85
+ .e-multiselect .e-multi-select-wrapper input {
86
+ /* stylelint-disable property-no-vendor-prefix */
87
+ }
83
88
  .e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
84
89
  color: #4f4f4f;
85
90
  font-family: inherit;
@@ -172,6 +177,7 @@
172
177
  width: 30px;
173
178
  }
174
179
 
180
+ /* stylelint-disable property-no-vendor-prefix */
175
181
  @keyframes material-spinner-rotate {
176
182
  0% {
177
183
  transform: rotate(0);
@@ -1,4 +1,5 @@
1
- /*! calendar fabric theme variables */
1
+ /* stylelint-disable property-no-vendor-prefix */
2
+ /* stylelint-disable-line no-empty-source */ /*! calendar fabric theme variables */
2
3
  .e-bigger .e-ddl.e-popup .e-input-group .e-clear-icon {
3
4
  height: 36px;
4
5
  }
@@ -81,6 +82,9 @@
81
82
  color: #fff;
82
83
  top: 12px;
83
84
  }
85
+ .e-multiselect .e-multi-select-wrapper input {
86
+ /* stylelint-disable property-no-vendor-prefix */
87
+ }
84
88
  .e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
85
89
  color: #969696;
86
90
  font-family: inherit;
@@ -175,6 +179,7 @@
175
179
  width: 30px;
176
180
  }
177
181
 
182
+ /* stylelint-disable property-no-vendor-prefix */
178
183
  @keyframes material-spinner-rotate {
179
184
  0% {
180
185
  transform: rotate(0);
@@ -1,10 +1,12 @@
1
1
  @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
2
+ /* stylelint-disable property-no-vendor-prefix */
2
3
  @keyframes e-input-ripple {
3
4
  100% {
4
5
  opacity: 0;
5
6
  transform: scale(4);
6
7
  }
7
8
  }
9
+ /* stylelint-disable-line no-empty-source */
8
10
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
9
11
  transform: rotate(0deg);
10
12
  transition: transform 300ms ease;
@@ -111,6 +113,7 @@
111
113
  padding: 5px 5px 5px 12px;
112
114
  }
113
115
 
116
+ /* stylelint-disable property-no-vendor-prefix */
114
117
  @keyframes material-spinner-rotate {
115
118
  0% {
116
119
  transform: rotate(0deg);
@@ -1,4 +1,5 @@
1
1
  @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
2
+ /* stylelint-disable property-no-vendor-prefix */
2
3
  @keyframes e-input-ripple {
3
4
  100% {
4
5
  opacity: 0;
@@ -13,7 +14,7 @@
13
14
  transform: translate3d(0, 0, 0) scale(1);
14
15
  }
15
16
  }
16
- /*! calendar material theme variables */
17
+ /* stylelint-disable-line no-empty-source */ /*! calendar material theme variables */
17
18
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
18
19
  transform: rotate(0deg);
19
20
  transition: transform 300ms ease;
@@ -145,6 +146,7 @@
145
146
  padding: 4px 8px;
146
147
  }
147
148
 
149
+ /* stylelint-disable property-no-vendor-prefix */
148
150
  @keyframes material-spinner-rotate {
149
151
  0% {
150
152
  transform: rotate(0deg);
@@ -1,5 +1,6 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
2
- /*! calendar tailwind theme variables */
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ /* stylelint-disable-line no-empty-source */ /*! calendar tailwind theme variables */
3
4
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
4
5
  transform: rotate(0deg);
5
6
  transition: transform 300ms ease;
@@ -125,6 +126,8 @@
125
126
  height: 100%;
126
127
  }
127
128
 
129
+ /* stylelint-disable-line no-empty-source */
130
+ /* stylelint-disable property-no-vendor-prefix */
128
131
  @keyframes material-spinner-rotate {
129
132
  0% {
130
133
  transform: rotate(0);
@@ -1,5 +1,6 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
2
- /*! calendar tailwind theme variables */
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ /* stylelint-disable-line no-empty-source */ /*! calendar tailwind theme variables */
3
4
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
4
5
  transform: rotate(0deg);
5
6
  transition: transform 300ms ease;
@@ -125,6 +126,8 @@
125
126
  height: 100%;
126
127
  }
127
128
 
129
+ /* stylelint-disable-line no-empty-source */
130
+ /* stylelint-disable property-no-vendor-prefix */
128
131
  @keyframes material-spinner-rotate {
129
132
  0% {
130
133
  transform: rotate(0);
@@ -1,10 +1,12 @@
1
1
  @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
2
+ /* stylelint-disable property-no-vendor-prefix */
2
3
  @keyframes e-input-ripple {
3
4
  100% {
4
5
  opacity: 0;
5
6
  transform: scale(4);
6
7
  }
7
8
  }
9
+ /* stylelint-disable-line no-empty-source */
8
10
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
9
11
  transform: rotate(0deg);
10
12
  transition: transform 300ms ease;
@@ -111,6 +113,7 @@
111
113
  padding: 5px 5px 5px 12px;
112
114
  }
113
115
 
116
+ /* stylelint-disable property-no-vendor-prefix */
114
117
  @keyframes material-spinner-rotate {
115
118
  0% {
116
119
  transform: rotate(0deg);
@@ -1,4 +1,5 @@
1
1
  @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
2
+ /* stylelint-disable property-no-vendor-prefix */
2
3
  @keyframes e-input-ripple {
3
4
  100% {
4
5
  opacity: 0;
@@ -13,7 +14,7 @@
13
14
  transform: translate3d(0, 0, 0) scale(1);
14
15
  }
15
16
  }
16
- /*! calendar material theme variables */
17
+ /* stylelint-disable-line no-empty-source */ /*! calendar material theme variables */
17
18
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
18
19
  transform: rotate(0deg);
19
20
  transition: transform 300ms ease;
@@ -145,6 +146,7 @@
145
146
  padding: 4px 8px;
146
147
  }
147
148
 
149
+ /* stylelint-disable property-no-vendor-prefix */
148
150
  @keyframes material-spinner-rotate {
149
151
  0% {
150
152
  transform: rotate(0deg);
@@ -1,5 +1,6 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
2
- /*! calendar tailwind theme variables */
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ /* stylelint-disable-line no-empty-source */ /*! calendar tailwind theme variables */
3
4
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
4
5
  transform: rotate(0deg);
5
6
  transition: transform 300ms ease;
@@ -125,6 +126,8 @@
125
126
  height: 100%;
126
127
  }
127
128
 
129
+ /* stylelint-disable-line no-empty-source */
130
+ /* stylelint-disable property-no-vendor-prefix */
128
131
  @keyframes material-spinner-rotate {
129
132
  0% {
130
133
  transform: rotate(0);
@@ -1,5 +1,6 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
2
- /*! calendar tailwind theme variables */
2
+ /* stylelint-disable property-no-vendor-prefix */
3
+ /* stylelint-disable-line no-empty-source */ /*! calendar tailwind theme variables */
3
4
  .e-ddl.e-control-wrapper .e-ddl-icon::before {
4
5
  transform: rotate(0deg);
5
6
  transition: transform 300ms ease;
@@ -125,6 +126,8 @@
125
126
  height: 100%;
126
127
  }
127
128
 
129
+ /* stylelint-disable-line no-empty-source */
130
+ /* stylelint-disable property-no-vendor-prefix */
128
131
  @keyframes material-spinner-rotate {
129
132
  0% {
130
133
  transform: rotate(0);
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
- }