@wcardinal/wcardinal-ui 0.232.0 → 0.233.0
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/types/wcardinal/ui/shape/e-shape-data-value-state.d.ts +4 -0
- package/dist/wcardinal/ui/shape/e-shape-data-value-state.js +5 -1
- package/dist/wcardinal/ui/shape/e-shape-data-value-state.js.map +1 -1
- package/dist/wcardinal-ui-theme-dark.js +1 -1
- package/dist/wcardinal-ui-theme-dark.min.js +1 -1
- package/dist/wcardinal-ui-theme-white.js +1 -1
- package/dist/wcardinal-ui-theme-white.min.js +1 -1
- package/dist/wcardinal-ui.cjs.js +6 -2
- package/dist/wcardinal-ui.js +6 -2
- package/dist/wcardinal-ui.min.js +2 -2
- package/dist/wcardinal-ui.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -28,5 +28,9 @@ export declare const EShapeDataValueState: {
|
|
|
28
28
|
* A client is not allowed to access this data.
|
|
29
29
|
*/
|
|
30
30
|
readonly FORBIDDEN: 5;
|
|
31
|
+
/**
|
|
32
|
+
* The server can not find the definition of the requested data.
|
|
33
|
+
*/
|
|
34
|
+
readonly NOT_DEFINED: 6;
|
|
31
35
|
};
|
|
32
36
|
export declare type EShapeDataValueState = number;
|
|
@@ -31,6 +31,10 @@ export var EShapeDataValueState = {
|
|
|
31
31
|
/**
|
|
32
32
|
* A client is not allowed to access this data.
|
|
33
33
|
*/
|
|
34
|
-
FORBIDDEN: 5
|
|
34
|
+
FORBIDDEN: 5,
|
|
35
|
+
/**
|
|
36
|
+
* The server can not find the definition of the requested data.
|
|
37
|
+
*/
|
|
38
|
+
NOT_DEFINED: 6
|
|
35
39
|
};
|
|
36
40
|
//# sourceMappingURL=e-shape-data-value-state.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"e-shape-data-value-state.js","sourceRoot":"","sources":["../../../../src/main/typescript/wcardinal/ui/shape/e-shape-data-value-state.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,CAAC,IAAM,oBAAoB,GAAG;IACnC;;;OAGG;IACH,OAAO,EAAE,CAAC,CAAC;IAEX;;OAEG;IACH,KAAK,EAAE,CAAC;IAER;;OAEG;IACH,SAAS,EAAE,CAAC;IAEZ;;OAEG;IACH,WAAW,EAAE,CAAC;IAEd;;OAEG;IACH,YAAY,EAAE,CAAC;IAEf;;OAEG;IACH,mBAAmB,EAAE,CAAC;IAEtB;;OAEG;IACH,SAAS,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"e-shape-data-value-state.js","sourceRoot":"","sources":["../../../../src/main/typescript/wcardinal/ui/shape/e-shape-data-value-state.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,MAAM,CAAC,IAAM,oBAAoB,GAAG;IACnC;;;OAGG;IACH,OAAO,EAAE,CAAC,CAAC;IAEX;;OAEG;IACH,KAAK,EAAE,CAAC;IAER;;OAEG;IACH,SAAS,EAAE,CAAC;IAEZ;;OAEG;IACH,WAAW,EAAE,CAAC;IAEd;;OAEG;IACH,YAAY,EAAE,CAAC;IAEf;;OAEG;IACH,mBAAmB,EAAE,CAAC;IAEtB;;OAEG;IACH,SAAS,EAAE,CAAC;IAEZ;;OAEG;IACH,WAAW,EAAE,CAAC;CACL,CAAC","sourcesContent":["/*\n * Copyright (C) 2019 Toshiba Corporation\n * SPDX-License-Identifier: Apache-2.0\n */\n\nexport const EShapeDataValueState = {\n\t/**\n\t * The data status is not known.\n\t * This is the default state.\n\t */\n\tUNKNOWN: -1,\n\n\t/**\n\t * The request succeeded.\n\t */\n\tFOUND: 0,\n\n\t/**\n\t * The server can not find the requested data.\n\t */\n\tNOT_FOUND: 1,\n\n\t/**\n\t * The settings or something provided by clients are considered incorrect.\n\t */\n\tBAD_REQUEST: 2,\n\n\t/**\n\t * The server has encountered unknown errors.\n\t */\n\tSERVER_ERROR: 3,\n\n\t/**\n\t * The server is not ready to handle the request.\n\t */\n\tSERVICE_UNAVAILABLE: 4,\n\n\t/**\n\t * A client is not allowed to access this data.\n\t */\n\tFORBIDDEN: 5,\n\n\t/**\n\t * The server can not find the definition of the requested data.\n\t */\n\tNOT_DEFINED: 6\n} as const;\n\nexport type EShapeDataValueState = number;\n"]}
|
package/dist/wcardinal-ui.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Winter Cardinal UI v0.
|
|
2
|
+
Winter Cardinal UI v0.233.0
|
|
3
3
|
Copyright (C) 2019 Toshiba Corporation
|
|
4
4
|
SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
|
|
@@ -4952,7 +4952,11 @@ var EShapeDataValueState = {
|
|
|
4952
4952
|
/**
|
|
4953
4953
|
* A client is not allowed to access this data.
|
|
4954
4954
|
*/
|
|
4955
|
-
FORBIDDEN: 5
|
|
4955
|
+
FORBIDDEN: 5,
|
|
4956
|
+
/**
|
|
4957
|
+
* The server can not find the definition of the requested data.
|
|
4958
|
+
*/
|
|
4959
|
+
NOT_DEFINED: 6
|
|
4956
4960
|
};
|
|
4957
4961
|
|
|
4958
4962
|
/*
|
package/dist/wcardinal-ui.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Winter Cardinal UI v0.
|
|
2
|
+
Winter Cardinal UI v0.233.0
|
|
3
3
|
Copyright (C) 2019 Toshiba Corporation
|
|
4
4
|
SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
|
|
@@ -4949,7 +4949,11 @@
|
|
|
4949
4949
|
/**
|
|
4950
4950
|
* A client is not allowed to access this data.
|
|
4951
4951
|
*/
|
|
4952
|
-
FORBIDDEN: 5
|
|
4952
|
+
FORBIDDEN: 5,
|
|
4953
|
+
/**
|
|
4954
|
+
* The server can not find the definition of the requested data.
|
|
4955
|
+
*/
|
|
4956
|
+
NOT_DEFINED: 6
|
|
4953
4957
|
};
|
|
4954
4958
|
|
|
4955
4959
|
/*
|