@goat-bravos/intern-hub-layout 1.2.0 → 2.0.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.
Files changed (64) hide show
  1. package/README.md +35 -22
  2. package/fesm2022/goat-bravos-intern-hub-layout.mjs +867 -0
  3. package/fesm2022/goat-bravos-intern-hub-layout.mjs.map +1 -0
  4. package/package.json +17 -24
  5. package/types/goat-bravos-intern-hub-layout.d.ts +328 -0
  6. package/.editorconfig +0 -17
  7. package/.vscode/extensions.json +0 -4
  8. package/.vscode/launch.json +0 -20
  9. package/.vscode/mcp.json +0 -9
  10. package/.vscode/tasks.json +0 -42
  11. package/angular.json +0 -40
  12. package/ng-package.json +0 -11
  13. package/src/libs/layouts/header/header.component.html +0 -58
  14. package/src/libs/layouts/header/header.component.scss +0 -108
  15. package/src/libs/layouts/header/header.component.ts +0 -70
  16. package/src/libs/layouts/sidebar/sidebar.component.html +0 -28
  17. package/src/libs/layouts/sidebar/sidebar.component.scss +0 -44
  18. package/src/libs/layouts/sidebar/sidebar.component.ts +0 -55
  19. package/src/libs/shared/components/approval/approval-list/approval-list.component.html +0 -19
  20. package/src/libs/shared/components/approval/approval-list/approval-list.component.scss +0 -24
  21. package/src/libs/shared/components/approval/approval-list/approval-list.component.ts +0 -19
  22. package/src/libs/shared/components/approval/approval-list-item/approval-list-item.component.html +0 -21
  23. package/src/libs/shared/components/approval/approval-list-item/approval-list-item.component.scss +0 -28
  24. package/src/libs/shared/components/approval/approval-list-item/approval-list-item.component.ts +0 -20
  25. package/src/libs/shared/components/approval/approval-list-item/approval-list-item.model.ts +0 -8
  26. package/src/libs/shared/components/button/button-container/button-container.component.html +0 -20
  27. package/src/libs/shared/components/button/button-container/button-container.component.scss +0 -49
  28. package/src/libs/shared/components/button/button-container/button-container.component.ts +0 -34
  29. package/src/libs/shared/components/button/button-container/button-container.model.ts +0 -58
  30. package/src/libs/shared/components/button/label-button/label-button.component.html +0 -11
  31. package/src/libs/shared/components/button/label-button/label-button.component.scss +0 -13
  32. package/src/libs/shared/components/button/label-button/label-button.component.ts +0 -18
  33. package/src/libs/shared/components/functional-label/functional-label.component.html +0 -36
  34. package/src/libs/shared/components/functional-label/functional-label.component.scss +0 -56
  35. package/src/libs/shared/components/functional-label/functional-label.component.ts +0 -141
  36. package/src/libs/shared/components/icon/icon.component.html +0 -12
  37. package/src/libs/shared/components/icon/icon.component.scss +0 -11
  38. package/src/libs/shared/components/icon/icon.component.ts +0 -61
  39. package/src/libs/shared/components/input/input-calendar/input-calendar.component.html +0 -52
  40. package/src/libs/shared/components/input/input-calendar/input-calendar.component.scss +0 -98
  41. package/src/libs/shared/components/input/input-calendar/input-calendar.component.ts +0 -126
  42. package/src/libs/shared/components/input/input-label/input-label.component.html +0 -0
  43. package/src/libs/shared/components/input/input-label/input-label.component.scss +0 -0
  44. package/src/libs/shared/components/input/input-label/input-label.component.ts +0 -0
  45. package/src/libs/shared/components/input/input-stepper/input-stepper.component.html +0 -62
  46. package/src/libs/shared/components/input/input-stepper/input-stepper.component.scss +0 -211
  47. package/src/libs/shared/components/input/input-stepper/input-stepper.component.ts +0 -73
  48. package/src/libs/shared/components/input/input-text/input-text.component.html +0 -40
  49. package/src/libs/shared/components/input/input-text/input-text.component.scss +0 -143
  50. package/src/libs/shared/components/input/input-text/input-text.component.ts +0 -63
  51. package/src/libs/shared/components/pop-up/pop-up-confirm/pop-up-confirm.component.html +0 -15
  52. package/src/libs/shared/components/pop-up/pop-up-confirm/pop-up-confirm.component.scss +0 -70
  53. package/src/libs/shared/components/pop-up/pop-up-confirm/pop-up-confirm.component.ts +0 -29
  54. package/src/libs/shared/components/table/table-body/table-body.component.html +0 -18
  55. package/src/libs/shared/components/table/table-body/table-body.component.scss +0 -6
  56. package/src/libs/shared/components/table/table-body/table-body.component.ts +0 -17
  57. package/src/libs/shared/components/table/table-header/table-header.component.html +0 -27
  58. package/src/libs/shared/components/table/table-header/table-header.component.scss +0 -91
  59. package/src/libs/shared/components/table/table-header/table-header.component.ts +0 -25
  60. package/src/public-api.ts +0 -34
  61. package/tsconfig.json +0 -38
  62. package/tsconfig.lib.json +0 -17
  63. package/tsconfig.lib.prod.json +0 -11
  64. package/tsconfig.spec.json +0 -15
