@dereekb/dbx-form 0.0.1

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 (217) hide show
  1. package/README.md +6 -0
  2. package/dereekb-dbx-form.d.ts +5 -0
  3. package/esm2020/dereekb-dbx-form.mjs +5 -0
  4. package/esm2020/index.mjs +2 -0
  5. package/esm2020/lib/form/action/form.action.directive.mjs +131 -0
  6. package/esm2020/lib/form/action/form.action.module.mjs +30 -0
  7. package/esm2020/lib/form/action/index.mjs +3 -0
  8. package/esm2020/lib/form/form.changes.directive.mjs +33 -0
  9. package/esm2020/lib/form/form.input.directive.mjs +49 -0
  10. package/esm2020/lib/form/form.mjs +20 -0
  11. package/esm2020/lib/form/form.module.mjs +36 -0
  12. package/esm2020/lib/form/index.mjs +7 -0
  13. package/esm2020/lib/form/loading/form.loading.directive.mjs +52 -0
  14. package/esm2020/lib/form/loading/index.mjs +2 -0
  15. package/esm2020/lib/formly/field/checklist/checklist.item.field.component.mjs +91 -0
  16. package/esm2020/lib/formly/field/checklist/checklist.item.field.content.default.component.mjs +38 -0
  17. package/esm2020/lib/formly/field/checklist/checklist.item.field.mjs +119 -0
  18. package/esm2020/lib/formly/field/checklist/checklist.item.field.module.mjs +81 -0
  19. package/esm2020/lib/formly/field/checklist/checklist.item.mjs +2 -0
  20. package/esm2020/lib/formly/field/checklist/index.mjs +6 -0
  21. package/esm2020/lib/formly/field/component/component.field.component.mjs +35 -0
  22. package/esm2020/lib/formly/field/component/component.field.mjs +7 -0
  23. package/esm2020/lib/formly/field/component/component.field.module.mjs +42 -0
  24. package/esm2020/lib/formly/field/component/index.mjs +4 -0
  25. package/esm2020/lib/formly/field/field.mjs +21 -0
  26. package/esm2020/lib/formly/field/index.mjs +7 -0
  27. package/esm2020/lib/formly/field/selection/index.mjs +4 -0
  28. package/esm2020/lib/formly/field/selection/pickable/index.mjs +6 -0
  29. package/esm2020/lib/formly/field/selection/pickable/pickable.chip.field.component.mjs +30 -0
  30. package/esm2020/lib/formly/field/selection/pickable/pickable.field.directive.mjs +244 -0
  31. package/esm2020/lib/formly/field/selection/pickable/pickable.field.module.mjs +96 -0
  32. package/esm2020/lib/formly/field/selection/pickable/pickable.list.field.component.mjs +30 -0
  33. package/esm2020/lib/formly/field/selection/pickable/pickable.mjs +2 -0
  34. package/esm2020/lib/formly/field/selection/searchable/index.mjs +9 -0
  35. package/esm2020/lib/formly/field/selection/searchable/searchable.chip.field.component.mjs +45 -0
  36. package/esm2020/lib/formly/field/selection/searchable/searchable.field.autocomplete.item.component.mjs +73 -0
  37. package/esm2020/lib/formly/field/selection/searchable/searchable.field.directive.mjs +237 -0
  38. package/esm2020/lib/formly/field/selection/searchable/searchable.field.mjs +45 -0
  39. package/esm2020/lib/formly/field/selection/searchable/searchable.field.module.mjs +107 -0
  40. package/esm2020/lib/formly/field/selection/searchable/searchable.mjs +2 -0
  41. package/esm2020/lib/formly/field/selection/searchable/searchable.text.field.component.mjs +31 -0
  42. package/esm2020/lib/formly/field/selection/searchable/text.chip.field.mjs +15 -0
  43. package/esm2020/lib/formly/field/selection/selection.mjs +2 -0
  44. package/esm2020/lib/formly/field/value/array/array.field.component.mjs +87 -0
  45. package/esm2020/lib/formly/field/value/array/array.field.module.mjs +52 -0
  46. package/esm2020/lib/formly/field/value/array/index.mjs +3 -0
  47. package/esm2020/lib/formly/field/value/boolean/boolean.field.mjs +50 -0
  48. package/esm2020/lib/formly/field/value/boolean/boolean.field.module.mjs +16 -0
  49. package/esm2020/lib/formly/field/value/boolean/index.mjs +3 -0
  50. package/esm2020/lib/formly/field/value/date/date.field.mjs +36 -0
  51. package/esm2020/lib/formly/field/value/date/date.field.module.mjs +87 -0
  52. package/esm2020/lib/formly/field/value/date/datetime.field.component.mjs +226 -0
  53. package/esm2020/lib/formly/field/value/date/index.mjs +4 -0
  54. package/esm2020/lib/formly/field/value/enum/enum.field.mjs +18 -0
  55. package/esm2020/lib/formly/field/value/enum/enum.mjs +2 -0
  56. package/esm2020/lib/formly/field/value/enum/index.mjs +4 -0
  57. package/esm2020/lib/formly/field/value/hidden.field.mjs +8 -0
  58. package/esm2020/lib/formly/field/value/index.mjs +8 -0
  59. package/esm2020/lib/formly/field/value/phone/index.mjs +4 -0
  60. package/esm2020/lib/formly/field/value/phone/phone.field.component.mjs +44 -0
  61. package/esm2020/lib/formly/field/value/phone/phone.field.mjs +64 -0
  62. package/esm2020/lib/formly/field/value/phone/phone.field.module.mjs +67 -0
  63. package/esm2020/lib/formly/field/value/text/index.mjs +4 -0
  64. package/esm2020/lib/formly/field/value/text/text.address.field.mjs +65 -0
  65. package/esm2020/lib/formly/field/value/text/text.field.mjs +125 -0
  66. package/esm2020/lib/formly/field/value/text/text.field.module.mjs +19 -0
  67. package/esm2020/lib/formly/field/wrapper/autotouch.wrapper.component.mjs +26 -0
  68. package/esm2020/lib/formly/field/wrapper/expandable.wrapper.component.mjs +83 -0
  69. package/esm2020/lib/formly/field/wrapper/flex.wrapper.component.mjs +22 -0
  70. package/esm2020/lib/formly/field/wrapper/flex.wrapper.layout.mjs +20 -0
  71. package/esm2020/lib/formly/field/wrapper/form.wrapper.module.mjs +84 -0
  72. package/esm2020/lib/formly/field/wrapper/index.mjs +11 -0
  73. package/esm2020/lib/formly/field/wrapper/info.wrapper.component.mjs +47 -0
  74. package/esm2020/lib/formly/field/wrapper/section.wrapper.component.mjs +35 -0
  75. package/esm2020/lib/formly/field/wrapper/subsection.wrapper.component.mjs +35 -0
  76. package/esm2020/lib/formly/field/wrapper/toggle.wrapper.component.mjs +58 -0
  77. package/esm2020/lib/formly/field/wrapper/toggle.wrapper.mjs +10 -0
  78. package/esm2020/lib/formly/formly.component.mjs +134 -0
  79. package/esm2020/lib/formly/formly.context.mjs +111 -0
  80. package/esm2020/lib/formly/formly.directive.mjs +101 -0
  81. package/esm2020/lib/formly/formly.module.mjs +59 -0
  82. package/esm2020/lib/formly/index.mjs +6 -0
  83. package/esm2020/lib/index.mjs +5 -0
  84. package/esm2020/lib/layout/form.layout.module.mjs +26 -0
  85. package/esm2020/lib/layout/form.spacer.component.mjs +17 -0
  86. package/esm2020/lib/layout/index.mjs +3 -0
  87. package/esm2020/lib/validator/boolean.mjs +12 -0
  88. package/esm2020/lib/validator/email.mjs +6 -0
  89. package/esm2020/lib/validator/index.mjs +4 -0
  90. package/esm2020/lib/validator/number.mjs +21 -0
  91. package/fesm2015/dereekb-dbx-form.mjs +3295 -0
  92. package/fesm2015/dereekb-dbx-form.mjs.map +1 -0
  93. package/fesm2020/dereekb-dbx-form.mjs +3289 -0
  94. package/fesm2020/dereekb-dbx-form.mjs.map +1 -0
  95. package/index.d.ts +1 -0
  96. package/lib/form/action/form.action.directive.d.ts +44 -0
  97. package/lib/form/action/form.action.module.d.ts +9 -0
  98. package/lib/form/action/index.d.ts +2 -0
  99. package/lib/form/form.changes.directive.d.ts +15 -0
  100. package/lib/form/form.d.ts +51 -0
  101. package/lib/form/form.input.directive.d.ts +18 -0
  102. package/lib/form/form.module.d.ts +10 -0
  103. package/lib/form/index.d.ts +6 -0
  104. package/lib/form/loading/form.loading.directive.d.ts +19 -0
  105. package/lib/form/loading/index.d.ts +1 -0
  106. package/lib/formly/field/checklist/checklist.item.d.ts +38 -0
  107. package/lib/formly/field/checklist/checklist.item.field.component.d.ts +48 -0
  108. package/lib/formly/field/checklist/checklist.item.field.content.default.component.d.ts +10 -0
  109. package/lib/formly/field/checklist/checklist.item.field.d.ts +50 -0
  110. package/lib/formly/field/checklist/checklist.item.field.module.d.ts +18 -0
  111. package/lib/formly/field/checklist/index.d.ts +5 -0
  112. package/lib/formly/field/component/component.field.component.d.ts +22 -0
  113. package/lib/formly/field/component/component.field.d.ts +6 -0
  114. package/lib/formly/field/component/component.field.module.d.ts +10 -0
  115. package/lib/formly/field/component/index.d.ts +3 -0
  116. package/lib/formly/field/field.d.ts +31 -0
  117. package/lib/formly/field/index.d.ts +6 -0
  118. package/lib/formly/field/selection/index.d.ts +3 -0
  119. package/lib/formly/field/selection/pickable/index.d.ts +5 -0
  120. package/lib/formly/field/selection/pickable/pickable.chip.field.component.d.ts +10 -0
  121. package/lib/formly/field/selection/pickable/pickable.d.ts +28 -0
  122. package/lib/formly/field/selection/pickable/pickable.field.directive.d.ts +155 -0
  123. package/lib/formly/field/selection/pickable/pickable.field.module.d.ts +20 -0
  124. package/lib/formly/field/selection/pickable/pickable.list.field.component.d.ts +11 -0
  125. package/lib/formly/field/selection/searchable/index.d.ts +8 -0
  126. package/lib/formly/field/selection/searchable/searchable.chip.field.component.d.ts +16 -0
  127. package/lib/formly/field/selection/searchable/searchable.d.ts +40 -0
  128. package/lib/formly/field/selection/searchable/searchable.field.autocomplete.item.component.d.ts +20 -0
  129. package/lib/formly/field/selection/searchable/searchable.field.d.ts +16 -0
  130. package/lib/formly/field/selection/searchable/searchable.field.directive.d.ts +131 -0
  131. package/lib/formly/field/selection/searchable/searchable.field.module.d.ts +21 -0
  132. package/lib/formly/field/selection/searchable/searchable.text.field.component.d.ts +15 -0
  133. package/lib/formly/field/selection/searchable/text.chip.field.d.ts +9 -0
  134. package/lib/formly/field/selection/selection.d.ts +25 -0
  135. package/lib/formly/field/value/array/array.field.component.d.ts +22 -0
  136. package/lib/formly/field/value/array/array.field.module.d.ts +13 -0
  137. package/lib/formly/field/value/array/index.d.ts +2 -0
  138. package/lib/formly/field/value/boolean/boolean.field.d.ts +8 -0
  139. package/lib/formly/field/value/boolean/boolean.field.module.d.ts +6 -0
  140. package/lib/formly/field/value/boolean/index.d.ts +2 -0
  141. package/lib/formly/field/value/date/date.field.d.ts +13 -0
  142. package/lib/formly/field/value/date/date.field.module.d.ts +21 -0
  143. package/lib/formly/field/value/date/datetime.field.component.d.ts +105 -0
  144. package/lib/formly/field/value/date/index.d.ts +3 -0
  145. package/lib/formly/field/value/enum/enum.d.ts +4 -0
  146. package/lib/formly/field/value/enum/enum.field.d.ts +14 -0
  147. package/lib/formly/field/value/enum/index.d.ts +2 -0
  148. package/lib/formly/field/value/hidden.field.d.ts +5 -0
  149. package/lib/formly/field/value/index.d.ts +7 -0
  150. package/lib/formly/field/value/phone/index.d.ts +3 -0
  151. package/lib/formly/field/value/phone/phone.field.component.d.ts +24 -0
  152. package/lib/formly/field/value/phone/phone.field.d.ts +26 -0
  153. package/lib/formly/field/value/phone/phone.field.module.d.ts +16 -0
  154. package/lib/formly/field/value/text/index.d.ts +3 -0
  155. package/lib/formly/field/value/text/text.address.field.d.ts +12 -0
  156. package/lib/formly/field/value/text/text.field.d.ts +42 -0
  157. package/lib/formly/field/value/text/text.field.module.d.ts +7 -0
  158. package/lib/formly/field/wrapper/autotouch.wrapper.component.d.ts +11 -0
  159. package/lib/formly/field/wrapper/expandable.wrapper.component.d.ts +43 -0
  160. package/lib/formly/field/wrapper/flex.wrapper.component.d.ts +6 -0
  161. package/lib/formly/field/wrapper/flex.wrapper.layout.d.ts +10 -0
  162. package/lib/formly/field/wrapper/form.wrapper.module.d.ts +19 -0
  163. package/lib/formly/field/wrapper/index.d.ts +10 -0
  164. package/lib/formly/field/wrapper/info.wrapper.component.d.ts +17 -0
  165. package/lib/formly/field/wrapper/section.wrapper.component.d.ts +8 -0
  166. package/lib/formly/field/wrapper/subsection.wrapper.component.d.ts +8 -0
  167. package/lib/formly/field/wrapper/toggle.wrapper.component.d.ts +24 -0
  168. package/lib/formly/field/wrapper/toggle.wrapper.d.ts +7 -0
  169. package/lib/formly/formly.component.d.ts +36 -0
  170. package/lib/formly/formly.context.d.ts +57 -0
  171. package/lib/formly/formly.directive.d.ts +50 -0
  172. package/lib/formly/formly.module.d.ts +11 -0
  173. package/lib/formly/index.d.ts +5 -0
  174. package/lib/index.d.ts +4 -0
  175. package/lib/layout/form.layout.module.d.ts +8 -0
  176. package/lib/layout/form.spacer.component.d.ts +8 -0
  177. package/lib/layout/index.d.ts +2 -0
  178. package/lib/validator/boolean.d.ts +2 -0
  179. package/lib/validator/email.d.ts +3 -0
  180. package/lib/validator/index.d.ts +3 -0
  181. package/lib/validator/number.d.ts +2 -0
  182. package/package.json +67 -0
  183. package/src/_index.scss +11 -0
  184. package/src/lib/form/_form.scss +26 -0
  185. package/src/lib/formly/_formly.scss +26 -0
  186. package/src/lib/formly/field/_field.scss +33 -0
  187. package/src/lib/formly/field/checklist/_checklist.scss +26 -0
  188. package/src/lib/formly/field/checklist/checklist.item_TODO.scss +57 -0
  189. package/src/lib/formly/field/component/_component.scss +26 -0
  190. package/src/lib/formly/field/fields_TODO.scss +4 -0
  191. package/src/lib/formly/field/selection/_selection.scss +17 -0
  192. package/src/lib/formly/field/selection/generic_TODO.scss +36 -0
  193. package/src/lib/formly/field/selection/pickable/_pickable.scss +26 -0
  194. package/src/lib/formly/field/selection/searchable/_searchable.scss +26 -0
  195. package/src/lib/formly/field/texteditor/_texteditor.scss +26 -0
  196. package/src/lib/formly/field/texteditor/texteditor_TODO.scss +32 -0
  197. package/src/lib/formly/field/value/_value.scss +33 -0
  198. package/src/lib/formly/field/value/array/_array.scss +26 -0
  199. package/src/lib/formly/field/value/boolean/_boolean.scss +26 -0
  200. package/src/lib/formly/field/value/date/_date.scss +26 -0
  201. package/src/lib/formly/field/value/date/date_TODO.scss +27 -0
  202. package/src/lib/formly/field/value/enum/_enum.scss +26 -0
  203. package/src/lib/formly/field/value/phone/_phone.scss +26 -0
  204. package/src/lib/formly/field/value/phone/phone_TODO.scss +10 -0
  205. package/src/lib/formly/field/value/text/_text.scss +26 -0
  206. package/src/lib/formly/field/wrapper/_wrapper.scss +26 -0
  207. package/src/lib/formly/field/wrapper/wrapper_TODO.scss +34 -0
  208. package/src/lib/formly/form_TODO.scss +153 -0
  209. package/src/lib/layout/_layout.scss +26 -0
  210. package/src/lib/style/_all-core.scss +12 -0
  211. package/src/lib/style/_all-theme.scss +12 -0
  212. package/src/lib/style/_all-typography.scss +12 -0
  213. package/src/lib/style/_config.scss +20 -0
  214. package/src/lib/style/_core.scss +9 -0
  215. package/src/lib/style/_mixin.scss +3 -0
  216. package/src/lib/style/_theming.scss +19 -0
  217. package/src/lib/style/_variables.scss +1 -0
