lapikit 0.0.0-insiders.f325e60 → 0.0.0-insiders.f352010
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/configuration.js +0 -1
- package/bin/helper.js +0 -38
- package/bin/index.js +1 -9
- package/bin/presets.js +1 -1
- package/bin/prompts.js +46 -79
- package/dist/actions/accordion.svelte.d.ts +9 -0
- package/dist/actions/index.d.ts +2 -1
- package/dist/actions/index.js +2 -1
- package/dist/actions/use-theme.d.ts +1 -0
- package/dist/actions/use-theme.js +18 -0
- package/dist/components/accordion/accordion.css +0 -77
- package/dist/components/accordion/accordion.svelte +5 -121
- package/dist/components/accordion/modules/accordion-item.css +68 -0
- package/dist/components/accordion/modules/accordion-item.svelte +4 -4
- package/dist/components/accordion/types.d.ts +1 -1
- package/dist/components/alert/alert.css +11 -18
- package/dist/components/alert/alert.svelte +4 -126
- package/dist/components/alert/types.d.ts +1 -1
- package/dist/components/app/app.css +1 -2
- package/dist/components/app/app.svelte +39 -44
- package/dist/components/app/app.svelte.d.ts +2 -0
- package/dist/components/appbar/appbar.css +8 -18
- package/dist/components/appbar/appbar.svelte +4 -49
- package/dist/components/appbar/types.d.ts +1 -1
- package/dist/components/aspect-ratio/aspect-ratio.svelte +0 -41
- package/dist/components/aspect-ratio/types.d.ts +1 -1
- package/dist/components/avatar/avatar.css +7 -14
- package/dist/components/avatar/avatar.svelte +4 -118
- package/dist/components/avatar/types.d.ts +1 -1
- package/dist/components/button/button.css +29 -36
- package/dist/components/button/button.svelte +5 -235
- package/dist/components/button/types.d.ts +1 -1
- package/dist/components/card/card.css +10 -20
- package/dist/components/card/card.svelte +5 -113
- package/dist/components/card/types.d.ts +1 -1
- package/dist/components/chip/chip.css +26 -33
- package/dist/components/chip/chip.svelte +5 -216
- package/dist/components/chip/types.d.ts +1 -1
- package/dist/components/dialog/dialog.css +13 -20
- package/dist/components/dialog/dialog.svelte +5 -149
- package/dist/components/dialog/types.d.ts +1 -1
- package/dist/components/dropdown/dropdown.css +3 -12
- package/dist/components/dropdown/dropdown.svelte +6 -31
- package/dist/components/dropdown/types.d.ts +1 -1
- package/dist/components/icon/icon.css +9 -12
- package/dist/components/icon/icon.svelte +2 -91
- package/dist/components/icon/types.d.ts +1 -1
- package/dist/components/list/list.css +19 -91
- package/dist/components/list/list.svelte +4 -203
- package/dist/components/list/modules/list-item.css +67 -0
- package/dist/components/list/modules/list-item.svelte +5 -204
- package/dist/components/list/types.d.ts +1 -1
- package/dist/components/modal/modal.css +15 -23
- package/dist/components/modal/modal.svelte +4 -140
- package/dist/components/modal/types.d.ts +1 -1
- package/dist/components/popover/popover.css +3 -12
- package/dist/components/popover/popover.svelte +6 -30
- package/dist/components/popover/types.d.ts +1 -1
- package/dist/components/separator/separator.css +4 -8
- package/dist/components/separator/separator.svelte +5 -53
- package/dist/components/separator/types.d.ts +1 -1
- package/dist/components/spacer/spacer.svelte +0 -5
- package/dist/components/spacer/types.d.ts +1 -1
- package/dist/components/textfield/textfield.css +16 -23
- package/dist/components/textfield/textfield.svelte +4 -274
- package/dist/components/textfield/types.d.ts +1 -1
- package/dist/components/toolbar/toolbar.css +11 -34
- package/dist/components/toolbar/toolbar.svelte +4 -139
- package/dist/components/toolbar/types.d.ts +1 -1
- package/dist/components/tooltip/tooltip.css +5 -13
- package/dist/components/tooltip/tooltip.svelte +5 -132
- package/dist/components/tooltip/types.d.ts +1 -1
- package/dist/index.d.ts +2 -26
- package/dist/index.js +2 -6
- package/dist/internal/config/presets.d.ts +71 -47
- package/dist/internal/config/presets.js +72 -41
- package/dist/internal/config/variables.d.ts +1 -4
- package/dist/internal/config/variables.js +1 -4
- package/dist/internal/{assets.svelte.js → core/actions/assets.svelte.js} +4 -4
- package/dist/internal/core/actions/dropdown.svelte.d.ts +7 -0
- package/dist/internal/core/actions/popover.svelte.d.ts +7 -0
- package/dist/internal/core/actions/tooltip.svelte.d.ts +7 -0
- package/dist/internal/core/css.d.ts +1 -0
- package/dist/internal/core/css.js +16 -0
- package/dist/internal/core/formatter/component.js +37 -40
- package/dist/internal/core/formatter/device.js +37 -36
- package/dist/internal/core/formatter/index.d.ts +1 -1
- package/dist/internal/core/formatter/index.js +2 -2
- package/dist/internal/core/formatter/theme.js +22 -6
- package/dist/internal/core/formatter/typography.js +1 -1
- package/dist/internal/core/standard-colors.d.ts +75 -0
- package/dist/internal/core/standard-colors.js +75 -0
- package/dist/internal/helpers/colors.d.ts +1 -0
- package/dist/internal/{colors.js → helpers/colors.js} +2 -2
- package/dist/internal/helpers/parser.js +2 -1
- package/dist/internal/plugins/vite.js +8 -6
- package/dist/internal/types/components.d.ts +14 -0
- package/dist/internal/types/configuration.d.ts +24 -1
- package/dist/internal/types/index.d.ts +1 -0
- package/dist/internal/types/index.js +1 -0
- package/dist/stores/components.js +1 -1
- package/dist/stores/index.d.ts +1 -0
- package/dist/stores/index.js +1 -0
- package/dist/stores/themes.d.ts +0 -6
- package/dist/stores/themes.js +1 -31
- package/dist/stores/viewport.d.ts +7 -0
- package/dist/stores/viewport.js +7 -0
- package/dist/styles/reset.css +6 -4
- package/package.json +7 -11
- package/bin/lapikit.js +0 -86
- package/bin/legacy.js +0 -34
- package/bin/modules/adapter.js +0 -52
- package/bin/modules/plugin.js +0 -223
- package/bin/modules/preset.js +0 -11
- package/dist/internal/colors.d.ts +0 -1
- package/dist/internal/index.d.ts +0 -4
- package/dist/internal/index.js +0 -4
- package/dist/internal/types.d.ts +0 -57
- package/dist/internal/unit.d.ts +0 -1
- package/dist/internal/unit.js +0 -11
- package/dist/labs/index.d.ts +0 -4
- package/dist/labs/index.js +0 -5
- package/dist/labs/my-component-style-global.svelte +0 -6
- package/dist/labs/my-component-style-global.svelte.d.ts +0 -18
- package/dist/labs/my-component-style-import.svelte +0 -15
- package/dist/labs/my-component-style-import.svelte.d.ts +0 -18
- package/dist/labs/my-component-style-mixed.svelte +0 -23
- package/dist/labs/my-component-style-mixed.svelte.d.ts +0 -18
- package/dist/labs/my-component.svelte +0 -16
- package/dist/labs/my-component.svelte.d.ts +0 -18
- package/dist/labs/style-mixed.css +0 -7
- package/dist/labs/style.css +0 -7
- package/dist/labs.css +0 -1
- package/dist/plugin/css.d.ts +0 -1
- package/dist/plugin/css.js +0 -73
- package/dist/plugin/modules/config.d.ts +0 -2
- package/dist/plugin/modules/config.js +0 -54
- package/dist/plugin/modules/importer.d.ts +0 -1
- package/dist/plugin/modules/importer.js +0 -15
- package/dist/plugin/preset-v2.d.ts +0 -108
- package/dist/plugin/preset-v2.js +0 -126
- package/dist/plugin/vitejs.d.ts +0 -10
- package/dist/plugin/vitejs.js +0 -55
- package/dist/preset.d.ts +0 -2
- package/dist/preset.js +0 -92
- package/dist/style/animation.css +0 -62
- package/dist/style/css.d.ts +0 -2
- package/dist/style/css.js +0 -34
- package/dist/style/normalize.css +0 -125
- package/dist/style/parser/color.d.ts +0 -5
- package/dist/style/parser/color.js +0 -88
- package/dist/style/parser/component.d.ts +0 -2
- package/dist/style/parser/component.js +0 -115
- package/dist/style/parser/device.d.ts +0 -2
- package/dist/style/parser/device.js +0 -40
- package/dist/style/parser/index.d.ts +0 -4
- package/dist/style/parser/index.js +0 -4
- package/dist/style/parser/variable.d.ts +0 -2
- package/dist/style/parser/variable.js +0 -25
- package/dist/style/variable.css +0 -12
- /package/dist/{components/accordion → actions}/accordion.svelte.js +0 -0
- /package/dist/internal/{assets.svelte.d.ts → core/actions/assets.svelte.d.ts} +0 -0
- /package/dist/{components/dropdown → internal/core/actions}/dropdown.svelte.js +0 -0
- /package/dist/{components/popover → internal/core/actions}/popover.svelte.js +0 -0
- /package/dist/{components/tooltip → internal/core/actions}/tooltip.svelte.js +0 -0
- /package/dist/internal/{ripple.d.ts → core/animations/ripple.d.ts} +0 -0
- /package/dist/internal/{ripple.js → core/animations/ripple.js} +0 -0
- /package/dist/internal/{ansi.d.ts → core/bin/ansi.d.ts} +0 -0
- /package/dist/internal/{ansi.js → core/bin/ansi.js} +0 -0
- /package/dist/internal/{terminal.d.ts → core/bin/terminal.d.ts} +0 -0
- /package/dist/internal/{terminal.js → core/bin/terminal.js} +0 -0
- /package/dist/internal/{minify.d.ts → core/minify.d.ts} +0 -0
- /package/dist/internal/{minify.js → core/minify.js} +0 -0
- /package/dist/{utils/x11.d.ts → internal/core/x11-colors.d.ts} +0 -0
- /package/dist/{utils/x11.js → internal/core/x11-colors.js} +0 -0
- /package/dist/{utils → internal/helpers}/convert.d.ts +0 -0
- /package/dist/{utils → internal/helpers}/convert.js +0 -0
- /package/dist/internal/{deepMerge.d.ts → helpers/deep-merge.d.ts} +0 -0
- /package/dist/internal/{deepMerge.js → helpers/deep-merge.js} +0 -0
- /package/dist/internal/{clickOutside.d.ts → helpers/outside.d.ts} +0 -0
- /package/dist/internal/{clickOutside.js → helpers/outside.js} +0 -0
- /package/dist/internal/{scroll.d.ts → helpers/scroll.d.ts} +0 -0
- /package/dist/internal/{scroll.js → helpers/scroll.js} +0 -0
- /package/dist/internal/{types.js → types/components.js} +0 -0
- /package/dist/{colors.css → themes.css} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
|
-
import { getAssets } from '../../internal/assets.svelte.js';
|
|
3
|
-
import { getPositionsTooltip } from '
|
|
2
|
+
import { getAssets } from '../../internal/core/actions/assets.svelte.js';
|
|
3
|
+
import { getPositionsTooltip } from '../../internal/core/actions/tooltip.svelte.js';
|
|
4
4
|
import type { PositionElement, TooltipProps } from './types.js';
|
|
5
5
|
|
|
6
6
|
let {
|
|
@@ -99,9 +99,9 @@
|
|
|
99
99
|
density && assets.className('tooltip-content', 'density', density),
|
|
100
100
|
rest.class
|
|
101
101
|
]}
|
|
102
|
-
style:--
|
|
103
|
-
style:--
|
|
104
|
-
style:--shape={assets.shape(rounded)}
|
|
102
|
+
style:--tooltip-background={assets.color(background)}
|
|
103
|
+
style:--tooltip-color={assets.color(color)}
|
|
104
|
+
style:--tooltip-shape={assets.shape(rounded)}
|
|
105
105
|
>
|
|
106
106
|
{#if tooltip}
|
|
107
107
|
{@render tooltip?.()}
|
|
@@ -111,130 +111,3 @@
|
|
|
111
111
|
</div>
|
|
112
112
|
</div>
|
|
113
113
|
{/if}
|
|
114
|
-
|
|
115
|
-
<style>.kit-tooltip {
|
|
116
|
-
inset: 0px auto auto 0px;
|
|
117
|
-
margin: 0px;
|
|
118
|
-
position: fixed;
|
|
119
|
-
z-index: 2000;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
.kit-tooltip-content {
|
|
123
|
-
--tooltip-color: var(--on, var(--kit-on-surface));
|
|
124
|
-
--tooltip-background: var(--base, var(--kit-surface));
|
|
125
|
-
--tooltip-radius: var(--shape, var(--kit-radius-md));
|
|
126
|
-
|
|
127
|
-
background-color: var(--tooltip-background);
|
|
128
|
-
color: var(--tooltip-color);
|
|
129
|
-
border-radius: var(--tooltip-radius);
|
|
130
|
-
border: 1px solid var(--tooltip-background);
|
|
131
|
-
font-size: 0.875rem;
|
|
132
|
-
display: inline-block;
|
|
133
|
-
width: auto;
|
|
134
|
-
pointer-events: none;
|
|
135
|
-
overflow-wrap: break-word;
|
|
136
|
-
/* transition:
|
|
137
|
-
color 0.5s,
|
|
138
|
-
border-color 0.5s,
|
|
139
|
-
background-color 0.5s; */
|
|
140
|
-
box-shadow: 0px 16px 29px -10px color-mix(in oklab, var(--kit-scrim) 60%, transparent);
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
/* density */
|
|
144
|
-
|
|
145
|
-
.kit-tooltip-content[breakpoint]kit-tooltip-content--density-default {
|
|
146
|
-
padding: 0.15rem 0.625rem;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
.kit-tooltip-content[breakpoint]kit-tooltip-content--density-compact {
|
|
150
|
-
padding: 0.125rem 0.5rem;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.kit-tooltip-content[breakpoint]kit-tooltip-content--density-comfortable {
|
|
154
|
-
padding: 0.35rem 0.75rem;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.kit-tooltip-content--arrow::after {
|
|
158
|
-
content: ' ';
|
|
159
|
-
position: absolute;
|
|
160
|
-
border-style: solid;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.kit-tooltip-content--arrow.kit-tooltip-content--bottom::after,
|
|
164
|
-
.kit-tooltip-content--arrow.kit-tooltip-content--top::after {
|
|
165
|
-
left: 50%;
|
|
166
|
-
margin-left: -0.35rem;
|
|
167
|
-
border-width: 0.35rem;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.kit-tooltip-content--arrow.kit-tooltip-content--bottom::after {
|
|
171
|
-
bottom: 100%;
|
|
172
|
-
border-color: transparent transparent var(--tooltip-background) transparent;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
.kit-tooltip-content--arrow.kit-tooltip-content--top::after {
|
|
176
|
-
top: 100%;
|
|
177
|
-
border-color: var(--tooltip-background) transparent transparent transparent;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
.kit-tooltip-content--arrow.kit-tooltip-content--left::after,
|
|
181
|
-
.kit-tooltip-content--arrow.kit-tooltip-content--right::after {
|
|
182
|
-
top: 50%;
|
|
183
|
-
margin-top: -0.35rem;
|
|
184
|
-
border-width: 0.35rem;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.kit-tooltip-content--arrow.kit-tooltip-content--right::after {
|
|
188
|
-
right: 100%;
|
|
189
|
-
border-color: transparent var(--tooltip-background) transparent transparent;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.kit-tooltip-content--arrow.kit-tooltip-content--left::after {
|
|
193
|
-
left: 100%;
|
|
194
|
-
border-color: transparent transparent transparent var(--tooltip-background);
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.kit-tooltip-content--top,
|
|
198
|
-
.kit-tooltip-content--bottom,
|
|
199
|
-
.kit-tooltip-content--right,
|
|
200
|
-
.kit-tooltip-content--left {
|
|
201
|
-
animation-duration: 150ms;
|
|
202
|
-
animation-name: enter;
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
.kit-tooltip-content--top {
|
|
206
|
-
--animate-enter-pos1: 0;
|
|
207
|
-
--animate-enter-pos2: 0.5rem;
|
|
208
|
-
--animate-enter-pos3: 0;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
.kit-tooltip-content--bottom {
|
|
212
|
-
--animate-enter-pos1: 0;
|
|
213
|
-
--animate-enter-pos2: -0.5rem;
|
|
214
|
-
--animate-enter-pos3: 0;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.kit-tooltip-content--right {
|
|
218
|
-
--animate-enter-pos1: -0.5rem;
|
|
219
|
-
--animate-enter-pos2: 0;
|
|
220
|
-
--animate-enter-pos3: 0;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.kit-tooltip-content--left {
|
|
224
|
-
--animate-enter-pos1: 0.5rem;
|
|
225
|
-
--animate-enter-pos2: 0;
|
|
226
|
-
--animate-enter-pos3: 0;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
@keyframes enter {
|
|
230
|
-
0% {
|
|
231
|
-
opacity: 0;
|
|
232
|
-
transform: translate3d(
|
|
233
|
-
var(--animate-enter-pos1),
|
|
234
|
-
var(--animate-enter-pos2),
|
|
235
|
-
var(--animate-enter-pos3)
|
|
236
|
-
)
|
|
237
|
-
scale3d(0.95, 0.95, 0.95) rotate(0);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
</style>
|
package/dist/index.d.ts
CHANGED
|
@@ -1,27 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
breakpoints: {
|
|
4
|
-
devices: {
|
|
5
|
-
[key: string]: string;
|
|
6
|
-
};
|
|
7
|
-
thresholds: {
|
|
8
|
-
[key: string]: number | string;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
theme: {
|
|
12
|
-
defaultTheme: string;
|
|
13
|
-
themes: {
|
|
14
|
-
[key: string]: {
|
|
15
|
-
dark: boolean;
|
|
16
|
-
colors: {
|
|
17
|
-
[key: string]: string;
|
|
18
|
-
};
|
|
19
|
-
variables: {
|
|
20
|
-
[key: string]: string;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
}
|
|
26
|
-
declare function createLapikit(lapikit: Lapikit): void;
|
|
1
|
+
import type { LapikitConfiguration } from './internal/types/configuration.js';
|
|
2
|
+
declare function createLapikit(lapikit: LapikitConfiguration): void;
|
|
27
3
|
export default createLapikit;
|
package/dist/index.js
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
|
-
import { deepMerge } from './internal/
|
|
1
|
+
import { deepMerge } from './internal/helpers/deep-merge.js';
|
|
2
2
|
import { breakpoints } from './stores/breakpoints.js';
|
|
3
3
|
import { get } from 'svelte/store';
|
|
4
|
-
import { valueToPx } from './utils/convert.js';
|
|
5
4
|
import { devices } from './stores/devices.js';
|
|
5
|
+
import { valueToPx } from './internal/helpers/convert.js';
|
|
6
6
|
function createLapikit(lapikit) {
|
|
7
|
-
console.log('Creating a new Lapikit instance...');
|
|
8
|
-
console.log('Options loaded:', lapikit);
|
|
9
7
|
if (lapikit?.breakpoints?.thresholds) {
|
|
10
8
|
const currentBreakpoints = get(breakpoints);
|
|
11
9
|
const breakpointMerged = deepMerge(currentBreakpoints, lapikit.breakpoints.thresholds);
|
|
12
10
|
const formattedBreakpoints = Object.fromEntries(Object.entries(breakpointMerged).map(([key, value]) => [key, valueToPx(value)]));
|
|
13
11
|
breakpoints.set(formattedBreakpoints);
|
|
14
|
-
console.log('Breakpoints found:', formattedBreakpoints);
|
|
15
12
|
}
|
|
16
13
|
if (lapikit?.breakpoints?.devices) {
|
|
17
14
|
const currentDevices = get(devices);
|
|
@@ -22,7 +19,6 @@ function createLapikit(lapikit) {
|
|
|
22
19
|
return [key, valueToPx(breakpointValue)];
|
|
23
20
|
}));
|
|
24
21
|
devices.set(formattedDevices);
|
|
25
|
-
console.log('Devices found:', formattedDevices);
|
|
26
22
|
}
|
|
27
23
|
}
|
|
28
24
|
export default createLapikit;
|
|
@@ -18,67 +18,91 @@ export declare const preset: {
|
|
|
18
18
|
};
|
|
19
19
|
theme: {
|
|
20
20
|
defaultTheme: string;
|
|
21
|
+
colorScheme: boolean;
|
|
21
22
|
themes: {
|
|
22
23
|
light: {
|
|
23
24
|
dark: boolean;
|
|
24
25
|
colors: {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
26
|
+
label: {
|
|
27
|
+
primary: string;
|
|
28
|
+
secondary: string;
|
|
29
|
+
tertiary: string;
|
|
30
|
+
quaternary: string;
|
|
31
|
+
};
|
|
32
|
+
accent: {
|
|
33
|
+
primary: string;
|
|
34
|
+
success: string;
|
|
35
|
+
warning: string;
|
|
36
|
+
destructive: string;
|
|
37
|
+
info: string;
|
|
38
|
+
};
|
|
39
|
+
separator: {
|
|
40
|
+
default: string;
|
|
41
|
+
opaque: string;
|
|
42
|
+
};
|
|
43
|
+
state: {
|
|
44
|
+
placeholder: string;
|
|
45
|
+
disabled: string;
|
|
46
|
+
link: string;
|
|
47
|
+
highlight: string;
|
|
48
|
+
shadow: string;
|
|
49
|
+
};
|
|
50
|
+
background: {
|
|
51
|
+
primary: string;
|
|
52
|
+
secondary: string;
|
|
53
|
+
tertiary: string;
|
|
54
|
+
grouped: {
|
|
55
|
+
primary: string;
|
|
56
|
+
secondary: string;
|
|
57
|
+
tertiary: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
45
60
|
};
|
|
46
61
|
variables: {
|
|
47
|
-
|
|
48
|
-
success: string;
|
|
49
|
-
error: string;
|
|
50
|
-
warning: string;
|
|
62
|
+
'test-variable': string;
|
|
51
63
|
};
|
|
52
64
|
};
|
|
53
65
|
dark: {
|
|
54
66
|
dark: boolean;
|
|
55
67
|
colors: {
|
|
56
|
-
blue: string;
|
|
57
|
-
green: string;
|
|
58
|
-
red: string;
|
|
59
|
-
yellow: string;
|
|
60
|
-
orange: string;
|
|
61
|
-
purple: string;
|
|
62
68
|
pink: string;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
69
|
+
label: {
|
|
70
|
+
primary: string;
|
|
71
|
+
secondary: string;
|
|
72
|
+
tertiary: string;
|
|
73
|
+
quaternary: string;
|
|
74
|
+
};
|
|
75
|
+
accent: {
|
|
76
|
+
primary: string;
|
|
77
|
+
success: string;
|
|
78
|
+
warning: string;
|
|
79
|
+
destructive: string;
|
|
80
|
+
info: string;
|
|
81
|
+
};
|
|
82
|
+
separator: {
|
|
83
|
+
default: string;
|
|
84
|
+
opaque: string;
|
|
85
|
+
};
|
|
86
|
+
state: {
|
|
87
|
+
placeholder: string;
|
|
88
|
+
disabled: string;
|
|
89
|
+
link: string;
|
|
90
|
+
highlight: string;
|
|
91
|
+
shadow: string;
|
|
92
|
+
};
|
|
93
|
+
background: {
|
|
94
|
+
primary: string;
|
|
95
|
+
secondary: string;
|
|
96
|
+
tertiary: string;
|
|
97
|
+
grouped: {
|
|
98
|
+
primary: string;
|
|
99
|
+
secondary: string;
|
|
100
|
+
tertiary: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
76
103
|
};
|
|
77
104
|
variables: {
|
|
78
|
-
|
|
79
|
-
success: string;
|
|
80
|
-
error: string;
|
|
81
|
-
warning: string;
|
|
105
|
+
'test-variable': string;
|
|
82
106
|
};
|
|
83
107
|
};
|
|
84
108
|
};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { variables } from './variables.js';
|
|
2
|
+
import standardColors from '../core/standard-colors.js';
|
|
2
3
|
export const preset = {
|
|
3
4
|
breakpoints: {
|
|
4
5
|
devices: {
|
|
5
6
|
desktop: 1024, //64rem (lg)
|
|
6
7
|
tablet: 768, //48rem (md)
|
|
7
|
-
mobile:
|
|
8
|
+
mobile: 640 //40rem (sm)
|
|
8
9
|
},
|
|
9
10
|
thresholds: {
|
|
10
11
|
base: 0, // 0px
|
|
@@ -19,56 +20,86 @@ export const preset = {
|
|
|
19
20
|
},
|
|
20
21
|
theme: {
|
|
21
22
|
defaultTheme: 'light',
|
|
23
|
+
colorScheme: true,
|
|
22
24
|
themes: {
|
|
23
25
|
light: {
|
|
24
26
|
dark: false,
|
|
25
27
|
colors: {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
28
|
+
label: {
|
|
29
|
+
primary: '#000000',
|
|
30
|
+
secondary: standardColors.gray.light,
|
|
31
|
+
tertiary: standardColors.gray2.light,
|
|
32
|
+
quaternary: standardColors.gray3.light
|
|
33
|
+
},
|
|
34
|
+
accent: {
|
|
35
|
+
primary: standardColors.blue.light,
|
|
36
|
+
success: standardColors.green.light,
|
|
37
|
+
warning: standardColors.orange.light,
|
|
38
|
+
destructive: standardColors.red.light,
|
|
39
|
+
info: standardColors.cyan.light
|
|
40
|
+
},
|
|
41
|
+
separator: {
|
|
42
|
+
default: standardColors.gray3.light,
|
|
43
|
+
opaque: standardColors.gray4.light
|
|
44
|
+
},
|
|
45
|
+
state: {
|
|
46
|
+
placeholder: standardColors.gray3.light,
|
|
47
|
+
disabled: standardColors.gray2.light,
|
|
48
|
+
link: standardColors.blue.light,
|
|
49
|
+
highlight: standardColors.gray5.light,
|
|
50
|
+
shadow: '#00000033'
|
|
51
|
+
},
|
|
52
|
+
background: {
|
|
53
|
+
primary: '#FFFFFF',
|
|
54
|
+
secondary: standardColors.gray6.light,
|
|
55
|
+
tertiary: standardColors.gray5.light,
|
|
56
|
+
grouped: {
|
|
57
|
+
primary: standardColors.gray6.light,
|
|
58
|
+
secondary: '#FFFFFF',
|
|
59
|
+
tertiary: standardColors.gray6.light
|
|
60
|
+
}
|
|
61
|
+
}
|
|
46
62
|
},
|
|
47
63
|
variables: variables
|
|
48
64
|
},
|
|
49
65
|
dark: {
|
|
50
66
|
dark: true,
|
|
51
67
|
colors: {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
pink: 'pink',
|
|
69
|
+
label: {
|
|
70
|
+
primary: '#FFFFFF',
|
|
71
|
+
secondary: standardColors.gray2.dark,
|
|
72
|
+
tertiary: standardColors.gray3.dark,
|
|
73
|
+
quaternary: standardColors.gray4.dark
|
|
74
|
+
},
|
|
75
|
+
accent: {
|
|
76
|
+
primary: standardColors.blue.dark,
|
|
77
|
+
success: standardColors.green.dark,
|
|
78
|
+
warning: standardColors.orange.dark,
|
|
79
|
+
destructive: standardColors.red.dark,
|
|
80
|
+
info: standardColors.cyan.dark
|
|
81
|
+
},
|
|
82
|
+
separator: {
|
|
83
|
+
default: standardColors.gray3.dark,
|
|
84
|
+
opaque: standardColors.gray4.dark
|
|
85
|
+
},
|
|
86
|
+
state: {
|
|
87
|
+
placeholder: standardColors.gray3.dark,
|
|
88
|
+
disabled: standardColors.gray4.dark,
|
|
89
|
+
link: standardColors.blue.dark,
|
|
90
|
+
highlight: standardColors.gray5.dark,
|
|
91
|
+
shadow: '#00000066'
|
|
92
|
+
},
|
|
93
|
+
background: {
|
|
94
|
+
primary: '#000000',
|
|
95
|
+
secondary: standardColors.gray6.dark,
|
|
96
|
+
tertiary: standardColors.gray5.dark,
|
|
97
|
+
grouped: {
|
|
98
|
+
primary: standardColors.gray6.dark,
|
|
99
|
+
secondary: standardColors.gray5.dark,
|
|
100
|
+
tertiary: standardColors.gray4.dark
|
|
101
|
+
}
|
|
102
|
+
}
|
|
72
103
|
},
|
|
73
104
|
variables: variables
|
|
74
105
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { x11ColorNames } from '../
|
|
1
|
+
import { x11ColorNames } from '../x11-colors.js';
|
|
2
2
|
export function getAssets() {
|
|
3
3
|
return {
|
|
4
4
|
shape(params) {
|
|
5
5
|
if (params) {
|
|
6
6
|
if (params === 'none' || params == '0')
|
|
7
7
|
return '0';
|
|
8
|
-
return `var(--
|
|
8
|
+
return `var(--system-shape-${params})`;
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
className(key, type, value) {
|
|
@@ -16,12 +16,12 @@ export function getAssets() {
|
|
|
16
16
|
else if (typeof value === 'object') {
|
|
17
17
|
if (Array.isArray(value)) {
|
|
18
18
|
return value
|
|
19
|
-
.map((media) => `${media === '
|
|
19
|
+
.map((media) => `${media === 'base' ? '' : `${media}:`}kit--${type}`)
|
|
20
20
|
.join(' ');
|
|
21
21
|
}
|
|
22
22
|
else {
|
|
23
23
|
return Object.entries(value)
|
|
24
|
-
.map(([media, value]) => `${media === '
|
|
24
|
+
.map(([media, value]) => `${media === 'base' ? '' : `${media}:`}kit-${key}--${type}-${value}`)
|
|
25
25
|
.join(' ');
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { PositionElement } from '../../../components/dropdown/types.js';
|
|
2
|
+
type Location = 'top' | 'bottom' | 'left' | 'right';
|
|
3
|
+
export declare function getPositions(): {
|
|
4
|
+
readonly values: PositionElement;
|
|
5
|
+
update(activator: HTMLElement | PointerEvent, element: HTMLElement, location?: Location, centered?: boolean, avoidCollisions?: boolean): void;
|
|
6
|
+
};
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { PositionElement } from '../../../components/popover/types.js';
|
|
2
|
+
type Location = 'top' | 'bottom' | 'left' | 'right';
|
|
3
|
+
export declare function getPositions(): {
|
|
4
|
+
readonly values: PositionElement;
|
|
5
|
+
update(activator: HTMLElement, element: HTMLElement, location?: Location, centered?: boolean, avoidCollisions?: boolean): void;
|
|
6
|
+
};
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { PositionElement } from '../../../components/tooltip/types.js';
|
|
2
|
+
type Location = 'top' | 'bottom' | 'left' | 'right';
|
|
3
|
+
export declare function getPositionsTooltip(): {
|
|
4
|
+
readonly values: PositionElement;
|
|
5
|
+
update(activator: HTMLElement, element: HTMLElement, location?: Location, centered?: boolean, avoidCollisions?: boolean): void;
|
|
6
|
+
};
|
|
7
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const processImportStyles: () => Promise<string>;
|
|
@@ -0,0 +1,16 @@
|
|
|
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 processImportStyles = async () => {
|
|
8
|
+
const _reset = fs.readFileSync(path.resolve(__dirname, './../../styles/reset.css'), 'utf-8');
|
|
9
|
+
const _animation = fs.readFileSync(path.resolve(__dirname, './../../styles/animation.css'), 'utf-8');
|
|
10
|
+
const _keyframes = fs.readFileSync(path.resolve(__dirname, './../../styles/keyframes.css'), 'utf-8');
|
|
11
|
+
let styles = ``;
|
|
12
|
+
styles += `${_reset}\n`;
|
|
13
|
+
styles += `${_animation}\n`;
|
|
14
|
+
styles += `${_keyframes}\n`;
|
|
15
|
+
return styles;
|
|
16
|
+
};
|