This repository was archived by the owner on Jun 3, 2020. It is now read-only.
File tree 17 files changed +35
-23
lines changed
binding_with_built_in_elements
creating_an_element_using_noscript
finding_shadow_dom_nodes_by_id
waiting_until_an_element_is_ready 17 files changed +35
-23
lines changed Original file line number Diff line number Diff line change @@ -12,67 +12,71 @@ packages:
12
12
barback:
13
13
description: barback
14
14
source: hosted
15
- version: "0.12 .0"
15
+ version: "0.13 .0"
16
16
browser:
17
17
description: browser
18
18
source: hosted
19
19
version: "0.10.0+2"
20
20
code_transformers:
21
21
description: code_transformers
22
22
source: hosted
23
- version: "0.1.3"
23
+ version: "0.1.3+1 "
24
24
collection:
25
25
description: collection
26
26
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"
28
32
html5lib:
29
33
description: html5lib
30
34
source: hosted
31
- version: "0.10.0 "
35
+ version: "0.11.0+1 "
32
36
logging:
33
37
description: logging
34
38
source: hosted
35
39
version: "0.9.1+1"
36
40
matcher:
37
41
description: matcher
38
42
source: hosted
39
- version: "0.10.0"
43
+ version: "0.10.0+2 "
40
44
mock:
41
45
description: mock
42
46
source: hosted
43
47
version: "0.10.0+1"
44
48
observe:
45
49
description: observe
46
50
source: hosted
47
- version: "0.10.0-pre.4 "
51
+ version: "0.10.0"
48
52
path:
49
53
description: path
50
54
source: hosted
51
- version: "1.1 .0"
55
+ version: "1.2 .0"
52
56
polymer:
53
57
description: polymer
54
58
source: hosted
55
- version: "0.10.0-pre.9 "
59
+ version: "0.10.0"
56
60
polymer_expressions:
57
61
description: polymer_expressions
58
62
source: hosted
59
- version: "0.10.0-pre.1 "
63
+ version: "0.10.0"
60
64
smoke:
61
65
description: smoke
62
66
source: hosted
63
- version: "0.1.0-pre.2 "
67
+ version: "0.1.0"
64
68
source_maps:
65
69
description: source_maps
66
70
source: hosted
67
- version: "0.9.0 "
71
+ version: "0.9.1 "
68
72
stack_trace:
69
73
description: stack_trace
70
74
source: hosted
71
- version: "0.9.3+1 "
75
+ version: "0.9.3+2 "
72
76
template_binding:
73
77
description: template_binding
74
78
source: hosted
75
- version: "0.10.0-pre.1 "
79
+ version: "0.10.0"
76
80
unittest:
77
81
description: unittest
78
82
source: hosted
@@ -84,8 +88,8 @@ packages:
84
88
web_components:
85
89
description: web_components
86
90
source: hosted
87
- version: "0.3.3 "
91
+ version: "0.3.4 "
88
92
yaml:
89
93
description: yaml
90
94
source: hosted
91
- version: "0.9.0"
95
+ version: "0.9.0+2 "
Original file line number Diff line number Diff line change 1
1
name : polymer_mini_samples
2
2
description : Short Polymer examples
3
3
dependencies :
4
- polymer : " >=0.10.0-pre.9 <0.11.0"
4
+ polymer : " >=0.10.0 <0.11.0"
5
5
transformers :
6
6
- polymer :
7
7
entry_points :
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< my-element > </ my-element >
11
+ < script type ="application/dart "> export 'package:polymer/init.dart' ; </ script >
11
12
</ body >
12
13
</ html >
Original file line number Diff line number Diff line change 2
2
< template >
3
3
This is < b > {{owner}}</ b > 's name-tag element.
4
4
</ template >
5
- < script type ="application/dart;component=1 " src ="my_element.dart "> </ script >
5
+ < script type ="application/dart " src ="my_element.dart "> </ script >
6
6
</ polymer-element >
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< my-element > </ my-element >
11
+ < script type ="application/dart "> export 'package:polymer/init.dart' ; </ script >
11
12
</ body >
12
13
</ html >
Original file line number Diff line number Diff line change 4
4
{{owner}} likes the color
5
5
< span style ="color: {{color}} "> {{color}}</ span > .
6
6
</ template >
7
- < script type ="application/dart;component=1 " src ="my_element.dart "> </ script >
7
+ < script type ="application/dart " src ="my_element.dart "> </ script >
8
8
</ polymer-element >
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< my-element > </ my-element >
11
+ < script type ="application/dart "> export 'package:polymer/init.dart' ; </ script >
11
12
</ body >
12
13
</ html >
Original file line number Diff line number Diff line change 11
11
< input id ="nameInput " value ="{{name}} "
12
12
placeholder ="Enter name... "> </ p >
13
13
</ template >
14
- < script type ="application/dart;component=1 " src ="my_element.dart "> </ script >
14
+ < script type ="application/dart " src ="my_element.dart "> </ script >
15
15
</ polymer-element >
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< my-element > </ my-element >
11
+ < script type ="application/dart "> export 'package:polymer/init.dart' ; </ script >
11
12
</ body >
12
13
</ html >
Original file line number Diff line number Diff line change 2
2
< template >
3
3
< span > Hello {{name}}!</ span >
4
4
</ template >
5
- < script type ="application/dart;component=1 " src ="my_element.dart "> </ script >
5
+ < script type ="application/dart " src ="my_element.dart "> </ script >
6
6
</ polymer-element >
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< my-element > </ my-element >
11
+ < script type ="application/dart "> export 'package:polymer/init.dart' ; </ script >
11
12
</ body >
12
13
</ html >
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< my-element > </ my-element >
11
+ < script type ="application/dart "> export 'package:polymer/init.dart' ; </ script >
11
12
</ body >
12
13
</ html >
Original file line number Diff line number Diff line change 8
8
< input id ="nameInput " value ="{{owner}} "
9
9
placeholder ="Your name here... ">
10
10
</ template >
11
- < script type ="application/dart;component=1 " src ="my_element.dart "> </ script >
11
+ < script type ="application/dart " src ="my_element.dart "> </ script >
12
12
</ polymer-element >
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< my-element color ="blue "> </ my-element >
11
+ < script type ="application/dart "> export 'package:polymer/init.dart' ; </ script >
11
12
</ body >
12
13
</ html >
Original file line number Diff line number Diff line change 3
3
This is a < strong > {{owner}}</ strong > 's color-picker.
4
4
He likes the color < b style ="color: {{color}} "> {{color}}</ b > .
5
5
</ template >
6
- < script type ="application/dart;component=1 " src ="my_element.dart "> </ script >
6
+ < script type ="application/dart " src ="my_element.dart "> </ script >
7
7
</ polymer-element >
Original file line number Diff line number Diff line change 8
8
</ head >
9
9
< body >
10
10
< my-element > </ my-element >
11
+ < script type ="application/dart "> export 'package:polymer/init.dart' ; </ script >
11
12
</ body >
12
13
</ html >
Original file line number Diff line number Diff line change 3
3
This element has a ready() method.
4
4
< span id ="el "> Not ready...</ span >
5
5
</ template >
6
- < script type ="application/dart;component=1 " src ="my_element.dart "> </ script >
6
+ < script type ="application/dart " src ="my_element.dart "> </ script >
7
7
</ polymer-element >
You can’t perform that action at this time.
0 commit comments