oolib 2.95.1 → 2.96.1

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.
@@ -43,6 +43,11 @@ export namespace colors {
43
43
  export { primaryColorText };
44
44
  export { cyan };
45
45
  export { lightPink };
46
+ export { pinkHighlight };
47
+ export { blueHighlight };
48
+ export { yellowHighlight };
49
+ export { annoPink };
50
+ export { annoBlue };
46
51
  }
47
52
  declare const none: "rgba(0,0,0,0)";
48
53
  declare const white: "#fff";
@@ -53,7 +58,7 @@ declare const red: "#e60000";
53
58
  declare const lightRed: "#FCE6E6";
54
59
  declare const invertRed: "#FF9999";
55
60
  declare const hoverRed: "#B70000";
56
- declare const hoverInvertRed: "FBC3C3";
61
+ declare const hoverInvertRed: "#FBC3C3";
57
62
  declare const yellow: "#FFCC00";
58
63
  declare const lightYellow: "#FFFAE6";
59
64
  declare const green: "#08A84B";
@@ -88,4 +93,9 @@ declare const primaryColor40: "#addbff";
88
93
  declare const primaryColorText: "#0071CC";
89
94
  declare const cyan: "#B5F2FA";
90
95
  declare const lightPink: "#FFE5F2";
96
+ declare const pinkHighlight: "#FF9AF4";
97
+ declare const blueHighlight: "#52E2EE";
98
+ declare const yellowHighlight: "#FFE600";
99
+ declare const annoPink: "#FF91F4";
100
+ declare const annoBlue: "#52E2EE";
91
101
  export {};
@@ -14,7 +14,7 @@ var red = '#e60000';
14
14
  var lightRed = '#FCE6E6';
15
15
  var invertRed = '#FF9999';
16
16
  var hoverRed = '#B70000'; // rarely used, TagLink comp
17
- var hoverInvertRed = 'FBC3C3'; // rarely used, TagLink comp
17
+ var hoverInvertRed = '#FBC3C3'; // rarely used, TagLink comp
18
18
  var yellow = '#FFCC00';
19
19
  var lightYellow = '#FFFAE6';
20
20
  var green = '#08A84B';
@@ -45,6 +45,13 @@ var greyColor100_opacity70 = ' rgba(56, 56, 56, 0.7)';
45
45
  var lightShadowColor = '#33A4FF';
46
46
  var darkShadowColor = white;
47
47
  var disabledShadowColor = greyColor70;
48
+ // Highlight colors used in RTE
49
+ var pinkHighlight = '#FF9AF4';
50
+ var blueHighlight = '#52E2EE';
51
+ var yellowHighlight = "#FFE600";
52
+ // annotation RTE Colors
53
+ var annoPink = '#FF91F4';
54
+ var annoBlue = '#52E2EE';
48
55
  exports.colors = {
49
56
  none: none,
50
57
  white: white,
@@ -89,5 +96,10 @@ exports.colors = {
89
96
  primaryColor40: primaryColor40,
90
97
  primaryColorText: primaryColorText,
91
98
  cyan: cyan,
92
- lightPink: lightPink
99
+ lightPink: lightPink,
100
+ pinkHighlight: pinkHighlight,
101
+ blueHighlight: blueHighlight,
102
+ yellowHighlight: yellowHighlight,
103
+ annoPink: annoPink,
104
+ annoBlue: annoBlue,
93
105
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oolib",
3
- "version": "2.95.1",
3
+ "version": "2.96.1",
4
4
  "description": " OKE Component Library",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",