@syncfusion/ej2-angular-splitbuttons 22.1.34 → 22.1.37-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.
Files changed (255) hide show
  1. package/@syncfusion/ej2-angular-splitbuttons.es5.js +565 -0
  2. package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-splitbuttons.js +516 -0
  4. package/@syncfusion/ej2-angular-splitbuttons.js.map +1 -0
  5. package/CHANGELOG.md +264 -0
  6. package/dist/ej2-angular-splitbuttons.umd.js +603 -0
  7. package/dist/ej2-angular-splitbuttons.umd.js.map +1 -0
  8. package/dist/ej2-angular-splitbuttons.umd.min.js +11 -0
  9. package/dist/ej2-angular-splitbuttons.umd.min.js.map +1 -0
  10. package/ej2-angular-splitbuttons.d.ts +7 -0
  11. package/ej2-angular-splitbuttons.metadata.json +1 -0
  12. package/package.json +13 -50
  13. package/postinstall/tagchange.js +18 -0
  14. package/schematics/collection.json +25 -0
  15. package/schematics/generators/dropdownbutton-default/index.d.ts +3 -0
  16. package/schematics/generators/dropdownbutton-default/index.js +8 -0
  17. package/schematics/generators/dropdownbutton-default/sample-details.d.ts +5 -0
  18. package/schematics/generators/dropdownbutton-default/sample-details.js +7 -0
  19. package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +49 -0
  20. package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +18 -0
  21. package/schematics/generators/dropdownbutton-default/schema.d.ts +3 -0
  22. package/schematics/generators/dropdownbutton-default/schema.js +2 -0
  23. package/schematics/generators/dropdownbutton-default/schema.json +125 -0
  24. package/schematics/generators/progressbutton-default/index.d.ts +3 -0
  25. package/schematics/generators/progressbutton-default/index.js +8 -0
  26. package/schematics/generators/progressbutton-default/sample-details.d.ts +5 -0
  27. package/schematics/generators/progressbutton-default/sample-details.js +7 -0
  28. package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +47 -0
  29. package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +53 -0
  30. package/schematics/generators/progressbutton-default/schema.d.ts +3 -0
  31. package/schematics/generators/progressbutton-default/schema.js +2 -0
  32. package/schematics/generators/progressbutton-default/schema.json +125 -0
  33. package/schematics/generators/splitbutton-default/index.d.ts +3 -0
  34. package/schematics/generators/splitbutton-default/index.js +8 -0
  35. package/schematics/generators/splitbutton-default/sample-details.d.ts +5 -0
  36. package/schematics/generators/splitbutton-default/sample-details.js +7 -0
  37. package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +37 -0
  38. package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +18 -0
  39. package/schematics/generators/splitbutton-default/schema.d.ts +3 -0
  40. package/schematics/generators/splitbutton-default/schema.js +2 -0
  41. package/schematics/generators/splitbutton-default/schema.json +125 -0
  42. package/schematics/ng-add/index.d.ts +3 -0
  43. package/schematics/ng-add/index.js +9 -0
  44. package/schematics/ng-add/schema.d.ts +13 -0
  45. package/schematics/ng-add/schema.js +2 -0
  46. package/schematics/ng-add/schema.json +34 -0
  47. package/schematics/tsconfig.json +25 -0
  48. package/schematics/utils/lib-details.d.ts +4 -0
  49. package/schematics/utils/lib-details.js +6 -0
  50. package/schematics/utils/lib-details.ts +2 -2
  51. package/src/drop-down-button/dropdownbutton-all.module.d.ts +0 -6
  52. package/src/drop-down-button/dropdownbutton.component.d.ts +0 -3
  53. package/src/drop-down-button/dropdownbutton.module.d.ts +0 -7
  54. package/src/drop-down-button/items.directive.d.ts +0 -5
  55. package/src/progress-button/progressbutton-all.module.d.ts +0 -6
  56. package/src/progress-button/progressbutton.component.d.ts +0 -3
  57. package/src/progress-button/progressbutton.module.d.ts +0 -6
  58. package/src/split-button/items.directive.d.ts +0 -5
  59. package/src/split-button/splitbutton-all.module.d.ts +0 -6
  60. package/src/split-button/splitbutton.component.d.ts +0 -3
  61. package/src/split-button/splitbutton.module.d.ts +0 -7
  62. package/styles/button-group/bootstrap-dark.scss +1 -4
  63. package/styles/button-group/bootstrap.scss +1 -4
  64. package/styles/button-group/bootstrap4.scss +1 -4
  65. package/styles/button-group/bootstrap5-dark.scss +1 -4
  66. package/styles/button-group/bootstrap5.scss +1 -4
  67. package/styles/button-group/fabric-dark.scss +1 -4
  68. package/styles/button-group/fabric.scss +1 -4
  69. package/styles/button-group/fluent-dark.scss +1 -4
  70. package/styles/button-group/fluent.scss +1 -4
  71. package/styles/button-group/highcontrast-light.scss +1 -4
  72. package/styles/button-group/highcontrast.scss +1 -4
  73. package/styles/button-group/material-dark.scss +1 -4
  74. package/styles/button-group/material.scss +1 -4
  75. package/styles/button-group/material3-dark.scss +1 -4
  76. package/styles/button-group/material3.scss +1 -4
  77. package/styles/button-group/tailwind-dark.scss +1 -4
  78. package/styles/button-group/tailwind.scss +1 -4
  79. package/styles/drop-down-button/bootstrap-dark.scss +1 -6
  80. package/styles/drop-down-button/bootstrap.scss +1 -6
  81. package/styles/drop-down-button/bootstrap4.scss +1 -6
  82. package/styles/drop-down-button/bootstrap5-dark.scss +1 -6
  83. package/styles/drop-down-button/bootstrap5.scss +1 -6
  84. package/styles/drop-down-button/fabric-dark.scss +1 -6
  85. package/styles/drop-down-button/fabric.scss +1 -6
  86. package/styles/drop-down-button/fluent-dark.scss +1 -6
  87. package/styles/drop-down-button/fluent.scss +1 -6
  88. package/styles/drop-down-button/highcontrast-light.scss +1 -6
  89. package/styles/drop-down-button/highcontrast.scss +1 -6
  90. package/styles/drop-down-button/material-dark.scss +1 -6
  91. package/styles/drop-down-button/material.scss +1 -6
  92. package/styles/drop-down-button/material3-dark.scss +1 -6
  93. package/styles/drop-down-button/material3.scss +1 -6
  94. package/styles/drop-down-button/tailwind-dark.scss +1 -6
  95. package/styles/drop-down-button/tailwind.scss +1 -6
  96. package/styles/material3-dark.css +168 -0
  97. package/styles/material3-dark.scss +0 -1
  98. package/styles/material3.css +333 -0
  99. package/styles/material3.scss +0 -1
  100. package/styles/progress-button/bootstrap-dark.scss +1 -5
  101. package/styles/progress-button/bootstrap.scss +1 -5
  102. package/styles/progress-button/bootstrap4.scss +1 -5
  103. package/styles/progress-button/bootstrap5-dark.scss +1 -5
  104. package/styles/progress-button/bootstrap5.scss +1 -5
  105. package/styles/progress-button/fabric-dark.scss +1 -5
  106. package/styles/progress-button/fabric.scss +1 -5
  107. package/styles/progress-button/fluent-dark.scss +1 -5
  108. package/styles/progress-button/fluent.scss +1 -5
  109. package/styles/progress-button/highcontrast-light.scss +1 -5
  110. package/styles/progress-button/highcontrast.scss +1 -5
  111. package/styles/progress-button/material-dark.scss +1 -5
  112. package/styles/progress-button/material.scss +1 -5
  113. package/styles/progress-button/material3-dark.scss +1 -5
  114. package/styles/progress-button/material3.scss +1 -5
  115. package/styles/progress-button/tailwind-dark.scss +1 -5
  116. package/styles/progress-button/tailwind.scss +1 -5
  117. package/styles/split-button/bootstrap-dark.scss +1 -6
  118. package/styles/split-button/bootstrap.scss +1 -6
  119. package/styles/split-button/bootstrap4.scss +1 -6
  120. package/styles/split-button/bootstrap5-dark.scss +1 -6
  121. package/styles/split-button/bootstrap5.scss +1 -6
  122. package/styles/split-button/fabric-dark.scss +1 -6
  123. package/styles/split-button/fabric.scss +1 -6
  124. package/styles/split-button/fluent-dark.scss +1 -6
  125. package/styles/split-button/fluent.scss +1 -6
  126. package/styles/split-button/highcontrast-light.scss +1 -6
  127. package/styles/split-button/highcontrast.scss +1 -6
  128. package/styles/split-button/material-dark.scss +1 -6
  129. package/styles/split-button/material.scss +1 -6
  130. package/styles/split-button/material3-dark.scss +1 -6
  131. package/styles/split-button/material3.scss +1 -6
  132. package/styles/split-button/tailwind-dark.scss +1 -6
  133. package/styles/split-button/tailwind.scss +1 -6
  134. package/esm2020/public_api.mjs +0 -3
  135. package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +0 -23
  136. package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +0 -64
  137. package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +0 -34
  138. package/esm2020/src/drop-down-button/items.directive.mjs +0 -46
  139. package/esm2020/src/index.mjs +0 -13
  140. package/esm2020/src/progress-button/progressbutton-all.module.mjs +0 -23
  141. package/esm2020/src/progress-button/progressbutton.component.mjs +0 -59
  142. package/esm2020/src/progress-button/progressbutton.module.mjs +0 -25
  143. package/esm2020/src/split-button/items.directive.mjs +0 -46
  144. package/esm2020/src/split-button/splitbutton-all.module.mjs +0 -23
  145. package/esm2020/src/split-button/splitbutton.component.mjs +0 -64
  146. package/esm2020/src/split-button/splitbutton.module.mjs +0 -34
  147. package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +0 -5
  148. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +0 -405
  149. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +0 -1
  150. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +0 -405
  151. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +0 -1
  152. package/styles/button-group/_all.scss +0 -2
  153. package/styles/button-group/_bootstrap-dark-definition.scss +0 -33
  154. package/styles/button-group/_bootstrap-definition.scss +0 -30
  155. package/styles/button-group/_bootstrap4-definition.scss +0 -30
  156. package/styles/button-group/_bootstrap5-dark-definition.scss +0 -1
  157. package/styles/button-group/_bootstrap5-definition.scss +0 -31
  158. package/styles/button-group/_fabric-dark-definition.scss +0 -33
  159. package/styles/button-group/_fabric-definition.scss +0 -30
  160. package/styles/button-group/_fluent-dark-definition.scss +0 -1
  161. package/styles/button-group/_fluent-definition.scss +0 -31
  162. package/styles/button-group/_fusionnew-definition.scss +0 -31
  163. package/styles/button-group/_group-button-mixin.scss +0 -72
  164. package/styles/button-group/_highcontrast-definition.scss +0 -32
  165. package/styles/button-group/_highcontrast-light-definition.scss +0 -35
  166. package/styles/button-group/_layout.scss +0 -294
  167. package/styles/button-group/_material-dark-definition.scss +0 -33
  168. package/styles/button-group/_material-definition.scss +0 -30
  169. package/styles/button-group/_material3-dark-definition.scss +0 -1
  170. package/styles/button-group/_material3-definition.scss +0 -31
  171. package/styles/button-group/_tailwind-dark-definition.scss +0 -1
  172. package/styles/button-group/_tailwind-definition.scss +0 -31
  173. package/styles/button-group/_theme.scss +0 -454
  174. package/styles/drop-down-button/_all.scss +0 -2
  175. package/styles/drop-down-button/_bootstrap-dark-definition.scss +0 -51
  176. package/styles/drop-down-button/_bootstrap-definition.scss +0 -48
  177. package/styles/drop-down-button/_bootstrap4-definition.scss +0 -48
  178. package/styles/drop-down-button/_bootstrap5-dark-definition.scss +0 -1
  179. package/styles/drop-down-button/_bootstrap5-definition.scss +0 -50
  180. package/styles/drop-down-button/_fabric-dark-definition.scss +0 -51
  181. package/styles/drop-down-button/_fabric-definition.scss +0 -48
  182. package/styles/drop-down-button/_fluent-dark-definition.scss +0 -1
  183. package/styles/drop-down-button/_fluent-definition.scss +0 -52
  184. package/styles/drop-down-button/_fusionnew-definition.scss +0 -50
  185. package/styles/drop-down-button/_highcontrast-definition.scss +0 -47
  186. package/styles/drop-down-button/_highcontrast-light-definition.scss +0 -50
  187. package/styles/drop-down-button/_layout.scss +0 -238
  188. package/styles/drop-down-button/_material-dark-definition.scss +0 -51
  189. package/styles/drop-down-button/_material-definition.scss +0 -48
  190. package/styles/drop-down-button/_material3-dark-definition.scss +0 -1
  191. package/styles/drop-down-button/_material3-definition.scss +0 -51
  192. package/styles/drop-down-button/_tailwind-dark-definition.scss +0 -1
  193. package/styles/drop-down-button/_tailwind-definition.scss +0 -49
  194. package/styles/drop-down-button/_theme.scss +0 -83
  195. package/styles/drop-down-button/icons/_bootstrap-dark.scss +0 -10
  196. package/styles/drop-down-button/icons/_bootstrap.scss +0 -10
  197. package/styles/drop-down-button/icons/_bootstrap4.scss +0 -10
  198. package/styles/drop-down-button/icons/_bootstrap5-dark.scss +0 -1
  199. package/styles/drop-down-button/icons/_bootstrap5.scss +0 -10
  200. package/styles/drop-down-button/icons/_fabric-dark.scss +0 -10
  201. package/styles/drop-down-button/icons/_fabric.scss +0 -10
  202. package/styles/drop-down-button/icons/_fluent-dark.scss +0 -1
  203. package/styles/drop-down-button/icons/_fluent.scss +0 -10
  204. package/styles/drop-down-button/icons/_fusionnew.scss +0 -10
  205. package/styles/drop-down-button/icons/_highcontrast-light.scss +0 -10
  206. package/styles/drop-down-button/icons/_highcontrast.scss +0 -10
  207. package/styles/drop-down-button/icons/_material-dark.scss +0 -10
  208. package/styles/drop-down-button/icons/_material.scss +0 -10
  209. package/styles/drop-down-button/icons/_material3-dark.scss +0 -1
  210. package/styles/drop-down-button/icons/_material3.scss +0 -10
  211. package/styles/drop-down-button/icons/_tailwind-dark.scss +0 -10
  212. package/styles/drop-down-button/icons/_tailwind.scss +0 -10
  213. package/styles/progress-button/_all.scss +0 -2
  214. package/styles/progress-button/_bootstrap-dark-definition.scss +0 -27
  215. package/styles/progress-button/_bootstrap-definition.scss +0 -24
  216. package/styles/progress-button/_bootstrap4-definition.scss +0 -24
  217. package/styles/progress-button/_bootstrap5-dark-definition.scss +0 -1
  218. package/styles/progress-button/_bootstrap5-definition.scss +0 -21
  219. package/styles/progress-button/_fabric-dark-definition.scss +0 -27
  220. package/styles/progress-button/_fabric-definition.scss +0 -24
  221. package/styles/progress-button/_fluent-dark-definition.scss +0 -1
  222. package/styles/progress-button/_fluent-definition.scss +0 -21
  223. package/styles/progress-button/_fusionnew-definition.scss +0 -21
  224. package/styles/progress-button/_highcontrast-definition.scss +0 -24
  225. package/styles/progress-button/_highcontrast-light-definition.scss +0 -24
  226. package/styles/progress-button/_layout.scss +0 -396
  227. package/styles/progress-button/_material-dark-definition.scss +0 -27
  228. package/styles/progress-button/_material-definition.scss +0 -24
  229. package/styles/progress-button/_material3-dark-definition.scss +0 -1
  230. package/styles/progress-button/_material3-definition.scss +0 -25
  231. package/styles/progress-button/_tailwind-dark-definition.scss +0 -1
  232. package/styles/progress-button/_tailwind-definition.scss +0 -21
  233. package/styles/progress-button/_theme.scss +0 -638
  234. package/styles/split-button/_all.scss +0 -2
  235. package/styles/split-button/_bootstrap-dark-definition.scss +0 -26
  236. package/styles/split-button/_bootstrap-definition.scss +0 -23
  237. package/styles/split-button/_bootstrap4-definition.scss +0 -26
  238. package/styles/split-button/_bootstrap5-dark-definition.scss +0 -1
  239. package/styles/split-button/_bootstrap5-definition.scss +0 -24
  240. package/styles/split-button/_fabric-dark-definition.scss +0 -26
  241. package/styles/split-button/_fabric-definition.scss +0 -23
  242. package/styles/split-button/_fluent-dark-definition.scss +0 -1
  243. package/styles/split-button/_fluent-definition.scss +0 -24
  244. package/styles/split-button/_fusionnew-definition.scss +0 -24
  245. package/styles/split-button/_highcontrast-definition.scss +0 -23
  246. package/styles/split-button/_highcontrast-light-definition.scss +0 -26
  247. package/styles/split-button/_layout.scss +0 -484
  248. package/styles/split-button/_material-dark-definition.scss +0 -26
  249. package/styles/split-button/_material-definition.scss +0 -23
  250. package/styles/split-button/_material3-dark-definition.scss +0 -1
  251. package/styles/split-button/_material3-definition.scss +0 -26
  252. package/styles/split-button/_tailwind-dark-definition.scss +0 -1
  253. package/styles/split-button/_tailwind-definition.scss +0 -24
  254. package/styles/split-button/_theme.scss +0 -187
  255. package/syncfusion-ej2-angular-splitbuttons.d.ts +0 -5
