@wcardinal/wcardinal-ui 0.349.0 → 0.350.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/action/e-shape-action-value.d.ts +4 -0
- package/dist/types/wcardinal/ui/theme/dark/e-theme-dark-shape-action-value.d.ts +2 -0
- package/dist/types/wcardinal/ui/theme/white/e-theme-white-shape-action-value.d.ts +2 -0
- package/dist/wcardinal/ui/shape/action/e-shape-action-value.js.map +1 -1
- package/dist/wcardinal/ui/theme/dark/e-theme-dark-shape-action-value.js +10 -0
- package/dist/wcardinal/ui/theme/dark/e-theme-dark-shape-action-value.js.map +1 -1
- package/dist/wcardinal/ui/theme/white/e-theme-white-shape-action-value.js +10 -0
- package/dist/wcardinal/ui/theme/white/e-theme-white-shape-action-value.js.map +1 -1
- package/dist/wcardinal-ui-theme-dark.js +12 -1
- package/dist/wcardinal-ui-theme-dark.min.js +2 -2
- package/dist/wcardinal-ui-theme-dark.min.js.map +1 -1
- package/dist/wcardinal-ui-theme-white.js +12 -1
- package/dist/wcardinal-ui-theme-white.min.js +2 -2
- package/dist/wcardinal-ui-theme-white.min.js.map +1 -1
- package/dist/wcardinal-ui.cjs.js +19 -1
- package/dist/wcardinal-ui.js +1 -1
- package/dist/wcardinal-ui.min.js +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Winter Cardinal UI v0.
|
|
2
|
+
Winter Cardinal UI v0.350.0
|
|
3
3
|
Copyright (C) 2019 Toshiba Corporation
|
|
4
4
|
SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
|
|
@@ -3779,6 +3779,8 @@
|
|
|
3779
3779
|
|
|
3780
3780
|
const EShapeActionValueChangeTextType = wcardinal.ui.EShapeActionValueChangeTextType;
|
|
3781
3781
|
|
|
3782
|
+
const EShapeActionValueGestureOperationType = wcardinal.ui.EShapeActionValueGestureOperationType;
|
|
3783
|
+
|
|
3782
3784
|
const EShapeActionValueGestureType = wcardinal.ui.EShapeActionValueGestureType;
|
|
3783
3785
|
|
|
3784
3786
|
const EShapeActionValueMiscType = wcardinal.ui.EShapeActionValueMiscType;
|
|
@@ -4114,6 +4116,15 @@
|
|
|
4114
4116
|
return "Layer";
|
|
4115
4117
|
}
|
|
4116
4118
|
};
|
|
4119
|
+
EThemeWhiteShapeActionValue.prototype.toGestureOperationTypeLabel = function (type) {
|
|
4120
|
+
switch (type) {
|
|
4121
|
+
case EShapeActionValueGestureOperationType.DRAG:
|
|
4122
|
+
return "Drag";
|
|
4123
|
+
case EShapeActionValueGestureOperationType.PINCH:
|
|
4124
|
+
return "Pinch";
|
|
4125
|
+
}
|
|
4126
|
+
return "Unknown";
|
|
4127
|
+
};
|
|
4117
4128
|
EThemeWhiteShapeActionValue.prototype.toMiscTypeLabel = function (type) {
|
|
4118
4129
|
switch (type) {
|
|
4119
4130
|
case EShapeActionValueMiscType.INPUT_TEXT:
|