@smartnet360/svelte-components 0.0.109 → 0.0.110

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.
@@ -7,6 +7,7 @@ import type { ColumnDefinition, CellComponent } from 'tabulator-tables';
7
7
  import type { CellTableColumn, ColumnPreset, TechColorMap, StatusColorMap, ColumnGroups } from './types';
8
8
  /**
9
9
  * Default technology colors (Bootstrap-aligned)
10
+ * 2G: Yellow, 4G: Purple, 5G: Green
10
11
  */
11
12
  export declare const DEFAULT_TECH_COLORS: TechColorMap;
12
13
  /**
@@ -15,6 +16,9 @@ export declare const DEFAULT_TECH_COLORS: TechColorMap;
15
16
  export declare const DEFAULT_STATUS_COLORS: StatusColorMap;
16
17
  /**
17
18
  * Frequency band colors
19
+ * GSM: Yellow shades (darker = higher freq)
20
+ * LTE: Purple shades (darker = higher freq)
21
+ * 5G: Green shades (stronger = higher freq)
18
22
  */
19
23
  export declare const FBAND_COLORS: Record<string, string>;
20
24
  /**
@@ -5,41 +5,49 @@
5
5
  */
6
6
  /**
7
7
  * Default technology colors (Bootstrap-aligned)
8
+ * 2G: Yellow, 4G: Purple, 5G: Green
8
9
  */
9
10
  export const DEFAULT_TECH_COLORS = {
10
- '2G': '#6c757d', // secondary gray
11
+ '2G': '#ffc107', // Yellow
11
12
  '3G': '#0d6efd', // primary blue
12
- '4G': '#198754', // success green
13
- '5G': '#6f42c1', // purple
14
- 'LTE': '#198754', // success green
15
- 'NR': '#6f42c1', // purple
13
+ '4G': '#9333ea', // Purple
14
+ '5G': '#22c55e', // Green
15
+ 'LTE': '#9333ea', // Purple (same as 4G)
16
+ 'NR': '#22c55e', // Green (same as 5G)
16
17
  };
17
18
  /**
18
19
  * Default status colors (Bootstrap-aligned)
19
20
  */
20
21
  export const DEFAULT_STATUS_COLORS = {
21
22
  'On_Air': '#198754', // success green
22
- 'On_Air_UNDER_CONSTRUCTION': '#ffc107', // warning yellow
23
- 'On_Air_Locked': '#0dcaf0', // info cyan
24
- 'RF_Plan_Ready': '#0d6efd', // primary blue
25
- 'Re-Planned_RF_Plan_Ready': '#6f42c1', // purple
26
- 'Tavlati_RF_Plan_Ready': '#fd7e14', // orange
23
+ 'On_Air_UNDER_CONSTRUCTION': '#4ce207ff', // warning yellow
24
+ 'On_Air_Locked': '#e04001ff', // info cyan
25
+ 'RF_Plan_Ready': '#e69603ff', // primary blue
26
+ 'Re-Planned_RF_Plan_Ready': '#c1a342ff', // purple
27
+ 'Tavlati_RF_Plan_Ready': '#25ddfdff', // orange
27
28
  };
28
29
  /**
29
30
  * Frequency band colors
31
+ * GSM: Yellow shades (darker = higher freq)
32
+ * LTE: Purple shades (darker = higher freq)
33
+ * 5G: Green shades (stronger = higher freq)
30
34
  */
31
35
  export const FBAND_COLORS = {
32
- 'GSM900': '#6c757d',
33
- 'GSM1800': '#495057',
34
- 'LTE700': '#dc3545',
35
- 'LTE800': '#e35d6a',
36
- 'LTE900': '#fd7e14',
37
- 'LTE1800': '#198754',
38
- 'LTE2100': '#20c997',
39
- 'LTE2600': '#0dcaf0',
40
- '5G-700': '#6f42c1',
41
- '5G-3500': '#d63384',
42
- 'NR3500': '#d63384',
36
+ // GSM - Yellow shades (900 lighter, 1800 darker)
37
+ 'GSM900': '#ffc107', // Light yellow
38
+ 'GSM1800': '#cc9a06', // Darker yellow/gold
39
+ // LTE - Purple shades (700 lightest → 2600 darkest)
40
+ 'LTE700': '#d8b4fe', // Light purple
41
+ 'LTE800': '#c084fc', //
42
+ 'LTE900': '#a855f7', //
43
+ 'LTE1800': '#9333ea', //
44
+ 'LTE2100': '#7e22ce', //
45
+ 'LTE2600': '#6b21a8', // Dark purple
46
+ // 5G - Green shades (700 lighter → 3500 stronger)
47
+ '5G-700': '#86efac', // Light green
48
+ '5G-2100': '#22c55e', // Medium green
49
+ '5G-3500': '#15803d', // Strong/dark green
50
+ 'NR3500': '#15803d', // Same as 5G-3500
43
51
  };
44
52
  /**
45
53
  * Column groups for different presets
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartnet360/svelte-components",
3
- "version": "0.0.109",
3
+ "version": "0.0.110",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",