@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
package/dist/wcardinal-ui.cjs.js
CHANGED
|
@@ -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
|
|
|
@@ -51430,6 +51430,15 @@ var EThemeWhiteShapeActionValue = /** @class */ (function () {
|
|
|
51430
51430
|
return "Layer";
|
|
51431
51431
|
}
|
|
51432
51432
|
};
|
|
51433
|
+
EThemeWhiteShapeActionValue.prototype.toGestureOperationTypeLabel = function (type) {
|
|
51434
|
+
switch (type) {
|
|
51435
|
+
case EShapeActionValueGestureOperationType.DRAG:
|
|
51436
|
+
return "Drag";
|
|
51437
|
+
case EShapeActionValueGestureOperationType.PINCH:
|
|
51438
|
+
return "Pinch";
|
|
51439
|
+
}
|
|
51440
|
+
return "Unknown";
|
|
51441
|
+
};
|
|
51433
51442
|
EThemeWhiteShapeActionValue.prototype.toMiscTypeLabel = function (type) {
|
|
51434
51443
|
switch (type) {
|
|
51435
51444
|
case EShapeActionValueMiscType.INPUT_TEXT:
|
|
@@ -60705,6 +60714,15 @@ var EThemeDarkShapeActionValue = /** @class */ (function () {
|
|
|
60705
60714
|
return "Layer";
|
|
60706
60715
|
}
|
|
60707
60716
|
};
|
|
60717
|
+
EThemeDarkShapeActionValue.prototype.toGestureOperationTypeLabel = function (type) {
|
|
60718
|
+
switch (type) {
|
|
60719
|
+
case EShapeActionValueGestureOperationType.DRAG:
|
|
60720
|
+
return "Drag";
|
|
60721
|
+
case EShapeActionValueGestureOperationType.PINCH:
|
|
60722
|
+
return "Pinch";
|
|
60723
|
+
}
|
|
60724
|
+
return "Unknown";
|
|
60725
|
+
};
|
|
60708
60726
|
EThemeDarkShapeActionValue.prototype.toMiscTypeLabel = function (type) {
|
|
60709
60727
|
switch (type) {
|
|
60710
60728
|
case EShapeActionValueMiscType.INPUT_TEXT:
|
package/dist/wcardinal-ui.js
CHANGED
package/dist/wcardinal-ui.min.js
CHANGED