@diskette/palette 0.26.0 → 0.26.3
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/cli/cli.js +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/cli/cli.js
CHANGED
|
@@ -26,7 +26,7 @@ const grayOptions = grayOptionsList.map((c) => {
|
|
|
26
26
|
return { value: c, label: `${swatch}${capitalize(c)}` };
|
|
27
27
|
});
|
|
28
28
|
async function main() {
|
|
29
|
-
p.intro(`palette
|
|
29
|
+
p.intro(`palette v__VERSION__`);
|
|
30
30
|
const results = await p.group({
|
|
31
31
|
colors: () => p.groupMultiselect({
|
|
32
32
|
message: 'Select accent colors',
|
package/dist/index.d.ts
CHANGED
|
@@ -1118,6 +1118,6 @@ export declare const colors: {
|
|
|
1118
1118
|
};
|
|
1119
1119
|
export default colors;
|
|
1120
1120
|
export { accentColors, grayColors } from './types.ts';
|
|
1121
|
-
export type { AccentColor, AlphaConfig, AlphaScale, Color, ColorScale, ColorSteps, GrayColor, PaletteColor, ScaleSteps, } from './types.ts';
|
|
1121
|
+
export type { AccentColor, AlphaConfig, AlphaScale, Color, ColorScale, ColorSteps, GrayColor, PaletteColor, ScaleSteps, Steps, } from './types.ts';
|
|
1122
1122
|
export { applyColorVars, css } from './css.ts';
|
|
1123
1123
|
export { getColor, getColorModes, getMatchingGrayColor, toVarName, } from './utils.ts';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diskette/palette",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.26.
|
|
4
|
+
"version": "0.26.3",
|
|
5
5
|
"bin": {
|
|
6
6
|
"palette": "./dist/cli/cli.js"
|
|
7
7
|
},
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
},
|
|
180
180
|
"license": "MIT",
|
|
181
181
|
"scripts": {
|
|
182
|
-
"build": "rm -rf dist && tsc -p tsconfig.build.json
|
|
182
|
+
"build": "rm -rf dist && tsc -p tsconfig.build.json",
|
|
183
183
|
"typecheck": "tsc",
|
|
184
184
|
"test": "vitest run",
|
|
185
185
|
"lint": "oxlint --type-aware src",
|