suis 1.2.1 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +0 -4
- package/esm2022/lib/components/suis-box/suis-box.component.mjs +9 -3
- package/esm2022/lib/components/suis-chart/suis-chart.component.mjs +3 -3
- package/esm2022/lib/components/suis-container/suis-container.component.mjs +2 -2
- package/esm2022/lib/components/suis-form-field/suis-form-field.component.mjs +2 -2
- package/esm2022/lib/components/suis-input/suis-input.component.mjs +2 -2
- package/esm2022/lib/components/suis-input-image/suis-input-image.component.mjs +3 -3
- package/esm2022/lib/components/suis-input-number/suis-input-number.component.mjs +2 -2
- package/esm2022/lib/components/suis-select/suis-select.component.mjs +3 -3
- package/esm2022/lib/components/suis-select-multi/suis-select-multi.component.mjs +3 -3
- package/esm2022/lib/components/suis-table/suis-table.component.mjs +3 -3
- package/esm2022/lib/components/suis-text-area/suis-text-area.component.mjs +2 -2
- package/fesm2022/suis.mjs +28 -22
- package/fesm2022/suis.mjs.map +1 -1
- package/lib/components/suis-box/suis-box.component.d.ts +5 -1
- package/lib/components/suis-table/suis-table.component.d.ts +1 -1
- package/package.json +1 -2
@@ -4,6 +4,10 @@ export declare class SuisBoxComponent {
|
|
4
4
|
* Adds a padding around the content. By default set to false.
|
5
5
|
*/
|
6
6
|
spacing: boolean;
|
7
|
+
/**
|
8
|
+
* Sets box height to 100%. By default set to false.
|
9
|
+
*/
|
10
|
+
fullHeight: boolean;
|
7
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisBoxComponent, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisBoxComponent, "suis-box", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], true, never>;
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisBoxComponent, "suis-box", never, { "spacing": { "alias": "spacing"; "required": false; }; "fullHeight": { "alias": "fullHeight"; "required": false; }; }, {}, never, ["*"], true, never>;
|
9
13
|
}
|
@@ -9,7 +9,7 @@ export declare class SuisTableComponent {
|
|
9
9
|
/**
|
10
10
|
* Data items collection. Type of SuisTableDataItem[]. By default set to empty array. Required input.
|
11
11
|
*/
|
12
|
-
data: SuisTableDataItem[];
|
12
|
+
data: SuisTableDataItem[] | null;
|
13
13
|
/**
|
14
14
|
* Specifies property that data is ordered. By default set to empty string.
|
15
15
|
*/
|
package/package.json
CHANGED
@@ -1,10 +1,9 @@
|
|
1
1
|
{
|
2
2
|
"name": "suis",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.3.0",
|
4
4
|
"main": "src/index.ts",
|
5
5
|
"author": "Karol Jaskółka",
|
6
6
|
"description": "Angular 16+ Component Library",
|
7
|
-
"homepage": "https://suis-docs.vercel.app/",
|
8
7
|
"bugs": "https://github.com/karoljaskolka/suis/issues",
|
9
8
|
"repository": {
|
10
9
|
"type": "git",
|