valtech-components 1.11.22 → 1.11.29

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 (32) hide show
  1. package/esm2022/lib/components/atoms/box/box.component.mjs +33 -0
  2. package/esm2022/lib/components/atoms/button/button.component.mjs +2 -2
  3. package/esm2022/lib/components/atoms/button/types.mjs +1 -1
  4. package/esm2022/lib/components/atoms/divider/divider.component.mjs +8 -4
  5. package/esm2022/lib/components/atoms/icon/icon.component.mjs +23 -0
  6. package/esm2022/lib/components/molecules/button-group/button-group.component.mjs +27 -0
  7. package/esm2022/lib/components/molecules/title-block/title-block.component.mjs +26 -0
  8. package/esm2022/lib/components/molecules/title-block/types.mjs +2 -0
  9. package/esm2022/lib/components/organisms/alert-box/alert-box.component.mjs +31 -0
  10. package/esm2022/lib/components/organisms/banner/banner.component.mjs +32 -0
  11. package/esm2022/lib/components/organisms/banner/types.mjs +2 -0
  12. package/esm2022/lib/components/organisms/notes-box/notes-box.component.mjs +29 -0
  13. package/esm2022/lib/valtech-components.module.mjs +41 -6
  14. package/esm2022/public-api.mjs +8 -1
  15. package/fesm2022/valtech-components.mjs +210 -10
  16. package/fesm2022/valtech-components.mjs.map +1 -1
  17. package/lib/components/atoms/box/box.component.d.ts +15 -0
  18. package/lib/components/atoms/button/button.component.d.ts +1 -1
  19. package/lib/components/atoms/button/types.d.ts +1 -0
  20. package/lib/components/atoms/divider/divider.component.d.ts +1 -1
  21. package/lib/components/atoms/icon/icon.component.d.ts +12 -0
  22. package/lib/components/molecules/button-group/button-group.component.d.ts +13 -0
  23. package/lib/components/molecules/title-block/title-block.component.d.ts +13 -0
  24. package/lib/components/molecules/title-block/types.d.ts +11 -0
  25. package/lib/components/organisms/alert-box/alert-box.component.d.ts +14 -0
  26. package/lib/components/organisms/banner/banner.component.d.ts +14 -0
  27. package/lib/components/organisms/banner/types.d.ts +11 -0
  28. package/lib/components/organisms/notes-box/notes-box.component.d.ts +14 -0
  29. package/lib/valtech-components.module.d.ts +20 -13
  30. package/package.json +1 -1
  31. package/public-api.d.ts +7 -0
  32. package/src/lib/components/styles/overrides.scss +2 -1
package/public-api.d.ts CHANGED
@@ -6,10 +6,17 @@ export * from './lib/components/atoms/title/title.component';
6
6
  export * from './lib/components/atoms/display/display.component';
7
7
  export * from './lib/components/atoms/avatar/avatar.component';
8
8
  export * from './lib/components/atoms/divider/divider.component';
9
+ export * from './lib/components/atoms/box/box.component';
10
+ export * from './lib/components/atoms/icon/icon.component';
9
11
  export * from './lib/components/molecules/content-loader/content-loader.component';
10
12
  export * from './lib/components/molecules/link/link.component';
11
13
  export * from './lib/components/molecules/searchbar/searchbar.component';
14
+ export * from './lib/components/molecules/button-group/button-group.component';
15
+ export * from './lib/components/molecules/title-block/title-block.component';
12
16
  export * from './lib/components/organisms/toolbar/toolbar.component';
17
+ export * from './lib/components/organisms/notes-box/notes-box.component';
18
+ export * from './lib/components/organisms/alert-box/alert-box.component';
19
+ export * from './lib/components/organisms/banner/banner.component';
13
20
  export * from './lib/services/lang-provider/lang-provider.service';
14
21
  export * from './lib/services/lang-provider/types';
15
22
  export * from './lib/services/local-storage.service';
@@ -37,8 +37,9 @@ ion-card {
37
37
 
38
38
  input {
39
39
  &.native-input {
40
+ font-family: var(--ion-default-font), Arial, sans-serif;
40
41
  margin-top: pxToRem(6) !important;
41
- padding: pxToRem(4) !important;
42
+ padding: pxToRem(4) pxToRem(8) !important;
42
43
 
43
44
  border: pxToRem(1) solid var(--ion-color-medium) !important;
44
45
  border-radius: pxToRem($border-radius-small) !important;