suis 0.17.0 → 0.18.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -0
- package/esm2022/lib/components/index.mjs +2 -1
- package/esm2022/lib/components/suis-breadcrumbs/index.mjs +3 -0
- package/esm2022/lib/components/suis-breadcrumbs/suis-breadcrumbs.component.mjs +34 -0
- package/esm2022/lib/components/suis-breadcrumbs/suis-breadcrumbs.interface.mjs +2 -0
- package/esm2022/lib/components/suis-container/suis-container.component.mjs +13 -5
- package/esm2022/lib/components/suis-form-field/suis-form-field.component.mjs +3 -3
- package/esm2022/lib/components/suis-label/suis-label.component.mjs +3 -3
- package/esm2022/lib/components/suis-navigation-group/suis-navigation-group.component.mjs +3 -3
- package/esm2022/lib/components/suis-navigation-group-item/suis-navigation-group-item.component.mjs +2 -2
- package/esm2022/lib/components/suis-navigation-item/suis-navigation-item.component.mjs +2 -2
- package/fesm2022/suis.mjs +55 -20
- package/fesm2022/suis.mjs.map +1 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/suis-breadcrumbs/index.d.ts +2 -0
- package/lib/components/suis-breadcrumbs/suis-breadcrumbs.component.d.ts +16 -0
- package/lib/components/suis-breadcrumbs/suis-breadcrumbs.interface.d.ts +4 -0
- package/lib/components/suis-container/suis-container.component.d.ts +5 -1
- package/package.json +3 -3
@@ -0,0 +1,16 @@
|
|
1
|
+
import { SuisBreadcrumbItem } from './suis-breadcrumbs.interface';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class SuisBreadcrumbsComponent {
|
4
|
+
/**
|
5
|
+
* List of breadcrumbs items. Type of SuisBreadcrumbItem[]. By default set to empty array.
|
6
|
+
*/
|
7
|
+
items: SuisBreadcrumbItem[];
|
8
|
+
/**
|
9
|
+
* Adds a bottom margin below the breadcrumbs. By default set to false.
|
10
|
+
*/
|
11
|
+
spacing: boolean;
|
12
|
+
/** @internal */
|
13
|
+
itemTrackBy(index: number, item: SuisBreadcrumbItem): string;
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuisBreadcrumbsComponent, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, never, true, never>;
|
16
|
+
}
|
@@ -1,5 +1,9 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class SuisContainerComponent {
|
3
|
+
/**
|
4
|
+
* Adds a padding around the container. By default set to false.
|
5
|
+
*/
|
6
|
+
spacing: boolean;
|
3
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisContainerComponent, never>;
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisContainerComponent, "suis-container", never, {}, {}, never, ["*"], true, never>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisContainerComponent, "suis-container", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], true, never>;
|
5
9
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "suis",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.18.1",
|
4
4
|
"main": "src/index.ts",
|
5
5
|
"author": "Karol Jaskółka",
|
6
6
|
"description": "SUIS (Standalone UI + Signals) Angular 16+ Component Library",
|
@@ -14,8 +14,8 @@
|
|
14
14
|
"peerDependencies": {
|
15
15
|
"@angular/common": "^16.0.0",
|
16
16
|
"@angular/core": "^16.0.0",
|
17
|
-
"@angular/
|
18
|
-
"@angular/
|
17
|
+
"@angular/router": "16.0.0",
|
18
|
+
"@angular/forms": "16.0.0"
|
19
19
|
},
|
20
20
|
"dependencies": {
|
21
21
|
"tslib": "^2.3.0"
|