lapikit 0.0.2 → 0.0.4

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.
Files changed (42) hide show
  1. package/dist/{server/modules → internal}/ansi.d.ts +0 -1
  2. package/dist/{server/modules → internal}/ansi.js +0 -11
  3. package/dist/{server/modules → internal}/colors.js +1 -1
  4. package/dist/internal/index.d.ts +2 -0
  5. package/dist/internal/index.js +2 -0
  6. package/dist/internal/terminal.d.ts +1 -0
  7. package/dist/internal/terminal.js +12 -0
  8. package/dist/internal/types.d.ts +44 -0
  9. package/dist/internal/types.js +1 -0
  10. package/dist/plugin/modules/config.d.ts +2 -0
  11. package/dist/plugin/modules/config.js +54 -0
  12. package/dist/plugin/modules/importer.js +15 -0
  13. package/dist/{server/vite.d.ts → plugin/vitejs.d.ts} +1 -6
  14. package/dist/plugin/vitejs.js +26 -0
  15. package/dist/preset.d.ts +2 -0
  16. package/dist/preset.js +80 -0
  17. package/dist/style/css.d.ts +2 -0
  18. package/dist/style/css.js +31 -0
  19. package/dist/{styles → style}/normalize.css +2 -2
  20. package/dist/style/parser/color.d.ts +5 -0
  21. package/dist/{server/modules/themes.js → style/parser/color.js} +14 -31
  22. package/dist/style/parser/component.d.ts +2 -0
  23. package/dist/style/parser/component.js +115 -0
  24. package/dist/style/parser/device.d.ts +2 -0
  25. package/dist/style/parser/device.js +28 -0
  26. package/dist/style/parser/index.d.ts +4 -0
  27. package/dist/style/parser/index.js +4 -0
  28. package/dist/style/parser/variable.d.ts +2 -0
  29. package/dist/style/parser/variable.js +25 -0
  30. package/package.json +10 -5
  31. package/dist/server/modules/css.d.ts +0 -1
  32. package/dist/server/modules/css.js +0 -141
  33. package/dist/server/modules/importer.js +0 -13
  34. package/dist/server/modules/themes.d.ts +0 -4
  35. package/dist/server/vite.js +0 -17
  36. package/dist/styles/variables.css +0 -7
  37. /package/dist/{server/modules → internal}/colors.d.ts +0 -0
  38. /package/dist/{server/modules → internal}/minify.d.ts +0 -0
  39. /package/dist/{server/modules → internal}/minify.js +0 -0
  40. /package/dist/{server → plugin}/modules/importer.d.ts +0 -0
  41. /package/dist/{server/modules → utils}/x11.d.ts +0 -0
  42. /package/dist/{server/modules → utils}/x11.js +0 -0
@@ -38,4 +38,3 @@ export declare const ansi: {
38
38
  };
39
39
  };
40
40
  export type Ansi = typeof ansi;
41
- export declare const sendConsole: (type: "info" | "error" | "warn" | "success" | undefined, msg: string) => void;
@@ -42,14 +42,3 @@ export const ansi = {
42
42
  inverse,
43
43
  underline
44
44
  };
