Skip to content

Commit

Permalink
Merge e7e4dc7 into 0f40cd3
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed Oct 22, 2019
2 parents 0f40cd3 + e7e4dc7 commit 41d03e6
Show file tree
Hide file tree
Showing 38 changed files with 69 additions and 257 deletions.
8 changes: 0 additions & 8 deletions src/Material-Design-Lite-Demo/MDLAlertsScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
"
Description
--------------------
Component to display some feedback to the user.
"
Class {
Expand All @@ -10,11 +7,6 @@ Class {
#category : #'Material-Design-Lite-Demo-Extensions'
}

{ #category : #accessing }
MDLAlertsScreen class >> description [
^ 'Component to display some feedback to the user.'
]

{ #category : #accessing }
MDLAlertsScreen class >> icon [
^ 'compAlertsPng'
Expand Down
10 changes: 1 addition & 9 deletions src/Material-Design-Lite-Demo/MDLAnchorButtonsScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
"
Description
--------------------
I'm the screen representing the anchor buttons
Variations on Material Design buttons like anchors.
"
Class {
#name : #MDLAnchorButtonsScreen,
#superclass : #MDLComponentDemo,
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #sections }
MDLAnchorButtonsScreen class >> description [
^ 'Variations on Material Design buttons like anchors.'
]

{ #category : #accessing }
MDLAnchorButtonsScreen class >> icon [
^ 'compAnchorPng'
Expand Down
10 changes: 1 addition & 9 deletions src/Material-Design-Lite-Demo/MDLBadgesScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
"
I am the screen representing badges.
There are 2 different kinds of badges: text or icon badges.
Small status descriptors for UI elements.
"
Class {
#name : #MDLBadgesScreen,
#superclass : #MDLComponentDemo,
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLBadgesScreen class >> description [
^ 'Small status descriptors for UI elements.'
]

{ #category : #accessing }
MDLBadgesScreen class >> icon [
^ 'compbadgesPng'
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLButtonsScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
I'm the screen representing the buttons.
Variations on Material Design buttons.
"
Class {
#name : #MDLButtonsScreen,
#superclass : #MDLComponentDemo,
#category : 'Material-Design-Lite-Demo-Components'
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #sections }
MDLButtonsScreen class >> description [
^ 'Variations on Material Design buttons.'
]

{ #category : #accessing }
MDLButtonsScreen class >> icon [
^ 'compbuttonsPng'
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLCalendarScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,20 +1,15 @@
"
Screen to render MDLCalendarWidget examples
A calendar in Material Design style to pick a date
"
Class {
#name : #MDLCalendarScreen,
#superclass : #MDLWidgetDemo,
#instVars : [
'selectedDay'
],
#category : 'Material-Design-Lite-Demo-Widgets'
#category : #'Material-Design-Lite-Demo-Widgets'
}

{ #category : #accessing }
MDLCalendarScreen class >> description [
^ 'A calendar in Material Design style to pick a date'
]

{ #category : #accessing }
MDLCalendarScreen class >> icon [
^ #compcalendarPng
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLCardWidgetScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
Screen to render MDLCardWidget examples
A Card widget to make easy the use of the cards.
"
Class {
#name : #MDLCardWidgetScreen,
#superclass : #MDLWidgetDemo,
#category : 'Material-Design-Lite-Demo-Widgets'
#category : #'Material-Design-Lite-Demo-Widgets'
}

{ #category : #accessing }
MDLCardWidgetScreen class >> description [
^ 'A Card widget to make easy the use of the cards.'
]

{ #category : #accessing }
MDLCardWidgetScreen class >> icon [
^ 'compcardsPng'
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLCardsScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
I am the screen representing cards.
Self-contained pieces of paper with data
"
Class {
#name : #MDLCardsScreen,
#superclass : #MDLComponentDemo,
#category : 'Material-Design-Lite-Demo-Components'
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLCardsScreen class >> description [
^ 'Self-contained pieces of paper with data'
]

{ #category : #accessing }
MDLCardsScreen class >> icon [
^ 'compcardsPng'
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLChipsScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
I am the screen representing chips.
Chips represent complex entities in small blocks, such as a contact.
"
Class {
#name : #MDLChipsScreen,
#superclass : #MDLComponentDemo,
#category : 'Material-Design-Lite-Demo-Components'
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLChipsScreen class >> description [
^ 'Chips represent complex entities in small blocks, such as a contact.'
]

{ #category : #accessing }
MDLChipsScreen class >> icon [
^ 'compchipsPng'
Expand Down
5 changes: 5 additions & 0 deletions src/Material-Design-Lite-Demo/MDLComponentDemo.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ Class {
#superclass : #MDLDemoScreen,
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #testing }
MDLComponentDemo class >> isAbstract [
^ self = MDLComponentDemo
]
4 changes: 1 addition & 3 deletions src/Material-Design-Lite-Demo/MDLDemoScreen.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ Class {

{ #category : #accessing }
MDLDemoScreen class >> description [
"I should return a String that is the global description of the component."

^ self subclassResponsibility
^ self comment
]

{ #category : #accessing }
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLDialogsScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
I'm representing dialogs screen
Modal windows for dedicated user input.
"
Class {
#name : #MDLDialogsScreen,
#superclass : #MDLComponentDemo,
#category : 'Material-Design-Lite-Demo-Components'
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLDialogsScreen class >> description [
^ 'Modal windows for dedicated user input.'
]

{ #category : #accessing }
MDLDialogsScreen class >> icon [
^ 'compdialogPng'
Expand Down
10 changes: 1 addition & 9 deletions src/Material-Design-Lite-Demo/MDLElevationScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
"
Description
--------------------
I am a screen presenting the elevations properties of MDL.
Elevation is the relative depth, or distance, between two surfaces along the z-axis.
"
Class {
#name : #MDLElevationScreen,
#superclass : #MDLComponentDemo,
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLElevationScreen class >> description [
^ 'Elevation is the relative depth, or distance, between two surfaces along the z-axis.'
]

{ #category : #accessing }
MDLElevationScreen class >> icon [
^ 'elevationPng'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
Demo screen for the MDLExpansionPanel.
Implementation of expansion panel for MDL.
"
Class {
#name : #MDLExpansionPanelScreen,
#superclass : #MDLWidgetDemo,
#category : #'Material-Design-Lite-Demo-Widgets'
}

{ #category : #accessing }
MDLExpansionPanelScreen class >> description [
^ 'Implementation of expansion panel for MDL.'
]

{ #category : #accessing }
MDLExpansionPanelScreen class >> icon [
self flag: #TODO. "Choose better icon"
Expand Down
6 changes: 3 additions & 3 deletions src/Material-Design-Lite-Demo/MDLExtensionsDemo.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Class {
#category : #'Material-Design-Lite-Demo-Extensions'
}

{ #category : #accessing }
MDLExtensionsDemo class >> icon [
^ 'logoSvg'
{ #category : #testing }
MDLExtensionsDemo class >> isAbstract [
^ self = MDLExtensionsDemo
]
9 changes: 1 addition & 8 deletions src/Material-Design-Lite-Demo/MDLLayoutScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
"
I'm the screen representing different layouts
See Navigation, Tabs, Footer and Grid sections for more informations
Building blocks for constructing a page layout.
"
Class {
#name : #MDLLayoutScreen,
#superclass : #MDLComponentDemo,
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLLayoutScreen class >> description [
^ 'Building blocks for constructing a page layout.'
]

{ #category : #accessing }
MDLLayoutScreen class >> icon [
^ 'complayoutPng'
Expand Down
10 changes: 1 addition & 9 deletions src/Material-Design-Lite-Demo/MDLLeftPanelScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
"
Description
--------------------
Screen to render resizable left panels examples.
Simple component to add a resizable left panel to a browser
"
Class {
#name : #MDLLeftPanelScreen,
#superclass : #MDLExtensionsDemo,
#category : #'Material-Design-Lite-Demo-Extensions'
}

{ #category : #accessing }
MDLLeftPanelScreen class >> description [
^ 'Simple component to add a resizable left panel to a browser'
]

{ #category : #accessing }
MDLLeftPanelScreen class >> icon [
^ 'extLeftPanelPng'
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLListsScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
I'm representing list screen
Customizable scrollable lists.
"
Class {
#name : #MDLListsScreen,
#superclass : #MDLComponentDemo,
#category : 'Material-Design-Lite-Demo-Components'
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLListsScreen class >> description [
^ 'Customizable scrollable lists.'
]

{ #category : #accessing }
MDLListsScreen class >> icon [
^ 'complistsPng'
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLLoadingScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
I represent loading components screen.
Indicate loading and progress states.
"
Class {
#name : #MDLLoadingScreen,
#superclass : #MDLComponentDemo,
#category : 'Material-Design-Lite-Demo-Components'
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLLoadingScreen class >> description [
^ 'Indicate loading and progress states.'
]

{ #category : #accessing }
MDLLoadingScreen class >> icon [
^ 'comploadingPng'
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLMenuButtonScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,20 +1,15 @@
"
Demo screen for the MDLMenuButtonWidget
A widget to create a button that expand to show a menu when clicked
"
Class {
#name : #MDLMenuButtonScreen,
#superclass : #MDLWidgetDemo,
#instVars : [
'selectedUser'
],
#category : 'Material-Design-Lite-Demo-Widgets'
#category : #'Material-Design-Lite-Demo-Widgets'
}

{ #category : #accessing }
MDLMenuButtonScreen class >> description [
^ 'A widget to create a button that expand to show a menu when clicked'
]

{ #category : #accessing }
MDLMenuButtonScreen class >> icon [
^ #compmenusPng
Expand Down
9 changes: 2 additions & 7 deletions src/Material-Design-Lite-Demo/MDLMenusScreen.class.st
Original file line number Diff line number Diff line change
@@ -1,17 +1,12 @@
"
I'm representing the menu components screen
Lists of clickable actions. Those menus are anchored to elements and can have their anchor point specified.
"
Class {
#name : #MDLMenusScreen,
#superclass : #MDLComponentDemo,
#category : 'Material-Design-Lite-Demo-Components'
#category : #'Material-Design-Lite-Demo-Components'
}

{ #category : #accessing }
MDLMenusScreen class >> description [
^ 'Lists of clickable actions. Those menus are anchored to elements and can have their anchor point specified.'
]

{ #category : #accessing }
MDLMenusScreen class >> icon [
^'compmenusPng'
Expand Down

0 comments on commit 41d03e6

Please sign in to comment.