suis 0.18.0 → 0.19.0
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 +1 -0
- package/esm2022/lib/components/index.mjs +2 -1
- package/esm2022/lib/components/suis-breadcrumbs/suis-breadcrumbs.component.mjs +9 -3
- 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/suis-navigation.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/esm2022/lib/components/suis-title/index.mjs +2 -0
- package/esm2022/lib/components/suis-title/suis-title.component.mjs +21 -0
- package/fesm2022/suis.mjs +49 -18
- package/fesm2022/suis.mjs.map +1 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/suis-breadcrumbs/suis-breadcrumbs.component.d.ts +5 -1
- package/lib/components/suis-container/suis-container.component.d.ts +5 -1
- package/lib/components/suis-title/index.d.ts +1 -0
- package/lib/components/suis-title/suis-title.component.d.ts +9 -0
- package/package.json +3 -3
@@ -5,8 +5,12 @@ export declare class SuisBreadcrumbsComponent {
|
|
5
5
|
* List of breadcrumbs items. Type of SuisBreadcrumbItem[]. By default set to empty array.
|
6
6
|
*/
|
7
7
|
items: SuisBreadcrumbItem[];
|
8
|
+
/**
|
9
|
+
* Adds a bottom margin below the breadcrumbs. By default set to false.
|
10
|
+
*/
|
11
|
+
spacing: boolean;
|
8
12
|
/** @internal */
|
9
13
|
itemTrackBy(index: number, item: SuisBreadcrumbItem): string;
|
10
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisBreadcrumbsComponent, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, never, true, never>;
|
12
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
|
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './suis-title.component';
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class SuisTitleComponent {
|
3
|
+
/**
|
4
|
+
* Adds a bottom margin below the title. By default set to false.
|
5
|
+
*/
|
6
|
+
spacing: boolean;
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SuisTitleComponent, never>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTitleComponent, "suis-title", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], true, never>;
|
9
|
+
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "suis",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.19.0",
|
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"
|