@fox-js/foxui 4.0.1-39 → 4.0.1-40
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/index.cjs.js +3 -3
- package/dist/index.esm.js +2205 -2113
- package/dist/index.umd.js +5 -5
- package/dist/locale/index.esm.js +1 -1
- package/dist/locale/index.umd.js +1 -1
- package/dist/style.css +1 -1
- package/dist/style.esm.js +1 -1
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/style.esm.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -866,6 +866,8 @@ export declare interface Descriptor {
|
|
|
866
866
|
valueName?: string;
|
|
867
867
|
valueType?: ValueType;
|
|
868
868
|
validate?: boolean;
|
|
869
|
+
readonly?: boolean;
|
|
870
|
+
disabled?: boolean;
|
|
869
871
|
pureDataValidate?: boolean;
|
|
870
872
|
validateHandler?: ValidateHandler;
|
|
871
873
|
validateCheckEvents?: string[];
|
|
@@ -1945,6 +1947,8 @@ export declare interface ValidateCondition {
|
|
|
1945
1947
|
include?: string[];
|
|
1946
1948
|
exclude?: string[];
|
|
1947
1949
|
ignoreHidden?: boolean;
|
|
1950
|
+
ignoreDisabled?: boolean;
|
|
1951
|
+
ignoreReadonly?: boolean;
|
|
1948
1952
|
}
|
|
1949
1953
|
|
|
1950
1954
|
/**
|