@outbuild/supa-store 0.0.2 → 0.0.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/README.md +6 -6
- package/ng-package.json +7 -0
- package/package.json +14 -29
- package/src/lib/common/token/supabase-credentials.token.ts +6 -0
- package/src/lib/supa-store.module.ts +11 -0
- package/src/lib/supa-store.store.ts +43 -0
- package/src/public-api.ts +6 -0
- package/tsconfig.lib.json +15 -0
- package/tsconfig.lib.prod.json +11 -0
- package/tsconfig.spec.json +15 -0
- package/esm2022/fr-supa-store.mjs +0 -5
- package/esm2022/lib/fr-supa-store.component.mjs +0 -25
- package/esm2022/lib/fr-supa-store.service.mjs +0 -14
- package/esm2022/public-api.mjs +0 -6
- package/fesm2022/fr-supa-store.mjs +0 -48
- package/fesm2022/fr-supa-store.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/jsr.json +0 -6
- package/lib/fr-supa-store.component.d.ts +0 -6
- package/lib/fr-supa-store.service.d.ts +0 -6
- package/public-api.d.ts +0 -2
package/README.md
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ObSupaStore
|
|
2
2
|
|
|
3
3
|
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 18.2.0.
|
|
4
4
|
|
|
5
5
|
## Code scaffolding
|
|
6
6
|
|
|
7
|
-
Run `ng generate component component-name --project
|
|
8
|
-
> Note: Don't forget to add `--project
|
|
7
|
+
Run `ng generate component component-name --project ob-supa-store` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project ob-supa-store`.
|
|
8
|
+
> Note: Don't forget to add `--project ob-supa-store` or else it will be added to the default project in your `angular.json` file.
|
|
9
9
|
|
|
10
10
|
## Build
|
|
11
11
|
|
|
12
|
-
Run `ng build
|
|
12
|
+
Run `ng build ob-supa-store` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
13
|
|
|
14
14
|
## Publishing
|
|
15
15
|
|
|
16
|
-
After building your library with `ng build
|
|
16
|
+
After building your library with `ng build ob-supa-store`, go to the dist folder `cd dist/ob-supa-store` and run `npm publish`.
|
|
17
17
|
|
|
18
18
|
## Running unit tests
|
|
19
19
|
|
|
20
|
-
Run `ng test
|
|
20
|
+
Run `ng test ob-supa-store` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
21
|
|
|
22
22
|
## Further help
|
|
23
23
|
|
package/ng-package.json
ADDED
package/package.json
CHANGED
|
@@ -1,29 +1,14 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@outbuild/supa-store",
|
|
3
|
-
"
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"sideEffects": false,
|
|
16
|
-
"module": "fesm2022/fr-supa-store.mjs",
|
|
17
|
-
"typings": "index.d.ts",
|
|
18
|
-
"exports": {
|
|
19
|
-
"./package.json": {
|
|
20
|
-
"default": "./package.json"
|
|
21
|
-
},
|
|
22
|
-
".": {
|
|
23
|
-
"types": "./index.d.ts",
|
|
24
|
-
"esm2022": "./esm2022/fr-supa-store.mjs",
|
|
25
|
-
"esm": "./esm2022/fr-supa-store.mjs",
|
|
26
|
-
"default": "./fesm2022/fr-supa-store.mjs"
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@outbuild/supa-store",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^18.2.0",
|
|
6
|
+
"@angular/core": "^18.2.0",
|
|
7
|
+
"@ngrx/signals": "^18.0.2",
|
|
8
|
+
"@supabase/supabase-js": "^2.45.3"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"tslib": "^2.3.0"
|
|
12
|
+
},
|
|
13
|
+
"sideEffects": false
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EnvironmentProviders, makeEnvironmentProviders, ModuleWithProviders, NgModule } from "@angular/core"
|
|
2
|
+
import { SupaStore } from "./supa-store.store"
|
|
3
|
+
import { SUPABASE_CREDENTIALS } from "./common/token/supabase-credentials.token"
|
|
4
|
+
|
|
5
|
+
export function provideSupaStore(supabaseUrl: string, supabaseKey: string): EnvironmentProviders { return makeEnvironmentProviders([
|
|
6
|
+
{
|
|
7
|
+
provide: SUPABASE_CREDENTIALS,
|
|
8
|
+
useValue: { supabaseUrl, supabaseKey }
|
|
9
|
+
},
|
|
10
|
+
SupaStore
|
|
11
|
+
])}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { inject } from '@angular/core';
|
|
2
|
+
import { patchState, signalStore, signalStoreFeature, withHooks, withMethods, withState } from '@ngrx/signals';
|
|
3
|
+
import { AuthChangeEvent, Session, SupabaseClient, createClient } from '@supabase/supabase-js'
|
|
4
|
+
import { SUPABASE_CREDENTIALS } from './common/token/supabase-credentials.token'
|
|
5
|
+
|
|
6
|
+
export type SupaStoreState = {
|
|
7
|
+
client: SupabaseClient
|
|
8
|
+
session: Session | undefined | null
|
|
9
|
+
authState: AuthChangeEvent | null
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
function withSupaStore() {
|
|
13
|
+
|
|
14
|
+
const { supabaseUrl, supabaseKey } = inject(SUPABASE_CREDENTIALS)
|
|
15
|
+
|
|
16
|
+
return signalStoreFeature(
|
|
17
|
+
|
|
18
|
+
withState<SupaStoreState>({
|
|
19
|
+
client: createClient(supabaseUrl, supabaseKey),
|
|
20
|
+
session: undefined,
|
|
21
|
+
authState: null
|
|
22
|
+
}),
|
|
23
|
+
|
|
24
|
+
withMethods(( store ) => ({
|
|
25
|
+
initSession: async () => {
|
|
26
|
+
const { data: { session }} = await store.client().auth.getSession()
|
|
27
|
+
patchState(store, { session: session as Session })
|
|
28
|
+
}
|
|
29
|
+
})),
|
|
30
|
+
|
|
31
|
+
withHooks({
|
|
32
|
+
onInit(store) {
|
|
33
|
+
store.initSession()
|
|
34
|
+
store.client().auth.onAuthStateChange(res => patchState(store, { authState: res }))
|
|
35
|
+
}
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
)
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export const SupaStore = signalStore(
|
|
42
|
+
withSupaStore()
|
|
43
|
+
)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
+
{
|
|
4
|
+
"extends": "../../tsconfig.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"outDir": "../../out-tsc/lib",
|
|
7
|
+
"declaration": true,
|
|
8
|
+
"declarationMap": true,
|
|
9
|
+
"inlineSources": true,
|
|
10
|
+
"types": []
|
|
11
|
+
},
|
|
12
|
+
"exclude": [
|
|
13
|
+
"**/*.spec.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
+
{
|
|
4
|
+
"extends": "./tsconfig.lib.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"declarationMap": false
|
|
7
|
+
},
|
|
8
|
+
"angularCompilerOptions": {
|
|
9
|
+
"compilationMode": "partial"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
|
2
|
+
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
|
3
|
+
{
|
|
4
|
+
"extends": "../../tsconfig.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"outDir": "../../out-tsc/spec",
|
|
7
|
+
"types": [
|
|
8
|
+
"jasmine"
|
|
9
|
+
]
|
|
10
|
+
},
|
|
11
|
+
"include": [
|
|
12
|
+
"**/*.spec.ts",
|
|
13
|
+
"**/*.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Generated bundle index. Do not edit.
|
|
3
|
-
*/
|
|
4
|
-
export * from './public-api';
|
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZnItc3VwYS1zdG9yZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2ZyLXN1cGEtc3RvcmUvc3JjL2ZyLXN1cGEtc3RvcmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
/** This is a comp description **/
|
|
4
|
-
export class FrSupaStoreComponent {
|
|
5
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: FrSupaStoreComponent, isStandalone: true, selector: "fr-supa-store", ngImport: i0, template: `
|
|
7
|
-
<p>
|
|
8
|
-
fr-supa-store works!
|
|
9
|
-
</p>
|
|
10
|
-
`, isInline: true });
|
|
11
|
-
}
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreComponent, decorators: [{
|
|
13
|
-
type: Component,
|
|
14
|
-
args: [{
|
|
15
|
-
selector: 'fr-supa-store',
|
|
16
|
-
standalone: true,
|
|
17
|
-
imports: [],
|
|
18
|
-
template: `
|
|
19
|
-
<p>
|
|
20
|
-
fr-supa-store works!
|
|
21
|
-
</p>
|
|
22
|
-
`
|
|
23
|
-
}]
|
|
24
|
-
}] });
|
|
25
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZnItc3VwYS1zdG9yZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9mci1zdXBhLXN0b3JlL3NyYy9saWIvZnItc3VwYS1zdG9yZS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFFMUMsbUNBQW1DO0FBV25DLE1BQU0sT0FBTyxvQkFBb0I7dUdBQXBCLG9CQUFvQjsyRkFBcEIsb0JBQW9CLHlFQU5yQjs7OztHQUlUOzsyRkFFVSxvQkFBb0I7a0JBVmhDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGVBQWU7b0JBQ3pCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixPQUFPLEVBQUUsRUFBRTtvQkFDWCxRQUFRLEVBQUU7Ozs7R0FJVDtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuLyoqICBUaGlzIGlzIGEgY29tcCBkZXNjcmlwdGlvbiAqKi9cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdmci1zdXBhLXN0b3JlJyxcclxuICBzdGFuZGFsb25lOiB0cnVlLFxyXG4gIGltcG9ydHM6IFtdLFxyXG4gIHRlbXBsYXRlOiBgXHJcbiAgICA8cD5cclxuICAgICAgZnItc3VwYS1zdG9yZSB3b3JrcyFcclxuICAgIDwvcD5cclxuICBgXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBGclN1cGFTdG9yZUNvbXBvbmVudCB7XHJcblxyXG59XHJcbiJdfQ==
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class FrSupaStoreService {
|
|
4
|
-
constructor() { }
|
|
5
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreService, providedIn: 'root' });
|
|
7
|
-
}
|
|
8
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreService, decorators: [{
|
|
9
|
-
type: Injectable,
|
|
10
|
-
args: [{
|
|
11
|
-
providedIn: 'root'
|
|
12
|
-
}]
|
|
13
|
-
}], ctorParameters: () => [] });
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZnItc3VwYS1zdG9yZS5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvZnItc3VwYS1zdG9yZS9zcmMvbGliL2ZyLXN1cGEtc3RvcmUuc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8sa0JBQWtCO0lBRTdCLGdCQUFnQixDQUFDO3VHQUZOLGtCQUFrQjsyR0FBbEIsa0JBQWtCLGNBRmpCLE1BQU07OzJGQUVQLGtCQUFrQjtrQkFIOUIsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5ASW5qZWN0YWJsZSh7XHJcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBGclN1cGFTdG9yZVNlcnZpY2Uge1xyXG5cclxuICBjb25zdHJ1Y3RvcigpIHsgfVxyXG59XHJcbiJdfQ==
|
package/esm2022/public-api.mjs
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of fr-supa-store
|
|
3
|
-
*/
|
|
4
|
-
export * from './lib/fr-supa-store.service';
|
|
5
|
-
export * from './lib/fr-supa-store.component';
|
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2ZyLXN1cGEtc3RvcmUvc3JjL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMsK0JBQStCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxyXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgZnItc3VwYS1zdG9yZVxyXG4gKi9cclxuXHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ZyLXN1cGEtc3RvcmUuc2VydmljZSc7XHJcbmV4cG9ydCAqIGZyb20gJy4vbGliL2ZyLXN1cGEtc3RvcmUuY29tcG9uZW50JztcclxuIl19
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, Component } from '@angular/core';
|
|
3
|
-
|
|
4
|
-
class FrSupaStoreService {
|
|
5
|
-
constructor() { }
|
|
6
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
7
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreService, providedIn: 'root' });
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreService, decorators: [{
|
|
10
|
-
type: Injectable,
|
|
11
|
-
args: [{
|
|
12
|
-
providedIn: 'root'
|
|
13
|
-
}]
|
|
14
|
-
}], ctorParameters: () => [] });
|
|
15
|
-
|
|
16
|
-
/** This is a comp description **/
|
|
17
|
-
class FrSupaStoreComponent {
|
|
18
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
19
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.2", type: FrSupaStoreComponent, isStandalone: true, selector: "fr-supa-store", ngImport: i0, template: `
|
|
20
|
-
<p>
|
|
21
|
-
fr-supa-store works!
|
|
22
|
-
</p>
|
|
23
|
-
`, isInline: true });
|
|
24
|
-
}
|
|
25
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.2", ngImport: i0, type: FrSupaStoreComponent, decorators: [{
|
|
26
|
-
type: Component,
|
|
27
|
-
args: [{
|
|
28
|
-
selector: 'fr-supa-store',
|
|
29
|
-
standalone: true,
|
|
30
|
-
imports: [],
|
|
31
|
-
template: `
|
|
32
|
-
<p>
|
|
33
|
-
fr-supa-store works!
|
|
34
|
-
</p>
|
|
35
|
-
`
|
|
36
|
-
}]
|
|
37
|
-
}] });
|
|
38
|
-
|
|
39
|
-
/*
|
|
40
|
-
* Public API Surface of fr-supa-store
|
|
41
|
-
*/
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* Generated bundle index. Do not edit.
|
|
45
|
-
*/
|
|
46
|
-
|
|
47
|
-
export { FrSupaStoreComponent, FrSupaStoreService };
|
|
48
|
-
//# sourceMappingURL=fr-supa-store.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"fr-supa-store.mjs","sources":["../../../projects/fr-supa-store/src/lib/fr-supa-store.service.ts","../../../projects/fr-supa-store/src/lib/fr-supa-store.component.ts","../../../projects/fr-supa-store/src/public-api.ts","../../../projects/fr-supa-store/src/fr-supa-store.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class FrSupaStoreService {\r\n\r\n constructor() { }\r\n}\r\n","import { Component } from '@angular/core';\r\n\r\n/** This is a comp description **/\r\n@Component({\r\n selector: 'fr-supa-store',\r\n standalone: true,\r\n imports: [],\r\n template: `\r\n <p>\r\n fr-supa-store works!\r\n </p>\r\n `\r\n})\r\nexport class FrSupaStoreComponent {\r\n\r\n}\r\n","/*\r\n * Public API Surface of fr-supa-store\r\n */\r\n\r\nexport * from './lib/fr-supa-store.service';\r\nexport * from './lib/fr-supa-store.component';\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,kBAAkB,CAAA;AAE7B,IAAA,WAAA,GAAA,GAAiB;uGAFN,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA,CAAA;AAAlB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kBAAkB,cAFjB,MAAM,EAAA,CAAA,CAAA;;2FAEP,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAH9B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA,CAAA;;;ACFD;MAWa,oBAAoB,CAAA;uGAApB,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,EANrB,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,eAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAAA,CAAA;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,CAAA;;2FAEU,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAVhC,SAAS;AAAC,YAAA,IAAA,EAAA,CAAA;AACT,oBAAA,QAAQ,EAAE,eAAe;AACzB,oBAAA,UAAU,EAAE,IAAI;AAChB,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,QAAQ,EAAE,CAAA;;;;AAIT,EAAA,CAAA;AACF,iBAAA,CAAA;;;ACZD;;AAEG;;ACFH;;AAEG;;;;"}
|
package/index.d.ts
DELETED
package/jsr.json
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
/** This is a comp description **/
|
|
3
|
-
export declare class FrSupaStoreComponent {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FrSupaStoreComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FrSupaStoreComponent, "fr-supa-store", never, {}, {}, never, never, true, never>;
|
|
6
|
-
}
|
package/public-api.d.ts
DELETED