@datarailsshared/datarailsshared 1.6.357 → 1.6.361
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/assets/styles/colors.scss +1 -0
- package/datarailsshared-datarailsshared-1.6.361.tgz +0 -0
- package/esm2022/lib/dr-badge/dr-badge.component.mjs +3 -3
- package/esm2022/lib/dr-code-editor/dr-code-editor.component.mjs +2 -2
- package/esm2022/lib/models/colors.mjs +3 -1
- package/fesm2022/datarailsshared-datarailsshared.mjs +7 -5
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-badge/dr-badge.component.d.ts +1 -1
- package/lib/models/colors.d.ts +2 -0
- package/package.json +1 -1
- package/styles.scss +1 -0
- package/datarailsshared-datarailsshared-1.6.357.tgz +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export type TBadgeSize = 'medium' | 'small';
|
|
3
|
-
export type TBadgeColor = 'light-purple' | 'water' | 'baby-blue' | 'baby-pink' | 'light-turquoise' | 'bright-green' | 'stone' | 'peach' | 'soft-coral' | 'pale-yellow' | 'pastel-olive' | 'powder-blue-grey' | 'muted-plum';
|
|
3
|
+
export type TBadgeColor = 'light-purple' | 'water' | 'baby-blue' | 'baby-pink' | 'light-turquoise' | 'bright-green' | 'stone' | 'peach' | 'soft-coral' | 'pale-yellow' | 'pastel-olive' | 'powder-blue-grey' | 'muted-plum' | 'purple';
|
|
4
4
|
export declare class DrBadgeComponent {
|
|
5
5
|
color: TBadgeColor;
|
|
6
6
|
size: TBadgeSize;
|
package/lib/models/colors.d.ts
CHANGED
|
@@ -89,6 +89,7 @@ export declare const Colors: {
|
|
|
89
89
|
readonly DR_COLOR_ADDITIONAL_FRESH_LIME: "#a8d14b";
|
|
90
90
|
readonly DR_COLOR_ADDITIONAL_SPACE: "#7b61ff";
|
|
91
91
|
readonly DR_COLOR_BADGE_LIGHT_PURPLE: "#dfd9ff";
|
|
92
|
+
readonly DR_COLOR_BADGE_PURPLE: "#7b61ff";
|
|
92
93
|
readonly DR_COLOR_BADGE_WATER: "#d9f2ff";
|
|
93
94
|
readonly DR_COLOR_BADGE_BABY_BLUE: "#d9e6ff";
|
|
94
95
|
readonly DR_COLOR_BADGE_BABY_PINK: "#ffdbf1";
|
|
@@ -207,6 +208,7 @@ export declare const DR_COLOR_ADDITIONAL_HONEY = "#ffae00";
|
|
|
207
208
|
export declare const DR_COLOR_ADDITIONAL_FRESH_LIME = "#a8d14b";
|
|
208
209
|
export declare const DR_COLOR_ADDITIONAL_SPACE = "#7b61ff";
|
|
209
210
|
export declare const DR_COLOR_BADGE_LIGHT_PURPLE = "#dfd9ff";
|
|
211
|
+
export declare const DR_COLOR_BADGE_PURPLE = "#7b61ff";
|
|
210
212
|
export declare const DR_COLOR_BADGE_WATER = "#d9f2ff";
|
|
211
213
|
export declare const DR_COLOR_BADGE_BABY_BLUE = "#d9e6ff";
|
|
212
214
|
export declare const DR_COLOR_BADGE_BABY_PINK = "#ffdbf1";
|
package/package.json
CHANGED
package/styles.scss
CHANGED
|
@@ -866,6 +866,7 @@ $dr-color-additional-fresh-lime: #a8d14b;
|
|
|
866
866
|
$dr-color-additional-space: #7b61ff;
|
|
867
867
|
|
|
868
868
|
$dr-color-badge-light-purple: #dfd9ff;
|
|
869
|
+
$dr-color-badge-purple: #7b61ff;
|
|
869
870
|
$dr-color-badge-water: #d9f2ff;
|
|
870
871
|
$dr-color-badge-baby-blue: #d9e6ff;
|
|
871
872
|
$dr-color-badge-baby-pink: #ffdbf1;
|
|
Binary file
|