@dexteel/mesf-core 7.2.1 → 7.3.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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +12 -0
- package/dist/index.esm.js +20 -15
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [7.3.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.2.1...@dexteel/mesf-core-v7.3.0) (2025-11-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **TagColors:** add more colors ([6c5032a](https://github.com/dexteel/mesf-core-frontend/commit/6c5032a94b34eaa9076c5574bca2428065000e9e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **TagColors:** add comments human redable colors names ([9ce19a2](https://github.com/dexteel/mesf-core-frontend/commit/9ce19a2261d843cb1bd0d28fa4a1c03e6329a9bf))
|
|
14
|
+
|
|
3
15
|
## [7.2.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.2.0...@dexteel/mesf-core-v7.2.1) (2025-11-19)
|
|
4
16
|
|
|
5
17
|
|
package/dist/index.esm.js
CHANGED
|
@@ -11089,21 +11089,26 @@ var Configuration = function () {
|
|
|
11089
11089
|
};
|
|
11090
11090
|
|
|
11091
11091
|
var tagColors$1 = [
|
|
11092
|
-
"#
|
|
11093
|
-
"
|
|
11094
|
-
"#
|
|
11095
|
-
"#
|
|
11096
|
-
"#
|
|
11097
|
-
"#
|
|
11098
|
-
"
|
|
11099
|
-
"#
|
|
11100
|
-
"#
|
|
11101
|
-
"#
|
|
11102
|
-
"#
|
|
11103
|
-
"
|
|
11104
|
-
"#
|
|
11105
|
-
"
|
|
11106
|
-
"#
|
|
11092
|
+
"#00AA00", // green
|
|
11093
|
+
"#0000FF", // blue
|
|
11094
|
+
"#FF0000", // red
|
|
11095
|
+
"#9C27B0", // purple
|
|
11096
|
+
"#FFA500", // orange
|
|
11097
|
+
"#397234", // forest green
|
|
11098
|
+
"#283F23", // dark olive
|
|
11099
|
+
"#3F2617", // dark brown
|
|
11100
|
+
"#0B0F08", // charcoal black
|
|
11101
|
+
"#889c2dff", // olive green
|
|
11102
|
+
"#B78449", // tan brown
|
|
11103
|
+
"#5D9F96", // teal
|
|
11104
|
+
"#1d5e74ff", // dark teal
|
|
11105
|
+
"#FA7305", // bright orange
|
|
11106
|
+
"#072684", // navy blue
|
|
11107
|
+
"#269473ff", // emerald green
|
|
11108
|
+
"#5d74b9ff", // slate blue
|
|
11109
|
+
"#0C8EF4", // sky blue
|
|
11110
|
+
"#8d481cff", // rust brown
|
|
11111
|
+
"#2B384C", // dark slate
|
|
11107
11112
|
];
|
|
11108
11113
|
var availableColors = __spreadArray([], tagColors$1, true);
|
|
11109
11114
|
var lastColor = null;
|