@eui/core 23.0.0-alpha.12 → 23.0.0-alpha.13
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 +10 -0
- package/docs/changelog.html +14 -0
- package/docs/index.html +1 -1
- package/docs/interfaces/Schema-1.html +64 -1
- package/docs/interfaces/Schema-10.html +1 -1
- package/docs/interfaces/Schema-11.html +1 -1
- package/docs/interfaces/Schema-12.html +1 -1
- package/docs/interfaces/Schema-13.html +1 -1
- package/docs/interfaces/Schema-14.html +1 -1
- package/docs/interfaces/Schema-15.html +1 -1
- package/docs/interfaces/Schema-16.html +1 -1
- package/docs/interfaces/Schema-17.html +1 -1
- package/docs/interfaces/Schema-18.html +1 -1
- package/docs/interfaces/Schema-19.html +1 -1
- package/docs/interfaces/Schema-2.html +1 -13
- package/docs/interfaces/Schema-20.html +13 -1
- package/docs/interfaces/Schema-21.html +1 -1
- package/docs/interfaces/Schema-3.html +1 -64
- package/docs/interfaces/Schema-4.html +1 -1
- package/docs/interfaces/Schema-5.html +1 -1
- package/docs/interfaces/Schema-6.html +1 -1
- package/docs/interfaces/Schema-7.html +1 -1
- package/docs/interfaces/Schema-8.html +1 -1
- package/docs/interfaces/Schema-9.html +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/json/documentation.json +124 -124
- package/docs/llms.txt +21 -21
- package/docs/miscellaneous/functions.html +4 -4
- package/docs/properties.html +1 -1
- package/package.json +2 -2
|
@@ -2092,54 +2092,7 @@
|
|
|
2092
2092
|
},
|
|
2093
2093
|
{
|
|
2094
2094
|
"name": "Schema",
|
|
2095
|
-
"id": "interface-Schema-
|
|
2096
|
-
"file": "packages/core/schematics/fix-no-multiple-empty-lines/index.ts",
|
|
2097
|
-
"deprecated": false,
|
|
2098
|
-
"deprecationMessage": "",
|
|
2099
|
-
"type": "interface",
|
|
2100
|
-
"sourceCode": "import { DirEntry, Rule, SchematicContext, Tree } from '@angular-devkit/schematics';\nimport * as ts from 'typescript';\nimport { logDryRun, logDryRunNote } from '../utils/dry-run';\n\ninterface Schema {\n path?: string;\n dryRun?: boolean;\n}\n\nconst MULTIPLE_EMPTY_LINES = /\\n{3,}/g;\n\nexport function fixNoMultipleEmptyLines(options: Schema = {}): Rule {\n return (tree: Tree, context: SchematicContext) => {\n const scanPath = options.path ? '/' + options.path.replace(/^\\.?\\//, '').replace(/\\/$/, '') : '';\n let count = 0;\n\n const dir = tree.getDir(scanPath || '/');\n visitDir(dir, (filePath) => {\n const buffer = tree.read(filePath);\n if (!buffer) return;\n\n const original = buffer.toString('utf-8');\n const result = original.replace(MULTIPLE_EMPTY_LINES, '\\n\\n');\n\n if (result !== original) {\n if (filePath.endsWith('.ts')) {\n const sourceFile = ts.createSourceFile(filePath, result, ts.ScriptTarget.Latest, true);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n if ((sourceFile as any).parseDiagnostics?.length) {\n context.logger.warn(`Skipping ${filePath}: file would not parse after transformation.`);\n return;\n }\n }\n if (options.dryRun) {\n logDryRun(context, `Would collapse multiple empty lines in ${filePath}`);\n } else {\n tree.overwrite(filePath, result);\n }\n count++;\n }\n });\n\n context.logger.info(`Fixed multiple empty lines in ${count} file(s).`);\n if (options.dryRun) {\n logDryRunNote(context);\n }\n return tree;\n };\n}\n\nfunction visitDir(dir: DirEntry, callback: (path: string) => void): void {\n for (const file of dir.subfiles) {\n if (file.endsWith('.d.ts')) continue;\n if (!file.endsWith('.ts') && !file.endsWith('.html') && !file.endsWith('.scss') && !file.endsWith('.css')) continue;\n callback(`${dir.path}/${file}`);\n }\n for (const sub of dir.subdirs) {\n if (sub === 'node_modules' || sub === 'dist') continue;\n visitDir(dir.dir(sub), callback);\n }\n}\n",
|
|
2101
|
-
"displayName": "Schema",
|
|
2102
|
-
"properties": [
|
|
2103
|
-
{
|
|
2104
|
-
"name": "dryRun",
|
|
2105
|
-
"coverageIgnore": false,
|
|
2106
|
-
"deprecated": false,
|
|
2107
|
-
"deprecationMessage": "",
|
|
2108
|
-
"type": "boolean",
|
|
2109
|
-
"indexKey": "",
|
|
2110
|
-
"optional": true,
|
|
2111
|
-
"description": "",
|
|
2112
|
-
"line": 7,
|
|
2113
|
-
"rawdescription": "\n"
|
|
2114
|
-
},
|
|
2115
|
-
{
|
|
2116
|
-
"name": "path",
|
|
2117
|
-
"coverageIgnore": false,
|
|
2118
|
-
"deprecated": false,
|
|
2119
|
-
"deprecationMessage": "",
|
|
2120
|
-
"type": "string",
|
|
2121
|
-
"indexKey": "",
|
|
2122
|
-
"optional": true,
|
|
2123
|
-
"description": "",
|
|
2124
|
-
"line": 6,
|
|
2125
|
-
"rawdescription": "\n"
|
|
2126
|
-
}
|
|
2127
|
-
],
|
|
2128
|
-
"indexSignatures": [],
|
|
2129
|
-
"kind": 172,
|
|
2130
|
-
"methods": [],
|
|
2131
|
-
"extends": [],
|
|
2132
|
-
"isDuplicate": true,
|
|
2133
|
-
"duplicateId": 1,
|
|
2134
|
-
"duplicateName": "Schema-1",
|
|
2135
|
-
"relationships": {
|
|
2136
|
-
"incoming": [],
|
|
2137
|
-
"outgoing": []
|
|
2138
|
-
}
|
|
2139
|
-
},
|
|
2140
|
-
{
|
|
2141
|
-
"name": "Schema",
|
|
2142
|
-
"id": "interface-Schema-5cd6db1920bd5b70a44c0b8a7f7e30f600bfd16a9950f218e6d451a1755ced95b462ef9a62ee87e39bcb8c392981b8d2597895bf0a272fd8aea71f03429ed976-2",
|
|
2095
|
+
"id": "interface-Schema-5cd6db1920bd5b70a44c0b8a7f7e30f600bfd16a9950f218e6d451a1755ced95b462ef9a62ee87e39bcb8c392981b8d2597895bf0a272fd8aea71f03429ed976-1",
|
|
2143
2096
|
"file": "packages/core/schematics/icon-migrate/schema.ts",
|
|
2144
2097
|
"deprecated": false,
|
|
2145
2098
|
"deprecationMessage": "",
|
|
@@ -2177,8 +2130,8 @@
|
|
|
2177
2130
|
"methods": [],
|
|
2178
2131
|
"extends": [],
|
|
2179
2132
|
"isDuplicate": true,
|
|
2180
|
-
"duplicateId":
|
|
2181
|
-
"duplicateName": "Schema-
|
|
2133
|
+
"duplicateId": 1,
|
|
2134
|
+
"duplicateName": "Schema-1",
|
|
2182
2135
|
"relationships": {
|
|
2183
2136
|
"incoming": [],
|
|
2184
2137
|
"outgoing": []
|
|
@@ -2186,7 +2139,7 @@
|
|
|
2186
2139
|
},
|
|
2187
2140
|
{
|
|
2188
2141
|
"name": "Schema",
|
|
2189
|
-
"id": "interface-Schema-56b9fe60701ca349dc90e152829b0a18bb7a8a9bb303c4bac05f9764cd2e933cce0879775ca17168b4c881e202d0258af3668a2a3a1b940e561f7e4b2349b5cc-
|
|
2142
|
+
"id": "interface-Schema-56b9fe60701ca349dc90e152829b0a18bb7a8a9bb303c4bac05f9764cd2e933cce0879775ca17168b4c881e202d0258af3668a2a3a1b940e561f7e4b2349b5cc-2",
|
|
2190
2143
|
"file": "packages/core/schematics/migrate/schema.ts",
|
|
2191
2144
|
"deprecated": false,
|
|
2192
2145
|
"deprecationMessage": "",
|
|
@@ -2236,8 +2189,8 @@
|
|
|
2236
2189
|
"methods": [],
|
|
2237
2190
|
"extends": [],
|
|
2238
2191
|
"isDuplicate": true,
|
|
2239
|
-
"duplicateId":
|
|
2240
|
-
"duplicateName": "Schema-
|
|
2192
|
+
"duplicateId": 2,
|
|
2193
|
+
"duplicateName": "Schema-2",
|
|
2241
2194
|
"relationships": {
|
|
2242
2195
|
"incoming": [],
|
|
2243
2196
|
"outgoing": []
|
|
@@ -2245,7 +2198,7 @@
|
|
|
2245
2198
|
},
|
|
2246
2199
|
{
|
|
2247
2200
|
"name": "Schema",
|
|
2248
|
-
"id": "interface-Schema-e96d29c1785a16147de773cebe7ab5d4ed82aa23c6b1f7737113252a14d156e236f46f7a16340432dec900b664c8005be0aef5d0a628c2f5b8dd2ec7e41edf56-
|
|
2201
|
+
"id": "interface-Schema-e96d29c1785a16147de773cebe7ab5d4ed82aa23c6b1f7737113252a14d156e236f46f7a16340432dec900b664c8005be0aef5d0a628c2f5b8dd2ec7e41edf56-3",
|
|
2249
2202
|
"file": "packages/core/schematics/migrate-eui-accent/index.ts",
|
|
2250
2203
|
"deprecated": false,
|
|
2251
2204
|
"deprecationMessage": "",
|
|
@@ -2283,8 +2236,8 @@
|
|
|
2283
2236
|
"methods": [],
|
|
2284
2237
|
"extends": [],
|
|
2285
2238
|
"isDuplicate": true,
|
|
2286
|
-
"duplicateId":
|
|
2287
|
-
"duplicateName": "Schema-
|
|
2239
|
+
"duplicateId": 3,
|
|
2240
|
+
"duplicateName": "Schema-3",
|
|
2288
2241
|
"relationships": {
|
|
2289
2242
|
"incoming": [],
|
|
2290
2243
|
"outgoing": []
|
|
@@ -2292,7 +2245,7 @@
|
|
|
2292
2245
|
},
|
|
2293
2246
|
{
|
|
2294
2247
|
"name": "Schema",
|
|
2295
|
-
"id": "interface-Schema-585b211d989563bbec5bd67bcdb58d5f264396adbe0ed2e51d0b4a0ecaf8b3ec36d821647c170d616bb409fc603c5a4c0e699eb7511e02c6add8d8670fc9cb9f-
|
|
2248
|
+
"id": "interface-Schema-585b211d989563bbec5bd67bcdb58d5f264396adbe0ed2e51d0b4a0ecaf8b3ec36d821647c170d616bb409fc603c5a4c0e699eb7511e02c6add8d8670fc9cb9f-4",
|
|
2296
2249
|
"file": "packages/core/schematics/migrate-eui-alert/index.ts",
|
|
2297
2250
|
"deprecated": false,
|
|
2298
2251
|
"deprecationMessage": "",
|
|
@@ -2330,8 +2283,8 @@
|
|
|
2330
2283
|
"methods": [],
|
|
2331
2284
|
"extends": [],
|
|
2332
2285
|
"isDuplicate": true,
|
|
2333
|
-
"duplicateId":
|
|
2334
|
-
"duplicateName": "Schema-
|
|
2286
|
+
"duplicateId": 4,
|
|
2287
|
+
"duplicateName": "Schema-4",
|
|
2335
2288
|
"relationships": {
|
|
2336
2289
|
"incoming": [],
|
|
2337
2290
|
"outgoing": []
|
|
@@ -2339,7 +2292,7 @@
|
|
|
2339
2292
|
},
|
|
2340
2293
|
{
|
|
2341
2294
|
"name": "Schema",
|
|
2342
|
-
"id": "interface-Schema-c7e2cc0add09c97d83ec2675d59c86951681f8e2d49f133fb2f216ca98d0da1fdf892d45af31f19ecbbfd0d32f4ad70dd99e862f75725d3812f66a73ec34362c-
|
|
2295
|
+
"id": "interface-Schema-c7e2cc0add09c97d83ec2675d59c86951681f8e2d49f133fb2f216ca98d0da1fdf892d45af31f19ecbbfd0d32f4ad70dd99e862f75725d3812f66a73ec34362c-5",
|
|
2343
2296
|
"file": "packages/core/schematics/migrate-eui-avatar/index.ts",
|
|
2344
2297
|
"deprecated": false,
|
|
2345
2298
|
"deprecationMessage": "",
|
|
@@ -2377,8 +2330,8 @@
|
|
|
2377
2330
|
"methods": [],
|
|
2378
2331
|
"extends": [],
|
|
2379
2332
|
"isDuplicate": true,
|
|
2380
|
-
"duplicateId":
|
|
2381
|
-
"duplicateName": "Schema-
|
|
2333
|
+
"duplicateId": 5,
|
|
2334
|
+
"duplicateName": "Schema-5",
|
|
2382
2335
|
"relationships": {
|
|
2383
2336
|
"incoming": [],
|
|
2384
2337
|
"outgoing": []
|
|
@@ -2386,7 +2339,7 @@
|
|
|
2386
2339
|
},
|
|
2387
2340
|
{
|
|
2388
2341
|
"name": "Schema",
|
|
2389
|
-
"id": "interface-Schema-c0c08f5e83da9afa13ce8375f982fb280b9bde854e00c914f41b04d44deecd531496c2cee264b50314e92a6260c26cebe35741a2cf5ec068d8b6da5c5267539e-
|
|
2342
|
+
"id": "interface-Schema-c0c08f5e83da9afa13ce8375f982fb280b9bde854e00c914f41b04d44deecd531496c2cee264b50314e92a6260c26cebe35741a2cf5ec068d8b6da5c5267539e-6",
|
|
2390
2343
|
"file": "packages/core/schematics/migrate-eui-button/index.ts",
|
|
2391
2344
|
"deprecated": false,
|
|
2392
2345
|
"deprecationMessage": "",
|
|
@@ -2424,8 +2377,8 @@
|
|
|
2424
2377
|
"methods": [],
|
|
2425
2378
|
"extends": [],
|
|
2426
2379
|
"isDuplicate": true,
|
|
2427
|
-
"duplicateId":
|
|
2428
|
-
"duplicateName": "Schema-
|
|
2380
|
+
"duplicateId": 6,
|
|
2381
|
+
"duplicateName": "Schema-6",
|
|
2429
2382
|
"relationships": {
|
|
2430
2383
|
"incoming": [],
|
|
2431
2384
|
"outgoing": []
|
|
@@ -2433,7 +2386,7 @@
|
|
|
2433
2386
|
},
|
|
2434
2387
|
{
|
|
2435
2388
|
"name": "Schema",
|
|
2436
|
-
"id": "interface-Schema-39d3d52e788050bebc4e0b99ed0756f7e9727556cb090ae8796bd4261a56463fe1f479c322b23028cd4134d71e4d1dc44cd248ac62a9a148b5fc46a665466f7c-
|
|
2389
|
+
"id": "interface-Schema-39d3d52e788050bebc4e0b99ed0756f7e9727556cb090ae8796bd4261a56463fe1f479c322b23028cd4134d71e4d1dc44cd248ac62a9a148b5fc46a665466f7c-7",
|
|
2437
2390
|
"file": "packages/core/schematics/migrate-eui-chip/index.ts",
|
|
2438
2391
|
"deprecated": false,
|
|
2439
2392
|
"deprecationMessage": "",
|
|
@@ -2471,8 +2424,8 @@
|
|
|
2471
2424
|
"methods": [],
|
|
2472
2425
|
"extends": [],
|
|
2473
2426
|
"isDuplicate": true,
|
|
2474
|
-
"duplicateId":
|
|
2475
|
-
"duplicateName": "Schema-
|
|
2427
|
+
"duplicateId": 7,
|
|
2428
|
+
"duplicateName": "Schema-7",
|
|
2476
2429
|
"relationships": {
|
|
2477
2430
|
"incoming": [],
|
|
2478
2431
|
"outgoing": []
|
|
@@ -2480,7 +2433,7 @@
|
|
|
2480
2433
|
},
|
|
2481
2434
|
{
|
|
2482
2435
|
"name": "Schema",
|
|
2483
|
-
"id": "interface-Schema-311bef7d5e4b40b356b0fdb5e35dd89e48a5c5beec29eeb865c22c2ca1c4c4fb1fd0bb4391ed0b33825a6d1d744bc3a2e9822b347fbc686a537e15b170c279dd-
|
|
2436
|
+
"id": "interface-Schema-311bef7d5e4b40b356b0fdb5e35dd89e48a5c5beec29eeb865c22c2ca1c4c4fb1fd0bb4391ed0b33825a6d1d744bc3a2e9822b347fbc686a537e15b170c279dd-8",
|
|
2484
2437
|
"file": "packages/core/schematics/migrate-eui-chip-list/index.ts",
|
|
2485
2438
|
"deprecated": false,
|
|
2486
2439
|
"deprecationMessage": "",
|
|
@@ -2518,8 +2471,8 @@
|
|
|
2518
2471
|
"methods": [],
|
|
2519
2472
|
"extends": [],
|
|
2520
2473
|
"isDuplicate": true,
|
|
2521
|
-
"duplicateId":
|
|
2522
|
-
"duplicateName": "Schema-
|
|
2474
|
+
"duplicateId": 8,
|
|
2475
|
+
"duplicateName": "Schema-8",
|
|
2523
2476
|
"relationships": {
|
|
2524
2477
|
"incoming": [],
|
|
2525
2478
|
"outgoing": []
|
|
@@ -2527,7 +2480,7 @@
|
|
|
2527
2480
|
},
|
|
2528
2481
|
{
|
|
2529
2482
|
"name": "Schema",
|
|
2530
|
-
"id": "interface-Schema-869dfc324e9111966817cbebb3553eabfe200acfe33bb77efa71a6c46e1cba0ff5852de7b9ade3060f87264035b99591361331a9e0622daaac22b8d59146c761-
|
|
2483
|
+
"id": "interface-Schema-869dfc324e9111966817cbebb3553eabfe200acfe33bb77efa71a6c46e1cba0ff5852de7b9ade3060f87264035b99591361331a9e0622daaac22b8d59146c761-9",
|
|
2531
2484
|
"file": "packages/core/schematics/migrate-eui-discussion-thread/index.ts",
|
|
2532
2485
|
"deprecated": false,
|
|
2533
2486
|
"deprecationMessage": "",
|
|
@@ -2565,8 +2518,8 @@
|
|
|
2565
2518
|
"methods": [],
|
|
2566
2519
|
"extends": [],
|
|
2567
2520
|
"isDuplicate": true,
|
|
2568
|
-
"duplicateId":
|
|
2569
|
-
"duplicateName": "Schema-
|
|
2521
|
+
"duplicateId": 9,
|
|
2522
|
+
"duplicateName": "Schema-9",
|
|
2570
2523
|
"relationships": {
|
|
2571
2524
|
"incoming": [],
|
|
2572
2525
|
"outgoing": []
|
|
@@ -2574,7 +2527,7 @@
|
|
|
2574
2527
|
},
|
|
2575
2528
|
{
|
|
2576
2529
|
"name": "Schema",
|
|
2577
|
-
"id": "interface-Schema-375dc0924084a2acbafe4a6a32577d59f631c9a386d151180d8fb1c89e7e7cd23da9fd459e597592ed823692adb6ad2633c50baf16621f003246e8c9bb1c6ce0-
|
|
2530
|
+
"id": "interface-Schema-375dc0924084a2acbafe4a6a32577d59f631c9a386d151180d8fb1c89e7e7cd23da9fd459e597592ed823692adb6ad2633c50baf16621f003246e8c9bb1c6ce0-10",
|
|
2578
2531
|
"file": "packages/core/schematics/migrate-eui-editor/index.ts",
|
|
2579
2532
|
"deprecated": false,
|
|
2580
2533
|
"deprecationMessage": "",
|
|
@@ -2612,8 +2565,8 @@
|
|
|
2612
2565
|
"methods": [],
|
|
2613
2566
|
"extends": [],
|
|
2614
2567
|
"isDuplicate": true,
|
|
2615
|
-
"duplicateId":
|
|
2616
|
-
"duplicateName": "Schema-
|
|
2568
|
+
"duplicateId": 10,
|
|
2569
|
+
"duplicateName": "Schema-10",
|
|
2617
2570
|
"relationships": {
|
|
2618
2571
|
"incoming": [],
|
|
2619
2572
|
"outgoing": []
|
|
@@ -2621,7 +2574,7 @@
|
|
|
2621
2574
|
},
|
|
2622
2575
|
{
|
|
2623
2576
|
"name": "Schema",
|
|
2624
|
-
"id": "interface-Schema-0ee574e11dd651dd971057cb66220845e5b87b2949c69c623c8ddf7355af92a396c58c237a52a05f18c22a5332a2695b717bcfeb8ea840c4e7df8d0084c2b49c-
|
|
2577
|
+
"id": "interface-Schema-0ee574e11dd651dd971057cb66220845e5b87b2949c69c623c8ddf7355af92a396c58c237a52a05f18c22a5332a2695b717bcfeb8ea840c4e7df8d0084c2b49c-11",
|
|
2625
2578
|
"file": "packages/core/schematics/migrate-eui-fieldset/index.ts",
|
|
2626
2579
|
"deprecated": false,
|
|
2627
2580
|
"deprecationMessage": "",
|
|
@@ -2659,8 +2612,8 @@
|
|
|
2659
2612
|
"methods": [],
|
|
2660
2613
|
"extends": [],
|
|
2661
2614
|
"isDuplicate": true,
|
|
2662
|
-
"duplicateId":
|
|
2663
|
-
"duplicateName": "Schema-
|
|
2615
|
+
"duplicateId": 11,
|
|
2616
|
+
"duplicateName": "Schema-11",
|
|
2664
2617
|
"relationships": {
|
|
2665
2618
|
"incoming": [],
|
|
2666
2619
|
"outgoing": []
|
|
@@ -2668,7 +2621,7 @@
|
|
|
2668
2621
|
},
|
|
2669
2622
|
{
|
|
2670
2623
|
"name": "Schema",
|
|
2671
|
-
"id": "interface-Schema-b3ff4600c4a5ca1888c45e5baf3600fa6dc6477f1e473e5241ff6682e2929dc8950a5dfa8b1048a348dba7ad1f0ce8cc3681471933911b689e04713334ef4811-
|
|
2624
|
+
"id": "interface-Schema-b3ff4600c4a5ca1888c45e5baf3600fa6dc6477f1e473e5241ff6682e2929dc8950a5dfa8b1048a348dba7ad1f0ce8cc3681471933911b689e04713334ef4811-12",
|
|
2672
2625
|
"file": "packages/core/schematics/migrate-eui-icon-svg/index.ts",
|
|
2673
2626
|
"deprecated": false,
|
|
2674
2627
|
"deprecationMessage": "",
|
|
@@ -2706,8 +2659,8 @@
|
|
|
2706
2659
|
"methods": [],
|
|
2707
2660
|
"extends": [],
|
|
2708
2661
|
"isDuplicate": true,
|
|
2709
|
-
"duplicateId":
|
|
2710
|
-
"duplicateName": "Schema-
|
|
2662
|
+
"duplicateId": 12,
|
|
2663
|
+
"duplicateName": "Schema-12",
|
|
2711
2664
|
"relationships": {
|
|
2712
2665
|
"incoming": [],
|
|
2713
2666
|
"outgoing": []
|
|
@@ -2715,7 +2668,7 @@
|
|
|
2715
2668
|
},
|
|
2716
2669
|
{
|
|
2717
2670
|
"name": "Schema",
|
|
2718
|
-
"id": "interface-Schema-21147930d3fbc38fbb3052a2ed9e7aa2b7505e6ed8c88c28796ce7101bd2ad914726eb230dda5826647036190edec6dae7e7e1d172387cd3803aa00bcdf790be-
|
|
2671
|
+
"id": "interface-Schema-21147930d3fbc38fbb3052a2ed9e7aa2b7505e6ed8c88c28796ce7101bd2ad914726eb230dda5826647036190edec6dae7e7e1d172387cd3803aa00bcdf790be-13",
|
|
2719
2672
|
"file": "packages/core/schematics/migrate-eui-icon-toggle/index.ts",
|
|
2720
2673
|
"deprecated": false,
|
|
2721
2674
|
"deprecationMessage": "",
|
|
@@ -2753,8 +2706,8 @@
|
|
|
2753
2706
|
"methods": [],
|
|
2754
2707
|
"extends": [],
|
|
2755
2708
|
"isDuplicate": true,
|
|
2756
|
-
"duplicateId":
|
|
2757
|
-
"duplicateName": "Schema-
|
|
2709
|
+
"duplicateId": 13,
|
|
2710
|
+
"duplicateName": "Schema-13",
|
|
2758
2711
|
"relationships": {
|
|
2759
2712
|
"incoming": [],
|
|
2760
2713
|
"outgoing": []
|
|
@@ -2762,7 +2715,7 @@
|
|
|
2762
2715
|
},
|
|
2763
2716
|
{
|
|
2764
2717
|
"name": "Schema",
|
|
2765
|
-
"id": "interface-Schema-a806c1769fb526271565003a6a3ef9ab4c67e421d93ee0cb54e1f6de223807afc1f16ad294656ef614a77a91a38cc914ce41ac97ed3a8a4195a1e74a729c0c08-
|
|
2718
|
+
"id": "interface-Schema-a806c1769fb526271565003a6a3ef9ab4c67e421d93ee0cb54e1f6de223807afc1f16ad294656ef614a77a91a38cc914ce41ac97ed3a8a4195a1e74a729c0c08-14",
|
|
2766
2719
|
"file": "packages/core/schematics/migrate-eui-popover/index.ts",
|
|
2767
2720
|
"deprecated": false,
|
|
2768
2721
|
"deprecationMessage": "",
|
|
@@ -2800,8 +2753,8 @@
|
|
|
2800
2753
|
"methods": [],
|
|
2801
2754
|
"extends": [],
|
|
2802
2755
|
"isDuplicate": true,
|
|
2803
|
-
"duplicateId":
|
|
2804
|
-
"duplicateName": "Schema-
|
|
2756
|
+
"duplicateId": 14,
|
|
2757
|
+
"duplicateName": "Schema-14",
|
|
2805
2758
|
"relationships": {
|
|
2806
2759
|
"incoming": [],
|
|
2807
2760
|
"outgoing": []
|
|
@@ -2809,7 +2762,7 @@
|
|
|
2809
2762
|
},
|
|
2810
2763
|
{
|
|
2811
2764
|
"name": "Schema",
|
|
2812
|
-
"id": "interface-Schema-90e62c16ce9ada881e8d434336bb633dae9745236106ddf60964afbd11de6aa579255a13d6036b384281860eb6ed2ee329194b519c51fdaf20f79bc511d0f64f-
|
|
2765
|
+
"id": "interface-Schema-90e62c16ce9ada881e8d434336bb633dae9745236106ddf60964afbd11de6aa579255a13d6036b384281860eb6ed2ee329194b519c51fdaf20f79bc511d0f64f-15",
|
|
2813
2766
|
"file": "packages/core/schematics/migrate-eui-progress-circle/index.ts",
|
|
2814
2767
|
"deprecated": false,
|
|
2815
2768
|
"deprecationMessage": "",
|
|
@@ -2847,8 +2800,8 @@
|
|
|
2847
2800
|
"methods": [],
|
|
2848
2801
|
"extends": [],
|
|
2849
2802
|
"isDuplicate": true,
|
|
2850
|
-
"duplicateId":
|
|
2851
|
-
"duplicateName": "Schema-
|
|
2803
|
+
"duplicateId": 15,
|
|
2804
|
+
"duplicateName": "Schema-15",
|
|
2852
2805
|
"relationships": {
|
|
2853
2806
|
"incoming": [],
|
|
2854
2807
|
"outgoing": []
|
|
@@ -2856,7 +2809,7 @@
|
|
|
2856
2809
|
},
|
|
2857
2810
|
{
|
|
2858
2811
|
"name": "Schema",
|
|
2859
|
-
"id": "interface-Schema-91c9f900bf3ebb82488fb65644938ef486ceaa447cff8bfd9d710df9595d82acb267b26f3c252173bc684353f362473120226426ed7ee5d98b33e30011dd9383-
|
|
2812
|
+
"id": "interface-Schema-91c9f900bf3ebb82488fb65644938ef486ceaa447cff8bfd9d710df9595d82acb267b26f3c252173bc684353f362473120226426ed7ee5d98b33e30011dd9383-16",
|
|
2860
2813
|
"file": "packages/core/schematics/migrate-eui-table/index.ts",
|
|
2861
2814
|
"deprecated": false,
|
|
2862
2815
|
"deprecationMessage": "",
|
|
@@ -2894,8 +2847,8 @@
|
|
|
2894
2847
|
"methods": [],
|
|
2895
2848
|
"extends": [],
|
|
2896
2849
|
"isDuplicate": true,
|
|
2897
|
-
"duplicateId":
|
|
2898
|
-
"duplicateName": "Schema-
|
|
2850
|
+
"duplicateId": 16,
|
|
2851
|
+
"duplicateName": "Schema-16",
|
|
2899
2852
|
"relationships": {
|
|
2900
2853
|
"incoming": [],
|
|
2901
2854
|
"outgoing": []
|
|
@@ -2903,7 +2856,7 @@
|
|
|
2903
2856
|
},
|
|
2904
2857
|
{
|
|
2905
2858
|
"name": "Schema",
|
|
2906
|
-
"id": "interface-Schema-760dec88d3f709d5b38226e55f7cbfb1e5fabcea6c004fd46e611be1dd563b8b247e9e6c77667e5582fe7b443374ba2c4facd2b2db2985edb46c9a4a37a8a876-
|
|
2859
|
+
"id": "interface-Schema-760dec88d3f709d5b38226e55f7cbfb1e5fabcea6c004fd46e611be1dd563b8b247e9e6c77667e5582fe7b443374ba2c4facd2b2db2985edb46c9a4a37a8a876-17",
|
|
2907
2860
|
"file": "packages/core/schematics/migrate-eui-tabs/index.ts",
|
|
2908
2861
|
"deprecated": false,
|
|
2909
2862
|
"deprecationMessage": "",
|
|
@@ -2941,8 +2894,8 @@
|
|
|
2941
2894
|
"methods": [],
|
|
2942
2895
|
"extends": [],
|
|
2943
2896
|
"isDuplicate": true,
|
|
2944
|
-
"duplicateId":
|
|
2945
|
-
"duplicateName": "Schema-
|
|
2897
|
+
"duplicateId": 17,
|
|
2898
|
+
"duplicateName": "Schema-17",
|
|
2946
2899
|
"relationships": {
|
|
2947
2900
|
"incoming": [],
|
|
2948
2901
|
"outgoing": []
|
|
@@ -2950,7 +2903,7 @@
|
|
|
2950
2903
|
},
|
|
2951
2904
|
{
|
|
2952
2905
|
"name": "Schema",
|
|
2953
|
-
"id": "interface-Schema-e1cd02924eb82a618c71a0b26c081bdd020519d2699aa0e2dc98640c4e0f347c3649b967c5fc87543e41bbbfabd1304835850ccc38f40684d6521c242b2030ed-
|
|
2906
|
+
"id": "interface-Schema-e1cd02924eb82a618c71a0b26c081bdd020519d2699aa0e2dc98640c4e0f347c3649b967c5fc87543e41bbbfabd1304835850ccc38f40684d6521c242b2030ed-18",
|
|
2954
2907
|
"file": "packages/core/schematics/migrate-eui-toolbar-menu/index.ts",
|
|
2955
2908
|
"deprecated": false,
|
|
2956
2909
|
"deprecationMessage": "",
|
|
@@ -2988,8 +2941,8 @@
|
|
|
2988
2941
|
"methods": [],
|
|
2989
2942
|
"extends": [],
|
|
2990
2943
|
"isDuplicate": true,
|
|
2991
|
-
"duplicateId":
|
|
2992
|
-
"duplicateName": "Schema-
|
|
2944
|
+
"duplicateId": 18,
|
|
2945
|
+
"duplicateName": "Schema-18",
|
|
2993
2946
|
"relationships": {
|
|
2994
2947
|
"incoming": [],
|
|
2995
2948
|
"outgoing": []
|
|
@@ -2997,7 +2950,7 @@
|
|
|
2997
2950
|
},
|
|
2998
2951
|
{
|
|
2999
2952
|
"name": "Schema",
|
|
3000
|
-
"id": "interface-Schema-d36032102ed30a7ada1e3d36bb9ca41b7234b855760cac9783a25818f7ffe2097e1ebd8e808b574ddec0760f827272f6cd561f45f3eb1578f87f39ee2633730a-
|
|
2953
|
+
"id": "interface-Schema-d36032102ed30a7ada1e3d36bb9ca41b7234b855760cac9783a25818f7ffe2097e1ebd8e808b574ddec0760f827272f6cd561f45f3eb1578f87f39ee2633730a-19",
|
|
3001
2954
|
"file": "packages/core/schematics/migrate-eui-tooltip/index.ts",
|
|
3002
2955
|
"deprecated": false,
|
|
3003
2956
|
"deprecationMessage": "",
|
|
@@ -3035,8 +2988,8 @@
|
|
|
3035
2988
|
"methods": [],
|
|
3036
2989
|
"extends": [],
|
|
3037
2990
|
"isDuplicate": true,
|
|
3038
|
-
"duplicateId":
|
|
3039
|
-
"duplicateName": "Schema-
|
|
2991
|
+
"duplicateId": 19,
|
|
2992
|
+
"duplicateName": "Schema-19",
|
|
3040
2993
|
"relationships": {
|
|
3041
2994
|
"incoming": [],
|
|
3042
2995
|
"outgoing": []
|
|
@@ -3044,7 +2997,7 @@
|
|
|
3044
2997
|
},
|
|
3045
2998
|
{
|
|
3046
2999
|
"name": "Schema",
|
|
3047
|
-
"id": "interface-Schema-817c4b549cc3eab9fcf4936acab2e71182d90a4480369f5c003cbbda10792efa587ad99d65acf049f64e7030e32589e4fabc4a6d7a5621e4fe54725ef91dc9e8-
|
|
3000
|
+
"id": "interface-Schema-817c4b549cc3eab9fcf4936acab2e71182d90a4480369f5c003cbbda10792efa587ad99d65acf049f64e7030e32589e4fabc4a6d7a5621e4fe54725ef91dc9e8-20",
|
|
3048
3001
|
"file": "packages/core/schematics/migrate-to-standalone/index.ts",
|
|
3049
3002
|
"deprecated": false,
|
|
3050
3003
|
"deprecationMessage": "",
|
|
@@ -3082,6 +3035,53 @@
|
|
|
3082
3035
|
"methods": [],
|
|
3083
3036
|
"extends": [],
|
|
3084
3037
|
"isDuplicate": true,
|
|
3038
|
+
"duplicateId": 20,
|
|
3039
|
+
"duplicateName": "Schema-20",
|
|
3040
|
+
"relationships": {
|
|
3041
|
+
"incoming": [],
|
|
3042
|
+
"outgoing": []
|
|
3043
|
+
}
|
|
3044
|
+
},
|
|
3045
|
+
{
|
|
3046
|
+
"name": "Schema",
|
|
3047
|
+
"id": "interface-Schema-4fe31ff3e9f1d34845a6b865d605e215f33552094b88c3d0eab0b180187fe64ce4d68d687516cb3d62c57d2678a103969b2dacbb18a49b26060f78096678fcce-21",
|
|
3048
|
+
"file": "packages/core/schematics/fix-no-multiple-empty-lines/index.ts",
|
|
3049
|
+
"deprecated": false,
|
|
3050
|
+
"deprecationMessage": "",
|
|
3051
|
+
"type": "interface",
|
|
3052
|
+
"sourceCode": "import { DirEntry, Rule, SchematicContext, Tree } from '@angular-devkit/schematics';\nimport * as ts from 'typescript';\nimport { logDryRun, logDryRunNote } from '../utils/dry-run';\n\ninterface Schema {\n path?: string;\n dryRun?: boolean;\n}\n\nconst MULTIPLE_EMPTY_LINES = /\\n{3,}/g;\n\nexport function fixNoMultipleEmptyLines(options: Schema = {}): Rule {\n return (tree: Tree, context: SchematicContext) => {\n const scanPath = options.path ? '/' + options.path.replace(/^\\.?\\//, '').replace(/\\/$/, '') : '';\n let count = 0;\n\n const dir = tree.getDir(scanPath || '/');\n visitDir(dir, (filePath) => {\n const buffer = tree.read(filePath);\n if (!buffer) return;\n\n const original = buffer.toString('utf-8');\n const result = original.replace(MULTIPLE_EMPTY_LINES, '\\n\\n');\n\n if (result !== original) {\n if (filePath.endsWith('.ts')) {\n const sourceFile = ts.createSourceFile(filePath, result, ts.ScriptTarget.Latest, true);\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n if ((sourceFile as any).parseDiagnostics?.length) {\n context.logger.warn(`Skipping ${filePath}: file would not parse after transformation.`);\n return;\n }\n }\n if (options.dryRun) {\n logDryRun(context, `Would collapse multiple empty lines in ${filePath}`);\n } else {\n tree.overwrite(filePath, result);\n }\n count++;\n }\n });\n\n context.logger.info(`Fixed multiple empty lines in ${count} file(s).`);\n if (options.dryRun) {\n logDryRunNote(context);\n }\n return tree;\n };\n}\n\nfunction visitDir(dir: DirEntry, callback: (path: string) => void): void {\n for (const file of dir.subfiles) {\n if (file.endsWith('.d.ts')) continue;\n if (!file.endsWith('.ts') && !file.endsWith('.html') && !file.endsWith('.scss') && !file.endsWith('.css')) continue;\n callback(`${dir.path}/${file}`);\n }\n for (const sub of dir.subdirs) {\n if (sub === 'node_modules' || sub === 'dist') continue;\n visitDir(dir.dir(sub), callback);\n }\n}\n",
|
|
3053
|
+
"displayName": "Schema",
|
|
3054
|
+
"properties": [
|
|
3055
|
+
{
|
|
3056
|
+
"name": "dryRun",
|
|
3057
|
+
"coverageIgnore": false,
|
|
3058
|
+
"deprecated": false,
|
|
3059
|
+
"deprecationMessage": "",
|
|
3060
|
+
"type": "boolean",
|
|
3061
|
+
"indexKey": "",
|
|
3062
|
+
"optional": true,
|
|
3063
|
+
"description": "",
|
|
3064
|
+
"line": 7,
|
|
3065
|
+
"rawdescription": "\n"
|
|
3066
|
+
},
|
|
3067
|
+
{
|
|
3068
|
+
"name": "path",
|
|
3069
|
+
"coverageIgnore": false,
|
|
3070
|
+
"deprecated": false,
|
|
3071
|
+
"deprecationMessage": "",
|
|
3072
|
+
"type": "string",
|
|
3073
|
+
"indexKey": "",
|
|
3074
|
+
"optional": true,
|
|
3075
|
+
"description": "",
|
|
3076
|
+
"line": 6,
|
|
3077
|
+
"rawdescription": "\n"
|
|
3078
|
+
}
|
|
3079
|
+
],
|
|
3080
|
+
"indexSignatures": [],
|
|
3081
|
+
"kind": 172,
|
|
3082
|
+
"methods": [],
|
|
3083
|
+
"extends": [],
|
|
3084
|
+
"isDuplicate": true,
|
|
3085
3085
|
"duplicateId": 21,
|
|
3086
3086
|
"duplicateName": "Schema-21",
|
|
3087
3087
|
"relationships": {
|
|
@@ -34886,7 +34886,7 @@
|
|
|
34886
34886
|
},
|
|
34887
34887
|
{
|
|
34888
34888
|
"name": "visitDir",
|
|
34889
|
-
"file": "packages/core/schematics/
|
|
34889
|
+
"file": "packages/core/schematics/migrate-eui-accent/index.ts",
|
|
34890
34890
|
"ctype": "miscellaneous",
|
|
34891
34891
|
"subtype": "function",
|
|
34892
34892
|
"coverageIgnore": false,
|
|
@@ -34931,7 +34931,7 @@
|
|
|
34931
34931
|
},
|
|
34932
34932
|
{
|
|
34933
34933
|
"name": "visitDir",
|
|
34934
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
34934
|
+
"file": "packages/core/schematics/migrate-eui-alert/index.ts",
|
|
34935
34935
|
"ctype": "miscellaneous",
|
|
34936
34936
|
"subtype": "function",
|
|
34937
34937
|
"coverageIgnore": false,
|
|
@@ -34976,7 +34976,7 @@
|
|
|
34976
34976
|
},
|
|
34977
34977
|
{
|
|
34978
34978
|
"name": "visitDir",
|
|
34979
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
34979
|
+
"file": "packages/core/schematics/migrate-eui-avatar/index.ts",
|
|
34980
34980
|
"ctype": "miscellaneous",
|
|
34981
34981
|
"subtype": "function",
|
|
34982
34982
|
"coverageIgnore": false,
|
|
@@ -35021,7 +35021,7 @@
|
|
|
35021
35021
|
},
|
|
35022
35022
|
{
|
|
35023
35023
|
"name": "visitDir",
|
|
35024
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35024
|
+
"file": "packages/core/schematics/migrate-eui-button/index.ts",
|
|
35025
35025
|
"ctype": "miscellaneous",
|
|
35026
35026
|
"subtype": "function",
|
|
35027
35027
|
"coverageIgnore": false,
|
|
@@ -35066,7 +35066,7 @@
|
|
|
35066
35066
|
},
|
|
35067
35067
|
{
|
|
35068
35068
|
"name": "visitDir",
|
|
35069
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35069
|
+
"file": "packages/core/schematics/migrate-eui-chip/index.ts",
|
|
35070
35070
|
"ctype": "miscellaneous",
|
|
35071
35071
|
"subtype": "function",
|
|
35072
35072
|
"coverageIgnore": false,
|
|
@@ -35111,7 +35111,7 @@
|
|
|
35111
35111
|
},
|
|
35112
35112
|
{
|
|
35113
35113
|
"name": "visitDir",
|
|
35114
|
-
"file": "packages/core/schematics/migrate-eui-chip/index.ts",
|
|
35114
|
+
"file": "packages/core/schematics/migrate-eui-chip-list/index.ts",
|
|
35115
35115
|
"ctype": "miscellaneous",
|
|
35116
35116
|
"subtype": "function",
|
|
35117
35117
|
"coverageIgnore": false,
|
|
@@ -35156,7 +35156,7 @@
|
|
|
35156
35156
|
},
|
|
35157
35157
|
{
|
|
35158
35158
|
"name": "visitDir",
|
|
35159
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35159
|
+
"file": "packages/core/schematics/migrate-eui-discussion-thread/index.ts",
|
|
35160
35160
|
"ctype": "miscellaneous",
|
|
35161
35161
|
"subtype": "function",
|
|
35162
35162
|
"coverageIgnore": false,
|
|
@@ -35201,7 +35201,7 @@
|
|
|
35201
35201
|
},
|
|
35202
35202
|
{
|
|
35203
35203
|
"name": "visitDir",
|
|
35204
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35204
|
+
"file": "packages/core/schematics/migrate-eui-editor/index.ts",
|
|
35205
35205
|
"ctype": "miscellaneous",
|
|
35206
35206
|
"subtype": "function",
|
|
35207
35207
|
"coverageIgnore": false,
|
|
@@ -35246,7 +35246,7 @@
|
|
|
35246
35246
|
},
|
|
35247
35247
|
{
|
|
35248
35248
|
"name": "visitDir",
|
|
35249
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35249
|
+
"file": "packages/core/schematics/migrate-eui-fieldset/index.ts",
|
|
35250
35250
|
"ctype": "miscellaneous",
|
|
35251
35251
|
"subtype": "function",
|
|
35252
35252
|
"coverageIgnore": false,
|
|
@@ -35291,7 +35291,7 @@
|
|
|
35291
35291
|
},
|
|
35292
35292
|
{
|
|
35293
35293
|
"name": "visitDir",
|
|
35294
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35294
|
+
"file": "packages/core/schematics/migrate-eui-icon-svg/index.ts",
|
|
35295
35295
|
"ctype": "miscellaneous",
|
|
35296
35296
|
"subtype": "function",
|
|
35297
35297
|
"coverageIgnore": false,
|
|
@@ -35336,7 +35336,7 @@
|
|
|
35336
35336
|
},
|
|
35337
35337
|
{
|
|
35338
35338
|
"name": "visitDir",
|
|
35339
|
-
"file": "packages/core/schematics/migrate-eui-icon-
|
|
35339
|
+
"file": "packages/core/schematics/migrate-eui-icon-toggle/index.ts",
|
|
35340
35340
|
"ctype": "miscellaneous",
|
|
35341
35341
|
"subtype": "function",
|
|
35342
35342
|
"coverageIgnore": false,
|
|
@@ -35381,7 +35381,7 @@
|
|
|
35381
35381
|
},
|
|
35382
35382
|
{
|
|
35383
35383
|
"name": "visitDir",
|
|
35384
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35384
|
+
"file": "packages/core/schematics/migrate-eui-popover/index.ts",
|
|
35385
35385
|
"ctype": "miscellaneous",
|
|
35386
35386
|
"subtype": "function",
|
|
35387
35387
|
"coverageIgnore": false,
|
|
@@ -35426,7 +35426,7 @@
|
|
|
35426
35426
|
},
|
|
35427
35427
|
{
|
|
35428
35428
|
"name": "visitDir",
|
|
35429
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35429
|
+
"file": "packages/core/schematics/migrate-eui-progress-circle/index.ts",
|
|
35430
35430
|
"ctype": "miscellaneous",
|
|
35431
35431
|
"subtype": "function",
|
|
35432
35432
|
"coverageIgnore": false,
|
|
@@ -35471,7 +35471,7 @@
|
|
|
35471
35471
|
},
|
|
35472
35472
|
{
|
|
35473
35473
|
"name": "visitDir",
|
|
35474
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35474
|
+
"file": "packages/core/schematics/migrate-eui-table/index.ts",
|
|
35475
35475
|
"ctype": "miscellaneous",
|
|
35476
35476
|
"subtype": "function",
|
|
35477
35477
|
"coverageIgnore": false,
|
|
@@ -35516,7 +35516,7 @@
|
|
|
35516
35516
|
},
|
|
35517
35517
|
{
|
|
35518
35518
|
"name": "visitDir",
|
|
35519
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35519
|
+
"file": "packages/core/schematics/migrate-eui-tabs/index.ts",
|
|
35520
35520
|
"ctype": "miscellaneous",
|
|
35521
35521
|
"subtype": "function",
|
|
35522
35522
|
"coverageIgnore": false,
|
|
@@ -35561,7 +35561,7 @@
|
|
|
35561
35561
|
},
|
|
35562
35562
|
{
|
|
35563
35563
|
"name": "visitDir",
|
|
35564
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35564
|
+
"file": "packages/core/schematics/migrate-eui-toolbar-menu/index.ts",
|
|
35565
35565
|
"ctype": "miscellaneous",
|
|
35566
35566
|
"subtype": "function",
|
|
35567
35567
|
"coverageIgnore": false,
|
|
@@ -35606,7 +35606,7 @@
|
|
|
35606
35606
|
},
|
|
35607
35607
|
{
|
|
35608
35608
|
"name": "visitDir",
|
|
35609
|
-
"file": "packages/core/schematics/migrate-eui-
|
|
35609
|
+
"file": "packages/core/schematics/migrate-eui-tooltip/index.ts",
|
|
35610
35610
|
"ctype": "miscellaneous",
|
|
35611
35611
|
"subtype": "function",
|
|
35612
35612
|
"coverageIgnore": false,
|
|
@@ -35651,7 +35651,7 @@
|
|
|
35651
35651
|
},
|
|
35652
35652
|
{
|
|
35653
35653
|
"name": "visitDir",
|
|
35654
|
-
"file": "packages/core/schematics/migrate-
|
|
35654
|
+
"file": "packages/core/schematics/migrate-to-standalone/index.ts",
|
|
35655
35655
|
"ctype": "miscellaneous",
|
|
35656
35656
|
"subtype": "function",
|
|
35657
35657
|
"coverageIgnore": false,
|
|
@@ -35696,7 +35696,7 @@
|
|
|
35696
35696
|
},
|
|
35697
35697
|
{
|
|
35698
35698
|
"name": "visitDir",
|
|
35699
|
-
"file": "packages/core/schematics/
|
|
35699
|
+
"file": "packages/core/schematics/fix-no-multiple-empty-lines/index.ts",
|
|
35700
35700
|
"ctype": "miscellaneous",
|
|
35701
35701
|
"subtype": "function",
|
|
35702
35702
|
"coverageIgnore": false,
|