@wcardinal/wcardinal-ui 0.339.0 → 0.341.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-pagination.d.ts +15 -3
- package/dist/types/wcardinal/ui/theme/dark/d-theme-dark-pagination-dots.d.ts +6 -0
- package/dist/types/wcardinal/ui/theme/dark/d-theme-dark-pagination-page.d.ts +1 -0
- package/dist/types/wcardinal/ui/theme/white/d-theme-white-pagination-dots.d.ts +6 -0
- package/dist/types/wcardinal/ui/theme/white/d-theme-white-pagination-page.d.ts +1 -0
- package/dist/wcardinal/ui/d-pagination.js +355 -110
- package/dist/wcardinal/ui/d-pagination.js.map +1 -1
- package/dist/wcardinal/ui/theme/dark/d-theme-dark-pagination-dots.js +15 -3
- package/dist/wcardinal/ui/theme/dark/d-theme-dark-pagination-dots.js.map +1 -1
- package/dist/wcardinal/ui/theme/dark/d-theme-dark-pagination-page.js +4 -0
- package/dist/wcardinal/ui/theme/dark/d-theme-dark-pagination-page.js.map +1 -1
- package/dist/wcardinal/ui/theme/white/d-theme-white-pagination-dots.js +15 -3
- package/dist/wcardinal/ui/theme/white/d-theme-white-pagination-dots.js.map +1 -1
- package/dist/wcardinal/ui/theme/white/d-theme-white-pagination-page.js +4 -0
- package/dist/wcardinal/ui/theme/white/d-theme-white-pagination-page.js.map +1 -1
- package/dist/wcardinal-ui-theme-dark.js +17 -4
- 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 +17 -4
- 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 +386 -116
- package/dist/wcardinal-ui.js +354 -110
- 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.341.0
|
|
3
3
|
Copyright (C) 2019 Toshiba Corporation
|
|
4
4
|
SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
|
|
@@ -6915,9 +6915,9 @@
|
|
|
6915
6915
|
*/
|
|
6916
6916
|
/* eslint-disable prettier/prettier */
|
|
6917
6917
|
DThemeWhiteAtlas.add("pagination_dots", 21, 21, "<g>" +
|
|
6918
|
-
"<circle cx=\"2\" cy=\"
|
|
6919
|
-
"<circle cx=\"10.5\" cy=\"
|
|
6920
|
-
"<circle cx=\"19\" cy=\"
|
|
6918
|
+
"<circle cx=\"2\" cy=\"11\" r=\"1.1\" fill=\"#fff\" stroke=\"none\" />" +
|
|
6919
|
+
"<circle cx=\"10.5\" cy=\"11\" r=\"1.1\" fill=\"#fff\" stroke=\"none\" />" +
|
|
6920
|
+
"<circle cx=\"19\" cy=\"11\" r=\"1.1\" fill=\"#fff\" stroke=\"none\" />" +
|
|
6921
6921
|
"</g>");
|
|
6922
6922
|
/* eslint-enable prettier/prettier */
|
|
6923
6923
|
var DThemeWhitePaginationDots = /** @class */ (function (_super) {
|
|
@@ -6931,6 +6931,9 @@
|
|
|
6931
6931
|
DThemeWhitePaginationDots.prototype.getHeight = function () {
|
|
6932
6932
|
return 30;
|
|
6933
6933
|
};
|
|
6934
|
+
DThemeWhitePaginationDots.prototype.getInteractive = function () {
|
|
6935
|
+
return DBaseInteractive.NONE;
|
|
6936
|
+
};
|
|
6934
6937
|
DThemeWhitePaginationDots.prototype.newState = function (state) {
|
|
6935
6938
|
_super.prototype.newState.call(this, state);
|
|
6936
6939
|
state.isFocusable = false;
|
|
@@ -6938,6 +6941,12 @@
|
|
|
6938
6941
|
DThemeWhitePaginationDots.prototype.getImageSource = function (state) {
|
|
6939
6942
|
return DThemeWhiteAtlas.mappings.pagination_dots;
|
|
6940
6943
|
};
|
|
6944
|
+
DThemeWhitePaginationDots.prototype.getImageAlignHorizontal = function () {
|
|
6945
|
+
return DAlignHorizontal.CENTER;
|
|
6946
|
+
};
|
|
6947
|
+
DThemeWhitePaginationDots.prototype.getImageAlignWith = function () {
|
|
6948
|
+
return DAlignWith.BORDER;
|
|
6949
|
+
};
|
|
6941
6950
|
return DThemeWhitePaginationDots;
|
|
6942
6951
|
}(DThemeWhiteImageBase));
|
|
6943
6952
|
|
|
@@ -7077,6 +7086,10 @@
|
|
|
7077
7086
|
DThemeWhitePaginationPage.prototype.getHeight = function () {
|
|
7078
7087
|
return 30;
|
|
7079
7088
|
};
|
|
7089
|
+
DThemeWhitePaginationPage.prototype.newState = function (state) {
|
|
7090
|
+
_super.prototype.newState.call(this, state);
|
|
7091
|
+
state.isFocusable = false;
|
|
7092
|
+
};
|
|
7080
7093
|
DThemeWhitePaginationPage.prototype.getTextStyleClipping = function () {
|
|
7081
7094
|
return false;
|
|
7082
7095
|
};
|