@meshmakers/octo-ui 3.3.610 → 3.3.630
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/README.md +1 -0
- package/fesm2022/meshmakers-octo-ui.mjs +11217 -4079
- package/fesm2022/meshmakers-octo-ui.mjs.map +1 -1
- package/lib/runtime-browser/styles/_index.scss +3 -4950
- package/lib/runtime-browser/styles/_lcars-button.scss +55 -0
- package/lib/runtime-browser/styles/_lcars-flat-btn.scss +11 -0
- package/lib/runtime-browser/styles/_lcars-input.scss +13 -0
- package/lib/runtime-browser/styles/_styles.scss +4708 -0
- package/lib/runtime-browser/styles/_variables.scss +15 -12
- package/package.json +13 -4
- package/types/meshmakers-octo-ui.d.ts +1403 -549
|
@@ -4,19 +4,19 @@
|
|
|
4
4
|
// ============================================================================
|
|
5
5
|
|
|
6
6
|
// ----------------------------------------------------------------------------
|
|
7
|
-
// LCARS DESIGN TOKENS - Brand color palette (
|
|
7
|
+
// LCARS DESIGN TOKENS - Brand color palette (from Brand Manual)
|
|
8
8
|
// ----------------------------------------------------------------------------
|
|
9
|
-
$octo-mint: #
|
|
10
|
-
$neo-cyan: #
|
|
11
|
-
$indigogo: #
|
|
12
|
-
$toffee: #
|
|
13
|
-
$bubblegum: #
|
|
14
|
-
$lilac-glow: #
|
|
15
|
-
$royal-violet: #
|
|
16
|
-
$ash-blue: #
|
|
17
|
-
$iron-navy: #
|
|
18
|
-
$deep-sea: #
|
|
19
|
-
$surface-elevated: #
|
|
9
|
+
$octo-mint: #64ceb9; // Primary highlight
|
|
10
|
+
$neo-cyan: #00a8dc; // Secondary highlight
|
|
11
|
+
$indigogo: #546fbd; // Panel accents
|
|
12
|
+
$toffee: #da9162; // Warm accent
|
|
13
|
+
$bubblegum: #ec658f; // Alert/warning accent
|
|
14
|
+
$lilac-glow: #c861d6; // Hover states, glow effects
|
|
15
|
+
$royal-violet: #6c4da8; // LCARS-typical accent
|
|
16
|
+
$ash-blue: #9292a6; // Inactive elements, secondary text
|
|
17
|
+
$iron-navy: #394555; // Surface, panels
|
|
18
|
+
$deep-sea: #07172b; // Background (NEVER use black!)
|
|
19
|
+
$surface-elevated: #1f2e40; // Elevated surfaces
|
|
20
20
|
$octo-text-color: #ffffff;
|
|
21
21
|
$lcars-border-color: #64ceb9;
|
|
22
22
|
$pink: #ec658f;
|
|
@@ -152,6 +152,9 @@ $kendo-success: #37b400;
|
|
|
152
152
|
|
|
153
153
|
// LCARS-specific design tokens
|
|
154
154
|
--lcars-glow-primary: 0 0 10px var(--octo-mint-40);
|
|
155
|
+
--lcars-btn-base: linear-gradient(180deg, var(--octo-mint-15), var(--octo-mint-05));
|
|
156
|
+
--lcars-btn-base-hover: linear-gradient(180deg, var(--octo-mint-25), var(--octo-mint-15));
|
|
157
|
+
--lcars-input-focus: 0 0 8px var(--octo-mint-30);
|
|
155
158
|
--lcars-glow-cyan: 0 0 10px var(--neo-cyan-40);
|
|
156
159
|
--lcars-glow-violet: 0 0 10px var(--royal-violet-40);
|
|
157
160
|
--lcars-glow-pink: 0 0 10px var(--bubblegum-40);
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshmakers/octo-ui",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.630",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@
|
|
6
|
-
"@angular/
|
|
7
|
-
"@angular/
|
|
5
|
+
"@ngx-translate/core": "^17.0.0",
|
|
6
|
+
"@angular/animations": "^21.0.6",
|
|
7
|
+
"@angular/common": "^21.0.6",
|
|
8
|
+
"@angular/core": "^21.0.6",
|
|
9
|
+
"@angular/forms": "^21.0.6",
|
|
8
10
|
"@meshmakers/octo-services": "*",
|
|
11
|
+
"@meshmakers/shared-services": "*",
|
|
9
12
|
"@meshmakers/shared-auth": "*",
|
|
10
13
|
"@meshmakers/shared-ui": "*",
|
|
11
14
|
"@progress/kendo-angular-buttons": "^23.2.0",
|
|
@@ -20,10 +23,16 @@
|
|
|
20
23
|
"@progress/kendo-svg-icons": "^4.8.0",
|
|
21
24
|
"apollo-angular": "^13.0.0"
|
|
22
25
|
},
|
|
26
|
+
"peerDependenciesMeta": {
|
|
27
|
+
"@ngx-translate/core": {
|
|
28
|
+
"optional": true
|
|
29
|
+
}
|
|
30
|
+
},
|
|
23
31
|
"dependencies": {
|
|
24
32
|
"tslib": "^2.8.1"
|
|
25
33
|
},
|
|
26
34
|
"sideEffects": false,
|
|
35
|
+
"style": "styles/_index.scss",
|
|
27
36
|
"module": "fesm2022/meshmakers-octo-ui.mjs",
|
|
28
37
|
"typings": "types/meshmakers-octo-ui.d.ts",
|
|
29
38
|
"exports": {
|