xmlui 0.10.15 → 0.10.16

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 (43) hide show
  1. package/dist/lib/{index-axjeT2uJ.mjs → index-D4RYJasT.mjs} +2251 -575
  2. package/dist/lib/index.css +1 -1
  3. package/dist/lib/{initMock-BoTWMs19.mjs → initMock-qzTZlH-6.mjs} +1 -1
  4. package/dist/lib/xmlui-parser.d.ts +1 -1
  5. package/dist/lib/xmlui.d.ts +4 -6
  6. package/dist/lib/xmlui.mjs +1 -1
  7. package/dist/metadata/{collectedComponentMetadata-CQywuPDB.mjs → collectedComponentMetadata-BQaefK3f.mjs} +2536 -861
  8. package/dist/metadata/{initMock-Bi5kF5Af.mjs → initMock-Cz6QssI3.mjs} +1 -1
  9. package/dist/metadata/style.css +1 -1
  10. package/dist/metadata/xmlui-metadata.mjs +1 -1
  11. package/dist/metadata/xmlui-metadata.umd.js +3 -3
  12. package/dist/scripts/package.json +1 -1
  13. package/dist/scripts/src/components/Animation/AnimationNative.js +5 -1
  14. package/dist/scripts/src/components/AutoComplete/AutoComplete.js +1 -5
  15. package/dist/scripts/src/components/AutoComplete/AutoCompleteContext.js +2 -0
  16. package/dist/scripts/src/components/AutoComplete/AutoCompleteNative.js +263 -82
  17. package/dist/scripts/src/components/Form/FormNative.js +33 -25
  18. package/dist/scripts/src/components/Icon/IconNative.js +18 -15
  19. package/dist/scripts/src/components/NestedApp/AppWithCodeViewNative.js +1 -1
  20. package/dist/scripts/src/components/NumberBox/NumberBox.js +4 -4
  21. package/dist/scripts/src/components/NumberBox/NumberBox.spec.js +109 -426
  22. package/dist/scripts/src/components/NumberBox/NumberBoxNative.js +18 -4
  23. package/dist/scripts/src/components/Option/Option.js +3 -1
  24. package/dist/scripts/src/components/Select/HiddenOption.js +1 -1
  25. package/dist/scripts/src/components/Slider/Slider.spec.js +46 -13
  26. package/dist/scripts/src/components/Slider/SliderNative.js +19 -9
  27. package/dist/scripts/src/components/Tree/Tree-dynamic.spec.js +2894 -0
  28. package/dist/scripts/src/components/Tree/Tree.spec.js +2932 -0
  29. package/dist/scripts/src/components/Tree/TreeComponent.js +266 -10
  30. package/dist/scripts/src/components/Tree/TreeNative.js +1048 -23
  31. package/dist/scripts/src/components/Tree/testData.js +272 -0
  32. package/dist/scripts/src/components-core/behaviors/CoreBehaviors.js +1 -0
  33. package/dist/scripts/src/components-core/rendering/ComponentAdapter.js +13 -14
  34. package/dist/scripts/src/components-core/utils/treeUtils.js +187 -12
  35. package/dist/scripts/src/testing/ComponentDrivers.js +77 -3
  36. package/dist/scripts/src/testing/drivers/NumberBoxDriver.js +2 -2
  37. package/dist/scripts/src/testing/drivers/TreeDriver.js +13 -0
  38. package/dist/scripts/src/testing/fixtures.js +7 -2
  39. package/dist/standalone/xmlui-standalone.es.d.ts +4 -6
  40. package/dist/standalone/xmlui-standalone.umd.js +34 -34
  41. package/package.json +1 -1
  42. package/dist/scripts/src/components/Animation/Animation.js +0 -50
  43. package/dist/scripts/src/testing/drivers/SliderDriver.js +0 -20
@@ -1,6 +1,6 @@
1
1
  import { delay as delay$1, HttpResponse, matchRequestUrl } from "msw";
2
2
  import { isArray, isObject, mapValues } from "lodash-es";
