lapikit 0.0.0-insiders.fbbc9f6 → 0.0.0-insiders.fbd9b54

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 (142) hide show
  1. package/bin/configuration.js +22 -0
  2. package/bin/helper.js +23 -0
  3. package/bin/index.js +41 -0
  4. package/bin/lapikit.js +37 -5
  5. package/bin/legacy.js +34 -0
  6. package/bin/modules/adapter.js +3 -3
  7. package/bin/modules/plugin.js +223 -0
  8. package/bin/prompts.js +101 -0
  9. package/dist/actions/index.d.ts +1 -0
  10. package/dist/actions/index.js +1 -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 +2 -0
  18. package/dist/assets/icons/loading-fill.svelte.d.ts +6 -14
  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 +137 -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 +31 -2
  34. package/dist/components/appbar/appbar.css +48 -0
  35. package/dist/components/appbar/appbar.svelte +40 -0
  36. package/dist/components/appbar/appbar.svelte.d.ts +4 -0
  37. package/dist/components/appbar/types.d.ts +15 -0
  38. package/dist/components/appbar/types.js +1 -0
  39. package/dist/components/aspect-ratio/aspect-ratio.css +19 -0
  40. package/dist/components/aspect-ratio/aspect-ratio.svelte +47 -0
  41. package/dist/components/aspect-ratio/aspect-ratio.svelte.d.ts +4 -0
  42. package/dist/components/aspect-ratio/types.d.ts +5 -0
  43. package/dist/components/aspect-ratio/types.js +1 -0
  44. package/dist/components/avatar/avatar.css +109 -0
  45. package/dist/components/avatar/avatar.svelte +46 -0
  46. package/dist/components/avatar/avatar.svelte.d.ts +4 -0
  47. package/dist/components/avatar/types.d.ts +22 -0
  48. package/dist/components/avatar/types.js +1 -0
  49. package/dist/components/button/button.css +165 -194
  50. package/dist/components/button/button.svelte +39 -31
  51. package/dist/components/button/button.svelte.d.ts +2 -2
  52. package/dist/components/button/types.d.ts +7 -5
  53. package/dist/components/card/card.css +115 -0
  54. package/dist/components/card/card.svelte +63 -0
  55. package/dist/components/card/card.svelte.d.ts +4 -0
  56. package/dist/components/card/types.d.ts +18 -0
  57. package/dist/components/card/types.js +1 -0
  58. package/dist/components/chip/chip.css +231 -0
  59. package/dist/components/chip/chip.svelte +129 -0
  60. package/dist/components/chip/chip.svelte.d.ts +4 -0
  61. package/dist/components/chip/types.d.ts +31 -0
  62. package/dist/components/chip/types.js +1 -0
  63. package/dist/components/dialog/dialog.css +134 -0
  64. package/dist/components/dialog/dialog.svelte +67 -0
  65. package/dist/components/dialog/dialog.svelte.d.ts +4 -0
  66. package/dist/components/dialog/types.d.ts +24 -0
  67. package/dist/components/dialog/types.js +1 -0
  68. package/dist/components/dropdown/dropdown.css +22 -0
  69. package/dist/components/dropdown/dropdown.svelte +116 -0
  70. package/dist/components/dropdown/dropdown.svelte.d.ts +4 -0
  71. package/dist/components/dropdown/dropdown.svelte.js +148 -0
  72. package/dist/components/dropdown/types.d.ts +26 -0
  73. package/dist/components/dropdown/types.js +1 -0
  74. package/dist/components/icon/icon.css +14 -11
  75. package/dist/components/index.d.ts +20 -1
  76. package/dist/components/index.js +20 -1
  77. package/dist/components/list/list.css +221 -0
  78. package/dist/components/list/list.svelte +44 -0
  79. package/dist/components/list/list.svelte.d.ts +4 -0
  80. package/dist/components/list/modules/list-item.svelte +76 -0
  81. package/dist/components/list/modules/list-item.svelte.d.ts +4 -0
  82. package/dist/components/list/types.d.ts +33 -0
  83. package/dist/components/list/types.js +1 -0
  84. package/dist/components/modal/modal.css +144 -0
  85. package/dist/components/modal/modal.svelte +113 -0
  86. package/dist/components/modal/modal.svelte.d.ts +4 -0
  87. package/dist/components/modal/types.d.ts +26 -0
  88. package/dist/components/modal/types.js +1 -0
  89. package/dist/components/popover/popover.css +22 -0
  90. package/dist/components/popover/popover.svelte +73 -0
  91. package/dist/components/popover/popover.svelte.d.ts +4 -0
  92. package/dist/components/popover/popover.svelte.js +134 -0
  93. package/dist/components/popover/types.d.ts +20 -0
  94. package/dist/components/popover/types.js +1 -0
  95. package/dist/components/separator/separator.css +46 -0
  96. package/dist/components/separator/separator.svelte +37 -0
  97. package/dist/components/separator/separator.svelte.d.ts +4 -0
  98. package/dist/components/separator/types.d.ts +11 -0
  99. package/dist/components/separator/types.js +1 -0
  100. package/dist/components/spacer/spacer.css +3 -0
  101. package/dist/components/spacer/spacer.svelte +7 -0
  102. package/dist/components/spacer/spacer.svelte.d.ts +4 -0
  103. package/dist/components/spacer/types.d.ts +4 -0
  104. package/dist/components/spacer/types.js +1 -0
  105. package/dist/components/textfield/textfield.css +305 -0
  106. package/dist/components/textfield/textfield.svelte +193 -0
  107. package/dist/components/textfield/textfield.svelte.d.ts +4 -0
  108. package/dist/components/textfield/types.d.ts +37 -0
  109. package/dist/components/textfield/types.js +1 -0
  110. package/dist/components/toolbar/toolbar.css +129 -0
  111. package/dist/components/toolbar/toolbar.svelte +47 -0
  112. package/dist/components/toolbar/toolbar.svelte.d.ts +4 -0
  113. package/dist/components/toolbar/types.d.ts +27 -0
  114. package/dist/components/toolbar/types.js +1 -0
  115. package/dist/components/tooltip/tooltip.css +124 -0
  116. package/dist/components/tooltip/tooltip.svelte +113 -0
  117. package/dist/components/tooltip/tooltip.svelte.d.ts +4 -0
  118. package/dist/components/tooltip/tooltip.svelte.js +131 -0
  119. package/dist/components/tooltip/types.d.ts +23 -0
  120. package/dist/components/tooltip/types.js +1 -0
  121. package/dist/internal/assets.svelte.d.ts +1 -0
  122. package/dist/internal/assets.svelte.js +13 -0
  123. package/dist/internal/clickOutside.d.ts +9 -0
  124. package/dist/internal/clickOutside.js +34 -0
  125. package/dist/internal/index.d.ts +1 -0
  126. package/dist/internal/index.js +1 -0
  127. package/dist/internal/ripple.d.ts +12 -0
  128. package/dist/internal/ripple.js +93 -0
  129. package/dist/internal/scroll.d.ts +1 -0
  130. package/dist/internal/scroll.js +6 -0
  131. package/dist/internal/unit.d.ts +1 -0
  132. package/dist/internal/unit.js +11 -0
  133. package/dist/preset.js +2 -2
  134. package/dist/stores/index.d.ts +9 -3
  135. package/dist/stores/index.js +27 -3
  136. package/dist/style/animation.css +42 -0
  137. package/dist/style/css.js +3 -0
  138. package/dist/style/normalize.css +2 -0
  139. package/dist/style/parser/color.js +2 -2
  140. package/dist/style/parser/device.js +31 -19
  141. package/dist/style/variable.css +12 -0
  142. package/package.json +12 -4
