@telicent-oss/ds 0.27.7 → 0.27.8
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/ds.js +24 -17
- package/dist/ds.umd.cjs +24 -17
- package/dist/logout-syncer/sw.js +1 -1
- package/dist/src/v1/theme/colors/blank.d.ts +9 -0
- package/package.json +1 -1
package/dist/ds.js
CHANGED
|
@@ -19479,12 +19479,12 @@ var beforeRead = "beforeRead";
|
|
|
19479
19479
|
var read = "read";
|
|
19480
19480
|
var afterRead = "afterRead";
|
|
19481
19481
|
var beforeMain = "beforeMain";
|
|
19482
|
-
var main$
|
|
19482
|
+
var main$4 = "main";
|
|
19483
19483
|
var afterMain = "afterMain";
|
|
19484
19484
|
var beforeWrite = "beforeWrite";
|
|
19485
19485
|
var write = "write";
|
|
19486
19486
|
var afterWrite = "afterWrite";
|
|
19487
|
-
var modifierPhases = [beforeRead, read, afterRead, beforeMain, main$
|
|
19487
|
+
var modifierPhases = [beforeRead, read, afterRead, beforeMain, main$4, afterMain, beforeWrite, write, afterWrite];
|
|
19488
19488
|
function getNodeName(element) {
|
|
19489
19489
|
return element ? (element.nodeName || "").toLowerCase() : null;
|
|
19490
19490
|
}
|
|
@@ -60816,8 +60816,17 @@ const DATA_NAVY = {
|
|
|
60816
60816
|
500: "#2F44CA",
|
|
60817
60817
|
600: "#2636A2"
|
|
60818
60818
|
};
|
|
60819
|
-
const main$
|
|
60819
|
+
const main$3 = "#F56AAA";
|
|
60820
60820
|
const DOCUMENT_PINK = {
|
|
60821
|
+
50: alpha$1(main$3, 0.1),
|
|
60822
|
+
100: alpha$1(main$3, 0.2),
|
|
60823
|
+
200: alpha$1(main$3, 0.3),
|
|
60824
|
+
400: alpha$1(main$3, 0.5),
|
|
60825
|
+
500: main$3,
|
|
60826
|
+
600: alpha$1(main$3, 0.7)
|
|
60827
|
+
};
|
|
60828
|
+
const main$2 = "#F2A64B";
|
|
60829
|
+
const GRAPH_ORANGE = {
|
|
60821
60830
|
50: alpha$1(main$2, 0.1),
|
|
60822
60831
|
100: alpha$1(main$2, 0.2),
|
|
60823
60832
|
200: alpha$1(main$2, 0.3),
|
|
@@ -60825,8 +60834,8 @@ const DOCUMENT_PINK = {
|
|
|
60825
60834
|
500: main$2,
|
|
60826
60835
|
600: alpha$1(main$2, 0.7)
|
|
60827
60836
|
};
|
|
60828
|
-
const main$1 = "#
|
|
60829
|
-
const
|
|
60837
|
+
const main$1 = "#20BCFA";
|
|
60838
|
+
const ADMIN_BLUE = {
|
|
60830
60839
|
50: alpha$1(main$1, 0.1),
|
|
60831
60840
|
100: alpha$1(main$1, 0.2),
|
|
60832
60841
|
200: alpha$1(main$1, 0.3),
|
|
@@ -60834,8 +60843,8 @@ const GRAPH_ORANGE = {
|
|
|
60834
60843
|
500: main$1,
|
|
60835
60844
|
600: alpha$1(main$1, 0.7)
|
|
60836
60845
|
};
|
|
60837
|
-
const main = "#
|
|
60838
|
-
const
|
|
60846
|
+
const main = "#000000";
|
|
60847
|
+
const BLANK = {
|
|
60839
60848
|
50: alpha$1(main, 0.1),
|
|
60840
60849
|
100: alpha$1(main, 0.2),
|
|
60841
60850
|
200: alpha$1(main, 0.3),
|
|
@@ -60874,10 +60883,11 @@ const THEME_COLORS = {
|
|
|
60874
60883
|
contrastText: common.black
|
|
60875
60884
|
},
|
|
60876
60885
|
Blank: {
|
|
60877
|
-
|
|
60878
|
-
|
|
60879
|
-
|
|
60880
|
-
|
|
60886
|
+
...BLANK,
|
|
60887
|
+
main: BLANK[500],
|
|
60888
|
+
light: BLANK[400],
|
|
60889
|
+
dark: BLANK[600],
|
|
60890
|
+
contrastText: common.white
|
|
60881
60891
|
}
|
|
60882
60892
|
};
|
|
60883
60893
|
const AVATAR_OVERRIDES = {
|
|
@@ -60919,7 +60929,7 @@ const generateButtonOverrides = (uiTheme) => ({
|
|
|
60919
60929
|
border: `1px solid ${theme.palette.primary.main}`,
|
|
60920
60930
|
backgroundColor: theme.palette.secondary.main,
|
|
60921
60931
|
":hover": {
|
|
60922
|
-
backgroundColor:
|
|
60932
|
+
backgroundColor: `${THEME_COLORS[uiTheme][100]}`
|
|
60923
60933
|
}
|
|
60924
60934
|
}),
|
|
60925
60935
|
startIcon: {
|
|
@@ -60951,7 +60961,7 @@ const generateCardOverrides = (uiTheme) => ({
|
|
|
60951
60961
|
style: {
|
|
60952
60962
|
borderWidth: 1,
|
|
60953
60963
|
borderStyle: "solid",
|
|
60954
|
-
borderColor:
|
|
60964
|
+
borderColor: alpha$1(THEME_COLORS[uiTheme][200], 0.4)
|
|
60955
60965
|
}
|
|
60956
60966
|
}],
|
|
60957
60967
|
styleOverrides: {
|
|
@@ -80534,10 +80544,7 @@ const AuthModal = ({
|
|
|
80534
80544
|
p: 2,
|
|
80535
80545
|
overflowY: "auto"
|
|
80536
80546
|
}, children: [
|
|
80537
|
-
/* @__PURE__ */
|
|
80538
|
-
/* @__PURE__ */ jsx$1("i", { className: "fa-regular fa-circle-exclamation" }),
|
|
80539
|
-
" Your session is no longer active"
|
|
80540
|
-
] }),
|
|
80547
|
+
/* @__PURE__ */ jsx$1(H3, { children: "Your session is no longer active" }),
|
|
80541
80548
|
/* @__PURE__ */ jsx$1(Text, { sx: {
|
|
80542
80549
|
pt: 4
|
|
80543
80550
|
}, children: "Your session may have expired, you may have signed out, or your account isn't active." }),
|
package/dist/ds.umd.cjs
CHANGED
|
@@ -19497,12 +19497,12 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
19497
19497
|
var read = "read";
|
|
19498
19498
|
var afterRead = "afterRead";
|
|
19499
19499
|
var beforeMain = "beforeMain";
|
|
19500
|
-
var main$
|
|
19500
|
+
var main$4 = "main";
|
|
19501
19501
|
var afterMain = "afterMain";
|
|
19502
19502
|
var beforeWrite = "beforeWrite";
|
|
19503
19503
|
var write = "write";
|
|
19504
19504
|
var afterWrite = "afterWrite";
|
|
19505
|
-
var modifierPhases = [beforeRead, read, afterRead, beforeMain, main$
|
|
19505
|
+
var modifierPhases = [beforeRead, read, afterRead, beforeMain, main$4, afterMain, beforeWrite, write, afterWrite];
|
|
19506
19506
|
function getNodeName(element) {
|
|
19507
19507
|
return element ? (element.nodeName || "").toLowerCase() : null;
|
|
19508
19508
|
}
|
|
@@ -60834,8 +60834,17 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
60834
60834
|
500: "#2F44CA",
|
|
60835
60835
|
600: "#2636A2"
|
|
60836
60836
|
};
|
|
60837
|
-
const main$
|
|
60837
|
+
const main$3 = "#F56AAA";
|
|
60838
60838
|
const DOCUMENT_PINK = {
|
|
60839
|
+
50: alpha$1(main$3, 0.1),
|
|
60840
|
+
100: alpha$1(main$3, 0.2),
|
|
60841
|
+
200: alpha$1(main$3, 0.3),
|
|
60842
|
+
400: alpha$1(main$3, 0.5),
|
|
60843
|
+
500: main$3,
|
|
60844
|
+
600: alpha$1(main$3, 0.7)
|
|
60845
|
+
};
|
|
60846
|
+
const main$2 = "#F2A64B";
|
|
60847
|
+
const GRAPH_ORANGE = {
|
|
60839
60848
|
50: alpha$1(main$2, 0.1),
|
|
60840
60849
|
100: alpha$1(main$2, 0.2),
|
|
60841
60850
|
200: alpha$1(main$2, 0.3),
|
|
@@ -60843,8 +60852,8 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
60843
60852
|
500: main$2,
|
|
60844
60853
|
600: alpha$1(main$2, 0.7)
|
|
60845
60854
|
};
|
|
60846
|
-
const main$1 = "#
|
|
60847
|
-
const
|
|
60855
|
+
const main$1 = "#20BCFA";
|
|
60856
|
+
const ADMIN_BLUE = {
|
|
60848
60857
|
50: alpha$1(main$1, 0.1),
|
|
60849
60858
|
100: alpha$1(main$1, 0.2),
|
|
60850
60859
|
200: alpha$1(main$1, 0.3),
|
|
@@ -60852,8 +60861,8 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
60852
60861
|
500: main$1,
|
|
60853
60862
|
600: alpha$1(main$1, 0.7)
|
|
60854
60863
|
};
|
|
60855
|
-
const main = "#
|
|
60856
|
-
const
|
|
60864
|
+
const main = "#000000";
|
|
60865
|
+
const BLANK = {
|
|
60857
60866
|
50: alpha$1(main, 0.1),
|
|
60858
60867
|
100: alpha$1(main, 0.2),
|
|
60859
60868
|
200: alpha$1(main, 0.3),
|
|
@@ -60892,10 +60901,11 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
60892
60901
|
contrastText: common.black
|
|
60893
60902
|
},
|
|
60894
60903
|
Blank: {
|
|
60895
|
-
|
|
60896
|
-
|
|
60897
|
-
|
|
60898
|
-
|
|
60904
|
+
...BLANK,
|
|
60905
|
+
main: BLANK[500],
|
|
60906
|
+
light: BLANK[400],
|
|
60907
|
+
dark: BLANK[600],
|
|
60908
|
+
contrastText: common.white
|
|
60899
60909
|
}
|
|
60900
60910
|
};
|
|
60901
60911
|
const AVATAR_OVERRIDES = {
|
|
@@ -60937,7 +60947,7 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
60937
60947
|
border: `1px solid ${theme.palette.primary.main}`,
|
|
60938
60948
|
backgroundColor: theme.palette.secondary.main,
|
|
60939
60949
|
":hover": {
|
|
60940
|
-
backgroundColor:
|
|
60950
|
+
backgroundColor: `${THEME_COLORS[uiTheme][100]}`
|
|
60941
60951
|
}
|
|
60942
60952
|
}),
|
|
60943
60953
|
startIcon: {
|
|
@@ -60969,7 +60979,7 @@ Please use another name.` : formatMuiErrorMessage$1(18));
|
|
|
60969
60979
|
style: {
|
|
60970
60980
|
borderWidth: 1,
|
|
60971
60981
|
borderStyle: "solid",
|
|
60972
|
-
borderColor:
|
|
60982
|
+
borderColor: alpha$1(THEME_COLORS[uiTheme][200], 0.4)
|
|
60973
60983
|
}
|
|
60974
60984
|
}],
|
|
60975
60985
|
styleOverrides: {
|
|
@@ -80552,10 +80562,7 @@ uniform ${i3} ${s4} u_${a3};
|
|
|
80552
80562
|
p: 2,
|
|
80553
80563
|
overflowY: "auto"
|
|
80554
80564
|
}, children: [
|
|
80555
|
-
/* @__PURE__ */
|
|
80556
|
-
/* @__PURE__ */ jsx$1("i", { className: "fa-regular fa-circle-exclamation" }),
|
|
80557
|
-
" Your session is no longer active"
|
|
80558
|
-
] }),
|
|
80565
|
+
/* @__PURE__ */ jsx$1(H3, { children: "Your session is no longer active" }),
|
|
80559
80566
|
/* @__PURE__ */ jsx$1(Text, { sx: {
|
|
80560
80567
|
pt: 4
|
|
80561
80568
|
}, children: "Your session may have expired, you may have signed out, or your account isn't active." }),
|
package/dist/logout-syncer/sw.js
CHANGED