@syncfusion/ej2-angular-inputs 20.4.38 → 20.4.39

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 (279) hide show
  1. package/README.md +1 -1
  2. package/esm2020/src/index.mjs +4 -1
  3. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  4. package/esm2020/src/rating/rating.component.mjs +108 -0
  5. package/esm2020/src/rating/rating.module.mjs +25 -0
  6. package/esm2020/src/uploader/uploader.component.mjs +3 -3
  7. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +195 -55
  8. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -1
  9. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +195 -55
  10. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -1
  11. package/package.json +1 -1
  12. package/schematics/utils/lib-details.ts +3 -3
  13. package/src/index.d.ts +3 -0
  14. package/src/rating/rating-all.module.d.ts +11 -0
  15. package/src/rating/rating.component.d.ts +66 -0
  16. package/src/rating/rating.module.d.ts +11 -0
  17. package/src/uploader/uploader.component.d.ts +1 -1
  18. package/styles/bootstrap-dark.css +265 -0
  19. package/styles/bootstrap-dark.scss +1 -0
  20. package/styles/bootstrap.css +265 -0
  21. package/styles/bootstrap.scss +1 -0
  22. package/styles/bootstrap4.css +268 -2
  23. package/styles/bootstrap4.scss +1 -0
  24. package/styles/bootstrap5-dark.css +266 -0
  25. package/styles/bootstrap5-dark.scss +1 -0
  26. package/styles/bootstrap5.css +266 -0
  27. package/styles/bootstrap5.scss +1 -0
  28. package/styles/color-picker/_theme.scss +2 -2
  29. package/styles/color-picker/bootstrap4.css +2 -2
  30. package/styles/fabric-dark.css +265 -0
  31. package/styles/fabric-dark.scss +1 -0
  32. package/styles/fabric.css +265 -0
  33. package/styles/fabric.scss +1 -0
  34. package/styles/fluent-dark.css +265 -0
  35. package/styles/fluent-dark.scss +1 -0
  36. package/styles/fluent.css +265 -0
  37. package/styles/fluent.scss +1 -0
  38. package/styles/highcontrast-light.css +265 -0
  39. package/styles/highcontrast-light.scss +1 -0
  40. package/styles/highcontrast.css +265 -0
  41. package/styles/highcontrast.scss +1 -0
  42. package/styles/material-dark.css +265 -0
  43. package/styles/material-dark.scss +1 -0
  44. package/styles/material.css +265 -0
  45. package/styles/material.scss +1 -0
  46. package/styles/rating/_all.scss +2 -0
  47. package/styles/rating/_bootstrap-dark-definition.scss +45 -0
  48. package/styles/rating/_bootstrap-definition.scss +45 -0
  49. package/styles/rating/_bootstrap4-definition.scss +45 -0
  50. package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
  51. package/styles/rating/_bootstrap5-definition.scss +45 -0
  52. package/styles/rating/_fabric-dark-definition.scss +45 -0
  53. package/styles/rating/_fabric-definition.scss +45 -0
  54. package/styles/rating/_fluent-dark-definition.scss +1 -0
  55. package/styles/rating/_fluent-definition.scss +45 -0
  56. package/styles/rating/_fusionnew-definition.scss +45 -0
  57. package/styles/rating/_highcontrast-definition.scss +45 -0
  58. package/styles/rating/_highcontrast-light-definition.scss +45 -0
  59. package/styles/rating/_layout.scss +204 -0
  60. package/styles/rating/_material-dark-definition.scss +45 -0
  61. package/styles/rating/_material-definition.scss +45 -0
  62. package/styles/rating/_material3-definition.scss +45 -0
  63. package/styles/rating/_tailwind-dark-definition.scss +1 -0
  64. package/styles/rating/_tailwind-definition.scss +45 -0
  65. package/styles/rating/_theme.scss +158 -0
  66. package/styles/rating/bootstrap-dark.css +264 -0
  67. package/styles/rating/bootstrap-dark.scss +4 -0
  68. package/styles/rating/bootstrap.css +264 -0
  69. package/styles/rating/bootstrap.scss +4 -0
  70. package/styles/rating/bootstrap4.css +265 -0
  71. package/styles/rating/bootstrap4.scss +4 -0
  72. package/styles/rating/bootstrap5-dark.css +265 -0
  73. package/styles/rating/bootstrap5-dark.scss +4 -0
  74. package/styles/rating/bootstrap5.css +265 -0
  75. package/styles/rating/bootstrap5.scss +4 -0
  76. package/styles/rating/fabric-dark.css +264 -0
  77. package/styles/rating/fabric-dark.scss +4 -0
  78. package/styles/rating/fabric.css +264 -0
  79. package/styles/rating/fabric.scss +4 -0
  80. package/styles/rating/fluent-dark.css +264 -0
  81. package/styles/rating/fluent-dark.scss +4 -0
  82. package/styles/rating/fluent.css +264 -0
  83. package/styles/rating/fluent.scss +4 -0
  84. package/styles/rating/highcontrast-light.css +264 -0
  85. package/styles/rating/highcontrast-light.scss +4 -0
  86. package/styles/rating/highcontrast.css +264 -0
  87. package/styles/rating/highcontrast.scss +4 -0
  88. package/styles/rating/material-dark.css +265 -0
  89. package/styles/rating/material-dark.scss +4 -0
  90. package/styles/rating/material.css +265 -0
  91. package/styles/rating/material.scss +4 -0
  92. package/styles/rating/tailwind-dark.css +270 -0
  93. package/styles/rating/tailwind-dark.scss +4 -0
  94. package/styles/rating/tailwind.css +270 -0
  95. package/styles/rating/tailwind.scss +4 -0
  96. package/styles/tailwind-dark.css +271 -0
  97. package/styles/tailwind-dark.scss +1 -0
  98. package/styles/tailwind.css +271 -0
  99. package/styles/tailwind.scss +1 -0
  100. package/schematics/collection.json +0 -105
  101. package/schematics/generators/colorpicker-default/index.d.ts +0 -3
  102. package/schematics/generators/colorpicker-default/index.js +0 -8
  103. package/schematics/generators/colorpicker-default/sample-details.d.ts +0 -5
  104. package/schematics/generators/colorpicker-default/sample-details.js +0 -7
  105. package/schematics/generators/colorpicker-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
  106. package/schematics/generators/colorpicker-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  107. package/schematics/generators/colorpicker-default/schema.d.ts +0 -3
  108. package/schematics/generators/colorpicker-default/schema.js +0 -2
  109. package/schematics/generators/colorpicker-default/schema.json +0 -125
  110. package/schematics/generators/maskedtextbox-custommask/index.d.ts +0 -3
  111. package/schematics/generators/maskedtextbox-custommask/index.js +0 -8
  112. package/schematics/generators/maskedtextbox-custommask/sample-details.d.ts +0 -5
  113. package/schematics/generators/maskedtextbox-custommask/sample-details.js +0 -7
  114. package/schematics/generators/maskedtextbox-custommask/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  115. package/schematics/generators/maskedtextbox-custommask/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
  116. package/schematics/generators/maskedtextbox-custommask/schema.d.ts +0 -3
  117. package/schematics/generators/maskedtextbox-custommask/schema.js +0 -2
  118. package/schematics/generators/maskedtextbox-custommask/schema.json +0 -125
  119. package/schematics/generators/maskedtextbox-default/index.d.ts +0 -3
  120. package/schematics/generators/maskedtextbox-default/index.js +0 -8
  121. package/schematics/generators/maskedtextbox-default/sample-details.d.ts +0 -5
  122. package/schematics/generators/maskedtextbox-default/sample-details.js +0 -7
  123. package/schematics/generators/maskedtextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  124. package/schematics/generators/maskedtextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  125. package/schematics/generators/maskedtextbox-default/schema.d.ts +0 -3
  126. package/schematics/generators/maskedtextbox-default/schema.js +0 -2
  127. package/schematics/generators/maskedtextbox-default/schema.json +0 -125
  128. package/schematics/generators/maskedtextbox-formats/index.d.ts +0 -3
  129. package/schematics/generators/maskedtextbox-formats/index.js +0 -8
  130. package/schematics/generators/maskedtextbox-formats/sample-details.d.ts +0 -5
  131. package/schematics/generators/maskedtextbox-formats/sample-details.js +0 -7
  132. package/schematics/generators/maskedtextbox-formats/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  133. package/schematics/generators/maskedtextbox-formats/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -9
  134. package/schematics/generators/maskedtextbox-formats/schema.d.ts +0 -3
  135. package/schematics/generators/maskedtextbox-formats/schema.js +0 -2
  136. package/schematics/generators/maskedtextbox-formats/schema.json +0 -125
  137. package/schematics/generators/numerictextbox-customformat/index.d.ts +0 -3
  138. package/schematics/generators/numerictextbox-customformat/index.js +0 -8
  139. package/schematics/generators/numerictextbox-customformat/sample-details.d.ts +0 -5
  140. package/schematics/generators/numerictextbox-customformat/sample-details.js +0 -7
  141. package/schematics/generators/numerictextbox-customformat/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  142. package/schematics/generators/numerictextbox-customformat/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -23
  143. package/schematics/generators/numerictextbox-customformat/schema.d.ts +0 -3
  144. package/schematics/generators/numerictextbox-customformat/schema.js +0 -2
  145. package/schematics/generators/numerictextbox-customformat/schema.json +0 -125
  146. package/schematics/generators/numerictextbox-decimals/index.d.ts +0 -3
  147. package/schematics/generators/numerictextbox-decimals/index.js +0 -8
  148. package/schematics/generators/numerictextbox-decimals/sample-details.d.ts +0 -5
  149. package/schematics/generators/numerictextbox-decimals/sample-details.js +0 -7
  150. package/schematics/generators/numerictextbox-decimals/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  151. package/schematics/generators/numerictextbox-decimals/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  152. package/schematics/generators/numerictextbox-decimals/schema.d.ts +0 -3
  153. package/schematics/generators/numerictextbox-decimals/schema.js +0 -2
  154. package/schematics/generators/numerictextbox-decimals/schema.json +0 -125
  155. package/schematics/generators/numerictextbox-default/index.d.ts +0 -3
  156. package/schematics/generators/numerictextbox-default/index.js +0 -8
  157. package/schematics/generators/numerictextbox-default/sample-details.d.ts +0 -5
  158. package/schematics/generators/numerictextbox-default/sample-details.js +0 -7
  159. package/schematics/generators/numerictextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  160. package/schematics/generators/numerictextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -22
  161. package/schematics/generators/numerictextbox-default/schema.d.ts +0 -3
  162. package/schematics/generators/numerictextbox-default/schema.js +0 -2
  163. package/schematics/generators/numerictextbox-default/schema.json +0 -125
  164. package/schematics/generators/numerictextbox-range/index.d.ts +0 -3
  165. package/schematics/generators/numerictextbox-range/index.js +0 -8
  166. package/schematics/generators/numerictextbox-range/sample-details.d.ts +0 -5
  167. package/schematics/generators/numerictextbox-range/sample-details.js +0 -7
  168. package/schematics/generators/numerictextbox-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -14
  169. package/schematics/generators/numerictextbox-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -9
  170. package/schematics/generators/numerictextbox-range/schema.d.ts +0 -3
  171. package/schematics/generators/numerictextbox-range/schema.js +0 -2
  172. package/schematics/generators/numerictextbox-range/schema.json +0 -125
  173. package/schematics/generators/slider-default/index.d.ts +0 -3
  174. package/schematics/generators/slider-default/index.js +0 -8
  175. package/schematics/generators/slider-default/sample-details.d.ts +0 -5
  176. package/schematics/generators/slider-default/sample-details.js +0 -7
  177. package/schematics/generators/slider-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  178. package/schematics/generators/slider-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  179. package/schematics/generators/slider-default/schema.d.ts +0 -3
  180. package/schematics/generators/slider-default/schema.js +0 -2
  181. package/schematics/generators/slider-default/schema.json +0 -125
  182. package/schematics/generators/slider-limits/index.d.ts +0 -3
  183. package/schematics/generators/slider-limits/index.js +0 -8
  184. package/schematics/generators/slider-limits/sample-details.d.ts +0 -5
  185. package/schematics/generators/slider-limits/sample-details.js +0 -7
  186. package/schematics/generators/slider-limits/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  187. package/schematics/generators/slider-limits/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  188. package/schematics/generators/slider-limits/schema.d.ts +0 -3
  189. package/schematics/generators/slider-limits/schema.js +0 -2
  190. package/schematics/generators/slider-limits/schema.json +0 -125
  191. package/schematics/generators/slider-minrange/index.d.ts +0 -3
  192. package/schematics/generators/slider-minrange/index.js +0 -8
  193. package/schematics/generators/slider-minrange/sample-details.d.ts +0 -5
  194. package/schematics/generators/slider-minrange/sample-details.js +0 -7
  195. package/schematics/generators/slider-minrange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  196. package/schematics/generators/slider-minrange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  197. package/schematics/generators/slider-minrange/schema.d.ts +0 -3
  198. package/schematics/generators/slider-minrange/schema.js +0 -2
  199. package/schematics/generators/slider-minrange/schema.json +0 -125
  200. package/schematics/generators/slider-range/index.d.ts +0 -3
  201. package/schematics/generators/slider-range/index.js +0 -8
  202. package/schematics/generators/slider-range/sample-details.d.ts +0 -5
  203. package/schematics/generators/slider-range/sample-details.js +0 -7
  204. package/schematics/generators/slider-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  205. package/schematics/generators/slider-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  206. package/schematics/generators/slider-range/schema.d.ts +0 -3
  207. package/schematics/generators/slider-range/schema.js +0 -2
  208. package/schematics/generators/slider-range/schema.json +0 -125
  209. package/schematics/generators/slider-ticks/index.d.ts +0 -3
  210. package/schematics/generators/slider-ticks/index.js +0 -8
  211. package/schematics/generators/slider-ticks/sample-details.d.ts +0 -5
  212. package/schematics/generators/slider-ticks/sample-details.js +0 -7
  213. package/schematics/generators/slider-ticks/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  214. package/schematics/generators/slider-ticks/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  215. package/schematics/generators/slider-ticks/schema.d.ts +0 -3
  216. package/schematics/generators/slider-ticks/schema.js +0 -2
  217. package/schematics/generators/slider-ticks/schema.json +0 -125
  218. package/schematics/generators/slider-vertical/index.d.ts +0 -3
  219. package/schematics/generators/slider-vertical/index.js +0 -8
  220. package/schematics/generators/slider-vertical/sample-details.d.ts +0 -5
  221. package/schematics/generators/slider-vertical/sample-details.js +0 -7
  222. package/schematics/generators/slider-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
  223. package/schematics/generators/slider-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  224. package/schematics/generators/slider-vertical/schema.d.ts +0 -3
  225. package/schematics/generators/slider-vertical/schema.js +0 -2
  226. package/schematics/generators/slider-vertical/schema.json +0 -125
  227. package/schematics/generators/textbox-floatinglabel/index.d.ts +0 -3
  228. package/schematics/generators/textbox-floatinglabel/index.js +0 -8
  229. package/schematics/generators/textbox-floatinglabel/sample-details.d.ts +0 -5
  230. package/schematics/generators/textbox-floatinglabel/sample-details.js +0 -7
  231. package/schematics/generators/textbox-floatinglabel/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -15
  232. package/schematics/generators/textbox-floatinglabel/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -21
  233. package/schematics/generators/textbox-floatinglabel/schema.d.ts +0 -3
  234. package/schematics/generators/textbox-floatinglabel/schema.js +0 -2
  235. package/schematics/generators/textbox-floatinglabel/schema.json +0 -125
  236. package/schematics/generators/uploader-autoupload/index.d.ts +0 -3
  237. package/schematics/generators/uploader-autoupload/index.js +0 -8
  238. package/schematics/generators/uploader-autoupload/sample-details.d.ts +0 -5
  239. package/schematics/generators/uploader-autoupload/sample-details.js +0 -7
  240. package/schematics/generators/uploader-autoupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  241. package/schematics/generators/uploader-autoupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  242. package/schematics/generators/uploader-autoupload/schema.d.ts +0 -3
  243. package/schematics/generators/uploader-autoupload/schema.js +0 -2
  244. package/schematics/generators/uploader-autoupload/schema.json +0 -125
  245. package/schematics/generators/uploader-chunkupload/index.d.ts +0 -3
  246. package/schematics/generators/uploader-chunkupload/index.js +0 -8
  247. package/schematics/generators/uploader-chunkupload/sample-details.d.ts +0 -5
  248. package/schematics/generators/uploader-chunkupload/sample-details.js +0 -7
  249. package/schematics/generators/uploader-chunkupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  250. package/schematics/generators/uploader-chunkupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  251. package/schematics/generators/uploader-chunkupload/schema.d.ts +0 -3
  252. package/schematics/generators/uploader-chunkupload/schema.js +0 -2
  253. package/schematics/generators/uploader-chunkupload/schema.json +0 -125
  254. package/schematics/generators/uploader-directoryupload/index.d.ts +0 -3
  255. package/schematics/generators/uploader-directoryupload/index.js +0 -8
  256. package/schematics/generators/uploader-directoryupload/sample-details.d.ts +0 -5
  257. package/schematics/generators/uploader-directoryupload/sample-details.js +0 -7
  258. package/schematics/generators/uploader-directoryupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  259. package/schematics/generators/uploader-directoryupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  260. package/schematics/generators/uploader-directoryupload/schema.d.ts +0 -3
  261. package/schematics/generators/uploader-directoryupload/schema.js +0 -2
  262. package/schematics/generators/uploader-directoryupload/schema.json +0 -125
  263. package/schematics/generators/uploader-validation/index.d.ts +0 -3
  264. package/schematics/generators/uploader-validation/index.js +0 -8
  265. package/schematics/generators/uploader-validation/sample-details.d.ts +0 -5
  266. package/schematics/generators/uploader-validation/sample-details.js +0 -7
  267. package/schematics/generators/uploader-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  268. package/schematics/generators/uploader-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  269. package/schematics/generators/uploader-validation/schema.d.ts +0 -3
  270. package/schematics/generators/uploader-validation/schema.js +0 -2
  271. package/schematics/generators/uploader-validation/schema.json +0 -125
  272. package/schematics/ng-add/index.d.ts +0 -3
  273. package/schematics/ng-add/index.js +0 -9
  274. package/schematics/ng-add/schema.d.ts +0 -13
  275. package/schematics/ng-add/schema.js +0 -2
  276. package/schematics/ng-add/schema.json +0 -34
  277. package/schematics/tsconfig.json +0 -25
  278. package/schematics/utils/lib-details.d.ts +0 -4
  279. package/schematics/utils/lib-details.js +0 -6
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.componentName = 'slider';
4
- exports.sampleName = 'range';
5
- exports.diModules = null;
6
- exports.packageName = '@syncfusion/ej2-angular-inputs';
7
- exports.libModules = 'SliderModule';
@@ -1 +0,0 @@
1
- <ejs-slider id="slider" [value]="this.value" [tooltip]="this.tooltip" type="Range"></ejs-slider>
@@ -1,3 +0,0 @@
1
- import { Schema as ComponentSchema } from '@schematics/angular/component/schema';
2
- export interface Schema extends ComponentSchema {
3
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,125 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "EJ2SchemaTemplateID",
4
- "title": "slider-range",
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": "slider-range"
125
- }
@@ -1,3 +0,0 @@
1
- import { Rule } from '@angular-devkit/schematics';
2
- import { Schema } from './schema';
3
- export default function (options: Schema): Rule;
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- export declare const componentName: string;
2
- export declare const sampleName: string;
3
- export declare const diModules: string;
4
- export declare const packageName: string;
5
- export declare const libModules: string;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.componentName = 'slider';
4
- exports.sampleName = 'ticks';
5
- exports.diModules = null;
6
- exports.packageName = '@syncfusion/ej2-angular-inputs';
7
- exports.libModules = 'SliderModule';
@@ -1 +0,0 @@
1
- <ejs-slider id="slider" [value]="this.value" [tooltip]="this.tooltip" type="Range" [ticks]="this.ticks"></ejs-slider>
@@ -1,3 +0,0 @@
1
- import { Schema as ComponentSchema } from '@schematics/angular/component/schema';
2
- export interface Schema extends ComponentSchema {
3
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,125 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "EJ2SchemaTemplateID",
4
- "title": "slider-ticks",
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": "slider-ticks"
125
- }
@@ -1,3 +0,0 @@
1
- import { Rule } from '@angular-devkit/schematics';
2
- import { Schema } from './schema';
3
- export default function (options: Schema): Rule;
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- export declare const componentName: string;
2
- export declare const sampleName: string;
3
- export declare const diModules: string;
4
- export declare const packageName: string;
5
- export declare const libModules: string;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.componentName = 'slider';
4
- exports.sampleName = 'vertical';
5
- exports.diModules = null;
6
- exports.packageName = '@syncfusion/ej2-angular-inputs';
7
- exports.libModules = 'SliderModule';
@@ -1,5 +0,0 @@
1
- #slider {
2
- height: 250px;
3
- width: 100px;
4
- margin: auto;
5
- }
@@ -1 +0,0 @@
1
- <ejs-slider id="slider" value="50" [tooltip]="this.tooltip" orientation="Vertical"></ejs-slider>
@@ -1,3 +0,0 @@
1
- import { Schema as ComponentSchema } from '@schematics/angular/component/schema';
2
- export interface Schema extends ComponentSchema {
3
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,125 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "EJ2SchemaTemplateID",
4
- "title": "slider-vertical",
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": "slider-vertical"
125
- }
@@ -1,3 +0,0 @@
1
- import { Rule } from '@angular-devkit/schematics';
2
- import { Schema } from './schema';
3
- export default function (options: Schema): Rule;
@@ -1,8 +0,0 @@
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;
@@ -1,5 +0,0 @@
1
- export declare const componentName: string;
2
- export declare const sampleName: string;
3
- export declare const diModules: string;
4
- export declare const packageName: string;
5
- export declare const libModules: string;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.componentName = 'textbox';
4
- exports.sampleName = 'floatinglabel';
5
- exports.diModules = null;
6
- exports.packageName = '@syncfusion/ej2-angular-inputs';
7
- exports.libModules = 'TextBoxModule';
@@ -1,15 +0,0 @@
1
- .content-wrapper {
2
- width: 90%;
3
- margin: 0 auto;
4
- min-width: 185px;
5
- }
6
-
7
- .content-wrapper div.row {
8
- padding: 15px 0px;
9
- }
10
-
11
- .control-label {
12
- padding: 24px 0px 0px 0px;
13
- font-size: 12px;
14
- opacity: 0.54;
15
- }
@@ -1,21 +0,0 @@
1
- <div class="col-lg-12 control-section e-input-section">
2
- <div class="content-wrapper">
3
- <div class="row">
4
- <div class="col-xs-6 col-sm-6 col-lg-6 col-md-6"><b>Floating Label</b></div>
5
- </div>
6
- <div class="row">
7
- <div class="col-xs-6 col-sm-6 col-lg-6 col-md-6">
8
- <ejs-textbox placeholder="Floating label" floatLabelType="Auto"></ejs-textbox>
9
- </div>
10
- </div>
11
-
12
- <div class="row">
13
- <div class="col-xs-6 col-sm-6 col-lg-6 col-md-6"><b>Default TextBox</b></div>
14
- </div>
15
- <div class="row">
16
- <div class="col-xs-6 col-sm-6 col-lg-6 col-md-6">
17
- <ejs-textbox placeholder="Default TextBox" floatLabelType="Never"></ejs-textbox>
18
- </div>
19
- </div>
20
- </div>
21
- </div>
@@ -1,3 +0,0 @@
1
- import { Schema as ComponentSchema } from '@schematics/angular/component/schema';
2
- export interface Schema extends ComponentSchema {
3
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });