@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
|
|
|
@@ -3183,6 +3183,31 @@
|
|
|
3183
3183
|
DThemeDark.set("DInputText", DThemeDarkInputText);
|
|
3184
3184
|
};
|
|
3185
3185
|
|
|
3186
|
+
/*
|
|
3187
|
+
* Copyright (C) 2019 Toshiba Corporation
|
|
3188
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
3189
|
+
*/
|
|
3190
|
+
var DThemeDarkLayoutBoard = /** @class */ (function (_super) {
|
|
3191
|
+
__extends(DThemeDarkLayoutBoard, _super);
|
|
3192
|
+
function DThemeDarkLayoutBoard() {
|
|
3193
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3194
|
+
}
|
|
3195
|
+
DThemeDarkLayoutBoard.prototype.getBackgroundColor = function (state) {
|
|
3196
|
+
return null;
|
|
3197
|
+
};
|
|
3198
|
+
DThemeDarkLayoutBoard.prototype.getBorderColor = function (state) {
|
|
3199
|
+
return null;
|
|
3200
|
+
};
|
|
3201
|
+
DThemeDarkLayoutBoard.prototype.getInteractive = function () {
|
|
3202
|
+
return DBaseInteractive.CHILDREN;
|
|
3203
|
+
};
|
|
3204
|
+
DThemeDarkLayoutBoard.prototype.newState = function (state) {
|
|
3205
|
+
_super.prototype.newState.call(this, state);
|
|
3206
|
+
state.isFocusable = false;
|
|
3207
|
+
};
|
|
3208
|
+
return DThemeDarkLayoutBoard;
|
|
3209
|
+
}(DThemeDarkBase));
|
|
3210
|
+
|
|
3186
3211
|
/*
|
|
3187
3212
|
* Copyright (C) 2019 Toshiba Corporation
|
|
3188
3213
|
* SPDX-License-Identifier: Apache-2.0
|
|
@@ -3226,6 +3251,7 @@
|
|
|
3226
3251
|
DThemeDark.set("DLayoutHorizontal", DThemeDarkLayoutHorizontal);
|
|
3227
3252
|
DThemeDark.set("DLayoutSpace", DThemeDarkLayoutSpace);
|
|
3228
3253
|
DThemeDark.set("DLayoutVertical", DThemeDarkLayoutVertical);
|
|
3254
|
+
DThemeDark.set("DLayoutBoard", DThemeDarkLayoutBoard);
|
|
3229
3255
|
};
|
|
3230
3256
|
|
|
3231
3257
|
const UtilGestureMode = wcardinal.ui.UtilGestureMode;
|
|
@@ -10047,6 +10073,7 @@
|
|
|
10047
10073
|
DThemeDarkInputTextArea: DThemeDarkInputTextArea,
|
|
10048
10074
|
DThemeDarkInputText: DThemeDarkInputText,
|
|
10049
10075
|
DThemeDarkInput: DThemeDarkInput,
|
|
10076
|
+
DThemeDarkLayoutBoard: DThemeDarkLayoutBoard,
|
|
10050
10077
|
DThemeDarkLayoutHorizontal: DThemeDarkLayoutHorizontal,
|
|
10051
10078
|
DThemeDarkLayoutSpace: DThemeDarkLayoutSpace,
|
|
10052
10079
|
DThemeDarkLayoutVertical: DThemeDarkLayoutVertical,
|