@terra-graph/icons-aws 1.0.0-rc.2 → 1.0.0-rc.4
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/dist/index.d.ts +3 -3
- package/dist/index.js +6 -11
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { GraphPlugin, GraphPluginBuildInput, GraphPluginBuildResult } from '@terra-graph/core/Graph/GraphPlugin.js';
|
|
2
1
|
import { NodeRule, AdapterOperations, NodeId, TgNodeAttributes, RuntimeProvider } from '@terra-graph/core';
|
|
2
|
+
import { GraphPlugin, GraphPluginBuildInput, GraphPluginBuildResult } from '@terra-graph/core/Graph/GraphPlugin.js';
|
|
3
3
|
|
|
4
4
|
declare class AwsIcon {
|
|
5
5
|
private readonly entry;
|
|
@@ -42,7 +42,7 @@ declare class AwsDotIconPlugin extends GraphPlugin<DotIconRuleOptions> {
|
|
|
42
42
|
}
|
|
43
43
|
declare const awsDotIconPlugin: AwsDotIconPlugin;
|
|
44
44
|
|
|
45
|
-
declare const
|
|
45
|
+
declare const _default: () => RuntimeProvider;
|
|
46
46
|
|
|
47
47
|
interface AwsIconManifestEntry {
|
|
48
48
|
key: string;
|
|
@@ -58,4 +58,4 @@ declare function getAwsIconManifest(): AwsIconManifest;
|
|
|
58
58
|
declare const terraformAwsIconMap: Record<string, string>;
|
|
59
59
|
declare const terraformAwsIconKeys: Record<string, string>;
|
|
60
60
|
|
|
61
|
-
export { AWS_DOT_ICON_PLUGIN_NAME, AwsDotIconPlugin, AwsDotIconRule, AwsIcon, type AwsIconManifest, type AwsIconManifestEntry, type DotIconRuleOptions, type DotNodeOptions, awsDotIconPlugin,
|
|
61
|
+
export { AWS_DOT_ICON_PLUGIN_NAME, AwsDotIconPlugin, AwsDotIconRule, AwsIcon, type AwsIconManifest, type AwsIconManifestEntry, type DotIconRuleOptions, type DotNodeOptions, awsDotIconPlugin, _default as default, getAwsIconManifest, terraformAwsIconKeys, terraformAwsIconMap };
|
package/dist/index.js
CHANGED
|
@@ -5245,11 +5245,6 @@ var AwsIcon = class _AwsIcon {
|
|
|
5245
5245
|
}
|
|
5246
5246
|
};
|
|
5247
5247
|
|
|
5248
|
-
// src/plugins/AwsDotIconPlugin.ts
|
|
5249
|
-
import {
|
|
5250
|
-
GraphPlugin
|
|
5251
|
-
} from "@terra-graph/core/Graph/GraphPlugin.js";
|
|
5252
|
-
|
|
5253
5248
|
// src/rules/AwsDotIconRule.ts
|
|
5254
5249
|
import {
|
|
5255
5250
|
DotAdapter,
|
|
@@ -5328,8 +5323,12 @@ var AwsDotIconRule = class extends NodeRule {
|
|
|
5328
5323
|
});
|
|
5329
5324
|
}
|
|
5330
5325
|
};
|
|
5326
|
+
NodeRule.register(AwsDotIconRule);
|
|
5331
5327
|
|
|
5332
5328
|
// src/plugins/AwsDotIconPlugin.ts
|
|
5329
|
+
import {
|
|
5330
|
+
GraphPlugin
|
|
5331
|
+
} from "@terra-graph/core/Graph/GraphPlugin.js";
|
|
5333
5332
|
var AWS_DOT_ICON_PLUGIN_NAME = "@terra-graph/icons-aws:plugin:dot";
|
|
5334
5333
|
var AwsDotIconPlugin = class extends GraphPlugin {
|
|
5335
5334
|
constructor() {
|
|
@@ -5343,13 +5342,9 @@ var AwsDotIconPlugin = class extends GraphPlugin {
|
|
|
5343
5342
|
};
|
|
5344
5343
|
var awsDotIconPlugin = new AwsDotIconPlugin();
|
|
5345
5344
|
|
|
5346
|
-
// src/rules/index.ts
|
|
5347
|
-
import { NodeRule as NodeRule2 } from "@terra-graph/core";
|
|
5348
|
-
NodeRule2.register(AwsDotIconRule);
|
|
5349
|
-
|
|
5350
5345
|
// src/provider.ts
|
|
5351
5346
|
import { GraphPluginRegistry } from "@terra-graph/core";
|
|
5352
|
-
var
|
|
5347
|
+
var provider_default = () => ({
|
|
5353
5348
|
plugins: new GraphPluginRegistry({
|
|
5354
5349
|
[AWS_DOT_ICON_PLUGIN_NAME]: new AwsDotIconPlugin()
|
|
5355
5350
|
})
|
|
@@ -5374,8 +5369,8 @@ export {
|
|
|
5374
5369
|
AwsDotIconRule,
|
|
5375
5370
|
AwsIcon,
|
|
5376
5371
|
awsDotIconPlugin,
|
|
5372
|
+
provider_default as default,
|
|
5377
5373
|
getAwsIconManifest,
|
|
5378
|
-
provider,
|
|
5379
5374
|
terraformAwsIconKeys,
|
|
5380
5375
|
terraformAwsIconMap
|
|
5381
5376
|
};
|