@@ -0,0 +1,125 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "EJ2SchemaTemplateID",
4
+ "title": "dropdownbutton-default",
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": "dropdownbutton-default"
125
+ }
@@ -0,0 +1,3 @@
1
+ import { Rule } from '@angular-devkit/schematics';
2
+ import { Schema } from './schema';
3
+ export default function (options: Schema): Rule;
@@ -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,5 @@
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;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.componentName = 'progressbutton';
4
+ exports.sampleName = 'default';
5
+ exports.diModules = null;
6
+ exports.packageName = '@syncfusion/ej2-angular-splitbuttons';
7
+ exports.libModules = 'ProgressButtonModule';
@@ -0,0 +1,47 @@
1
+ table {
2
+ border-collapse: collapse;
3
+ border-radius: 0;
4
+ margin: 20px auto;
5
+ }
6
+
7
+ table td {
8
+ padding: 50px;
9
+ text-align: center;
10
+ }
11
+
12
+ @font-face {
13
+ font-family: "button-icons";
14
+ src: url(data:application/x-font-ttf;charset=utf-8;base64,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) format("truetype");
15
+ font-weight: normal;
16
+ font-style: normal;
17
+ }
18
+
19
+ .e-btn-sb-icons {
20
+ font-family: "button-icons" !important;
21
+ speak: none;
22
+ font-size: 55px;
23
+ font-style: normal;
24
+ font-weight: normal;
25
+ font-variant: normal;
26
+ text-transform: none;
27
+ line-height: 1;
28
+ -webkit-font-smoothing: antialiased;
29
+ -moz-osx-font-smoothing: grayscale;
30
+ }
31
+
32
+ #contract.e-progress-active .e-btn-content {
33
+ display: none;
34
+ }
35
+
36
+ #contract {
37
+ transition: all .3s cubic-bezier(.175, .885, .32, 1) 100ms;
38
+ }
39
+
40
+ .e-play-icon::before {
41
+ content: '\e701';
42
+ font-size: 12px;
43
+ }
44
+
45
+ .e-download-icon::before {
46
+ content: '\e702';
47
+ }
@@ -0,0 +1,53 @@
1
+ <table>
2
+ <tbody>
3
+ <tr>
4
+ <td>
5
+ <button ejs-progressbutton content="Spin Left" [isPrimary]="true"></button>
6
+ </td>
7
+ <td>
8
+ <button ejs-progressbutton content="Spin Right" [isPrimary]="true" [spinSettings]="spinRight"></button>
9
+ </td>
10
+ <td>
11
+ <button ejs-progressbutton content="Spin Top" [isPrimary]="true" [spinSettings]="spinTop"></button>
12
+ </td>
13
+ <td>
14
+ <button ejs-progressbutton content="Spin Bottom" [isPrimary]="true" [spinSettings]="spinBottom"></button>
15
+ </td>
16
+ </tr>
17
+ <tr>
18
+ <td>
19
+ <button ejs-progressbutton id="roundbtn" [spinSettings]="spinCenter" [animationSettings]="zoomOut" cssClass="e-round e-small e-success"
20
+ iconCss="e-btn-sb-icons e-play-icon"></button>
21
+ </td>
22
+ <td>
23
+ <button #contractBtn ejs-progressbutton id="contract" content="Contract" [enableProgress]="true" cssClass="e-success e-small" (begin)="contractBegin()"
24
+ (end)="contractEnd()"></button>
25
+ </td>
26
+ <td>
27
+ <button ejs-progressbutton content="Slide Left" [enableProgress]="true" [spinSettings]="spinCenter" [animationSettings]="slideLeft"
28
+ cssClass="e-flat e-success"></button>
29
+ </td>
30
+ <td>
31
+ <button ejs-progressbutton content="Slide Right" [enableProgress]="true" [spinSettings]="spinCenter" [animationSettings]="slideRight"
32
+ cssClass="e-outline e-success"></button>
33
+ </td>
34
+ </tr>
35
+ <tr>
36
+ <td>
37
+ <button ejs-progressbutton content="Zoom In" [enableProgress]="true" [spinSettings]="spinCenter" [animationSettings]="zoomIn"
38
+ cssClass="e-round-corner e-danger"></button>
39
+ </td>
40
+ <td>
41
+ <button ejs-progressbutton content="Zoom Out" [enableProgress]="true" [spinSettings]="spinCenter" [animationSettings]="zoomOut"
42
+ cssClass="e-small e-danger"></button>
43
+ </td>
44
+ <td>
45
+ <button ejs-progressbutton content="Download" [enableProgress]="true" duration=4000 cssClass="e-hide-spinner e-progress-top"
46
+ iconCss="e-btn-sb-icons e-download-icon"></button>
47
+ </td>
48
+ <td>
49
+ <button ejs-progressbutton content="Disabled" [disabled]="true"></button>
50
+ </td>
51
+ </tr>
52
+ </tbody>
53
+ </table>
@@ -0,0 +1,3 @@
1
+ import { Schema as ComponentSchema } from '@schematics/angular/component/schema';
2
+ export interface Schema extends ComponentSchema {
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,125 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "EJ2SchemaTemplateID",
4
+ "title": "progressbutton-default",
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": "progressbutton-default"
125
+ }
@@ -0,0 +1,3 @@
1
+ import { Rule } from '@angular-devkit/schematics';
2
+ import { Schema } from './schema';
3
+ export default function (options: Schema): Rule;
@@ -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,5 @@
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;
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.componentName = 'splitbutton';
4
+ exports.sampleName = 'default';
5
+ exports.diModules = null;
6
+ exports.packageName = '@syncfusion/ej2-angular-splitbuttons';
7
+ exports.libModules = 'SplitButtonModule';
@@ -0,0 +1,37 @@
1
+ table {
2
+ border-collapse: collapse;
3
+ border-radius: 0;
4
+ margin: 20px auto;
5
+ }
6
+
7
+ table td {
8
+ padding: 50px;
9
+ }
10
+
11
+ @font-face {
12
+ font-family: 'e-btn-icons';
13
+ src: url(data:application/x-font-ttf;charset=utf-8;base64,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AwYHCQsMAAAAAAASAN4AAQAAAAAAAAABAAAAAQAAAAAAAQAnAAEAAQAAAAAAAgAHACgAAQAAAAAAAwAnAC8AAQAAAAAABAAnAFYAAQAAAAAABQALAH0AAQAAAAAABgAnAIgAAQAAAAAACgAsAK8AAQAAAAAACwASANsAAwABBAkAAAACAO0AAwABBAkAAQBOAO8AAwABBAkAAgAOAT0AAwABBAkAAwBOAUsAAwABBAkABABOAZkAAwABBAkABQAWAecAAwABBAkABgBOAf0AAwABBAkACgBYAksAAwABBAkACwAkAqMgRUoyIFNwbGl0IGJ1dHRvbiBwYXN0ZSBpY29ucyBmb3IgdGhlbWVzUmVndWxhckVKMiBTcGxpdCBidXR0b24gcGFzdGUgaWNvbnMgZm9yIHRoZW1lc0VKMiBTcGxpdCBidXR0b24gcGFzdGUgaWNvbnMgZm9yIHRoZW1lc1ZlcnNpb24gMS4wRUoyIFNwbGl0IGJ1dHRvbiBwYXN0ZSBpY29ucyBmb3IgdGhlbWVzRm9udCBnZW5lcmF0ZWQgdXNpbmcgU3luY2Z1c2lvbiBNZXRybyBTdHVkaW93d3cuc3luY2Z1c2lvbi5jb20AIABFAEoAMgAgAFMAcABsAGkAdAAgAGIAdQB0AHQAbwBuACAAcABhAHMAdABlACAAaQBjAG8AbgBzACAAZgBvAHIAIAB0AGgAZQBtAGUAcwBSAGUAZwB1AGwAYQByAEUASgAyACAAUwBwAGwAaQB0ACAAYgB1AHQAdABvAG4AIABwAGEAcwB0AGUAIABpAGMAbwBuAHMAIABmAG8AcgAgAHQAaABlAG0AZQBzAEUASgAyACAAUwBwAGwAaQB0ACAAYgB1AHQAdABvAG4AIABwAGEAcwB0AGUAIABpAGMAbwBuAHMAIABmAG8AcgAgAHQAaABlAG0AZQBzAFYAZQByAHMAaQBvAG4AIAAxAC4AMABFAEoAMgAgAFMAcABsAGkAdAAgAGIAdQB0AHQAbwBuACAAcABhAHMAdABlACAAaQBjAG8AbgBzACAAZgBvAHIAIAB0AGgAZQBtAGUAcwBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIAB1AHMAaQBuAGcAIABTAHkAbgBjAGYAdQBzAGkAbwBuACAATQBlAHQAcgBvACAAUwB0AHUAZABpAG8AdwB3AHcALgBzAHkAbgBjAGYAdQBzAGkAbwBuAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAAOUGFzdGVfTWF0ZXJpYWwVUGFzdGVTcGVjaWFsX01hdGVyaWFsFlBhc3RlRm9ybXVsYV9Cb290c3RyYXAYUGFzdGVIeXBlcmxpbmtfQm9vdHN0cmFwFlBhc3RlU3BlY2lhbF9Cb290c3RyYXAVUGFzdGVGb3JtdWxhX01hdGVyaWFsD1Bhc3RlX0Jvb3RzdHJhcBdQYXN0ZUh5cGVybGlua19NYXRlcmlhbBNQYXN0ZU1haW5fQm9vdHN0cmFwElBhc3RlTWFpbl9NYXRlcmlhbAAA) format('truetype');
14
+ font-weight: normal;
15
+ font-style: normal;
16
+ }
17
+
18
+ .e-btn-icons {
19
+ font-family: 'e-btn-icons';
20
+ font-weight: normal;
21
+ }
22
+
23
+ .e-paste::before {
24
+ content: '\e706';
25
+ }
26
+
27
+ .e-paste-special::before {
28
+ content: '\e704';
29
+ }
30
+
31
+ .e-paste-formula::before {
32
+ content: '\e702';
33
+ }
34
+
35
+ .e-paste-hyperlink::before {
36
+ content: '\e703';
37
+ }
@@ -0,0 +1,18 @@
1
+ <table id="splitbutton">
2
+ <tbody>
3
+ <tr>
4
+ <td>
5
+ <ejs-splitbutton [items]='items' iconCss="e-btn-icons e-paste"></ejs-splitbutton>
6
+ </td>
7
+ <td>
8
+ <ejs-splitbutton [items]='items' content="Paste"></ejs-splitbutton>
9
+ </td>
10
+ <td>
11
+ <ejs-splitbutton [items]='items' content="Paste" iconCss="e-btn-icons e-paste"></ejs-splitbutton>
12
+ </td>
13
+ <td class="col-xs-12 col-sm-6 col-lg-3 col-md-3">
14
+ <ejs-splitbutton [items]='items' content="Paste" iconCss="e-btn-icons e-paste" (beforeItemRender)='addDisabled($event)'></ejs-splitbutton>
15
+ </td>
16
+ </tr>
17
+ </tbody>
18
+ <table>
@@ -0,0 +1,3 @@
1
+ import { Schema as ComponentSchema } from '@schematics/angular/component/schema';
2
+ export interface Schema extends ComponentSchema {
3
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,125 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "EJ2SchemaTemplateID",
4
+ "title": "splitbutton-default",
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": "splitbutton-default"
125
+ }
@@ -0,0 +1,3 @@
1
+ import { OptionsSchema } from './schema';
2
+ import { Rule } from '@angular-devkit/schematics';
3
+ export default function (options: OptionsSchema): Rule;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const lib_details_1 = require("./../utils/lib-details");
4
+ const schematics_1 = require("@syncfusion/ej2-angular-base/schematics");
5
+ function default_1(options) {
6
+ const libOptions = Object.assign({}, { 'pkgName': lib_details_1.pkgName, 'pkgVer': lib_details_1.pkgVer, 'moduleName': lib_details_1.moduleName, 'themeVer': lib_details_1.themeVer });
7
+ return schematics_1.install(options, libOptions);
8
+ }
9
+ exports.default = default_1;
@@ -0,0 +1,13 @@
1
+ export interface OptionsSchema {
2
+ skipPackageJson: boolean;
3
+ modules: string;
4
+ modulePath: string;
5
+ theme: 'material' | 'fabric' | 'bootstrap' | 'highcontrast';
6
+ project?: string;
7
+ }
8
+ export interface LibOptionsSchema {
9
+ pkgName: string;
10
+ pkgVer: string;
11
+ moduleName: string;
12
+ themeVer: string;
13
+ }