duck-dev-lib 0.0.91 → 0.0.92
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.
|
@@ -17,6 +17,20 @@ var AccentEnumColor;
|
|
|
17
17
|
AccentEnumColor["Violet"] = "violet";
|
|
18
18
|
})(AccentEnumColor || (AccentEnumColor = {}));
|
|
19
19
|
|
|
20
|
+
/** All available palettes with metadata */
|
|
21
|
+
const DD_NEO_PALETTES = [
|
|
22
|
+
{ id: 'candy-store', name: 'Candy Store', mode: 'light' },
|
|
23
|
+
{ id: 'tropical-punch', name: 'Tropical Punch', mode: 'light' },
|
|
24
|
+
{ id: 'sunset-boulevard', name: 'Sunset Boulevard', mode: 'light' },
|
|
25
|
+
{ id: 'memphis-pop', name: 'Memphis Pop', mode: 'light' },
|
|
26
|
+
{ id: 'bauhaus-bright', name: 'Bauhaus Bright', mode: 'light' },
|
|
27
|
+
{ id: 'deep-neon', name: 'Deep Neon', mode: 'dark' },
|
|
28
|
+
{ id: 'ember-glow', name: 'Ember Glow', mode: 'dark' },
|
|
29
|
+
{ id: 'toxic-garden', name: 'Toxic Garden', mode: 'dark' },
|
|
30
|
+
{ id: 'midnight-royal', name: 'Midnight Royal', mode: 'dark' },
|
|
31
|
+
{ id: 'berry-candy', name: 'Berry Candy', mode: 'dark' },
|
|
32
|
+
];
|
|
33
|
+
|
|
20
34
|
class DdFlexDirectionDirective {
|
|
21
35
|
ddFlexDirection = input('row', { ...(ngDevMode ? { debugName: "ddFlexDirection" } : {}) });
|
|
22
36
|
gap = input(null, { ...(ngDevMode ? { debugName: "gap" } : {}) });
|