@messaia/cdk 20.0.9 → 20.1.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.
- package/fesm2022/messaia-cdk.mjs +446 -443
- package/fesm2022/messaia-cdk.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/lib/common/styles/utilities/_general.scss +44 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2650,7 +2650,7 @@ declare class RxFormBuilder extends BaseFormBuilder {
|
|
|
2650
2650
|
*/
|
|
2651
2651
|
array(values: [{
|
|
2652
2652
|
[key: string]: any;
|
|
2653
|
-
}], validatorConfig?: FormBuilderConfiguration): FormArray<i2.AbstractControl<any, any>>;
|
|
2653
|
+
}], validatorConfig?: FormBuilderConfiguration): FormArray<i2.AbstractControl<any, any, any>>;
|
|
2654
2654
|
/**
|
|
2655
2655
|
* Creates a form group with the specified group object and validator configuration.
|
|
2656
2656
|
*
|
|
@@ -145,17 +145,53 @@
|
|
|
145
145
|
text-overflow: ellipsis;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
.
|
|
149
|
-
|
|
148
|
+
.no-results-overlay {
|
|
149
|
+
position: absolute;
|
|
150
|
+
top: 0;
|
|
151
|
+
left: 0;
|
|
152
|
+
width: 100%;
|
|
153
|
+
height: 100%;
|
|
150
154
|
display: flex;
|
|
155
|
+
flex-direction: column;
|
|
156
|
+
justify-content: center;
|
|
151
157
|
align-items: center;
|
|
152
|
-
|
|
153
|
-
|
|
158
|
+
text-align: center;
|
|
159
|
+
color: #888;
|
|
160
|
+
pointer-events: none;
|
|
161
|
+
}
|
|
154
162
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
163
|
+
.no-results-icon {
|
|
164
|
+
height: initial !important;
|
|
165
|
+
width: initial !important;
|
|
166
|
+
font-size: 64px;
|
|
167
|
+
color: #c0c0c0;
|
|
168
|
+
margin-bottom: 16px;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.no-results-text h3 {
|
|
172
|
+
margin: 0;
|
|
173
|
+
font-weight: 500;
|
|
174
|
+
font-size: 20px;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.no-results-text p {
|
|
178
|
+
margin: 4px 0 0;
|
|
179
|
+
font-size: 14px;
|
|
180
|
+
color: #aaa;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.table-empty {
|
|
184
|
+
position: absolute;
|
|
185
|
+
top: 0;
|
|
186
|
+
left: 0;
|
|
187
|
+
width: 100%;
|
|
188
|
+
height: 100%;
|
|
189
|
+
display: flex;
|
|
190
|
+
justify-content: center;
|
|
191
|
+
align-items: center;
|
|
192
|
+
font-style: italic;
|
|
193
|
+
color: #666;
|
|
194
|
+
pointer-events: none;
|
|
159
195
|
}
|
|
160
196
|
|
|
161
197
|
.loading-progress {
|