lapikit 0.0.0-insiders.0ff037e

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 (176) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1 -0
  3. package/bin/helper.js +74 -0
  4. package/bin/lapikit.js +54 -0
  5. package/bin/modules/adapter.js +52 -0
  6. package/bin/modules/preset.js +11 -0
  7. package/dist/actions/index.d.ts +1 -0
  8. package/dist/actions/index.js +1 -0
  9. package/dist/app.d.ts +13 -0
  10. package/dist/app.html +12 -0
  11. package/dist/assets/icons/arrow-down.svelte +12 -0
  12. package/dist/assets/icons/arrow-down.svelte.d.ts +18 -0
  13. package/dist/assets/icons/arrow-up.svelte +12 -0
  14. package/dist/assets/icons/arrow-up.svelte.d.ts +18 -0
  15. package/dist/assets/icons/close-fill.svelte +12 -0
  16. package/dist/assets/icons/close-fill.svelte.d.ts +18 -0
  17. package/dist/assets/icons/loading-fill.svelte +31 -0
  18. package/dist/assets/icons/loading-fill.svelte.d.ts +18 -0
  19. package/dist/components/accordion/accordion.css +113 -0
  20. package/dist/components/accordion/accordion.svelte +37 -0
  21. package/dist/components/accordion/accordion.svelte.d.ts +4 -0
  22. package/dist/components/accordion/accordion.svelte.js +24 -0
  23. package/dist/components/accordion/modules/accordion-item.svelte +94 -0
  24. package/dist/components/accordion/modules/accordion-item.svelte.d.ts +4 -0
  25. package/dist/components/accordion/types.d.ts +33 -0
  26. package/dist/components/accordion/types.js +1 -0
  27. package/dist/components/alert/alert.css +127 -0
  28. package/dist/components/alert/alert.svelte +89 -0
  29. package/dist/components/alert/alert.svelte.d.ts +4 -0
  30. package/dist/components/alert/types.d.ts +28 -0
  31. package/dist/components/alert/types.js +1 -0
  32. package/dist/components/app/app.css +16 -0
  33. package/dist/components/app/app.svelte +43 -0
  34. package/dist/components/app/app.svelte.d.ts +7 -0
  35. package/dist/components/app/types.d.ts +4 -0
  36. package/dist/components/app/types.js +1 -0
  37. package/dist/components/appbar/appbar.css +48 -0
  38. package/dist/components/appbar/appbar.svelte +41 -0
  39. package/dist/components/appbar/appbar.svelte.d.ts +4 -0
  40. package/dist/components/appbar/types.d.ts +15 -0
  41. package/dist/components/appbar/types.js +1 -0
  42. package/dist/components/aspect-ratio/aspect-ratio.css +19 -0
  43. package/dist/components/aspect-ratio/aspect-ratio.svelte +47 -0
  44. package/dist/components/aspect-ratio/aspect-ratio.svelte.d.ts +4 -0
  45. package/dist/components/aspect-ratio/types.d.ts +5 -0
  46. package/dist/components/aspect-ratio/types.js +1 -0
  47. package/dist/components/avatar/avatar.css +109 -0
  48. package/dist/components/avatar/avatar.svelte +46 -0
  49. package/dist/components/avatar/avatar.svelte.d.ts +4 -0
  50. package/dist/components/avatar/types.d.ts +22 -0
  51. package/dist/components/avatar/types.js +1 -0
  52. package/dist/components/button/button.css +247 -0
  53. package/dist/components/button/button.svelte +102 -0
  54. package/dist/components/button/button.svelte.d.ts +4 -0
  55. package/dist/components/button/types.d.ts +29 -0
  56. package/dist/components/button/types.js +1 -0
  57. package/dist/components/card/card.css +115 -0
  58. package/dist/components/card/card.svelte +63 -0
  59. package/dist/components/card/card.svelte.d.ts +4 -0
  60. package/dist/components/card/types.d.ts +18 -0
  61. package/dist/components/card/types.js +1 -0
  62. package/dist/components/chip/chip.css +230 -0
  63. package/dist/components/chip/chip.svelte +129 -0
  64. package/dist/components/chip/chip.svelte.d.ts +4 -0
  65. package/dist/components/chip/types.d.ts +31 -0
  66. package/dist/components/chip/types.js +1 -0
  67. package/dist/components/dialog/dialog.css +134 -0
  68. package/dist/components/dialog/dialog.svelte +67 -0
  69. package/dist/components/dialog/dialog.svelte.d.ts +4 -0
  70. package/dist/components/dialog/types.d.ts +24 -0
  71. package/dist/components/dialog/types.js +1 -0
  72. package/dist/components/dropdown/dropdown.css +22 -0
  73. package/dist/components/dropdown/dropdown.svelte +116 -0
  74. package/dist/components/dropdown/dropdown.svelte.d.ts +4 -0
  75. package/dist/components/dropdown/dropdown.svelte.js +148 -0
  76. package/dist/components/dropdown/types.d.ts +26 -0
  77. package/dist/components/dropdown/types.js +1 -0
  78. package/dist/components/icon/icon.css +79 -0
  79. package/dist/components/icon/icon.svelte +49 -0
  80. package/dist/components/icon/icon.svelte.d.ts +4 -0
  81. package/dist/components/icon/types.d.ts +16 -0
  82. package/dist/components/icon/types.js +1 -0
  83. package/dist/components/index.d.ts +21 -0
  84. package/dist/components/index.js +22 -0
  85. package/dist/components/list/list.css +221 -0
  86. package/dist/components/list/list.svelte +44 -0
  87. package/dist/components/list/list.svelte.d.ts +4 -0
  88. package/dist/components/list/modules/list-item.svelte +76 -0
  89. package/dist/components/list/modules/list-item.svelte.d.ts +4 -0
  90. package/dist/components/list/types.d.ts +33 -0
  91. package/dist/components/list/types.js +1 -0
  92. package/dist/components/modal/modal.css +143 -0
  93. package/dist/components/modal/modal.svelte +112 -0
  94. package/dist/components/modal/modal.svelte.d.ts +4 -0
  95. package/dist/components/modal/types.d.ts +26 -0
  96. package/dist/components/modal/types.js +1 -0
  97. package/dist/components/popover/popover.css +22 -0
  98. package/dist/components/popover/popover.svelte +73 -0
  99. package/dist/components/popover/popover.svelte.d.ts +4 -0
  100. package/dist/components/popover/popover.svelte.js +134 -0
  101. package/dist/components/popover/types.d.ts +20 -0
  102. package/dist/components/popover/types.js +1 -0
  103. package/dist/components/separator/separator.css +46 -0
  104. package/dist/components/separator/separator.svelte +37 -0
  105. package/dist/components/separator/separator.svelte.d.ts +4 -0
  106. package/dist/components/separator/types.d.ts +11 -0
  107. package/dist/components/separator/types.js +1 -0
  108. package/dist/components/spacer/spacer.css +3 -0
  109. package/dist/components/spacer/spacer.svelte +7 -0
  110. package/dist/components/spacer/spacer.svelte.d.ts +4 -0
  111. package/dist/components/spacer/types.d.ts +4 -0
  112. package/dist/components/spacer/types.js +1 -0
  113. package/dist/components/toolbar/toolbar.css +129 -0
  114. package/dist/components/toolbar/toolbar.svelte +47 -0
  115. package/dist/components/toolbar/toolbar.svelte.d.ts +4 -0
  116. package/dist/components/toolbar/types.d.ts +27 -0
  117. package/dist/components/toolbar/types.js +1 -0
  118. package/dist/components/tooltip/tooltip.css +124 -0
  119. package/dist/components/tooltip/tooltip.svelte +113 -0
  120. package/dist/components/tooltip/tooltip.svelte.d.ts +4 -0
  121. package/dist/components/tooltip/tooltip.svelte.js +131 -0
  122. package/dist/components/tooltip/types.d.ts +23 -0
  123. package/dist/components/tooltip/types.js +1 -0
  124. package/dist/index.d.ts +1 -0
  125. package/dist/index.js +4 -0
  126. package/dist/internal/ansi.d.ts +40 -0
  127. package/dist/internal/ansi.js +44 -0
  128. package/dist/internal/assets.svelte.d.ts +8 -0
  129. package/dist/internal/assets.svelte.js +54 -0
  130. package/dist/internal/clickOutside.d.ts +9 -0
  131. package/dist/internal/clickOutside.js +34 -0
  132. package/dist/internal/colors.d.ts +1 -0
  133. package/dist/internal/colors.js +50 -0
  134. package/dist/internal/index.d.ts +4 -0
  135. package/dist/internal/index.js +4 -0
  136. package/dist/internal/minify.d.ts +1 -0
  137. package/dist/internal/minify.js +10 -0
  138. package/dist/internal/ripple.d.ts +12 -0
  139. package/dist/internal/ripple.js +93 -0
  140. package/dist/internal/scroll.d.ts +1 -0
  141. package/dist/internal/scroll.js +6 -0
  142. package/dist/internal/terminal.d.ts +1 -0
  143. package/dist/internal/terminal.js +12 -0
  144. package/dist/internal/types.d.ts +57 -0
  145. package/dist/internal/types.js +1 -0
  146. package/dist/internal/unit.d.ts +1 -0
  147. package/dist/internal/unit.js +11 -0
  148. package/dist/plugin/modules/config.d.ts +2 -0
  149. package/dist/plugin/modules/config.js +54 -0
  150. package/dist/plugin/modules/importer.d.ts +1 -0
  151. package/dist/plugin/modules/importer.js +15 -0
  152. package/dist/plugin/vitejs.d.ts +6 -0
  153. package/dist/plugin/vitejs.js +26 -0
  154. package/dist/preset.d.ts +2 -0
  155. package/dist/preset.js +92 -0
  156. package/dist/stores/index.d.ts +10 -0
  157. package/dist/stores/index.js +47 -0
  158. package/dist/style/animation.css +62 -0
  159. package/dist/style/css.d.ts +2 -0
  160. package/dist/style/css.js +34 -0
  161. package/dist/style/normalize.css +125 -0
  162. package/dist/style/parser/color.d.ts +5 -0
  163. package/dist/style/parser/color.js +88 -0
  164. package/dist/style/parser/component.d.ts +2 -0
  165. package/dist/style/parser/component.js +115 -0
  166. package/dist/style/parser/device.d.ts +2 -0
  167. package/dist/style/parser/device.js +40 -0
  168. package/dist/style/parser/index.d.ts +4 -0
  169. package/dist/style/parser/index.js +4 -0
  170. package/dist/style/parser/variable.d.ts +2 -0
  171. package/dist/style/parser/variable.js +25 -0
  172. package/dist/style/variable.css +12 -0
  173. package/dist/styles.css +0 -0
  174. package/dist/utils/x11.d.ts +4 -0
  175. package/dist/utils/x11.js +151 -0
  176. package/package.json +93 -0
