@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.
@@ -10,4 +10,5 @@ export declare const arrowsIcons: {
10
10
  'arrowupleft-regular': string;
11
11
  'arrowelbowright-regular': string;
12
12
  'arrowelbowright-fill': string;
13
+ 'arrowsquarein-regular': string;
13
14
  };
@@ -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
- _biosuisse_deprecated: string;
108
- 'conversion to organic': string;
109
+ conversiontoorganic: string;
109
110
  demeter: string;
110
111
  biosuisse: string;
111
112
  naturland: string;
@@ -5,4 +5,5 @@ export declare const mapsTravelIcons: {
5
5
  'house-regular': string;
6
6
  'house-fill': string;
7
7
  'truck-regular': string;
8
+ 'gpsfix-fill': string;
8
9
  };
@@ -1,7 +1,6 @@
1
1
  export declare const officialSealsIcons: {
2
2
  bioland: string;
3
- _biosuisse_deprecated: string;
4
- 'conversion to organic': string;
3
+ conversiontoorganic: string;
5
4
  demeter: string;
6
5
  biosuisse: string;
7
6
  naturland: string;
@@ -1 +1,2 @@
1
1
  export * from './lib/tag/tag.component';
2
+ export type { TagVariant, TagSize } from './lib/tag/tag.interfaces';
@@ -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<"sm" | "xs">;
4
- variant: import("@angular/core").InputSignal<"primary" | "secondary" | "neutral" | "warning" | "success" | "info" | "disabled" | "alert">;
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>;
@@ -0,0 +1,2 @@
1
+ export type TagVariant = 'danger' | 'warning' | 'success' | 'info' | 'neutral' | 'primary' | 'secondary' | 'disabled';
2
+ export type TagSize = 'xs' | 'sm';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crowdfarming/oliva-ds",
3
- "version": "1.30.0",
3
+ "version": "1.31.0-rc.1",
4
4
  "description": "Librería de componentes de diseño de Oliva",
5
5
  "author": "crowdfarming",
6
6
  "license": "MIT",