@sankhyalabs/ezui 1.2.0-beta.8 → 1.2.0-beta.9
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/cjs/ez-grid.cjs.entry.js +6 -3
- package/dist/cjs/ez-scroller.cjs.entry.js +1 -1
- package/dist/collection/components/ez-grid/controller/ag-grid/AgGridController.js +6 -3
- package/dist/collection/components/ez-scroller/ez-scroller.css +1 -0
- package/dist/custom-elements/index.js +7 -4
- package/dist/esm/ez-grid.entry.js +6 -3
- package/dist/esm/ez-scroller.entry.js +1 -1
- package/dist/ezui/ez-grid.entry.js +6 -3
- package/dist/ezui/ez-scroller.entry.js +1 -1
- package/dist/ezui/{p-88bfdea4.entry.js → p-3a0dd69f.entry.js} +1 -1
- package/dist/ezui/{p-867aac16.entry.js → p-c0dd9a2e.entry.js} +1 -1
- package/package.json +1 -1
|
@@ -115146,7 +115146,7 @@ class AgGridController {
|
|
|
115146
115146
|
return cellStyle;
|
|
115147
115147
|
}
|
|
115148
115148
|
getFormatterByColumn(params, source) {
|
|
115149
|
-
var _a
|
|
115149
|
+
var _a;
|
|
115150
115150
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === "OPTIONSELECTOR" && source.options) {
|
|
115151
115151
|
const prop = source === null || source === void 0 ? void 0 : source.options;
|
|
115152
115152
|
let options;
|
|
@@ -115174,8 +115174,11 @@ class AgGridController {
|
|
|
115174
115174
|
}
|
|
115175
115175
|
}
|
|
115176
115176
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === index.UserInterface.SEARCH) {
|
|
115177
|
-
if (params.value != undefined) {
|
|
115178
|
-
return
|
|
115177
|
+
if (((_a = params === null || params === void 0 ? void 0 : params.value) === null || _a === void 0 ? void 0 : _a.value) != undefined) {
|
|
115178
|
+
return params.value.value + " - " + params.value.label;
|
|
115179
|
+
}
|
|
115180
|
+
else {
|
|
115181
|
+
return params === null || params === void 0 ? void 0 : params.value;
|
|
115179
115182
|
}
|
|
115180
115183
|
}
|
|
115181
115184
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === index.UserInterface.DECIMALNUMBER) {
|
|
@@ -11,7 +11,7 @@ var EzScrollDirection;
|
|
|
11
11
|
EzScrollDirection["BOTH"] = "both";
|
|
12
12
|
})(EzScrollDirection || (EzScrollDirection = {}));
|
|
13
13
|
|
|
14
|
-
const ezScrollerCss = ":host{display:flex;cursor:grab;width:100%}.dragging{cursor:grabbing}.ez-scroller__container{display:flex;flex-direction:column;overflow:hidden}.ez-scroller__container--horizontal{flex-direction:row;overflow-y:hidden;overflow-x:auto}.ez-scroller__container--vertical{overflow-y:auto;overflow-x:hidden}.ez-scroller__container--both{overflow:auto}::-webkit-scrollbar-track{background-color:var(--scrollbar--secondary);border-radius:var(--border--radius-small);visibility:hidden}::-webkit-scrollbar-thumb{background-color:#00000000;border-radius:var(--border--radius-small);background-color:var(--scrollbar--primary)}:hover::-webkit-scrollbar-thumb{background-color:var(--scrollbar--primary)}::-webkit-scrollbar{background-color:#00000000;width:var(--space--small);height:var(--space--small);max-width:var(--space--small);min-width:var(--space--small)}:hover::-webkit-scrollbar{background-color:var(--scrollbar--secondary)}";
|
|
14
|
+
const ezScrollerCss = ":host{display:flex;cursor:grab;width:100%}.dragging{cursor:grabbing}.ez-scroller__container{display:flex;flex-direction:column;overflow:hidden;scrollbar-width:thin}.ez-scroller__container--horizontal{flex-direction:row;overflow-y:hidden;overflow-x:auto}.ez-scroller__container--vertical{overflow-y:auto;overflow-x:hidden}.ez-scroller__container--both{overflow:auto}::-webkit-scrollbar-track{background-color:var(--scrollbar--secondary);border-radius:var(--border--radius-small);visibility:hidden}::-webkit-scrollbar-thumb{background-color:#00000000;border-radius:var(--border--radius-small);background-color:var(--scrollbar--primary)}:hover::-webkit-scrollbar-thumb{background-color:var(--scrollbar--primary)}::-webkit-scrollbar{background-color:#00000000;width:var(--space--small);height:var(--space--small);max-width:var(--space--small);min-width:var(--space--small)}:hover::-webkit-scrollbar{background-color:var(--scrollbar--secondary)}";
|
|
15
15
|
|
|
16
16
|
let EzScroller = class {
|
|
17
17
|
constructor(hostRef) {
|
|
@@ -312,7 +312,7 @@ export default class AgGridController {
|
|
|
312
312
|
return cellStyle;
|
|
313
313
|
}
|
|
314
314
|
getFormatterByColumn(params, source) {
|
|
315
|
-
var _a
|
|
315
|
+
var _a;
|
|
316
316
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === "OPTIONSELECTOR" && source.options) {
|
|
317
317
|
const prop = source === null || source === void 0 ? void 0 : source.options;
|
|
318
318
|
let options;
|
|
@@ -340,8 +340,11 @@ export default class AgGridController {
|
|
|
340
340
|
}
|
|
341
341
|
}
|
|
342
342
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.SEARCH) {
|
|
343
|
-
if (params.value != undefined) {
|
|
344
|
-
return
|
|
343
|
+
if (((_a = params === null || params === void 0 ? void 0 : params.value) === null || _a === void 0 ? void 0 : _a.value) != undefined) {
|
|
344
|
+
return params.value.value + " - " + params.value.label;
|
|
345
|
+
}
|
|
346
|
+
else {
|
|
347
|
+
return params === null || params === void 0 ? void 0 : params.value;
|
|
345
348
|
}
|
|
346
349
|
}
|
|
347
350
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.DECIMALNUMBER) {
|
|
@@ -120604,7 +120604,7 @@ class AgGridController {
|
|
|
120604
120604
|
return cellStyle;
|
|
120605
120605
|
}
|
|
120606
120606
|
getFormatterByColumn(params, source) {
|
|
120607
|
-
var _a
|
|
120607
|
+
var _a;
|
|
120608
120608
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === "OPTIONSELECTOR" && source.options) {
|
|
120609
120609
|
const prop = source === null || source === void 0 ? void 0 : source.options;
|
|
120610
120610
|
let options;
|
|
@@ -120632,8 +120632,11 @@ class AgGridController {
|
|
|
120632
120632
|
}
|
|
120633
120633
|
}
|
|
120634
120634
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.SEARCH) {
|
|
120635
|
-
if (params.value != undefined) {
|
|
120636
|
-
return
|
|
120635
|
+
if (((_a = params === null || params === void 0 ? void 0 : params.value) === null || _a === void 0 ? void 0 : _a.value) != undefined) {
|
|
120636
|
+
return params.value.value + " - " + params.value.label;
|
|
120637
|
+
}
|
|
120638
|
+
else {
|
|
120639
|
+
return params === null || params === void 0 ? void 0 : params.value;
|
|
120637
120640
|
}
|
|
120638
120641
|
}
|
|
120639
120642
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.DECIMALNUMBER) {
|
|
@@ -122329,7 +122332,7 @@ var EzScrollDirection;
|
|
|
122329
122332
|
EzScrollDirection["BOTH"] = "both";
|
|
122330
122333
|
})(EzScrollDirection || (EzScrollDirection = {}));
|
|
122331
122334
|
|
|
122332
|
-
const ezScrollerCss = ":host{display:flex;cursor:grab;width:100%}.dragging{cursor:grabbing}.ez-scroller__container{display:flex;flex-direction:column;overflow:hidden}.ez-scroller__container--horizontal{flex-direction:row;overflow-y:hidden;overflow-x:auto}.ez-scroller__container--vertical{overflow-y:auto;overflow-x:hidden}.ez-scroller__container--both{overflow:auto}::-webkit-scrollbar-track{background-color:var(--scrollbar--secondary);border-radius:var(--border--radius-small);visibility:hidden}::-webkit-scrollbar-thumb{background-color:#00000000;border-radius:var(--border--radius-small);background-color:var(--scrollbar--primary)}:hover::-webkit-scrollbar-thumb{background-color:var(--scrollbar--primary)}::-webkit-scrollbar{background-color:#00000000;width:var(--space--small);height:var(--space--small);max-width:var(--space--small);min-width:var(--space--small)}:hover::-webkit-scrollbar{background-color:var(--scrollbar--secondary)}";
|
|
122335
|
+
const ezScrollerCss = ":host{display:flex;cursor:grab;width:100%}.dragging{cursor:grabbing}.ez-scroller__container{display:flex;flex-direction:column;overflow:hidden;scrollbar-width:thin}.ez-scroller__container--horizontal{flex-direction:row;overflow-y:hidden;overflow-x:auto}.ez-scroller__container--vertical{overflow-y:auto;overflow-x:hidden}.ez-scroller__container--both{overflow:auto}::-webkit-scrollbar-track{background-color:var(--scrollbar--secondary);border-radius:var(--border--radius-small);visibility:hidden}::-webkit-scrollbar-thumb{background-color:#00000000;border-radius:var(--border--radius-small);background-color:var(--scrollbar--primary)}:hover::-webkit-scrollbar-thumb{background-color:var(--scrollbar--primary)}::-webkit-scrollbar{background-color:#00000000;width:var(--space--small);height:var(--space--small);max-width:var(--space--small);min-width:var(--space--small)}:hover::-webkit-scrollbar{background-color:var(--scrollbar--secondary)}";
|
|
122333
122336
|
|
|
122334
122337
|
let EzScroller$1 = class extends HTMLElement$1 {
|
|
122335
122338
|
constructor() {
|
|
@@ -115142,7 +115142,7 @@ class AgGridController {
|
|
|
115142
115142
|
return cellStyle;
|
|
115143
115143
|
}
|
|
115144
115144
|
getFormatterByColumn(params, source) {
|
|
115145
|
-
var _a
|
|
115145
|
+
var _a;
|
|
115146
115146
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === "OPTIONSELECTOR" && source.options) {
|
|
115147
115147
|
const prop = source === null || source === void 0 ? void 0 : source.options;
|
|
115148
115148
|
let options;
|
|
@@ -115170,8 +115170,11 @@ class AgGridController {
|
|
|
115170
115170
|
}
|
|
115171
115171
|
}
|
|
115172
115172
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.SEARCH) {
|
|
115173
|
-
if (params.value != undefined) {
|
|
115174
|
-
return
|
|
115173
|
+
if (((_a = params === null || params === void 0 ? void 0 : params.value) === null || _a === void 0 ? void 0 : _a.value) != undefined) {
|
|
115174
|
+
return params.value.value + " - " + params.value.label;
|
|
115175
|
+
}
|
|
115176
|
+
else {
|
|
115177
|
+
return params === null || params === void 0 ? void 0 : params.value;
|
|
115175
115178
|
}
|
|
115176
115179
|
}
|
|
115177
115180
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.DECIMALNUMBER) {
|
|
@@ -7,7 +7,7 @@ var EzScrollDirection;
|
|
|
7
7
|
EzScrollDirection["BOTH"] = "both";
|
|
8
8
|
})(EzScrollDirection || (EzScrollDirection = {}));
|
|
9
9
|
|
|
10
|
-
const ezScrollerCss = ":host{display:flex;cursor:grab;width:100%}.dragging{cursor:grabbing}.ez-scroller__container{display:flex;flex-direction:column;overflow:hidden}.ez-scroller__container--horizontal{flex-direction:row;overflow-y:hidden;overflow-x:auto}.ez-scroller__container--vertical{overflow-y:auto;overflow-x:hidden}.ez-scroller__container--both{overflow:auto}::-webkit-scrollbar-track{background-color:var(--scrollbar--secondary);border-radius:var(--border--radius-small);visibility:hidden}::-webkit-scrollbar-thumb{background-color:#00000000;border-radius:var(--border--radius-small);background-color:var(--scrollbar--primary)}:hover::-webkit-scrollbar-thumb{background-color:var(--scrollbar--primary)}::-webkit-scrollbar{background-color:#00000000;width:var(--space--small);height:var(--space--small);max-width:var(--space--small);min-width:var(--space--small)}:hover::-webkit-scrollbar{background-color:var(--scrollbar--secondary)}";
|
|
10
|
+
const ezScrollerCss = ":host{display:flex;cursor:grab;width:100%}.dragging{cursor:grabbing}.ez-scroller__container{display:flex;flex-direction:column;overflow:hidden;scrollbar-width:thin}.ez-scroller__container--horizontal{flex-direction:row;overflow-y:hidden;overflow-x:auto}.ez-scroller__container--vertical{overflow-y:auto;overflow-x:hidden}.ez-scroller__container--both{overflow:auto}::-webkit-scrollbar-track{background-color:var(--scrollbar--secondary);border-radius:var(--border--radius-small);visibility:hidden}::-webkit-scrollbar-thumb{background-color:#00000000;border-radius:var(--border--radius-small);background-color:var(--scrollbar--primary)}:hover::-webkit-scrollbar-thumb{background-color:var(--scrollbar--primary)}::-webkit-scrollbar{background-color:#00000000;width:var(--space--small);height:var(--space--small);max-width:var(--space--small);min-width:var(--space--small)}:hover::-webkit-scrollbar{background-color:var(--scrollbar--secondary)}";
|
|
11
11
|
|
|
12
12
|
let EzScroller = class {
|
|
13
13
|
constructor(hostRef) {
|
|
@@ -115142,7 +115142,7 @@ class AgGridController {
|
|
|
115142
115142
|
return cellStyle;
|
|
115143
115143
|
}
|
|
115144
115144
|
getFormatterByColumn(params, source) {
|
|
115145
|
-
var _a
|
|
115145
|
+
var _a;
|
|
115146
115146
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === "OPTIONSELECTOR" && source.options) {
|
|
115147
115147
|
const prop = source === null || source === void 0 ? void 0 : source.options;
|
|
115148
115148
|
let options;
|
|
@@ -115170,8 +115170,11 @@ class AgGridController {
|
|
|
115170
115170
|
}
|
|
115171
115171
|
}
|
|
115172
115172
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.SEARCH) {
|
|
115173
|
-
if (params.value != undefined) {
|
|
115174
|
-
return
|
|
115173
|
+
if (((_a = params === null || params === void 0 ? void 0 : params.value) === null || _a === void 0 ? void 0 : _a.value) != undefined) {
|
|
115174
|
+
return params.value.value + " - " + params.value.label;
|
|
115175
|
+
}
|
|
115176
|
+
else {
|
|
115177
|
+
return params === null || params === void 0 ? void 0 : params.value;
|
|
115175
115178
|
}
|
|
115176
115179
|
}
|
|
115177
115180
|
if ((source === null || source === void 0 ? void 0 : source.userInterface) === UserInterface.DECIMALNUMBER) {
|
|
@@ -7,7 +7,7 @@ var EzScrollDirection;
|
|
|
7
7
|
EzScrollDirection["BOTH"] = "both";
|
|
8
8
|
})(EzScrollDirection || (EzScrollDirection = {}));
|
|
9
9
|
|
|
10
|
-
const ezScrollerCss = ":host{display:flex;cursor:grab;width:100%}.dragging{cursor:grabbing}.ez-scroller__container{display:flex;flex-direction:column;overflow:hidden}.ez-scroller__container--horizontal{flex-direction:row;overflow-y:hidden;overflow-x:auto}.ez-scroller__container--vertical{overflow-y:auto;overflow-x:hidden}.ez-scroller__container--both{overflow:auto}::-webkit-scrollbar-track{background-color:var(--scrollbar--secondary);border-radius:var(--border--radius-small);visibility:hidden}::-webkit-scrollbar-thumb{background-color:#00000000;border-radius:var(--border--radius-small);background-color:var(--scrollbar--primary)}:hover::-webkit-scrollbar-thumb{background-color:var(--scrollbar--primary)}::-webkit-scrollbar{background-color:#00000000;width:var(--space--small);height:var(--space--small);max-width:var(--space--small);min-width:var(--space--small)}:hover::-webkit-scrollbar{background-color:var(--scrollbar--secondary)}";
|
|
10
|
+
const ezScrollerCss = ":host{display:flex;cursor:grab;width:100%}.dragging{cursor:grabbing}.ez-scroller__container{display:flex;flex-direction:column;overflow:hidden;scrollbar-width:thin}.ez-scroller__container--horizontal{flex-direction:row;overflow-y:hidden;overflow-x:auto}.ez-scroller__container--vertical{overflow-y:auto;overflow-x:hidden}.ez-scroller__container--both{overflow:auto}::-webkit-scrollbar-track{background-color:var(--scrollbar--secondary);border-radius:var(--border--radius-small);visibility:hidden}::-webkit-scrollbar-thumb{background-color:#00000000;border-radius:var(--border--radius-small);background-color:var(--scrollbar--primary)}:hover::-webkit-scrollbar-thumb{background-color:var(--scrollbar--primary)}::-webkit-scrollbar{background-color:#00000000;width:var(--space--small);height:var(--space--small);max-width:var(--space--small);min-width:var(--space--small)}:hover::-webkit-scrollbar{background-color:var(--scrollbar--secondary)}";
|
|
11
11
|
|
|
12
12
|
let EzScroller = class {
|
|
13
13
|
constructor(hostRef) {
|