@@ -0,0 +1,12 @@
1
+ interface RippleOptions {
2
+ component?: string;
3
+ center?: boolean;
4
+ color?: string;
5
+ duration?: number;
6
+ disabled?: boolean;
7
+ }
8
+ export declare function ripple(el: HTMLElement, options?: RippleOptions): {
9
+ destroy(): void;
10
+ update(newOptions: RippleOptions): void;
11
+ };
12
+ export {};
@@ -0,0 +1,93 @@
1
+ const triggerEvents = ['pointerdown', 'touchstart', 'keydown'];
2
+ const cancelEvents = ['mouseleave', 'dragleave', 'touchmove', 'touchcancel', 'pointerup', 'keyup'];
3
+ export function ripple(el, options = {}) {
4
+ const rippleContainer = document.createElement('div');
5
+ addClasses();
6
+ setOptions(options);
7
+ function addClasses(center) {
8
+ const shouldBeCentered = center || options.center;
9
+ if (!rippleContainer.classList.contains('kit-ripple--effect')) {
10
+ rippleContainer.classList.add('kit-ripple--effect');
11
+ }
12
+ if (!shouldBeCentered && rippleContainer.classList.contains('kit-ripple--center')) {
13
+ rippleContainer.classList.remove('kit-ripple--center');
14
+ }
15
+ if (shouldBeCentered) {
16
+ rippleContainer.classList.add('kit-ripple--center');
17
+ }
18
+ }
19
+ function setOptions(options) {
20
+ if (options.disabled || el.hasAttribute('aria-disabled')) {
21
+ rippleContainer.remove();
22
+ }
23
+ else {
24
+ el.appendChild(rippleContainer);
25
+ }
26
+ if (options.duration && options.duration < 0) {
27
+ options.duration = undefined;
28
+ }
29
+ if (options.component) {
30
+ rippleContainer.style.setProperty('--ripple-radius', `var(--${options.component}-radius)`);
31
+ }
32
+ if (options.color) {
33
+ rippleContainer.style.setProperty('--ripple-color', options.color);
34
+ }
35
+ if (options.duration) {
36
+ rippleContainer.style.setProperty('--ripple-duration', `${options.duration}ms`);
37
+ }
38
+ }
39
+ function createRipple(e, center) {
40
+ if (options.disabled || el.hasAttribute('aria-disabled')) {
41
+ return;
42
+ }
43
+ if (e instanceof KeyboardEvent) {
44
+ if (!['Enter', 'Space'].includes(e.code) || e.repeat) {
45
+ return;
46
+ }
47
+ e.preventDefault();
48
+ const click = new PointerEvent('pointerdown');
49
+ createRipple(click, true);
50
+ return;
51
+ }
52
+ addClasses(center);
53
+ const rect = el.getBoundingClientRect();
54
+ const clientX = window.TouchEvent && e instanceof TouchEvent
55
+ ? e.touches[0].clientX
56
+ : e.clientX;
57
+ const clientY = window.TouchEvent && e instanceof TouchEvent
58
+ ? e.touches[0].clientY
59
+ : e.clientY;
60
+ const x = clientX - rect.left > el.offsetWidth / 2 ? 0 : el.offsetWidth;
61
+ const y = clientY - rect.top > el.offsetHeight / 2 ? 0 : el.offsetHeight;
62
+ const radius = Math.hypot(x - (clientX - rect.left), y - (clientY - rect.top));
63
+ const ripple = document.createElement('div');
64
+ ripple.classList.add('kit-ripple');
65
+ ripple.style.left = `${clientX - rect.left - radius}px`;
66
+ ripple.style.top = `${clientY - rect.top - radius}px`;
67
+ ripple.style.width = ripple.style.height = `${radius * 2}px`;
68
+ rippleContainer.appendChild(ripple);
69
+ function removeRipple() {
70
+ if (ripple === null) {
71
+ return;
72
+ }
73
+ ripple.style.opacity = '0';
74
+ setTimeout(() => {
75
+ ripple.remove();
76
+ }, options.duration || 1000);
77
+ cancelEvents.forEach((event) => el.removeEventListener(event, removeRipple));
78
+ }
79
+ cancelEvents.forEach((event) => el.addEventListener(event, removeRipple, { passive: true }));
80
+ }
81
+ triggerEvents.forEach((event) => el.addEventListener(event, createRipple, { passive: event === 'touchstart' }));
82
+ return {
83
+ destroy() {
84
+ triggerEvents.forEach((event) => {
85
+ el.removeEventListener(event, createRipple);
86
+ });
87
+ },
88
+ update(newOptions) {
89
+ options = newOptions;
90
+ setOptions(newOptions);
91
+ }
92
+ };
93
+ }
@@ -0,0 +1 @@
1
+ export declare function disabledScroll(state: boolean): void;
@@ -0,0 +1,6 @@
1
+ import { BROWSER } from 'esm-env';
2
+ export function disabledScroll(state) {
3
+ if (BROWSER) {
4
+ document.body.style.overflow = state ? 'hidden' : '';
5
+ }
6
+ }
@@ -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,57 @@
1
+ import type { Snippet } from 'svelte';
2
+ type IdElementType = string | undefined;
3
+ type ClassNameType = string | string[] | undefined;
4
+ type StylePropertiesType = string | undefined;
5
+ export interface Base {
6
+ id?: IdElementType;
7
+ class?: ClassNameType;
8
+ style?: StylePropertiesType;
9
+ [key: string]: any;
10
+ }
11
+ export interface Component extends Base {
12
+ children?: Snippet;
13
+ }
14
+ export type FontFamily = {
15
+ [key: string]: string | string[];
16
+ };
17
+ export type Colors = {
18
+ [key: string]: {
19
+ light: string;
20
+ dark: string;
21
+ } | string;
22
+ };
23
+ export type Thresholds = {
24
+ [key: string]: number | string;
25
+ };
26
+ export type Radius = {
27
+ [key: string]: number | string;
28
+ };
29
+ export interface Lapikit {
30
+ options: {
31
+ normalize: boolean;
32
+ minify: boolean;
33
+ };
34
+ theme: {
35
+ colorScheme: string;
36
+ colors: Colors;
37
+ };
38
+ breakpoints: {
39
+ mobileBreakpoint: string;
40
+ tabletBreakpoint: string;
41
+ laptopBreakpoint: string;
42
+ thresholds: Thresholds;
43
+ };
44
+ styles: {
45
+ spacing: string;
46
+ corner: {
47
+ active: boolean;
48
+ radius: Radius;
49
+ };
50
+ font: FontFamily;
51
+ };
52
+ }
53
+ type DeepOptional<T> = {
54
+ [P in keyof T]?: T[P] extends (infer U)[] ? DeepOptional<U>[] : T[P] extends object ? DeepOptional<T[P]> : T[P];
55
+ };
56
+ export type LapikitConfig = DeepOptional<Lapikit>;
57
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export declare const setUnit: (value: string | number) => string;
@@ -0,0 +1,11 @@
1
+ export const setUnit = (value) => {
2
+ if (typeof value === 'number')
3
+ return `${value}px`;
4
+ if (typeof value === 'string') {
5
+ const cleaned = value.trim();
6
+ const isOnlyNumericLike = /^[\d.,]+$/.test(cleaned);
7
+ if (isOnlyNumericLike)
8
+ return `${value}px`;
9
+ }
10
+ return value;
11
+ };
@@ -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 @@
1
+ export declare const importer: () => Promise<any>;
@@ -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
+ };
@@ -0,0 +1,6 @@
1
+ import type { ViteDevServer } from 'vite';
2
+ export declare function lapikit(): Promise<{
3
+ name: string;
4
+ configResolved(): Promise<void>;
5
+ configureServer(server: ViteDevServer): Promise<void>;
6
+ }>;
@@ -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,92 @@
1
+ export const config = {
2
+ options: {
3
+ normalize: true, // true | false
4
+ minify: false // true | false
5
+ },
6
+ theme: {
7
+ colorScheme: 'system', // 'light' | 'dark' | 'system'
8
+ colors: {
9
+ primary: { light: 'oklch(45% 0.24 277.023)', dark: 'oklch(45% 0.24 277.023)' },
10
+ 'on-primary': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
11
+ secondary: { light: 'oklch(65% 0.241 354.308)', dark: 'oklch(65% 0.241 354.308)' },
12
+ 'on-secondary': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
13
+ tertiary: { light: 'oklch(77% 0.152 181.912)', dark: 'oklch(77% 0.152 181.912)' },
14
+ 'on-tertiary': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
15
+ neutral: { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
16
+ 'on-neutral': { light: 'oklch(100% 0 0)', dark: 'oklch(100% 0 0)' },
17
+ info: { light: 'oklch(74% 0.16 232.661)', dark: 'oklch(74% 0.16 232.661)' },
18
+ 'on-info': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
19
+ success: { light: 'oklch(76% 0.177 163.223)', dark: 'oklch(76% 0.177 163.223)' },
20
+ 'on-success': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
21
+ warning: { light: 'oklch(82% 0.189 84.429)', dark: 'oklch(82% 0.189 84.429)' },
22
+ 'on-warning': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
23
+ error: { light: 'oklch(71% 0.194 13.428)', dark: 'oklch(71% 0.194 13.428)' },
24
+ 'on-error': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
25
+ base: { light: 'oklch(100% 0 0)', dark: 'oklch(25.33% 0.016 252.42)' },
26
+ 'on-base': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(100% 0 0)' },
27
+ surface: { light: 'oklch(98% 0 0)', dark: 'oklch(23.26% 0.014 253.1)' },
28
+ 'on-surface': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(100% 0 0)' },
29
+ container: { light: 'oklch(95% 0 0)', dark: 'oklch(21.15% 0.012 254.09)' },
30
+ 'on-container': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(100% 0 0)' },
31
+ shadow: 'black',
32
+ scrim: 'oklch(0.00% 0.000 0)'
33
+ }
34
+ },
35
+ breakpoints: {
36
+ mobileBreakpoint: 'sm',
37
+ tabletBreakpoint: 'md',
38
+ laptopBreakpoint: 'lg',
39
+ thresholds: {
40
+ _default: 0, // 0px
41
+ xs: '28rem', //448px
42
+ sm: '40rem', //640px
43
+ md: '48rem', //768px
44
+ lg: '64rem', //1024px
45
+ xl: '80rem', //1280px
46
+ '2xl': '96rem', //1536px
47
+ '3xl': '112rem' //1792px
48
+ }
49
+ },
50
+ styles: {
51
+ spacing: '0.125rem', // 2px
52
+ corner: {
53
+ active: true, // true | false
54
+ radius: {
55
+ sm: '0.125rem', // 2px
56
+ md: '0.25rem', // 4px
57
+ lg: '0.5rem', // 8px
58
+ xl: '0.75rem', // 12px
59
+ '2xl': '1rem', // 16px
60
+ '3xl': '1.5rem', // 24px
61
+ full: '9999px' // 9999px
62
+ }
63
+ },
64
+ font: {
65
+ sans: [
66
+ 'system-ui',
67
+ '-apple-system',
68
+ 'BlinkMacSystemFont',
69
+ 'Segoe UI',
70
+ 'Roboto',
71
+ 'Helvetica Neue',
72
+ 'Arial',
73
+ 'sans-serif',
74
+ 'Apple Color Emoji',
75
+ 'Segoe UI Emoji',
76
+ 'Segoe UI Symbol'
77
+ ],
78
+ mono: [
79
+ 'SFMono-Regular',
80
+ 'ui-monospace',
81
+ 'SF Mono',
82
+ 'Menlo',
83
+ 'Monaco',
84
+ 'Consolas',
85
+ 'Liberation Mono',
86
+ 'Courier New',
87
+ 'monospace'
88
+ ],
89
+ serif: ['Merriweather', 'Georgia', 'Cambria', 'Times New Roman', 'Times', 'serif']
90
+ }
91
+ }
92
+ };
@@ -0,0 +1,10 @@
1
+ import { type Writable } from 'svelte/store';
2
+ export declare const colorScheme: Writable<'system' | 'dark' | 'light'>;
3
+ export declare const colorSchemeSystem: Writable<'dark' | 'light'>;
4
+ export declare const modalOpen: Writable<boolean | 'persistent'>;
5
+ export declare const modalStack: Writable<string[]>;
6
+ export declare function updateThemeStore(update: 'system' | 'dark' | 'light'): void;
7
+ export declare function setColorScheme(scheme: 'system' | 'dark' | 'light'): void;
8
+ export declare function setOpenModal(state: boolean | 'persistent'): void;
9
+ export declare const pushModal: (id: string) => void;
10
+ export declare const popModal: (id: string) => void;
@@ -0,0 +1,47 @@
1
+ import { disabledScroll } from '../internal/scroll.js';
2
+ import { writable } from 'svelte/store';
3
+ // states
4
+ const colorScheme_default = 'system';
5
+ const modalOpen_default = false;
6
+ const isBrowser = typeof window !== 'undefined';
7
+ export const colorScheme = writable(colorScheme_default);
8
+ export const colorSchemeSystem = writable('light');
9
+ export const modalOpen = writable(modalOpen_default);
10
+ export const modalStack = writable([]);
11
+ export function updateThemeStore(update) {
12
+ colorScheme.update(() => {
13
+ if (isBrowser) {
14
+ const ref = document.documentElement.classList;
15
+ if (update === 'system')
16
+ ref.remove('light', 'dark');
17
+ else {
18
+ ref.remove(update === 'dark' ? 'light' : 'dark');
19
+ ref.add(update === 'dark' ? 'dark' : 'light');
20
+ }
21
+ localStorage.setItem('@lapikit/theme', update);
22
+ }
23
+ return update;
24
+ });
25
+ }
26
+ export function setColorScheme(scheme) {
27
+ updateThemeStore(scheme);
28
+ }
29
+ export function setOpenModal(state) {
30
+ modalOpen.set(state);
31
+ }
32
+ export const pushModal = (id) => {
33
+ modalStack.update((stack) => {
34
+ let values = stack;
35
+ if (!stack.includes(id))
36
+ values = [...stack, id];
37
+ disabledScroll(values.length !== 0 ? true : false);
38
+ return values;
39
+ });
40
+ };
41
+ export const popModal = (id) => {
42
+ modalStack.update((stack) => {
43
+ const newStack = stack.filter((m) => m !== id);
44
+ disabledScroll(newStack.length !== 0 ? true : false);
45
+ return newStack.length === 0 ? [] : newStack;
46
+ });
47
+ };
@@ -0,0 +1,62 @@
1
+ @keyframes button-click {
2
+ 0% {
3
+ transform: scale(0.98);
4
+ }
5
+ 40% {
6
+ transform: scale(1.02);
7
+ }
8
+ 100% {
9
+ transform: scale(1);
10
+ }
11
+ }
12
+
13
+ @keyframes icon-rotate {
14
+ 0% {
15
+ transform: rotate(10deg);
16
+ }
17
+ 100% {
18
+ transform: rotate(380deg);
19
+ }
20
+ }
21
+
22
+ .kit-ripple {
23
+ background-color: currentColor;
24
+ opacity: 0.1;
25
+ position: absolute;
26
+ border-radius: 50%;
27
+ pointer-events: none;
28
+ -webkit-transition: 0.6s;
29
+ transition: 0.6s;
30
+ -webkit-animation: lapikit-ripple var(--ripple-duration, 0.4s) cubic-bezier(0.4, 0, 0.2, 1);
31
+ animation: lapikit-ripple var(--ripple-duration, 0.4s) cubic-bezier(0.4, 0, 0.2, 1);
32
+ border-radius: var(--ripple-radius);
33
+ }
34
+
35
+ .kit-ripple--center {
36
+ top: 50% !important;
37
+ left: 50% !important;
38
+ translate: -50% -50% !important;
39
+ }
40
+
41
+ .kit-ripple--effect {
42
+ position: absolute;
43
+ left: 0;
44
+ right: 0;
45
+ top: 0;
46
+ bottom: 0;
47
+ overflow: hidden;
48
+ background: none;
49
+ pointer-events: none;
50
+ z-index: 999;
51
+ border-radius: var(--ripple-radius);
52
+ }
53
+
54
+ @keyframes lapikit-ripple {
55
+ from {
56
+ scale: 0;
57
+ }
58
+
59
+ to {
60
+ scale: 1;
61
+ }
62
+ }
@@ -0,0 +1,2 @@
1
+ import type { Lapikit } from '../internal/types.js';
2
+ export declare const processCSS: (config: Lapikit) => Promise<void>;
@@ -0,0 +1,34 @@
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
+ export const processCSS = async (config) => {
12
+ const _normalize = fs.readFileSync(path.resolve(__dirname, './normalize.css'), 'utf-8');
13
+ const _animation = fs.readFileSync(path.resolve(__dirname, './animation.css'), 'utf-8');
14
+ const _variables = fs.readFileSync(path.resolve(__dirname, './variable.css'), 'utf-8');
15
+ let styles = ``;
16
+ if (config.options.normalize)
17
+ styles += `${_normalize}\n`;
18
+ const colorScheme = colors(config);
19
+ const deviceDisplay = devices(config);
20
+ const variablesStyles = variables(config);
21
+ styles += `${colorScheme.root}\n`;
22
+ styles += `${variablesStyles}\n`;
23
+ styles += `${variablesStyles}\n`;
24
+ styles += `${_variables}\n`;
25
+ styles += `${colorScheme.className}\n`;
26
+ styles += `${deviceDisplay}\n`;
27
+ styles += component(config);
28
+ styles += `${_animation}\n`;
29
+ if (config.options.minify) {
30
+ styles = minify(styles);
31
+ terminal('success', 'css minified');
32
+ }
33
+ fsPromises.writeFile(path.resolve(__dirname, '../styles.css'), styles);
34
+ };