@qrunio/qqq-frontend-core 1.3.13-SNAPSHOT → 1.4.2-SNAPSHOT

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.
@@ -15,6 +15,62 @@ export declare class QThemeMetaData {
15
15
  infoColor?: string;
16
16
  fontFamily?: string;
17
17
  headerFontFamily?: string;
18
+ monoFontFamily?: string;
19
+ fontSizeBase?: string;
20
+ fontWeightLight?: number;
21
+ fontWeightRegular?: number;
22
+ fontWeightMedium?: number;
23
+ fontWeightBold?: number;
24
+ typographyH1FontSize?: string;
25
+ typographyH1FontWeight?: number;
26
+ typographyH1LineHeight?: number;
27
+ typographyH1LetterSpacing?: string;
28
+ typographyH1TextTransform?: string;
29
+ typographyH2FontSize?: string;
30
+ typographyH2FontWeight?: number;
31
+ typographyH2LineHeight?: number;
32
+ typographyH2LetterSpacing?: string;
33
+ typographyH2TextTransform?: string;
34
+ typographyH3FontSize?: string;
35
+ typographyH3FontWeight?: number;
36
+ typographyH3LineHeight?: number;
37
+ typographyH3LetterSpacing?: string;
38
+ typographyH3TextTransform?: string;
39
+ typographyH4FontSize?: string;
40
+ typographyH4FontWeight?: number;
41
+ typographyH4LineHeight?: number;
42
+ typographyH4LetterSpacing?: string;
43
+ typographyH4TextTransform?: string;
44
+ typographyH5FontSize?: string;
45
+ typographyH5FontWeight?: number;
46
+ typographyH5LineHeight?: number;
47
+ typographyH5LetterSpacing?: string;
48
+ typographyH5TextTransform?: string;
49
+ typographyH6FontSize?: string;
50
+ typographyH6FontWeight?: number;
51
+ typographyH6LineHeight?: number;
52
+ typographyH6LetterSpacing?: string;
53
+ typographyH6TextTransform?: string;
54
+ typographyBody1FontSize?: string;
55
+ typographyBody1FontWeight?: number;
56
+ typographyBody1LineHeight?: number;
57
+ typographyBody1LetterSpacing?: string;
58
+ typographyBody1TextTransform?: string;
59
+ typographyBody2FontSize?: string;
60
+ typographyBody2FontWeight?: number;
61
+ typographyBody2LineHeight?: number;
62
+ typographyBody2LetterSpacing?: string;
63
+ typographyBody2TextTransform?: string;
64
+ typographyButtonFontSize?: string;
65
+ typographyButtonFontWeight?: number;
66
+ typographyButtonLineHeight?: number;
67
+ typographyButtonLetterSpacing?: string;
68
+ typographyButtonTextTransform?: string;
69
+ typographyCaptionFontSize?: string;
70
+ typographyCaptionFontWeight?: number;
71
+ typographyCaptionLineHeight?: number;
72
+ typographyCaptionLetterSpacing?: string;
73
+ typographyCaptionTextTransform?: string;
18
74
  borderRadius?: string;
19
75
  density?: "compact" | "normal" | "comfortable";
20
76
  logoPath?: string;
@@ -22,5 +78,29 @@ export declare class QThemeMetaData {
22
78
  faviconPath?: string;
23
79
  customCss?: string;
24
80
  iconStyle?: "filled" | "outlined" | "rounded" | "sharp" | "two-tone";
81
+ brandedHeaderEnabled?: boolean;
82
+ brandedHeaderBackgroundColor?: string;
83
+ brandedHeaderTextColor?: string;
84
+ brandedHeaderLogoPath?: string;
85
+ brandedHeaderLogoAltText?: string;
86
+ brandedHeaderHeight?: string;
87
+ brandedHeaderTagline?: string;
88
+ appBarBackgroundColor?: string;
89
+ appBarTextColor?: string;
90
+ sidebarBackgroundColor?: string;
91
+ sidebarTextColor?: string;
92
+ sidebarIconColor?: string;
93
+ sidebarSelectedBackgroundColor?: string;
94
+ sidebarSelectedTextColor?: string;
95
+ sidebarHoverBackgroundColor?: string;
96
+ sidebarDividerColor?: string;
97
+ tableHeaderBackgroundColor?: string;
98
+ tableHeaderTextColor?: string;
99
+ tableRowHoverColor?: string;
100
+ tableRowSelectedColor?: string;
101
+ tableBorderColor?: string;
102
+ dividerColor?: string;
103
+ borderColor?: string;
104
+ cardBorderColor?: string;
25
105
  constructor(object: any);
26
106
  }
@@ -24,6 +24,7 @@
24
24
  *******************************************************************************/
25
25
  var QThemeMetaData = /** @class */ (function () {
26
26
  function QThemeMetaData(object) {
27
+ // Color palette
27
28
  this.primaryColor = object.primaryColor;
28
29
  this.secondaryColor = object.secondaryColor;
29
30
  this.backgroundColor = object.backgroundColor;
@@ -34,15 +35,115 @@ var QThemeMetaData = /** @class */ (function () {
34
35
  this.warningColor = object.warningColor;
35
36
  this.successColor = object.successColor;
36
37
  this.infoColor = object.infoColor;
38
+ // Typography - Base
37
39
  this.fontFamily = object.fontFamily;
38
40
  this.headerFontFamily = object.headerFontFamily;
41
+ this.monoFontFamily = object.monoFontFamily;
42
+ this.fontSizeBase = object.fontSizeBase;
43
+ this.fontWeightLight = object.fontWeightLight;
44
+ this.fontWeightRegular = object.fontWeightRegular;
45
+ this.fontWeightMedium = object.fontWeightMedium;
46
+ this.fontWeightBold = object.fontWeightBold;
47
+ // Typography - H1
48
+ this.typographyH1FontSize = object.typographyH1FontSize;
49
+ this.typographyH1FontWeight = object.typographyH1FontWeight;
50
+ this.typographyH1LineHeight = object.typographyH1LineHeight;
51
+ this.typographyH1LetterSpacing = object.typographyH1LetterSpacing;
52
+ this.typographyH1TextTransform = object.typographyH1TextTransform;
53
+ // Typography - H2
54
+ this.typographyH2FontSize = object.typographyH2FontSize;
55
+ this.typographyH2FontWeight = object.typographyH2FontWeight;
56
+ this.typographyH2LineHeight = object.typographyH2LineHeight;
57
+ this.typographyH2LetterSpacing = object.typographyH2LetterSpacing;
58
+ this.typographyH2TextTransform = object.typographyH2TextTransform;
59
+ // Typography - H3
60
+ this.typographyH3FontSize = object.typographyH3FontSize;
61
+ this.typographyH3FontWeight = object.typographyH3FontWeight;
62
+ this.typographyH3LineHeight = object.typographyH3LineHeight;
63
+ this.typographyH3LetterSpacing = object.typographyH3LetterSpacing;
64
+ this.typographyH3TextTransform = object.typographyH3TextTransform;
65
+ // Typography - H4
66
+ this.typographyH4FontSize = object.typographyH4FontSize;
67
+ this.typographyH4FontWeight = object.typographyH4FontWeight;
68
+ this.typographyH4LineHeight = object.typographyH4LineHeight;
69
+ this.typographyH4LetterSpacing = object.typographyH4LetterSpacing;
70
+ this.typographyH4TextTransform = object.typographyH4TextTransform;
71
+ // Typography - H5
72
+ this.typographyH5FontSize = object.typographyH5FontSize;
73
+ this.typographyH5FontWeight = object.typographyH5FontWeight;
74
+ this.typographyH5LineHeight = object.typographyH5LineHeight;
75
+ this.typographyH5LetterSpacing = object.typographyH5LetterSpacing;
76
+ this.typographyH5TextTransform = object.typographyH5TextTransform;
77
+ // Typography - H6
78
+ this.typographyH6FontSize = object.typographyH6FontSize;
79
+ this.typographyH6FontWeight = object.typographyH6FontWeight;
80
+ this.typographyH6LineHeight = object.typographyH6LineHeight;
81
+ this.typographyH6LetterSpacing = object.typographyH6LetterSpacing;
82
+ this.typographyH6TextTransform = object.typographyH6TextTransform;
83
+ // Typography - Body1
84
+ this.typographyBody1FontSize = object.typographyBody1FontSize;
85
+ this.typographyBody1FontWeight = object.typographyBody1FontWeight;
86
+ this.typographyBody1LineHeight = object.typographyBody1LineHeight;
87
+ this.typographyBody1LetterSpacing = object.typographyBody1LetterSpacing;
88
+ this.typographyBody1TextTransform = object.typographyBody1TextTransform;
89
+ // Typography - Body2
90
+ this.typographyBody2FontSize = object.typographyBody2FontSize;
91
+ this.typographyBody2FontWeight = object.typographyBody2FontWeight;
92
+ this.typographyBody2LineHeight = object.typographyBody2LineHeight;
93
+ this.typographyBody2LetterSpacing = object.typographyBody2LetterSpacing;
94
+ this.typographyBody2TextTransform = object.typographyBody2TextTransform;
95
+ // Typography - Button
96
+ this.typographyButtonFontSize = object.typographyButtonFontSize;
97
+ this.typographyButtonFontWeight = object.typographyButtonFontWeight;
98
+ this.typographyButtonLineHeight = object.typographyButtonLineHeight;
99
+ this.typographyButtonLetterSpacing = object.typographyButtonLetterSpacing;
100
+ this.typographyButtonTextTransform = object.typographyButtonTextTransform;
101
+ // Typography - Caption
102
+ this.typographyCaptionFontSize = object.typographyCaptionFontSize;
103
+ this.typographyCaptionFontWeight = object.typographyCaptionFontWeight;
104
+ this.typographyCaptionLineHeight = object.typographyCaptionLineHeight;
105
+ this.typographyCaptionLetterSpacing = object.typographyCaptionLetterSpacing;
106
+ this.typographyCaptionTextTransform = object.typographyCaptionTextTransform;
107
+ // Sizing
39
108
  this.borderRadius = object.borderRadius;
40
109
  this.density = object.density;
110
+ // Asset paths
41
111
  this.logoPath = object.logoPath;
42
112
  this.iconPath = object.iconPath;
43
113
  this.faviconPath = object.faviconPath;
114
+ // Custom CSS
44
115
  this.customCss = object.customCss;
116
+ // Icon style
45
117
  this.iconStyle = object.iconStyle;
118
+ // Branded Header Bar
119
+ this.brandedHeaderEnabled = object.brandedHeaderEnabled;
120
+ this.brandedHeaderBackgroundColor = object.brandedHeaderBackgroundColor;
121
+ this.brandedHeaderTextColor = object.brandedHeaderTextColor;
122
+ this.brandedHeaderLogoPath = object.brandedHeaderLogoPath;
123
+ this.brandedHeaderLogoAltText = object.brandedHeaderLogoAltText;
124
+ this.brandedHeaderHeight = object.brandedHeaderHeight;
125
+ this.brandedHeaderTagline = object.brandedHeaderTagline;
126
+ // App Bar
127
+ this.appBarBackgroundColor = object.appBarBackgroundColor;
128
+ this.appBarTextColor = object.appBarTextColor;
129
+ // Sidebar
130
+ this.sidebarBackgroundColor = object.sidebarBackgroundColor;
131
+ this.sidebarTextColor = object.sidebarTextColor;
132
+ this.sidebarIconColor = object.sidebarIconColor;
133
+ this.sidebarSelectedBackgroundColor = object.sidebarSelectedBackgroundColor;
134
+ this.sidebarSelectedTextColor = object.sidebarSelectedTextColor;
135
+ this.sidebarHoverBackgroundColor = object.sidebarHoverBackgroundColor;
136
+ this.sidebarDividerColor = object.sidebarDividerColor;
137
+ // Tables
138
+ this.tableHeaderBackgroundColor = object.tableHeaderBackgroundColor;
139
+ this.tableHeaderTextColor = object.tableHeaderTextColor;
140
+ this.tableRowHoverColor = object.tableRowHoverColor;
141
+ this.tableRowSelectedColor = object.tableRowSelectedColor;
142
+ this.tableBorderColor = object.tableBorderColor;
143
+ // General
144
+ this.dividerColor = object.dividerColor;
145
+ this.borderColor = object.borderColor;
146
+ this.cardBorderColor = object.cardBorderColor;
46
147
  }
47
148
  return QThemeMetaData;
48
149
  }());
@@ -1 +1 @@
1
- {"version":3,"file":"QThemeMetaData.js","sourceRoot":"","sources":["../../../src/model/metaData/QThemeMetaData.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;GAmBG;AAEH;;;iFAGiF;AACjF;IAiCG,wBAAY,MAAW;QAEpB,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,CAAC;QACxC,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC;QAC5C,IAAI,CAAC,eAAe,GAAG,MAAM,CAAC,eAAe,CAAC;QAC9C,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,CAAC;QACxC,IAAI,CAAC,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC;QACtC,IAAI,CAAC,aAAa,GAAG,MAAM,CAAC,aAAa,CAAC;QAC1C,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;QACpC,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,CAAC;QACxC,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,CAAC;QACxC,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;QAClC,IAAI,CAAC,UAAU,GAAG,MAAM,CAAC,UAAU,CAAC;QACpC,IAAI,CAAC,gBAAgB,GAAG,MAAM,CAAC,gBAAgB,CAAC;QAChD,IAAI,CAAC,YAAY,GAAG,MAAM,CAAC,YAAY,CAAC;QACxC,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC,OAAO,CAAC;QAC9B,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;QAChC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;QAChC,IAAI,CAAC,WAAW,GAAG,MAAM,CAAC,WAAW,CAAC;QACtC,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;QAClC,IAAI,CAAC,SAAS,GAAG,MAAM,CAAC,SAAS,CAAC;IACrC,CAAC;IACJ,qBAAC;AAAD,CAAC,AAvDD,IAuDC"}
1
+ {"version":3,"file":"QThemeMetaData.js","sourceRoot":"","sources":["../../../src/model/metaData/QThemeMetaData.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qrunio/qqq-frontend-core",
3
- "version": "1.3.13-SNAPSHOT",
3
+ "version": "1.4.2-SNAPSHOT",
4
4
  "description": "",
5
5
  "main": "qqq-frontend-core.js",
6
6
  "module": "lib/qqq-frontend-core.esm.js",