3
- import { r as runEventHandlerCode, g as getDate, d as delay, m as miscellaneousUtils, a as dateFunctions, o as orderBy, T as ThrowStatementError } from "./index-axjeT2uJ.mjs";
3
+ import { r as runEventHandlerCode, g as getDate, d as delay, m as miscellaneousUtils, a as dateFunctions, o as orderBy, T as ThrowStatementError } from "./index-D4RYJasT.mjs";
4
4
  import Dexie from "dexie";
5
5
  var HttpStatusCode = /* @__PURE__ */ ((HttpStatusCode2) => {
6
6
  HttpStatusCode2[HttpStatusCode2["Continue"] = 100] = "Continue";
@@ -341,7 +341,7 @@ export declare type ComponentLints = {
341
341
  };
342
342
 
343
343
  declare type ComponentMetadata<TProps extends Record<string, ComponentPropertyMetadata> = Record<string, any>, TEvents extends Record<string, ComponentPropertyMetadata> = Record<string, any>, TContextValues extends Record<string, ComponentPropertyMetadata> = Record<string, any>, TApis extends Record<string, ComponentApiMetadata> = Record<string, any>> = {
344
- status?: "stable" | "experimental" | "deprecated" | "in progress";
344
+ status?: "stable" | "experimental" | "deprecated" | "in progress" | "internal";
345
345
  description?: string;
346
346
  shortDescription?: string;
347
347
  props?: TProps;
@@ -442,7 +442,7 @@ declare type ComponentExtension = ComponentRendererDef | CompoundComponentRender
442
442
  export declare type ComponentLike = ComponentDef | CompoundComponentDef;
443
443
 
444
444
  export declare type ComponentMetadata<TProps extends Record<string, ComponentPropertyMetadata> = Record<string, any>, TEvents extends Record<string, ComponentPropertyMetadata> = Record<string, any>, TContextValues extends Record<string, ComponentPropertyMetadata> = Record<string, any>, TApis extends Record<string, ComponentApiMetadata> = Record<string, any>> = {
445
- status?: "stable" | "experimental" | "deprecated" | "in progress";
445
+ status?: "stable" | "experimental" | "deprecated" | "in progress" | "internal";
446
446
  description?: string;
447
447
  shortDescription?: string;
448
448
  props?: TProps;
@@ -1867,15 +1867,13 @@ export declare function ToneChangerButton({ lightToDarkIcon, darkToLightIcon, on
1867
1867
  declare type TrackContainerHeight = "auto" | "fixed";
1868
1868
 
1869
1869
  export declare interface TreeNode {
1870
- uid: string;
1871
- key: string;
1870
+ id: string | number;
1871
+ key: string | number;
1872
1872
  path: any[];
1873
- subPath?: string;
1874
1873
  displayName?: string;
1875
1874
  children?: TreeNode[];
1876
- parentIds: string[];
1875
+ parentIds: (string | number)[];
1877
1876
  selectable: boolean;
1878
- groupKey?: string;
1879
1877
  [x: string]: any;
1880
1878
  }
1881
1879
 
@@ -1,4 +1,4 @@
1
- import { ac, Z, an, a1, _, $, ak, am, ai, ad, a2, a0, S, at, b, aq, ar, a4, a5, ag, ah, au, al, aj, af, c, f, e, h, j, k, l, i, n, p, q, s, u, v, x, w, t, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, P, N, O, Q, R, U, V, aa, a3, W, X, a7, ap, a6, a8, as, a9, ao, Y, ae, ab } from "./index-axjeT2uJ.mjs";
1
+ import { ac, Z, an, a1, _, $, ak, am, ai, ad, a2, a0, S, at, b, aq, ar, a4, a5, ag, ah, au, al, aj, af, c, f, e, h, j, k, l, i, n, p, q, s, u, v, x, w, t, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, P, N, O, Q, R, U, V, aa, a3, W, X, a7, ap, a6, a8, as, a9, ao, Y, ae, ab } from "./index-D4RYJasT.mjs";
2
2
  import { X as X2 } from "./xmlui-serializer-DB6BLiXK.mjs";
3
3
  export {
4
4
  ac as ApiInterceptorProvider,