@crowdfarming/oliva-ds 1.30.0 → 1.31.0-rc.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/fesm2022/crowdfarming-oliva-ds.mjs +95 -104
- package/fesm2022/crowdfarming-oliva-ds.mjs.map +1 -1
- package/lib/icon/src/lib/icon/svg/arrows.constant.d.ts +1 -0
- package/lib/icon/src/lib/icon/svg/index.d.ts +3 -2
- package/lib/icon/src/lib/icon/svg/mapsTravel.constant.d.ts +1 -0
- package/lib/icon/src/lib/icon/svg/officialSeals.constant.d.ts +1 -2
- package/lib/tag/src/index.d.ts +1 -0
- package/lib/tag/src/lib/tag/tag.component.d.ts +3 -2
- package/lib/tag/src/lib/tag/tag.interfaces.d.ts +2 -0
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export declare const icons: {
|
|
|
21
21
|
'arrowupleft-regular': string;
|
|
22
22
|
'arrowelbowright-regular': string;
|
|
23
23
|
'arrowelbowright-fill': string;
|
|
24
|
+
'arrowsquarein-regular': string;
|
|
24
25
|
'shoppingbagopen-regular': string;
|
|
25
26
|
'shoppingbagopen-fill': string;
|
|
26
27
|
'package-regular': string;
|
|
@@ -91,6 +92,7 @@ export declare const icons: {
|
|
|
91
92
|
'house-regular': string;
|
|
92
93
|
'house-fill': string;
|
|
93
94
|
'truck-regular': string;
|
|
95
|
+
'gpsfix-fill': string;
|
|
94
96
|
'translate-regular': string;
|
|
95
97
|
'megaphone-regular': string;
|
|
96
98
|
'megaphone-fill': string;
|
|
@@ -104,8 +106,7 @@ export declare const icons: {
|
|
|
104
106
|
'sparkle-regular': string;
|
|
105
107
|
'sparkle-fill': string;
|
|
106
108
|
bioland: string;
|
|
107
|
-
|
|
108
|
-
'conversion to organic': string;
|
|
109
|
+
conversiontoorganic: string;
|
|
109
110
|
demeter: string;
|
|
110
111
|
biosuisse: string;
|
|
111
112
|
naturland: string;
|
package/lib/tag/src/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { TagSize, TagVariant } from './tag.interfaces';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class TagComponent {
|
|
3
|
-
size: import("@angular/core").InputSignal<
|
|
4
|
-
variant: import("@angular/core").InputSignal<
|
|
4
|
+
size: import("@angular/core").InputSignal<TagSize>;
|
|
5
|
+
variant: import("@angular/core").InputSignal<TagVariant>;
|
|
5
6
|
text: import("@angular/core").InputSignal<string>;
|
|
6
7
|
extraClass: import("@angular/core").InputSignal<string>;
|
|
7
8
|
showBadge: import("@angular/core").InputSignal<boolean>;
|