@danarakca/keu-ui 1.0.0 → 1.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danarakca/keu-ui",
3
- "version": "1.0.0",
3
+ "version": "1.1.1",
4
4
  "description": "Keu Design System - Shared UI components library",
5
5
  "keywords": [
6
6
  "angular",
@@ -2,6 +2,9 @@
2
2
  // Danarakca Design System — Design Tokens
3
3
  // =============================================================================
4
4
 
5
+ // Import Inter font from Google Fonts
6
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
7
+
5
8
  :root {
6
9
  // ===========================================================================
7
10
  // GLOBAL COLORS — WARNA PUBLIK
@@ -308,6 +308,7 @@ declare class KeuTableComponent {
308
308
  emptyText: string;
309
309
  loading: boolean;
310
310
  stickyHeader: boolean;
311
+ headerVariant: 'default' | 'primary';
311
312
  paginated: boolean;
312
313
  pageSize: number;
313
314
  currentPage: number;
@@ -347,7 +348,7 @@ declare class KeuTableComponent {
347
348
  onPageSizeChange(event: Event): void;
348
349
  private emitSelection;
349
350
  static ɵfac: i0.ɵɵFactoryDeclaration<KeuTableComponent, never>;
350
- static ɵcmp: i0.ɵɵComponentDeclaration<KeuTableComponent, "keu-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "hoverable": { "alias": "hoverable"; "required": false; }; "bordered": { "alias": "bordered"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; }; "paginated": { "alias": "paginated"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "pageSizes": { "alias": "pageSizes"; "required": false; }; "paginationShape": { "alias": "paginationShape"; "required": false; }; }, { "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowClick": "rowClick"; "pageChange": "pageChange"; }, ["emptyTemplate", "cellTemplates", "headerCellTemplates"], never, true, never>;
351
+ static ɵcmp: i0.ɵɵComponentDeclaration<KeuTableComponent, "keu-table", never, { "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "striped": { "alias": "striped"; "required": false; }; "hoverable": { "alias": "hoverable"; "required": false; }; "bordered": { "alias": "bordered"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; }; "headerVariant": { "alias": "headerVariant"; "required": false; }; "paginated": { "alias": "paginated"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "pageSizes": { "alias": "pageSizes"; "required": false; }; "paginationShape": { "alias": "paginationShape"; "required": false; }; }, { "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowClick": "rowClick"; "pageChange": "pageChange"; }, ["emptyTemplate", "cellTemplates", "headerCellTemplates"], never, true, never>;
351
352
  }
352
353
 
353
354
  type KeuCheckboxLayout = 'block' | 'inline';