@wcardinal/wcardinal-ui 0.434.0 → 0.436.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/d-layout-board.d.ts +16 -0
- package/dist/types/wcardinal/ui/index.d.ts +1 -0
- package/dist/types/wcardinal/ui/theme/dark/d-theme-dark-layout-board.d.ts +10 -0
- package/dist/types/wcardinal/ui/theme/dark/index-zz-zz.d.ts +1 -0
- package/dist/types/wcardinal/ui/theme/white/d-theme-white-layout-board.d.ts +10 -0
- package/dist/types/wcardinal/ui/theme/white/index-zz-zz.d.ts +1 -0
- package/dist/wcardinal/ui/d-diagram-canvas-editor-snap.js +10 -5
- package/dist/wcardinal/ui/d-diagram-canvas-editor-snap.js.map +1 -1
- package/dist/wcardinal/ui/d-layout-board.js +26 -0
- package/dist/wcardinal/ui/d-layout-board.js.map +1 -0
- package/dist/wcardinal/ui/index.js +1 -0
- package/dist/wcardinal/ui/index.js.map +1 -1
- package/dist/wcardinal/ui/theme/dark/d-theme-dark-layout-board.js +29 -0
- package/dist/wcardinal/ui/theme/dark/d-theme-dark-layout-board.js.map +1 -0
- package/dist/wcardinal/ui/theme/dark/index-zz-zz.js +1 -0
- package/dist/wcardinal/ui/theme/dark/index-zz-zz.js.map +1 -1
- package/dist/wcardinal/ui/theme/dark/load/load-theme-dark-layout.js +2 -0
- package/dist/wcardinal/ui/theme/dark/load/load-theme-dark-layout.js.map +1 -1
- package/dist/wcardinal/ui/theme/white/d-theme-white-layout-board.js +29 -0
- package/dist/wcardinal/ui/theme/white/d-theme-white-layout-board.js.map +1 -0
- package/dist/wcardinal/ui/theme/white/index-zz-zz.js +1 -0
- package/dist/wcardinal/ui/theme/white/index-zz-zz.js.map +1 -1
- package/dist/wcardinal/ui/theme/white/load/load-theme-white-layout.js +2 -0
- package/dist/wcardinal/ui/theme/white/load/load-theme-white-layout.js.map +1 -1
- package/dist/wcardinal-ui-theme-dark-en-us.js +28 -1
- package/dist/wcardinal-ui-theme-dark-en-us.min.js +2 -2
- package/dist/wcardinal-ui-theme-dark-en-us.min.js.map +1 -1
- package/dist/wcardinal-ui-theme-dark-ja-jp.js +28 -1
- package/dist/wcardinal-ui-theme-dark-ja-jp.min.js +2 -2
- package/dist/wcardinal-ui-theme-dark-ja-jp.min.js.map +1 -1
- package/dist/wcardinal-ui-theme-dark.js +28 -1
- package/dist/wcardinal-ui-theme-dark.min.js +2 -2
- package/dist/wcardinal-ui-theme-white-en-us.js +28 -1
- package/dist/wcardinal-ui-theme-white-en-us.min.js +2 -2
- package/dist/wcardinal-ui-theme-white-en-us.min.js.map +1 -1
- package/dist/wcardinal-ui-theme-white-ja-jp.js +28 -1
- package/dist/wcardinal-ui-theme-white-ja-jp.min.js +2 -2
- package/dist/wcardinal-ui-theme-white-ja-jp.min.js.map +1 -1
- package/dist/wcardinal-ui-theme-white.js +28 -1
- package/dist/wcardinal-ui-theme-white.min.js +2 -2
- package/dist/wcardinal-ui.cjs.js +89 -6
- package/dist/wcardinal-ui.js +35 -6
- package/dist/wcardinal-ui.min.js +2 -2
- package/dist/wcardinal-ui.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Winter Cardinal UI v0.
|
|
2
|
+
Winter Cardinal UI v0.436.0
|
|
3
3
|
Copyright (C) 2019 Toshiba Corporation
|
|
4
4
|
SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
|
|
@@ -3184,6 +3184,31 @@
|
|
|
3184
3184
|
DThemeWhite.set("DInputText", DThemeWhiteInputText);
|
|
3185
3185
|
};
|
|
3186
3186
|
|
|
3187
|
+
/*
|
|
3188
|
+
* Copyright (C) 2019 Toshiba Corporation
|
|
3189
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
3190
|
+
*/
|
|
3191
|
+
var DThemeWhiteLayoutBoard = /** @class */ (function (_super) {
|
|
3192
|
+
__extends(DThemeWhiteLayoutBoard, _super);
|
|
3193
|
+
function DThemeWhiteLayoutBoard() {
|
|
3194
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3195
|
+
}
|
|
3196
|
+
DThemeWhiteLayoutBoard.prototype.getBackgroundColor = function (state) {
|
|
3197
|
+
return null;
|
|
3198
|
+
};
|
|
3199
|
+
DThemeWhiteLayoutBoard.prototype.getBorderColor = function (state) {
|
|
3200
|
+
return null;
|
|
3201
|
+
};
|
|
3202
|
+
DThemeWhiteLayoutBoard.prototype.getInteractive = function () {
|
|
3203
|
+
return DBaseInteractive.CHILDREN;
|
|
3204
|
+
};
|
|
3205
|
+
DThemeWhiteLayoutBoard.prototype.newState = function (state) {
|
|
3206
|
+
_super.prototype.newState.call(this, state);
|
|
3207
|
+
state.isFocusable = false;
|
|
3208
|
+
};
|
|
3209
|
+
return DThemeWhiteLayoutBoard;
|
|
3210
|
+
}(DThemeWhiteBase));
|
|
3211
|
+
|
|
3187
3212
|
/*
|
|
3188
3213
|
* Copyright (C) 2019 Toshiba Corporation
|
|
3189
3214
|
* SPDX-License-Identifier: Apache-2.0
|
|
@@ -3227,6 +3252,7 @@
|
|
|
3227
3252
|
DThemeWhite.set("DLayoutHorizontal", DThemeWhiteLayoutHorizontal);
|
|
3228
3253
|
DThemeWhite.set("DLayoutSpace", DThemeWhiteLayoutSpace);
|
|
3229
3254
|
DThemeWhite.set("DLayoutVertical", DThemeWhiteLayoutVertical);
|
|
3255
|
+
DThemeWhite.set("DLayoutBoard", DThemeWhiteLayoutBoard);
|
|
3230
3256
|
};
|
|
3231
3257
|
|
|
3232
3258
|
const UtilGestureMode = wcardinal.ui.UtilGestureMode;
|
|
@@ -10041,6 +10067,7 @@
|
|
|
10041
10067
|
DThemeWhiteInputTextArea: DThemeWhiteInputTextArea,
|
|
10042
10068
|
DThemeWhiteInputText: DThemeWhiteInputText,
|
|
10043
10069
|
DThemeWhiteInput: DThemeWhiteInput,
|
|
10070
|
+
DThemeWhiteLayoutBoard: DThemeWhiteLayoutBoard,
|
|
10044
10071
|
DThemeWhiteLayoutHorizontal: DThemeWhiteLayoutHorizontal,
|
|
10045
10072
|
DThemeWhiteLayoutSpace: DThemeWhiteLayoutSpace,
|
|
10046
10073
|
DThemeWhiteLayoutVertical: DThemeWhiteLayoutVertical,
|