@umbraco-cms/backoffice 14.0.0--preview005-cfee2c6f → 14.0.0--preview005-afb72093

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.
@@ -139,12 +139,13 @@ let UmbChooseInsertTypeModalElement = class UmbChooseInsertTypeModalElement exte
139
139
  </uui-button>`
140
140
  : ''}
141
141
  </div>
142
- <div class="row">
142
+ <div class="row query-results">
143
143
  <span id="results-count">
144
144
  ${this._templateQuery?.resultCount ?? 0}
145
145
  <umb-localize key="template_itemsReturned">items returned, in</umb-localize>
146
146
  ${this._templateQuery?.executionTime ?? 0} ms
147
147
  </span>
148
+ ${this._templateQuery?.sampleResults.map((sample) => html `<span><uui-icon name=${sample.icon}></uui-icon>${sample.name}</span>`) ?? ''}
148
149
  </div>
149
150
  <umb-code-block language="C#" copy>${this._templateQuery?.queryExpression ?? ''}</umb-code-block>
150
151
  </uui-box>
@@ -279,6 +280,16 @@ UmbChooseInsertTypeModalElement.styles = [
279
280
  #results-count {
280
281
  font-weight: bold;
281
282
  }
283
+ .query-results {
284
+ flex-direction: column;
285
+ align-items: flex-start;
286
+ gap: 0;
287
+ }
288
+ .query-results span {
289
+ display: flex;
290
+ align-items: center;
291
+ gap: var(--uui-size-1);
292
+ }
282
293
  `,
283
294
  ];
284
295
  __decorate([