ngx-tethys 18.0.0-next.1 → 18.0.0-next.2
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/CHANGELOG.md +5 -1
- package/esm2022/version.mjs +2 -2
- package/fesm2022/ngx-tethys.mjs +1 -1
- package/fesm2022/ngx-tethys.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/ng-update/update-18/complete.js +0 -10
- package/schematics/ng-update/update-18/index.spec.js +0 -73
- package/schematics/ng-update/update-18/update-data.js +4 -860
- package/schematics/version.d.ts +1 -1
- package/schematics/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
All notable changes to this project will be documented in this file. See [
|
|
3
|
+
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
# [18.0.0-next.2](https://github.com/atinc/ngx-tethys/compare/18.0.0-next.1...18.0.0-next.2) (2024-08-14)
|
|
6
|
+
|
|
7
|
+
|
|
4
8
|
|
|
5
9
|
# [18.0.0-next.1](https://github.com/atinc/ngx-tethys/compare/17.0.17...18.0.0-next.1) (2024-08-01)
|
|
6
10
|
|
package/esm2022/version.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Version } from '@angular/core';
|
|
2
|
-
export const VERSION = new Version('18.0.0-next.
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
export const VERSION = new Version('18.0.0-next.2');
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxPQUFPLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFeEMsTUFBTSxDQUFDLE1BQU0sT0FBTyxHQUFHLElBQUksT0FBTyxDQUFDLGVBQWUsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgVmVyc2lvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5leHBvcnQgY29uc3QgVkVSU0lPTiA9IG5ldyBWZXJzaW9uKCcxOC4wLjAtbmV4dC4yJyk7XG4iXX0=
|
package/fesm2022/ngx-tethys.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngx-tethys.mjs","sources":["../../../src/version.ts","../../../src/ngx-tethys.ts"],"sourcesContent":["import { Version } from '@angular/core';\n\nexport const VERSION = new Version('18.0.0-next.
|
|
1
|
+
{"version":3,"file":"ngx-tethys.mjs","sources":["../../../src/version.ts","../../../src/ngx-tethys.ts"],"sourcesContent":["import { Version } from '@angular/core';\n\nexport const VERSION = new Version('18.0.0-next.2');\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;MAEa,OAAO,GAAG,IAAI,OAAO,CAAC,eAAe;;ACFlD;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -9,15 +9,5 @@ function onV18MigrationComplete(context, targetVersion, hasFailures) {
|
|
|
9
9
|
context.logger.warn(' ⚠ Some issues were detected but could not be fixed automatically. Please check the output above against documentation, fix these issues manually. Especially check the replace input with variable value in template, if it has a corresponding useless variable value, delete it manually. Finally prettier your code please.');
|
|
10
10
|
context.logger.info('');
|
|
11
11
|
}
|
|
12
|
-
// context.logger.info(
|
|
13
|
-
// 'Tips: the four points have changes in data structure. If it is used, please modify manually according to the error prompts.'
|
|
14
|
-
// );
|
|
15
|
-
// context.logger.info(' • The input parameter `thyShortcutRanges` of RangePicker would be changed to `thyShortcutPresets`.');
|
|
16
|
-
// context.logger.info(
|
|
17
|
-
// ' • The output parameter `thyShortcutValueChange` of DatePicker and RangePicker would be changed to `thyDateChange`.'
|
|
18
|
-
// );
|
|
19
|
-
// context.logger.info(' • The interface `ThyShortcutRange` would be changed to `ThyShortcutPreset`.');
|
|
20
|
-
// context.logger.info(' • The interface `ThyShortcutValueChange` would be changed to `ThyDateChangeEvent`.');
|
|
21
|
-
// context.logger.info('');
|
|
22
12
|
}
|
|
23
13
|
exports.onV18MigrationComplete = onV18MigrationComplete;
|
|
@@ -20,77 +20,4 @@ describe('ng-update v18 Schematic', () => {
|
|
|
20
20
|
const packageJSON = JSON.parse(file.content.toString());
|
|
21
21
|
expect(packageJSON['dependencies']['@angular/core']).toContain('^18.');
|
|
22
22
|
}));
|
|
23
|
-
// describe('should provide schematics for v18', () => {
|
|
24
|
-
// let tree: Tree;
|
|
25
|
-
// const schematicRunner = new SchematicTestRunner('migrations', require.resolve('../migration-collection.json'));
|
|
26
|
-
// const TEST_COMPONENT_PATH = '/projects/update17test/src/app/app.component.ts';
|
|
27
|
-
// const TEST_COMPONENT_CONTENT = `
|
|
28
|
-
// import { ThyButtonComponent } from 'ngx-tethys/button';
|
|
29
|
-
// import { ThyOptionComponent } from 'ngx-tethys/shared';
|
|
30
|
-
// import { ThySelectComponent, ThySelectCustomComponent } from 'ngx-tethys/select';
|
|
31
|
-
// import { DialogHeaderComponent, DialogBodyComponent, DialogFooterComponent } from 'ngx-tethys/dialog';
|
|
32
|
-
// @Component({
|
|
33
|
-
// selector: 'app-root',
|
|
34
|
-
// standalone: true,
|
|
35
|
-
// imports: [
|
|
36
|
-
// CommonModule,
|
|
37
|
-
// FormsModule,
|
|
38
|
-
// RouterOutlet,
|
|
39
|
-
// ThySelectComponent,
|
|
40
|
-
// ThySelectCustomComponent,
|
|
41
|
-
// ThyOptionComponent,
|
|
42
|
-
// ThyButtonComponent,
|
|
43
|
-
// DialogHeaderComponent,
|
|
44
|
-
// DialogBodyComponent,
|
|
45
|
-
// DialogFooterComponent
|
|
46
|
-
// ],
|
|
47
|
-
// templateUrl: './app.component.html',
|
|
48
|
-
// styleUrls: ['./app.component.scss'],
|
|
49
|
-
// })
|
|
50
|
-
// export class AppComponent {}
|
|
51
|
-
// `;
|
|
52
|
-
// let workspaceTree: UnitTestTree;
|
|
53
|
-
// beforeEach(async () => {
|
|
54
|
-
// const hostTree = new HostTree();
|
|
55
|
-
// tree = await schematicRunner.runExternalSchematic(
|
|
56
|
-
// '@schematics/angular',
|
|
57
|
-
// 'workspace',
|
|
58
|
-
// {
|
|
59
|
-
// name: 'test-workspace',
|
|
60
|
-
// version: '18.0.0',
|
|
61
|
-
// newProjectRoot: 'projects'
|
|
62
|
-
// },
|
|
63
|
-
// hostTree
|
|
64
|
-
// );
|
|
65
|
-
// await schematicRunner.runExternalSchematic('@schematics/angular', 'application', { name: 'update17test' }, tree);
|
|
66
|
-
// tree.overwrite(TEST_COMPONENT_PATH, TEST_COMPONENT_CONTENT);
|
|
67
|
-
// workspaceTree = await schematicRunner.runSchematic('migration-v18', {}, tree);
|
|
68
|
-
// });
|
|
69
|
-
// it('should remove the Component suffix from standalone components', async () => {
|
|
70
|
-
// const result = workspaceTree.read(TEST_COMPONENT_PATH).toString();
|
|
71
|
-
// expect(result).not.toContain(`ThyOptionComponent`);
|
|
72
|
-
// expect(result).toContain('ThyOption');
|
|
73
|
-
// expect(result).not.toContain(`ThyButtonComponent`);
|
|
74
|
-
// expect(result).toContain('ThyButton');
|
|
75
|
-
// });
|
|
76
|
-
// it('should rename ThySelectCustomComponent to ThySelect', async () => {
|
|
77
|
-
// const result = workspaceTree.read(TEST_COMPONENT_PATH).toString();
|
|
78
|
-
// expect(result).not.toContain('ThySelectComponent');
|
|
79
|
-
// expect(result).toContain('ThyNativeSelect');
|
|
80
|
-
// });
|
|
81
|
-
// it('should rename ThySelectComponent to ThyNativeSelect', async () => {
|
|
82
|
-
// const result = workspaceTree.read(TEST_COMPONENT_PATH).toString();
|
|
83
|
-
// expect(result).not.toContain(`ThySelectCustomComponent`);
|
|
84
|
-
// expect(result).toContain('ThySelect');
|
|
85
|
-
// });
|
|
86
|
-
// it('should rename DialogHeaderComponent, DialogBodyComponent, DialogFooterComponent to ThyDialogHeader, ThyDialogBody, ThyDialogFooter', async () => {
|
|
87
|
-
// const result = workspaceTree.read(TEST_COMPONENT_PATH).toString();
|
|
88
|
-
// expect(result).not.toContain(`DialogHeaderComponent`);
|
|
89
|
-
// expect(result).toContain('ThyDialogHeader');
|
|
90
|
-
// expect(result).not.toContain(`DialogBodyComponent`);
|
|
91
|
-
// expect(result).toContain('ThyDialogBody');
|
|
92
|
-
// expect(result).not.toContain(`DialogFooterComponent`);
|
|
93
|
-
// expect(result).toContain('ThyDialogFooter');
|
|
94
|
-
// });
|
|
95
|
-
// });
|
|
96
23
|
});
|
|
@@ -1,867 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.upgradeData = void 0;
|
|
4
|
-
const schematics_1 = require("@angular/cdk/schematics");
|
|
5
4
|
exports.upgradeData = {
|
|
6
|
-
classNames: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
// changes: [
|
|
11
|
-
// {
|
|
12
|
-
// replace: 'ThyActionComponent',
|
|
13
|
-
// replaceWith: 'ThyAction'
|
|
14
|
-
// },
|
|
15
|
-
// {
|
|
16
|
-
// replace: 'ThyActionsComponent',
|
|
17
|
-
// replaceWith: 'ThyActions'
|
|
18
|
-
// },
|
|
19
|
-
// {
|
|
20
|
-
// replace: 'ThyAffixComponent',
|
|
21
|
-
// replaceWith: 'ThyAffix'
|
|
22
|
-
// },
|
|
23
|
-
// {
|
|
24
|
-
// replace: 'ThyAlertComponent',
|
|
25
|
-
// replaceWith: 'ThyAlert'
|
|
26
|
-
// },
|
|
27
|
-
// {
|
|
28
|
-
// replace: 'ThyAnchorLinkComponent',
|
|
29
|
-
// replaceWith: 'ThyAnchorLink'
|
|
30
|
-
// },
|
|
31
|
-
// {
|
|
32
|
-
// replace: 'ThyAnchorComponent',
|
|
33
|
-
// replaceWith: 'ThyAnchor'
|
|
34
|
-
// },
|
|
35
|
-
// {
|
|
36
|
-
// replace: 'ThyArrowSwitcherComponent',
|
|
37
|
-
// replaceWith: 'ThyArrowSwitcher'
|
|
38
|
-
// },
|
|
39
|
-
// {
|
|
40
|
-
// replace: 'ThyAutocompleteComponent',
|
|
41
|
-
// replaceWith: 'ThyAutocomplete'
|
|
42
|
-
// },
|
|
43
|
-
// {
|
|
44
|
-
// replace: 'ThyAvatarComponent',
|
|
45
|
-
// replaceWith: 'ThyAvatar'
|
|
46
|
-
// },
|
|
47
|
-
// {
|
|
48
|
-
// replace: 'ThyBackTopComponent',
|
|
49
|
-
// replaceWith: 'ThyBackTop'
|
|
50
|
-
// },
|
|
51
|
-
// {
|
|
52
|
-
// replace: 'ThyBadgeComponent',
|
|
53
|
-
// replaceWith: 'ThyBadge'
|
|
54
|
-
// },
|
|
55
|
-
// {
|
|
56
|
-
// replace: 'ThyBreadcrumbItemComponent',
|
|
57
|
-
// replaceWith: 'ThyBreadcrumbItem'
|
|
58
|
-
// },
|
|
59
|
-
// {
|
|
60
|
-
// replace: 'ThyBreadcrumbComponent',
|
|
61
|
-
// replaceWith: 'ThyBreadcrumb'
|
|
62
|
-
// },
|
|
63
|
-
// {
|
|
64
|
-
// replace: 'ThyButtonGroupComponent',
|
|
65
|
-
// replaceWith: 'ThyButtonGroup'
|
|
66
|
-
// },
|
|
67
|
-
// {
|
|
68
|
-
// replace: 'ThyButtonIconComponent',
|
|
69
|
-
// replaceWith: 'ThyButtonIcon'
|
|
70
|
-
// },
|
|
71
|
-
// {
|
|
72
|
-
// replace: 'ThyButtonComponent',
|
|
73
|
-
// replaceWith: 'ThyButton'
|
|
74
|
-
// },
|
|
75
|
-
// {
|
|
76
|
-
// replace: 'ThyCalendarHeaderComponent',
|
|
77
|
-
// replaceWith: 'ThyCalendarHeader'
|
|
78
|
-
// },
|
|
79
|
-
// {
|
|
80
|
-
// replace: 'ThyCalendarComponent',
|
|
81
|
-
// replaceWith: 'ThyCalendar'
|
|
82
|
-
// },
|
|
83
|
-
// {
|
|
84
|
-
// replace: 'ThyCardComponent',
|
|
85
|
-
// replaceWith: 'ThyCard'
|
|
86
|
-
// },
|
|
87
|
-
// {
|
|
88
|
-
// replace: 'ThyCardContentComponent',
|
|
89
|
-
// replaceWith: 'ThyCardContent'
|
|
90
|
-
// },
|
|
91
|
-
// {
|
|
92
|
-
// replace: 'ThyCardHeaderComponent',
|
|
93
|
-
// replaceWith: 'ThyCardHeader'
|
|
94
|
-
// },
|
|
95
|
-
// {
|
|
96
|
-
// replace: 'ThyCarouselComponent',
|
|
97
|
-
// replaceWith: 'ThyCarousel'
|
|
98
|
-
// },
|
|
99
|
-
// {
|
|
100
|
-
// replace: 'ThyCascaderComponent',
|
|
101
|
-
// replaceWith: 'ThyCascader'
|
|
102
|
-
// },
|
|
103
|
-
// {
|
|
104
|
-
// replace: 'ThyCheckboxComponent',
|
|
105
|
-
// replaceWith: 'ThyCheckbox'
|
|
106
|
-
// },
|
|
107
|
-
// {
|
|
108
|
-
// replace: 'ThyCollapseItemComponent',
|
|
109
|
-
// replaceWith: 'ThyCollapseItem'
|
|
110
|
-
// },
|
|
111
|
-
// {
|
|
112
|
-
// replace: 'ThyCollapseComponent',
|
|
113
|
-
// replaceWith: 'ThyCollapse'
|
|
114
|
-
// },
|
|
115
|
-
// {
|
|
116
|
-
// replace: 'ThyColorPickerCustomPanelComponent',
|
|
117
|
-
// replaceWith: 'ThyColorPickerCustomPanel'
|
|
118
|
-
// },
|
|
119
|
-
// {
|
|
120
|
-
// replace: 'ThyColorPickerPanelComponent',
|
|
121
|
-
// replaceWith: 'ThyColorPickerPanel'
|
|
122
|
-
// },
|
|
123
|
-
// {
|
|
124
|
-
// replace: 'ThyCommentComponent',
|
|
125
|
-
// replaceWith: 'ThyComment'
|
|
126
|
-
// },
|
|
127
|
-
// {
|
|
128
|
-
// replace: 'BasePickerComponent',
|
|
129
|
-
// replaceWith: 'BasePicker'
|
|
130
|
-
// },
|
|
131
|
-
// {
|
|
132
|
-
// replace: 'ThyDatePickerComponent',
|
|
133
|
-
// replaceWith: 'ThyDatePicker'
|
|
134
|
-
// },
|
|
135
|
-
// {
|
|
136
|
-
// replace: 'ThyMonthPickerComponent',
|
|
137
|
-
// replaceWith: 'ThyMonthPicker'
|
|
138
|
-
// },
|
|
139
|
-
// {
|
|
140
|
-
// replace: 'ThyPickerComponent',
|
|
141
|
-
// replaceWith: 'ThyPicker'
|
|
142
|
-
// },
|
|
143
|
-
// {
|
|
144
|
-
// replace: 'ThyQuarterPickerComponent',
|
|
145
|
-
// replaceWith: 'ThyQuarterPicker'
|
|
146
|
-
// },
|
|
147
|
-
// {
|
|
148
|
-
// replace: 'ThyRangePickerComponent',
|
|
149
|
-
// replaceWith: 'ThyRangePicker'
|
|
150
|
-
// },
|
|
151
|
-
// {
|
|
152
|
-
// replace: 'ThyWeekPickerComponent',
|
|
153
|
-
// replaceWith: 'ThyWeekPicker'
|
|
154
|
-
// },
|
|
155
|
-
// {
|
|
156
|
-
// replace: 'ThyYearPickerComponent',
|
|
157
|
-
// replaceWith: 'ThyYearPicker'
|
|
158
|
-
// },
|
|
159
|
-
// {
|
|
160
|
-
// replace: 'ThyDateRangeComponent',
|
|
161
|
-
// replaceWith: 'ThyDateRange'
|
|
162
|
-
// },
|
|
163
|
-
// {
|
|
164
|
-
// replace: 'ThyDialogContainerComponent',
|
|
165
|
-
// replaceWith: 'ThyDialogContainer'
|
|
166
|
-
// },
|
|
167
|
-
// {
|
|
168
|
-
// replace: 'ThyDividerComponent',
|
|
169
|
-
// replaceWith: 'ThyDivider'
|
|
170
|
-
// },
|
|
171
|
-
// {
|
|
172
|
-
// replace: 'ThyDotComponent',
|
|
173
|
-
// replaceWith: 'ThyDot'
|
|
174
|
-
// },
|
|
175
|
-
// {
|
|
176
|
-
// replace: 'ThyDropdownMenuGroupComponent',
|
|
177
|
-
// replaceWith: 'ThyDropdownMenuGroup'
|
|
178
|
-
// },
|
|
179
|
-
// {
|
|
180
|
-
// replace: 'ThyDropdownMenuDividerComponent',
|
|
181
|
-
// replaceWith: 'ThyDropdownMenuDivider'
|
|
182
|
-
// },
|
|
183
|
-
// {
|
|
184
|
-
// replace: 'ThyDropdownSubmenuComponent',
|
|
185
|
-
// replaceWith: 'ThyDropdownSubmenu'
|
|
186
|
-
// },
|
|
187
|
-
// {
|
|
188
|
-
// replace: 'ThyEmptyComponent',
|
|
189
|
-
// replaceWith: 'ThyEmpty'
|
|
190
|
-
// },
|
|
191
|
-
// {
|
|
192
|
-
// replace: 'ThyFlexibleTextComponent',
|
|
193
|
-
// replaceWith: 'ThyFlexibleText'
|
|
194
|
-
// },
|
|
195
|
-
// {
|
|
196
|
-
// replace: 'ThyFormGroupComponent',
|
|
197
|
-
// replaceWith: 'ThyFormGroup'
|
|
198
|
-
// },
|
|
199
|
-
// {
|
|
200
|
-
// replace: 'ThyGridItemComponent',
|
|
201
|
-
// replaceWith: 'ThyGridItem'
|
|
202
|
-
// },
|
|
203
|
-
// {
|
|
204
|
-
// replace: 'ThyIconComponent',
|
|
205
|
-
// replaceWith: 'ThyIcon'
|
|
206
|
-
// },
|
|
207
|
-
// {
|
|
208
|
-
// replace: 'ThyImageGroupComponent',
|
|
209
|
-
// replaceWith: 'ThyImageGroup'
|
|
210
|
-
// },
|
|
211
|
-
// {
|
|
212
|
-
// replace: 'ThyInputCountComponent',
|
|
213
|
-
// replaceWith: 'ThyInputCount'
|
|
214
|
-
// },
|
|
215
|
-
// {
|
|
216
|
-
// replace: 'ThyInputGroupComponent',
|
|
217
|
-
// replaceWith: 'ThyInputGroup'
|
|
218
|
-
// },
|
|
219
|
-
// {
|
|
220
|
-
// replace: 'ThyInputSearchComponent',
|
|
221
|
-
// replaceWith: 'ThyInputSearch'
|
|
222
|
-
// },
|
|
223
|
-
// {
|
|
224
|
-
// replace: 'ThyInputComponent',
|
|
225
|
-
// replaceWith: 'ThyInput'
|
|
226
|
-
// },
|
|
227
|
-
// {
|
|
228
|
-
// replace: 'ThyInputNumberComponent',
|
|
229
|
-
// replaceWith: 'ThyInputNumber'
|
|
230
|
-
// },
|
|
231
|
-
// {
|
|
232
|
-
// replace: 'ThyContentMainComponent',
|
|
233
|
-
// replaceWith: 'ThyContentMain'
|
|
234
|
-
// },
|
|
235
|
-
// {
|
|
236
|
-
// replace: 'ThyContentSectionComponent',
|
|
237
|
-
// replaceWith: 'ThyContentSection'
|
|
238
|
-
// },
|
|
239
|
-
// {
|
|
240
|
-
// replace: 'ThyContentComponent',
|
|
241
|
-
// replaceWith: 'ThyContent'
|
|
242
|
-
// },
|
|
243
|
-
// {
|
|
244
|
-
// replace: 'ThyHeaderComponent',
|
|
245
|
-
// replaceWith: 'ThyHeader'
|
|
246
|
-
// },
|
|
247
|
-
// {
|
|
248
|
-
// replace: 'ThyLayoutComponent',
|
|
249
|
-
// replaceWith: 'ThyLayout'
|
|
250
|
-
// },
|
|
251
|
-
// {
|
|
252
|
-
// replace: 'ThySidebarContentComponent',
|
|
253
|
-
// replaceWith: 'ThySidebarContent'
|
|
254
|
-
// },
|
|
255
|
-
// {
|
|
256
|
-
// replace: 'ThySidebarFooterComponent',
|
|
257
|
-
// replaceWith: 'ThySidebarFooter'
|
|
258
|
-
// },
|
|
259
|
-
// {
|
|
260
|
-
// replace: 'ThySidebarHeaderComponent',
|
|
261
|
-
// replaceWith: 'ThySidebarHeader'
|
|
262
|
-
// },
|
|
263
|
-
// {
|
|
264
|
-
// replace: 'ThySidebarComponent',
|
|
265
|
-
// replaceWith: 'ThySidebar'
|
|
266
|
-
// },
|
|
267
|
-
// {
|
|
268
|
-
// replace: 'ThyListItemMetaComponent',
|
|
269
|
-
// replaceWith: 'ThyListItemMeta'
|
|
270
|
-
// },
|
|
271
|
-
// {
|
|
272
|
-
// replace: 'ThyListItemComponent',
|
|
273
|
-
// replaceWith: 'ThyListItem'
|
|
274
|
-
// },
|
|
275
|
-
// {
|
|
276
|
-
// replace: 'ThyListComponent',
|
|
277
|
-
// replaceWith: 'ThyList'
|
|
278
|
-
// },
|
|
279
|
-
// {
|
|
280
|
-
// replace: 'ThyLoadingComponent',
|
|
281
|
-
// replaceWith: 'ThyLoading'
|
|
282
|
-
// },
|
|
283
|
-
// {
|
|
284
|
-
// replace: 'ThyMenuComponent',
|
|
285
|
-
// replaceWith: 'ThyMenu'
|
|
286
|
-
// },
|
|
287
|
-
// {
|
|
288
|
-
// replace: 'ThyMessageContainerComponent',
|
|
289
|
-
// replaceWith: 'ThyMessageContainer'
|
|
290
|
-
// },
|
|
291
|
-
// {
|
|
292
|
-
// replace: 'ThyMessageComponent',
|
|
293
|
-
// replaceWith: 'ThyMessage'
|
|
294
|
-
// },
|
|
295
|
-
// {
|
|
296
|
-
// replace: 'ThyNavComponent',
|
|
297
|
-
// replaceWith: 'ThyNav'
|
|
298
|
-
// },
|
|
299
|
-
// {
|
|
300
|
-
// replace: 'ThyNotifyContainerComponent',
|
|
301
|
-
// replaceWith: 'ThyNotifyContainer'
|
|
302
|
-
// },
|
|
303
|
-
// {
|
|
304
|
-
// replace: 'ThyNotifyComponent',
|
|
305
|
-
// replaceWith: 'ThyNotify'
|
|
306
|
-
// },
|
|
307
|
-
// {
|
|
308
|
-
// replace: 'ThyPaginationComponent',
|
|
309
|
-
// replaceWith: 'ThyPagination'
|
|
310
|
-
// },
|
|
311
|
-
// {
|
|
312
|
-
// replace: 'ThyPopoverContainerComponent',
|
|
313
|
-
// replaceWith: 'ThyPopoverContainer'
|
|
314
|
-
// },
|
|
315
|
-
// {
|
|
316
|
-
// replace: 'ThyProgressCircleComponent',
|
|
317
|
-
// replaceWith: 'ThyProgressCircle'
|
|
318
|
-
// },
|
|
319
|
-
// {
|
|
320
|
-
// replace: 'ThyProgressStripComponent',
|
|
321
|
-
// replaceWith: 'ThyProgressStrip'
|
|
322
|
-
// },
|
|
323
|
-
// {
|
|
324
|
-
// replace: 'ThyProgressComponent',
|
|
325
|
-
// replaceWith: 'ThyProgress'
|
|
326
|
-
// },
|
|
327
|
-
// {
|
|
328
|
-
// replace: 'ThyPropertiesComponent',
|
|
329
|
-
// replaceWith: 'ThyProperties'
|
|
330
|
-
// },
|
|
331
|
-
// {
|
|
332
|
-
// replace: 'ThyPropertyItemComponent',
|
|
333
|
-
// replaceWith: 'ThyPropertyItem'
|
|
334
|
-
// },
|
|
335
|
-
// {
|
|
336
|
-
// replace: 'ThyPropertyOperationComponent',
|
|
337
|
-
// replaceWith: 'ThyPropertyOperation'
|
|
338
|
-
// },
|
|
339
|
-
// {
|
|
340
|
-
// replace: 'ThyRadioComponent',
|
|
341
|
-
// replaceWith: 'ThyRadio'
|
|
342
|
-
// },
|
|
343
|
-
// {
|
|
344
|
-
// replace: 'ThyRateItemComponent',
|
|
345
|
-
// replaceWith: 'ThyRateItem'
|
|
346
|
-
// },
|
|
347
|
-
// {
|
|
348
|
-
// replace: 'ThyRateComponent',
|
|
349
|
-
// replaceWith: 'ThyRate'
|
|
350
|
-
// },
|
|
351
|
-
// {
|
|
352
|
-
// replace: 'ThyResizeHandleComponent',
|
|
353
|
-
// replaceWith: 'ThyResizeHandle'
|
|
354
|
-
// },
|
|
355
|
-
// {
|
|
356
|
-
// replace: 'ThyResizeHandlesComponent',
|
|
357
|
-
// replaceWith: 'ThyResizeHandles'
|
|
358
|
-
// },
|
|
359
|
-
// {
|
|
360
|
-
// replace: 'ThyResultComponent',
|
|
361
|
-
// replaceWith: 'ThyResult'
|
|
362
|
-
// },
|
|
363
|
-
// {
|
|
364
|
-
// replace: 'ThySegmentItemComponent',
|
|
365
|
-
// replaceWith: 'ThySegmentItem'
|
|
366
|
-
// },
|
|
367
|
-
// {
|
|
368
|
-
// replace: 'ThySegmentComponent',
|
|
369
|
-
// replaceWith: 'ThySegment'
|
|
370
|
-
// },
|
|
371
|
-
// {
|
|
372
|
-
// replace: 'ThySelectComponent',
|
|
373
|
-
// replaceWith: 'ThyNativeSelect'
|
|
374
|
-
// },
|
|
375
|
-
// {
|
|
376
|
-
// replace: 'ThySkeletonCircleComponent',
|
|
377
|
-
// replaceWith: 'ThySkeletonCircle'
|
|
378
|
-
// },
|
|
379
|
-
// {
|
|
380
|
-
// replace: 'ThySkeletonRectangleComponent',
|
|
381
|
-
// replaceWith: 'ThySkeletonRectangle'
|
|
382
|
-
// },
|
|
383
|
-
// {
|
|
384
|
-
// replace: 'ThySkeletonComponent',
|
|
385
|
-
// replaceWith: 'ThySkeleton'
|
|
386
|
-
// },
|
|
387
|
-
// {
|
|
388
|
-
// replace: 'ThySlideContainerComponent',
|
|
389
|
-
// replaceWith: 'ThySlideContainer'
|
|
390
|
-
// },
|
|
391
|
-
// {
|
|
392
|
-
// replace: 'ThySliderComponent',
|
|
393
|
-
// replaceWith: 'ThySlider'
|
|
394
|
-
// },
|
|
395
|
-
// {
|
|
396
|
-
// replace: 'ThySpaceComponent',
|
|
397
|
-
// replaceWith: 'ThySpace'
|
|
398
|
-
// },
|
|
399
|
-
// {
|
|
400
|
-
// replace: 'ThyStatisticComponent',
|
|
401
|
-
// replaceWith: 'ThyStatistic'
|
|
402
|
-
// },
|
|
403
|
-
// {
|
|
404
|
-
// replace: 'ThyStepHeaderComponent',
|
|
405
|
-
// replaceWith: 'ThyStepHeader'
|
|
406
|
-
// },
|
|
407
|
-
// {
|
|
408
|
-
// replace: 'ThyStepComponent',
|
|
409
|
-
// replaceWith: 'ThyStep'
|
|
410
|
-
// },
|
|
411
|
-
// {
|
|
412
|
-
// replace: 'ThyStepperComponent',
|
|
413
|
-
// replaceWith: 'ThyStepper'
|
|
414
|
-
// },
|
|
415
|
-
// {
|
|
416
|
-
// replace: 'ThyStrengthComponent',
|
|
417
|
-
// replaceWith: 'ThyStrength'
|
|
418
|
-
// },
|
|
419
|
-
// {
|
|
420
|
-
// replace: 'ThySwitchComponent',
|
|
421
|
-
// replaceWith: 'ThySwitch'
|
|
422
|
-
// },
|
|
423
|
-
// {
|
|
424
|
-
// replace: 'ThyTableSkeletonComponent',
|
|
425
|
-
// replaceWith: 'ThyTableSkeleton'
|
|
426
|
-
// },
|
|
427
|
-
// {
|
|
428
|
-
// replace: 'ThyTableComponent',
|
|
429
|
-
// replaceWith: 'ThyTable'
|
|
430
|
-
// },
|
|
431
|
-
// {
|
|
432
|
-
// replace: 'ThyTabContentComponent',
|
|
433
|
-
// replaceWith: 'ThyTabContent'
|
|
434
|
-
// },
|
|
435
|
-
// {
|
|
436
|
-
// replace: 'ThyTabComponent',
|
|
437
|
-
// replaceWith: 'ThyTab'
|
|
438
|
-
// },
|
|
439
|
-
// {
|
|
440
|
-
// replace: 'ThyTabsComponent',
|
|
441
|
-
// replaceWith: 'ThyTabs'
|
|
442
|
-
// },
|
|
443
|
-
// {
|
|
444
|
-
// replace: 'ThyTagComponent',
|
|
445
|
-
// replaceWith: 'ThyTag'
|
|
446
|
-
// },
|
|
447
|
-
// {
|
|
448
|
-
// replace: 'ThyTagsComponent',
|
|
449
|
-
// replaceWith: 'ThyTags'
|
|
450
|
-
// },
|
|
451
|
-
// {
|
|
452
|
-
// replace: 'ThyTimePanelComponent',
|
|
453
|
-
// replaceWith: 'ThyTimePanel'
|
|
454
|
-
// },
|
|
455
|
-
// {
|
|
456
|
-
// replace: 'ThyTimePickerComponent',
|
|
457
|
-
// replaceWith: 'ThyTimePicker'
|
|
458
|
-
// },
|
|
459
|
-
// {
|
|
460
|
-
// replace: 'ThyTimelineItemComponent',
|
|
461
|
-
// replaceWith: 'ThyTimelineItem'
|
|
462
|
-
// },
|
|
463
|
-
// {
|
|
464
|
-
// replace: 'ThyTimelineComponent',
|
|
465
|
-
// replaceWith: 'ThyTimeline'
|
|
466
|
-
// },
|
|
467
|
-
// {
|
|
468
|
-
// replace: 'ThyTooltipComponent',
|
|
469
|
-
// replaceWith: 'ThyTooltip'
|
|
470
|
-
// },
|
|
471
|
-
// {
|
|
472
|
-
// replace: 'ThyTransferListComponent',
|
|
473
|
-
// replaceWith: 'ThyTransferList'
|
|
474
|
-
// },
|
|
475
|
-
// {
|
|
476
|
-
// replace: 'ThyTransferComponent',
|
|
477
|
-
// replaceWith: 'ThyTransfer'
|
|
478
|
-
// },
|
|
479
|
-
// {
|
|
480
|
-
// replace: 'ThyTreeComponent',
|
|
481
|
-
// replaceWith: 'ThyTree'
|
|
482
|
-
// },
|
|
483
|
-
// {
|
|
484
|
-
// replace: 'ThyTreeSelectComponent',
|
|
485
|
-
// replaceWith: 'ThyTreeSelect'
|
|
486
|
-
// },
|
|
487
|
-
// {
|
|
488
|
-
// replace: 'ThyTreeSelectNodesComponent',
|
|
489
|
-
// replaceWith: 'ThyTreeSelectNodes'
|
|
490
|
-
// },
|
|
491
|
-
// {
|
|
492
|
-
// replace: 'ThyFileSelectComponent',
|
|
493
|
-
// replaceWith: 'ThyFileSelect'
|
|
494
|
-
// },
|
|
495
|
-
// {
|
|
496
|
-
// replace: 'ThyVoteComponent',
|
|
497
|
-
// replaceWith: 'ThyVote'
|
|
498
|
-
// },
|
|
499
|
-
// {
|
|
500
|
-
// replace: 'ThyAutocompleteContainerComponent',
|
|
501
|
-
// replaceWith: 'ThyAutocompleteContainer'
|
|
502
|
-
// },
|
|
503
|
-
// {
|
|
504
|
-
// replace: 'ThyAvatarListComponent',
|
|
505
|
-
// replaceWith: 'ThyAvatarList'
|
|
506
|
-
// },
|
|
507
|
-
// {
|
|
508
|
-
// replace: 'OptionalDateRangesComponent',
|
|
509
|
-
// replaceWith: 'OptionalDateRanges'
|
|
510
|
-
// },
|
|
511
|
-
// {
|
|
512
|
-
// replace: 'DialogBodyComponent',
|
|
513
|
-
// replaceWith: 'ThyDialogBody'
|
|
514
|
-
// },
|
|
515
|
-
// {
|
|
516
|
-
// replace: 'ThyConfirmComponent',
|
|
517
|
-
// replaceWith: 'ThyConfirm'
|
|
518
|
-
// },
|
|
519
|
-
// {
|
|
520
|
-
// replace: 'DialogFooterComponent',
|
|
521
|
-
// replaceWith: 'ThyDialogFooter'
|
|
522
|
-
// },
|
|
523
|
-
// {
|
|
524
|
-
// replace: 'DialogHeaderComponent',
|
|
525
|
-
// replaceWith: 'ThyDialogHeader'
|
|
526
|
-
// },
|
|
527
|
-
// {
|
|
528
|
-
// replace: 'ThyFormGroupErrorComponent',
|
|
529
|
-
// replaceWith: 'ThyFormGroupError'
|
|
530
|
-
// },
|
|
531
|
-
// {
|
|
532
|
-
// replace: 'ThyFormGroupFooterComponent',
|
|
533
|
-
// replaceWith: 'ThyFormGroupFooter'
|
|
534
|
-
// },
|
|
535
|
-
// {
|
|
536
|
-
// replace: 'ThyGuiderHintComponent',
|
|
537
|
-
// replaceWith: 'ThyGuiderHint'
|
|
538
|
-
// },
|
|
539
|
-
// {
|
|
540
|
-
// replace: 'ThyImagePreviewComponent',
|
|
541
|
-
// replaceWith: 'ThyImagePreview'
|
|
542
|
-
// },
|
|
543
|
-
// {
|
|
544
|
-
// replace: 'ThySelectionListComponent',
|
|
545
|
-
// replaceWith: 'ThySelectionList'
|
|
546
|
-
// },
|
|
547
|
-
// {
|
|
548
|
-
// replace: 'ThyMentionSuggestionsComponent',
|
|
549
|
-
// replaceWith: 'ThyMentionSuggestions'
|
|
550
|
-
// },
|
|
551
|
-
// {
|
|
552
|
-
// replace: 'ThyMenuDividerComponent',
|
|
553
|
-
// replaceWith: 'ThyMenuDivider'
|
|
554
|
-
// },
|
|
555
|
-
// {
|
|
556
|
-
// replace: 'ThyMenuGroupComponent',
|
|
557
|
-
// replaceWith: 'ThyMenuGroup'
|
|
558
|
-
// },
|
|
559
|
-
// {
|
|
560
|
-
// replace: 'ThyMenuItemComponent',
|
|
561
|
-
// replaceWith: 'ThyMenuItem'
|
|
562
|
-
// },
|
|
563
|
-
// {
|
|
564
|
-
// replace: 'ThyIconNavLinkComponent',
|
|
565
|
-
// replaceWith: 'ThyIconNavLink'
|
|
566
|
-
// },
|
|
567
|
-
// {
|
|
568
|
-
// replace: 'ThyIconNavComponent',
|
|
569
|
-
// replaceWith: 'ThyIconNav'
|
|
570
|
-
// },
|
|
571
|
-
// {
|
|
572
|
-
// replace: 'ThyPopoverBodyComponent',
|
|
573
|
-
// replaceWith: 'ThyPopoverBody'
|
|
574
|
-
// },
|
|
575
|
-
// {
|
|
576
|
-
// replace: 'ThyPopoverHeaderComponent',
|
|
577
|
-
// replaceWith: 'ThyPopoverHeader'
|
|
578
|
-
// },
|
|
579
|
-
// {
|
|
580
|
-
// replace: 'ThyPropertyOperationGroupComponent',
|
|
581
|
-
// replaceWith: 'ThyPropertyOperationGroup'
|
|
582
|
-
// },
|
|
583
|
-
// {
|
|
584
|
-
// replace: 'ThyRadioButtonComponent',
|
|
585
|
-
// replaceWith: 'ThyRadioButton'
|
|
586
|
-
// },
|
|
587
|
-
// {
|
|
588
|
-
// replace: 'ThyRadioGroupComponent',
|
|
589
|
-
// replaceWith: 'ThyRadioGroup'
|
|
590
|
-
// },
|
|
591
|
-
// {
|
|
592
|
-
// replace: 'ThySelectCustomComponent',
|
|
593
|
-
// replaceWith: 'ThySelect'
|
|
594
|
-
// },
|
|
595
|
-
// {
|
|
596
|
-
// replace: 'ThyOptionGroupComponent',
|
|
597
|
-
// replaceWith: 'ThyOptionGroup'
|
|
598
|
-
// },
|
|
599
|
-
// {
|
|
600
|
-
// replace: 'ThyOptionComponent',
|
|
601
|
-
// replaceWith: 'ThyOption'
|
|
602
|
-
// },
|
|
603
|
-
// {
|
|
604
|
-
// replace: 'ThyOptionsContainerComponent',
|
|
605
|
-
// replaceWith: 'ThyOptionsContainer'
|
|
606
|
-
// },
|
|
607
|
-
// {
|
|
608
|
-
// replace: 'ThySkeletonBulletListComponent',
|
|
609
|
-
// replaceWith: 'ThySkeletonBulletList'
|
|
610
|
-
// },
|
|
611
|
-
// {
|
|
612
|
-
// replace: 'ThySkeletonListComponent',
|
|
613
|
-
// replaceWith: 'ThySkeletonList'
|
|
614
|
-
// },
|
|
615
|
-
// {
|
|
616
|
-
// replace: 'ThySkeletonParagraphComponent',
|
|
617
|
-
// replaceWith: 'ThySkeletonParagraph'
|
|
618
|
-
// },
|
|
619
|
-
// {
|
|
620
|
-
// replace: 'ThySlideBodySectionComponent',
|
|
621
|
-
// replaceWith: 'ThySlideBodySection'
|
|
622
|
-
// },
|
|
623
|
-
// {
|
|
624
|
-
// replace: 'ThySlideBodyComponent',
|
|
625
|
-
// replaceWith: 'ThySlideBody'
|
|
626
|
-
// },
|
|
627
|
-
// {
|
|
628
|
-
// replace: 'ThySlideFooterComponent',
|
|
629
|
-
// replaceWith: 'ThySlideFooter'
|
|
630
|
-
// },
|
|
631
|
-
// {
|
|
632
|
-
// replace: 'ThySlideHeaderComponent',
|
|
633
|
-
// replaceWith: 'ThySlideHeader'
|
|
634
|
-
// },
|
|
635
|
-
// {
|
|
636
|
-
// replace: 'ThySlideLayoutComponent',
|
|
637
|
-
// replaceWith: 'ThySlideLayout'
|
|
638
|
-
// },
|
|
639
|
-
// {
|
|
640
|
-
// replace: 'ThyInnerTimePickerComponent',
|
|
641
|
-
// replaceWith: 'ThyInnerTimePicker'
|
|
642
|
-
// },
|
|
643
|
-
// {
|
|
644
|
-
// replace: 'ThyTextComponent',
|
|
645
|
-
// replaceWith: 'ThyText'
|
|
646
|
-
// },
|
|
647
|
-
// {
|
|
648
|
-
// replace: 'ThyAlphaComponent',
|
|
649
|
-
// replaceWith: 'ThyAlpha'
|
|
650
|
-
// },
|
|
651
|
-
// {
|
|
652
|
-
// replace: 'ThyHueComponent',
|
|
653
|
-
// replaceWith: 'ThyHue'
|
|
654
|
-
// },
|
|
655
|
-
// {
|
|
656
|
-
// replace: 'ThyIndicatorComponent',
|
|
657
|
-
// replaceWith: 'ThyIndicator'
|
|
658
|
-
// },
|
|
659
|
-
// {
|
|
660
|
-
// replace: 'ThyColorInputsComponent',
|
|
661
|
-
// replaceWith: 'ThyColorInputs'
|
|
662
|
-
// },
|
|
663
|
-
// {
|
|
664
|
-
// replace: 'ThySaturationComponent',
|
|
665
|
-
// replaceWith: 'ThySaturation'
|
|
666
|
-
// },
|
|
667
|
-
// {
|
|
668
|
-
// replace: 'CalendarFooterComponent',
|
|
669
|
-
// replaceWith: 'CalendarFooter'
|
|
670
|
-
// },
|
|
671
|
-
// {
|
|
672
|
-
// replace: 'DateHeaderComponent',
|
|
673
|
-
// replaceWith: 'DateHeader'
|
|
674
|
-
// },
|
|
675
|
-
// {
|
|
676
|
-
// replace: 'DateTableCellComponent',
|
|
677
|
-
// replaceWith: 'DateTableCell'
|
|
678
|
-
// },
|
|
679
|
-
// {
|
|
680
|
-
// replace: 'DateTableComponent',
|
|
681
|
-
// replaceWith: 'DateTable'
|
|
682
|
-
// },
|
|
683
|
-
// {
|
|
684
|
-
// replace: 'DateCarouselComponent',
|
|
685
|
-
// replaceWith: 'DateCarousel'
|
|
686
|
-
// },
|
|
687
|
-
// {
|
|
688
|
-
// replace: 'DecadeHeaderComponent',
|
|
689
|
-
// replaceWith: 'DecadeHeader'
|
|
690
|
-
// },
|
|
691
|
-
// {
|
|
692
|
-
// replace: 'DecadeTableComponent',
|
|
693
|
-
// replaceWith: 'DecadeTable'
|
|
694
|
-
// },
|
|
695
|
-
// {
|
|
696
|
-
// replace: 'MonthHeaderComponent',
|
|
697
|
-
// replaceWith: 'MonthHeader'
|
|
698
|
-
// },
|
|
699
|
-
// {
|
|
700
|
-
// replace: 'MonthTableComponent',
|
|
701
|
-
// replaceWith: 'MonthTable'
|
|
702
|
-
// },
|
|
703
|
-
// {
|
|
704
|
-
// replace: 'DatePopupComponent',
|
|
705
|
-
// replaceWith: 'DatePopup'
|
|
706
|
-
// },
|
|
707
|
-
// {
|
|
708
|
-
// replace: 'InnerPopupComponent',
|
|
709
|
-
// replaceWith: 'InnerPopup'
|
|
710
|
-
// },
|
|
711
|
-
// {
|
|
712
|
-
// replace: 'QuarterTableComponent',
|
|
713
|
-
// replaceWith: 'QuarterTable'
|
|
714
|
-
// },
|
|
715
|
-
// {
|
|
716
|
-
// replace: 'YearHeaderComponent',
|
|
717
|
-
// replaceWith: 'YearHeader'
|
|
718
|
-
// },
|
|
719
|
-
// {
|
|
720
|
-
// replace: 'YearTableComponent',
|
|
721
|
-
// replaceWith: 'YearTable'
|
|
722
|
-
// },
|
|
723
|
-
// {
|
|
724
|
-
// replace: 'ThyMenuItemActionComponent',
|
|
725
|
-
// replaceWith: 'ThyMenuItemAction'
|
|
726
|
-
// },
|
|
727
|
-
// {
|
|
728
|
-
// replace: 'ThyMenuItemIconComponent',
|
|
729
|
-
// replaceWith: 'ThyMenuItemIcon'
|
|
730
|
-
// },
|
|
731
|
-
// {
|
|
732
|
-
// replace: 'ThyMenuItemNameComponent',
|
|
733
|
-
// replaceWith: 'ThyMenuItemName'
|
|
734
|
-
// },
|
|
735
|
-
// {
|
|
736
|
-
// replace: 'ThySelectOptionGroupComponent',
|
|
737
|
-
// replaceWith: 'ThySelectOptionGroup'
|
|
738
|
-
// },
|
|
739
|
-
// {
|
|
740
|
-
// replace: 'ThyListOptionComponent',
|
|
741
|
-
// replaceWith: 'ThyListOption'
|
|
742
|
-
// },
|
|
743
|
-
// {
|
|
744
|
-
// replace: 'ThySelectControlComponent',
|
|
745
|
-
// replaceWith: 'ThySelectControl'
|
|
746
|
-
// },
|
|
747
|
-
// {
|
|
748
|
-
// replace: 'ThyCustomSelectTriggerType',
|
|
749
|
-
// replaceWith: 'ThySelectTriggerType'
|
|
750
|
-
// },
|
|
751
|
-
// {
|
|
752
|
-
// replace: 'ThyShortcutRange',
|
|
753
|
-
// replaceWith: 'ThyShortcutPreset'
|
|
754
|
-
// },
|
|
755
|
-
// {
|
|
756
|
-
// replace: 'ThyShortcutValueChange',
|
|
757
|
-
// replaceWith: 'ThyDateChangeEvent'
|
|
758
|
-
// },
|
|
759
|
-
// {
|
|
760
|
-
// replace: 'PanelMode',
|
|
761
|
-
// replaceWith: 'ThyPanelMode'
|
|
762
|
-
// },
|
|
763
|
-
// {
|
|
764
|
-
// replace: 'RangeEntry',
|
|
765
|
-
// replaceWith: 'ThyDateRangeEntry'
|
|
766
|
-
// }
|
|
767
|
-
// ]
|
|
768
|
-
// }
|
|
769
|
-
// ]
|
|
770
|
-
},
|
|
771
|
-
elementSelectors: {
|
|
772
|
-
// [TargetVersion.V18]: [
|
|
773
|
-
// {
|
|
774
|
-
// pr: '',
|
|
775
|
-
// changes: [
|
|
776
|
-
// {
|
|
777
|
-
// replace: '<thy-select>',
|
|
778
|
-
// replaceWith: '<thy-native-select>'
|
|
779
|
-
// },
|
|
780
|
-
// {
|
|
781
|
-
// replace: '<thy-select ',
|
|
782
|
-
// replaceWith: '<thy-native-select '
|
|
783
|
-
// },
|
|
784
|
-
// {
|
|
785
|
-
// replace: '<thy-select\n',
|
|
786
|
-
// replaceWith: '<thy-native-select\n'
|
|
787
|
-
// },
|
|
788
|
-
// {
|
|
789
|
-
// replace: '</thy-select>',
|
|
790
|
-
// replaceWith: '</thy-native-select>'
|
|
791
|
-
// },
|
|
792
|
-
// {
|
|
793
|
-
// replace: '<thy-custom-select>',
|
|
794
|
-
// replaceWith: '<thy-select>'
|
|
795
|
-
// },
|
|
796
|
-
// {
|
|
797
|
-
// replace: '<thy-custom-select\n',
|
|
798
|
-
// replaceWith: '<thy-select\n'
|
|
799
|
-
// },
|
|
800
|
-
// {
|
|
801
|
-
// replace: '<thy-custom-select ',
|
|
802
|
-
// replaceWith: '<thy-select '
|
|
803
|
-
// },
|
|
804
|
-
// {
|
|
805
|
-
// replace: '</thy-custom-select>',
|
|
806
|
-
// replaceWith: '</thy-select>'
|
|
807
|
-
// }
|
|
808
|
-
// ]
|
|
809
|
-
// }
|
|
810
|
-
// ]
|
|
811
|
-
},
|
|
812
|
-
inputNames: {
|
|
813
|
-
// [TargetVersion.V18]: [
|
|
814
|
-
// {
|
|
815
|
-
// pr: '',
|
|
816
|
-
// changes: [
|
|
817
|
-
// {
|
|
818
|
-
// replace: 'thyShortcutRanges',
|
|
819
|
-
// replaceWith: 'thyShortcutPresets',
|
|
820
|
-
// limitedTo: {
|
|
821
|
-
// attributes: ['thyRangePicker', '[thyRangePicker]']
|
|
822
|
-
// }
|
|
823
|
-
// },
|
|
824
|
-
// {
|
|
825
|
-
// replace: 'thyShortcutRanges',
|
|
826
|
-
// replaceWith: 'thyShortcutPresets',
|
|
827
|
-
// limitedTo: {
|
|
828
|
-
// elements: ['thy-range-picker']
|
|
829
|
-
// }
|
|
830
|
-
// }
|
|
831
|
-
// ]
|
|
832
|
-
// }
|
|
833
|
-
// ]
|
|
834
|
-
},
|
|
835
|
-
outputNames: {
|
|
836
|
-
[schematics_1.TargetVersion.V18]: [
|
|
837
|
-
{
|
|
838
|
-
pr: '',
|
|
839
|
-
changes: [
|
|
840
|
-
{
|
|
841
|
-
replace: 'thyShortcutValueChange',
|
|
842
|
-
replaceWith: 'thyDateChange',
|
|
843
|
-
limitedTo: {
|
|
844
|
-
attributes: ['thyDatePicker', '[thyDatePicker]', 'thyRangePicker', '[thyRangePicker]']
|
|
845
|
-
}
|
|
846
|
-
},
|
|
847
|
-
{
|
|
848
|
-
replace: 'thyShortcutValueChange',
|
|
849
|
-
replaceWith: 'thyDateChange',
|
|
850
|
-
limitedTo: {
|
|
851
|
-
elements: [
|
|
852
|
-
'thy-date-picker',
|
|
853
|
-
'thy-week-picker',
|
|
854
|
-
'thy-month-picker',
|
|
855
|
-
'thy-quarter-picker',
|
|
856
|
-
'thy-year-picker',
|
|
857
|
-
'thy-range-picker'
|
|
858
|
-
]
|
|
859
|
-
}
|
|
860
|
-
}
|
|
861
|
-
]
|
|
862
|
-
}
|
|
863
|
-
]
|
|
864
|
-
},
|
|
5
|
+
classNames: {},
|
|
6
|
+
elementSelectors: {},
|
|
7
|
+
inputNames: {},
|
|
8
|
+
outputNames: {},
|
|
865
9
|
cssTokens: {},
|
|
866
10
|
attributeSelectors: {},
|
|
867
11
|
constructorChecks: {},
|
package/schematics/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "18.0.0-next.
|
|
1
|
+
export declare const VERSION = "18.0.0-next.2";
|
package/schematics/version.js
CHANGED