@seed-design/lynx-css 0.1.0
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/all.css +1730 -0
- package/all.min.css +1 -0
- package/base.css +625 -0
- package/base.min.css +1 -0
- package/package.json +60 -0
- package/recipes/action-button.css +489 -0
- package/recipes/action-button.d.ts +44 -0
- package/recipes/action-button.mjs +212 -0
- package/recipes/bottom-sheet-handle.css +18 -0
- package/recipes/bottom-sheet-handle.d.ts +21 -0
- package/recipes/bottom-sheet-handle.mjs +36 -0
- package/recipes/bottom-sheet.css +91 -0
- package/recipes/bottom-sheet.d.ts +28 -0
- package/recipes/bottom-sheet.mjs +76 -0
- package/recipes/checkbox-group.css +5 -0
- package/recipes/checkbox-group.d.ts +21 -0
- package/recipes/checkbox-group.mjs +36 -0
- package/recipes/checkbox.css +34 -0
- package/recipes/checkbox.d.ts +32 -0
- package/recipes/checkbox.mjs +53 -0
- package/recipes/checkmark.css +131 -0
- package/recipes/checkmark.d.ts +48 -0
- package/recipes/checkmark.mjs +220 -0
- package/recipes/progress-circle.css +80 -0
- package/recipes/progress-circle.d.ts +30 -0
- package/recipes/progress-circle.mjs +40 -0
- package/recipes/radio-group.css +5 -0
- package/recipes/radio-group.d.ts +21 -0
- package/recipes/radio-group.mjs +36 -0
- package/recipes/radio.css +34 -0
- package/recipes/radio.d.ts +32 -0
- package/recipes/radio.mjs +53 -0
- package/recipes/radiomark.css +94 -0
- package/recipes/radiomark.d.ts +40 -0
- package/recipes/radiomark.mjs +121 -0
- package/recipes/shared.mjs +48 -0
- package/recipes/switch.css +40 -0
- package/recipes/switch.d.ts +28 -0
- package/recipes/switch.mjs +49 -0
- package/recipes/switchmark.css +75 -0
- package/recipes/switchmark.d.ts +36 -0
- package/recipes/switchmark.mjs +90 -0
- package/recipes/tag-group-item.css +34 -0
- package/recipes/tag-group-item.d.ts +32 -0
- package/recipes/tag-group-item.mjs +55 -0
- package/recipes/tag-group.css +32 -0
- package/recipes/tag-group.d.ts +24 -0
- package/recipes/tag-group.mjs +48 -0
- package/vars/color/banner.d.ts +10 -0
- package/vars/color/banner.mjs +10 -0
- package/vars/color/bg.d.ts +76 -0
- package/vars/color/bg.mjs +41 -0
- package/vars/color/fg.d.ts +30 -0
- package/vars/color/fg.mjs +16 -0
- package/vars/color/index.d.ts +6 -0
- package/vars/color/index.mjs +6 -0
- package/vars/color/manner-temp/index.d.ts +10 -0
- package/vars/color/manner-temp/index.mjs +10 -0
- package/vars/color/manner-temp/l1.d.ts +2 -0
- package/vars/color/manner-temp/l1.mjs +2 -0
- package/vars/color/manner-temp/l10.d.ts +2 -0
- package/vars/color/manner-temp/l10.mjs +2 -0
- package/vars/color/manner-temp/l2.d.ts +2 -0
- package/vars/color/manner-temp/l2.mjs +2 -0
- package/vars/color/manner-temp/l3.d.ts +2 -0
- package/vars/color/manner-temp/l3.mjs +2 -0
- package/vars/color/manner-temp/l4.d.ts +2 -0
- package/vars/color/manner-temp/l4.mjs +2 -0
- package/vars/color/manner-temp/l5.d.ts +2 -0
- package/vars/color/manner-temp/l5.mjs +2 -0
- package/vars/color/manner-temp/l6.d.ts +2 -0
- package/vars/color/manner-temp/l6.mjs +2 -0
- package/vars/color/manner-temp/l7.d.ts +2 -0
- package/vars/color/manner-temp/l7.mjs +2 -0
- package/vars/color/manner-temp/l8.d.ts +2 -0
- package/vars/color/manner-temp/l8.mjs +2 -0
- package/vars/color/manner-temp/l9.d.ts +2 -0
- package/vars/color/manner-temp/l9.mjs +2 -0
- package/vars/color/palette.d.ts +94 -0
- package/vars/color/palette.mjs +94 -0
- package/vars/color/stroke.d.ts +31 -0
- package/vars/color/stroke.mjs +16 -0
- package/vars/component/action-button.d.ts +660 -0
- package/vars/component/action-button.mjs +541 -0
- package/vars/component/action-chip.d.ts +132 -0
- package/vars/component/action-chip.mjs +132 -0
- package/vars/component/action-sheet-close-button.d.ts +23 -0
- package/vars/component/action-sheet-close-button.mjs +23 -0
- package/vars/component/action-sheet-item.d.ts +36 -0
- package/vars/component/action-sheet-item.mjs +36 -0
- package/vars/component/action-sheet.d.ts +46 -0
- package/vars/component/action-sheet.mjs +46 -0
- package/vars/component/avatar-stack.d.ts +110 -0
- package/vars/component/avatar-stack.mjs +110 -0
- package/vars/component/avatar.d.ts +204 -0
- package/vars/component/avatar.mjs +162 -0
- package/vars/component/badge.d.ts +316 -0
- package/vars/component/badge.mjs +236 -0
- package/vars/component/bottom-sheet-close-button.d.ts +21 -0
- package/vars/component/bottom-sheet-close-button.mjs +21 -0
- package/vars/component/bottom-sheet-handle.d.ts +24 -0
- package/vars/component/bottom-sheet-handle.mjs +24 -0
- package/vars/component/bottom-sheet.d.ts +86 -0
- package/vars/component/bottom-sheet.mjs +86 -0
- package/vars/component/callout.d.ts +229 -0
- package/vars/component/callout.mjs +197 -0
- package/vars/component/checkbox-group.d.ts +9 -0
- package/vars/component/checkbox-group.mjs +9 -0
- package/vars/component/checkbox.d.ts +53 -0
- package/vars/component/checkbox.mjs +53 -0
- package/vars/component/checkmark.d.ts +195 -0
- package/vars/component/checkmark.mjs +165 -0
- package/vars/component/chip-tab.d.ts +162 -0
- package/vars/component/chip-tab.mjs +162 -0
- package/vars/component/chip-tablist.d.ts +31 -0
- package/vars/component/chip-tablist.mjs +31 -0
- package/vars/component/chip.d.ts +321 -0
- package/vars/component/chip.mjs +303 -0
- package/vars/component/content-placeholder.d.ts +28 -0
- package/vars/component/content-placeholder.mjs +27 -0
- package/vars/component/contextual-floating-button.d.ts +144 -0
- package/vars/component/contextual-floating-button.mjs +132 -0
- package/vars/component/control-chip.d.ts +158 -0
- package/vars/component/control-chip.mjs +158 -0
- package/vars/component/dialog.d.ts +52 -0
- package/vars/component/dialog.mjs +52 -0
- package/vars/component/divider.d.ts +9 -0
- package/vars/component/divider.mjs +9 -0
- package/vars/component/extended-action-sheet-close-button.d.ts +24 -0
- package/vars/component/extended-action-sheet-close-button.mjs +24 -0
- package/vars/component/extended-action-sheet-item.d.ts +46 -0
- package/vars/component/extended-action-sheet-item.mjs +46 -0
- package/vars/component/extended-action-sheet.d.ts +55 -0
- package/vars/component/extended-action-sheet.mjs +55 -0
- package/vars/component/extended-fab.d.ts +88 -0
- package/vars/component/extended-fab.mjs +82 -0
- package/vars/component/fab.d.ts +21 -0
- package/vars/component/fab.mjs +21 -0
- package/vars/component/field-label.d.ts +25 -0
- package/vars/component/field-label.mjs +25 -0
- package/vars/component/field.d.ts +78 -0
- package/vars/component/field.mjs +72 -0
- package/vars/component/floating-action-button.d.ts +60 -0
- package/vars/component/floating-action-button.mjs +54 -0
- package/vars/component/help-bubble.d.ts +52 -0
- package/vars/component/help-bubble.mjs +50 -0
- package/vars/component/identity-placeholder.d.ts +12 -0
- package/vars/component/identity-placeholder.mjs +12 -0
- package/vars/component/image-frame-floater.d.ts +10 -0
- package/vars/component/image-frame-floater.mjs +9 -0
- package/vars/component/image-frame-indicator.d.ts +20 -0
- package/vars/component/image-frame-indicator.mjs +18 -0
- package/vars/component/image-frame-reaction-button.d.ts +35 -0
- package/vars/component/image-frame-reaction-button.mjs +26 -0
- package/vars/component/image-frame.d.ts +48 -0
- package/vars/component/image-frame.mjs +26 -0
- package/vars/component/index.d.ts +79 -0
- package/vars/component/index.mjs +79 -0
- package/vars/component/inline-banner.d.ts +191 -0
- package/vars/component/inline-banner.mjs +191 -0
- package/vars/component/input-button.d.ts +89 -0
- package/vars/component/input-button.mjs +88 -0
- package/vars/component/link-content.d.ts +58 -0
- package/vars/component/link-content.mjs +58 -0
- package/vars/component/list-header.d.ts +29 -0
- package/vars/component/list-header.mjs +29 -0
- package/vars/component/list-item.d.ts +89 -0
- package/vars/component/list-item.mjs +87 -0
- package/vars/component/manner-temp-badge.d.ts +117 -0
- package/vars/component/manner-temp-badge.mjs +117 -0
- package/vars/component/manner-temp.d.ts +88 -0
- package/vars/component/manner-temp.mjs +88 -0
- package/vars/component/menu-sheet-close-button.d.ts +24 -0
- package/vars/component/menu-sheet-close-button.mjs +24 -0
- package/vars/component/menu-sheet-item.d.ts +73 -0
- package/vars/component/menu-sheet-item.mjs +61 -0
- package/vars/component/menu-sheet.d.ts +56 -0
- package/vars/component/menu-sheet.mjs +56 -0
- package/vars/component/notification-badge.d.ts +48 -0
- package/vars/component/notification-badge.mjs +42 -0
- package/vars/component/page-banner.d.ts +382 -0
- package/vars/component/page-banner.mjs +336 -0
- package/vars/component/progress-circle.d.ts +88 -0
- package/vars/component/progress-circle.mjs +67 -0
- package/vars/component/radio-group.d.ts +9 -0
- package/vars/component/radio-group.mjs +9 -0
- package/vars/component/radio.d.ts +53 -0
- package/vars/component/radio.mjs +53 -0
- package/vars/component/radiomark.d.ts +117 -0
- package/vars/component/radiomark.mjs +117 -0
- package/vars/component/reaction-button.d.ts +136 -0
- package/vars/component/reaction-button.mjs +136 -0
- package/vars/component/scroll-fog.d.ts +11 -0
- package/vars/component/scroll-fog.mjs +11 -0
- package/vars/component/segmented-control-indicator.d.ts +24 -0
- package/vars/component/segmented-control-indicator.mjs +24 -0
- package/vars/component/segmented-control-item.d.ts +41 -0
- package/vars/component/segmented-control-item.mjs +41 -0
- package/vars/component/segmented-control.d.ts +11 -0
- package/vars/component/segmented-control.mjs +11 -0
- package/vars/component/select-box-checkmark.d.ts +40 -0
- package/vars/component/select-box-checkmark.mjs +40 -0
- package/vars/component/select-box-group.d.ts +10 -0
- package/vars/component/select-box-group.mjs +10 -0
- package/vars/component/select-box.d.ts +107 -0
- package/vars/component/select-box.mjs +102 -0
- package/vars/component/skeleton.d.ts +76 -0
- package/vars/component/skeleton.mjs +58 -0
- package/vars/component/slider-thumb.d.ts +25 -0
- package/vars/component/slider-thumb.mjs +25 -0
- package/vars/component/slider-tick.d.ts +23 -0
- package/vars/component/slider-tick.mjs +23 -0
- package/vars/component/slider.d.ts +78 -0
- package/vars/component/slider.mjs +75 -0
- package/vars/component/snackbar.d.ts +65 -0
- package/vars/component/snackbar.mjs +65 -0
- package/vars/component/switch.d.ts +53 -0
- package/vars/component/switch.mjs +53 -0
- package/vars/component/switchmark.d.ts +112 -0
- package/vars/component/switchmark.mjs +112 -0
- package/vars/component/tab.d.ts +47 -0
- package/vars/component/tab.mjs +47 -0
- package/vars/component/tablist.d.ts +51 -0
- package/vars/component/tablist.mjs +51 -0
- package/vars/component/tag-group-item.d.ts +122 -0
- package/vars/component/tag-group-item.mjs +122 -0
- package/vars/component/tag-group.d.ts +34 -0
- package/vars/component/tag-group.mjs +34 -0
- package/vars/component/text-button.d.ts +23 -0
- package/vars/component/text-button.mjs +23 -0
- package/vars/component/text-input.d.ts +224 -0
- package/vars/component/text-input.mjs +211 -0
- package/vars/component/toggle-button.d.ts +213 -0
- package/vars/component/toggle-button.mjs +207 -0
- package/vars/component/top-navigation-icon-button.d.ts +36 -0
- package/vars/component/top-navigation-icon-button.mjs +36 -0
- package/vars/component/top-navigation-text-button.d.ts +52 -0
- package/vars/component/top-navigation-text-button.mjs +51 -0
- package/vars/component/top-navigation.d.ts +102 -0
- package/vars/component/top-navigation.mjs +94 -0
- package/vars/component/typography.d.ts +542 -0
- package/vars/component/typography.mjs +461 -0
- package/vars/dimension/index.d.ts +22 -0
- package/vars/dimension/index.mjs +22 -0
- package/vars/dimension/spacing-x.d.ts +4 -0
- package/vars/dimension/spacing-x.mjs +2 -0
- package/vars/dimension/spacing-y.d.ts +8 -0
- package/vars/dimension/spacing-y.mjs +4 -0
- package/vars/duration.d.ts +8 -0
- package/vars/duration.mjs +8 -0
- package/vars/font-size.d.ts +30 -0
- package/vars/font-size.mjs +20 -0
- package/vars/font-weight.d.ts +3 -0
- package/vars/font-weight.mjs +3 -0
- package/vars/gradient.d.ts +19 -0
- package/vars/gradient.mjs +8 -0
- package/vars/index.d.ts +51 -0
- package/vars/index.mjs +1 -0
- package/vars/line-height.d.ts +30 -0
- package/vars/line-height.mjs +20 -0
- package/vars/radius.d.ts +11 -0
- package/vars/radius.mjs +11 -0
- package/vars/shadow.d.ts +4 -0
- package/vars/shadow.mjs +3 -0
- package/vars/timing-function.d.ts +7 -0
- package/vars/timing-function.mjs +7 -0
- package/vars/vars.d.ts +10 -0
- package/vars/vars.mjs +10 -0
package/vars/index.d.ts
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as vars from "./vars";
|
|
2
|
+
export { vars };
|
|
3
|
+
|
|
4
|
+
export type TokenObject = typeof vars;
|
|
5
|
+
|
|
6
|
+
export type ColorFg = keyof TokenObject["$color"]["fg"];
|
|
7
|
+
|
|
8
|
+
// Workaround for type docgen enumerating all possible values
|
|
9
|
+
export type ScopedColorFg = Exclude<`fg.${ColorFg}`, "">;
|
|
10
|
+
|
|
11
|
+
export type ColorBg = keyof TokenObject["$color"]["bg"];
|
|
12
|
+
|
|
13
|
+
// Workaround for type docgen enumerating all possible values
|
|
14
|
+
export type ScopedColorBg = Exclude<`bg.${ColorBg}`, "">;
|
|
15
|
+
|
|
16
|
+
export type ColorBanner = keyof TokenObject["$color"]["banner"];
|
|
17
|
+
|
|
18
|
+
// Workaround for type docgen enumerating all possible values
|
|
19
|
+
export type ScopedColorBanner = Exclude<`banner.${ColorBanner}`, "">;
|
|
20
|
+
|
|
21
|
+
export type ColorStroke = keyof TokenObject["$color"]["stroke"];
|
|
22
|
+
|
|
23
|
+
// Workaround for type docgen enumerating all possible values
|
|
24
|
+
export type ScopedColorStroke = Exclude<`stroke.${ColorStroke}`, "">;
|
|
25
|
+
|
|
26
|
+
export type ColorPalette = keyof TokenObject["$color"]["palette"];
|
|
27
|
+
|
|
28
|
+
// Workaround for type docgen enumerating all possible values
|
|
29
|
+
export type ScopedColorPalette = Exclude<`palette.${ColorPalette}`, "">;
|
|
30
|
+
|
|
31
|
+
export type Duration = keyof TokenObject["$duration"];
|
|
32
|
+
|
|
33
|
+
export type FontSize = keyof TokenObject["$fontSize"];
|
|
34
|
+
|
|
35
|
+
export type FontWeight = keyof TokenObject["$fontWeight"];
|
|
36
|
+
|
|
37
|
+
export type Gradient = keyof TokenObject["$gradient"];
|
|
38
|
+
|
|
39
|
+
export type LineHeight = keyof TokenObject["$lineHeight"];
|
|
40
|
+
|
|
41
|
+
export type Radius = keyof TokenObject["$radius"];
|
|
42
|
+
|
|
43
|
+
export type TimingFunction = keyof TokenObject["$timingFunction"];
|
|
44
|
+
|
|
45
|
+
export type Dimension = Exclude<keyof TokenObject["$dimension"], "spacingX" | "spacingY">;
|
|
46
|
+
|
|
47
|
+
export type SpacingX = keyof TokenObject["$dimension"]["spacingX"];
|
|
48
|
+
|
|
49
|
+
export type SpacingY = keyof TokenObject["$dimension"]["spacingY"];
|
|
50
|
+
|
|
51
|
+
export type Shadow = keyof TokenObject["$shadow"];
|
package/vars/index.mjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as vars from "./vars.mjs";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export declare const t1 = "var(--seed-line-height-t1)";
|
|
2
|
+
export declare const t2 = "var(--seed-line-height-t2)";
|
|
3
|
+
export declare const t3 = "var(--seed-line-height-t3)";
|
|
4
|
+
export declare const t4 = "var(--seed-line-height-t4)";
|
|
5
|
+
export declare const t5 = "var(--seed-line-height-t5)";
|
|
6
|
+
export declare const t6 = "var(--seed-line-height-t6)";
|
|
7
|
+
export declare const t7 = "var(--seed-line-height-t7)";
|
|
8
|
+
export declare const t8 = "var(--seed-line-height-t8)";
|
|
9
|
+
export declare const t9 = "var(--seed-line-height-t9)";
|
|
10
|
+
export declare const t10 = "var(--seed-line-height-t10)";
|
|
11
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
12
|
+
export declare const t1Static = "var(--seed-line-height-t1-static)";
|
|
13
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
14
|
+
export declare const t2Static = "var(--seed-line-height-t2-static)";
|
|
15
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
16
|
+
export declare const t3Static = "var(--seed-line-height-t3-static)";
|
|
17
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
18
|
+
export declare const t4Static = "var(--seed-line-height-t4-static)";
|
|
19
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
20
|
+
export declare const t5Static = "var(--seed-line-height-t5-static)";
|
|
21
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
22
|
+
export declare const t6Static = "var(--seed-line-height-t6-static)";
|
|
23
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
24
|
+
export declare const t7Static = "var(--seed-line-height-t7-static)";
|
|
25
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
26
|
+
export declare const t8Static = "var(--seed-line-height-t8-static)";
|
|
27
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
28
|
+
export declare const t9Static = "var(--seed-line-height-t9-static)";
|
|
29
|
+
/** 폰트 스케일링에 반응하지 않도록 px로 정의되었습니다. */
|
|
30
|
+
export declare const t10Static = "var(--seed-line-height-t10-static)";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const t1 = "var(--seed-line-height-t1)";
|
|
2
|
+
export const t2 = "var(--seed-line-height-t2)";
|
|
3
|
+
export const t3 = "var(--seed-line-height-t3)";
|
|
4
|
+
export const t4 = "var(--seed-line-height-t4)";
|
|
5
|
+
export const t5 = "var(--seed-line-height-t5)";
|
|
6
|
+
export const t6 = "var(--seed-line-height-t6)";
|
|
7
|
+
export const t7 = "var(--seed-line-height-t7)";
|
|
8
|
+
export const t8 = "var(--seed-line-height-t8)";
|
|
9
|
+
export const t9 = "var(--seed-line-height-t9)";
|
|
10
|
+
export const t10 = "var(--seed-line-height-t10)";
|
|
11
|
+
export const t1Static = "var(--seed-line-height-t1-static)";
|
|
12
|
+
export const t2Static = "var(--seed-line-height-t2-static)";
|
|
13
|
+
export const t3Static = "var(--seed-line-height-t3-static)";
|
|
14
|
+
export const t4Static = "var(--seed-line-height-t4-static)";
|
|
15
|
+
export const t5Static = "var(--seed-line-height-t5-static)";
|
|
16
|
+
export const t6Static = "var(--seed-line-height-t6-static)";
|
|
17
|
+
export const t7Static = "var(--seed-line-height-t7-static)";
|
|
18
|
+
export const t8Static = "var(--seed-line-height-t8-static)";
|
|
19
|
+
export const t9Static = "var(--seed-line-height-t9-static)";
|
|
20
|
+
export const t10Static = "var(--seed-line-height-t10-static)";
|
package/vars/radius.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const r0_5 = "var(--seed-radius-r0_5)";
|
|
2
|
+
export declare const r1 = "var(--seed-radius-r1)";
|
|
3
|
+
export declare const r1_5 = "var(--seed-radius-r1_5)";
|
|
4
|
+
export declare const r2 = "var(--seed-radius-r2)";
|
|
5
|
+
export declare const r2_5 = "var(--seed-radius-r2_5)";
|
|
6
|
+
export declare const r3 = "var(--seed-radius-r3)";
|
|
7
|
+
export declare const r3_5 = "var(--seed-radius-r3_5)";
|
|
8
|
+
export declare const r4 = "var(--seed-radius-r4)";
|
|
9
|
+
export declare const r5 = "var(--seed-radius-r5)";
|
|
10
|
+
export declare const r6 = "var(--seed-radius-r6)";
|
|
11
|
+
export declare const full = "var(--seed-radius-full)";
|
package/vars/radius.mjs
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export const r0_5 = "var(--seed-radius-r0_5)";
|
|
2
|
+
export const r1 = "var(--seed-radius-r1)";
|
|
3
|
+
export const r1_5 = "var(--seed-radius-r1_5)";
|
|
4
|
+
export const r2 = "var(--seed-radius-r2)";
|
|
5
|
+
export const r2_5 = "var(--seed-radius-r2_5)";
|
|
6
|
+
export const r3 = "var(--seed-radius-r3)";
|
|
7
|
+
export const r3_5 = "var(--seed-radius-r3_5)";
|
|
8
|
+
export const r4 = "var(--seed-radius-r4)";
|
|
9
|
+
export const r5 = "var(--seed-radius-r5)";
|
|
10
|
+
export const r6 = "var(--seed-radius-r6)";
|
|
11
|
+
export const full = "var(--seed-radius-full)";
|
package/vars/shadow.d.ts
ADDED
package/vars/shadow.mjs
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export declare const linear = "var(--seed-timing-function-linear)";
|
|
2
|
+
export declare const easing = "var(--seed-timing-function-easing)";
|
|
3
|
+
export declare const enter = "var(--seed-timing-function-enter)";
|
|
4
|
+
export declare const exit = "var(--seed-timing-function-exit)";
|
|
5
|
+
export declare const enterExpressive = "var(--seed-timing-function-enter-expressive)";
|
|
6
|
+
export declare const exitExpressive = "var(--seed-timing-function-exit-expressive)";
|
|
7
|
+
export declare const pressedScale = "var(--seed-timing-function-pressed-scale)";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export const linear = "var(--seed-timing-function-linear)";
|
|
2
|
+
export const easing = "var(--seed-timing-function-easing)";
|
|
3
|
+
export const enter = "var(--seed-timing-function-enter)";
|
|
4
|
+
export const exit = "var(--seed-timing-function-exit)";
|
|
5
|
+
export const enterExpressive = "var(--seed-timing-function-enter-expressive)";
|
|
6
|
+
export const exitExpressive = "var(--seed-timing-function-exit-expressive)";
|
|
7
|
+
export const pressedScale = "var(--seed-timing-function-pressed-scale)";
|
package/vars/vars.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * as $color from "./color";
|
|
2
|
+
export * as $dimension from "./dimension";
|
|
3
|
+
export * as $duration from "./duration";
|
|
4
|
+
export * as $fontSize from "./font-size";
|
|
5
|
+
export * as $fontWeight from "./font-weight";
|
|
6
|
+
export * as $gradient from "./gradient";
|
|
7
|
+
export * as $lineHeight from "./line-height";
|
|
8
|
+
export * as $radius from "./radius";
|
|
9
|
+
export * as $shadow from "./shadow";
|
|
10
|
+
export * as $timingFunction from "./timing-function";
|
package/vars/vars.mjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * as $color from "./color/index.mjs";
|
|
2
|
+
export * as $dimension from "./dimension/index.mjs";
|
|
3
|
+
export * as $duration from "./duration.mjs";
|
|
4
|
+
export * as $fontSize from "./font-size.mjs";
|
|
5
|
+
export * as $fontWeight from "./font-weight.mjs";
|
|
6
|
+
export * as $gradient from "./gradient.mjs";
|
|
7
|
+
export * as $lineHeight from "./line-height.mjs";
|
|
8
|
+
export * as $radius from "./radius.mjs";
|
|
9
|
+
export * as $shadow from "./shadow.mjs";
|
|
10
|
+
export * as $timingFunction from "./timing-function.mjs";
|