@terra-graph/icons-aws 1.0.0-rc.2 → 1.0.0-rc.3

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 CHANGED
@@ -42,7 +42,7 @@ declare class AwsDotIconPlugin extends GraphPlugin<DotIconRuleOptions> {
42
42
  }
43
43
  declare const awsDotIconPlugin: AwsDotIconPlugin;
44
44
 
45
- declare const provider: () => RuntimeProvider;
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, getAwsIconManifest, provider, terraformAwsIconKeys, terraformAwsIconMap };
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
@@ -5349,7 +5349,7 @@ NodeRule2.register(AwsDotIconRule);
5349
5349
 
5350
5350
  // src/provider.ts
5351
5351
  import { GraphPluginRegistry } from "@terra-graph/core";
5352
- var provider = () => ({
5352
+ var provider_default = () => ({
5353
5353
  plugins: new GraphPluginRegistry({
5354
5354
  [AWS_DOT_ICON_PLUGIN_NAME]: new AwsDotIconPlugin()
5355
5355
  })
@@ -5374,8 +5374,8 @@ export {
5374
5374
  AwsDotIconRule,
5375
5375
  AwsIcon,
5376
5376
  awsDotIconPlugin,
5377
+ provider_default as default,
5377
5378
  getAwsIconManifest,
5378
- provider,
5379
5379
  terraformAwsIconKeys,
5380
5380
  terraformAwsIconMap
5381
5381
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terra-graph/icons-aws",
3
- "version": "1.0.0-rc.2",
3
+ "version": "1.0.0-rc.3",
4
4
  "description": "AWS icon package for Terra Graph with Terraform resource name lookups.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {