xmlui 0.9.76 → 0.9.78
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/lib/{index-mdlNmhj_.mjs → index-j0JcJZMC.mjs} +11664 -11434
- package/dist/lib/index.css +1 -1
- package/dist/lib/{initMock-BXQ0HzU7.mjs → initMock-Co9BqeUA.mjs} +1 -1
- package/dist/lib/language-server-web-worker.mjs +1 -1
- package/dist/lib/language-server.mjs +1 -1
- package/dist/lib/{server-common-CfdMYx46.mjs → server-common-LUcdzTQs.mjs} +4433 -4463
- package/dist/lib/xmlui.d.ts +23 -0
- package/dist/lib/xmlui.mjs +1 -1
- package/dist/metadata/{collectedComponentMetadata-CWaLbEQz.mjs → collectedComponentMetadata-tSxX8HKm.mjs} +10688 -10458
- package/dist/metadata/{initMock-BLnKtG1C.mjs → initMock-B7VL6XTr.mjs} +1 -1
- package/dist/metadata/style.css +1 -1
- package/dist/metadata/xmlui-metadata.mjs +1 -1
- package/dist/metadata/xmlui-metadata.umd.js +99 -99
- package/dist/scripts/package.json +1 -1
- package/dist/scripts/src/components/Charts/BarChart/BarChartNative.js +63 -19
- package/dist/scripts/src/components/ComponentProvider.js +2 -0
- package/dist/scripts/src/components/IconProvider.js +6 -4
- package/dist/scripts/src/components/Input/InputAdornment.js +4 -2
- package/dist/scripts/src/components/Link/LinkNative.js +2 -47
- package/dist/scripts/src/components/Markdown/MarkdownNative.js +89 -42
- package/dist/scripts/src/components/NestedApp/NestedApp.js +2 -0
- package/dist/scripts/src/components/NestedApp/NestedAppNative.js +1 -1
- package/dist/scripts/src/components/TextBox/TextBox.js +16 -1
- package/dist/scripts/src/components/TextBox/TextBoxNative.js +12 -2
- package/dist/scripts/src/components/ToneSwitch/ToneSwitch.js +51 -0
- package/dist/scripts/src/components/ToneSwitch/ToneSwitchNative.js +29 -0
- package/dist/scripts/src/components-core/rendering/AppContent.js +65 -5
- package/dist/standalone/xmlui-standalone.es.d.ts +26 -0
- package/dist/standalone/xmlui-standalone.umd.js +241 -241
- package/package.json +1 -1
package/dist/lib/xmlui.d.ts
CHANGED
|
@@ -1060,6 +1060,14 @@ declare type Props_3 = {
|
|
|
1060
1060
|
distributeEvenly?: boolean;
|
|
1061
1061
|
};
|
|
1062
1062
|
|
|
1063
|
+
/**
|
|
1064
|
+
* TextBox component that supports text input with various configurations.
|
|
1065
|
+
* Features:
|
|
1066
|
+
* - Standard text, password, and search input types
|
|
1067
|
+
* - Input validation states
|
|
1068
|
+
* - Start/end adornments (icons and text)
|
|
1069
|
+
* - Password visibility toggle option
|
|
1070
|
+
*/
|
|
1063
1071
|
declare type Props_4 = {
|
|
1064
1072
|
id?: string;
|
|
1065
1073
|
type?: "text" | "password" | "search";
|
|
@@ -1089,6 +1097,21 @@ declare type Props_4 = {
|
|
|
1089
1097
|
labelWidth?: string;
|
|
1090
1098
|
labelBreak?: boolean;
|
|
1091
1099
|
required?: boolean;
|
|
1100
|
+
/**
|
|
1101
|
+
* When true and type is "password", displays a toggle icon to show/hide password text
|
|
1102
|
+
* Default: false
|
|
1103
|
+
*/
|
|
1104
|
+
showPasswordToggle?: boolean;
|
|
1105
|
+
/**
|
|
1106
|
+
* The icon to show when the password is visible
|
|
1107
|
+
* Default: "eye"
|
|
1108
|
+
*/
|
|
1109
|
+
passwordVisibleIcon?: string;
|
|
1110
|
+
/**
|
|
1111
|
+
* The icon to show when the password is hidden
|
|
1112
|
+
* Default: "eye-off"
|
|
1113
|
+
*/
|
|
1114
|
+
passwordHiddenIcon?: string;
|
|
1092
1115
|
};
|
|
1093
1116
|
|
|
1094
1117
|
declare type REACTIVE_VAR_DECLARATION = typeof T_REACTIVE_VAR_DECLARATION;
|
package/dist/lib/xmlui.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { y as e, A as t, B as o, E as r, I as n, L as p, H as u, N as i, z as l, i as C, h as d, S as m, b as x, k as T, l as c, D as S, F as A, G as g, V as h, C as v, c as B, e as I, f as L, w as b, j as k, p as y, s as E, t as M, K as V, n as f, q as H, M as N, v as R, J as D, u as U, x as X } from "./index-
|
|
1
|
+
import { y as e, A as t, B as o, E as r, I as n, L as p, H as u, N as i, z as l, i as C, h as d, S as m, b as x, k as T, l as c, D as S, F as A, G as g, V as h, C as v, c as B, e as I, f as L, w as b, j as k, p as y, s as E, t as M, K as V, n as f, q as H, M as N, v as R, J as D, u as U, x as X } from "./index-j0JcJZMC.mjs";
|
|
2
2
|
import { X as q } from "./xmlui-serializer-jEIItW8v.mjs";
|
|
3
3
|
export {
|
|
4
4
|
e as ApiInterceptorProvider,
|