@@ -0,0 +1,131 @@
1
+ import { innerWidth, innerHeight } from 'svelte/reactivity/window';
2
+ export function getPositionsTooltip() {
3
+ // state
4
+ const axis = $state({
5
+ x: 0,
6
+ y: 0,
7
+ location: null
8
+ });
9
+ return {
10
+ get values() {
11
+ return axis;
12
+ },
13
+ update(activator, element, location, centered, avoidCollisions) {
14
+ if (!activator || !element)
15
+ return;
16
+ const elementRect = element.getBoundingClientRect();
17
+ const activatorRect = activator.getBoundingClientRect();
18
+ const spacing = 6;
19
+ if (location === 'top' || location === 'bottom') {
20
+ if (avoidCollisions) {
21
+ if (location === 'top') {
22
+ if (activatorRect.y - (elementRect.height + spacing) < 0) {
23
+ axis.y = activatorRect.bottom + spacing;
24
+ axis.location = 'bottom';
25
+ }
26
+ else {
27
+ axis.y = activatorRect.top - (elementRect.height + spacing);
28
+ axis.location = 'top';
29
+ }
30
+ }
31
+ else {
32
+ if (activatorRect.y + activatorRect.height + (elementRect.height + spacing) >
33
+ innerHeight.current) {
34
+ axis.y = activatorRect.top - (elementRect.height + spacing);
35
+ axis.location = 'top';
36
+ }
37
+ else {
38
+ axis.y = activatorRect.bottom + spacing;
39
+ axis.location = 'bottom';
40
+ }
41
+ }
42
+ }
43
+ else {
44
+ if (location === 'top') {
45
+ axis.y = activatorRect.top - (elementRect.height + spacing);
46
+ axis.location = 'top';
47
+ }
48
+ else {
49
+ axis.y = activatorRect.bottom + spacing;
50
+ axis.location = 'bottom';
51
+ }
52
+ }
53
+ if (centered &&
54
+ activatorRect.left - (elementRect.width - activatorRect.width) / 2 > 0 &&
55
+ activatorRect.left + elementRect.width < innerWidth.current) {
56
+ axis.x = activatorRect.left - (elementRect.width - activatorRect.width) / 2;
57
+ }
58
+ else if (activatorRect.left + elementRect.width > innerWidth.current) {
59
+ axis.x = activatorRect.left - (elementRect.width - activatorRect.width);
60
+ }
61
+ else {
62
+ axis.x = activatorRect.left;
63
+ }
64
+ }
65
+ else if (location === 'left' || location === 'right') {
66
+ if (avoidCollisions) {
67
+ if (location === 'left' && !(activatorRect.left - elementRect.width < 0)) {
68
+ axis.x = activatorRect.left - (elementRect.width + spacing);
69
+ axis.location = 'left';
70
+ }
71
+ else {
72
+ if (activatorRect.left + activatorRect.width + elementRect.width + spacing >
73
+ innerWidth.current) {
74
+ axis.x = activatorRect.left - (elementRect.width + spacing);
75
+ axis.location = 'left';
76
+ }
77
+ else {
78
+ axis.x = activatorRect.left + activatorRect.width + spacing;
79
+ axis.location = 'right';
80
+ }
81
+ }
82
+ }
83
+ else {
84
+ if (location === 'left') {
85
+ axis.x = activatorRect.left - (elementRect.width + spacing);
86
+ axis.location = 'left';
87
+ }
88
+ else {
89
+ axis.x = activatorRect.left + activatorRect.width + spacing;
90
+ axis.location = 'right';
91
+ }
92
+ }
93
+ if (centered &&
94
+ activatorRect.top - (elementRect.height - activatorRect.height) / 2 > 0 &&
95
+ activatorRect.top + elementRect.height < innerHeight.current) {
96
+ axis.y = activatorRect.top - (elementRect.height - activatorRect.height) / 2;
97
+ }
98
+ else if (activatorRect.y + elementRect.height > innerHeight.current) {
99
+ axis.y = activatorRect.y - elementRect.height + activatorRect.height;
100
+ }
101
+ else {
102
+ axis.y = activatorRect.y;
103
+ }
104
+ }
105
+ else {
106
+ if (centered &&
107
+ activatorRect.left - (elementRect.width - activatorRect.width) / 2 > 0 &&
108
+ activatorRect.left + elementRect.width < innerWidth.current) {
109
+ axis.x = activatorRect.left - (elementRect.width - activatorRect.width) / 2;
110
+ }
111
+ else if (activatorRect.left + elementRect.width > innerWidth.current) {
112
+ axis.x = activatorRect.left - (elementRect.width - activatorRect.width);
113
+ }
114
+ else {
115
+ axis.x = activatorRect.left;
116
+ }
117
+ if (centered &&
118
+ activatorRect.top - (elementRect.height - activatorRect.height) / 2 > 0 &&
119
+ activatorRect.top + elementRect.height < innerHeight.current) {
120
+ axis.y = activatorRect.top - (elementRect.height - activatorRect.height) / 2;
121
+ }
122
+ else if (activatorRect.bottom + elementRect.height > innerHeight.current) {
123
+ axis.y = activatorRect.top - elementRect.height;
124
+ }
125
+ else {
126
+ axis.y = activatorRect.bottom;
127
+ }
128
+ }
129
+ }
130
+ };
131
+ }
@@ -0,0 +1,23 @@
1
+ import type { Component } from '../../internal/types.js';
2
+ import type { Snippet } from 'svelte';
3
+ export interface TooltipProps extends Component {
4
+ open?: boolean;
5
+ dark?: boolean;
6
+ light?: boolean;
7
+ rounded?: string;
8
+ label?: string;
9
+ location?: 'top' | 'bottom' | 'left' | 'right';
10
+ color?: string;
11
+ background?: string;
12
+ delayDuration?: number;
13
+ variant?: 'arrow';
14
+ density?: 'compact' | 'comfortable' | 'default';
15
+ disabled?: boolean;
16
+ avoidCollisions?: boolean;
17
+ tooltip?: Snippet;
18
+ }
19
+ export type PositionElement = {
20
+ x: number;
21
+ y: number;
22
+ location: string | null;
23
+ };
@@ -0,0 +1 @@
1
+ export {};
@@ -4,4 +4,5 @@ export declare function getAssets(): {
4
4
  [key: string]: string;
5
5
  }): string | undefined;
