Skip to content
This repository was archived by the owner on Jun 3, 2020. It is now read-only.

Commit ea3af7f

Browse files
committed
Merge pull request #83 from dart-lang/polymer
Update all polymer samples to 0.10.0.
2 parents d6ef62a + d18e77c commit ea3af7f

File tree

17 files changed

+35
-23
lines changed

17 files changed

+35
-23
lines changed

polymer_mini_samples/pubspec.lock

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,67 +12,71 @@ packages:
1212
barback:
1313
description: barback
1414
source: hosted
15-
version: "0.12.0"
15+
version: "0.13.0"
1616
browser:
1717
description: browser
1818
source: hosted
1919
version: "0.10.0+2"
2020
code_transformers:
2121
description: code_transformers
2222
source: hosted
23-
version: "0.1.3"
23+
version: "0.1.3+1"
2424
collection:
2525
description: collection
2626
source: hosted
27-
version: "0.9.2"
27+
version: "0.9.3+1"
28+
csslib:
29+
description: csslib
30+
source: hosted
31+
version: "0.10.0+1"
2832
html5lib:
2933
description: html5lib
3034
source: hosted
31-
version: "0.10.0"
35+
version: "0.11.0+1"
3236
logging:
3337
description: logging
3438
source: hosted
3539
version: "0.9.1+1"
3640
matcher:
3741
description: matcher
3842
source: hosted
39-
version: "0.10.0"
43+
version: "0.10.0+2"
4044
mock:
4145
description: mock
4246
source: hosted
4347
version: "0.10.0+1"
4448
observe:
4549
description: observe
4650
source: hosted
47-
version: "0.10.0-pre.4"
51+
version: "0.10.0"
4852
path:
4953
description: path
5054
source: hosted
51-
version: "1.1.0"
55+
version: "1.2.0"
5256
polymer:
5357
description: polymer
5458
source: hosted
55-
version: "0.10.0-pre.9"
59+
version: "0.10.0"
5660
polymer_expressions:
5761
description: polymer_expressions
5862
source: hosted
59-
version: "0.10.0-pre.1"
63+
version: "0.10.0"
6064
smoke:
6165
description: smoke
6266
source: hosted
63-
version: "0.1.0-pre.2"
67+
version: "0.1.0"
6468
source_maps:
6569
description: source_maps
6670
source: hosted
67-
version: "0.9.0"
71+
version: "0.9.1"
6872
stack_trace:
6973
description: stack_trace
7074
source: hosted
71-
version: "0.9.3+1"
75+
version: "0.9.3+2"
7276
template_binding:
7377
description: template_binding
7478
source: hosted
75-
version: "0.10.0-pre.1"
79+
version: "0.10.0"
7680
unittest:
7781
description: unittest
7882
source: hosted
@@ -84,8 +88,8 @@ packages:
8488
web_components:
8589
description: web_components
8690
source: hosted
87-
version: "0.3.3"
91+
version: "0.3.4"
8892
yaml:
8993
description: yaml
9094
source: hosted
91-
version: "0.9.0"
95+
version: "0.9.0+2"

polymer_mini_samples/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: polymer_mini_samples
22
description: Short Polymer examples
33
dependencies:
4-
polymer: ">=0.10.0-pre.9 <0.11.0"
4+
polymer: ">=0.10.0 <0.11.0"
55
transformers:
66
- polymer:
77
entry_points:

polymer_mini_samples/web/binding_data/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
</head>
99
<body>
1010
<my-element></my-element>
11+
<script type="application/dart">export 'package:polymer/init.dart';</script>
1112
</body>
1213
</html>

polymer_mini_samples/web/binding_data/my_element.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
<template>
33
This is <b>{{owner}}</b>'s name-tag element.
44
</template>
5-
<script type="application/dart;component=1" src="my_element.dart"></script>
5+
<script type="application/dart" src="my_element.dart"></script>
66
</polymer-element>

polymer_mini_samples/web/binding_to_a_style_value/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
</head>
99
<body>
1010
<my-element></my-element>
11+
<script type="application/dart">export 'package:polymer/init.dart';</script>
1112
</body>
1213
</html>

polymer_mini_samples/web/binding_to_a_style_value/my_element.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
{{owner}} likes the color
55
<span style="color: {{color}}">{{color}}</span>.
66
</template>
7-
<script type="application/dart;component=1" src="my_element.dart"></script>
7+
<script type="application/dart" src="my_element.dart"></script>
88
</polymer-element>

polymer_mini_samples/web/binding_with_built_in_elements/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
</head>
99
<body>
1010
<my-element></my-element>
11+
<script type="application/dart">export 'package:polymer/init.dart';</script>
1112
</body>
1213
</html>

polymer_mini_samples/web/binding_with_built_in_elements/my_element.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
<input id="nameInput" value="{{name}}"
1212
placeholder="Enter name..."></p>
1313
</template>
14-
<script type="application/dart;component=1" src="my_element.dart"></script>
14+
<script type="application/dart" src="my_element.dart"></script>
1515
</polymer-element>

polymer_mini_samples/web/creating_an_element/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
</head>
99
<body>
1010
<my-element></my-element>
11+
<script type="application/dart">export 'package:polymer/init.dart';</script>
1112
</body>
1213
</html>

polymer_mini_samples/web/creating_an_element/my_element.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
<template>
33
<span>Hello {{name}}!</span>
44
</template>
5-
<script type="application/dart;component=1" src="my_element.dart"></script>
5+
<script type="application/dart" src="my_element.dart"></script>
66
</polymer-element>

polymer_mini_samples/web/creating_an_element_using_noscript/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
</head>
99
<body>
1010
<my-element></my-element>
11+
<script type="application/dart">export 'package:polymer/init.dart';</script>
1112
</body>
1213
</html>

polymer_mini_samples/web/finding_shadow_dom_nodes_by_id/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
</head>
99
<body>
1010
<my-element></my-element>
11+
<script type="application/dart">export 'package:polymer/init.dart';</script>
1112
</body>
1213
</html>

polymer_mini_samples/web/finding_shadow_dom_nodes_by_id/my_element.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
<input id="nameInput" value="{{owner}}"
99
placeholder="Your name here...">
1010
</template>
11-
<script type="application/dart;component=1" src="my_element.dart"></script>
11+
<script type="application/dart" src="my_element.dart"></script>
1212
</polymer-element>

polymer_mini_samples/web/publishing_properties/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
</head>
99
<body>
1010
<my-element color="blue"></my-element>
11+
<script type="application/dart">export 'package:polymer/init.dart';</script>
1112
</body>
1213
</html>

polymer_mini_samples/web/publishing_properties/my_element.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
This is a <strong>{{owner}}</strong>'s color-picker.
44
He likes the color <b style="color: {{color}}">{{color}}</b>.
55
</template>
6-
<script type="application/dart;component=1" src="my_element.dart"></script>
6+
<script type="application/dart" src="my_element.dart"></script>
77
</polymer-element>

polymer_mini_samples/web/waiting_until_an_element_is_ready/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
</head>
99
<body>
1010
<my-element></my-element>
11+
<script type="application/dart">export 'package:polymer/init.dart';</script>
1112
</body>
1213
</html>

polymer_mini_samples/web/waiting_until_an_element_is_ready/my_element.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
This element has a ready() method.
44
<span id="el">Not ready...</span>
55
</template>
6-
<script type="application/dart;component=1" src="my_element.dart"></script>
6+
<script type="application/dart" src="my_element.dart"></script>
77
</polymer-element>

0 commit comments

Comments
 (0)