package/README.md CHANGED
@@ -283,16 +283,20 @@ export class MyComponent {
283
283
 
284
284
  **Inputs:**
285
285
 
286
- | Input | Type | Default | Description |
287
- | ----------------- | ------------------------------ | ---------------------- | --------------------- |
288
- | `size` | `'xs' \| 'sm' \| 'md' \| 'lg'` | `'md'` | Button size variant |
289
- | `content` | `string` | `''` | Button text |
290
- | `leftIcon` | `string` | - | Left icon text/class |
291
- | `rightIcon` | `string` | - | Right icon text/class |
292
- | `color` | `string` | `'var(--brand-100)'` | Text color |
293
- | `backgroundColor` | `string` | `'var(--utility-900)'` | Background color |
294
- | `borderColor` | `string` | `'var(--brand-100)'` | Border color |
295
- | `fontSize` | `string` | - | Custom font size |
286
+ | Input | Type | Default | Description |
287
+ | ----------------- | ------------------------------ | ---------------------- | ------------------------ |
288
+ | Input | Type | Default | Description |
289
+ | ----------------- | ------------------------------ | ---------------------- | ------------------------ |
290
+ | `size` | `'xs' \| 'sm' \| 'md' \| 'lg'` | `'md'` (Optional) | Button size variant |
291
+ | `content` | `string` | `''` | Button text |
292
+ | `leftIcon` | `string` | - | Left icon text/class |
293
+ | `rightIcon` | `string` | - | Right icon text/class |
294
+ | `color` | `string` | `'var(--brand-100)'` | Text color |
295
+ | `backgroundColor` | `string` | `'var(--utility-900)'` | Background color |
296
+ | `borderColor` | `string` | `'var(--brand-100)'` | Border color |
297
+ | `borderRadius` | `string` | - | Button border radius |
298
+ | `width` | `string` | - | Button width |
299
+ | `fontSize` | `string` | - | Custom font size |
296
300
 
297
301
  **Outputs:**
298
302
 
@@ -381,18 +385,27 @@ export class MyComponent {
381
385
 
382
386
  **Inputs:**
383
387
 
384
- | Input | Type | Default | Description |
385
- | ------------- | --------- | -------- | ------------------------------ |
386
- | `headerInput` | `string` | `''` | Label text above input |
387
- | `placeholder` | `string` | `''` | Placeholder text |
388
- | `value` | `string` | `''` | Input value (two-way binding) |
389
- | `readonly` | `boolean` | `false` | Read-only state |
390
- | `required` | `boolean` | `false` | Shows required indicator (\*) |
391
- | `width` | `string` | `'100%'` | Container width |
392
- | `maxLength` | `number` | `0` | Max characters (0 = unlimited) |
393
- | `showLimit` | `boolean` | `false` | Show character count |
394
- | `icon` | `string` | `''` | Icon class for input |
395
- | `typeInput` | `string` | `'text'` | Input type |
388
+ | Input | Type | Default | Description |
389
+ | ------------------ | --------- | -------- | --------------------------------- |
390
+ | `headerInput` | `string` | `''` | Label text above input |
391
+ | `placeholder` | `string` | `''` | Placeholder text |
392
+ | `value` | `string` | `''` | Input value (two-way binding) |
393
+ | `readonly` | `boolean` | `false` | Read-only state |
394
+ | `required` | `boolean` | `false` | Shows required indicator (\*) |
395
+ | `width` | `string` | `'100%'` | Container width |
396
+ | `height` | `string` | - | Input height |
397
+ | `padding` | `string` | - | Input padding |
398
+ | `maxLength` | `number` | `0` | Max characters (0 = unlimited) |
399
+ | `showLimit` | `boolean` | `false` | Show character count |
400
+ | `icon` | `string` | `''` | Icon class for input |
401
+ | `typeInput` | `string` | `'text'` | Input type (text, password, etc.) |
402
+ | `backgroundColor` | `string` | - | Input background color |
403
+ | `borderColor` | `string` | - | Input border color |
404
+ | `borderColorHover` | `string` | - | Input border color on hover |
405
+ | `borderRadius` | `string` | - | Input border radius |
406
+ | `placeholderColor` | `string` | - | Placeholder text color |
407
+ | `fontSize` | `string` | - | Input font size |
408
+ | `fontWeight` | `string` | - | Input font weight |
396
409
 
397
410
  **Outputs:**
398
411