ies2-aulapp-ui-kit 0.1.11 → 0.1.13
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/dist/components/ui/resource-badge.d.ts +4 -3
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +217 -208
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ declare const APPEARANCE_LABELS: {
|
|
|
2
2
|
readonly solid: "Colorido sólido";
|
|
3
3
|
readonly white: "Cartão branco";
|
|
4
4
|
readonly ghost: "Ghost colorido";
|
|
5
|
+
readonly 'icon-only': "Apenas ícone";
|
|
5
6
|
};
|
|
6
7
|
export type ResourceBadgeAppearance = keyof typeof APPEARANCE_LABELS;
|
|
7
8
|
declare const RESOURCE_TYPES: {
|
|
@@ -44,10 +45,10 @@ export declare function ResourceBadge({ variant, appearance, className, style, .
|
|
|
44
45
|
export declare const resourceBadges: {
|
|
45
46
|
variant: "conteudo" | "avaliacao" | "lista" | "gamificada" | "simulado" | "material" | "concluido";
|
|
46
47
|
label: string;
|
|
47
|
-
onlyAppearances: ("ghost" | "solid" | "white")[] | undefined;
|
|
48
|
+
onlyAppearances: ("ghost" | "solid" | "white" | "icon-only")[] | undefined;
|
|
48
49
|
}[];
|
|
49
50
|
export declare const resourceBadgeAppearances: {
|
|
50
|
-
appearance: "ghost" | "solid" | "white";
|
|
51
|
-
label: "Colorido sólido" | "Cartão branco" | "Ghost colorido";
|
|
51
|
+
appearance: "ghost" | "solid" | "white" | "icon-only";
|
|
52
|
+
label: "Colorido sólido" | "Cartão branco" | "Ghost colorido" | "Apenas ícone";
|
|
52
53
|
}[];
|
|
53
54
|
export {};
|