@5even7/dlc-ui 0.2.12 → 0.2.14
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/CHANGELOG.md +15 -0
- package/README.md +50 -11
- package/dist/capsule.cjs +9 -0
- package/dist/color.cjs +9 -0
- package/dist/emo.cjs +18827 -0
- package/dist/emo.mjs +664 -0
- package/dist/index.cjs +18400 -1
- package/dist/index.mjs +399 -2
- package/dist/index.umd.js +45256 -3750
- package/dist/index.umd.min.js +1 -1
- package/dist/progress.cjs +19 -3
- package/dist/progress.mjs +14 -3
- package/dist/vue2.cjs +18690 -194
- package/dist/vue2.mjs +437 -4
- package/dist/vue3.cjs +18690 -194
- package/dist/vue3.mjs +437 -4
- package/package.json +17 -4
- package/styles/emo.css +32 -0
- package/styles/theme.css +1 -0
- package/types/emo.d.ts +11 -0
- package/types/index.d.ts +84 -0
- package/types/vue2.d.ts +1 -0
- package/types/vue3.d.ts +33 -1
package/dist/progress.cjs
CHANGED
|
@@ -399,6 +399,15 @@ var PROGRESS_PRESETS = [{
|
|
|
399
399
|
initialProgress: 30,
|
|
400
400
|
edgeStyle: 'tide',
|
|
401
401
|
colors: ['#0A2239', '#2E9BFF', '#7FE3FF', '#EAF9FF']
|
|
402
|
+
}, {
|
|
403
|
+
id: 'botanic-lab',
|
|
404
|
+
code: 'NC-14',
|
|
405
|
+
name: '森息',
|
|
406
|
+
subtitle: 'MOSS CULTURE / ROOTING',
|
|
407
|
+
group: 'progress',
|
|
408
|
+
initialProgress: 46,
|
|
409
|
+
edgeStyle: 'flow',
|
|
410
|
+
colors: ['#102A23', '#287A58', '#9BD65B', '#F2FFC4']
|
|
402
411
|
}];
|
|
403
412
|
|
|
404
413
|
[].concat(_toConsumableArray(CAPSULE_PRESETS), _toConsumableArray(PROGRESS_PRESETS));
|
|
@@ -448,8 +457,7 @@ var DEFAULTS = {
|
|
|
448
457
|
textRatio: 54,
|
|
449
458
|
showValue: true,
|
|
450
459
|
respectReducedMotion: true
|
|
451
|
-
}
|
|
452
|
-
};
|
|
460
|
+
}};
|
|
453
461
|
|
|
454
462
|
/**
|
|
455
463
|
* Internal accessibility labels and small UI text. Since the copy API was
|
|
@@ -827,6 +835,13 @@ var PROFILE_CONFIG = {
|
|
|
827
835
|
detail: 0.06,
|
|
828
836
|
lobe: 0.23
|
|
829
837
|
},
|
|
838
|
+
'botanic-lab': {
|
|
839
|
+
seed: 3.46,
|
|
840
|
+
broad: 0.54,
|
|
841
|
+
middle: 0.18,
|
|
842
|
+
detail: 0.05,
|
|
843
|
+
lobe: 0.28
|
|
844
|
+
},
|
|
830
845
|
// ponytail: first-pass tide = asymmetric time warp on the same motion pipeline.
|
|
831
846
|
// Refine (foam line / wash streaks) in the shader after visual QA.
|
|
832
847
|
'tide': {
|
|
@@ -1122,7 +1137,8 @@ var PALETTES = {
|
|
|
1122
1137
|
'model-training': ['#20131f', '#ff3f94', '#ff8a3d', '#fff06a'],
|
|
1123
1138
|
'agent-migration': ['#111a31', '#245bff', '#00cfff', '#5dffe6'],
|
|
1124
1139
|
'visual-training': ['#1f172b', '#7042ff', '#42f58d', '#c4ff8a'],
|
|
1125
|
-
'tide': ['#0a2239', '#2e9bff', '#7fe3ff', '#eaf9ff']
|
|
1140
|
+
'tide': ['#0a2239', '#2e9bff', '#7fe3ff', '#eaf9ff'],
|
|
1141
|
+
'botanic-lab': ['#102a23', '#287a58', '#9bd65b', '#f2ffc4']
|
|
1126
1142
|
};
|
|
1127
1143
|
function drawCloud(context, x, y, radiusX, radiusY, color, alpha) {
|
|
1128
1144
|
context.save();
|
package/dist/progress.mjs
CHANGED
|
@@ -141,6 +141,16 @@ const PROGRESS_PRESETS = [
|
|
|
141
141
|
initialProgress: 30,
|
|
142
142
|
edgeStyle: 'tide',
|
|
143
143
|
colors: ['#0A2239', '#2E9BFF', '#7FE3FF', '#EAF9FF']
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
id: 'botanic-lab',
|
|
147
|
+
code: 'NC-14',
|
|
148
|
+
name: '森息',
|
|
149
|
+
subtitle: 'MOSS CULTURE / ROOTING',
|
|
150
|
+
group: 'progress',
|
|
151
|
+
initialProgress: 46,
|
|
152
|
+
edgeStyle: 'flow',
|
|
153
|
+
colors: ['#102A23', '#287A58', '#9BD65B', '#F2FFC4']
|
|
144
154
|
}
|
|
145
155
|
];
|
|
146
156
|
|
|
@@ -189,8 +199,7 @@ const DEFAULTS = {
|
|
|
189
199
|
textRatio: 54,
|
|
190
200
|
showValue: true,
|
|
191
201
|
respectReducedMotion: true
|
|
192
|
-
}
|
|
193
|
-
};
|
|
202
|
+
}};
|
|
194
203
|
|
|
195
204
|
/**
|
|
196
205
|
* Internal accessibility labels and small UI text. Since the copy API was
|
|
@@ -543,6 +552,7 @@ const PROFILE_CONFIG = {
|
|
|
543
552
|
'model-training': { seed: 0.37, broad: 0.58, middle: 0.25, detail: 0.13, lobe: 0.24 },
|
|
544
553
|
'agent-migration': { seed: 1.71, broad: 0.72, middle: 0.10, detail: 0.03, lobe: 0.18 },
|
|
545
554
|
'visual-training': { seed: 2.83, broad: 0.66, middle: 0.16, detail: 0.06, lobe: 0.23 },
|
|
555
|
+
'botanic-lab': { seed: 3.46, broad: 0.54, middle: 0.18, detail: 0.05, lobe: 0.28 },
|
|
546
556
|
// ponytail: first-pass tide = asymmetric time warp on the same motion pipeline.
|
|
547
557
|
// Refine (foam line / wash streaks) in the shader after visual QA.
|
|
548
558
|
'tide': { seed: 4.12, broad: 0.82, middle: 0.07, detail: 0.02, lobe: 0.30, warp: 0.5 }
|
|
@@ -1048,7 +1058,8 @@ const PALETTES = {
|
|
|
1048
1058
|
'model-training': ['#20131f', '#ff3f94', '#ff8a3d', '#fff06a'],
|
|
1049
1059
|
'agent-migration': ['#111a31', '#245bff', '#00cfff', '#5dffe6'],
|
|
1050
1060
|
'visual-training': ['#1f172b', '#7042ff', '#42f58d', '#c4ff8a'],
|
|
1051
|
-
'tide': ['#0a2239', '#2e9bff', '#7fe3ff', '#eaf9ff']
|
|
1061
|
+
'tide': ['#0a2239', '#2e9bff', '#7fe3ff', '#eaf9ff'],
|
|
1062
|
+
'botanic-lab': ['#102a23', '#287a58', '#9bd65b', '#f2ffc4']
|
|
1052
1063
|
};
|
|
1053
1064
|
|
|
1054
1065
|
function drawCloud(context, x, y, radiusX, radiusY, color, alpha) {
|