@dugararchit/flex-layout 13.0.0-dugararchit

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 (226) hide show
  1. package/README.md +7 -0
  2. package/_private-utils/angular-flex-layout-_private-utils.d.ts +5 -0
  3. package/_private-utils/auto-prefixer.d.ts +24 -0
  4. package/_private-utils/index.d.ts +10 -0
  5. package/_private-utils/layout-validator.d.ts +32 -0
  6. package/_private-utils/object-extend.d.ts +15 -0
  7. package/_private-utils/package.json +10 -0
  8. package/_private-utils/testing/angular-flex-layout-_private-utils-testing.d.ts +5 -0
  9. package/_private-utils/testing/custom-matchers.d.ts +65 -0
  10. package/_private-utils/testing/dom-tools.d.ts +47 -0
  11. package/_private-utils/testing/helpers.d.ts +24 -0
  12. package/_private-utils/testing/index.d.ts +10 -0
  13. package/_private-utils/testing/package.json +10 -0
  14. package/angular-flex-layout-13.0.0-beta.38.tgz +0 -0
  15. package/angular-flex-layout.d.ts +5 -0
  16. package/core/README.md +25 -0
  17. package/core/add-alias.d.ts +14 -0
  18. package/core/angular-flex-layout-core.d.ts +5 -0
  19. package/core/base/base2.d.ts +60 -0
  20. package/core/base/index.d.ts +8 -0
  21. package/core/basis-validator/basis-validator.d.ts +13 -0
  22. package/core/breakpoints/break-point-registry.d.ts +42 -0
  23. package/core/breakpoints/break-point.d.ts +14 -0
  24. package/core/breakpoints/break-points-token.d.ts +14 -0
  25. package/core/breakpoints/breakpoint-tools.d.ts +19 -0
  26. package/core/breakpoints/data/break-points.d.ts +12 -0
  27. package/core/breakpoints/data/orientation-break-points.d.ts +23 -0
  28. package/core/breakpoints/index.d.ts +12 -0
  29. package/core/browser-provider.d.ts +24 -0
  30. package/core/match-media/index.d.ts +9 -0
  31. package/core/match-media/match-media.d.ts +59 -0
  32. package/core/match-media/mock/mock-match-media.d.ts +92 -0
  33. package/core/media-change.d.ts +30 -0
  34. package/core/media-marshaller/media-marshaller.d.ts +123 -0
  35. package/core/media-marshaller/print-hook.d.ts +95 -0
  36. package/core/media-observer/index.d.ts +8 -0
  37. package/core/media-observer/media-observer.d.ts +115 -0
  38. package/core/media-trigger/index.d.ts +8 -0
  39. package/core/media-trigger/media-trigger.d.ts +73 -0
  40. package/core/module.d.ts +11 -0
  41. package/core/multiply/multiplier.d.ts +5 -0
  42. package/core/package.json +10 -0
  43. package/core/public-api.d.ts +25 -0
  44. package/core/sass/_layout-bp.scss +76 -0
  45. package/core/style-builder/style-builder.d.ts +21 -0
  46. package/core/style-utils/style-utils.d.ts +53 -0
  47. package/core/stylesheet-map/index.d.ts +8 -0
  48. package/core/stylesheet-map/stylesheet-map.d.ts +24 -0
  49. package/core/tokens/breakpoint-token.d.ts +10 -0
  50. package/core/tokens/index.d.ts +10 -0
  51. package/core/tokens/library-config.d.ts +26 -0
  52. package/core/tokens/server-token.d.ts +15 -0
  53. package/core/utils/array.d.ts +9 -0
  54. package/core/utils/index.d.ts +9 -0
  55. package/core/utils/sort.d.ts +15 -0
  56. package/esm2020/_private-utils/angular-flex-layout-_private-utils.mjs +5 -0
  57. package/esm2020/_private-utils/auto-prefixer.mjs +65 -0
  58. package/esm2020/_private-utils/index.mjs +11 -0
  59. package/esm2020/_private-utils/layout-validator.mjs +83 -0
  60. package/esm2020/_private-utils/object-extend.mjs +30 -0
  61. package/esm2020/_private-utils/testing/angular-flex-layout-_private-utils-testing.mjs +5 -0
  62. package/esm2020/_private-utils/testing/custom-matchers.mjs +201 -0
  63. package/esm2020/_private-utils/testing/dom-tools.mjs +101 -0
  64. package/esm2020/_private-utils/testing/helpers.mjs +43 -0
  65. package/esm2020/_private-utils/testing/index.mjs +11 -0
  66. package/esm2020/angular-flex-layout.mjs +5 -0
  67. package/esm2020/core/add-alias.mjs +23 -0
  68. package/esm2020/core/angular-flex-layout-core.mjs +5 -0
  69. package/esm2020/core/base/base2.mjs +131 -0
  70. package/esm2020/core/base/index.mjs +9 -0
  71. package/esm2020/core/basis-validator/basis-validator.mjs +48 -0
  72. package/esm2020/core/breakpoints/break-point-registry.mjs +76 -0
  73. package/esm2020/core/breakpoints/break-point.mjs +2 -0
  74. package/esm2020/core/breakpoints/break-points-token.mjs +30 -0
  75. package/esm2020/core/breakpoints/breakpoint-tools.mjs +53 -0
  76. package/esm2020/core/breakpoints/data/break-points.mjs +78 -0
  77. package/esm2020/core/breakpoints/data/orientation-break-points.mjs +40 -0
  78. package/esm2020/core/breakpoints/index.mjs +13 -0
  79. package/esm2020/core/browser-provider.mjs +41 -0
  80. package/esm2020/core/match-media/index.mjs +10 -0
  81. package/esm2020/core/match-media/match-media.mjs +186 -0
  82. package/esm2020/core/match-media/mock/mock-match-media.mjs +224 -0
  83. package/esm2020/core/media-change.mjs +25 -0
  84. package/esm2020/core/media-marshaller/media-marshaller.mjs +317 -0
  85. package/esm2020/core/media-marshaller/print-hook.mjs +265 -0
  86. package/esm2020/core/media-observer/index.mjs +9 -0
  87. package/esm2020/core/media-observer/media-observer.mjs +195 -0
  88. package/esm2020/core/media-trigger/index.mjs +9 -0
  89. package/esm2020/core/media-trigger/media-trigger.mjs +188 -0
  90. package/esm2020/core/module.mjs +27 -0
  91. package/esm2020/core/multiply/multiplier.mjs +16 -0
  92. package/esm2020/core/public-api.mjs +26 -0
  93. package/esm2020/core/style-builder/style-builder.mjs +15 -0
  94. package/esm2020/core/style-utils/style-utils.mjs +174 -0
  95. package/esm2020/core/stylesheet-map/index.mjs +9 -0
  96. package/esm2020/core/stylesheet-map/stylesheet-map.mjs +59 -0
  97. package/esm2020/core/tokens/breakpoint-token.mjs +13 -0
  98. package/esm2020/core/tokens/index.mjs +11 -0
  99. package/esm2020/core/tokens/library-config.mjs +30 -0
  100. package/esm2020/core/tokens/server-token.mjs +19 -0
  101. package/esm2020/core/utils/array.mjs +12 -0
  102. package/esm2020/core/utils/index.mjs +10 -0
  103. package/esm2020/core/utils/sort.mjs +20 -0
  104. package/esm2020/extended/angular-flex-layout-extended.mjs +5 -0
  105. package/esm2020/extended/class/class.mjs +88 -0
  106. package/esm2020/extended/img-src/img-src.mjs +106 -0
  107. package/esm2020/extended/module.mjs +45 -0
  108. package/esm2020/extended/public-api.mjs +13 -0
  109. package/esm2020/extended/show-hide/show-hide.mjs +176 -0
  110. package/esm2020/extended/style/style-transforms.mjs +76 -0
  111. package/esm2020/extended/style/style.mjs +130 -0
  112. package/esm2020/flex/angular-flex-layout-flex.mjs +5 -0
  113. package/esm2020/flex/flex/flex.mjs +291 -0
  114. package/esm2020/flex/flex-align/flex-align.mjs +80 -0
  115. package/esm2020/flex/flex-fill/flex-fill.mjs +50 -0
  116. package/esm2020/flex/flex-offset/flex-offset.mjs +121 -0
  117. package/esm2020/flex/flex-order/flex-order.mjs +66 -0
  118. package/esm2020/flex/layout/layout.mjs +86 -0
  119. package/esm2020/flex/layout-align/layout-align.mjs +194 -0
  120. package/esm2020/flex/layout-gap/layout-gap.mjs +282 -0
  121. package/esm2020/flex/module.mjs +62 -0
  122. package/esm2020/flex/public-api.mjs +17 -0
  123. package/esm2020/grid/align-columns/align-columns.mjs +137 -0
  124. package/esm2020/grid/align-rows/align-rows.mjs +119 -0
  125. package/esm2020/grid/angular-flex-layout-grid.mjs +5 -0
  126. package/esm2020/grid/area/area.mjs +67 -0
  127. package/esm2020/grid/areas/areas.mjs +86 -0
  128. package/esm2020/grid/auto/auto.mjs +89 -0
  129. package/esm2020/grid/column/column.mjs +67 -0
  130. package/esm2020/grid/columns/columns.mjs +96 -0
  131. package/esm2020/grid/gap/gap.mjs +85 -0
  132. package/esm2020/grid/grid-align/grid-align.mjs +111 -0
  133. package/esm2020/grid/module.mjs +73 -0
  134. package/esm2020/grid/public-api.mjs +20 -0
  135. package/esm2020/grid/row/row.mjs +67 -0
  136. package/esm2020/grid/rows/rows.mjs +96 -0
  137. package/esm2020/module.mjs +64 -0
  138. package/esm2020/public-api.mjs +20 -0
  139. package/esm2020/server/angular-flex-layout-server.mjs +5 -0
  140. package/esm2020/server/module.mjs +22 -0
  141. package/esm2020/server/public-api.mjs +10 -0
  142. package/esm2020/server/server-match-media.mjs +151 -0
  143. package/esm2020/server/server-provider.mjs +140 -0
  144. package/esm2020/version.mjs +11 -0
  145. package/extended/README.md +18 -0
  146. package/extended/angular-flex-layout-extended.d.ts +5 -0
  147. package/extended/class/class.d.ts +38 -0
  148. package/extended/img-src/img-src.d.ts +51 -0
  149. package/extended/module.d.ts +16 -0
  150. package/extended/package.json +10 -0
  151. package/extended/public-api.d.ts +12 -0
  152. package/extended/show-hide/show-hide.d.ts +61 -0
  153. package/extended/style/style-transforms.d.ts +36 -0
  154. package/extended/style/style.d.ts +45 -0
  155. package/fesm2015/angular-flex-layout-_private-utils-testing.mjs +357 -0
  156. package/fesm2015/angular-flex-layout-_private-utils-testing.mjs.map +1 -0
  157. package/fesm2015/angular-flex-layout-_private-utils.mjs +193 -0
  158. package/fesm2015/angular-flex-layout-_private-utils.mjs.map +1 -0
  159. package/fesm2015/angular-flex-layout-core.mjs +2331 -0
  160. package/fesm2015/angular-flex-layout-core.mjs.map +1 -0
  161. package/fesm2015/angular-flex-layout-extended.mjs +621 -0
  162. package/fesm2015/angular-flex-layout-extended.mjs.map +1 -0
  163. package/fesm2015/angular-flex-layout-flex.mjs +1206 -0
  164. package/fesm2015/angular-flex-layout-flex.mjs.map +1 -0
  165. package/fesm2015/angular-flex-layout-grid.mjs +1047 -0
  166. package/fesm2015/angular-flex-layout-grid.mjs.map +1 -0
  167. package/fesm2015/angular-flex-layout-server.mjs +324 -0
  168. package/fesm2015/angular-flex-layout-server.mjs.map +1 -0
  169. package/fesm2015/angular-flex-layout.mjs +94 -0
  170. package/fesm2015/angular-flex-layout.mjs.map +1 -0
  171. package/fesm2020/angular-flex-layout-_private-utils-testing.mjs +357 -0
  172. package/fesm2020/angular-flex-layout-_private-utils-testing.mjs.map +1 -0
  173. package/fesm2020/angular-flex-layout-_private-utils.mjs +192 -0
  174. package/fesm2020/angular-flex-layout-_private-utils.mjs.map +1 -0
  175. package/fesm2020/angular-flex-layout-core.mjs +2304 -0
  176. package/fesm2020/angular-flex-layout-core.mjs.map +1 -0
  177. package/fesm2020/angular-flex-layout-extended.mjs +612 -0
  178. package/fesm2020/angular-flex-layout-extended.mjs.map +1 -0
  179. package/fesm2020/angular-flex-layout-flex.mjs +1198 -0
  180. package/fesm2020/angular-flex-layout-flex.mjs.map +1 -0
  181. package/fesm2020/angular-flex-layout-grid.mjs +1047 -0
  182. package/fesm2020/angular-flex-layout-grid.mjs.map +1 -0
  183. package/fesm2020/angular-flex-layout-server.mjs +322 -0
  184. package/fesm2020/angular-flex-layout-server.mjs.map +1 -0
  185. package/fesm2020/angular-flex-layout.mjs +92 -0
  186. package/fesm2020/angular-flex-layout.mjs.map +1 -0
  187. package/flex/README.md +19 -0
  188. package/flex/angular-flex-layout-flex.d.ts +5 -0
  189. package/flex/flex/flex.d.ts +59 -0
  190. package/flex/flex-align/flex-align.d.ts +32 -0
  191. package/flex/flex-fill/flex-fill.d.ts +33 -0
  192. package/flex/flex-offset/flex-offset.d.ts +44 -0
  193. package/flex/flex-order/flex-order.d.ts +34 -0
  194. package/flex/layout/layout.d.ts +43 -0
  195. package/flex/layout-align/layout-align.d.ts +49 -0
  196. package/flex/layout-gap/layout-gap.d.ts +65 -0
  197. package/flex/module.d.ts +21 -0
  198. package/flex/package.json +10 -0
  199. package/flex/public-api.d.ts +16 -0
  200. package/grid/README.md +19 -0
  201. package/grid/align-columns/align-columns.d.ts +39 -0
  202. package/grid/align-rows/align-rows.d.ts +39 -0
  203. package/grid/angular-flex-layout-grid.d.ts +5 -0
  204. package/grid/area/area.d.ts +34 -0
  205. package/grid/areas/areas.d.ts +41 -0
  206. package/grid/auto/auto.d.ts +41 -0
  207. package/grid/column/column.d.ts +34 -0
  208. package/grid/columns/columns.d.ts +43 -0
  209. package/grid/gap/gap.d.ts +42 -0
  210. package/grid/grid-align/grid-align.d.ts +37 -0
  211. package/grid/module.d.ts +23 -0
  212. package/grid/package.json +10 -0
  213. package/grid/public-api.d.ts +19 -0
  214. package/grid/row/row.d.ts +34 -0
  215. package/grid/rows/rows.d.ts +43 -0
  216. package/module.d.ts +30 -0
  217. package/package.json +100 -0
  218. package/public-api.d.ts +18 -0
  219. package/server/README.md +23 -0
  220. package/server/angular-flex-layout-server.d.ts +5 -0
  221. package/server/module.d.ts +6 -0
  222. package/server/package.json +10 -0
  223. package/server/public-api.d.ts +9 -0
  224. package/server/server-match-media.d.ts +61 -0
  225. package/server/server-provider.d.ts +44 -0
  226. package/version.d.ts +10 -0
