Skip to content

Commit 852f919

Browse files
authored
Merge pull request #24 from ba-st/dependency_update
Update dependencies
2 parents ec9da09 + 908298e commit 852f919

File tree

182 files changed

+17
-1257
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+17
-1257
lines changed

source/BaselineOfWillowPlayground.package/BaselineOfWillowPlayground.class/instance/setUpDependencies..st

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ setUpDependencies: spec
44
spec
55
baseline: 'WillowBootstrap'
66
with: [ spec
7-
repository: 'github://ba-st/Willow-Bootstrap:v4.0.1/source';
7+
repository: 'github://ba-st/Willow-Bootstrap:v6.0.0/source';
88
loads: #('Deployment') ];
99
import: 'WillowBootstrap'.
1010

1111
spec
1212
baseline: 'WillowJQueryUI'
1313
with: [ spec
14-
repository: 'github://ba-st/Willow-JQueryUI:v4.0.1/source';
14+
repository: 'github://ba-st/Willow-JQueryUI:v5.0.0/source';
1515
loads: #('Deployment') ];
1616
import: 'WillowJQueryUI'.
1717

1818
spec
1919
baseline: 'WillowSpinKit'
2020
with: [ spec
21-
repository: 'github://ba-st/Willow-SpinKit:v1.0.3/source';
21+
repository: 'github://ba-st/Willow-SpinKit:v3.0.0/source';
2222
loads: #('Deployment') ];
2323
import: 'WillowSpinKit'

source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/componentSupplier.st source/Willow-Playground-LiveDocs.package/WPLiveDocumentation.class/instance/componentSupplierForApplication.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Accessing
2-
componentSupplier
2+
componentSupplierForApplication
33

44
^ BootstrapComponentSupplier
55
withBootstrapLibrary: (self deploymentMode libraryFor: Bootstrap3MetadataLibrary) withoutOptionalTheme

source/Willow-Playground-LiveDocs.package/WPLiveDocumentationBehaviorDetailedView.class/instance/buttonToBrowse..st

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ buttonToBrowse: aBehavior
33

44
| browseButton |
55

6-
browseButton := self componentSupplier asynchronicAnchorLabeled: 'Open Browser' applying: [ :button | button addClass bootstrap buttonPrimary + button addClass bootstrap pullRight ].
6+
browseButton := self componentSupplier
7+
asynchronicLinkActingAsButtonLabeled: 'Open Browser'
8+
applying: [ :button | button addClass bootstrap buttonPrimary + button addClass bootstrap pullRight ].
79
browseButton onTrigger evaluate: [ aBehavior browse ].
810
^ browseButton
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
private-accessing
22
liveDocumentationAnchor
33

4-
^ self componentSupplier
5-
asynchronicAnchorLabeled: 'Open the Live Documentation!'
6-
applying: (OpenNewLocationCommand navigatingTo: WPLiveDocumentation handlerName)
4+
^ self componentSupplier asynchronicLinkLabeled: 'Open the Live Documentation!' applying: (OpenLocationCommand forNewBrowsingContextNavigatingTo: WPLiveDocumentation handlerName)

source/Willow-Playground-Smalltalks2017.package/PlaygroundApplicationsStepWebView.class/instance/testRunnerAnchor.st

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ private-accessing
22
testRunnerAnchor
33

44
^ self componentSupplier
5-
asynchronicAnchorLabeled: 'Open the Test Runner!'
6-
applying: (OpenNewLocationCommand navigatingTo: WPTestRunner handlerName)
5+
asynchronicLinkLabeled: 'Open the Test Runner!'
6+
applying: (OpenLocationCommand forNewBrowsingContextNavigatingTo:WPTestRunner handlerName)

source/Willow-Playground-Smalltalks2017.package/ProjectLocationStepWebView.class/instance/projectsTableView.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ projectsTableView
88
addColumnTitled: 'Project' rendering: [ :info | info at: 1 ];
99
addColumnTitled: 'Content' rendering: [ :info | info at: 2 ];
1010
addColumnTitled: 'Status' rendering: [ :info | info at: 3 ];
11-
addUntitledColumnRendering: [ :info | self componentSupplier asynchronicAnchorLabeled: (info at: 4) applying: (OpenNewLocationCommand navigatingTo: ('https://github.com/<1s>' expandMacrosWith: (info at: 4))) ].
11+
addUntitledColumnRendering: [ :info | self componentSupplier asynchronicLinkLabeled: (info at: 4) applying: (OpenLocationCommand forNewBrowsingContextNavigatingTo: ('https://github.com/<1s>' expandMacrosWith: (info at: 4))) ].
1212
projectTable := tableBuilder buildApplying: [ :table | table addClass bootstrap tableCondensed ].
1313

1414
projectTable changeContentsTo: self projectsWithLocations.
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
accessing
22
version
33

4-
^ '1.0.0'
4+
^ '2.0.0'

source/Willow-Playground-Smalltalks2017.package/Smalltalks2017Presentation.class/instance/componentSupplier.st source/Willow-Playground-Smalltalks2017.package/Smalltalks2017Presentation.class/instance/componentSupplierForApplication.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
accessing
2-
componentSupplier
2+
componentSupplierForApplication
33

44
^ BootstrapComponentSupplier
55
withBootstrapLibrary: (self deploymentMode libraryFor: Bootstrap3MetadataLibrary) withoutOptionalTheme

source/Willow-Playground-TestRunner.package/WPTestRunner.class/instance/componentSupplier.st source/Willow-Playground-TestRunner.package/WPTestRunner.class/instance/componentSupplierForApplication.st

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Accessing
2-
componentSupplier
2+
componentSupplierForApplication
33

44
^ BootstrapComponentSupplier
55
withBootstrapLibrary: (self deploymentMode libraryFor: Bootstrap3MetadataLibrary) withoutOptionalTheme

source/Willow-Playground-TestRunner.package/WPTestRunnerTestResultWebView.class/instance/detailsLinkShowing..st

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ detailsLinkShowing: testResult
33

44
| showDetailsAnchor |
55

6-
showDetailsAnchor := AsynchronicAnchorWebView labeled: 'See the details here.' applying: [ :anchor | anchor addClass bootstrap alertLink ].
6+
showDetailsAnchor := self componentSupplier
7+
asynchronicLinkActingAsButtonLabeled: 'See the details here.'
8+
applying: [ :anchor | anchor addClass bootstrap alertLink ].
79
showDetailsAnchor onTrigger open: (WPTestRunnerTestResultDetailsDialog for: testResult).
810
^ showDetailsAnchor

source/Willow-Playground.package/.filetree

-5
This file was deleted.

source/Willow-Playground.package/AdvancedComponentsExampleStepWebView.class/README.md

Whitespace-only changes.

source/Willow-Playground.package/AdvancedComponentsExampleStepWebView.class/instance/description.st

-4
This file was deleted.

source/Willow-Playground.package/AdvancedComponentsExampleStepWebView.class/instance/renderContentOn..st

-32
This file was deleted.

source/Willow-Playground.package/AdvancedComponentsExampleStepWebView.class/instance/shortName.st

-4
This file was deleted.

source/Willow-Playground.package/AdvancedComponentsExampleStepWebView.class/properties.json

-11
This file was deleted.

source/Willow-Playground.package/ButtonEvaluatingBlockStepWebView.class/README.md

Whitespace-only changes.

source/Willow-Playground.package/ButtonEvaluatingBlockStepWebView.class/instance/buttonEvaluatingBlock.st

-10
This file was deleted.

source/Willow-Playground.package/ButtonEvaluatingBlockStepWebView.class/instance/description.st

-4
This file was deleted.

source/Willow-Playground.package/ButtonEvaluatingBlockStepWebView.class/instance/renderContentOn..st

-8
This file was deleted.

source/Willow-Playground.package/ButtonEvaluatingBlockStepWebView.class/instance/shortName.st

-4
This file was deleted.

source/Willow-Playground.package/ButtonEvaluatingBlockStepWebView.class/properties.json

-11
This file was deleted.

source/Willow-Playground.package/ButtonExecutingOnClientStepWebView.class/README.md

Whitespace-only changes.

source/Willow-Playground.package/ButtonExecutingOnClientStepWebView.class/instance/buttonExecutingOnClient.st

-10
This file was deleted.

source/Willow-Playground.package/ButtonExecutingOnClientStepWebView.class/instance/description.st

-4
This file was deleted.

source/Willow-Playground.package/ButtonExecutingOnClientStepWebView.class/instance/renderContentOn..st

-8
This file was deleted.

source/Willow-Playground.package/ButtonExecutingOnClientStepWebView.class/instance/shortName.st

-4
This file was deleted.

source/Willow-Playground.package/ButtonExecutingOnClientStepWebView.class/properties.json

-11
This file was deleted.

source/Willow-Playground.package/ButtonRenderingComponentStepWebView.class/README.md

Whitespace-only changes.

source/Willow-Playground.package/ButtonRenderingComponentStepWebView.class/instance/buttonRendering..st

-8
This file was deleted.

source/Willow-Playground.package/ButtonRenderingComponentStepWebView.class/instance/companionView.st

-6
This file was deleted.

source/Willow-Playground.package/ButtonRenderingComponentStepWebView.class/instance/currentTime.st

-4
This file was deleted.

source/Willow-Playground.package/ButtonRenderingComponentStepWebView.class/instance/description.st

-4
This file was deleted.

source/Willow-Playground.package/ButtonRenderingComponentStepWebView.class/instance/renderContentOn..st

-12
This file was deleted.

source/Willow-Playground.package/ButtonRenderingComponentStepWebView.class/instance/shortName.st

-4
This file was deleted.

source/Willow-Playground.package/ButtonRenderingComponentStepWebView.class/properties.json

-11
This file was deleted.

source/Willow-Playground.package/CommandSummaryStepWebView.class/README.md

Whitespace-only changes.

source/Willow-Playground.package/CommandSummaryStepWebView.class/instance/description.st

-4
This file was deleted.

source/Willow-Playground.package/CommandSummaryStepWebView.class/instance/renderContentOn..st

-19
This file was deleted.

source/Willow-Playground.package/CommandSummaryStepWebView.class/instance/shortName.st

-4
This file was deleted.

source/Willow-Playground.package/CommandSummaryStepWebView.class/properties.json

-11
This file was deleted.

source/Willow-Playground.package/ComponentClassificationCommandBuilder.extension/instance/nextStep.st

-4
This file was deleted.

source/Willow-Playground.package/ComponentClassificationCommandBuilder.extension/instance/presentationArea.st

-4
This file was deleted.

source/Willow-Playground.package/ComponentClassificationCommandBuilder.extension/instance/previousStep.st

-4
This file was deleted.

source/Willow-Playground.package/ComponentClassificationCommandBuilder.extension/instance/screenshot.st

-4
This file was deleted.

0 commit comments

Comments
 (0)