0.2.23 • Published 8 months ago

@builder.io/sdk-angular v0.2.23

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

Builder.io Angular SDK

This is Builder's Gen2 Angular SDK.

Getting Started

npm install @builder.io/sdk-angular

To use the SDK, you need to:

  • fetch the builder data using fetchOneEntry: you can see how to use it here https://www.builder.io/c/docs/content-api.
  • pass that data to the Content component. Here is a simplified example showing how you would use both:
import { Component } from '@angular/core';
import { fetchOneEntry, type BuilderContent } from '@builder.io/sdk-angular';

@Component({
  selector: 'app-catchall',
  template: `
    <ng-container *ngIf="content; else notFound">
      <builder-content [model]="model" [content]="content" [apiKey]="apiKey"></builder-content>
    </ng-container>

    <ng-template #notFound>
      <div>404 - Content not found</div>
    </ng-template>
  `,
})
export class CatchAllComponent {
  apiKey = 'YOUR_API_KEY';
  model = 'page';
  content: BuilderContent | null = null;

  async ngOnInit() {
    const urlPath = window.location.pathname || '';

    const content = await fetchOneEntry({
      apiKey: this.apiKey,
      model: this.model,
      userAttributes: {
        urlPath,
      },
    });

    if (!content) {
      return;
    }

    this.content = content;
  }
}

Mitosis

This SDK is generated by Mitosis. To see the Mitosis source-code, go here.

Feature Support

To check the status of the SDK, look at these tables.

Fetch

This Package uses fetch. See these docs for more information.

Version Support

This SDK supports Angular version >=16.2.12.

0.2.23

8 months ago

0.2.22

8 months ago

0.2.21

8 months ago

0.2.20

8 months ago

0.2.19

8 months ago

0.2.18

8 months ago

0.2.17

9 months ago

0.2.16

9 months ago

0.2.15

9 months ago

0.2.14

9 months ago

0.2.16-1

9 months ago

0.2.13

9 months ago

0.2.12

10 months ago

0.2.11

10 months ago

0.2.10

10 months ago

0.0.10

12 months ago

0.1.0

12 months ago

0.2.1

11 months ago

0.1.2

12 months ago

0.0.3

1 year ago

0.2.0

12 months ago

0.1.1

12 months ago

0.0.2

1 year ago

0.2.7

10 months ago

0.0.9

12 months ago

0.2.6

11 months ago

0.0.8

12 months ago

0.2.9

10 months ago

0.2.8

10 months ago

0.2.3

11 months ago

0.0.5

1 year ago

0.2.2

11 months ago

0.0.4

1 year ago

0.2.5

11 months ago

0.0.7

12 months ago

0.2.4

11 months ago

0.0.6

1 year ago

0.0.1

1 year ago

0.0.0

1 year ago