6
6
  color(color?: string): string | undefined;
7
+ unit(value?: string | number): string | undefined;
7
8
  };
@@ -34,8 +34,21 @@ export function getAssets() {
34
34
  color.includes('oklch') ||
35
35
  x11ColorNames.includes(color.toLowerCase()))
36
36
  return color;
37
+ if (color.includes('transparent') || color.includes('inherit') || color.includes('initial'))
38
+ return color;
37
39
  return `var(--kit-${color})`;
38
40
  }
41
+ },
42
+ unit(value) {
43
+ if (typeof value === 'number')
44
+ return `${value}px`;
45
+ if (typeof value === 'string') {
46
+ const cleaned = value.trim();
47
+ const isOnlyNumericLike = /^[\d.,]+$/.test(cleaned);
48
+ if (isOnlyNumericLike)
49
+ return `${value}px`;
50
+ }
51
+ return value;
39
52
  }
40
53
  };
41
54
  }
@@ -0,0 +1,9 @@
1
+ type ClickOutsideOptions = {
2
+ exclude?: (HTMLElement | PointerEvent | null)[];
3
+ onClose: () => void;
4
+ };
5
+ export declare function clickOutside(node: HTMLElement, options: ClickOutsideOptions): {
6
+ update(newOptions: ClickOutsideOptions): void;
7
+ destroy(): void;
8
+ };
9
+ export {};
@@ -0,0 +1,34 @@
1
+ export function clickOutside(node, options) {
2
+ let { exclude = [], onClose } = options;
3
+ function isTargetExcluded(target) {
4
+ return exclude.some((ex) => {
5
+ if (!ex)
6
+ return false;
7
+ if (ex instanceof HTMLElement) {
8
+ return ex.contains(target);
9
+ }
10
+ if (ex instanceof PointerEvent && ex.target instanceof Node) {
11
+ return ex.target.contains(target);
12
+ }
13
+ return false;
14
+ });
15
+ }
16
+ const handleClick = (event) => {
17
+ const target = event.target;
18
+ const isExcluded = isTargetExcluded(target);
19
+ const isInside = node.contains(target);
20
+ if (!isInside && !isExcluded) {
21
+ onClose();
22
+ }
23
+ };
24
+ document.addEventListener('click', handleClick, true);
25
+ return {
26
+ update(newOptions) {
27
+ exclude = newOptions.exclude || [];
28
+ onClose = newOptions.onClose;
29
+ },
30
+ destroy() {
31
+ document.removeEventListener('click', handleClick, true);
32
+ }
33
+ };
34
+ }
@@ -1,3 +1,4 @@
1
1
  export * from './terminal.js';
