@skyux/packages 13.0.0-alpha.4 → 13.0.0-alpha.6
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/collection.json +5 -0
- package/migrations.json +14 -4
- package/package.json +60 -60
- package/src/schematics/migrations/update-13/icon-name/icon-name-mappings.d.ts +11 -0
- package/src/schematics/migrations/update-13/icon-name/icon-name-mappings.js +319 -0
- package/src/schematics/migrations/update-13/icon-name/icon-name-mappings.js.map +1 -0
- package/src/schematics/migrations/update-13/icon-name/icon-name.schematic.d.ts +5 -0
- package/src/schematics/migrations/update-13/icon-name/icon-name.schematic.js +70 -0
- package/src/schematics/migrations/update-13/icon-name/icon-name.schematic.js.map +1 -0
- package/src/schematics/migrations/update-13/replace-light-blue-custom-property/replace-light-blue-custom-property.schematic.d.ts +2 -0
- package/src/schematics/migrations/update-13/replace-light-blue-custom-property/replace-light-blue-custom-property.schematic.js +8 -0
- package/src/schematics/migrations/update-13/replace-light-blue-custom-property/replace-light-blue-custom-property.schematic.js.map +1 -0
- package/src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/convert-progress-indicator-wizard-to-tab-wizard.schematic.d.ts +8 -0
- package/src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/convert-progress-indicator-wizard-to-tab-wizard.schematic.js +15 -0
- package/src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/convert-progress-indicator-wizard-to-tab-wizard.schematic.js.map +1 -0
- package/src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/schema.d.ts +9 -0
- package/src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/schema.js +3 -0
- package/src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/schema.js.map +1 -0
- package/src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/schema.json +16 -0
- package/src/schematics/rules/convert-definition-list-to-description-list/convert-definition-list-to-description-list.js +6 -2
- package/src/schematics/rules/convert-definition-list-to-description-list/convert-definition-list-to-description-list.js.map +1 -1
- package/src/schematics/rules/convert-page-summary-to-page-header/convert-page-summary-to-page-header.js +43 -37
- package/src/schematics/rules/convert-page-summary-to-page-header/convert-page-summary-to-page-header.js.map +1 -1
- package/src/schematics/rules/convert-progress-indicator-wizard-to-tab-wizard/convert-progress-indicator-wizard-to-tab-wizard.d.ts +3 -0
- package/src/schematics/rules/convert-progress-indicator-wizard-to-tab-wizard/convert-progress-indicator-wizard-to-tab-wizard.js +305 -0
- package/src/schematics/rules/convert-progress-indicator-wizard-to-tab-wizard/convert-progress-indicator-wizard-to-tab-wizard.js.map +1 -0
- package/src/schematics/rules/convert-progress-indicator-wizard-to-tab-wizard/options.d.ts +6 -0
- package/src/schematics/rules/convert-progress-indicator-wizard-to-tab-wizard/options.js +3 -0
- package/src/schematics/rules/convert-progress-indicator-wizard-to-tab-wizard/options.js.map +1 -0
- package/src/schematics/rules/replace-custom-property/replace-custom-property.d.ts +2 -0
- package/src/schematics/rules/replace-custom-property/replace-custom-property.js +37 -0
- package/src/schematics/rules/replace-custom-property/replace-custom-property.js.map +1 -0
- package/src/schematics/testing/angular-module-generator.d.ts +5 -0
- package/src/schematics/testing/angular-module-generator.js +18 -0
- package/src/schematics/testing/angular-module-generator.js.map +1 -0
- package/src/schematics/utility/log-once.d.ts +4 -0
- package/src/schematics/utility/log-once.js +11 -0
- package/src/schematics/utility/log-once.js.map +1 -0
- package/src/schematics/utility/template.d.ts +16 -0
- package/src/schematics/utility/template.js +83 -6
- package/src/schematics/utility/template.js.map +1 -1
- package/src/schematics/utility/typescript/ng-ast.d.ts +20 -0
- package/src/schematics/utility/typescript/ng-ast.js +169 -2
- package/src/schematics/utility/typescript/ng-ast.js.map +1 -1
- package/src/version.js +1 -1
package/collection.json
CHANGED
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
"factory": "./src/schematics/ng-generate/convert-page-summary-to-page-header/convert-page-summary-to-page-header.schematic",
|
|
27
27
|
"schema": "./src/schematics/ng-generate/convert-page-summary-to-page-header/schema.json"
|
|
28
28
|
},
|
|
29
|
+
"convert-progress-indicator-wizard-to-tab-wizard": {
|
|
30
|
+
"description": "Convert <sky-progress-indicator> components using wizard to use <sky-tabset> components.",
|
|
31
|
+
"factory": "./src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/convert-progress-indicator-wizard-to-tab-wizard.schematic",
|
|
32
|
+
"schema": "./src/schematics/ng-generate/convert-progress-indicator-wizard-to-tab-wizard/schema.json"
|
|
33
|
+
},
|
|
29
34
|
"remove-compat-stylesheets": {
|
|
30
35
|
"description": "Remove SKY UX compatibility stylesheets.",
|
|
31
36
|
"factory": "./src/schematics/ng-generate/remove-compat-stylesheets/remove-compat-stylesheets.schematic",
|
package/migrations.json
CHANGED
|
@@ -1,24 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schematics": {
|
|
3
3
|
"noop": {
|
|
4
|
-
"version": "13.0.0-alpha.
|
|
4
|
+
"version": "13.0.0-alpha.6",
|
|
5
5
|
"factory": "./src/schematics/migrations/noop/noop.schematic",
|
|
6
6
|
"description": "Update all SKY UX component packages"
|
|
7
7
|
},
|
|
8
8
|
"i18n-resources-module": {
|
|
9
|
-
"version": "13.0.0-alpha.
|
|
9
|
+
"version": "13.0.0-alpha.6",
|
|
10
10
|
"factory": "./src/schematics/migrations/update-13/i18n-resources-module/i18n-resources-module.schematic",
|
|
11
11
|
"description": "Regenerate i18n resources modules for libraries."
|
|
12
12
|
},
|
|
13
|
+
"icon-name": {
|
|
14
|
+
"version": "13.0.0-alpha.6",
|
|
15
|
+
"factory": "./src/schematics/migrations/update-13/icon-name/icon-name.schematic",
|
|
16
|
+
"description": "Update icon `icon` properties to `iconName`."
|
|
17
|
+
},
|
|
13
18
|
"remove-old-compat-stylesheets": {
|
|
14
|
-
"version": "13.0.0-alpha.
|
|
19
|
+
"version": "13.0.0-alpha.6",
|
|
15
20
|
"factory": "./src/schematics/migrations/update-13/remove-old-compat-stylesheets/remove-old-compat-stylesheets.schematic",
|
|
16
21
|
"description": "Remove backward compatible stylesheets for older versions of SKY UX."
|
|
17
22
|
},
|
|
18
23
|
"workspace-check": {
|
|
19
|
-
"version": "13.0.0-alpha.
|
|
24
|
+
"version": "13.0.0-alpha.6",
|
|
20
25
|
"factory": "./src/schematics/migrations/update-13/workspace-check/workspace-check.schematic",
|
|
21
26
|
"description": "Log warnings if the workspace is not configured correctly."
|
|
27
|
+
},
|
|
28
|
+
"replace-light-blue-custom-property": {
|
|
29
|
+
"version": "13.0.0-alpha.6",
|
|
30
|
+
"factory": "./src/schematics/migrations/update-13/replace-light-blue-custom-property/replace-light-blue-custom-property.schematic",
|
|
31
|
+
"description": "Replace --sky-category-color-light-blue custom property with --sky-category-color-green."
|
|
22
32
|
}
|
|
23
33
|
}
|
|
24
34
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/packages",
|
|
3
|
-
"version": "13.0.0-alpha.
|
|
3
|
+
"version": "13.0.0-alpha.6",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"description": "Handles the `ng update` command for SKY UX component libraries.",
|
|
6
6
|
"keywords": [
|
|
@@ -35,68 +35,68 @@
|
|
|
35
35
|
"ng-update": {
|
|
36
36
|
"migrations": "./migrations.json",
|
|
37
37
|
"packageGroup": {
|
|
38
|
-
"@skyux/packages": "13.0.0-alpha.
|
|
38
|
+
"@skyux/packages": "13.0.0-alpha.6",
|
|
39
39
|
"@blackbaud/angular-tree-component": "^1.0.0",
|
|
40
|
-
"@skyux-sdk/eslint-config": "13.0.0-alpha.
|
|
41
|
-
"@skyux-sdk/eslint-schematics": "13.0.0-alpha.
|
|
42
|
-
"@skyux-sdk/prettier-schematics": "13.0.0-alpha.
|
|
43
|
-
"@skyux-sdk/stylelint-schematics": "13.0.0-alpha.
|
|
44
|
-
"@skyux-sdk/testing": "13.0.0-alpha.
|
|
45
|
-
"@skyux/a11y": "13.0.0-alpha.
|
|
46
|
-
"@skyux/action-bars": "13.0.0-alpha.
|
|
47
|
-
"@skyux/ag-grid": "13.0.0-alpha.
|
|
48
|
-
"@skyux/angular-tree-component": "13.0.0-alpha.
|
|
49
|
-
"@skyux/animations": "13.0.0-alpha.
|
|
50
|
-
"@skyux/assets": "13.0.0-alpha.
|
|
51
|
-
"@skyux/autonumeric": "13.0.0-alpha.
|
|
52
|
-
"@skyux/avatar": "13.0.0-alpha.
|
|
53
|
-
"@skyux/code-examples": "13.0.0-alpha.
|
|
54
|
-
"@skyux/colorpicker": "13.0.0-alpha.
|
|
55
|
-
"@skyux/config": "13.0.0-alpha.
|
|
56
|
-
"@skyux/core": "13.0.0-alpha.
|
|
57
|
-
"@skyux/data-manager": "13.0.0-alpha.
|
|
58
|
-
"@skyux/datetime": "13.0.0-alpha.
|
|
59
|
-
"@skyux/docs-tools": "13.0.0-alpha.
|
|
60
|
-
"@skyux/errors": "13.0.0-alpha.
|
|
61
|
-
"@skyux/flyout": "13.0.0-alpha.
|
|
62
|
-
"@skyux/forms": "13.0.0-alpha.
|
|
63
|
-
"@skyux/grids": "13.0.0-alpha.
|
|
64
|
-
"@skyux/help-inline": "13.0.0-alpha.
|
|
65
|
-
"@skyux/i18n": "13.0.0-alpha.
|
|
66
|
-
"@skyux/icon": "13.0.0-alpha.
|
|
40
|
+
"@skyux-sdk/eslint-config": "13.0.0-alpha.6",
|
|
41
|
+
"@skyux-sdk/eslint-schematics": "13.0.0-alpha.6",
|
|
42
|
+
"@skyux-sdk/prettier-schematics": "13.0.0-alpha.6",
|
|
43
|
+
"@skyux-sdk/stylelint-schematics": "13.0.0-alpha.6",
|
|
44
|
+
"@skyux-sdk/testing": "13.0.0-alpha.6",
|
|
45
|
+
"@skyux/a11y": "13.0.0-alpha.6",
|
|
46
|
+
"@skyux/action-bars": "13.0.0-alpha.6",
|
|
47
|
+
"@skyux/ag-grid": "13.0.0-alpha.6",
|
|
48
|
+
"@skyux/angular-tree-component": "13.0.0-alpha.6",
|
|
49
|
+
"@skyux/animations": "13.0.0-alpha.6",
|
|
50
|
+
"@skyux/assets": "13.0.0-alpha.6",
|
|
51
|
+
"@skyux/autonumeric": "13.0.0-alpha.6",
|
|
52
|
+
"@skyux/avatar": "13.0.0-alpha.6",
|
|
53
|
+
"@skyux/code-examples": "13.0.0-alpha.6",
|
|
54
|
+
"@skyux/colorpicker": "13.0.0-alpha.6",
|
|
55
|
+
"@skyux/config": "13.0.0-alpha.6",
|
|
56
|
+
"@skyux/core": "13.0.0-alpha.6",
|
|
57
|
+
"@skyux/data-manager": "13.0.0-alpha.6",
|
|
58
|
+
"@skyux/datetime": "13.0.0-alpha.6",
|
|
59
|
+
"@skyux/docs-tools": "13.0.0-alpha.6",
|
|
60
|
+
"@skyux/errors": "13.0.0-alpha.6",
|
|
61
|
+
"@skyux/flyout": "13.0.0-alpha.6",
|
|
62
|
+
"@skyux/forms": "13.0.0-alpha.6",
|
|
63
|
+
"@skyux/grids": "13.0.0-alpha.6",
|
|
64
|
+
"@skyux/help-inline": "13.0.0-alpha.6",
|
|
65
|
+
"@skyux/i18n": "13.0.0-alpha.6",
|
|
66
|
+
"@skyux/icon": "13.0.0-alpha.6",
|
|
67
67
|
"@skyux/icons": "^9.0.0",
|
|
68
|
-
"@skyux/indicators": "13.0.0-alpha.
|
|
69
|
-
"@skyux/inline-form": "13.0.0-alpha.
|
|
70
|
-
"@skyux/layout": "13.0.0-alpha.
|
|
71
|
-
"@skyux/list-builder": "13.0.0-alpha.
|
|
72
|
-
"@skyux/list-builder-common": "13.0.0-alpha.
|
|
73
|
-
"@skyux/list-builder-view-checklist": "13.0.0-alpha.
|
|
74
|
-
"@skyux/list-builder-view-grids": "13.0.0-alpha.
|
|
75
|
-
"@skyux/lists": "13.0.0-alpha.
|
|
76
|
-
"@skyux/lookup": "13.0.0-alpha.
|
|
77
|
-
"@skyux/manifest": "13.0.0-alpha.
|
|
78
|
-
"@skyux/modals": "13.0.0-alpha.
|
|
79
|
-
"@skyux/navbar": "13.0.0-alpha.
|
|
80
|
-
"@skyux/pages": "13.0.0-alpha.
|
|
81
|
-
"@skyux/phone-field": "13.0.0-alpha.
|
|
82
|
-
"@skyux/popovers": "13.0.0-alpha.
|
|
83
|
-
"@skyux/progress-indicator": "13.0.0-alpha.
|
|
84
|
-
"@skyux/router": "13.0.0-alpha.
|
|
85
|
-
"@skyux/select-field": "13.0.0-alpha.
|
|
86
|
-
"@skyux/split-view": "13.0.0-alpha.
|
|
87
|
-
"@skyux/tabs": "13.0.0-alpha.
|
|
88
|
-
"@skyux/text-editor": "13.0.0-alpha.
|
|
89
|
-
"@skyux/theme": "13.0.0-alpha.
|
|
90
|
-
"@skyux/tiles": "13.0.0-alpha.
|
|
91
|
-
"@skyux/toast": "13.0.0-alpha.
|
|
92
|
-
"@skyux/validation": "13.0.0-alpha.
|
|
93
|
-
"ag-grid-angular": "^
|
|
94
|
-
"ag-grid-community": "^
|
|
95
|
-
"ag-grid-enterprise": "^
|
|
68
|
+
"@skyux/indicators": "13.0.0-alpha.6",
|
|
69
|
+
"@skyux/inline-form": "13.0.0-alpha.6",
|
|
70
|
+
"@skyux/layout": "13.0.0-alpha.6",
|
|
71
|
+
"@skyux/list-builder": "13.0.0-alpha.6",
|
|
72
|
+
"@skyux/list-builder-common": "13.0.0-alpha.6",
|
|
73
|
+
"@skyux/list-builder-view-checklist": "13.0.0-alpha.6",
|
|
74
|
+
"@skyux/list-builder-view-grids": "13.0.0-alpha.6",
|
|
75
|
+
"@skyux/lists": "13.0.0-alpha.6",
|
|
76
|
+
"@skyux/lookup": "13.0.0-alpha.6",
|
|
77
|
+
"@skyux/manifest": "13.0.0-alpha.6",
|
|
78
|
+
"@skyux/modals": "13.0.0-alpha.6",
|
|
79
|
+
"@skyux/navbar": "13.0.0-alpha.6",
|
|
80
|
+
"@skyux/pages": "13.0.0-alpha.6",
|
|
81
|
+
"@skyux/phone-field": "13.0.0-alpha.6",
|
|
82
|
+
"@skyux/popovers": "13.0.0-alpha.6",
|
|
83
|
+
"@skyux/progress-indicator": "13.0.0-alpha.6",
|
|
84
|
+
"@skyux/router": "13.0.0-alpha.6",
|
|
85
|
+
"@skyux/select-field": "13.0.0-alpha.6",
|
|
86
|
+
"@skyux/split-view": "13.0.0-alpha.6",
|
|
87
|
+
"@skyux/tabs": "13.0.0-alpha.6",
|
|
88
|
+
"@skyux/text-editor": "13.0.0-alpha.6",
|
|
89
|
+
"@skyux/theme": "13.0.0-alpha.6",
|
|
90
|
+
"@skyux/tiles": "13.0.0-alpha.6",
|
|
91
|
+
"@skyux/toast": "13.0.0-alpha.6",
|
|
92
|
+
"@skyux/validation": "13.0.0-alpha.6",
|
|
93
|
+
"ag-grid-angular": "^34.1.1",
|
|
94
|
+
"ag-grid-community": "^34.1.1",
|
|
95
|
+
"ag-grid-enterprise": "^34.1.1",
|
|
96
96
|
"autonumeric": "^4.10.8",
|
|
97
|
-
"eslint-config-skyux": "13.0.0-alpha.
|
|
98
|
-
"skyux-stylelint": "13.0.0-alpha.
|
|
99
|
-
"stylelint-config-skyux": "13.0.0-alpha.
|
|
97
|
+
"eslint-config-skyux": "13.0.0-alpha.6",
|
|
98
|
+
"skyux-stylelint": "13.0.0-alpha.6",
|
|
99
|
+
"stylelint-config-skyux": "13.0.0-alpha.6"
|
|
100
100
|
}
|
|
101
101
|
},
|
|
102
102
|
"peerDependencies": {
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Information about a legacy icon replacement
|
|
3
|
+
*/
|
|
4
|
+
export interface IconReplacement {
|
|
5
|
+
newName: string;
|
|
6
|
+
variant?: 'solid' | 'line';
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* A map of legacy icons to their replacements.
|
|
10
|
+
*/
|
|
11
|
+
export declare const IconNameMappings: Record<string, IconReplacement>;
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.IconNameMappings = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* A map of legacy icons to their replacements.
|
|
6
|
+
*/
|
|
7
|
+
exports.IconNameMappings = {
|
|
8
|
+
add: { newName: 'add' },
|
|
9
|
+
'address-book': { newName: 'book-contacts', variant: 'solid' },
|
|
10
|
+
'address-card': { newName: 'contact-card', variant: 'solid' },
|
|
11
|
+
'align-center': { newName: 'text-align-center' },
|
|
12
|
+
'align-left': { newName: 'text-align-left' },
|
|
13
|
+
'align-right': { newName: 'text-align-right' },
|
|
14
|
+
'angle-double-down': { newName: 'chevron-double-down' },
|
|
15
|
+
'angle-double-up': { newName: 'chevron-double-up' },
|
|
16
|
+
'angle-down': { newName: 'chevron-down' },
|
|
17
|
+
'angle-left': { newName: 'chevron-left' },
|
|
18
|
+
'angle-right': { newName: 'chevron-right' },
|
|
19
|
+
'angle-up': { newName: 'chevron-up' },
|
|
20
|
+
apple: { newName: 'apple' },
|
|
21
|
+
'arrow-circle-left': { newName: 'arrow-circle-left' },
|
|
22
|
+
'arrow-circle-right': { newName: 'arrow-circle-right' },
|
|
23
|
+
'arrow-down': { newName: 'arrow-down' },
|
|
24
|
+
'arrow-left': { newName: 'arrow-left' },
|
|
25
|
+
'arrow-right': { newName: 'arrow-right' },
|
|
26
|
+
arrows: { newName: 'arrow-move' },
|
|
27
|
+
'arrows-v': { newName: 'arrow-bidirectional-up-down' },
|
|
28
|
+
'arrow-up-right-dots': { newName: 'arrow-trending-lines' },
|
|
29
|
+
at: { newName: 'mention' },
|
|
30
|
+
ban: { newName: 'prohibited' },
|
|
31
|
+
'bar-chart': { newName: 'data-bar-vertical-ascending' },
|
|
32
|
+
bars: { newName: 'navigation' },
|
|
33
|
+
'bars-2': { newName: 'navigation' },
|
|
34
|
+
'bars-progress': { newName: 'data-bar-horizontal-descending' },
|
|
35
|
+
'bb-diamond-2': { newName: 'bb-diamond' },
|
|
36
|
+
'bb-diamond-2-solid': { newName: 'bb-diamond', variant: 'solid' },
|
|
37
|
+
bell: { newName: 'alert', variant: 'solid' },
|
|
38
|
+
binoculars: { newName: 'eye' },
|
|
39
|
+
'birthday-cake': { newName: 'food-cake', variant: 'solid' },
|
|
40
|
+
bold: { newName: 'text-bold' },
|
|
41
|
+
bolt: { newName: 'flash', variant: 'solid' },
|
|
42
|
+
book: { newName: 'book', variant: 'solid' },
|
|
43
|
+
bookmark: { newName: 'bookmark', variant: 'solid' },
|
|
44
|
+
building: { newName: 'building', variant: 'solid' },
|
|
45
|
+
'building-o': { newName: 'building' },
|
|
46
|
+
bullhorn: { newName: 'megaphone' },
|
|
47
|
+
bullseye: { newName: 'target' },
|
|
48
|
+
calculator: { newName: 'calculator' },
|
|
49
|
+
calendar: { newName: 'calendar-ltr' },
|
|
50
|
+
'caret-down': { newName: 'chevron-down', variant: 'solid' },
|
|
51
|
+
'caret-left': { newName: 'chevron-left' },
|
|
52
|
+
'caret-right': { newName: 'chevron-right', variant: 'solid' },
|
|
53
|
+
'caret-up': { newName: 'chevron-up' },
|
|
54
|
+
'cash-payment-bill-2': { newName: 'cash-payment-bill' },
|
|
55
|
+
'cash-register': { newName: 'money-hand' },
|
|
56
|
+
certificate: { newName: 'ribbon', variant: 'solid' },
|
|
57
|
+
'chalkboard-teacher': { newName: 'share-screen-person' },
|
|
58
|
+
'chart-bar': { newName: 'data-bar-horizontal' },
|
|
59
|
+
'chart-column': { newName: 'data-bar-vertical-ascending' },
|
|
60
|
+
'chart-gantt': { newName: 'gantt-chart' },
|
|
61
|
+
'chart-line': { newName: 'data-trending' },
|
|
62
|
+
'chart-pie': { newName: 'data-pie' },
|
|
63
|
+
'chart-simple': { newName: 'data-histogram' },
|
|
64
|
+
check: { newName: 'checkmark' },
|
|
65
|
+
'check-circle': { newName: 'success' },
|
|
66
|
+
'check-square': { newName: 'checkmark-square', variant: 'solid' },
|
|
67
|
+
'check-square-o': { newName: 'checkmark-square' },
|
|
68
|
+
chess: { newName: 'chess', variant: 'solid' },
|
|
69
|
+
'chevron-down': { newName: 'chevron-down' },
|
|
70
|
+
'chevron-left': { newName: 'chevron-left', variant: 'solid' },
|
|
71
|
+
'chevron-right': { newName: 'chevron-right', variant: 'solid' },
|
|
72
|
+
'chevron-up': { newName: 'chevron-up', variant: 'solid' },
|
|
73
|
+
circle: { newName: 'circle', variant: 'solid' },
|
|
74
|
+
'circle-o-notch': { newName: 'spinner-ios' },
|
|
75
|
+
clipboard: { newName: 'clipboard-multiple' },
|
|
76
|
+
'clipboard-check': { newName: 'clipboard-checkmark', variant: 'solid' },
|
|
77
|
+
'clipboard-list': { newName: 'clipboard-bullet-list' },
|
|
78
|
+
'clock-o': { newName: 'clock' },
|
|
79
|
+
clone: { newName: 'copy' },
|
|
80
|
+
close: { newName: 'close' },
|
|
81
|
+
cloud: { newName: 'cloud', variant: 'solid' },
|
|
82
|
+
'cloud-download': { newName: 'arrow-download' },
|
|
83
|
+
'cloud-upload': { newName: 'arrow-upload' },
|
|
84
|
+
code: { newName: 'code' },
|
|
85
|
+
'code-branch': { newName: 'branch-fork' },
|
|
86
|
+
'code-fork': { newName: 'branch-fork' },
|
|
87
|
+
cog: { newName: 'settings', variant: 'solid' },
|
|
88
|
+
'cog-2': { newName: 'settings' },
|
|
89
|
+
cogs: { newName: 'settings-cog-multiple' },
|
|
90
|
+
columns: { newName: 'layout-column-three' },
|
|
91
|
+
comment: { newName: 'chat-empty', variant: 'solid' },
|
|
92
|
+
'comment-o': { newName: 'chat-empty' },
|
|
93
|
+
comments: { newName: 'chat-multiple', variant: 'solid' },
|
|
94
|
+
'comments-o': { newName: 'chat-multiple' },
|
|
95
|
+
compass: { newName: 'compass-northwest' },
|
|
96
|
+
copy: { newName: 'copy' },
|
|
97
|
+
'copy-to-clipboard': { newName: 'clipboard-multiple' },
|
|
98
|
+
'credit-card': { newName: 'payment', variant: 'solid' },
|
|
99
|
+
crop: { newName: 'crop' },
|
|
100
|
+
cubes: { newName: 'cube-multiple' },
|
|
101
|
+
cutlery: { newName: 'food', variant: 'solid' },
|
|
102
|
+
dashboard: { newName: 'top-speed' },
|
|
103
|
+
database: { newName: 'database-stack' },
|
|
104
|
+
'database-2': { newName: 'database-stack' },
|
|
105
|
+
desktop: { newName: 'desktop' },
|
|
106
|
+
'diagram-predecessor': { newName: 'text-arrow-down-right-column' },
|
|
107
|
+
'divider-line': { newName: 'insert' },
|
|
108
|
+
'doc-file': { newName: 'document-doc' },
|
|
109
|
+
dollar: { newName: 'dollar' },
|
|
110
|
+
'double-chevron-down': { newName: 'chevron-double-down' },
|
|
111
|
+
'double-chevron-left': { newName: 'chevron-double-left', variant: 'solid' },
|
|
112
|
+
'double-chevron-right': { newName: 'chevron-double-right' },
|
|
113
|
+
'double-chevron-up': { newName: 'chevron-double-up' },
|
|
114
|
+
download: { newName: 'arrow-download' },
|
|
115
|
+
edit: { newName: 'edit' },
|
|
116
|
+
ellipsis: { newName: 'more-actions' },
|
|
117
|
+
'ellipsis-h': { newName: 'more-actions' },
|
|
118
|
+
'ellipsis-v': { newName: 'more-vertical' },
|
|
119
|
+
envelope: { newName: 'mail' },
|
|
120
|
+
'envelope-o': { newName: 'mail' },
|
|
121
|
+
eraser: { newName: 'eraser', variant: 'solid' },
|
|
122
|
+
'exclamation-circle': { newName: 'error-circle' },
|
|
123
|
+
'exclamation-triangle': { newName: 'warning' },
|
|
124
|
+
expand: { newName: 'arrow-maximize' },
|
|
125
|
+
'external-link': { newName: 'open' },
|
|
126
|
+
'external-link-alt': { newName: 'open' },
|
|
127
|
+
eye: { newName: 'eye' },
|
|
128
|
+
f: { newName: 'letter-f' },
|
|
129
|
+
facebook: { newName: 'facebook' },
|
|
130
|
+
'fas fa-plus-circle': { newName: 'add' },
|
|
131
|
+
'fa-solid fa-map-pin': { newName: 'location', variant: 'solid' },
|
|
132
|
+
'feather-alt': { newName: 'bookmark', variant: 'solid' },
|
|
133
|
+
file: { newName: 'document' },
|
|
134
|
+
'file-alt': { newName: 'document-text', variant: 'solid' },
|
|
135
|
+
'file-code': { newName: 'document-chevron-double' },
|
|
136
|
+
'file-code-o': { newName: 'document-chevron-double' },
|
|
137
|
+
'file-contract': { newName: 'document-contract' },
|
|
138
|
+
'file-excel-o': { newName: 'document-xls' },
|
|
139
|
+
'file-image-o': { newName: 'document-image' },
|
|
140
|
+
'file-invoice': { newName: 'document-table' },
|
|
141
|
+
'file-o': { newName: 'document' },
|
|
142
|
+
'file-pdf-o': { newName: 'document-pdf' },
|
|
143
|
+
'files-o': { newName: 'document-multiple' },
|
|
144
|
+
'file-text-o': { newName: 'document-text' },
|
|
145
|
+
filter: { newName: 'filter' },
|
|
146
|
+
flag: { newName: 'flag', variant: 'solid' },
|
|
147
|
+
'folder-open-o': { newName: 'folder-open' },
|
|
148
|
+
gavel: { newName: 'gavel', variant: 'solid' },
|
|
149
|
+
gear: { newName: 'settings', variant: 'solid' },
|
|
150
|
+
gift: { newName: 'gift', variant: 'solid' },
|
|
151
|
+
git: { newName: 'git' },
|
|
152
|
+
github: { newName: 'github' },
|
|
153
|
+
'git-square': { newName: 'git' },
|
|
154
|
+
globe: { newName: 'globe' },
|
|
155
|
+
google: { newName: 'google' },
|
|
156
|
+
'graduation-cap': { newName: 'hat-graduation', variant: 'solid' },
|
|
157
|
+
group: { newName: 'people-team' },
|
|
158
|
+
'hammer-wrench-2': { newName: 'wrench-screwdriver' },
|
|
159
|
+
'hand-paper-o': { newName: 'hand-left' },
|
|
160
|
+
handshake: { newName: 'handshake', variant: 'solid' },
|
|
161
|
+
'handshake-o': { newName: 'handshake' },
|
|
162
|
+
'hands-helping': { newName: 'handshake', variant: 'solid' },
|
|
163
|
+
help: { newName: 'question-circle' },
|
|
164
|
+
hide: { newName: 'eye-off' },
|
|
165
|
+
history: { newName: 'history' },
|
|
166
|
+
'hourglass-start': { newName: 'hourglass-half' },
|
|
167
|
+
'id-card': { newName: 'contact-card', variant: 'solid' },
|
|
168
|
+
image: { newName: 'image' },
|
|
169
|
+
images: { newName: 'image-multiple', variant: 'solid' },
|
|
170
|
+
inbox: { newName: 'mail-inbox', variant: 'solid' },
|
|
171
|
+
info: { newName: 'info' },
|
|
172
|
+
'info-circle': { newName: 'info', variant: 'solid' },
|
|
173
|
+
'info-circle info-circle-icon': { newName: 'info' },
|
|
174
|
+
institution: { newName: 'building-bank', variant: 'solid' },
|
|
175
|
+
italic: { newName: 'text-italic' },
|
|
176
|
+
key: { newName: 'key', variant: 'solid' },
|
|
177
|
+
'keyboard-o': { newName: 'keyboard' },
|
|
178
|
+
laptop: { newName: 'laptop' },
|
|
179
|
+
'laptop-code': { newName: 'code' },
|
|
180
|
+
'life-ring': { newName: 'person-support' },
|
|
181
|
+
lightbulb: { newName: 'lightbulb', variant: 'solid' },
|
|
182
|
+
'lightbulb-o': { newName: 'lightbulb' },
|
|
183
|
+
'line-chart': { newName: 'data-trending' },
|
|
184
|
+
link: { newName: 'link' },
|
|
185
|
+
linkedin: { newName: 'linkedin' },
|
|
186
|
+
list: { newName: 'text-bullet-list' },
|
|
187
|
+
'list-check': { newName: 'task-list-ltr' },
|
|
188
|
+
'list-ol': { newName: 'text-number-list-ltr' },
|
|
189
|
+
'list-ul': { newName: 'text-bullet-list-ltr' },
|
|
190
|
+
lock: { newName: 'lock-closed' },
|
|
191
|
+
'lock-2': { newName: 'lock-closed' },
|
|
192
|
+
'long-arrow-down': { newName: 'arrow-down' },
|
|
193
|
+
'long-arrow-up': { newName: 'arrow-up' },
|
|
194
|
+
m: { newName: 'letter-m' },
|
|
195
|
+
magic: { newName: 'wand' },
|
|
196
|
+
map: { newName: 'map', variant: 'solid' },
|
|
197
|
+
'map-marker': { newName: 'location', variant: 'solid' },
|
|
198
|
+
'map-o': { newName: 'map' },
|
|
199
|
+
'map-signs': { newName: 'street-sign', variant: 'solid' },
|
|
200
|
+
microphone: { newName: 'mic', variant: 'solid' },
|
|
201
|
+
minus: { newName: 'subtract' },
|
|
202
|
+
'minus-circle': { newName: 'subtract-circle' },
|
|
203
|
+
mobile: { newName: 'phone' },
|
|
204
|
+
money: { newName: 'money' },
|
|
205
|
+
'newspaper-o': { newName: 'news' },
|
|
206
|
+
'object-group': { newName: 'group' },
|
|
207
|
+
'open-new-tab': { newName: 'open' },
|
|
208
|
+
'open-new-tab-line': { newName: 'open' },
|
|
209
|
+
paintbrush: { newName: 'paint-brush', variant: 'solid' },
|
|
210
|
+
paperclip: { newName: 'attach' },
|
|
211
|
+
'paper-plane': { newName: 'send', variant: 'solid' },
|
|
212
|
+
'pdf-file': { newName: 'document-pdf' },
|
|
213
|
+
pencil: { newName: 'edit' },
|
|
214
|
+
'pencil-alt': { newName: 'edit' },
|
|
215
|
+
'pencil-square-o': { newName: 'note-edit' },
|
|
216
|
+
'pen-to-square': { newName: 'window-edit' },
|
|
217
|
+
'people-group': { newName: 'people-team', variant: 'solid' },
|
|
218
|
+
phone: { newName: 'call' },
|
|
219
|
+
'phone-square': { newName: 'call' },
|
|
220
|
+
'pie-chart': { newName: 'data-pie', variant: 'solid' },
|
|
221
|
+
play: { newName: 'play', variant: 'solid' },
|
|
222
|
+
'play-circle': { newName: 'play-circle', variant: 'solid' },
|
|
223
|
+
plug: { newName: 'plug-disconnected' },
|
|
224
|
+
plus: { newName: 'add' },
|
|
225
|
+
'plus-circle': { newName: 'add' },
|
|
226
|
+
'plus-square': { newName: 'add-square', variant: 'solid' },
|
|
227
|
+
'power-off': { newName: 'power' },
|
|
228
|
+
print: { newName: 'print' },
|
|
229
|
+
printer: { newName: 'print' },
|
|
230
|
+
'puzzle-piece': { newName: 'puzzle-piece', variant: 'solid' },
|
|
231
|
+
question: { newName: 'question' },
|
|
232
|
+
'question-circle': { newName: 'question-circle', variant: 'solid' },
|
|
233
|
+
'question-circle-o': { newName: 'question-circle' },
|
|
234
|
+
recycle: { newName: 'recycle' },
|
|
235
|
+
redo: { newName: 'arrow-redo' },
|
|
236
|
+
refresh: { newName: 'arrow-clockwise' },
|
|
237
|
+
road: { newName: 'road' },
|
|
238
|
+
robot: { newName: 'bot', variant: 'solid' },
|
|
239
|
+
rocket: { newName: 'rocket', variant: 'solid' },
|
|
240
|
+
s: { newName: 'letter-s' },
|
|
241
|
+
save: { newName: 'save' },
|
|
242
|
+
search: { newName: 'search' },
|
|
243
|
+
send: { newName: 'send', variant: 'solid' },
|
|
244
|
+
server: { newName: 'server' },
|
|
245
|
+
settings: { newName: 'settings' },
|
|
246
|
+
shapes: { newName: 'shapes', variant: 'solid' },
|
|
247
|
+
share: { newName: 'share' },
|
|
248
|
+
'share-alt': { newName: 'share-android' },
|
|
249
|
+
'share-square-o': { newName: 'share' },
|
|
250
|
+
shield: { newName: 'shield', variant: 'solid' },
|
|
251
|
+
'shield-alt': { newName: 'shield' },
|
|
252
|
+
'shield-virus': { newName: 'shield-keyhole' },
|
|
253
|
+
show: { newName: 'eye' },
|
|
254
|
+
'sign-in': { newName: 'arrow-enter' },
|
|
255
|
+
'sign-in-alt': { newName: 'arrow-enter' },
|
|
256
|
+
sitemap: { newName: 'cube-tree' },
|
|
257
|
+
slack: { newName: 'slack' },
|
|
258
|
+
sliders: { newName: 'options' },
|
|
259
|
+
sort: { newName: 'arrow-sort' },
|
|
260
|
+
'sparkles-2': { newName: 'sparkles' },
|
|
261
|
+
spinner: { newName: 'spinner-ios' },
|
|
262
|
+
'square-o': { newName: 'square' },
|
|
263
|
+
star: { newName: 'star' },
|
|
264
|
+
'sticky-note': { newName: 'note', variant: 'solid' },
|
|
265
|
+
'sticky-note-o': { newName: 'note' },
|
|
266
|
+
stop: { newName: 'stop', variant: 'solid' },
|
|
267
|
+
sync: { newName: 'arrow-sync' },
|
|
268
|
+
t: { newName: 'letter-t' },
|
|
269
|
+
table: { newName: 'table' },
|
|
270
|
+
tablet: { newName: 'tablet' },
|
|
271
|
+
'tachometer-alt': { newName: 'top-speed' },
|
|
272
|
+
tag: { newName: 'tag' },
|
|
273
|
+
tags: { newName: 'tag-multiple' },
|
|
274
|
+
tasks: { newName: 'task-list-ltr' },
|
|
275
|
+
th: { newName: 're-order-dots-vertical' },
|
|
276
|
+
'thermometer-half': { newName: 'temperature' },
|
|
277
|
+
'th-large': { newName: 'grid' },
|
|
278
|
+
'thumbs-o-down': { newName: 'thumb-dislike' },
|
|
279
|
+
'thumbs-o-up': { newName: 'thumb-like' },
|
|
280
|
+
'thumbs-up': { newName: 'thumb-like' },
|
|
281
|
+
ticket: { newName: 'ticket-diagonal', variant: 'solid' },
|
|
282
|
+
'tile-drag': { newName: 're-order-dots-vertical' },
|
|
283
|
+
times: { newName: 'close', variant: 'solid' },
|
|
284
|
+
'times-circle': { newName: 'dismiss-circle' },
|
|
285
|
+
toolbox: { newName: 'toolbox' },
|
|
286
|
+
tools: { newName: 'wrench-screwdriver' },
|
|
287
|
+
train: { newName: 'vehicle-subway' },
|
|
288
|
+
trash: { newName: 'delete' },
|
|
289
|
+
'trash-o': { newName: 'delete' },
|
|
290
|
+
truck: { newName: 'vehicle-truck-profile', variant: 'solid' },
|
|
291
|
+
twitter: { newName: 'twitter' },
|
|
292
|
+
underline: { newName: 'text-underline' },
|
|
293
|
+
'universal-access': { newName: 'accessibility' },
|
|
294
|
+
university: { newName: 'building-bank' },
|
|
295
|
+
'unlock-alt': { newName: 'lock-open', variant: 'solid' },
|
|
296
|
+
upload: { newName: 'arrow-upload' },
|
|
297
|
+
usd: { newName: 'dollar' },
|
|
298
|
+
user: { newName: 'person' },
|
|
299
|
+
'user-check': { newName: 'person-available' },
|
|
300
|
+
'user-circle': { newName: 'person-circle', variant: 'solid' },
|
|
301
|
+
'user-lock': { newName: 'person-lock', variant: 'solid' },
|
|
302
|
+
'user-o': { newName: 'person' },
|
|
303
|
+
'user-plus': { newName: 'person-add', variant: 'solid' },
|
|
304
|
+
users: { newName: 'people-team' },
|
|
305
|
+
'user-tag': { newName: 'person-tag', variant: 'solid' },
|
|
306
|
+
video: { newName: 'video', variant: 'solid' },
|
|
307
|
+
'volume-off': { newName: 'speaker-mute', variant: 'solid' },
|
|
308
|
+
w: { newName: 'letter-w' },
|
|
309
|
+
wallet: { newName: 'wallet', variant: 'solid' },
|
|
310
|
+
'wand-sparkles': { newName: 'wand' },
|
|
311
|
+
warehouse: { newName: 'building-factory' },
|
|
312
|
+
warning: { newName: 'warning' },
|
|
313
|
+
'window-close': { newName: 'dismiss-square', variant: 'solid' },
|
|
314
|
+
windows: { newName: 'windows' },
|
|
315
|
+
wrench: { newName: 'wrench', variant: 'solid' },
|
|
316
|
+
'xls-file': { newName: 'document-xls' },
|
|
317
|
+
youtube: { newName: 'youtube' },
|
|
318
|
+
};
|
|
319
|
+
//# sourceMappingURL=icon-name-mappings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-name-mappings.js","sourceRoot":"","sources":["../../../../../../../../../libs/components/packages/src/schematics/migrations/update-13/icon-name/icon-name-mappings.ts"],"names":[],"mappings":";;;AAQA;;GAEG;AACU,QAAA,gBAAgB,GAAoC;IAC/D,GAAG,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IACvB,cAAc,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,EAAE;IAC9D,cAAc,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7D,cAAc,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IAChD,YAAY,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE;IAC5C,aAAa,EAAE,EAAE,OAAO,EAAE,kBAAkB,EAAE;IAC9C,mBAAmB,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE;IACvD,iBAAiB,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IACnD,YAAY,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACzC,YAAY,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACzC,aAAa,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAC3C,UAAU,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACrC,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,mBAAmB,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IACrD,oBAAoB,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE;IACvD,YAAY,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACvC,YAAY,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACvC,aAAa,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACzC,MAAM,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACjC,UAAU,EAAE,EAAE,OAAO,EAAE,6BAA6B,EAAE;IACtD,qBAAqB,EAAE,EAAE,OAAO,EAAE,sBAAsB,EAAE;IAC1D,EAAE,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC1B,GAAG,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IAC9B,WAAW,EAAE,EAAE,OAAO,EAAE,6BAA6B,EAAE;IACvD,IAAI,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IAC/B,QAAQ,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACnC,eAAe,EAAE,EAAE,OAAO,EAAE,gCAAgC,EAAE;IAC9D,cAAc,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACzC,oBAAoB,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE;IACjE,IAAI,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE;IAC5C,UAAU,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IAC9B,eAAe,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3D,IAAI,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IAC9B,IAAI,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE;IAC5C,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3C,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;IACnD,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;IACnD,YAAY,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACrC,QAAQ,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IAClC,QAAQ,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC/B,UAAU,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACrC,QAAQ,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACrC,YAAY,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3D,YAAY,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACzC,aAAa,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7D,UAAU,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACrC,qBAAqB,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IACvD,eAAe,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IAC1C,WAAW,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE;IACpD,oBAAoB,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE;IACxD,WAAW,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE;IAC/C,cAAc,EAAE,EAAE,OAAO,EAAE,6BAA6B,EAAE;IAC1D,aAAa,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACzC,YAAY,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAC1C,WAAW,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACpC,cAAc,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAC7C,KAAK,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IAC/B,cAAc,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IACtC,cAAc,EAAE,EAAE,OAAO,EAAE,kBAAkB,EAAE,OAAO,EAAE,OAAO,EAAE;IACjE,gBAAgB,EAAE,EAAE,OAAO,EAAE,kBAAkB,EAAE;IACjD,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7C,cAAc,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IAC3C,cAAc,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7D,eAAe,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/D,YAAY,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE;IACzD,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/C,gBAAgB,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IAC5C,SAAS,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE;IAC5C,iBAAiB,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE,OAAO,EAAE,OAAO,EAAE;IACvE,gBAAgB,EAAE,EAAE,OAAO,EAAE,uBAAuB,EAAE;IACtD,SAAS,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/B,KAAK,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IAC1B,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7C,gBAAgB,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAC/C,cAAc,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IAC3C,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,aAAa,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACzC,WAAW,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACvC,GAAG,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;IAC9C,OAAO,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IAChC,IAAI,EAAE,EAAE,OAAO,EAAE,uBAAuB,EAAE;IAC1C,OAAO,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE;IAC3C,OAAO,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE;IACpD,WAAW,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACtC,QAAQ,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,EAAE;IACxD,YAAY,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAC1C,OAAO,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IACzC,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,mBAAmB,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE;IACtD,aAAa,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE,OAAO,EAAE,OAAO,EAAE;IACvD,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,KAAK,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IACnC,OAAO,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IAC9C,SAAS,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IACnC,QAAQ,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IACvC,YAAY,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAC3C,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC/B,qBAAqB,EAAE,EAAE,OAAO,EAAE,8BAA8B,EAAE;IAClE,cAAc,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IACrC,UAAU,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACvC,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC7B,qBAAqB,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE;IACzD,qBAAqB,EAAE,EAAE,OAAO,EAAE,qBAAqB,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3E,sBAAsB,EAAE,EAAE,OAAO,EAAE,sBAAsB,EAAE;IAC3D,mBAAmB,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IACrD,QAAQ,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IACvC,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,QAAQ,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACrC,YAAY,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACzC,YAAY,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAC1C,QAAQ,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IAC7B,YAAY,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACjC,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/C,oBAAoB,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACjD,sBAAsB,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC9C,MAAM,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IACrC,eAAe,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACpC,mBAAmB,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACxC,GAAG,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IACvB,CAAC,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IAC1B,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACjC,oBAAoB,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IACxC,qBAAqB,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;IAChE,aAAa,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;IACxD,IAAI,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IAC7B,UAAU,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,EAAE;IAC1D,WAAW,EAAE,EAAE,OAAO,EAAE,yBAAyB,EAAE;IACnD,aAAa,EAAE,EAAE,OAAO,EAAE,yBAAyB,EAAE;IACrD,eAAe,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IACjD,cAAc,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IAC3C,cAAc,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAC7C,cAAc,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAC7C,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACjC,YAAY,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACzC,SAAS,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IAC3C,aAAa,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAC3C,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC7B,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3C,eAAe,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IAC3C,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7C,IAAI,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/C,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3C,GAAG,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IACvB,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC7B,YAAY,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IAChC,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC7B,gBAAgB,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE,OAAO,EAAE,OAAO,EAAE;IACjE,KAAK,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACjC,iBAAiB,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE;IACpD,cAAc,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IACxC,SAAS,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,EAAE;IACrD,aAAa,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IACvC,eAAe,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3D,IAAI,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE;IACpC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC5B,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC/B,iBAAiB,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAChD,SAAS,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE;IACxD,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,MAAM,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE,OAAO,EAAE,OAAO,EAAE;IACvD,KAAK,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE;IAClD,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,aAAa,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IACpD,8BAA8B,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACnD,WAAW,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3D,MAAM,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IAClC,GAAG,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE;IACzC,YAAY,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACrC,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC7B,aAAa,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IAClC,WAAW,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAC1C,SAAS,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,EAAE;IACrD,aAAa,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IACvC,YAAY,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAC1C,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACjC,IAAI,EAAE,EAAE,OAAO,EAAE,kBAAkB,EAAE;IACrC,YAAY,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAC1C,SAAS,EAAE,EAAE,OAAO,EAAE,sBAAsB,EAAE;IAC9C,SAAS,EAAE,EAAE,OAAO,EAAE,sBAAsB,EAAE;IAC9C,IAAI,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IAChC,QAAQ,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACpC,iBAAiB,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IAC5C,eAAe,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACxC,CAAC,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IAC1B,KAAK,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IAC1B,GAAG,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE;IACzC,YAAY,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;IACvD,OAAO,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IAC3B,WAAW,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,OAAO,EAAE,OAAO,EAAE;IACzD,UAAU,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE;IAChD,KAAK,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IAC9B,cAAc,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE;IAC9C,MAAM,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC5B,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,aAAa,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IAClC,cAAc,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IACpC,cAAc,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACnC,mBAAmB,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACxC,UAAU,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,OAAO,EAAE,OAAO,EAAE;IACxD,SAAS,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAChC,aAAa,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IACpD,UAAU,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACvC,MAAM,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IAC3B,YAAY,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACjC,iBAAiB,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IAC3C,eAAe,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IAC3C,cAAc,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,OAAO,EAAE,OAAO,EAAE;IAC5D,KAAK,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IAC1B,cAAc,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACnC,WAAW,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;IACtD,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3C,aAAa,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3D,IAAI,EAAE,EAAE,OAAO,EAAE,mBAAmB,EAAE;IACtC,IAAI,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IACxB,aAAa,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IACjC,aAAa,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE;IAC1D,WAAW,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IACjC,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,OAAO,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7B,cAAc,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7D,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACjC,iBAAiB,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE,OAAO,EAAE,OAAO,EAAE;IACnE,mBAAmB,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE;IACnD,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC/B,IAAI,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IAC/B,OAAO,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE;IACvC,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,KAAK,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3C,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/C,CAAC,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IAC1B,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC7B,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3C,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC7B,QAAQ,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACjC,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/C,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,WAAW,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IACzC,gBAAgB,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IACtC,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/C,YAAY,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IACnC,cAAc,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAC7C,IAAI,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IACxB,SAAS,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACrC,aAAa,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACzC,OAAO,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IACjC,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC/B,IAAI,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IAC/B,YAAY,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IACrC,OAAO,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACnC,UAAU,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IACjC,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACzB,aAAa,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IACpD,eAAe,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACpC,IAAI,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3C,IAAI,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IAC/B,CAAC,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IAC1B,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3B,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC7B,gBAAgB,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE;IAC1C,GAAG,EAAE,EAAE,OAAO,EAAE,KAAK,EAAE;IACvB,IAAI,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACjC,KAAK,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IACnC,EAAE,EAAE,EAAE,OAAO,EAAE,wBAAwB,EAAE;IACzC,kBAAkB,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IAC9C,UAAU,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IAC/B,eAAe,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAC7C,aAAa,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACxC,WAAW,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE;IACtC,MAAM,EAAE,EAAE,OAAO,EAAE,iBAAiB,EAAE,OAAO,EAAE,OAAO,EAAE;IACxD,WAAW,EAAE,EAAE,OAAO,EAAE,wBAAwB,EAAE;IAClD,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7C,cAAc,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IAC7C,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC/B,KAAK,EAAE,EAAE,OAAO,EAAE,oBAAoB,EAAE;IACxC,KAAK,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IACpC,KAAK,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC5B,SAAS,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAChC,KAAK,EAAE,EAAE,OAAO,EAAE,uBAAuB,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7D,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC/B,SAAS,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE;IACxC,kBAAkB,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IAChD,UAAU,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE;IACxC,YAAY,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,EAAE;IACxD,MAAM,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACnC,GAAG,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC1B,IAAI,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC3B,YAAY,EAAE,EAAE,OAAO,EAAE,kBAAkB,EAAE;IAC7C,aAAa,EAAE,EAAE,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7D,WAAW,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE,OAAO,EAAE,OAAO,EAAE;IACzD,QAAQ,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;IAC/B,WAAW,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE;IACxD,KAAK,EAAE,EAAE,OAAO,EAAE,aAAa,EAAE;IACjC,UAAU,EAAE,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE;IACvD,KAAK,EAAE,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE;IAC7C,YAAY,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE,OAAO,EAAE,OAAO,EAAE;IAC3D,CAAC,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE;IAC1B,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/C,eAAe,EAAE,EAAE,OAAO,EAAE,MAAM,EAAE;IACpC,SAAS,EAAE,EAAE,OAAO,EAAE,kBAAkB,EAAE;IAC1C,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC/B,cAAc,EAAE,EAAE,OAAO,EAAE,gBAAgB,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/D,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;IAC/B,MAAM,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,EAAE;IAC/C,UAAU,EAAE,EAAE,OAAO,EAAE,cAAc,EAAE;IACvC,OAAO,EAAE,EAAE,OAAO,EAAE,SAAS,EAAE;CAChC,CAAC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = default_1;
|
|
4
|
+
const workspace_1 = require("@schematics/angular/utility/workspace");
|
|
5
|
+
const visit_project_files_1 = require("../../../utility/visit-project-files");
|
|
6
|
+
const icon_name_mappings_1 = require("./icon-name-mappings");
|
|
7
|
+
const COMPONENTS_WITH_ICON = [
|
|
8
|
+
{
|
|
9
|
+
selector: 'sky-icon',
|
|
10
|
+
inputName: 'icon',
|
|
11
|
+
honorReplacementVariant: true,
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
selector: 'sky-action-button-icon',
|
|
15
|
+
inputName: 'iconType',
|
|
16
|
+
honorReplacementVariant: false,
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
selector: 'sky-radio',
|
|
20
|
+
inputName: 'icon',
|
|
21
|
+
honorReplacementVariant: false,
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
selector: 'sky-checkbox',
|
|
25
|
+
inputName: 'icon',
|
|
26
|
+
honorReplacementVariant: false,
|
|
27
|
+
},
|
|
28
|
+
];
|
|
29
|
+
function updateIcon(html, componentInfo) {
|
|
30
|
+
const regex = new RegExp(`<${componentInfo.selector}[^>]*(?<propertyAndValue> ${componentInfo.inputName}="(?<iconValue>[^"]+)")[^>]*>`, 'g');
|
|
31
|
+
return html.replaceAll(regex, (currentString, propertyAndValue, iconValue) => {
|
|
32
|
+
const iconReplacementInfo = icon_name_mappings_1.IconNameMappings[iconValue];
|
|
33
|
+
if (!iconReplacementInfo) {
|
|
34
|
+
return currentString;
|
|
35
|
+
}
|
|
36
|
+
return currentString.replace(propertyAndValue, ` iconName="${iconReplacementInfo.newName}"` +
|
|
37
|
+
(componentInfo.honorReplacementVariant &&
|
|
38
|
+
iconReplacementInfo.variant &&
|
|
39
|
+
!currentString.includes('variant=') &&
|
|
40
|
+
!currentString.includes('[variant]=')
|
|
41
|
+
? ` variant="${iconReplacementInfo.variant}"`
|
|
42
|
+
: ''));
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
async function updateSourceFiles(tree) {
|
|
46
|
+
const workspace = await (0, workspace_1.getWorkspace)(tree);
|
|
47
|
+
workspace.projects.forEach((project) => {
|
|
48
|
+
(0, visit_project_files_1.visitProjectFiles)(tree, project.sourceRoot || project.root, (filePath) => {
|
|
49
|
+
if (filePath.endsWith('.html') || filePath.endsWith('.ts')) {
|
|
50
|
+
const content = tree.readText(filePath);
|
|
51
|
+
let updatedContent = content;
|
|
52
|
+
COMPONENTS_WITH_ICON.forEach((componentInfo) => {
|
|
53
|
+
updatedContent = updateIcon(updatedContent, componentInfo);
|
|
54
|
+
});
|
|
55
|
+
if (updatedContent !== content) {
|
|
56
|
+
tree.overwrite(filePath, updatedContent);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
});
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Rename tabIndex inputs on sky-tab to tabIndexValue.
|
|
64
|
+
*/
|
|
65
|
+
function default_1() {
|
|
66
|
+
return async (tree) => {
|
|
67
|
+
await updateSourceFiles(tree);
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
//# sourceMappingURL=icon-name.schematic.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-name.schematic.js","sourceRoot":"","sources":["../../../../../../../../../libs/components/packages/src/schematics/migrations/update-13/icon-name/icon-name.schematic.ts"],"names":[],"mappings":";;AA0FA,4BAIC;AA7FD,qEAAqE;AAErE,8EAAyE;AAEzE,6DAAwD;AAExD,MAAM,oBAAoB,GAIpB;IACJ;QACE,QAAQ,EAAE,UAAU;QACpB,SAAS,EAAE,MAAM;QACjB,uBAAuB,EAAE,IAAI;KAC9B;IACD;QACE,QAAQ,EAAE,wBAAwB;QAClC,SAAS,EAAE,UAAU;QACrB,uBAAuB,EAAE,KAAK;KAC/B;IACD;QACE,QAAQ,EAAE,WAAW;QACrB,SAAS,EAAE,MAAM;QACjB,uBAAuB,EAAE,KAAK;KAC/B;IACD;QACE,QAAQ,EAAE,cAAc;QACxB,SAAS,EAAE,MAAM;QACjB,uBAAuB,EAAE,KAAK;KAC/B;CACF,CAAC;AAEF,SAAS,UAAU,CACjB,IAAY,EACZ,aAIC;IAED,MAAM,KAAK,GAAG,IAAI,MAAM,CACtB,IAAI,aAAa,CAAC,QAAQ,6BAA6B,aAAa,CAAC,SAAS,+BAA+B,EAC7G,GAAG,CACJ,CAAC;IACF,OAAO,IAAI,CAAC,UAAU,CACpB,KAAK,EACL,CAAC,aAAa,EAAE,gBAAgB,EAAE,SAAS,EAAE,EAAE;QAC7C,MAAM,mBAAmB,GAAG,qCAAgB,CAAC,SAAS,CAAC,CAAC;QACxD,IAAI,CAAC,mBAAmB,EAAE,CAAC;YACzB,OAAO,aAAa,CAAC;QACvB,CAAC;QACD,OAAO,aAAa,CAAC,OAAO,CAC1B,gBAAgB,EAChB,cAAc,mBAAmB,CAAC,OAAO,GAAG;YAC1C,CAAC,aAAa,CAAC,uBAAuB;gBACtC,mBAAmB,CAAC,OAAO;gBAC3B,CAAC,aAAa,CAAC,QAAQ,CAAC,UAAU,CAAC;gBACnC,CAAC,aAAa,CAAC,QAAQ,CAAC,YAAY,CAAC;gBACnC,CAAC,CAAC,aAAa,mBAAmB,CAAC,OAAO,GAAG;gBAC7C,CAAC,CAAC,EAAE,CAAC,CACV,CAAC;IACJ,CAAC,CACF,CAAC;AACJ,CAAC;AAED,KAAK,UAAU,iBAAiB,CAAC,IAAU;IACzC,MAAM,SAAS,GAAG,MAAM,IAAA,wBAAY,EAAC,IAAI,CAAC,CAAC;IAE3C,SAAS,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;QACrC,IAAA,uCAAiB,EAAC,IAAI,EAAE,OAAO,CAAC,UAAU,IAAI,OAAO,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,EAAE;YACvE,IAAI,QAAQ,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE,CAAC;gBAC3D,MAAM,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;gBACxC,IAAI,cAAc,GAAG,OAAO,CAAC;gBAE7B,oBAAoB,CAAC,OAAO,CAAC,CAAC,aAAa,EAAE,EAAE;oBAC7C,cAAc,GAAG,UAAU,CAAC,cAAc,EAAE,aAAa,CAAC,CAAC;gBAC7D,CAAC,CAAC,CAAC;gBACH,IAAI,cAAc,KAAK,OAAO,EAAE,CAAC;oBAC/B,IAAI,CAAC,SAAS,CAAC,QAAQ,EAAE,cAAc,CAAC,CAAC;gBAC3C,CAAC;YACH,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC;AAED;;GAEG;AACH;IACE,OAAO,KAAK,EAAE,IAAU,EAAiB,EAAE;QACzC,MAAM,iBAAiB,CAAC,IAAI,CAAC,CAAC;IAChC,CAAC,CAAC;AACJ,CAAC"}
|