carbon-components-angular 5.43.0 → 5.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/documentation/classes/TableModel.html +290 -76
- package/docs/documentation/components/Pagination.html +22 -16
- package/docs/documentation/components/Table.html +182 -136
- package/docs/documentation/components/TableHead.html +231 -44
- package/docs/documentation/components/TableHeadExpand.html +359 -6
- package/docs/documentation/coverage.html +10 -10
- package/docs/documentation/interfaces/PaginationTranslations.html +8 -2
- package/docs/documentation/js/search/search_index.js +2 -2
- package/docs/documentation/modules/ComboBoxModule/dependencies.svg +4 -4
- package/docs/documentation/modules/ComboBoxModule.html +4 -4
- package/docs/documentation/modules/ContentSwitcherModule/dependencies.svg +4 -4
- package/docs/documentation/modules/ContentSwitcherModule.html +4 -4
- package/docs/documentation/modules/DatePickerInputModule/dependencies.svg +37 -41
- package/docs/documentation/modules/DatePickerInputModule.html +37 -41
- package/docs/documentation/modules/DatePickerModule/dependencies.svg +38 -38
- package/docs/documentation/modules/DatePickerModule.html +38 -38
- package/docs/documentation/modules/GridModule/dependencies.svg +60 -60
- package/docs/documentation/modules/GridModule.html +60 -60
- package/docs/documentation/modules/LoadingModule/dependencies.svg +4 -4
- package/docs/documentation/modules/LoadingModule.html +4 -4
- package/docs/documentation/modules/NFormsModule/dependencies.svg +4 -4
- package/docs/documentation/modules/NFormsModule.html +4 -4
- package/docs/documentation/modules/NumberModule/dependencies.svg +4 -4
- package/docs/documentation/modules/NumberModule.html +4 -4
- package/docs/documentation/modules/ProgressIndicatorModule/dependencies.svg +4 -4
- package/docs/documentation/modules/ProgressIndicatorModule.html +4 -4
- package/docs/documentation/modules/RadioModule/dependencies.svg +4 -4
- package/docs/documentation/modules/RadioModule.html +4 -4
- package/docs/documentation/modules/SelectModule/dependencies.svg +58 -58
- package/docs/documentation/modules/SelectModule.html +58 -58
- package/docs/documentation/modules/SliderModule/dependencies.svg +4 -4
- package/docs/documentation/modules/SliderModule.html +4 -4
- package/docs/documentation/modules/TableModule/dependencies.svg +216 -216
- package/docs/documentation/modules/TableModule.html +216 -216
- package/docs/documentation/modules/TabsModule/dependencies.svg +69 -69
- package/docs/documentation/modules/TabsModule.html +69 -69
- package/docs/documentation/modules/ThemeModule/dependencies.svg +14 -14
- package/docs/documentation/modules/ThemeModule.html +14 -14
- package/docs/documentation/modules/TilesModule/dependencies.svg +101 -101
- package/docs/documentation/modules/TilesModule.html +101 -101
- package/docs/documentation/modules/TimePickerModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TimePickerModule.html +4 -4
- package/docs/documentation/modules/TimePickerSelectModule/dependencies.svg +30 -30
- package/docs/documentation/modules/TimePickerSelectModule.html +30 -30
- package/docs/documentation/modules/ToggleModule/dependencies.svg +19 -19
- package/docs/documentation/modules/ToggleModule.html +19 -19
- package/docs/documentation/modules/ToggletipModule/dependencies.svg +37 -37
- package/docs/documentation/modules/ToggletipModule.html +37 -37
- package/docs/documentation/modules/TooltipModule/dependencies.svg +4 -4
- package/docs/documentation/modules/TooltipModule.html +4 -4
- package/docs/documentation/modules/TreeviewModule/dependencies.svg +36 -36
- package/docs/documentation/modules/TreeviewModule.html +36 -36
- package/docs/documentation.json +732 -416
- package/docs/storybook/5868.37cc7ea3.iframe.bundle.js +1 -0
- package/docs/storybook/8341.2bf88948.iframe.bundle.js +1 -0
- package/docs/storybook/9115.1d90f93b.iframe.bundle.js +1 -0
- package/docs/storybook/iframe.html +2 -2
- package/docs/storybook/main.40b82efc.iframe.bundle.js +1 -0
- package/docs/storybook/project.json +1 -1
- package/docs/storybook/{runtime~main.4c0184d4.iframe.bundle.js → runtime~main.d3e52413.iframe.bundle.js} +1 -1
- package/docs/storybook/table-table-stories.6669e4b6.iframe.bundle.js +1 -0
- package/esm2020/i18n/en.mjs +2 -1
- package/esm2020/pagination/pagination.component.mjs +9 -3
- package/esm2020/table/head/table-head-expand.component.mjs +50 -9
- package/esm2020/table/head/table-head.component.mjs +38 -5
- package/esm2020/table/table-model.class.mjs +34 -1
- package/esm2020/table/table.component.mjs +15 -3
- package/fesm2015/carbon-components-angular-i18n.mjs +1 -0
- package/fesm2015/carbon-components-angular-i18n.mjs.map +1 -1
- package/fesm2015/carbon-components-angular-pagination.mjs +8 -2
- package/fesm2015/carbon-components-angular-pagination.mjs.map +1 -1
- package/fesm2015/carbon-components-angular-table.mjs +137 -21
- package/fesm2015/carbon-components-angular-table.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-i18n.mjs +1 -0
- package/fesm2020/carbon-components-angular-i18n.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-pagination.mjs +8 -2
- package/fesm2020/carbon-components-angular-pagination.mjs.map +1 -1
- package/fesm2020/carbon-components-angular-table.mjs +137 -21
- package/fesm2020/carbon-components-angular-table.mjs.map +1 -1
- package/i18n/en.d.ts +1 -0
- package/i18n/i18n.service.d.ts +4 -1
- package/package.json +1 -1
- package/table/head/table-head-expand.component.d.ts +12 -1
- package/table/head/table-head.component.d.ts +15 -1
- package/table/table-model.class.d.ts +14 -0
- package/table/table.component.d.ts +5 -1
- package/docs/storybook/5868.53c4195a.iframe.bundle.js +0 -1
- package/docs/storybook/8341.a544f9e9.iframe.bundle.js +0 -1
- package/docs/storybook/9115.b37cce0a.iframe.bundle.js +0 -1
- package/docs/storybook/main.fa8e9d39.iframe.bundle.js +0 -1
- package/docs/storybook/table-table-stories.c19aca64.iframe.bundle.js +0 -1
|
@@ -117,47 +117,47 @@
|
|
|
117
117
|
<title>cluster_TimePickerSelectModule</title>
|
|
118
118
|
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-379.59 938,-379.59 938,-70 8,-70"/>
|
|
119
119
|
</g>
|
|
120
|
+
<g id="clust4" class="cluster">
|
|
121
|
+
<title>cluster_TimePickerSelectModule_imports</title>
|
|
122
|
+
<polygon fill="none" stroke="black" points="718,-189.59 718,-241.59 930,-241.59 930,-189.59 718,-189.59"/>
|
|
123
|
+
</g>
|
|
120
124
|
<g id="clust3" class="cluster">
|
|
121
125
|
<title>cluster_TimePickerSelectModule_TimePickerSelect_providers</title>
|
|
122
|
-
<polygon fill="none" stroke="black" points="
|
|
126
|
+
<polygon fill="none" stroke="black" points="16,-78 16,-241.59 710,-241.59 710,-78 16,-78"/>
|
|
123
127
|
</g>
|
|
124
128
|
<g id="clust5" class="cluster">
|
|
125
129
|
<title>cluster_TimePickerSelectModule_exports</title>
|
|
126
|
-
<polygon fill="none" stroke="black" points="
|
|
127
|
-
</g>
|
|
128
|
-
<g id="clust4" class="cluster">
|
|
129
|
-
<title>cluster_TimePickerSelectModule_imports</title>
|
|
130
|
-
<polygon fill="none" stroke="black" points="16,-189.59 16,-241.59 228,-241.59 228,-189.59 16,-189.59"/>
|
|
130
|
+
<polygon fill="none" stroke="black" points="705,-319.59 705,-371.59 841,-371.59 841,-319.59 705,-319.59"/>
|
|
131
131
|
</g>
|
|
132
132
|
<!-- TimePickerSelect -->
|
|
133
133
|
<g id="node1" class="node">
|
|
134
134
|
<title>TimePickerSelect</title>
|
|
135
|
-
<polygon fill="#ffffb3" stroke="black" points="
|
|
136
|
-
<text text-anchor="middle" x="
|
|
135
|
+
<polygon fill="#ffffb3" stroke="black" points="560.52,-233.59 445.48,-233.59 445.48,-197.59 560.52,-197.59 560.52,-233.59"/>
|
|
136
|
+
<text text-anchor="middle" x="503" y="-211.39" font-family="Times,serif" font-size="14.00">TimePickerSelect</text>
|
|
137
137
|
</g>
|
|
138
138
|
<!-- TimePickerSelectModule -->
|
|
139
139
|
<g id="node2" class="node">
|
|
140
140
|
<title>TimePickerSelectModule</title>
|
|
141
|
-
<polygon fill="#8dd3c7" stroke="black" points="
|
|
142
|
-
<text text-anchor="middle" x="
|
|
141
|
+
<polygon fill="#8dd3c7" stroke="black" points="852.57,-298.59 849.57,-302.59 828.57,-302.59 825.57,-298.59 693.43,-298.59 693.43,-262.59 852.57,-262.59 852.57,-298.59"/>
|
|
142
|
+
<text text-anchor="middle" x="773" y="-276.39" font-family="Times,serif" font-size="14.00">TimePickerSelectModule</text>
|
|
143
143
|
</g>
|
|
144
144
|
<!-- TimePickerSelect->TimePickerSelectModule -->
|
|
145
145
|
<g id="edge1" class="edge">
|
|
146
146
|
<title>TimePickerSelect->TimePickerSelectModule</title>
|
|
147
|
-
<path fill="none" stroke="black" d="
|
|
148
|
-
<polygon fill="black" stroke="black" points="
|
|
147
|
+
<path fill="none" stroke="black" d="M560.6,-215.59C617.99,-215.59 697.62,-215.59 697.62,-215.59 697.62,-215.59 697.62,-252.48 697.62,-252.48"/>
|
|
148
|
+
<polygon fill="black" stroke="black" points="694.12,-252.48 697.62,-262.48 701.12,-252.48 694.12,-252.48"/>
|
|
149
149
|
</g>
|
|
150
150
|
<!-- TimePickerSelect -->
|
|
151
151
|
<g id="node6" class="node">
|
|
152
152
|
<title>TimePickerSelect </title>
|
|
153
|
-
<polygon fill="#fb8072" stroke="black" points="
|
|
154
|
-
<text text-anchor="middle" x="
|
|
153
|
+
<polygon fill="#fb8072" stroke="black" points="832.52,-363.59 713.48,-363.59 713.48,-327.59 832.52,-327.59 832.52,-363.59"/>
|
|
154
|
+
<text text-anchor="middle" x="773" y="-341.39" font-family="Times,serif" font-size="14.00">TimePickerSelect </text>
|
|
155
155
|
</g>
|
|
156
156
|
<!-- TimePickerSelectModule->TimePickerSelect -->
|
|
157
157
|
<g id="edge5" class="edge">
|
|
158
158
|
<title>TimePickerSelectModule->TimePickerSelect </title>
|
|
159
|
-
<path fill="none" stroke="black" stroke-dasharray="5,2" d="
|
|
160
|
-
<polygon fill="black" stroke="black" points="
|
|
159
|
+
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M773,-298.7C773,-298.7 773,-317.58 773,-317.58"/>
|
|
160
|
+
<polygon fill="black" stroke="black" points="769.5,-317.58 773,-327.58 776.5,-317.58 769.5,-317.58"/>
|
|
161
161
|
</g>
|
|
162
162
|
<!-- {
|
|
163
163
|
   provide: NG_VALUE_ACCESSOR, useExisting: TimePickerSelect, multi: true
|
|
@@ -166,10 +166,10 @@
|
|
|
166
166
|
<title>{
|
|
167
167
|
   provide: NG_VALUE_ACCESSOR, useExisting: TimePickerSelect, multi: true
|
|
168
168
|
}</title>
|
|
169
|
-
<ellipse fill="#fdb462" stroke="black" cx="
|
|
170
|
-
<text text-anchor="middle" x="
|
|
171
|
-
<text text-anchor="middle" x="
|
|
172
|
-
<text text-anchor="middle" x="
|
|
169
|
+
<ellipse fill="#fdb462" stroke="black" cx="363" cy="-127.3" rx="338.54" ry="41.09"/>
|
|
170
|
+
<text text-anchor="middle" x="363" y="-139.9" font-family="Times,serif" font-size="14.00">{</text>
|
|
171
|
+
<text text-anchor="middle" x="363" y="-123.1" font-family="Times,serif" font-size="14.00">    provide: NG_VALUE_ACCESSOR, useExisting: TimePickerSelect, multi: true</text>
|
|
172
|
+
<text text-anchor="middle" x="363" y="-106.3" font-family="Times,serif" font-size="14.00">}</text>
|
|
173
173
|
</g>
|
|
174
174
|
<!-- {
|
|
175
175
|
   provide: NG_VALUE_ACCESSOR, useExisting: TimePickerSelect, multi: true
|
|
@@ -178,32 +178,32 @@
|
|
|
178
178
|
<title>{
|
|
179
179
|
   provide: NG_VALUE_ACCESSOR, useExisting: TimePickerSelect, multi: true
|
|
180
180
|
}->TimePickerSelect</title>
|
|
181
|
-
<path fill="none" stroke="black" d="
|
|
182
|
-
<polygon fill="black" stroke="black" points="
|
|
181
|
+
<path fill="none" stroke="black" d="M503,-165C503,-165 503,-187.45 503,-187.45"/>
|
|
182
|
+
<polygon fill="black" stroke="black" points="499.5,-187.45 503,-197.45 506.5,-187.45 499.5,-187.45"/>
|
|
183
183
|
</g>
|
|
184
184
|
<!-- IconModule -->
|
|
185
185
|
<g id="node4" class="node">
|
|
186
186
|
<title>IconModule</title>
|
|
187
|
-
<polygon fill="#8dd3c7" stroke="black" points="
|
|
188
|
-
<text text-anchor="middle" x="
|
|
187
|
+
<polygon fill="#8dd3c7" stroke="black" points="922.43,-233.59 919.43,-237.59 898.43,-237.59 895.43,-233.59 837.57,-233.59 837.57,-197.59 922.43,-197.59 922.43,-233.59"/>
|
|
188
|
+
<text text-anchor="middle" x="880" y="-211.39" font-family="Times,serif" font-size="14.00">IconModule</text>
|
|
189
189
|
</g>
|
|
190
190
|
<!-- IconModule->TimePickerSelectModule -->
|
|
191
191
|
<g id="edge3" class="edge">
|
|
192
192
|
<title>IconModule->TimePickerSelectModule</title>
|
|
193
|
-
<path fill="none" stroke="black" d="
|
|
194
|
-
<polygon fill="black" stroke="black" points="
|
|
193
|
+
<path fill="none" stroke="black" d="M845.16,-233.7C845.16,-233.7 845.16,-252.58 845.16,-252.58"/>
|
|
194
|
+
<polygon fill="black" stroke="black" points="841.66,-252.58 845.16,-262.58 848.66,-252.58 841.66,-252.58"/>
|
|
195
195
|
</g>
|
|
196
196
|
<!-- SelectModule -->
|
|
197
197
|
<g id="node5" class="node">
|
|
198
198
|
<title>SelectModule</title>
|
|
199
|
-
<polygon fill="#8dd3c7" stroke="black" points="
|
|
200
|
-
<text text-anchor="middle" x="
|
|
199
|
+
<polygon fill="#8dd3c7" stroke="black" points="819.76,-233.59 816.76,-237.59 795.76,-237.59 792.76,-233.59 726.24,-233.59 726.24,-197.59 819.76,-197.59 819.76,-233.59"/>
|
|
200
|
+
<text text-anchor="middle" x="773" y="-211.39" font-family="Times,serif" font-size="14.00">SelectModule</text>
|
|
201
201
|
</g>
|
|
202
202
|
<!-- SelectModule->TimePickerSelectModule -->
|
|
203
203
|
<g id="edge4" class="edge">
|
|
204
204
|
<title>SelectModule->TimePickerSelectModule</title>
|
|
205
|
-
<path fill="none" stroke="black" d="
|
|
206
|
-
<polygon fill="black" stroke="black" points="
|
|
205
|
+
<path fill="none" stroke="black" d="M773,-233.7C773,-233.7 773,-252.58 773,-252.58"/>
|
|
206
|
+
<polygon fill="black" stroke="black" points="769.5,-252.58 773,-262.58 776.5,-252.58 769.5,-252.58"/>
|
|
207
207
|
</g>
|
|
208
208
|
</g>
|
|
209
209
|
</svg>
|
|
@@ -24,22 +24,22 @@
|
|
|
24
24
|
<title>cluster_ToggleModule</title>
|
|
25
25
|
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-379.59 632,-379.59 632,-70 8,-70"/>
|
|
26
26
|
</g>
|
|
27
|
+
<g id="clust5" class="cluster">
|
|
28
|
+
<title>cluster_ToggleModule_exports</title>
|
|
29
|
+
<polygon fill="none" stroke="black" points="329,-319.59 329,-371.59 405,-371.59 405,-319.59 329,-319.59"/>
|
|
30
|
+
</g>
|
|
27
31
|
<g id="clust2" class="cluster">
|
|
28
32
|
<title>cluster_ToggleModule_declarations</title>
|
|
29
33
|
<polygon fill="none" stroke="black" points="284,-189.59 284,-241.59 356,-241.59 356,-189.59 284,-189.59"/>
|
|
30
34
|
</g>
|
|
31
|
-
<g id="
|
|
32
|
-
<title>
|
|
33
|
-
<polygon fill="none" stroke="black" points="
|
|
35
|
+
<g id="clust4" class="cluster">
|
|
36
|
+
<title>cluster_ToggleModule_imports</title>
|
|
37
|
+
<polygon fill="none" stroke="black" points="364,-189.59 364,-241.59 466,-241.59 466,-189.59 364,-189.59"/>
|
|
34
38
|
</g>
|
|
35
39
|
<g id="clust3" class="cluster">
|
|
36
40
|
<title>cluster_ToggleModule_Toggle_providers</title>
|
|
37
41
|
<polygon fill="none" stroke="black" points="16,-78 16,-176.59 624,-176.59 624,-78 16,-78"/>
|
|
38
42
|
</g>
|
|
39
|
-
<g id="clust4" class="cluster">
|
|
40
|
-
<title>cluster_ToggleModule_imports</title>
|
|
41
|
-
<polygon fill="none" stroke="black" points="174,-189.59 174,-241.59 276,-241.59 276,-189.59 174,-189.59"/>
|
|
42
|
-
</g>
|
|
43
43
|
<!-- Toggle -->
|
|
44
44
|
<g id="node1" class="node">
|
|
45
45
|
<title>Toggle</title>
|
|
@@ -49,26 +49,26 @@
|
|
|
49
49
|
<!-- ToggleModule -->
|
|
50
50
|
<g id="node2" class="node">
|
|
51
51
|
<title>ToggleModule</title>
|
|
52
|
-
<polygon fill="#8dd3c7" stroke="black" points="
|
|
53
|
-
<text text-anchor="middle" x="
|
|
52
|
+
<polygon fill="#8dd3c7" stroke="black" points="416.71,-298.59 413.71,-302.59 392.71,-302.59 389.71,-298.59 317.29,-298.59 317.29,-262.59 416.71,-262.59 416.71,-298.59"/>
|
|
53
|
+
<text text-anchor="middle" x="367" y="-276.39" font-family="Times,serif" font-size="14.00">ToggleModule</text>
|
|
54
54
|
</g>
|
|
55
55
|
<!-- Toggle->ToggleModule -->
|
|
56
56
|
<g id="edge1" class="edge">
|
|
57
57
|
<title>Toggle->ToggleModule</title>
|
|
58
|
-
<path fill="none" stroke="black" d="
|
|
59
|
-
<polygon fill="black" stroke="black" points="
|
|
58
|
+
<path fill="none" stroke="black" d="M332.61,-233.7C332.61,-233.7 332.61,-252.58 332.61,-252.58"/>
|
|
59
|
+
<polygon fill="black" stroke="black" points="329.11,-252.58 332.61,-262.58 336.11,-252.58 329.11,-252.58"/>
|
|
60
60
|
</g>
|
|
61
61
|
<!-- Toggle -->
|
|
62
62
|
<g id="node5" class="node">
|
|
63
63
|
<title>Toggle </title>
|
|
64
|
-
<polygon fill="#fb8072" stroke="black" points="
|
|
65
|
-
<text text-anchor="middle" x="
|
|
64
|
+
<polygon fill="#fb8072" stroke="black" points="396.66,-363.59 337.34,-363.59 337.34,-327.59 396.66,-327.59 396.66,-363.59"/>
|
|
65
|
+
<text text-anchor="middle" x="367" y="-341.39" font-family="Times,serif" font-size="14.00">Toggle </text>
|
|
66
66
|
</g>
|
|
67
67
|
<!-- ToggleModule->Toggle -->
|
|
68
68
|
<g id="edge4" class="edge">
|
|
69
69
|
<title>ToggleModule->Toggle </title>
|
|
70
|
-
<path fill="none" stroke="black" stroke-dasharray="5,2" d="
|
|
71
|
-
<polygon fill="black" stroke="black" points="
|
|
70
|
+
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M367,-298.7C367,-298.7 367,-317.58 367,-317.58"/>
|
|
71
|
+
<polygon fill="black" stroke="black" points="363.5,-317.58 367,-327.58 370.5,-317.58 363.5,-317.58"/>
|
|
72
72
|
</g>
|
|
73
73
|
<!-- {
|
|
74
74
|
   provide: NG_VALUE_ACCESSOR, useExisting: Toggle, multi: true
|
|
@@ -95,14 +95,14 @@
|
|
|
95
95
|
<!-- I18nModule -->
|
|
96
96
|
<g id="node4" class="node">
|
|
97
97
|
<title>I18nModule</title>
|
|
98
|
-
<polygon fill="#8dd3c7" stroke="black" points="
|
|
99
|
-
<text text-anchor="middle" x="
|
|
98
|
+
<polygon fill="#8dd3c7" stroke="black" points="457.71,-233.59 454.71,-237.59 433.71,-237.59 430.71,-233.59 372.29,-233.59 372.29,-197.59 457.71,-197.59 457.71,-233.59"/>
|
|
99
|
+
<text text-anchor="middle" x="415" y="-211.39" font-family="Times,serif" font-size="14.00">I18nModule</text>
|
|
100
100
|
</g>
|
|
101
101
|
<!-- I18nModule->ToggleModule -->
|
|
102
102
|
<g id="edge3" class="edge">
|
|
103
103
|
<title>I18nModule->ToggleModule</title>
|
|
104
|
-
<path fill="none" stroke="black" d="
|
|
105
|
-
<polygon fill="black" stroke="black" points="
|
|
104
|
+
<path fill="none" stroke="black" d="M394.5,-233.7C394.5,-233.7 394.5,-252.58 394.5,-252.58"/>
|
|
105
|
+
<polygon fill="black" stroke="black" points="391,-252.58 394.5,-262.58 398,-252.58 391,-252.58"/>
|
|
106
106
|
</g>
|
|
107
107
|
</g>
|
|
108
108
|
</svg>
|
|
@@ -117,22 +117,22 @@
|
|
|
117
117
|
<title>cluster_ToggleModule</title>
|
|
118
118
|
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-379.59 632,-379.59 632,-70 8,-70"/>
|
|
119
119
|
</g>
|
|
120
|
+
<g id="clust5" class="cluster">
|
|
121
|
+
<title>cluster_ToggleModule_exports</title>
|
|
122
|
+
<polygon fill="none" stroke="black" points="329,-319.59 329,-371.59 405,-371.59 405,-319.59 329,-319.59"/>
|
|
123
|
+
</g>
|
|
120
124
|
<g id="clust2" class="cluster">
|
|
121
125
|
<title>cluster_ToggleModule_declarations</title>
|
|
122
126
|
<polygon fill="none" stroke="black" points="284,-189.59 284,-241.59 356,-241.59 356,-189.59 284,-189.59"/>
|
|
123
127
|
</g>
|
|
124
|
-
<g id="
|
|
125
|
-
<title>
|
|
126
|
-
<polygon fill="none" stroke="black" points="
|
|
128
|
+
<g id="clust4" class="cluster">
|
|
129
|
+
<title>cluster_ToggleModule_imports</title>
|
|
130
|
+
<polygon fill="none" stroke="black" points="364,-189.59 364,-241.59 466,-241.59 466,-189.59 364,-189.59"/>
|
|
127
131
|
</g>
|
|
128
132
|
<g id="clust3" class="cluster">
|
|
129
133
|
<title>cluster_ToggleModule_Toggle_providers</title>
|
|
130
134
|
<polygon fill="none" stroke="black" points="16,-78 16,-176.59 624,-176.59 624,-78 16,-78"/>
|
|
131
135
|
</g>
|
|
132
|
-
<g id="clust4" class="cluster">
|
|
133
|
-
<title>cluster_ToggleModule_imports</title>
|
|
134
|
-
<polygon fill="none" stroke="black" points="174,-189.59 174,-241.59 276,-241.59 276,-189.59 174,-189.59"/>
|
|
135
|
-
</g>
|
|
136
136
|
<!-- Toggle -->
|
|
137
137
|
<g id="node1" class="node">
|
|
138
138
|
<title>Toggle</title>
|
|
@@ -142,26 +142,26 @@
|
|
|
142
142
|
<!-- ToggleModule -->
|
|
143
143
|
<g id="node2" class="node">
|
|
144
144
|
<title>ToggleModule</title>
|
|
145
|
-
<polygon fill="#8dd3c7" stroke="black" points="
|
|
146
|
-
<text text-anchor="middle" x="
|
|
145
|
+
<polygon fill="#8dd3c7" stroke="black" points="416.71,-298.59 413.71,-302.59 392.71,-302.59 389.71,-298.59 317.29,-298.59 317.29,-262.59 416.71,-262.59 416.71,-298.59"/>
|
|
146
|
+
<text text-anchor="middle" x="367" y="-276.39" font-family="Times,serif" font-size="14.00">ToggleModule</text>
|
|
147
147
|
</g>
|
|
148
148
|
<!-- Toggle->ToggleModule -->
|
|
149
149
|
<g id="edge1" class="edge">
|
|
150
150
|
<title>Toggle->ToggleModule</title>
|
|
151
|
-
<path fill="none" stroke="black" d="
|
|
152
|
-
<polygon fill="black" stroke="black" points="
|
|
151
|
+
<path fill="none" stroke="black" d="M332.61,-233.7C332.61,-233.7 332.61,-252.58 332.61,-252.58"/>
|
|
152
|
+
<polygon fill="black" stroke="black" points="329.11,-252.58 332.61,-262.58 336.11,-252.58 329.11,-252.58"/>
|
|
153
153
|
</g>
|
|
154
154
|
<!-- Toggle -->
|
|
155
155
|
<g id="node5" class="node">
|
|
156
156
|
<title>Toggle </title>
|
|
157
|
-
<polygon fill="#fb8072" stroke="black" points="
|
|
158
|
-
<text text-anchor="middle" x="
|
|
157
|
+
<polygon fill="#fb8072" stroke="black" points="396.66,-363.59 337.34,-363.59 337.34,-327.59 396.66,-327.59 396.66,-363.59"/>
|
|
158
|
+
<text text-anchor="middle" x="367" y="-341.39" font-family="Times,serif" font-size="14.00">Toggle </text>
|
|
159
159
|
</g>
|
|
160
160
|
<!-- ToggleModule->Toggle -->
|
|
161
161
|
<g id="edge4" class="edge">
|
|
162
162
|
<title>ToggleModule->Toggle </title>
|
|
163
|
-
<path fill="none" stroke="black" stroke-dasharray="5,2" d="
|
|
164
|
-
<polygon fill="black" stroke="black" points="
|
|
163
|
+
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M367,-298.7C367,-298.7 367,-317.58 367,-317.58"/>
|
|
164
|
+
<polygon fill="black" stroke="black" points="363.5,-317.58 367,-327.58 370.5,-317.58 363.5,-317.58"/>
|
|
165
165
|
</g>
|
|
166
166
|
<!-- {
|
|
167
167
|
   provide: NG_VALUE_ACCESSOR, useExisting: Toggle, multi: true
|
|
@@ -188,14 +188,14 @@
|
|
|
188
188
|
<!-- I18nModule -->
|
|
189
189
|
<g id="node4" class="node">
|
|
190
190
|
<title>I18nModule</title>
|
|
191
|
-
<polygon fill="#8dd3c7" stroke="black" points="
|
|
192
|
-
<text text-anchor="middle" x="
|
|
191
|
+
<polygon fill="#8dd3c7" stroke="black" points="457.71,-233.59 454.71,-237.59 433.71,-237.59 430.71,-233.59 372.29,-233.59 372.29,-197.59 457.71,-197.59 457.71,-233.59"/>
|
|
192
|
+
<text text-anchor="middle" x="415" y="-211.39" font-family="Times,serif" font-size="14.00">I18nModule</text>
|
|
193
193
|
</g>
|
|
194
194
|
<!-- I18nModule->ToggleModule -->
|
|
195
195
|
<g id="edge3" class="edge">
|
|
196
196
|
<title>I18nModule->ToggleModule</title>
|
|
197
|
-
<path fill="none" stroke="black" d="
|
|
198
|
-
<polygon fill="black" stroke="black" points="
|
|
197
|
+
<path fill="none" stroke="black" d="M394.5,-233.7C394.5,-233.7 394.5,-252.58 394.5,-252.58"/>
|
|
198
|
+
<polygon fill="black" stroke="black" points="391,-252.58 394.5,-262.58 398,-252.58 391,-252.58"/>
|
|
199
199
|
</g>
|
|
200
200
|
</g>
|
|
201
201
|
</svg>
|
|
@@ -24,23 +24,23 @@
|
|
|
24
24
|
<title>cluster_ToggletipModule</title>
|
|
25
25
|
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 747,-268 747,-70 8,-70"/>
|
|
26
26
|
</g>
|
|
27
|
+
<g id="clust2" class="cluster">
|
|
28
|
+
<title>cluster_ToggletipModule_declarations</title>
|
|
29
|
+
<polygon fill="none" stroke="black" points="146,-78 146,-130 739,-130 739,-78 146,-78"/>
|
|
30
|
+
</g>
|
|
27
31
|
<g id="clust9" class="cluster">
|
|
28
32
|
<title>cluster_ToggletipModule_exports</title>
|
|
29
33
|
<polygon fill="none" stroke="black" points="72,-208 72,-260 682,-260 682,-208 72,-208"/>
|
|
30
34
|
</g>
|
|
31
35
|
<g id="clust8" class="cluster">
|
|
32
36
|
<title>cluster_ToggletipModule_imports</title>
|
|
33
|
-
<polygon fill="none" stroke="black" points="
|
|
34
|
-
</g>
|
|
35
|
-
<g id="clust2" class="cluster">
|
|
36
|
-
<title>cluster_ToggletipModule_declarations</title>
|
|
37
|
-
<polygon fill="none" stroke="black" points="16,-78 16,-130 609,-130 609,-78 16,-78"/>
|
|
37
|
+
<polygon fill="none" stroke="black" points="16,-78 16,-130 138,-130 138,-78 16,-78"/>
|
|
38
38
|
</g>
|
|
39
39
|
<!-- Toggletip -->
|
|
40
40
|
<g id="node1" class="node">
|
|
41
41
|
<title>Toggletip</title>
|
|
42
|
-
<polygon fill="#ffffb3" stroke="black" points="
|
|
43
|
-
<text text-anchor="middle" x="
|
|
42
|
+
<polygon fill="#ffffb3" stroke="black" points="731.44,-122 660.56,-122 660.56,-86 731.44,-86 731.44,-122"/>
|
|
43
|
+
<text text-anchor="middle" x="696" y="-99.8" font-family="Times,serif" font-size="14.00">Toggletip</text>
|
|
44
44
|
</g>
|
|
45
45
|
<!-- ToggletipModule -->
|
|
46
46
|
<g id="node6" class="node">
|
|
@@ -51,56 +51,56 @@
|
|
|
51
51
|
<!-- Toggletip->ToggletipModule -->
|
|
52
52
|
<g id="edge1" class="edge">
|
|
53
53
|
<title>Toggletip->ToggletipModule</title>
|
|
54
|
-
<path fill="none" stroke="black" d="
|
|
55
|
-
<polygon fill="black" stroke="black" points="463,-
|
|
54
|
+
<path fill="none" stroke="black" d="M667.38,-122.27C667.38,-140.56 667.38,-166 667.38,-166 667.38,-166 463.22,-166 463.22,-166"/>
|
|
55
|
+
<polygon fill="black" stroke="black" points="463.22,-162.5 453.22,-166 463.22,-169.5 463.22,-162.5"/>
|
|
56
56
|
</g>
|
|
57
57
|
<!-- ToggletipAction -->
|
|
58
58
|
<g id="node2" class="node">
|
|
59
59
|
<title>ToggletipAction</title>
|
|
60
|
-
<polygon fill="#ffffb3" stroke="black" points="
|
|
61
|
-
<text text-anchor="middle" x="
|
|
60
|
+
<polygon fill="#ffffb3" stroke="black" points="643.04,-122 534.96,-122 534.96,-86 643.04,-86 643.04,-122"/>
|
|
61
|
+
<text text-anchor="middle" x="589" y="-99.8" font-family="Times,serif" font-size="14.00">ToggletipAction</text>
|
|
62
62
|
</g>
|
|
63
63
|
<!-- ToggletipAction->ToggletipModule -->
|
|
64
64
|
<g id="edge2" class="edge">
|
|
65
65
|
<title>ToggletipAction->ToggletipModule</title>
|
|
66
|
-
<path fill="none" stroke="black" d="
|
|
67
|
-
<polygon fill="black" stroke="black" points="
|
|
66
|
+
<path fill="none" stroke="black" d="M558.38,-122.01C558.38,-138.05 558.38,-159 558.38,-159 558.38,-159 463.25,-159 463.25,-159"/>
|
|
67
|
+
<polygon fill="black" stroke="black" points="463.25,-155.5 453.25,-159 463.25,-162.5 463.25,-155.5"/>
|
|
68
68
|
</g>
|
|
69
69
|
<!-- ToggletipButton -->
|
|
70
70
|
<g id="node3" class="node">
|
|
71
71
|
<title>ToggletipButton</title>
|
|
72
|
-
<polygon fill="#ffffb3" stroke="black" points="
|
|
73
|
-
<text text-anchor="middle" x="
|
|
72
|
+
<polygon fill="#ffffb3" stroke="black" points="516.06,-122 407.94,-122 407.94,-86 516.06,-86 516.06,-122"/>
|
|
73
|
+
<text text-anchor="middle" x="462" y="-99.8" font-family="Times,serif" font-size="14.00">ToggletipButton</text>
|
|
74
74
|
</g>
|
|
75
75
|
<!-- ToggletipButton->ToggletipModule -->
|
|
76
76
|
<g id="edge3" class="edge">
|
|
77
77
|
<title>ToggletipButton->ToggletipModule</title>
|
|
78
|
-
<path fill="none" stroke="black" d="
|
|
79
|
-
<polygon fill="black" stroke="black" points="
|
|
78
|
+
<path fill="none" stroke="black" d="M430.36,-122.11C430.36,-122.11 430.36,-140.99 430.36,-140.99"/>
|
|
79
|
+
<polygon fill="black" stroke="black" points="426.86,-140.99 430.36,-150.99 433.86,-140.99 426.86,-140.99"/>
|
|
80
80
|
</g>
|
|
81
81
|
<!-- ToggletipContent -->
|
|
82
82
|
<g id="node4" class="node">
|
|
83
83
|
<title>ToggletipContent</title>
|
|
84
|
-
<polygon fill="#ffffb3" stroke="black" points="
|
|
85
|
-
<text text-anchor="middle" x="
|
|
84
|
+
<polygon fill="#ffffb3" stroke="black" points="389.27,-122 274.73,-122 274.73,-86 389.27,-86 389.27,-122"/>
|
|
85
|
+
<text text-anchor="middle" x="332" y="-99.8" font-family="Times,serif" font-size="14.00">ToggletipContent</text>
|
|
86
86
|
</g>
|
|
87
87
|
<!-- ToggletipContent->ToggletipModule -->
|
|
88
88
|
<g id="edge4" class="edge">
|
|
89
89
|
<title>ToggletipContent->ToggletipModule</title>
|
|
90
|
-
<path fill="none" stroke="black" d="
|
|
91
|
-
<polygon fill="black" stroke="black" points="
|
|
90
|
+
<path fill="none" stroke="black" d="M364.2,-122.11C364.2,-122.11 364.2,-140.99 364.2,-140.99"/>
|
|
91
|
+
<polygon fill="black" stroke="black" points="360.7,-140.99 364.2,-150.99 367.7,-140.99 360.7,-140.99"/>
|
|
92
92
|
</g>
|
|
93
93
|
<!-- ToggletipLabel -->
|
|
94
94
|
<g id="node5" class="node">
|
|
95
95
|
<title>ToggletipLabel</title>
|
|
96
|
-
<polygon fill="#ffffb3" stroke="black" points="
|
|
97
|
-
<text text-anchor="middle" x="
|
|
96
|
+
<polygon fill="#ffffb3" stroke="black" points="256.31,-122 153.69,-122 153.69,-86 256.31,-86 256.31,-122"/>
|
|
97
|
+
<text text-anchor="middle" x="205" y="-99.8" font-family="Times,serif" font-size="14.00">ToggletipLabel</text>
|
|
98
98
|
</g>
|
|
99
99
|
<!-- ToggletipLabel->ToggletipModule -->
|
|
100
100
|
<g id="edge5" class="edge">
|
|
101
101
|
<title>ToggletipLabel->ToggletipModule</title>
|
|
102
|
-
<path fill="none" stroke="black" d="
|
|
103
|
-
<polygon fill="black" stroke="black" points="328.
|
|
102
|
+
<path fill="none" stroke="black" d="M230.01,-122.01C230.01,-138.05 230.01,-159 230.01,-159 230.01,-159 328.88,-159 328.88,-159"/>
|
|
103
|
+
<polygon fill="black" stroke="black" points="328.88,-162.5 338.88,-159 328.88,-155.5 328.88,-162.5"/>
|
|
104
104
|
</g>
|
|
105
105
|
<!-- Toggletip -->
|
|
106
106
|
<g id="node8" class="node">
|
|
@@ -111,8 +111,8 @@
|
|
|
111
111
|
<!-- ToggletipModule->Toggletip -->
|
|
112
112
|
<g id="edge7" class="edge">
|
|
113
113
|
<title>ToggletipModule->Toggletip </title>
|
|
114
|
-
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M453.
|
|
115
|
-
<polygon fill="black" stroke="black" points="
|
|
114
|
+
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M453.23,-173C520.08,-173 621.65,-173 621.65,-173 621.65,-173 621.65,-205.7 621.65,-205.7"/>
|
|
115
|
+
<polygon fill="black" stroke="black" points="618.15,-205.7 621.65,-215.7 625.15,-205.7 618.15,-205.7"/>
|
|
116
116
|
</g>
|
|
117
117
|
<!-- ToggletipAction -->
|
|
118
118
|
<g id="node9" class="node">
|
|
@@ -123,8 +123,8 @@
|
|
|
123
123
|
<!-- ToggletipModule->ToggletipAction -->
|
|
124
124
|
<g id="edge8" class="edge">
|
|
125
125
|
<title>ToggletipModule->ToggletipAction </title>
|
|
126
|
-
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M453.
|
|
127
|
-
<polygon fill="black" stroke="black" points="
|
|
126
|
+
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M453.06,-180C474.2,-180 493.13,-180 493.13,-180 493.13,-180 493.13,-205.72 493.13,-205.72"/>
|
|
127
|
+
<polygon fill="black" stroke="black" points="489.63,-205.72 493.13,-215.72 496.63,-205.72 489.63,-205.72"/>
|
|
128
128
|
</g>
|
|
129
129
|
<!-- ToggletipButton -->
|
|
130
130
|
<g id="node10" class="node">
|
|
@@ -147,8 +147,8 @@
|
|
|
147
147
|
<!-- ToggletipModule->ToggletipContent -->
|
|
148
148
|
<g id="edge10" class="edge">
|
|
149
149
|
<title>ToggletipModule->ToggletipContent </title>
|
|
150
|
-
<path fill="none" stroke="black" stroke-dasharray="5,2" d="
|
|
151
|
-
<polygon fill="black" stroke="black" points="
|
|
150
|
+
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M338.93,-180C317.56,-180 298.38,-180 298.38,-180 298.38,-180 298.38,-205.72 298.38,-205.72"/>
|
|
151
|
+
<polygon fill="black" stroke="black" points="294.88,-205.72 298.38,-215.72 301.88,-205.72 294.88,-205.72"/>
|
|
152
152
|
</g>
|
|
153
153
|
<!-- ToggletipLabel -->
|
|
154
154
|
<g id="node12" class="node">
|
|
@@ -159,20 +159,20 @@
|
|
|
159
159
|
<!-- ToggletipModule->ToggletipLabel -->
|
|
160
160
|
<g id="edge11" class="edge">
|
|
161
161
|
<title>ToggletipModule->ToggletipLabel </title>
|
|
162
|
-
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M338.
|
|
163
|
-
<polygon fill="black" stroke="black" points="
|
|
162
|
+
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M338.94,-173C271.95,-173 169.88,-173 169.88,-173 169.88,-173 169.88,-205.7 169.88,-205.7"/>
|
|
163
|
+
<polygon fill="black" stroke="black" points="166.38,-205.7 169.88,-215.7 173.38,-205.7 166.38,-205.7"/>
|
|
164
164
|
</g>
|
|
165
165
|
<!-- PopoverModule -->
|
|
166
166
|
<g id="node7" class="node">
|
|
167
167
|
<title>PopoverModule</title>
|
|
168
|
-
<polygon fill="#8dd3c7" stroke="black" points="
|
|
169
|
-
<text text-anchor="middle" x="
|
|
168
|
+
<polygon fill="#8dd3c7" stroke="black" points="130.21,-122 127.21,-126 106.21,-126 103.21,-122 23.79,-122 23.79,-86 130.21,-86 130.21,-122"/>
|
|
169
|
+
<text text-anchor="middle" x="77" y="-99.8" font-family="Times,serif" font-size="14.00">PopoverModule</text>
|
|
170
170
|
</g>
|
|
171
171
|
<!-- PopoverModule->ToggletipModule -->
|
|
172
172
|
<g id="edge6" class="edge">
|
|
173
173
|
<title>PopoverModule->ToggletipModule</title>
|
|
174
|
-
<path fill="none" stroke="black" d="
|
|
175
|
-
<polygon fill="black" stroke="black" points="
|
|
174
|
+
<path fill="none" stroke="black" d="M105.1,-122.27C105.1,-140.56 105.1,-166 105.1,-166 105.1,-166 328.87,-166 328.87,-166"/>
|
|
175
|
+
<polygon fill="black" stroke="black" points="328.87,-169.5 338.87,-166 328.87,-162.5 328.87,-169.5"/>
|
|
176
176
|
</g>
|
|
177
177
|
</g>
|
|
178
178
|
</svg>
|