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.
- package/esm2022/lib/components/atoms/box/box.component.mjs +33 -0
- package/esm2022/lib/components/atoms/button/button.component.mjs +2 -2
- package/esm2022/lib/components/atoms/button/types.mjs +1 -1
- package/esm2022/lib/components/atoms/divider/divider.component.mjs +8 -4
- package/esm2022/lib/components/atoms/icon/icon.component.mjs +23 -0
- package/esm2022/lib/components/molecules/button-group/button-group.component.mjs +27 -0
- package/esm2022/lib/components/molecules/title-block/title-block.component.mjs +26 -0
- package/esm2022/lib/components/molecules/title-block/types.mjs +2 -0
- package/esm2022/lib/components/organisms/alert-box/alert-box.component.mjs +31 -0
- package/esm2022/lib/components/organisms/banner/banner.component.mjs +32 -0
- package/esm2022/lib/components/organisms/banner/types.mjs +2 -0
- package/esm2022/lib/components/organisms/notes-box/notes-box.component.mjs +29 -0
- package/esm2022/lib/valtech-components.module.mjs +41 -6
- package/esm2022/public-api.mjs +8 -1
- package/fesm2022/valtech-components.mjs +210 -10
- package/fesm2022/valtech-components.mjs.map +1 -1
- package/lib/components/atoms/box/box.component.d.ts +15 -0
- package/lib/components/atoms/button/button.component.d.ts +1 -1
- package/lib/components/atoms/button/types.d.ts +1 -0
- package/lib/components/atoms/divider/divider.component.d.ts +1 -1
- package/lib/components/atoms/icon/icon.component.d.ts +12 -0
- package/lib/components/molecules/button-group/button-group.component.d.ts +13 -0
- package/lib/components/molecules/title-block/title-block.component.d.ts +13 -0
- package/lib/components/molecules/title-block/types.d.ts +11 -0
- package/lib/components/organisms/alert-box/alert-box.component.d.ts +14 -0
- package/lib/components/organisms/banner/banner.component.d.ts +14 -0
- package/lib/components/organisms/banner/types.d.ts +11 -0
- package/lib/components/organisms/notes-box/notes-box.component.d.ts +14 -0
- package/lib/valtech-components.module.d.ts +20 -13
- package/package.json +1 -1
- package/public-api.d.ts +7 -0
- 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;
|