@syncfusion/ej2-base 32.1.24 → 32.2.6
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/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +2 -2
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +3 -0
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +3 -0
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/dom.js +3 -0
- package/styles/definition/_material3-dark.scss +17 -0
- package/styles/definition/_material3.scss +17 -0
- package/styles/offline-theme/material-dark.css +0 -3
- package/styles/offline-theme/material.css +0 -3
- package/styles/offline-theme/material3-dark.css +0 -3
- package/styles/offline-theme/material3.css +0 -3
- package/styles/offline-theme/tailwind-dark.css +0 -3
- package/styles/offline-theme/tailwind.css +0 -3
- package/styles/offline-theme/tailwind3.css +0 -3
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 32.
|
|
3
|
+
* version : 32.2.3
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-base",
|
|
3
|
-
"version": "32.
|
|
3
|
+
"version": "32.2.6",
|
|
4
4
|
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"syncfusion-license": "bin/syncfusion-license.js"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@syncfusion/ej2-icons": "~32.
|
|
45
|
+
"@syncfusion/ej2-icons": "~32.2.3"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {},
|
|
48
48
|
"typings": "index.d.ts",
|
package/src/dom.js
CHANGED
|
@@ -325,6 +325,9 @@ export function selectAll(selector, context, needsVDOM) {
|
|
|
325
325
|
* @private
|
|
326
326
|
*/
|
|
327
327
|
function querySelectId(selector) {
|
|
328
|
+
if (selector.indexOf('\\#') !== -1) {
|
|
329
|
+
return selector;
|
|
330
|
+
}
|
|
328
331
|
var charRegex = /(!|"|\$|%|&|'|\(|\)|\*|\/|:|;|<|=|\?|@|\]|\^|`|{|}|\||\+|~)/g;
|
|
329
332
|
if (selector.match(/#[0-9]/g) || selector.match(charRegex)) {
|
|
330
333
|
var idList = selector.split(',');
|
|
@@ -814,3 +814,20 @@ $information-font-color: $info !default;
|
|
|
814
814
|
|
|
815
815
|
$frozen-shadow: rgba(0, 0, 0, .25) !default;
|
|
816
816
|
$frozen-shadow-2: rgba(0, 0, 0, .25) !default;
|
|
817
|
+
|
|
818
|
+
// grid components
|
|
819
|
+
$table-bg-color: $content-bg-color !default;
|
|
820
|
+
$table-header-bg-color:$surface !default;
|
|
821
|
+
$table-content-bg-color:$transparent !default;
|
|
822
|
+
$content-header-bg-color: $surface !default;
|
|
823
|
+
$table-header-text-color: $content-text-color !default;
|
|
824
|
+
$table-header-icon-color: $icon-color !default;
|
|
825
|
+
$content-header-text-color: $content-text-color !default;
|
|
826
|
+
$content-header-icon-color: $icon-color !default;
|
|
827
|
+
$table-header-border: $border-light !default;
|
|
828
|
+
$table-border: $border-light !default;
|
|
829
|
+
|
|
830
|
+
//Dropdown list
|
|
831
|
+
$flyout-header-bg-color: $flyout-bg-color !default;
|
|
832
|
+
$flyout-header-text-color: rgba($content-text-color) !default;
|
|
833
|
+
$flyout-header-icon-color: rgba($icon-color) !default;
|
|
@@ -302,6 +302,23 @@ $tooltip-bg-color: $inverse-surface !default;
|
|
|
302
302
|
$tooltip-border: $inverse-surface !default;
|
|
303
303
|
$tooltip-text-color: $inverse-on-surface !default;
|
|
304
304
|
|
|
305
|
+
// grid components
|
|
306
|
+
$table-bg-color: $content-bg-color !default;
|
|
307
|
+
$table-header-bg-color:$surface !default;
|
|
308
|
+
$table-content-bg-color:$transparent !default;
|
|
309
|
+
$content-header-bg-color: $surface !default;
|
|
310
|
+
$table-header-text-color: $content-text-color !default;
|
|
311
|
+
$table-header-icon-color: $icon-color !default;
|
|
312
|
+
$content-header-text-color: $content-text-color !default;
|
|
313
|
+
$content-header-icon-color: $icon-color !default;
|
|
314
|
+
$table-header-border: $border-light !default;
|
|
315
|
+
$table-border: $border-light !default;
|
|
316
|
+
|
|
317
|
+
//Dropdown list
|
|
318
|
+
$flyout-header-bg-color: $flyout-bg-color !default;
|
|
319
|
+
$flyout-header-text-color: rgba($content-text-color) !default;
|
|
320
|
+
$flyout-header-icon-color: rgba($icon-color) !default;
|
|
321
|
+
|
|
305
322
|
$shadow: 0 .8px 16px rgba($black, .15) !default;
|
|
306
323
|
$shadow-sm: $level1 !default;
|
|
307
324
|
$shadow-md: $level2 !default;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
3
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
4
1
|
@font-face {
|
|
5
2
|
font-family: "e-icons";
|
|
6
3
|
font-style: normal;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
3
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
4
1
|
@font-face {
|
|
5
2
|
font-family: "e-icons";
|
|
6
3
|
font-style: normal;
|