2
2
  export * from './ansi.js';
3
3
  export * from './assets.svelte.js';
4
+ export * from './scroll.js';
@@ -1,3 +1,4 @@
1
1
  export * from './terminal.js';
2
2
  export * from './ansi.js';
3
3
  export * from './assets.svelte.js';
4
+ export * from './scroll.js';
@@ -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 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
+ };
package/dist/preset.js CHANGED
@@ -4,7 +4,7 @@ export const config = {
4
4
  minify: false // true | false
5
5
  },
6
6
  theme: {
7
- colorScheme: 'dark', // 'light' | 'dark' | 'auto'
7
+ colorScheme: 'system', // 'light' | 'dark' | 'system'
8
8
  colors: {
9
9
  primary: { light: 'oklch(45% 0.24 277.023)', dark: 'oklch(45% 0.24 277.023)' },
10
10
  'on-primary': { light: 'oklch(14% 0.005 285.823)', dark: 'oklch(14% 0.005 285.823)' },
@@ -35,7 +35,7 @@ export const config = {
35
35
  breakpoints: {
36
36
  mobileBreakpoint: 'sm',
37
37
  tabletBreakpoint: 'md',
38
- laptopBreakpoint: 'xl',
38
+ laptopBreakpoint: 'lg',
39
39
  thresholds: {
40
40
  _default: 0, // 0px
41
41
  xs: '28rem', //448px
@@ -1,4 +1,10 @@
1
1
  import { type Writable } from 'svelte/store';
2
- export declare const colorScheme: Writable<'auto' | 'dark' | 'light'>;
3
- export declare function updateThemeStore(update: 'auto' | 'dark' | 'light'): void;
4
- export declare function setColorScheme(scheme: 'auto' | 'dark' | 'light'): void;
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;
@@ -1,13 +1,18 @@
1
+ import { disabledScroll } from '../internal/scroll.js';
1
2
  import { writable } from 'svelte/store';
2
3
  // states
3
- const _default = 'light';
4
+ const colorScheme_default = 'system';
5
+ const modalOpen_default = false;
4
6
  const isBrowser = typeof window !== 'undefined';
5
- export const colorScheme = writable(_default);
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([]);
6
11
  export function updateThemeStore(update) {
7
12
  colorScheme.update(() => {
8
13
  if (isBrowser) {
9
14
  const ref = document.documentElement.classList;
10
- if (update === 'auto')
15
+ if (update === 'system')
11
16
  ref.remove('light', 'dark');
12
17
  else {
13
18
  ref.remove(update === 'dark' ? 'light' : 'dark');
@@ -21,3 +26,22 @@ export function updateThemeStore(update) {
21
26
  export function setColorScheme(scheme) {
22
27
  updateThemeStore(scheme);
23
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
+ };
@@ -18,3 +18,45 @@
18
18
  transform: rotate(380deg);
19
19
  }
20
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
+ }
package/dist/style/css.js CHANGED
@@ -11,6 +11,7 @@ const __dirname = dirname(__filename);
11
11
  export const processCSS = async (config) => {
12
12
  const _normalize = fs.readFileSync(path.resolve(__dirname, './normalize.css'), 'utf-8');
13
13
  const _animation = fs.readFileSync(path.resolve(__dirname, './animation.css'), 'utf-8');
14
+ const _variables = fs.readFileSync(path.resolve(__dirname, './variable.css'), 'utf-8');
14
15
  let styles = ``;
15
16
  if (config.options.normalize)
16
17
  styles += `${_normalize}\n`;
@@ -19,6 +20,8 @@ export const processCSS = async (config) => {
19
20
  const variablesStyles = variables(config);
20
21
  styles += `${colorScheme.root}\n`;
21
22
  styles += `${variablesStyles}\n`;
23
+ styles += `${variablesStyles}\n`;
24
+ styles += `${_variables}\n`;
22
25
  styles += `${colorScheme.className}\n`;
23
26
  styles += `${deviceDisplay}\n`;
24
27
  styles += component(config);
@@ -4,6 +4,8 @@ html {
4
4
  line-height: 1.5;
5
5
  box-sizing: border-box;
6
6
  font-family: var(--kit-font-family-sans);
7
+ background-color: var(--kit-base);
8
+ color: var(--kit-on-base);
7
9
  }
8
10
 
9
11
  pre,
@@ -38,7 +38,7 @@ export const colors = (config) => {
38
38
  }
39
39
  cssVariables += `}\n`;
40
40
  cssVariables += `.${inversed} {\n`;
41
- cssVariables += `color-scheme: ${used};\n`;
41
+ cssVariables += `color-scheme: ${inversed};\n`;
42
42
  for (const [colorName, colorValue] of Object.entries(schemes[inversed])) {
43
43
  cssVariables += `--kit-${colorName}: ${colorValue};\n`;
44
44
  }
@@ -56,7 +56,7 @@ export const colors = (config) => {
56
56
  }
57
57
  cssVariables += `}\n`;
58
58
  cssVariables += `.${inversed} {\n`;
59
- cssVariables += `color-scheme: ${used};\n`;
59
+ cssVariables += `color-scheme: ${inversed};\n`;
60
60
  for (const [colorName, colorValue] of Object.entries(schemes[inversed])) {
61
61
  cssVariables += `--kit-${colorName}: ${colorValue};\n`;
62
62
  }
@@ -1,3 +1,4 @@
1
+ import { setUnit } from '../../internal/unit.js';
1
2
  export const devices = (config) => {
2
3
  let css = ``;
3
4
  const list = {
@@ -5,24 +6,35 @@ export const devices = (config) => {
5
6
  tablet: config.breakpoints.tabletBreakpoint,
6
7
  laptop: config.breakpoints.laptopBreakpoint
7
8
  };
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
- }
9
+ css += `@media screen and (max-width: ${setUnit(config.breakpoints.thresholds[list.mobile])}) {\n`;
10
+ css += `.hidden-mobile {\n`;
11
+ css += `display: none !important;\n`;
12
+ css += `}\n`;
13
+ css += `}\n`;
14
+ css += `@media screen and (min-width: ${setUnit(config.breakpoints.thresholds[list.mobile])}) {\n`;
15
+ css += `.display-mobile {\n`;
16
+ css += `display: none !important;\n`;
17
+ css += `}\n`;
18
+ css += `}\n`;
19
+ css += `@media screen and (min-width: ${setUnit(config.breakpoints.thresholds[list.tablet])}) and (max-width: ${setUnit(config.breakpoints.thresholds[list.laptop])}) {\n`;
20
+ css += `.hidden-tablet {\n`;
21
+ css += `display: none !important;\n`;
22
+ css += `}\n`;
23
+ css += `}\n`;
24
+ css += `@media screen and (max-width: ${setUnit(config.breakpoints.thresholds[list.tablet])}) and (min-width: ${setUnit(config.breakpoints.thresholds[list.laptop])}){\n`;
25
+ css += `.display-tablet {\n`;
26
+ css += `display: none !important;\n`;
27
+ css += `}\n`;
28
+ css += `}\n`;
29
+ css += `@media screen and (min-width: ${setUnit(config.breakpoints.thresholds[list.laptop])}) {\n`;
30
+ css += `.hidden-laptop {\n`;
31
+ css += `display: none !important;\n`;
32
+ css += `}\n`;
33
+ css += `}\n`;
34
+ css += `@media screen and (max-width: ${setUnit(config.breakpoints.thresholds[list.laptop])}) {\n`;
35
+ css += `.display-laptop {\n`;
36
+ css += `display: none !important;\n`;
37
+ css += `}\n`;
38
+ css += `}\n`;
27
39
  return css;
28
40
  };
@@ -0,0 +1,12 @@
1
+ :root {
2
+ --kit-dialog-size-xs: 18.75rem;
3
+ --kit-dialog-size-sm: 25rem;
4
+ --kit-dialog-size-md: 37.5rem;
5
+ --kit-dialog-size-lg: 53.125rem;
6
+ --kit-dialog-size-xl: 75rem;
7
+ --kit-modal-size-xs: 18.75rem;
8
+ --kit-modal-size-sm: 25rem;
9
+ --kit-modal-size-md: 37.5rem;
10
+ --kit-modal-size-lg: 53.125rem;
11
+ --kit-modal-size-xl: 75rem;
12
+ }