Skip to content

Commit e8dbf54

Browse files
authored
Add files via upload
Optimization in generated html file - css for styles reformatted
1 parent 6073465 commit e8dbf54

20 files changed

+29
-29
lines changed

Modules/BAPT_Background.cls

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller, supported by K.D.Gundermann #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database
@@ -54,11 +54,11 @@ Friend Property Get ToCSS() As String
5454
Dim strText As New BAPT_StringBuilder
5555

5656
If Color <> vbNullString Then
57-
strText.Add "background-color: " & Me.Color & ";"
57+
strText.Add "background-color: " & Me.Color & "; "
5858
End If
5959

6060
If Opacity > 0 Then
61-
strText.Add "opacity: " & Str(Me.Opacity) & ";"
61+
strText.Add "opacity: " & Str(Me.Opacity) & "; "
6262
End If
6363

6464
ToCSS = strText.ToString

Modules/BAPT_Columns.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database

Modules/BAPT_DataSource.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database

Modules/BAPT_Font.cls

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller, supported by K.D.Gundermann #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database
@@ -78,19 +78,19 @@ Friend Property Get ToCSS() As String
7878
Dim strText As New BAPT_StringBuilder
7979

8080
If Me.Color <> vbNullString Then
81-
strText.Add "color: " & Me.Color & ";"
81+
strText.Add "color: " & Me.Color & "; "
8282
End If
8383
If Me.Family <> vbNullString Then
84-
strText.Add "font-family: " & Me.Family & ";"
84+
strText.Add "font-family: " & Me.Family & "; "
8585
End If
8686
If Me.Size > 0 Then
87-
strText.Add "font-size: " & Me.Size & "px;"
87+
strText.Add "font-size: " & Me.Size & "px; "
8888
End If
8989
If Me.IsItalic Then
90-
strText.Add "font-style: italic;"
90+
strText.Add "font-style: italic; "
9191
End If
9292
If Me.IsBold Then
93-
strText.Add "font-weight: bold;"
93+
strText.Add "font-weight: bold; "
9494
End If
9595

9696
ToCSS = strText.ToString

Modules/BAPT_Helper.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = False
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database

Modules/BAPT_JQueryJS.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database

Modules/BAPT_JQueryUI.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database

Modules/BAPT_Localization.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database

Modules/BAPT_PivotCSS.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database

Modules/BAPT_PivotJS.cls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Attribute VB_Exposed = True
1010
'###############################################################################################
1111
'# Copyright (c) 2021, 2022 Thomas Möller #
1212
'# MIT License => https://github.com/team-moeller/better-access-pivottable/blob/main/LICENSE #
13-
'# Version 1.61.02 published: 12.11.2022 #
13+
'# Version 1.62.03 published: 13.11.2022 #
1414
'###############################################################################################
1515

1616
Option Compare Database

0 commit comments

Comments
 (0)