@@ -0,0 +1,153 @@
1
+ $dbx-form-container-margin: 10px;
2
+
3
+ .dbx-formly {
4
+ margin: $dbx-form-container-margin 0;
5
+ }
6
+
7
+ .dbx-form-spacer {
8
+ margin-top: 24px;
9
+ }
10
+
11
+ // OLD. Remove
12
+ $form-submit-view-margin: 8px;
13
+ $material-form-margin: 16px;
14
+
15
+ // MARK: Form Container
16
+ .dbx-form-container {
17
+ margin: $dbx-form-container-margin 0;
18
+ }
19
+
20
+ // .dbx-form-container-form-view {}
21
+
22
+ // MARK: Form View
23
+ .dbx-form-view-padded {
24
+ padding: 0 $material-form-margin;
25
+ }
26
+
27
+ .required-text {
28
+ content: "*";
29
+ color: red;
30
+ // color: mat-color($tallynote-dbx-warn);
31
+ }
32
+
33
+ .dbx-form-view {
34
+ // margin-bottom: $material-form-margin;
35
+
36
+ }
37
+
38
+ .dbx-form-view-tools {
39
+ text-align: right;
40
+ }
41
+
42
+ .dbx-form-view-control {
43
+ width: 100%;
44
+ }
45
+
46
+ // .dbx-form-view-sub-form {}
47
+
48
+ .mat-input-element {
49
+ margin: 0; // Safari Fix
50
+ }
51
+
52
+ .mat-form-field {
53
+ margin: 8px 0px 16px;
54
+ }
55
+
56
+ .mat-input-placeholder {
57
+ text-transform: capitalize;
58
+ }
59
+
60
+ .required {
61
+
62
+ .mat-checkbox-label::after,
63
+ .mat-input-placeholder::after {
64
+ @extend .required-text;
65
+ }
66
+ }
67
+
68
+ .capitalized-field {
69
+ .mat-input-element {
70
+ text-transform: capitalize;
71
+ }
72
+ }
73
+
74
+ .dbx-form-view-checkbox-control {
75
+ margin: 12px 0;
76
+ padding-left: 15px;
77
+
78
+ .mat-checkbox-label {
79
+ text-transform: capitalize;
80
+ }
81
+ }
82
+
83
+ .form-select-align {
84
+ padding-top: 24px;
85
+ }
86
+
87
+ .form-anti-padding {
88
+ margin-top: -20px;
89
+ }
90
+
91
+ .warning {
92
+ color: red;
93
+ // color: mat-color($tallynote-dbx-warn);
94
+ }
95
+
96
+ .dbx-form-view-help {
97
+ font-size: 75%;
98
+ color: grey;
99
+ }
100
+
101
+ .dbx-form-view-hint {
102
+ font-size: 75%;
103
+ margin-top: 3px;
104
+ }
105
+
106
+ // MARK: Tabs
107
+ .mat-tab-header {
108
+ margin-bottom: $material-form-margin;
109
+ }
110
+
111
+ .dbx-form-view-tab-page {
112
+ padding: 12px 0;
113
+ }
114
+
115
+ // MARK: Input
116
+ .mat-form-field {
117
+
118
+ .form-suffix-button {
119
+ width: 1.8em;
120
+ height: 1.8em;
121
+ margin-top: -0.6em;
122
+ }
123
+
124
+ }
125
+
126
+ // MARK: Controls
127
+ .select-form-control {
128
+ width: 100%;
129
+ }
130
+
131
+ .form-suffix-button {
132
+ .mat-icon-button {
133
+ width: 2em;
134
+ height: 2em;
135
+
136
+ .mat-icon {
137
+ width: 1.8em;
138
+ height: 1.8em;
139
+ }
140
+ }
141
+ }
142
+
143
+ .date-form-control {
144
+
145
+ .mat-datepicker-toggle {
146
+
147
+ .mat-icon-button {
148
+ height: 2em;
149
+ width: 2em;
150
+ }
151
+
152
+ }
153
+ }
@@ -0,0 +1,26 @@
1
+ @use '../style/theming';
2
+
3
+ // MARK: Variables
4
+
5
+
6
+ // MARK: Mixin
7
+ @mixin core() {}
8
+
9
+ @mixin color($theme-config) {}
10
+
11
+ @mixin typography($typography-config) {}
12
+
13
+ @mixin theme($theme-config) {
14
+ @include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-form-layout') {
15
+ $color: theming.get-color-config($theme-config);
16
+ $typography: theming.get-typography-config($theme-config);
17
+
18
+ @if $color !=null {
19
+ @include color($theme-config);
20
+ }
21
+
22
+ @if $typography !=null {
23
+ @include typography($typography);
24
+ }
25
+ }
26
+ }
@@ -0,0 +1,12 @@
1
+ @use '../form/form';
2
+ @use '../formly/formly';
3
+ @use '../layout/layout';
4
+ @use '../formly/field/field';
5
+
6
+ // Includes all theming config
7
+ @mixin all-component-core() {
8
+ @include form.core();
9
+ @include formly.core();
10
+ @include field.all-field-core();
11
+ @include layout.core();
12
+ }
@@ -0,0 +1,12 @@
1
+ @use '../form/form';
2
+ @use '../formly/formly';
3
+ @use '../layout/layout';
4
+ @use '../formly/field/field';
5
+
6
+ // Includes all theming config
7
+ @mixin all-component-themes($theme-config) {
8
+ @include form.theme($theme-config);
9
+ @include formly.theme($theme-config);
10
+ @include field.all-field-theme($theme-config);
11
+ @include layout.theme($theme-config);
12
+ }
@@ -0,0 +1,12 @@
1
+ @use '../form/form';
2
+ @use '../formly/formly';
3
+ @use '../layout/layout';
4
+ @use '../formly/field/field';
5
+
6
+ // Includes all of the typographic styles.
7
+ @mixin all-component-typographies($typography-config) {
8
+ @include form.typography($typography-config);
9
+ @include formly.typography($typography-config);
10
+ @include field.all-field-typography($typography-config);
11
+ @include layout.typography($typography-config);
12
+ }
@@ -0,0 +1,20 @@
1
+ @use "sass:map";
2
+ @use './variables';
3
+
4
+ // theme
5
+ @function define-dbx-form-theme-config($theme-config, $input-dbx-form-theme-config: null) {
6
+
7
+ @if ($input-dbx-form-theme-config == null) {
8
+ $input-dbx-form-theme-config: ();
9
+ }
10
+
11
+ $dbx-form-theme-config: ();
12
+
13
+ @return map.merge($theme-config, (
14
+ 'dbx-form': $dbx-form-theme-config
15
+ ));
16
+ }
17
+
18
+ @function get-dbx-form-theme-config($theme-config) {
19
+ @return map.get($theme-config, 'dbx-form');
20
+ }
@@ -0,0 +1,9 @@
1
+ @use "sass:map";
2
+ @use './all-core';
3
+ @use './all-typography';
4
+ @use './config';
5
+
6
+ @mixin core($typography-config, $theme-config: null) {
7
+ @include all-core.all-component-core();
8
+ @include all-typography.all-component-typographies($typography-config);
9
+ }
@@ -0,0 +1,3 @@
1
+ @use "sass:map";
2
+ @use './config';
3
+ @use './variables';
@@ -0,0 +1,19 @@
1
+ @forward '@angular/material'show define-light-theme,
2
+ define-dark-theme,
3
+ define-palette,
4
+ get-contrast-color-from-palette,
5
+ get-color-from-palette,
6
+ get-color-config,
7
+ get-typography-config,
8
+ get-density-config,
9
+ elevation;
10
+
11
+ @forward 'node_modules/@angular/material/core/theming/theming'
12
+ show private-check-duplicate-theme-styles,
13
+ $theme-ignore-duplication-warnings;
14
+
15
+ @forward 'node_modules/@angular/material/core/typography/typography-utils';
16
+
17
+ @forward './config';
18
+ @forward './variables';
19
+ @forward './mixin';
@@ -0,0 +1 @@
1
+ @use "sass:map";