-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from DuneSt/v1.3.1
V1.3.1 - Deprecation before major release
- Loading branch information
Showing
89 changed files
with
134 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...n-Lite-Components-Tests.package/MDLCardTitleContainerTest.class/instance/testBareBrush.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
tests | ||
testBareBrush | ||
self assert: [ :html | html mdlCardTitle ] generates: '<div class="mdl-card__title"></div>' | ||
self | ||
assert: [ :html | html mdlCardTitleContainer ] | ||
generates: '<div class="mdl-card__title"></div>' |
4 changes: 3 additions & 1 deletion
4
...sign-Lite-Components-Tests.package/MDLCardTitleContainerTest.class/instance/testBorder.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
tests | ||
testBorder | ||
self assert: [ :html | html mdlCardTitle border ] generates: '<div class="mdl-card__title mdl-card--border"></div>' | ||
self | ||
assert: [ :html | html mdlCardTitleContainer border ] | ||
generates: '<div class="mdl-card__title mdl-card--border"></div>' |
4 changes: 3 additions & 1 deletion
4
...sign-Lite-Components-Tests.package/MDLCardTitleContainerTest.class/instance/testExpand.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
tests | ||
testExpand | ||
self assert: [ :html | html mdlCardTitle expand ] generates: '<div class="mdl-card__title mdl-card--expand"></div>' | ||
self | ||
assert: [ :html | html mdlCardTitleContainer expand ] | ||
generates: '<div class="mdl-card__title mdl-card--expand"></div>' |
5 changes: 4 additions & 1 deletion
5
...Lite-Components-Tests.package/MDLCardTitleContainerTest.class/instance/testWithContent.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
tests | ||
testWithContent | ||
self assert: [ :html | html mdlCardTitle: [ html mdlCardTitleText: 'test' ] ] generates: '<div class="mdl-card__title"><h1 class="mdl-card__title-text">test</h1></div>' | ||
self | ||
assert: [ :html | html mdlCardTitleContainer: [ html mdlCardTitleText: 'test' ] ] | ||
generates: | ||
'<div class="mdl-card__title"><h1 class="mdl-card__title-text">test</h1></div>' |
3 changes: 0 additions & 3 deletions
3
...terial-Design-Lite-Components-Tests.package/MDLMenuItemTest.class/instance/testDisable.st
This file was deleted.
Oops, something went wrong.
10 changes: 8 additions & 2 deletions
10
...n-Lite-Components-Tests.package/MDLMultilineTextFieldTest.class/instance/testBareBrush.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
tests | ||
testBareBrush | ||
self assert: [ :html | html mdlMultilineTextField ] generates: '<textarea rows="auto" cols="auto" class="mdl-textfield__input"></textarea>'. | ||
self assert: [ :html | html brush: MDLMultilineTextField new ] generates: '<textarea rows="auto" cols="auto" class="mdl-textfield__input"></textarea>' | ||
self | ||
assert: [ :html | html mdlTextArea ] | ||
generates: | ||
'<textarea rows="auto" cols="auto" class="mdl-textfield__input"></textarea>'. | ||
self | ||
assert: [ :html | html brush: MDLMultilineTextField new ] | ||
generates: | ||
'<textarea rows="auto" cols="auto" class="mdl-textfield__input"></textarea>' |
10 changes: 8 additions & 2 deletions
10
...Lite-Components-Tests.package/MDLMultilineTextFieldTest.class/instance/testWithContent.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,10 @@ | ||
tests | ||
testWithContent | ||
self assert: [ :html | html mdlMultilineTextField: 'Test' ] generates: '<textarea rows="auto" cols="auto" class="mdl-textfield__input">Test</textarea>'. | ||
self assert: [ :html | (html brush: MDLMultilineTextField new) with: 'Test' ] generates: '<textarea rows="auto" cols="auto" class="mdl-textfield__input">Test</textarea>' | ||
self | ||
assert: [ :html | html mdlTextArea: 'Test' ] | ||
generates: | ||
'<textarea rows="auto" cols="auto" class="mdl-textfield__input">Test</textarea>'. | ||
self | ||
assert: [ :html | (html brush: MDLMultilineTextField new) with: 'Test' ] | ||
generates: | ||
'<textarea rows="auto" cols="auto" class="mdl-textfield__input">Test</textarea>' |
5 changes: 5 additions & 0 deletions
5
src/Material-Design-Lite-Components.package/MDLGridSection.class/class/isDeprecated.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
deprecation | ||
isDeprecated | ||
"Use #beGrid on a section brush." | ||
|
||
^ true |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Lite-Components.package/MDLMenuItem.class/instance/disable.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
options | ||
disable | ||
self deprecated: 'Use #disabled instead' transformWith: '`@receiver disable' -> '`@receiver disabled'. | ||
self disabled |
5 changes: 2 additions & 3 deletions
5
src/Material-Design-Lite-Components.package/WAHtmlCanvas.extension/instance/mdlCardTitle..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
*Material-Design-Lite-Components | ||
mdlCardTitle: aBlock | ||
^ self mdlCardTitle | ||
with: aBlock; | ||
yourself | ||
self deprecated: 'Use #mdlCardTitleContainer: instead.' transformWith: '`@receiver mdlCardTitle: `@statements' -> '`@receiver mdlCardTitleContainer: `@statements'. | ||
^ self mdlCardTitleContainer: aBlock |
3 changes: 2 additions & 1 deletion
3
src/Material-Design-Lite-Components.package/WAHtmlCanvas.extension/instance/mdlCardTitle.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*Material-Design-Lite-Components | ||
mdlCardTitle | ||
^ self brush: MDLCardTitleContainer new | ||
self deprecated: 'Use #mdlCardTitleContainer instead.' transformWith: '`@receiver mdlCardTitle' -> '`@receiver mdlCardTitleContainer'. | ||
^ self mdlCardTitleContainer |
5 changes: 5 additions & 0 deletions
5
...-Design-Lite-Components.package/WAHtmlCanvas.extension/instance/mdlCardTitleContainer..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*Material-Design-Lite-Components | ||
mdlCardTitleContainer: aBlock | ||
^ self mdlCardTitleContainer | ||
with: aBlock; | ||
yourself |
3 changes: 3 additions & 0 deletions
3
...l-Design-Lite-Components.package/WAHtmlCanvas.extension/instance/mdlCardTitleContainer.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*Material-Design-Lite-Components | ||
mdlCardTitleContainer | ||
^ self brush: MDLCardTitleContainer new |
1 change: 1 addition & 0 deletions
1
...aterial-Design-Lite-Components.package/WAHtmlCanvas.extension/instance/mdlGridSection..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*Material-Design-Lite-Components | ||
mdlGridSection: aBlock | ||
self deprecated: 'Use #beGrid of a section brush'. | ||
^ self mdlGridSection | ||
with: aBlock; | ||
yourself |
1 change: 1 addition & 0 deletions
1
...Material-Design-Lite-Components.package/WAHtmlCanvas.extension/instance/mdlGridSection.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*Material-Design-Lite-Components | ||
mdlGridSection | ||
self deprecated: 'Use #beGrid on a section brush'. | ||
^ self brush: MDLGridSection new |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Lite-Core.package/MDLApplication.class/instance/applicationName..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
accessing | ||
applicationName: aName | ||
self deprecated: 'This is not used in MDL application. Please implement your own variable if you need this'. | ||
applicationName := aName |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Lite-Core.package/MDLApplication.class/instance/applicationName.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
accessing | ||
applicationName | ||
self deprecated: 'This is not used in MDL application. Please implement your own variable if you need this'. | ||
^ applicationName |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Lite-Demo.package/MDLCalendarScreen.class/class/description.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
accessing | ||
description | ||
^ 'A calendar in Material Design style' | ||
^ 'A calendar in Material Design style to pick a date' |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Lite-Demo.package/MDLCalendarScreen.class/class/title.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
accessing | ||
title | ||
^ 'Calendar' | ||
^ 'Date Picker' |
5 changes: 0 additions & 5 deletions
5
src/Material-Design-Lite-Demo.package/MDLCalendarScreen.class/instance/calendar.st
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
src/Material-Design-Lite-Demo.package/MDLCalendarScreen.class/instance/calendarCard.st
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
src/Material-Design-Lite-Demo.package/MDLCalendarScreen.class/instance/datePicker.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
sections | ||
datePicker | ||
^ OrderedDictionary new | ||
add: 'Date picker' -> #renderDatePickerOn:; | ||
yourself |
5 changes: 5 additions & 0 deletions
5
src/Material-Design-Lite-Demo.package/MDLCalendarScreen.class/instance/flatDatePicker.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
sections | ||
flatDatePicker | ||
^ OrderedDictionary new | ||
add: 'Flat date picker' -> #renderFlatDatePickerOn:; | ||
yourself |
4 changes: 2 additions & 2 deletions
4
...n.class/instance/renderCalendarCardOn..st → ...een.class/instance/renderDatePickerOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...creen.class/instance/renderCalendarOn..st → ...class/instance/renderFlatDatePickerOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...erial-Design-Lite-Demo.package/MDLCalendarScreen.class/instance/renderScreenContentOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
rendering | ||
renderScreenContentOn: html | ||
self | ||
render: self calendar on: html; | ||
render: self calendarCard on: html | ||
render: self datePicker on: html; | ||
render: self flatDatePicker on: html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Lite-Demo.package/MDLDemo.class/class/version.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
versions | ||
version | ||
^ 'v1.3.0' | ||
^ 'v1.3.1' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Lite-Widgets-Tests.package/MDLCalendarWidgetTest.class/instance/setUp.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
running | ||
setUp | ||
super setUp. | ||
calendar := MDLCalendarWidget new | ||
calendar := MDLDatePicker new |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Lite-Widgets.package/MDLCalendarCardWidget.class/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Calendar widget in a card | ||
Please use MDLDatePicker instead. |
5 changes: 5 additions & 0 deletions
5
src/Material-Design-Lite-Widgets.package/MDLCalendarCardWidget.class/class/isDeprecated.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
deprecation | ||
isDeprecated | ||
"Please use MDLDatePicker instead." | ||
|
||
^ true |
4 changes: 2 additions & 2 deletions
4
src/Material-Design-Lite-Widgets.package/MDLCalendarCardWidget.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Lite-Widgets.package/MDLCalendarWidget.class/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Widget to basically display a calendar with MDL style | ||
Please use MDLFlatDatePicker instead. |
5 changes: 5 additions & 0 deletions
5
src/Material-Design-Lite-Widgets.package/MDLCalendarWidget.class/class/isDeprecated.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
deprecation | ||
isDeprecated | ||
"Please use MDLFlatDatePicker instead." | ||
|
||
^ true |
11 changes: 3 additions & 8 deletions
11
src/Material-Design-Lite-Widgets.package/MDLCalendarWidget.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
{ | ||
"commentStamp" : "ThomasHeniart 6/8/2016 10:55", | ||
"super" : "MDLHighLevelWidget", | ||
"commentStamp" : "CyrilFerlicot 10/17/2018 23:25", | ||
"super" : "MDLFlatDatePicker", | ||
"category" : "Material-Design-Lite-Widgets-Calendar", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ | ||
"daysList", | ||
"calendar", | ||
"callback", | ||
"onCompleteScript" | ||
], | ||
"instvars" : [ ], | ||
"name" : "MDLCalendarWidget", | ||
"type" : "normal" | ||
} |
2 changes: 1 addition & 1 deletion
2
src/Material-Design-Lite-Widgets.package/MDLCardTitle.class/instance/renderContentOn..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
rendering | ||
renderContentOn: html | ||
| brush | | ||
brush := html mdlCardTitle. | ||
brush := html mdlCardTitleContainer. | ||
self addPropertiesToBrush: brush. | ||
brush with: [ html mdlCardTitleText: self title level: self level ] |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Lite-Widgets.package/MDLDatePicker.class/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
I am a date picker embebded in a MDLCard for a better display. |
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions
11
src/Material-Design-Lite-Widgets.package/MDLDatePicker.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 10/17/2018 23:24", | ||
"super" : "MDLFlatDatePicker", | ||
"category" : "Material-Design-Lite-Widgets-Calendar", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ ], | ||
"name" : "MDLDatePicker", | ||
"type" : "normal" | ||
} |
1 change: 1 addition & 0 deletions
1
src/Material-Design-Lite-Widgets.package/MDLFlatDatePicker.class/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
I am a component displaying a calendar to let the user pick a date. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 16 additions & 0 deletions
16
src/Material-Design-Lite-Widgets.package/MDLFlatDatePicker.class/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"commentStamp" : "CyrilFerlicot 10/17/2018 23:23", | ||
"super" : "MDLHighLevelWidget", | ||
"category" : "Material-Design-Lite-Widgets-Calendar", | ||
"classinstvars" : [ ], | ||
"pools" : [ ], | ||
"classvars" : [ ], | ||
"instvars" : [ | ||
"daysList", | ||
"calendar", | ||
"callback", | ||
"onCompleteScript" | ||
], | ||
"name" : "MDLFlatDatePicker", | ||
"type" : "normal" | ||
} |
Oops, something went wrong.