@@ -0,0 +1,1047 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Injectable, Directive, Input, NgModule } from '@angular/core';
3
+ import * as i1 from '@angular/flex-layout/core';
4
+ import { StyleBuilder, BaseDirective2, CoreModule } from '@angular/flex-layout/core';
5
+ import { coerceBooleanProperty } from '@angular/cdk/coercion';
6
+
7
+ /**
8
+ * @license
9
+ * Copyright Google LLC All Rights Reserved.
10
+ *
11
+ * Use of this source code is governed by an MIT-style license that can be
12
+ * found in the LICENSE file at https://angular.io/license
13
+ */
14
+ const ROW_DEFAULT = 'stretch';
15
+ const COL_DEFAULT = 'stretch';
16
+ class GridAlignStyleBuilder extends StyleBuilder {
17
+ buildStyles(input) {
18
+ return buildCss$2(input || ROW_DEFAULT);
19
+ }
20
+ }
21
+ GridAlignStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
22
+ GridAlignStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignStyleBuilder, providedIn: 'root' });
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignStyleBuilder, decorators: [{
24
+ type: Injectable,
25
+ args: [{ providedIn: 'root' }]
26
+ }] });
27
+ class GridAlignDirective extends BaseDirective2 {
28
+ constructor(elementRef, styleBuilder, styler, marshal) {
29
+ super(elementRef, styleBuilder, styler, marshal);
30
+ this.DIRECTIVE_KEY = 'grid-align';
31
+ this.styleCache = alignCache;
32
+ this.init();
33
+ }
34
+ }
35
+ GridAlignDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignDirective, deps: [{ token: i0.ElementRef }, { token: GridAlignStyleBuilder }, { token: i1.StyleUtils }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
36
+ GridAlignDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridAlignDirective, usesInheritance: true, ngImport: i0 });
37
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignDirective, decorators: [{
38
+ type: Directive
39
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: GridAlignStyleBuilder }, { type: i1.StyleUtils }, { type: i1.MediaMarshaller }]; } });
40
+ const alignCache = new Map();
41
+ const inputs$a = [
42
+ 'gdGridAlign',
43
+ 'gdGridAlign.xs', 'gdGridAlign.sm', 'gdGridAlign.md', 'gdGridAlign.lg', 'gdGridAlign.xl',
44
+ 'gdGridAlign.lt-sm', 'gdGridAlign.lt-md', 'gdGridAlign.lt-lg', 'gdGridAlign.lt-xl',
45
+ 'gdGridAlign.gt-xs', 'gdGridAlign.gt-sm', 'gdGridAlign.gt-md', 'gdGridAlign.gt-lg'
46
+ ];
47
+ const selector$a = `
48
+ [gdGridAlign],
49
+ [gdGridAlign.xs], [gdGridAlign.sm], [gdGridAlign.md], [gdGridAlign.lg],[gdGridAlign.xl],
50
+ [gdGridAlign.lt-sm], [gdGridAlign.lt-md], [gdGridAlign.lt-lg], [gdGridAlign.lt-xl],
51
+ [gdGridAlign.gt-xs], [gdGridAlign.gt-sm], [gdGridAlign.gt-md], [gdGridAlign.gt-lg]
52
+ `;
53
+ /**
54
+ * 'align' CSS Grid styling directive for grid children
55
+ * Defines positioning of child elements along row and column axis in a grid container
56
+ * Optional values: {row-axis} values or {row-axis column-axis} value pairs
57
+ *
58
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#prop-justify-self
59
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#prop-align-self
60
+ */
61
+ class DefaultGridAlignDirective extends GridAlignDirective {
62
+ constructor() {
63
+ super(...arguments);
64
+ this.inputs = inputs$a;
65
+ }
66
+ }
67
+ DefaultGridAlignDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAlignDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
68
+ DefaultGridAlignDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridAlignDirective, selector: "\n [gdGridAlign],\n [gdGridAlign.xs], [gdGridAlign.sm], [gdGridAlign.md], [gdGridAlign.lg],[gdGridAlign.xl],\n [gdGridAlign.lt-sm], [gdGridAlign.lt-md], [gdGridAlign.lt-lg], [gdGridAlign.lt-xl],\n [gdGridAlign.gt-xs], [gdGridAlign.gt-sm], [gdGridAlign.gt-md], [gdGridAlign.gt-lg]\n", inputs: { gdGridAlign: "gdGridAlign", "gdGridAlign.xs": "gdGridAlign.xs", "gdGridAlign.sm": "gdGridAlign.sm", "gdGridAlign.md": "gdGridAlign.md", "gdGridAlign.lg": "gdGridAlign.lg", "gdGridAlign.xl": "gdGridAlign.xl", "gdGridAlign.lt-sm": "gdGridAlign.lt-sm", "gdGridAlign.lt-md": "gdGridAlign.lt-md", "gdGridAlign.lt-lg": "gdGridAlign.lt-lg", "gdGridAlign.lt-xl": "gdGridAlign.lt-xl", "gdGridAlign.gt-xs": "gdGridAlign.gt-xs", "gdGridAlign.gt-sm": "gdGridAlign.gt-sm", "gdGridAlign.gt-md": "gdGridAlign.gt-md", "gdGridAlign.gt-lg": "gdGridAlign.gt-lg" }, usesInheritance: true, ngImport: i0 });
69
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAlignDirective, decorators: [{
70
+ type: Directive,
71
+ args: [{ selector: selector$a, inputs: inputs$a }]
72
+ }] });
73
+ function buildCss$2(align = '') {
74
+ const css = {}, [rowAxis, columnAxis] = align.split(' ');
75
+ // Row axis
76
+ switch (rowAxis) {
77
+ case 'end':
78
+ css['justify-self'] = 'end';
79
+ break;
80
+ case 'center':
81
+ css['justify-self'] = 'center';
82
+ break;
83
+ case 'stretch':
84
+ css['justify-self'] = 'stretch';
85
+ break;
86
+ case 'start':
87
+ css['justify-self'] = 'start';
88
+ break;
89
+ default:
90
+ css['justify-self'] = ROW_DEFAULT; // default row axis
91
+ break;
92
+ }
93
+ // Column axis
94
+ switch (columnAxis) {
95
+ case 'end':
96
+ css['align-self'] = 'end';
97
+ break;
98
+ case 'center':
99
+ css['align-self'] = 'center';
100
+ break;
101
+ case 'stretch':
102
+ css['align-self'] = 'stretch';
103
+ break;
104
+ case 'start':
105
+ css['align-self'] = 'start';
106
+ break;
107
+ default:
108
+ css['align-self'] = COL_DEFAULT; // default column axis
109
+ break;
110
+ }
111
+ return css;
112
+ }
113
+
114
+ /**
115
+ * @license
116
+ * Copyright Google LLC All Rights Reserved.
117
+ *
118
+ * Use of this source code is governed by an MIT-style license that can be
119
+ * found in the LICENSE file at https://angular.io/license
120
+ */
121
+ const DEFAULT_MAIN$1 = 'start';
122
+ const DEFAULT_CROSS$1 = 'stretch';
123
+ class GridAlignColumnsStyleBuilder extends StyleBuilder {
124
+ buildStyles(input, parent) {
125
+ return buildCss$1(input || `${DEFAULT_MAIN$1} ${DEFAULT_CROSS$1}`, parent.inline);
126
+ }
127
+ }
128
+ GridAlignColumnsStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignColumnsStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
129
+ GridAlignColumnsStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignColumnsStyleBuilder, providedIn: 'root' });
130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignColumnsStyleBuilder, decorators: [{
131
+ type: Injectable,
132
+ args: [{ providedIn: 'root' }]
133
+ }] });
134
+ class GridAlignColumnsDirective extends BaseDirective2 {
135
+ constructor(elementRef, styleBuilder, styler, marshal) {
136
+ super(elementRef, styleBuilder, styler, marshal);
137
+ this.DIRECTIVE_KEY = 'grid-align-columns';
138
+ this._inline = false;
139
+ this.init();
140
+ }
141
+ get inline() { return this._inline; }
142
+ set inline(val) { this._inline = coerceBooleanProperty(val); }
143
+ // *********************************************
144
+ // Protected methods
145
+ // *********************************************
146
+ updateWithValue(value) {
147
+ this.styleCache = this.inline ? alignColumnsInlineCache : alignColumnsCache;
148
+ this.addStyles(value, { inline: this.inline });
149
+ }
150
+ }
151
+ GridAlignColumnsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignColumnsDirective, deps: [{ token: i0.ElementRef }, { token: GridAlignColumnsStyleBuilder }, { token: i1.StyleUtils }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
152
+ GridAlignColumnsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridAlignColumnsDirective, inputs: { inline: ["gdInline", "inline"] }, usesInheritance: true, ngImport: i0 });
153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignColumnsDirective, decorators: [{
154
+ type: Directive
155
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: GridAlignColumnsStyleBuilder }, { type: i1.StyleUtils }, { type: i1.MediaMarshaller }]; }, propDecorators: { inline: [{
156
+ type: Input,
157
+ args: ['gdInline']
158
+ }] } });
159
+ const alignColumnsCache = new Map();
160
+ const alignColumnsInlineCache = new Map();
161
+ const inputs$9 = [
162
+ 'gdAlignColumns',
163
+ 'gdAlignColumns.xs', 'gdAlignColumns.sm', 'gdAlignColumns.md',
164
+ 'gdAlignColumns.lg', 'gdAlignColumns.xl', 'gdAlignColumns.lt-sm',
165
+ 'gdAlignColumns.lt-md', 'gdAlignColumns.lt-lg', 'gdAlignColumns.lt-xl',
166
+ 'gdAlignColumns.gt-xs', 'gdAlignColumns.gt-sm', 'gdAlignColumns.gt-md',
167
+ 'gdAlignColumns.gt-lg'
168
+ ];
169
+ const selector$9 = `
170
+ [gdAlignColumns],
171
+ [gdAlignColumns.xs], [gdAlignColumns.sm], [gdAlignColumns.md],
172
+ [gdAlignColumns.lg], [gdAlignColumns.xl], [gdAlignColumns.lt-sm],
173
+ [gdAlignColumns.lt-md], [gdAlignColumns.lt-lg], [gdAlignColumns.lt-xl],
174
+ [gdAlignColumns.gt-xs], [gdAlignColumns.gt-sm], [gdAlignColumns.gt-md],
175
+ [gdAlignColumns.gt-lg]
176
+ `;
177
+ /**
178
+ * 'column alignment' CSS Grid styling directive
179
+ * Configures the alignment in the column direction
180
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-19
181
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-21
182
+ */
183
+ class DefaultGridAlignColumnsDirective extends GridAlignColumnsDirective {
184
+ constructor() {
185
+ super(...arguments);
186
+ this.inputs = inputs$9;
187
+ }
188
+ }
189
+ DefaultGridAlignColumnsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAlignColumnsDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
190
+ DefaultGridAlignColumnsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridAlignColumnsDirective, selector: "\n [gdAlignColumns],\n [gdAlignColumns.xs], [gdAlignColumns.sm], [gdAlignColumns.md],\n [gdAlignColumns.lg], [gdAlignColumns.xl], [gdAlignColumns.lt-sm],\n [gdAlignColumns.lt-md], [gdAlignColumns.lt-lg], [gdAlignColumns.lt-xl],\n [gdAlignColumns.gt-xs], [gdAlignColumns.gt-sm], [gdAlignColumns.gt-md],\n [gdAlignColumns.gt-lg]\n", inputs: { gdAlignColumns: "gdAlignColumns", "gdAlignColumns.xs": "gdAlignColumns.xs", "gdAlignColumns.sm": "gdAlignColumns.sm", "gdAlignColumns.md": "gdAlignColumns.md", "gdAlignColumns.lg": "gdAlignColumns.lg", "gdAlignColumns.xl": "gdAlignColumns.xl", "gdAlignColumns.lt-sm": "gdAlignColumns.lt-sm", "gdAlignColumns.lt-md": "gdAlignColumns.lt-md", "gdAlignColumns.lt-lg": "gdAlignColumns.lt-lg", "gdAlignColumns.lt-xl": "gdAlignColumns.lt-xl", "gdAlignColumns.gt-xs": "gdAlignColumns.gt-xs", "gdAlignColumns.gt-sm": "gdAlignColumns.gt-sm", "gdAlignColumns.gt-md": "gdAlignColumns.gt-md", "gdAlignColumns.gt-lg": "gdAlignColumns.gt-lg" }, usesInheritance: true, ngImport: i0 });
191
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAlignColumnsDirective, decorators: [{
192
+ type: Directive,
193
+ args: [{ selector: selector$9, inputs: inputs$9 }]
194
+ }] });
195
+ function buildCss$1(align, inline) {
196
+ const css = {}, [mainAxis, crossAxis] = align.split(' ');
197
+ // Main axis
198
+ switch (mainAxis) {
199
+ case 'center':
200
+ css['align-content'] = 'center';
201
+ break;
202
+ case 'space-around':
203
+ css['align-content'] = 'space-around';
204
+ break;
205
+ case 'space-between':
206
+ css['align-content'] = 'space-between';
207
+ break;
208
+ case 'space-evenly':
209
+ css['align-content'] = 'space-evenly';
210
+ break;
211
+ case 'end':
212
+ css['align-content'] = 'end';
213
+ break;
214
+ case 'start':
215
+ css['align-content'] = 'start';
216
+ break;
217
+ case 'stretch':
218
+ css['align-content'] = 'stretch';
219
+ break;
220
+ default:
221
+ css['align-content'] = DEFAULT_MAIN$1; // default main axis
222
+ break;
223
+ }
224
+ // Cross-axis
225
+ switch (crossAxis) {
226
+ case 'start':
227
+ css['align-items'] = 'start';
228
+ break;
229
+ case 'center':
230
+ css['align-items'] = 'center';
231
+ break;
232
+ case 'end':
233
+ css['align-items'] = 'end';
234
+ break;
235
+ case 'stretch':
236
+ css['align-items'] = 'stretch';
237
+ break;
238
+ default: // 'stretch'
239
+ css['align-items'] = DEFAULT_CROSS$1; // default cross axis
240
+ break;
241
+ }
242
+ css['display'] = inline ? 'inline-grid' : 'grid';
243
+ return css;
244
+ }
245
+
246
+ /**
247
+ * @license
248
+ * Copyright Google LLC All Rights Reserved.
249
+ *
250
+ * Use of this source code is governed by an MIT-style license that can be
251
+ * found in the LICENSE file at https://angular.io/license
252
+ */
253
+ const DEFAULT_MAIN = 'start';
254
+ const DEFAULT_CROSS = 'stretch';
255
+ class GridAlignRowsStyleBuilder extends StyleBuilder {
256
+ buildStyles(input, parent) {
257
+ return buildCss(input || `${DEFAULT_MAIN} ${DEFAULT_CROSS}`, parent.inline);
258
+ }
259
+ }
260
+ GridAlignRowsStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignRowsStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
261
+ GridAlignRowsStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignRowsStyleBuilder, providedIn: 'root' });
262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignRowsStyleBuilder, decorators: [{
263
+ type: Injectable,
264
+ args: [{ providedIn: 'root' }]
265
+ }] });
266
+ class GridAlignRowsDirective extends BaseDirective2 {
267
+ constructor(elementRef, styleBuilder, styler, marshal) {
268
+ super(elementRef, styleBuilder, styler, marshal);
269
+ this.DIRECTIVE_KEY = 'grid-align-rows';
270
+ this._inline = false;
271
+ this.init();
272
+ }
273
+ get inline() { return this._inline; }
274
+ set inline(val) { this._inline = coerceBooleanProperty(val); }
275
+ // *********************************************
276
+ // Protected methods
277
+ // *********************************************
278
+ updateWithValue(value) {
279
+ this.styleCache = this.inline ? alignRowsInlineCache : alignRowsCache;
280
+ this.addStyles(value, { inline: this.inline });
281
+ }
282
+ }
283
+ GridAlignRowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignRowsDirective, deps: [{ token: i0.ElementRef }, { token: GridAlignRowsStyleBuilder }, { token: i1.StyleUtils }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
284
+ GridAlignRowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridAlignRowsDirective, inputs: { inline: ["gdInline", "inline"] }, usesInheritance: true, ngImport: i0 });
285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAlignRowsDirective, decorators: [{
286
+ type: Directive
287
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: GridAlignRowsStyleBuilder }, { type: i1.StyleUtils }, { type: i1.MediaMarshaller }]; }, propDecorators: { inline: [{
288
+ type: Input,
289
+ args: ['gdInline']
290
+ }] } });
291
+ const alignRowsCache = new Map();
292
+ const alignRowsInlineCache = new Map();
293
+ const inputs$8 = [
294
+ 'gdAlignRows',
295
+ 'gdAlignRows.xs', 'gdAlignRows.sm', 'gdAlignRows.md',
296
+ 'gdAlignRows.lg', 'gdAlignRows.xl', 'gdAlignRows.lt-sm',
297
+ 'gdAlignRows.lt-md', 'gdAlignRows.lt-lg', 'gdAlignRows.lt-xl',
298
+ 'gdAlignRows.gt-xs', 'gdAlignRows.gt-sm', 'gdAlignRows.gt-md',
299
+ 'gdAlignRows.gt-lg'
300
+ ];
301
+ const selector$8 = `
302
+ [gdAlignRows],
303
+ [gdAlignRows.xs], [gdAlignRows.sm], [gdAlignRows.md],
304
+ [gdAlignRows.lg], [gdAlignRows.xl], [gdAlignRows.lt-sm],
305
+ [gdAlignRows.lt-md], [gdAlignRows.lt-lg], [gdAlignRows.lt-xl],
306
+ [gdAlignRows.gt-xs], [gdAlignRows.gt-sm], [gdAlignRows.gt-md],
307
+ [gdAlignRows.gt-lg]
308
+ `;
309
+ /**
310
+ * 'row alignment' CSS Grid styling directive
311
+ * Configures the alignment in the row direction
312
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-18
313
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-20
314
+ */
315
+ class DefaultGridAlignRowsDirective extends GridAlignRowsDirective {
316
+ constructor() {
317
+ super(...arguments);
318
+ this.inputs = inputs$8;
319
+ }
320
+ }
321
+ DefaultGridAlignRowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAlignRowsDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
322
+ DefaultGridAlignRowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridAlignRowsDirective, selector: "\n [gdAlignRows],\n [gdAlignRows.xs], [gdAlignRows.sm], [gdAlignRows.md],\n [gdAlignRows.lg], [gdAlignRows.xl], [gdAlignRows.lt-sm],\n [gdAlignRows.lt-md], [gdAlignRows.lt-lg], [gdAlignRows.lt-xl],\n [gdAlignRows.gt-xs], [gdAlignRows.gt-sm], [gdAlignRows.gt-md],\n [gdAlignRows.gt-lg]\n", inputs: { gdAlignRows: "gdAlignRows", "gdAlignRows.xs": "gdAlignRows.xs", "gdAlignRows.sm": "gdAlignRows.sm", "gdAlignRows.md": "gdAlignRows.md", "gdAlignRows.lg": "gdAlignRows.lg", "gdAlignRows.xl": "gdAlignRows.xl", "gdAlignRows.lt-sm": "gdAlignRows.lt-sm", "gdAlignRows.lt-md": "gdAlignRows.lt-md", "gdAlignRows.lt-lg": "gdAlignRows.lt-lg", "gdAlignRows.lt-xl": "gdAlignRows.lt-xl", "gdAlignRows.gt-xs": "gdAlignRows.gt-xs", "gdAlignRows.gt-sm": "gdAlignRows.gt-sm", "gdAlignRows.gt-md": "gdAlignRows.gt-md", "gdAlignRows.gt-lg": "gdAlignRows.gt-lg" }, usesInheritance: true, ngImport: i0 });
323
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAlignRowsDirective, decorators: [{
324
+ type: Directive,
325
+ args: [{ selector: selector$8, inputs: inputs$8 }]
326
+ }] });
327
+ function buildCss(align, inline) {
328
+ const css = {}, [mainAxis, crossAxis] = align.split(' ');
329
+ // Main axis
330
+ switch (mainAxis) {
331
+ case 'center':
332
+ case 'space-around':
333
+ case 'space-between':
334
+ case 'space-evenly':
335
+ case 'end':
336
+ case 'start':
337
+ case 'stretch':
338
+ css['justify-content'] = mainAxis;
339
+ break;
340
+ default:
341
+ css['justify-content'] = DEFAULT_MAIN; // default main axis
342
+ break;
343
+ }
344
+ // Cross-axis
345
+ switch (crossAxis) {
346
+ case 'start':
347
+ case 'center':
348
+ case 'end':
349
+ case 'stretch':
350
+ css['justify-items'] = crossAxis;
351
+ break;
352
+ default: // 'stretch'
353
+ css['justify-items'] = DEFAULT_CROSS; // default cross axis
354
+ break;
355
+ }
356
+ css['display'] = inline ? 'inline-grid' : 'grid';
357
+ return css;
358
+ }
359
+
360
+ /**
361
+ * @license
362
+ * Copyright Google LLC All Rights Reserved.
363
+ *
364
+ * Use of this source code is governed by an MIT-style license that can be
365
+ * found in the LICENSE file at https://angular.io/license
366
+ */
367
+ const DEFAULT_VALUE$7 = 'auto';
368
+ class GridAreaStyleBuilder extends StyleBuilder {
369
+ buildStyles(input) {
370
+ return { 'grid-area': input || DEFAULT_VALUE$7 };
371
+ }
372
+ }
373
+ GridAreaStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreaStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
374
+ GridAreaStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreaStyleBuilder, providedIn: 'root' });
375
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreaStyleBuilder, decorators: [{
376
+ type: Injectable,
377
+ args: [{ providedIn: 'root' }]
378
+ }] });
379
+ class GridAreaDirective extends BaseDirective2 {
380
+ constructor(elRef, styleUtils, styleBuilder, marshal) {
381
+ super(elRef, styleBuilder, styleUtils, marshal);
382
+ this.DIRECTIVE_KEY = 'grid-area';
383
+ this.styleCache = gridAreaCache;
384
+ this.init();
385
+ }
386
+ }
387
+ GridAreaDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreaDirective, deps: [{ token: i0.ElementRef }, { token: i1.StyleUtils }, { token: GridAreaStyleBuilder }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
388
+ GridAreaDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridAreaDirective, usesInheritance: true, ngImport: i0 });
389
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreaDirective, decorators: [{
390
+ type: Directive
391
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.StyleUtils }, { type: GridAreaStyleBuilder }, { type: i1.MediaMarshaller }]; } });
392
+ const gridAreaCache = new Map();
393
+ const inputs$7 = [
394
+ 'gdArea',
395
+ 'gdArea.xs', 'gdArea.sm', 'gdArea.md', 'gdArea.lg', 'gdArea.xl',
396
+ 'gdArea.lt-sm', 'gdArea.lt-md', 'gdArea.lt-lg', 'gdArea.lt-xl',
397
+ 'gdArea.gt-xs', 'gdArea.gt-sm', 'gdArea.gt-md', 'gdArea.gt-lg'
398
+ ];
399
+ const selector$7 = `
400
+ [gdArea],
401
+ [gdArea.xs], [gdArea.sm], [gdArea.md], [gdArea.lg], [gdArea.xl],
402
+ [gdArea.lt-sm], [gdArea.lt-md], [gdArea.lt-lg], [gdArea.lt-xl],
403
+ [gdArea.gt-xs], [gdArea.gt-sm], [gdArea.gt-md], [gdArea.gt-lg]
404
+ `;
405
+ /**
406
+ * 'grid-area' CSS Grid styling directive
407
+ * Configures the name or position of an element within the grid
408
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-27
409
+ */
410
+ class DefaultGridAreaDirective extends GridAreaDirective {
411
+ constructor() {
412
+ super(...arguments);
413
+ this.inputs = inputs$7;
414
+ }
415
+ }
416
+ DefaultGridAreaDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAreaDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
417
+ DefaultGridAreaDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridAreaDirective, selector: "\n [gdArea],\n [gdArea.xs], [gdArea.sm], [gdArea.md], [gdArea.lg], [gdArea.xl],\n [gdArea.lt-sm], [gdArea.lt-md], [gdArea.lt-lg], [gdArea.lt-xl],\n [gdArea.gt-xs], [gdArea.gt-sm], [gdArea.gt-md], [gdArea.gt-lg]\n", inputs: { gdArea: "gdArea", "gdArea.xs": "gdArea.xs", "gdArea.sm": "gdArea.sm", "gdArea.md": "gdArea.md", "gdArea.lg": "gdArea.lg", "gdArea.xl": "gdArea.xl", "gdArea.lt-sm": "gdArea.lt-sm", "gdArea.lt-md": "gdArea.lt-md", "gdArea.lt-lg": "gdArea.lt-lg", "gdArea.lt-xl": "gdArea.lt-xl", "gdArea.gt-xs": "gdArea.gt-xs", "gdArea.gt-sm": "gdArea.gt-sm", "gdArea.gt-md": "gdArea.gt-md", "gdArea.gt-lg": "gdArea.gt-lg" }, usesInheritance: true, ngImport: i0 });
418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAreaDirective, decorators: [{
419
+ type: Directive,
420
+ args: [{ selector: selector$7, inputs: inputs$7 }]
421
+ }] });
422
+
423
+ /**
424
+ * @license
425
+ * Copyright Google LLC All Rights Reserved.
426
+ *
427
+ * Use of this source code is governed by an MIT-style license that can be
428
+ * found in the LICENSE file at https://angular.io/license
429
+ */
430
+ const DEFAULT_VALUE$6 = 'none';
431
+ const DELIMETER = '|';
432
+ class GridAreasStyleBuiler extends StyleBuilder {
433
+ buildStyles(input, parent) {
434
+ const areas = (input || DEFAULT_VALUE$6).split(DELIMETER).map(v => `"${v.trim()}"`);
435
+ return {
436
+ 'display': parent.inline ? 'inline-grid' : 'grid',
437
+ 'grid-template-areas': areas.join(' ')
438
+ };
439
+ }
440
+ }
441
+ GridAreasStyleBuiler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreasStyleBuiler, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
442
+ GridAreasStyleBuiler.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreasStyleBuiler, providedIn: 'root' });
443
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreasStyleBuiler, decorators: [{
444
+ type: Injectable,
445
+ args: [{ providedIn: 'root' }]
446
+ }] });
447
+ class GridAreasDirective extends BaseDirective2 {
448
+ constructor(elRef, styleUtils, styleBuilder, marshal) {
449
+ super(elRef, styleBuilder, styleUtils, marshal);
450
+ this.DIRECTIVE_KEY = 'grid-areas';
451
+ this._inline = false;
452
+ this.init();
453
+ }
454
+ get inline() { return this._inline; }
455
+ set inline(val) { this._inline = coerceBooleanProperty(val); }
456
+ // *********************************************
457
+ // Protected methods
458
+ // *********************************************
459
+ updateWithValue(value) {
460
+ this.styleCache = this.inline ? areasInlineCache : areasCache;
461
+ this.addStyles(value, { inline: this.inline });
462
+ }
463
+ }
464
+ GridAreasDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreasDirective, deps: [{ token: i0.ElementRef }, { token: i1.StyleUtils }, { token: GridAreasStyleBuiler }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
465
+ GridAreasDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridAreasDirective, inputs: { inline: ["gdInline", "inline"] }, usesInheritance: true, ngImport: i0 });
466
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAreasDirective, decorators: [{
467
+ type: Directive
468
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.StyleUtils }, { type: GridAreasStyleBuiler }, { type: i1.MediaMarshaller }]; }, propDecorators: { inline: [{
469
+ type: Input,
470
+ args: ['gdInline']
471
+ }] } });
472
+ const areasCache = new Map();
473
+ const areasInlineCache = new Map();
474
+ const inputs$6 = [
475
+ 'gdAreas',
476
+ 'gdAreas.xs', 'gdAreas.sm', 'gdAreas.md', 'gdAreas.lg', 'gdAreas.xl',
477
+ 'gdAreas.lt-sm', 'gdAreas.lt-md', 'gdAreas.lt-lg', 'gdAreas.lt-xl',
478
+ 'gdAreas.gt-xs', 'gdAreas.gt-sm', 'gdAreas.gt-md', 'gdAreas.gt-lg'
479
+ ];
480
+ const selector$6 = `
481
+ [gdAreas],
482
+ [gdAreas.xs], [gdAreas.sm], [gdAreas.md], [gdAreas.lg], [gdAreas.xl],
483
+ [gdAreas.lt-sm], [gdAreas.lt-md], [gdAreas.lt-lg], [gdAreas.lt-xl],
484
+ [gdAreas.gt-xs], [gdAreas.gt-sm], [gdAreas.gt-md], [gdAreas.gt-lg]
485
+ `;
486
+ /**
487
+ * 'grid-template-areas' CSS Grid styling directive
488
+ * Configures the names of elements within the grid
489
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-14
490
+ */
491
+ class DefaultGridAreasDirective extends GridAreasDirective {
492
+ constructor() {
493
+ super(...arguments);
494
+ this.inputs = inputs$6;
495
+ }
496
+ }
497
+ DefaultGridAreasDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAreasDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
498
+ DefaultGridAreasDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridAreasDirective, selector: "\n [gdAreas],\n [gdAreas.xs], [gdAreas.sm], [gdAreas.md], [gdAreas.lg], [gdAreas.xl],\n [gdAreas.lt-sm], [gdAreas.lt-md], [gdAreas.lt-lg], [gdAreas.lt-xl],\n [gdAreas.gt-xs], [gdAreas.gt-sm], [gdAreas.gt-md], [gdAreas.gt-lg]\n", inputs: { gdAreas: "gdAreas", "gdAreas.xs": "gdAreas.xs", "gdAreas.sm": "gdAreas.sm", "gdAreas.md": "gdAreas.md", "gdAreas.lg": "gdAreas.lg", "gdAreas.xl": "gdAreas.xl", "gdAreas.lt-sm": "gdAreas.lt-sm", "gdAreas.lt-md": "gdAreas.lt-md", "gdAreas.lt-lg": "gdAreas.lt-lg", "gdAreas.lt-xl": "gdAreas.lt-xl", "gdAreas.gt-xs": "gdAreas.gt-xs", "gdAreas.gt-sm": "gdAreas.gt-sm", "gdAreas.gt-md": "gdAreas.gt-md", "gdAreas.gt-lg": "gdAreas.gt-lg" }, usesInheritance: true, ngImport: i0 });
499
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAreasDirective, decorators: [{
500
+ type: Directive,
501
+ args: [{ selector: selector$6, inputs: inputs$6 }]
502
+ }] });
503
+
504
+ /**
505
+ * @license
506
+ * Copyright Google LLC All Rights Reserved.
507
+ *
508
+ * Use of this source code is governed by an MIT-style license that can be
509
+ * found in the LICENSE file at https://angular.io/license
510
+ */
511
+ const DEFAULT_VALUE$5 = 'initial';
512
+ class GridAutoStyleBuilder extends StyleBuilder {
513
+ buildStyles(input, parent) {
514
+ let [direction, dense] = (input || DEFAULT_VALUE$5).split(' ');
515
+ if (direction !== 'column' && direction !== 'row' && direction !== 'dense') {
516
+ direction = 'row';
517
+ }
518
+ dense = (dense === 'dense' && direction !== 'dense') ? ' dense' : '';
519
+ return {
520
+ 'display': parent.inline ? 'inline-grid' : 'grid',
521
+ 'grid-auto-flow': direction + dense
522
+ };
523
+ }
524
+ }
525
+ GridAutoStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAutoStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
526
+ GridAutoStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAutoStyleBuilder, providedIn: 'root' });
527
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAutoStyleBuilder, decorators: [{
528
+ type: Injectable,
529
+ args: [{ providedIn: 'root' }]
530
+ }] });
531
+ class GridAutoDirective extends BaseDirective2 {
532
+ constructor(elementRef, styleBuilder, styler, marshal) {
533
+ super(elementRef, styleBuilder, styler, marshal);
534
+ this._inline = false;
535
+ this.DIRECTIVE_KEY = 'grid-auto';
536
+ this.init();
537
+ }
538
+ get inline() { return this._inline; }
539
+ set inline(val) { this._inline = coerceBooleanProperty(val); }
540
+ // *********************************************
541
+ // Protected methods
542
+ // *********************************************
543
+ updateWithValue(value) {
544
+ this.styleCache = this.inline ? autoInlineCache : autoCache;
545
+ this.addStyles(value, { inline: this.inline });
546
+ }
547
+ }
548
+ GridAutoDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAutoDirective, deps: [{ token: i0.ElementRef }, { token: GridAutoStyleBuilder }, { token: i1.StyleUtils }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
549
+ GridAutoDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridAutoDirective, inputs: { inline: ["gdInline", "inline"] }, usesInheritance: true, ngImport: i0 });
550
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridAutoDirective, decorators: [{
551
+ type: Directive
552
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: GridAutoStyleBuilder }, { type: i1.StyleUtils }, { type: i1.MediaMarshaller }]; }, propDecorators: { inline: [{
553
+ type: Input,
554
+ args: ['gdInline']
555
+ }] } });
556
+ const autoCache = new Map();
557
+ const autoInlineCache = new Map();
558
+ const inputs$5 = [
559
+ 'gdAuto',
560
+ 'gdAuto.xs', 'gdAuto.sm', 'gdAuto.md', 'gdAuto.lg', 'gdAuto.xl',
561
+ 'gdAuto.lt-sm', 'gdAuto.lt-md', 'gdAuto.lt-lg', 'gdAuto.lt-xl',
562
+ 'gdAuto.gt-xs', 'gdAuto.gt-sm', 'gdAuto.gt-md', 'gdAuto.gt-lg'
563
+ ];
564
+ const selector$5 = `
565
+ [gdAuto],
566
+ [gdAuto.xs], [gdAuto.sm], [gdAuto.md], [gdAuto.lg], [gdAuto.xl],
567
+ [gdAuto.lt-sm], [gdAuto.lt-md], [gdAuto.lt-lg], [gdAuto.lt-xl],
568
+ [gdAuto.gt-xs], [gdAuto.gt-sm], [gdAuto.gt-md], [gdAuto.gt-lg]
569
+ `;
570
+ /**
571
+ * 'grid-auto-flow' CSS Grid styling directive
572
+ * Configures the auto placement algorithm for the grid
573
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-23
574
+ */
575
+ class DefaultGridAutoDirective extends GridAutoDirective {
576
+ constructor() {
577
+ super(...arguments);
578
+ this.inputs = inputs$5;
579
+ }
580
+ }
581
+ DefaultGridAutoDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAutoDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
582
+ DefaultGridAutoDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridAutoDirective, selector: "\n [gdAuto],\n [gdAuto.xs], [gdAuto.sm], [gdAuto.md], [gdAuto.lg], [gdAuto.xl],\n [gdAuto.lt-sm], [gdAuto.lt-md], [gdAuto.lt-lg], [gdAuto.lt-xl],\n [gdAuto.gt-xs], [gdAuto.gt-sm], [gdAuto.gt-md], [gdAuto.gt-lg]\n", inputs: { gdAuto: "gdAuto", "gdAuto.xs": "gdAuto.xs", "gdAuto.sm": "gdAuto.sm", "gdAuto.md": "gdAuto.md", "gdAuto.lg": "gdAuto.lg", "gdAuto.xl": "gdAuto.xl", "gdAuto.lt-sm": "gdAuto.lt-sm", "gdAuto.lt-md": "gdAuto.lt-md", "gdAuto.lt-lg": "gdAuto.lt-lg", "gdAuto.lt-xl": "gdAuto.lt-xl", "gdAuto.gt-xs": "gdAuto.gt-xs", "gdAuto.gt-sm": "gdAuto.gt-sm", "gdAuto.gt-md": "gdAuto.gt-md", "gdAuto.gt-lg": "gdAuto.gt-lg" }, usesInheritance: true, ngImport: i0 });
583
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridAutoDirective, decorators: [{
584
+ type: Directive,
585
+ args: [{ selector: selector$5, inputs: inputs$5 }]
586
+ }] });
587
+
588
+ /**
589
+ * @license
590
+ * Copyright Google LLC All Rights Reserved.
591
+ *
592
+ * Use of this source code is governed by an MIT-style license that can be
593
+ * found in the LICENSE file at https://angular.io/license
594
+ */
595
+ const DEFAULT_VALUE$4 = 'auto';
596
+ class GridColumnStyleBuilder extends StyleBuilder {
597
+ buildStyles(input) {
598
+ return { 'grid-column': input || DEFAULT_VALUE$4 };
599
+ }
600
+ }
601
+ GridColumnStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
602
+ GridColumnStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnStyleBuilder, providedIn: 'root' });
603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnStyleBuilder, decorators: [{
604
+ type: Injectable,
605
+ args: [{ providedIn: 'root' }]
606
+ }] });
607
+ class GridColumnDirective extends BaseDirective2 {
608
+ constructor(elementRef, styleBuilder, styler, marshal) {
609
+ super(elementRef, styleBuilder, styler, marshal);
610
+ this.DIRECTIVE_KEY = 'grid-column';
611
+ this.styleCache = columnCache;
612
+ this.init();
613
+ }
614
+ }
615
+ GridColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnDirective, deps: [{ token: i0.ElementRef }, { token: GridColumnStyleBuilder }, { token: i1.StyleUtils }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
616
+ GridColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridColumnDirective, usesInheritance: true, ngImport: i0 });
617
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnDirective, decorators: [{
618
+ type: Directive
619
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: GridColumnStyleBuilder }, { type: i1.StyleUtils }, { type: i1.MediaMarshaller }]; } });
620
+ const columnCache = new Map();
621
+ const inputs$4 = [
622
+ 'gdColumn',
623
+ 'gdColumn.xs', 'gdColumn.sm', 'gdColumn.md', 'gdColumn.lg', 'gdColumn.xl',
624
+ 'gdColumn.lt-sm', 'gdColumn.lt-md', 'gdColumn.lt-lg', 'gdColumn.lt-xl',
625
+ 'gdColumn.gt-xs', 'gdColumn.gt-sm', 'gdColumn.gt-md', 'gdColumn.gt-lg'
626
+ ];
627
+ const selector$4 = `
628
+ [gdColumn],
629
+ [gdColumn.xs], [gdColumn.sm], [gdColumn.md], [gdColumn.lg], [gdColumn.xl],
630
+ [gdColumn.lt-sm], [gdColumn.lt-md], [gdColumn.lt-lg], [gdColumn.lt-xl],
631
+ [gdColumn.gt-xs], [gdColumn.gt-sm], [gdColumn.gt-md], [gdColumn.gt-lg]
632
+ `;
633
+ /**
634
+ * 'grid-column' CSS Grid styling directive
635
+ * Configures the name or position of an element within the grid
636
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-26
637
+ */
638
+ class DefaultGridColumnDirective extends GridColumnDirective {
639
+ constructor() {
640
+ super(...arguments);
641
+ this.inputs = inputs$4;
642
+ }
643
+ }
644
+ DefaultGridColumnDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridColumnDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
645
+ DefaultGridColumnDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridColumnDirective, selector: "\n [gdColumn],\n [gdColumn.xs], [gdColumn.sm], [gdColumn.md], [gdColumn.lg], [gdColumn.xl],\n [gdColumn.lt-sm], [gdColumn.lt-md], [gdColumn.lt-lg], [gdColumn.lt-xl],\n [gdColumn.gt-xs], [gdColumn.gt-sm], [gdColumn.gt-md], [gdColumn.gt-lg]\n", inputs: { gdColumn: "gdColumn", "gdColumn.xs": "gdColumn.xs", "gdColumn.sm": "gdColumn.sm", "gdColumn.md": "gdColumn.md", "gdColumn.lg": "gdColumn.lg", "gdColumn.xl": "gdColumn.xl", "gdColumn.lt-sm": "gdColumn.lt-sm", "gdColumn.lt-md": "gdColumn.lt-md", "gdColumn.lt-lg": "gdColumn.lt-lg", "gdColumn.lt-xl": "gdColumn.lt-xl", "gdColumn.gt-xs": "gdColumn.gt-xs", "gdColumn.gt-sm": "gdColumn.gt-sm", "gdColumn.gt-md": "gdColumn.gt-md", "gdColumn.gt-lg": "gdColumn.gt-lg" }, usesInheritance: true, ngImport: i0 });
646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridColumnDirective, decorators: [{
647
+ type: Directive,
648
+ args: [{ selector: selector$4, inputs: inputs$4 }]
649
+ }] });
650
+
651
+ /**
652
+ * @license
653
+ * Copyright Google LLC All Rights Reserved.
654
+ *
655
+ * Use of this source code is governed by an MIT-style license that can be
656
+ * found in the LICENSE file at https://angular.io/license
657
+ */
658
+ const DEFAULT_VALUE$3 = 'none';
659
+ const AUTO_SPECIFIER$1 = '!';
660
+ class GridColumnsStyleBuilder extends StyleBuilder {
661
+ buildStyles(input, parent) {
662
+ input = input || DEFAULT_VALUE$3;
663
+ let auto = false;
664
+ if (input.endsWith(AUTO_SPECIFIER$1)) {
665
+ input = input.substring(0, input.indexOf(AUTO_SPECIFIER$1));
666
+ auto = true;
667
+ }
668
+ const css = {
669
+ 'display': parent.inline ? 'inline-grid' : 'grid',
670
+ 'grid-auto-columns': '',
671
+ 'grid-template-columns': '',
672
+ };
673
+ const key = (auto ? 'grid-auto-columns' : 'grid-template-columns');
674
+ css[key] = input;
675
+ return css;
676
+ }
677
+ }
678
+ GridColumnsStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnsStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
679
+ GridColumnsStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnsStyleBuilder, providedIn: 'root' });
680
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnsStyleBuilder, decorators: [{
681
+ type: Injectable,
682
+ args: [{ providedIn: 'root' }]
683
+ }] });
684
+ class GridColumnsDirective extends BaseDirective2 {
685
+ constructor(elementRef, styleBuilder, styler, marshal) {
686
+ super(elementRef, styleBuilder, styler, marshal);
687
+ this.DIRECTIVE_KEY = 'grid-columns';
688
+ this._inline = false;
689
+ this.init();
690
+ }
691
+ get inline() { return this._inline; }
692
+ set inline(val) { this._inline = coerceBooleanProperty(val); }
693
+ // *********************************************
694
+ // Protected methods
695
+ // *********************************************
696
+ updateWithValue(value) {
697
+ this.styleCache = this.inline ? columnsInlineCache : columnsCache;
698
+ this.addStyles(value, { inline: this.inline });
699
+ }
700
+ }
701
+ GridColumnsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnsDirective, deps: [{ token: i0.ElementRef }, { token: GridColumnsStyleBuilder }, { token: i1.StyleUtils }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
702
+ GridColumnsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridColumnsDirective, inputs: { inline: ["gdInline", "inline"] }, usesInheritance: true, ngImport: i0 });
703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridColumnsDirective, decorators: [{
704
+ type: Directive
705
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: GridColumnsStyleBuilder }, { type: i1.StyleUtils }, { type: i1.MediaMarshaller }]; }, propDecorators: { inline: [{
706
+ type: Input,
707
+ args: ['gdInline']
708
+ }] } });
709
+ const columnsCache = new Map();
710
+ const columnsInlineCache = new Map();
711
+ const inputs$3 = [
712
+ 'gdColumns',
713
+ 'gdColumns.xs', 'gdColumns.sm', 'gdColumns.md', 'gdColumns.lg', 'gdColumns.xl',
714
+ 'gdColumns.lt-sm', 'gdColumns.lt-md', 'gdColumns.lt-lg', 'gdColumns.lt-xl',
715
+ 'gdColumns.gt-xs', 'gdColumns.gt-sm', 'gdColumns.gt-md', 'gdColumns.gt-lg'
716
+ ];
717
+ const selector$3 = `
718
+ [gdColumns],
719
+ [gdColumns.xs], [gdColumns.sm], [gdColumns.md], [gdColumns.lg], [gdColumns.xl],
720
+ [gdColumns.lt-sm], [gdColumns.lt-md], [gdColumns.lt-lg], [gdColumns.lt-xl],
721
+ [gdColumns.gt-xs], [gdColumns.gt-sm], [gdColumns.gt-md], [gdColumns.gt-lg]
722
+ `;
723
+ /**
724
+ * 'grid-template-columns' CSS Grid styling directive
725
+ * Configures the sizing for the columns in the grid
726
+ * Syntax: <column value> [auto]
727
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-13
728
+ */
729
+ class DefaultGridColumnsDirective extends GridColumnsDirective {
730
+ constructor() {
731
+ super(...arguments);
732
+ this.inputs = inputs$3;
733
+ }
734
+ }
735
+ DefaultGridColumnsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridColumnsDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
736
+ DefaultGridColumnsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridColumnsDirective, selector: "\n [gdColumns],\n [gdColumns.xs], [gdColumns.sm], [gdColumns.md], [gdColumns.lg], [gdColumns.xl],\n [gdColumns.lt-sm], [gdColumns.lt-md], [gdColumns.lt-lg], [gdColumns.lt-xl],\n [gdColumns.gt-xs], [gdColumns.gt-sm], [gdColumns.gt-md], [gdColumns.gt-lg]\n", inputs: { gdColumns: "gdColumns", "gdColumns.xs": "gdColumns.xs", "gdColumns.sm": "gdColumns.sm", "gdColumns.md": "gdColumns.md", "gdColumns.lg": "gdColumns.lg", "gdColumns.xl": "gdColumns.xl", "gdColumns.lt-sm": "gdColumns.lt-sm", "gdColumns.lt-md": "gdColumns.lt-md", "gdColumns.lt-lg": "gdColumns.lt-lg", "gdColumns.lt-xl": "gdColumns.lt-xl", "gdColumns.gt-xs": "gdColumns.gt-xs", "gdColumns.gt-sm": "gdColumns.gt-sm", "gdColumns.gt-md": "gdColumns.gt-md", "gdColumns.gt-lg": "gdColumns.gt-lg" }, usesInheritance: true, ngImport: i0 });
737
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridColumnsDirective, decorators: [{
738
+ type: Directive,
739
+ args: [{ selector: selector$3, inputs: inputs$3 }]
740
+ }] });
741
+
742
+ /**
743
+ * @license
744
+ * Copyright Google LLC All Rights Reserved.
745
+ *
746
+ * Use of this source code is governed by an MIT-style license that can be
747
+ * found in the LICENSE file at https://angular.io/license
748
+ */
749
+ const DEFAULT_VALUE$2 = '0';
750
+ class GridGapStyleBuilder extends StyleBuilder {
751
+ buildStyles(input, parent) {
752
+ return {
753
+ 'display': parent.inline ? 'inline-grid' : 'grid',
754
+ 'grid-gap': input || DEFAULT_VALUE$2
755
+ };
756
+ }
757
+ }
758
+ GridGapStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridGapStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
759
+ GridGapStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridGapStyleBuilder, providedIn: 'root' });
760
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridGapStyleBuilder, decorators: [{
761
+ type: Injectable,
762
+ args: [{ providedIn: 'root' }]
763
+ }] });
764
+ class GridGapDirective extends BaseDirective2 {
765
+ constructor(elRef, styleUtils, styleBuilder, marshal) {
766
+ super(elRef, styleBuilder, styleUtils, marshal);
767
+ this.DIRECTIVE_KEY = 'grid-gap';
768
+ this._inline = false;
769
+ this.init();
770
+ }
771
+ get inline() { return this._inline; }
772
+ set inline(val) { this._inline = coerceBooleanProperty(val); }
773
+ // *********************************************
774
+ // Protected methods
775
+ // *********************************************
776
+ updateWithValue(value) {
777
+ this.styleCache = this.inline ? gapInlineCache : gapCache;
778
+ this.addStyles(value, { inline: this.inline });
779
+ }
780
+ }
781
+ GridGapDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridGapDirective, deps: [{ token: i0.ElementRef }, { token: i1.StyleUtils }, { token: GridGapStyleBuilder }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
782
+ GridGapDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridGapDirective, inputs: { inline: ["gdInline", "inline"] }, usesInheritance: true, ngImport: i0 });
783
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridGapDirective, decorators: [{
784
+ type: Directive
785
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.StyleUtils }, { type: GridGapStyleBuilder }, { type: i1.MediaMarshaller }]; }, propDecorators: { inline: [{
786
+ type: Input,
787
+ args: ['gdInline']
788
+ }] } });
789
+ const gapCache = new Map();
790
+ const gapInlineCache = new Map();
791
+ const inputs$2 = [
792
+ 'gdGap',
793
+ 'gdGap.xs', 'gdGap.sm', 'gdGap.md', 'gdGap.lg', 'gdGap.xl',
794
+ 'gdGap.lt-sm', 'gdGap.lt-md', 'gdGap.lt-lg', 'gdGap.lt-xl',
795
+ 'gdGap.gt-xs', 'gdGap.gt-sm', 'gdGap.gt-md', 'gdGap.gt-lg'
796
+ ];
797
+ const selector$2 = `
798
+ [gdGap],
799
+ [gdGap.xs], [gdGap.sm], [gdGap.md], [gdGap.lg], [gdGap.xl],
800
+ [gdGap.lt-sm], [gdGap.lt-md], [gdGap.lt-lg], [gdGap.lt-xl],
801
+ [gdGap.gt-xs], [gdGap.gt-sm], [gdGap.gt-md], [gdGap.gt-lg]
802
+ `;
803
+ /**
804
+ * 'grid-gap' CSS Grid styling directive
805
+ * Configures the gap between items in the grid
806
+ * Syntax: <row gap> [<column-gap>]
807
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-17
808
+ */
809
+ class DefaultGridGapDirective extends GridGapDirective {
810
+ constructor() {
811
+ super(...arguments);
812
+ this.inputs = inputs$2;
813
+ }
814
+ }
815
+ DefaultGridGapDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridGapDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
816
+ DefaultGridGapDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridGapDirective, selector: "\n [gdGap],\n [gdGap.xs], [gdGap.sm], [gdGap.md], [gdGap.lg], [gdGap.xl],\n [gdGap.lt-sm], [gdGap.lt-md], [gdGap.lt-lg], [gdGap.lt-xl],\n [gdGap.gt-xs], [gdGap.gt-sm], [gdGap.gt-md], [gdGap.gt-lg]\n", inputs: { gdGap: "gdGap", "gdGap.xs": "gdGap.xs", "gdGap.sm": "gdGap.sm", "gdGap.md": "gdGap.md", "gdGap.lg": "gdGap.lg", "gdGap.xl": "gdGap.xl", "gdGap.lt-sm": "gdGap.lt-sm", "gdGap.lt-md": "gdGap.lt-md", "gdGap.lt-lg": "gdGap.lt-lg", "gdGap.lt-xl": "gdGap.lt-xl", "gdGap.gt-xs": "gdGap.gt-xs", "gdGap.gt-sm": "gdGap.gt-sm", "gdGap.gt-md": "gdGap.gt-md", "gdGap.gt-lg": "gdGap.gt-lg" }, usesInheritance: true, ngImport: i0 });
817
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridGapDirective, decorators: [{
818
+ type: Directive,
819
+ args: [{ selector: selector$2, inputs: inputs$2 }]
820
+ }] });
821
+
822
+ /**
823
+ * @license
824
+ * Copyright Google LLC All Rights Reserved.
825
+ *
826
+ * Use of this source code is governed by an MIT-style license that can be
827
+ * found in the LICENSE file at https://angular.io/license
828
+ */
829
+ const DEFAULT_VALUE$1 = 'auto';
830
+ class GridRowStyleBuilder extends StyleBuilder {
831
+ buildStyles(input) {
832
+ return { 'grid-row': input || DEFAULT_VALUE$1 };
833
+ }
834
+ }
835
+ GridRowStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
836
+ GridRowStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowStyleBuilder, providedIn: 'root' });
837
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowStyleBuilder, decorators: [{
838
+ type: Injectable,
839
+ args: [{ providedIn: 'root' }]
840
+ }] });
841
+ class GridRowDirective extends BaseDirective2 {
842
+ constructor(elementRef, styleBuilder, styler, marshal) {
843
+ super(elementRef, styleBuilder, styler, marshal);
844
+ this.DIRECTIVE_KEY = 'grid-row';
845
+ this.styleCache = rowCache;
846
+ this.init();
847
+ }
848
+ }
849
+ GridRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowDirective, deps: [{ token: i0.ElementRef }, { token: GridRowStyleBuilder }, { token: i1.StyleUtils }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
850
+ GridRowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridRowDirective, usesInheritance: true, ngImport: i0 });
851
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowDirective, decorators: [{
852
+ type: Directive
853
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: GridRowStyleBuilder }, { type: i1.StyleUtils }, { type: i1.MediaMarshaller }]; } });
854
+ const rowCache = new Map();
855
+ const inputs$1 = [
856
+ 'gdRow',
857
+ 'gdRow.xs', 'gdRow.sm', 'gdRow.md', 'gdRow.lg', 'gdRow.xl',
858
+ 'gdRow.lt-sm', 'gdRow.lt-md', 'gdRow.lt-lg', 'gdRow.lt-xl',
859
+ 'gdRow.gt-xs', 'gdRow.gt-sm', 'gdRow.gt-md', 'gdRow.gt-lg'
860
+ ];
861
+ const selector$1 = `
862
+ [gdRow],
863
+ [gdRow.xs], [gdRow.sm], [gdRow.md], [gdRow.lg], [gdRow.xl],
864
+ [gdRow.lt-sm], [gdRow.lt-md], [gdRow.lt-lg], [gdRow.lt-xl],
865
+ [gdRow.gt-xs], [gdRow.gt-sm], [gdRow.gt-md], [gdRow.gt-lg]
866
+ `;
867
+ /**
868
+ * 'grid-row' CSS Grid styling directive
869
+ * Configures the name or position of an element within the grid
870
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-26
871
+ */
872
+ class DefaultGridRowDirective extends GridRowDirective {
873
+ constructor() {
874
+ super(...arguments);
875
+ this.inputs = inputs$1;
876
+ }
877
+ }
878
+ DefaultGridRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridRowDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
879
+ DefaultGridRowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridRowDirective, selector: "\n [gdRow],\n [gdRow.xs], [gdRow.sm], [gdRow.md], [gdRow.lg], [gdRow.xl],\n [gdRow.lt-sm], [gdRow.lt-md], [gdRow.lt-lg], [gdRow.lt-xl],\n [gdRow.gt-xs], [gdRow.gt-sm], [gdRow.gt-md], [gdRow.gt-lg]\n", inputs: { gdRow: "gdRow", "gdRow.xs": "gdRow.xs", "gdRow.sm": "gdRow.sm", "gdRow.md": "gdRow.md", "gdRow.lg": "gdRow.lg", "gdRow.xl": "gdRow.xl", "gdRow.lt-sm": "gdRow.lt-sm", "gdRow.lt-md": "gdRow.lt-md", "gdRow.lt-lg": "gdRow.lt-lg", "gdRow.lt-xl": "gdRow.lt-xl", "gdRow.gt-xs": "gdRow.gt-xs", "gdRow.gt-sm": "gdRow.gt-sm", "gdRow.gt-md": "gdRow.gt-md", "gdRow.gt-lg": "gdRow.gt-lg" }, usesInheritance: true, ngImport: i0 });
880
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridRowDirective, decorators: [{
881
+ type: Directive,
882
+ args: [{ selector: selector$1, inputs: inputs$1 }]
883
+ }] });
884
+
885
+ /**
886
+ * @license
887
+ * Copyright Google LLC All Rights Reserved.
888
+ *
889
+ * Use of this source code is governed by an MIT-style license that can be
890
+ * found in the LICENSE file at https://angular.io/license
891
+ */
892
+ const DEFAULT_VALUE = 'none';
893
+ const AUTO_SPECIFIER = '!';
894
+ class GridRowsStyleBuilder extends StyleBuilder {
895
+ buildStyles(input, parent) {
896
+ input = input || DEFAULT_VALUE;
897
+ let auto = false;
898
+ if (input.endsWith(AUTO_SPECIFIER)) {
899
+ input = input.substring(0, input.indexOf(AUTO_SPECIFIER));
900
+ auto = true;
901
+ }
902
+ const css = {
903
+ 'display': parent.inline ? 'inline-grid' : 'grid',
904
+ 'grid-auto-rows': '',
905
+ 'grid-template-rows': '',
906
+ };
907
+ const key = (auto ? 'grid-auto-rows' : 'grid-template-rows');
908
+ css[key] = input;
909
+ return css;
910
+ }
911
+ }
912
+ GridRowsStyleBuilder.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowsStyleBuilder, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
913
+ GridRowsStyleBuilder.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowsStyleBuilder, providedIn: 'root' });
914
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowsStyleBuilder, decorators: [{
915
+ type: Injectable,
916
+ args: [{ providedIn: 'root' }]
917
+ }] });
918
+ class GridRowsDirective extends BaseDirective2 {
919
+ constructor(elementRef, styleBuilder, styler, marshal) {
920
+ super(elementRef, styleBuilder, styler, marshal);
921
+ this.DIRECTIVE_KEY = 'grid-rows';
922
+ this._inline = false;
923
+ this.init();
924
+ }
925
+ get inline() { return this._inline; }
926
+ set inline(val) { this._inline = coerceBooleanProperty(val); }
927
+ // *********************************************
928
+ // Protected methods
929
+ // *********************************************
930
+ updateWithValue(value) {
931
+ this.styleCache = this.inline ? rowsInlineCache : rowsCache;
932
+ this.addStyles(value, { inline: this.inline });
933
+ }
934
+ }
935
+ GridRowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowsDirective, deps: [{ token: i0.ElementRef }, { token: GridRowsStyleBuilder }, { token: i1.StyleUtils }, { token: i1.MediaMarshaller }], target: i0.ɵɵFactoryTarget.Directive });
936
+ GridRowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: GridRowsDirective, inputs: { inline: ["gdInline", "inline"] }, usesInheritance: true, ngImport: i0 });
937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridRowsDirective, decorators: [{
938
+ type: Directive
939
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: GridRowsStyleBuilder }, { type: i1.StyleUtils }, { type: i1.MediaMarshaller }]; }, propDecorators: { inline: [{
940
+ type: Input,
941
+ args: ['gdInline']
942
+ }] } });
943
+ const rowsCache = new Map();
944
+ const rowsInlineCache = new Map();
945
+ const inputs = [
946
+ 'gdRows',
947
+ 'gdRows.xs', 'gdRows.sm', 'gdRows.md', 'gdRows.lg', 'gdRows.xl',
948
+ 'gdRows.lt-sm', 'gdRows.lt-md', 'gdRows.lt-lg', 'gdRows.lt-xl',
949
+ 'gdRows.gt-xs', 'gdRows.gt-sm', 'gdRows.gt-md', 'gdRows.gt-lg'
950
+ ];
951
+ const selector = `
952
+ [gdRows],
953
+ [gdRows.xs], [gdRows.sm], [gdRows.md], [gdRows.lg], [gdRows.xl],
954
+ [gdRows.lt-sm], [gdRows.lt-md], [gdRows.lt-lg], [gdRows.lt-xl],
955
+ [gdRows.gt-xs], [gdRows.gt-sm], [gdRows.gt-md], [gdRows.gt-lg]
956
+ `;
957
+ /**
958
+ * 'grid-template-rows' CSS Grid styling directive
959
+ * Configures the sizing for the rows in the grid
960
+ * Syntax: <column value> [auto]
961
+ * @see https://css-tricks.com/snippets/css/complete-guide-grid/#article-header-id-13
962
+ */
963
+ class DefaultGridRowsDirective extends GridRowsDirective {
964
+ constructor() {
965
+ super(...arguments);
966
+ this.inputs = inputs;
967
+ }
968
+ }
969
+ DefaultGridRowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridRowsDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
970
+ DefaultGridRowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.0.2", type: DefaultGridRowsDirective, selector: "\n [gdRows],\n [gdRows.xs], [gdRows.sm], [gdRows.md], [gdRows.lg], [gdRows.xl],\n [gdRows.lt-sm], [gdRows.lt-md], [gdRows.lt-lg], [gdRows.lt-xl],\n [gdRows.gt-xs], [gdRows.gt-sm], [gdRows.gt-md], [gdRows.gt-lg]\n", inputs: { gdRows: "gdRows", "gdRows.xs": "gdRows.xs", "gdRows.sm": "gdRows.sm", "gdRows.md": "gdRows.md", "gdRows.lg": "gdRows.lg", "gdRows.xl": "gdRows.xl", "gdRows.lt-sm": "gdRows.lt-sm", "gdRows.lt-md": "gdRows.lt-md", "gdRows.lt-lg": "gdRows.lt-lg", "gdRows.lt-xl": "gdRows.lt-xl", "gdRows.gt-xs": "gdRows.gt-xs", "gdRows.gt-sm": "gdRows.gt-sm", "gdRows.gt-md": "gdRows.gt-md", "gdRows.gt-lg": "gdRows.gt-lg" }, usesInheritance: true, ngImport: i0 });
971
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: DefaultGridRowsDirective, decorators: [{
972
+ type: Directive,
973
+ args: [{ selector, inputs }]
974
+ }] });
975
+
976
+ /**
977
+ * @license
978
+ * Copyright Google LLC All Rights Reserved.
979
+ *
980
+ * Use of this source code is governed by an MIT-style license that can be
981
+ * found in the LICENSE file at https://angular.io/license
982
+ */
983
+ const ALL_DIRECTIVES = [
984
+ DefaultGridAlignDirective,
985
+ DefaultGridAlignColumnsDirective,
986
+ DefaultGridAlignRowsDirective,
987
+ DefaultGridAreaDirective,
988
+ DefaultGridAreasDirective,
989
+ DefaultGridAutoDirective,
990
+ DefaultGridColumnDirective,
991
+ DefaultGridColumnsDirective,
992
+ DefaultGridGapDirective,
993
+ DefaultGridRowDirective,
994
+ DefaultGridRowsDirective,
995
+ ];
996
+ /**
997
+ * *****************************************************************
998
+ * Define module for the CSS Grid API
999
+ * *****************************************************************
1000
+ */
1001
+ class GridModule {
1002
+ }
1003
+ GridModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1004
+ GridModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridModule, declarations: [DefaultGridAlignDirective,
1005
+ DefaultGridAlignColumnsDirective,
1006
+ DefaultGridAlignRowsDirective,
1007
+ DefaultGridAreaDirective,
1008
+ DefaultGridAreasDirective,
1009
+ DefaultGridAutoDirective,
1010
+ DefaultGridColumnDirective,
1011
+ DefaultGridColumnsDirective,
1012
+ DefaultGridGapDirective,
1013
+ DefaultGridRowDirective,
1014
+ DefaultGridRowsDirective], imports: [CoreModule], exports: [DefaultGridAlignDirective,
1015
+ DefaultGridAlignColumnsDirective,
1016
+ DefaultGridAlignRowsDirective,
1017
+ DefaultGridAreaDirective,
1018
+ DefaultGridAreasDirective,
1019
+ DefaultGridAutoDirective,
1020
+ DefaultGridColumnDirective,
1021
+ DefaultGridColumnsDirective,
1022
+ DefaultGridGapDirective,
1023
+ DefaultGridRowDirective,
1024
+ DefaultGridRowsDirective] });
1025
+ GridModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridModule, imports: [[CoreModule]] });
1026
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.2", ngImport: i0, type: GridModule, decorators: [{
1027
+ type: NgModule,
1028
+ args: [{
1029
+ imports: [CoreModule],
1030
+ declarations: [...ALL_DIRECTIVES],
1031
+ exports: [...ALL_DIRECTIVES]
1032
+ }]
1033
+ }] });
1034
+
1035
+ /**
1036
+ * @license
1037
+ * Copyright Google LLC All Rights Reserved.
1038
+ *
1039
+ * Use of this source code is governed by an MIT-style license that can be
1040
+ * found in the LICENSE file at https://angular.io/license
1041
+ */
1042
+
1043
+ /**
1044
+ * Generated bundle index. Do not edit.
1045
+ */
1046
+
1047
+ export { DefaultGridAlignColumnsDirective, DefaultGridAlignDirective, DefaultGridAlignRowsDirective, DefaultGridAreaDirective, DefaultGridAreasDirective, DefaultGridAutoDirective, DefaultGridColumnDirective, DefaultGridColumnsDirective, DefaultGridGapDirective, DefaultGridRowDirective, DefaultGridRowsDirective, GridAlignColumnsDirective, GridAlignColumnsStyleBuilder, GridAlignDirective, GridAlignRowsDirective, GridAlignRowsStyleBuilder, GridAlignStyleBuilder, GridAreaDirective, GridAreaStyleBuilder, GridAreasDirective, GridAreasStyleBuiler, GridAutoDirective, GridAutoStyleBuilder, GridColumnDirective, GridColumnStyleBuilder, GridColumnsDirective, GridColumnsStyleBuilder, GridGapDirective, GridGapStyleBuilder, GridModule, GridRowDirective, GridRowStyleBuilder, GridRowsDirective, GridRowsStyleBuilder };