@cas-smartdesign/combo-box 7.2.5 → 7.2.6

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/dist/docs/doc.mjs CHANGED
@@ -1631,8 +1631,7 @@ https://github.com/highlightjs/highlight.js/issues/2277`),z=d,k=N),w===void 0&&(
1631
1631
  </ul>
1632
1632
  <h2 id="lazy-loading">Lazy loading</h2>
1633
1633
  <p>It is possible to fetch the suggestions from the server lazily. It means that if the combo-box is configured via the <code>configureLazyLoad</code>, then the included list in the dropdown will use the given <code>onDataRequest</code> callback. If the lazy mode is activated then inMemory filtering is disabled, but the mentioned data request is also called whenever the filter text changes. A <code>loading</code> attribute is added while a pending data request is present to be able to show a loading indicator for example. See the <code>doc.ts</code> for some comprehensive examples.</p>
1634
- <h2 id="examples">Examples</h2>
1635
- `;document.querySelector("#markdown-container").innerHTML=Td;Ld(Object.assign({"./examples/1_declarative/index.ts":en,"./examples/2_basic-examples/index.ts":ln,"./examples/3_filtering/index.ts":fn,"./examples/4_lazy_loading/index.ts":xn,"./examples/5_unusual_data/index.ts":En,"./examples/6_validation_example/index.ts":Mn}));export{Mt as h};
1634
+ `,Bd=document.querySelector("#markdown-container");Bd.innerHTML=Td;Ld(Object.assign({"./examples/1_declarative/index.ts":en,"./examples/2_basic-examples/index.ts":ln,"./examples/3_filtering/index.ts":fn,"./examples/4_lazy_loading/index.ts":xn,"./examples/5_unusual_data/index.ts":En,"./examples/6_validation_example/index.ts":Mn}),document.querySelector(".markdown-body"));export{Mt as h};
1636
1635
  function __vite__mapDeps(indexes) {
1637
1636
  if (!__vite__mapDeps.viteFileDeps) {
1638
1637
  __vite__mapDeps.viteFileDeps = []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cas-smartdesign/combo-box",
3
- "version": "7.2.5",
3
+ "version": "7.2.6",
4
4
  "description": "A combo-box element with the look and feel of the SmartDesign inputs & list item layouts",
5
5
  "main": "dist/combo-box-with-externals.js",
6
6
  "module": "dist/combo-box.mjs",
@@ -9,14 +9,14 @@
9
9
  "dependencies": {
10
10
  "@popperjs/core": "^2.11.8",
11
11
  "lit": "^2.8.0",
12
- "@cas-smartdesign/list-item": "^7.2.2",
13
- "@cas-smartdesign/virtual-list": "^6.2.2",
14
- "@cas-smartdesign/lit-input": "^7.1.3"
12
+ "@cas-smartdesign/virtual-list": "^6.2.3",
13
+ "@cas-smartdesign/list-item": "^7.2.3",
14
+ "@cas-smartdesign/lit-input": "^7.1.4"
15
15
  },
16
16
  "devDependencies": {
17
- "@cas-smartdesign/field-validation-message": "^5.0.1",
18
- "@cas-smartdesign/license-generator": "^1.6.1",
19
- "@cas-smartdesign/element-preview": "^0.2.1"
17
+ "@cas-smartdesign/field-validation-message": "^5.0.2",
18
+ "@cas-smartdesign/license-generator": "^1.6.3",
19
+ "@cas-smartdesign/element-preview": "^0.2.2"
20
20
  },
21
21
  "files": [
22
22
  "dist",
package/readme.md CHANGED
@@ -58,5 +58,3 @@ _(in addition to lit-input)_
58
58
  ## Lazy loading
59
59
 
60
60
  It is possible to fetch the suggestions from the server lazily. It means that if the combo-box is configured via the `configureLazyLoad`, then the included list in the dropdown will use the given `onDataRequest` callback. If the lazy mode is activated then inMemory filtering is disabled, but the mentioned data request is also called whenever the filter text changes. A `loading` attribute is added while a pending data request is present to be able to show a loading indicator for example. See the `doc.ts` for some comprehensive examples.
61
-
62
- ## Examples