45
- export const sendConsole = (type = 'info', msg) => {
46
- const name = ansi.color.cyan('lapikit');
47
- if (type === 'error')
48
- console.error(name, ansi.bold.red('[error]'), msg);
49
- else if (type === 'warn')
50
- console.warn(name, ansi.bold.yellow('[warn]'), msg);
51
- else if (type === 'success')
52
- console.warn(name, ansi.bold.green('[success]'), msg);
53
- else
54
- console.log(name, ansi.bold.blue('[info]'), msg);
55
- };
@@ -1,4 +1,4 @@
1
- import { x11Colors } from './x11.js';
1
+ import { x11Colors } from '../utils/x11.js';
2
2
  export const parseColor = (input) => {
3
3
  input = input.trim();
4
4
  if (input.startsWith('#')) {
@@ -0,0 +1,2 @@
1
+ export * from './terminal.js';
2
+ export * from './ansi.js';
@@ -0,0 +1,2 @@
1
+ export * from './terminal.js';
2
+ export * from './ansi.js';
@@ -0,0 +1 @@
1
+ export declare const terminal: (type: "info" | "error" | "warn" | "success" | undefined, msg: string) => void;
@@ -0,0 +1,12 @@
1
+ import { ansi } from './ansi.js';
2
+ export const terminal = (type = 'info', msg) => {
3
+ const name = ansi.color.cyan('lapikit');
4
+ if (type === 'error')
5
+ console.error(name, ansi.bold.red('[error]'), msg);
6
+ else if (type === 'warn')
7
+ console.warn(name, ansi.bold.yellow('[warn]'), msg);
8
+ else if (type === 'success')
9
+ console.warn(name, ansi.bold.green('[success]'), msg);
10
+ else
11
+ console.log(name, ansi.bold.blue('[info]'), msg);
12
+ };
@@ -0,0 +1,44 @@
1
+ export type FontFamily = {
2
+ [key: string]: string | string[];
3
+ };
4
+ export type Colors = {
5
+ [key: string]: {
6
+ light: string;
7
+ dark: string;
8
+ } | string;
9
+ };
10
+ export type Thresholds = {
11
+ [key: string]: number | string;
12
+ };
13
+ export type Radius = {
14
+ [key: string]: number | string;
15
+ };
16
+ export interface Lapikit {
17
+ options: {
18
+ normalize: boolean;
19
+ minify: boolean;
20
+ };
21
+ theme: {
22
+ colorScheme: string;
23
+ colors: Colors;
24
+ };
25
+ breakpoints: {
26
+ mobileBreakpoint: string;
27
+ tabletBreakpoint: string;
28
+ laptopBreakpoint: string;
29
+ thresholds: Thresholds;
30
+ };
31
+ styles: {
32
+ spacing: string;
33
+ corner: {
34
+ active: boolean;
35
+ radius: Radius;
36
+ };
37
+ font: FontFamily;
38
+ };
39
+ }
40
+ type DeepOptional<T> = {
41
+ [P in keyof T]?: T[P] extends (infer U)[] ? DeepOptional<U>[] : T[P] extends object ? DeepOptional<T[P]> : T[P];
42
+ };
43
+ export type LapikitConfig = DeepOptional<Lapikit>;
44
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { LapikitConfig } from '../../internal/types.js';
2
+ export declare const parseConfig: (props?: LapikitConfig) => import("../../internal/types.js").Lapikit;
@@ -0,0 +1,54 @@
1
+ import { config } from '../../preset.js';
2
+ export const parseConfig = (props) => {
3
+ if (!props)
4
+ return config;
5
+ const newConfig = { ...config };
6
+ if (props?.options) {
7
+ if (props.options.normalize !== undefined)
8
+ newConfig.options.normalize = props.options.normalize;
9
+ if (props.options.minify !== undefined)
10
+ newConfig.options.minify = props.options.minify;
11
+ }
12
+ if (props?.theme) {
13
+ if (props.theme.colorScheme !== undefined)
14
+ newConfig.theme.colorScheme = props.theme.colorScheme;
15
+ if (props.theme.colors) {
16
+ newConfig.theme.colors = {
17
+ ...newConfig.theme.colors,
18
+ ...props.theme.colors
19
+ };
20
+ }
21
+ }
22
+ if (props?.breakpoints) {
23
+ if (props.breakpoints.mobileBreakpoint !== undefined)
24
+ newConfig.breakpoints.mobileBreakpoint = props.breakpoints.mobileBreakpoint;
25
+ if (props.breakpoints.tabletBreakpoint !== undefined)
26
+ newConfig.breakpoints.tabletBreakpoint = props.breakpoints.tabletBreakpoint;
27
+ if (props.breakpoints.laptopBreakpoint !== undefined)
28
+ newConfig.breakpoints.laptopBreakpoint = props.breakpoints.laptopBreakpoint;
29
+ if (props.breakpoints.thresholds)
30
+ newConfig.breakpoints.thresholds = {
31
+ ...newConfig.breakpoints.thresholds,
32
+ ...props.breakpoints.thresholds
33
+ };
34
+ }
35
+ if (props?.styles) {
36
+ if (props.styles.spacing !== undefined)
37
+ newConfig.styles.spacing = props.styles.spacing;
38
+ if (props.styles.corner !== undefined) {
39
+ if (props.styles.corner.active !== undefined)
40
+ newConfig.styles.corner.active = props.styles.corner.active;
41
+ if (props.styles.corner.radius)
42
+ newConfig.styles.corner.radius = {
43
+ ...newConfig.styles.corner.radius,
44
+ ...props.styles.corner.radius
45
+ };
46
+ }
47
+ if (props.styles.font)
48
+ newConfig.styles.font = {
49
+ ...newConfig.styles.font,
50
+ ...props.styles.font
51
+ };
52
+ }
53
+ return newConfig;
54
+ };
@@ -0,0 +1,15 @@
1
+ import path from 'path';
2
+ import fs from 'fs';
3
+ import { terminal, ansi } from '../../internal/index.js';
4
+ const app = process.cwd();
5
+ const pathConfig = path.resolve(app, 'lapikit.config.js');
6
+ export const importer = async () => {
7
+ if (!fs.existsSync(pathConfig)) {
8
+ terminal('error', `config file not found\n ${ansi.color.yellow('Could not find lapikit.config.js. See https://localhost/docs/kit/vite to learn more about the configuration file.')}\n\n${ansi.color.blue('for initializing a new lapikit config, run:')}\n ${ansi.variant.bold('npx lapikit init')} ${ansi.bold.yellow('(preview)')}\n\n`);
9
+ process.exit(1);
10
+ }
11
+ const timestamp = Date.now();
12
+ const fileUrl = `file://${pathConfig}?t=${timestamp}`;
13
+ const content = await import(fileUrl);
14
+ return content.default;
15
+ };
@@ -1,11 +1,6 @@
1
1
  import type { ViteDevServer } from 'vite';
2
- interface LapikitPlugin {
3
- normalize?: boolean;
4
- minify?: boolean;
5
- }
6
- export declare function lapikit(options?: LapikitPlugin): Promise<{
2
+ export declare function lapikit(): Promise<{
7
3
  name: string;
8
4
  configResolved(): Promise<void>;
9
5
  configureServer(server: ViteDevServer): Promise<void>;
10
6
  }>;
11
- export {};
@@ -0,0 +1,26 @@
1
+ import { importer } from './modules/importer.js';
2
+ import { processCSS } from '../style/css.js';
3
+ import { parseConfig } from './modules/config.js';
4
+ import { terminal } from '../internal/terminal.js';
5
+ export async function lapikit() {
6
+ return {
7
+ name: 'lapikit/vite.js',
8
+ async configResolved() {
9
+ const config = await importer();
10
+ const result = await parseConfig(config);
11
+ await processCSS(result);
12
+ terminal('info', 'lapikit is up!');
13
+ },
14
+ async configureServer(server) {
15
+ server.watcher.add('./lapikit.config.js');
16
+ server.watcher.on('change', async (filePath) => {
17
+ if (String(filePath).includes('lapikit.config.js')) {
18
+ const config = await importer();
19
+ const result = await parseConfig(config);
20
+ await processCSS(result);
21
+ terminal('info', 'lapikit config reloaded');
22
+ }
23
+ });
24
+ }
25
+ };
26
+ }
@@ -0,0 +1,2 @@
1
+ import type { Lapikit } from './internal/types.js';
2
+ export declare const config: Lapikit;
package/dist/preset.js ADDED
@@ -0,0 +1,80 @@
1
+ export const config = {
2
+ options: {
3
+ normalize: true, // true | false
4
+ minify: false // true | false
5
+ },
6
+ theme: {
7
+ colorScheme: 'dark', // 'light' | 'dark' | 'auto'
8
+ colors: {
9
+ primary: { light: 'oklch(45% 0.24 277.023)', dark: 'oklch(45% 0.24 277.023)' },
10
+ secondary: { light: 'oklch(65% 0.241 354.308)', dark: 'oklch(65% 0.241 354.308)' },
11
+ tertiary: { light: 'oklch(77% 0.152 181.912)', dark: 'oklch(77% 0.152 181.912)' },
12
+ neutral: { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
13
+ info: { light: 'oklch(74% 0.16 232.661)', dark: 'oklch(74% 0.16 232.661)' },
14
+ success: { light: 'oklch(76% 0.177 163.223)', dark: 'oklch(76% 0.177 163.223)' },
15
+ warning: { light: 'oklch(82% 0.189 84.429)', dark: 'oklch(82% 0.189 84.429)' },
16
+ error: { light: 'oklch(71% 0.194 13.428)', dark: 'oklch(71% 0.194 13.428)' },
17
+ base: { light: 'oklch(100% 0 0)', dark: 'oklch(25.33% 0.016 252.42)' },
18
+ surface: { light: 'oklch(98% 0 0)', dark: 'oklch(23.26% 0.014 253.1)' },
19
+ container: { light: 'oklch(95% 0 0)', dark: 'oklch(21.15% 0.012 254.09)' },
20
+ shadow: 'black'
21
+ }
22
+ },
23
+ breakpoints: {
24
+ mobileBreakpoint: 'sm',
25
+ tabletBreakpoint: 'md',
26
+ laptopBreakpoint: 'xl',
27
+ thresholds: {
28
+ none: 0, // 0px
29
+ xs: '28rem', //448px
30
+ sm: '40rem', //640px
31
+ md: '48rem', //768px
32
+ lg: '64rem', //1024px
33
+ xl: '80rem', //1280px
34
+ '2xl': '96rem', //1536px
35
+ '3xl': '112rem' //1792px
36
+ }
37
+ },
38
+ styles: {
39
+ spacing: '0.125rem', // 2px
40
+ corner: {
41
+ active: true, // true | false
42
+ radius: {
43
+ sm: '0.125rem', // 2px
44
+ md: '0.25rem', // 4px
45
+ lg: '0.5rem', // 8px
46
+ xl: '0.75rem', // 12px
47
+ '2xl': '1rem', // 16px
48
+ '3xl': '1.5rem', // 24px
49
+ full: '9999px' // 9999px
50
+ }
51
+ },
52
+ font: {
53
+ sans: [
54
+ 'system-ui',
55
+ '-apple-system',
56
+ 'BlinkMacSystemFont',
57
+ 'Segoe UI',
58
+ 'Roboto',
59
+ 'Helvetica Neue',
60
+ 'Arial',
61
+ 'sans-serif',
62
+ 'Apple Color Emoji',
63
+ 'Segoe UI Emoji',
64
+ 'Segoe UI Symbol'
65
+ ],
66
+ mono: [
67
+ 'SFMono-Regular',
68
+ 'ui-monospace',
69
+ 'SF Mono',
70
+ 'Menlo',
71
+ 'Monaco',
72
+ 'Consolas',
73
+ 'Liberation Mono',
74
+ 'Courier New',
75
+ 'monospace'
76
+ ],
77
+ serif: ['Merriweather', 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif']
78
+ }
79
+ }
80
+ };
@@ -0,0 +1,2 @@
1
+ import type { Lapikit } from '../internal/types.js';
2
+ export declare const processCSS: (config: Lapikit) => Promise<void>;
@@ -0,0 +1,31 @@
1
+ import { fileURLToPath } from 'url';
2
+ import { dirname } from 'path';
3
+ import fs from 'fs';
4
+ import fsPromises from 'fs/promises';
5
+ import path from 'path';
6
+ import { minify } from '../internal/minify.js';
7
+ import { colors, component, devices, variables } from './parser/index.js';
8
+ import { terminal } from '../internal/terminal.js';
9
+ const __filename = fileURLToPath(import.meta.url);
10
+ const __dirname = dirname(__filename);
11
+ const __components = path.resolve('src/components');
12
+ export const processCSS = async (config) => {
13
+ const _normalize = fs.readFileSync(path.resolve(__dirname, './normalize.css'), 'utf-8');
14
+ let styles = ``;
15
+ if (config.options.normalize)
16
+ styles += `${_normalize}\n`;
17
+ const colorScheme = colors(config);
18
+ const deviceDisplay = devices(config);
19
+ const variablesStyles = variables(config);
20
+ styles += `${colorScheme.root}\n`;
21
+ styles += `${variablesStyles}\n`;
22
+ styles += `${colorScheme.className}\n`;
23
+ styles += `${deviceDisplay}\n`;
24
+ if (fs.existsSync(__components) && fs.statSync(__components).isDirectory())
25
+ styles += component(config);
26
+ if (config.options.minify) {
27
+ styles = minify(styles);
28
+ terminal('success', 'css minified');
29
+ }
30
+ fsPromises.writeFile(path.resolve(__dirname, '../styles.css'), styles);
31
+ };
@@ -3,12 +3,12 @@ html {
3
3
  tab-size: 4;
4
4
  line-height: 1.5;
5
5
  box-sizing: border-box;
6
- font-family: var(--font-sans, var(--kit-font-family-sans));
6
+ font-family: var(--kit-font-family-sans);
7
7
  }
8
8
 
9
9
  pre,
10
10
  code {
11
- font-family: var(--font-mono, var(--kit-font-family-mono));
11
+ font-family: var(--kit-font-family-mono);
12
12
  }
13
13
 
14
14
  body {
@@ -0,0 +1,5 @@
1
+ import type { Lapikit } from '../../internal/types.js';
2
+ export declare const colors: (config: Lapikit) => {
3
+ root: string;
4
+ className: string;
5
+ };
@@ -1,28 +1,10 @@
1
- import { parseColor } from './colors.js';
2
- const colorsList = {
3
- primary: { light: 'oklch(45% 0.24 277.023)', dark: 'oklch(45% 0.24 277.023)' },
4
- secondary: { light: 'oklch(65% 0.241 354.308)', dark: 'oklch(65% 0.241 354.308)' },
5
- tertiary: { light: 'oklch(77% 0.152 181.912)', dark: 'oklch(77% 0.152 181.912)' },
6
- neutral: { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
7
- info: { light: 'oklch(74% 0.16 232.661)', dark: 'oklch(74% 0.16 232.661)' },
8
- success: { light: 'oklch(76% 0.177 163.223)', dark: 'oklch(76% 0.177 163.223)' },
9
- warning: { light: 'oklch(82% 0.189 84.429)', dark: 'oklch(82% 0.189 84.429)' },
10
- error: { light: 'oklch(71% 0.194 13.428)', dark: 'oklch(71% 0.194 13.428)' },
11
- base: { light: 'oklch(100% 0 0)', dark: 'oklch(25.33% 0.016 252.42)' },
12
- surface: { light: 'oklch(98% 0 0)', dark: 'oklch(23.26% 0.014 253.1)' },
13
- container: { light: 'oklch(95% 0 0)', dark: 'oklch(21.15% 0.012 254.09)' },
14
- shadow: 'black',
15
- hexa: '#c1ec75',
16
- rgb: 'rgb(238, 19, 121)',
17
- rgba: 'rgba(19, 34, 238, 0.5)',
18
- oklch: 'oklch(45% 0.24 277.023)'
19
- };
20
- export const colors = () => {
1
+ import { parseColor } from '../../internal/colors.js';
2
+ export const colors = (config) => {
21
3
  const schemes = {
22
4
  light: {},
23
5
  dark: {}
24
6
  };
25
- for (const [property, values] of Object.entries(colorsList)) {
7
+ for (const [property, values] of Object.entries(config.theme.colors)) {
26
8
  if (typeof values === 'string') {
27
9
  // for all color scheme
28
10
  const _refColor = parseColor(values);
@@ -42,10 +24,9 @@ export const colors = () => {
42
24
  }
43
25
  }
44
26
  }
45
- const theming = 'mixed';
46
27
  // css variables
47
28
  let cssVariables = '';
48
- if (theming === 'mixed') {
29
+ if (config.theme.colorScheme === 'auto') {
49
30
  for (const [themeName, colors] of Object.entries(schemes)) {
50
31
  const used = themeName;
51
32
  const inversed = used === 'light' ? 'dark' : 'light';
@@ -53,29 +34,31 @@ export const colors = () => {
53
34
  cssVariables += `:root, .${used} {\n`;
54
35
  cssVariables += `color-scheme: ${used};\n`;
55
36
  for (const [colorName, colorValue] of Object.entries(colors)) {
56
- cssVariables += `--${colorName}: ${colorValue};\n`;
37
+ cssVariables += `--kit-${colorName}: ${colorValue};\n`;
57
38
  }
58
39
  cssVariables += `}\n`;
59
40
  cssVariables += `.${inversed} {\n`;
60
41
  cssVariables += `color-scheme: ${used};\n`;
61
42
  for (const [colorName, colorValue] of Object.entries(schemes[inversed])) {
62
- cssVariables += `--${colorName}: ${colorValue};\n`;
43
+ cssVariables += `--kit-${colorName}: ${colorValue};\n`;
63
44
  }
64
45
  cssVariables += `}\n`;
65
46
  cssVariables += `}\n`;
66
47
  }
67
48
  }
68
49
  else {
69
- const used = theming;
70
- const inversed = theming === 'light' ? 'dark' : 'light';
50
+ const used = config.theme.colorScheme;
51
+ const inversed = config.theme.colorScheme === 'light' ? 'dark' : 'light';
71
52
  cssVariables += `:root, .${used} {\n`;
53
+ cssVariables += `color-scheme: ${used};\n`;
72
54
  for (const [colorName, colorValue] of Object.entries(schemes[used])) {
73
- cssVariables += `--${colorName}: ${colorValue};\n`;
55
+ cssVariables += `--kit-${colorName}: ${colorValue};\n`;
74
56
  }
75
57
  cssVariables += `}\n`;
76
58
  cssVariables += `.${inversed} {\n`;
59
+ cssVariables += `color-scheme: ${used};\n`;
77
60
  for (const [colorName, colorValue] of Object.entries(schemes[inversed])) {
78
- cssVariables += `--${colorName}: ${colorValue};\n`;
61
+ cssVariables += `--kit-${colorName}: ${colorValue};\n`;
79
62
  }
80
63
  cssVariables += `}\n`;
81
64
  }
@@ -83,8 +66,8 @@ export const colors = () => {
83
66
  let classStyles = '';
84
67
  for (const [property] of Object.entries(schemes.light)) {
85
68
  classStyles += `.${property} {\n`;
86
- classStyles += `--background-color: var(--${property});\n`;
87
- classStyles += `--color: var(--${property});\n`;
69
+ classStyles += `--background-color: var(--kit-${property});\n`;
70
+ classStyles += `--color: var(--kit-${property});\n`;
88
71
  classStyles += `}\n`;
89
72
  }
90
73
  return {
@@ -0,0 +1,2 @@
1
+ import type { Lapikit } from '../../internal/types.js';
2
+ export declare const component: (config: Lapikit) => string;
@@ -0,0 +1,115 @@
1
+ import { fileURLToPath } from 'url';
2
+ import { dirname } from 'path';
3
+ import fs from 'fs';
4
+ import path from 'path';
5
+ const __filename = fileURLToPath(import.meta.url);
6
+ const __dirname = dirname(__filename);
7
+ export const component = (config) => {
8
+ let css = ``;
9
+ const tresholds = {
10
+ _default: '',
11
+ static: '',
12
+ min: '',
13
+ max: '',
14
+ all: ''
15
+ };
16
+ function loadComponentCSS(directory) {
17
+ fs.readdirSync(directory).forEach((File) => {
18
+ const absolutePath = path.join(directory, File);
19
+ if (fs.statSync(absolutePath).isDirectory())
20
+ return loadComponentCSS(absolutePath);
21
+ else if (absolutePath.endsWith('.css') && !absolutePath.includes('/_')) {
22
+ const content = parser(fs.readFileSync(absolutePath, 'utf-8'));
23
+ tresholds._default += content.allExtracted
24
+ .replaceAll('[breakpoint|min]', '[breakpoint]')
25
+ .replaceAll('[breakpoint|max]', '[breakpoint]')
26
+ .replaceAll('[breakpoint|all]', '[breakpoint]');
27
+ tresholds.static += content.defaultExtracted;
28
+ tresholds.min += content.minExtracted.replaceAll('[breakpoint|min]', '[breakpoint]');
29
+ tresholds.max += content.maxExtracted.replaceAll('[breakpoint|max]', '[breakpoint]');
30
+ tresholds.all += content.allModifierExtracted.replaceAll('[breakpoint|all]', '[breakpoint]');
31
+ return (css += `${content.cleaned}\n`);
32
+ }
33
+ });
34
+ }
35
+ loadComponentCSS(path.resolve(__dirname, '../../components'));
36
+ for (const property in config.breakpoints.thresholds) {
37
+ if (property !== '_default') {
38
+ const name = `.${/^\d/.test(property) ? `\\3${property}` : property}\\:`;
39
+ const value = typeof config.breakpoints.thresholds[property] === 'number'
40
+ ? `${config.breakpoints.thresholds[property]}px`
41
+ : config.breakpoints.thresholds[property];
42
+ if (tresholds.static !== '' || tresholds.all !== '' || tresholds.min !== '') {
43
+ css += `@media screen and (min-width: ${value}) {\n`;
44
+ if (tresholds.static !== '')
45
+ css += tresholds.static.replaceAll('[breakpoint]', name);
46
+ if (tresholds.all !== '')
47
+ css += tresholds.all.replaceAll('[breakpoint]', name);
48
+ if (tresholds.min !== '')
49
+ css += tresholds.min.replaceAll('[breakpoint]', name);
50
+ css += `}\n`;
51
+ }
52
+ if (tresholds.max !== '' || tresholds.all !== '') {
53
+ css += `@media screen and (max-width: ${value}) {\n`;
54
+ if (tresholds.max !== '')
55
+ css += tresholds.max.replaceAll('[breakpoint]', name);
56
+ if (tresholds.all !== '')
57
+ css += tresholds.all.replaceAll('[breakpoint]', name);
58
+ css += `}\n`;
59
+ }
60
+ }
61
+ else {
62
+ css += tresholds._default.replaceAll('[breakpoint]', '.');
63
+ }
64
+ }
65
+ return css;
66
+ };
67
+ const parser = (css) => {
68
+ const regex = /([^{]+)\{([^}]+)\}/g;
69
+ let match;
70
+ const matchesToRemove = [];
71
+ const extractedByType = {
72
+ allExtracted: [],
73
+ defaultExtracted: [],
74
+ minExtracted: [],
75
+ maxExtracted: [],
76
+ allModifierExtracted: []
77
+ };
78
+ while ((match = regex.exec(css)) !== null) {
79
+ const fullMatch = match[0];
80
+ const selectors = match[1].trim();
81
+ const body = match[2].trim();
82
+ const selectorsArray = selectors.split(',').map((sel) => sel.trim());
83
+ let matchedType = null;
84
+ if (selectorsArray.some((sel) => sel.includes('[breakpoint|min]'))) {
85
+ matchedType = 'minExtracted';
86
+ }
87
+ else if (selectorsArray.some((sel) => sel.includes('[breakpoint|max]'))) {
88
+ matchedType = 'maxExtracted';
89
+ }
90
+ else if (selectorsArray.some((sel) => sel.includes('[breakpoint|all]'))) {
91
+ matchedType = 'allModifierExtracted';
92
+ }
93
+ else if (selectorsArray.some((sel) => sel.includes('[breakpoint]'))) {
94
+ matchedType = 'defaultExtracted';
95
+ }
96
+ if (matchedType) {
97
+ const rule = `${selectors} {\n${body}\n}`;
98
+ extractedByType.allExtracted.push(rule);
99
+ extractedByType[matchedType].push(rule);
100
+ matchesToRemove.push(fullMatch);
101
+ }
102
+ }
103
+ let cleaned = css;
104
+ for (const rule of matchesToRemove) {
105
+ cleaned = cleaned.replace(rule, '').replace(/\n{2,}/g, '\n\n');
106
+ }
107
+ return {
108
+ allExtracted: extractedByType.allExtracted.join('\n\n').trim(),
109
+ defaultExtracted: extractedByType.defaultExtracted.join('\n\n').trim(),
110
+ minExtracted: extractedByType.minExtracted.join('\n\n').trim(),
111
+ maxExtracted: extractedByType.maxExtracted.join('\n\n').trim(),
112
+ allModifierExtracted: extractedByType.allModifierExtracted.join('\n\n').trim(),
113
+ cleaned: cleaned.trim()
114
+ };
115
+ };
@@ -0,0 +1,2 @@
1
+ import type { Lapikit } from '../../internal/types.js';
2
+ export declare const devices: (config: Lapikit) => string;
@@ -0,0 +1,28 @@
1
+ export const devices = (config) => {
2
+ let css = ``;
3
+ const list = {
4
+ mobile: config.breakpoints.mobileBreakpoint,
5
+ tablet: config.breakpoints.tabletBreakpoint,
6
+ laptop: config.breakpoints.laptopBreakpoint
7
+ };
8
+ for (const [key, value] of Object.entries(list)) {
9
+ const breakpointValue = config.breakpoints.thresholds[value];
10
+ const breakpointValueMax = key !== 'laptop'
11
+ ? config.breakpoints.thresholds[key === 'mobile' ? list.tablet : key == 'tablet' ? list.laptop : '']
12
+ : undefined;
13
+ css += `.device-${key}, .only-on-${key} {\n`;
14
+ css += `display: none;\n`;
15
+ css += `}\n`;
16
+ css += `@media screen and (min-width: ${typeof breakpointValue === 'number' ? breakpointValue + 'px' : breakpointValue}) {\n`;
17
+ css += `.device-${key} {\n`;
18
+ css += `display: inherit !important;\n`;
19
+ css += `}\n`;
20
+ css += `}\n`;
21
+ css += `@media screen and (min-width: ${typeof breakpointValue === 'number' ? breakpointValue + 'px' : breakpointValue}) ${breakpointValueMax ? `and (max-width: ${typeof breakpointValueMax === 'number' ? breakpointValueMax + 'px' : breakpointValueMax})` : ''}{\n`;
22
+ css += `.only-on-${key} {\n`;
23
+ css += `display: inherit !important;\n`;
24
+ css += `}\n`;
25
+ css += `}\n`;
26
+ }
27
+ return css;
28
+ };
@@ -0,0 +1,4 @@
1
+ export * from './color.js';
2
+ export * from './component.js';
3
+ export * from './device.js';
4
+ export * from './variable.js';
@@ -0,0 +1,4 @@
1
+ export * from './color.js';
2
+ export * from './component.js';
3
+ export * from './device.js';
4
+ export * from './variable.js';
@@ -0,0 +1,2 @@
1
+ import type { Lapikit } from '../../internal/types.js';
2
+ export declare const variables: (config?: Lapikit) => string;
@@ -0,0 +1,25 @@
1
+ export const variables = (config) => {
2
+ if (!config)
3
+ return '';
4
+ const { styles } = config;
5
+ let css = ``;
6
+ css += `:root {\n`;
7
+ css += `\t--kit-spacing: ${parser(styles.spacing)};\n`;
8
+ if (styles.corner.active) {
9
+ for (const [key, value] of Object.entries(styles.corner.radius)) {
10
+ css += `\t--kit-radius-${key}: ${typeof value === 'number' ? value + 'px' : value};\n`;
11
+ }
12
+ }
13
+ for (const [key, value] of Object.entries(styles.font)) {
14
+ css += `\t--kit-font-family-${key}: ${parser(value)};\n`;
15
+ }
16
+ css += `}\n`;
17
+ return css;
18
+ };
19
+ const parser = (value) => {
20
+ if (typeof value === 'number')
21
+ return `${value}px`;
22
+ if (Array.isArray(value))
23
+ return value.join(', ');
24
+ return value;
25
+ };
package/package.json CHANGED
@@ -1,6 +1,14 @@
1
1
  {
2
2
  "name": "lapikit",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Nycolaide/lapikit.git",
10
+ "directory": "packages/lapikit"
11
+ },
4
12
  "scripts": {
5
13
  "dev": "vite dev",
6
14
  "build": "vite build && npm run prepack",
@@ -14,9 +22,6 @@
14
22
  "test:unit": "vitest",
15
23
  "test": "npm run test:unit -- --run"
16
24
  },
17
- "publishConfig": {
18
- "access": "public"
19
- },
20
25
  "files": [
21
26
  "dist",
22
27
  "!dist/**/*.test.*",
@@ -34,7 +39,7 @@
34
39
  "svelte": "./dist/index.js"
35
40
  },
36
41
  "./vite": {
37
- "default": "./dist/server/vite.js"
42
+ "default": "./dist/plugin/vitejs.js"
38
43
  },
39
44
  "./css": "./dist/styles.css"
40
45
  },
@@ -1 +0,0 @@
1
- export declare const processCSS: (minified?: boolean, normalize?: boolean) => Promise<void>;
@@ -1,141 +0,0 @@
1
- import { fileURLToPath } from 'url';
2
- import { dirname } from 'path';
3
- import fs from 'fs';
4
- import fsPromises from 'fs/promises';
5
- import path from 'path';
6
- import { ansi, sendConsole } from './ansi.js';
7
- import { minify } from './minify.js';
8
- import { colors } from './themes.js';
9
- const __filename = fileURLToPath(import.meta.url);
10
- const __dirname = dirname(__filename);
11
- const __components = path.resolve('src/components');
12
- // temps
13
- const breakpoints = {
14
- _default: 0,
15
- desktop: 1024,
16
- tablet: '768vw',
17
- mobile: 480
18
- };
19
- export const processCSS = async (minified, normalize) => {
20
- console.log(ansi.bold.blue('Processing CSS...'));
21
- const _normalize = fs.readFileSync(path.resolve(__dirname, '../../styles/normalize.css'), 'utf-8');
22
- const _variables = fs.readFileSync(path.resolve(__dirname, '../../styles/variables.css'), 'utf-8');
23
- let styles = `${_variables}\n`;
24
- if (normalize)
25
- styles += `${_normalize}\n`;
26
- const colorScheme = colors();
27
- styles += `${colorScheme.root}\n`;
28
- styles += `${colorScheme.className}\n`;
29
- if (fs.existsSync(__components) && fs.statSync(__components).isDirectory()) {
30
- const tresholds = {
31
- _default: '',
32
- static: '',
33
- min: '',
34
- max: '',
35
- all: ''
36
- };
37
- function loadComponentCSS(directory) {
38
- fs.readdirSync(directory).forEach((File) => {
39
- const absolutePath = path.join(directory, File);
40
- if (fs.statSync(absolutePath).isDirectory())
41
- return loadComponentCSS(absolutePath);
42
- else if (absolutePath.endsWith('.css') && !absolutePath.includes('/_')) {
43
- const content = parser(fs.readFileSync(absolutePath, 'utf-8'));
44
- tresholds._default += content.allExtracted
45
- .replaceAll('[breakpoint|min]', '[breakpoint]')
46
- .replaceAll('[breakpoint|max]', '[breakpoint]')
47
- .replaceAll('[breakpoint|all]', '[breakpoint]');
48
- tresholds.static += content.defaultExtracted;
49
- tresholds.min += content.minExtracted.replaceAll('[breakpoint|min]', '[breakpoint]');
50
- tresholds.max += content.maxExtracted.replaceAll('[breakpoint|max]', '[breakpoint]');
51
- tresholds.all += content.allModifierExtracted.replaceAll('[breakpoint|all]', '[breakpoint]');
52
- return (styles += `${content.cleaned}\n`);
53
- }
54
- });
55
- }
56
- loadComponentCSS(path.resolve(__dirname, '../../components'));
57
- for (const property in breakpoints) {
58
- if (property !== '_default') {
59
- const name = `.${/^\d/.test(property) ? `\\3${property}` : property}\\:`;
60
- const value = typeof breakpoints[property] === 'number'
61
- ? `${breakpoints[property]}px`
62
- : breakpoints[property];
63
- if (tresholds.static !== '' || tresholds.all !== '' || tresholds.min !== '') {
64
- styles += `@media screen and (min-width: ${value}) {\n`;
65
- if (tresholds.static !== '')
66
- styles += tresholds.static.replaceAll('[breakpoint]', name);
67
- if (tresholds.all !== '')
68
- styles += tresholds.all.replaceAll('[breakpoint]', name);
69
- if (tresholds.min !== '')
70
- styles += tresholds.min.replaceAll('[breakpoint]', name);
71
- styles += `}\n`;
72
- }
73
- if (tresholds.max !== '' || tresholds.all !== '') {
74
- styles += `@media screen and (max-width: ${value}) {\n`;
75
- if (tresholds.max !== '')
76
- styles += tresholds.max.replaceAll('[breakpoint]', name);
77
- if (tresholds.all !== '')
78
- styles += tresholds.all.replaceAll('[breakpoint]', name);
79
- styles += `}\n`;
80
- }
81
- }
82
- else {
83
- styles += tresholds._default.replaceAll('[breakpoint]', '.');
84
- }
85
- }
86
- }
87
- if (minified) {
88
- styles = minify(styles);
89
- sendConsole('success', 'css minified');
90
- }
91
- fsPromises.writeFile(path.resolve(__dirname, '../../styles.css'), styles);
92
- };
93
- const parser = (css) => {
94
- const regex = /([^{]+)\{([^}]+)\}/g;
95
- let match;
96
- const matchesToRemove = [];
97
- const extractedByType = {
98
- allExtracted: [],
99
- defaultExtracted: [],
100
- minExtracted: [],
101
- maxExtracted: [],
102
- allModifierExtracted: []
103
- };
104
- while ((match = regex.exec(css)) !== null) {
105
- const fullMatch = match[0];
106
- const selectors = match[1].trim();
107
- const body = match[2].trim();
108
- const selectorsArray = selectors.split(',').map((sel) => sel.trim());
109
- let matchedType = null;
110
- if (selectorsArray.some((sel) => sel.includes('[breakpoint|min]'))) {
111
- matchedType = 'minExtracted';
112
- }
113
- else if (selectorsArray.some((sel) => sel.includes('[breakpoint|max]'))) {
114
- matchedType = 'maxExtracted';
115
- }
116
- else if (selectorsArray.some((sel) => sel.includes('[breakpoint|all]'))) {
117
- matchedType = 'allModifierExtracted';
118
- }
119
- else if (selectorsArray.some((sel) => sel.includes('[breakpoint]'))) {
120
- matchedType = 'defaultExtracted';
121
- }
122
- if (matchedType) {
123
- const rule = `${selectors} {\n${body}\n}`;
124
- extractedByType.allExtracted.push(rule);
125
- extractedByType[matchedType].push(rule);
126
- matchesToRemove.push(fullMatch);
127
- }
128
- }
129
- let cleaned = css;
130
- for (const rule of matchesToRemove) {
131
- cleaned = cleaned.replace(rule, '').replace(/\n{2,}/g, '\n\n');
132
- }
133
- return {
134
- allExtracted: extractedByType.allExtracted.join('\n\n').trim(),
135
- defaultExtracted: extractedByType.defaultExtracted.join('\n\n').trim(),
136
- minExtracted: extractedByType.minExtracted.join('\n\n').trim(),
137
- maxExtracted: extractedByType.maxExtracted.join('\n\n').trim(),
138
- allModifierExtracted: extractedByType.allModifierExtracted.join('\n\n').trim(),
139
- cleaned: cleaned.trim()
140
- };
141
- };
@@ -1,13 +0,0 @@
1
- import path from 'path';
2
- import fs from 'fs';
3
- import { ansi } from './ansi.js';
4
- const app = process.cwd();
5
- const pathConfig = path.resolve(app, 'lapikit.config.js');
6
- export const importer = async () => {
7
- if (!fs.existsSync(pathConfig)) {
8
- console.error(ansi.color.cyan('lapikit'), ansi.bold.red('[error]'), 'config file not found\n', ansi.color.yellow('Could not find lapikit.config.js. See https://localhost/docs/kit/vite to learn more about the configuration file.'), '\n\n', ansi.color.blue('for initializing a new lapikit config, run:\n'), ' ' + ansi.variant.bold('npx lapikit init') + ' ' + ansi.bold.yellow('(preview)'), '\n\n');
9
- process.exit(1);
10
- }
11
- const content = await import(pathConfig);
12
- return content.default;
13
- };
@@ -1,4 +0,0 @@
1
- export declare const colors: () => {
2
- root: string;
3
- className: string;
4
- };
@@ -1,17 +0,0 @@
1
- import { ansi } from './modules/ansi.js';
2
- import { importer } from './modules/importer.js';
3
- import { processCSS } from './modules/css.js';
4
- export async function lapikit(options = {}) {
5
- return {
6
- name: 'lapikit/vite.js',
7
- async configResolved() {
8
- console.log(ansi.bold.blue('Vite plugin loaded'), options);
9
- const config = await importer();
10
- await processCSS(options.minify, options.normalize);
11
- // console.log('config', config);
12
- },
13
- async configureServer(server) {
14
- // console.log(ansi.inverse.red('Vite server configured'), server);
15
- }
16
- };
17
- }
@@ -1,7 +0,0 @@
1
- :root {
2
- --kit-font-family-sans:
3
- system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
4
- sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
5
- --kit-font-family-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
6
- --kit-spacing: 0.25rem;
7
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes