lapikit 0.0.0-insiders.f502b02 → 0.0.0-insiders.f7cfacb

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 (84) hide show
  1. package/bin/configuration.js +304 -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/presets.js +26 -0
  9. package/bin/prompts.js +100 -0
  10. package/dist/assets/icons/arrow-down.svelte +2 -0
  11. package/dist/assets/icons/arrow-down.svelte.d.ts +6 -14
  12. package/dist/assets/icons/arrow-up.svelte +2 -0
  13. package/dist/assets/icons/arrow-up.svelte.d.ts +6 -14
  14. package/dist/assets/icons/close-fill.svelte +2 -0
  15. package/dist/assets/icons/close-fill.svelte.d.ts +6 -14
  16. package/dist/assets/icons/loading-fill.svelte +2 -0
  17. package/dist/assets/icons/loading-fill.svelte.d.ts +6 -14
  18. package/dist/colors.css +0 -0
  19. package/dist/components/accordion/accordion.css +6 -6
  20. package/dist/components/alert/alert.css +19 -9
  21. package/dist/components/app/app.css +1 -1
  22. package/dist/components/app/app.svelte +8 -3
  23. package/dist/components/appbar/appbar.css +2 -2
  24. package/dist/components/appbar/appbar.svelte +0 -1
  25. package/dist/components/aspect-ratio/aspect-ratio.svelte +0 -1
  26. package/dist/components/avatar/avatar.css +5 -5
  27. package/dist/components/button/button.css +28 -25
  28. package/dist/components/button/button.svelte +8 -12
  29. package/dist/components/button/types.d.ts +2 -2
  30. package/dist/components/card/card.css +64 -58
  31. package/dist/components/card/card.svelte +14 -1
  32. package/dist/components/card/types.d.ts +1 -1
  33. package/dist/components/chip/chip.css +114 -82
  34. package/dist/components/chip/chip.svelte +21 -8
  35. package/dist/components/chip/types.d.ts +3 -1
  36. package/dist/components/dialog/dialog.css +5 -3
  37. package/dist/components/dropdown/dropdown.css +4 -4
  38. package/dist/components/icon/icon.css +1 -1
  39. package/dist/components/index.d.ts +1 -0
  40. package/dist/components/index.js +1 -0
  41. package/dist/components/list/list.css +145 -119
  42. package/dist/components/list/list.svelte +1 -3
  43. package/dist/components/list/modules/list-item.svelte +9 -1
  44. package/dist/components/list/types.d.ts +2 -5
  45. package/dist/components/modal/modal.css +17 -12
  46. package/dist/components/modal/modal.svelte +1 -0
  47. package/dist/components/popover/popover.css +4 -4
  48. package/dist/components/separator/separator.css +1 -1
  49. package/dist/components/textfield/textfield.css +305 -0
  50. package/dist/components/textfield/textfield.svelte +193 -0
  51. package/dist/components/textfield/textfield.svelte.d.ts +4 -0
  52. package/dist/components/textfield/types.d.ts +37 -0
  53. package/dist/components/textfield/types.js +1 -0
  54. package/dist/components/toolbar/toolbar.css +6 -6
  55. package/dist/components/tooltip/tooltip.css +4 -4
  56. package/dist/index.d.ts +27 -1
  57. package/dist/index.js +27 -3
  58. package/dist/internal/assets.svelte.js +2 -0
  59. package/dist/internal/deepMerge.d.ts +44 -0
  60. package/dist/internal/deepMerge.js +80 -0
  61. package/dist/internal/ripple.d.ts +1 -0
  62. package/dist/internal/ripple.js +3 -0
  63. package/dist/plugin/css.d.ts +1 -0
  64. package/dist/plugin/css.js +55 -0
  65. package/dist/plugin/preset-v2.d.ts +96 -0
  66. package/dist/plugin/preset-v2.js +114 -0
  67. package/dist/plugin/vitejs.d.ts +5 -1
  68. package/dist/plugin/vitejs.js +32 -3
  69. package/dist/stores/breakpoints.d.ts +6 -0
  70. package/dist/stores/breakpoints.js +14 -0
  71. package/dist/stores/components.d.ts +8 -0
  72. package/dist/stores/components.js +26 -0
  73. package/dist/stores/devices.d.ts +6 -0
  74. package/dist/stores/devices.js +9 -0
  75. package/dist/stores/index.d.ts +4 -10
  76. package/dist/stores/index.js +4 -47
  77. package/dist/stores/themes.d.ts +8 -0
  78. package/dist/stores/themes.js +34 -0
  79. package/dist/style/animation.css +2 -0
  80. package/dist/style/normalize.css +2 -0
  81. package/dist/style/parser/color.js +2 -2
  82. package/dist/utils/convert.d.ts +1 -0
  83. package/dist/utils/convert.js +17 -0
  84. package/package.json +9 -4
@@ -1,32 +1,30 @@
1
+ /* root */
1
2
  .kit-chip {
2
- --chip-color: var(--on, var(--kit-on-neutral));
3
- --chip-background: var(--base, var(--kit-neutral));
3
+ --chip-color: var(--on, var(--kit-on-container));
4
+ --chip-background: var(--base, var(--kit-container));
4
5
  --chip-radius: var(--shape, var(--kit-radius-full));
6
+ }
5
7
 
6
- display: inline-flex;
7
- align-items: center;
8
- justify-content: center;
9
- white-space: nowrap;
8
+ .kit-chip {
9
+ min-width: calc(var(--kit-spacing) * var(--chip-multiplier-x));
10
+ position: relative;
11
+ border: none;
12
+ outline: none;
10
13
  padding-top: var(--chip-spacing-x);
11
14
  padding-bottom: var(--chip-spacing-x);
12
15
  padding-right: var(--chip-spacing-y);
13
16
  padding-left: var(--chip-spacing-y);
14
-
15
- border-width: 1px;
16
- border-style: solid;
17
17
  border-radius: var(--chip-radius);
18
-
19
- /* theme */
20
18
  color: var(--chip-color);
21
- background-color: var(--chip-background);
22
- border-color: var(--chip-background);
19
+ font-weight: 500;
20
+ text-decoration: none;
23
21
  }
24
22
 
25
- a.kit-chip,
26
- button.kit-chip {
23
+ .kit-chip:not(div):not(span):not(.kit-chip--readonly) {
27
24
  cursor: pointer;
28
25
  }
29
26
 
27
+ .kit-chip,
30
28
  .kit-chip .kit-chip-content,
31
29
  .kit-chip .kit-chip-append,
32
30
  .kit-chip .kit-chip-prepend,
@@ -36,159 +34,193 @@ button.kit-chip {
36
34
  align-items: center;
37
35
  justify-content: center;
38
36
  white-space: nowrap;
39
- gap: var(--chip-gap);
37
+ gap: calc(var(--kit-spacing) * var(--chip-multiplier-gap));
38
+ font-size: calc(var(--kit-spacing) * var(--chip-multiplier-font-size));
39
+ line-height: 0;
40
+ }
41
+
42
+ .kit-chip:not(div):not(span)::after {
43
+ content: '';
44
+ position: absolute;
45
+ inset: 0;
46
+ background-color: currentColor;
47
+ opacity: 0;
48
+ transition: opacity 150ms ease;
49
+ pointer-events: none;
50
+ border-radius: inherit;
51
+ }
52
+ .kit-chip:not(div):not(span):not(.kit-chip--readonly):hover::after {
53
+ opacity: 0.08;
54
+ }
55
+ .kit-chip:not(div):not(span):not(.kit-chip--readonly):active::after {
56
+ opacity: 0.12;
57
+ }
58
+ .kit-chip:not(div):not(span):not(.kit-chip--readonly):focus-visible::after {
59
+ opacity: 0.12;
40
60
  }
41
61
 
42
62
  /* size */
43
63
  .kit-chip[breakpoint]kit-chip--size-xs {
44
- --chip-height: 1.25rem;
64
+ --chip-multiplier-x: 12;
45
65
  --chip-multiplier-y: 2;
46
- --chip-gap: 0.25rem;
47
- font-size: 0.625rem;
48
- gap: var(--chip-gap);
66
+ --chip-multiplier-gap: 2;
67
+ --chip-multiplier-font-size: 6;
68
+ }
69
+ .kit-chip[breakpoint]kit-chip--size-xs .kit-icon[class*='kit-icon--size-md'] {
70
+ --icon-multiplier-parent-size: 7;
49
71
  }
50
72
 
51
73
  .kit-chip[breakpoint]kit-chip--size-sm {
52
- --chip-height: 1.625rem;
53
- --chip-multiplier-y: 3;
54
- --chip-gap: 0.5rem;
55
- font-size: 0.75rem;
56
- gap: var(--chip-gap);
74
+ --chip-multiplier-x: 14;
75
+ --chip-multiplier-y: 2;
76
+ --chip-multiplier-gap: 2;
77
+ --chip-multiplier-font-size: 6.5;
78
+ }
79
+ .kit-chip[breakpoint]kit-chip--size-sm .kit-icon[class*='kit-icon--size-md'] {
80
+ --icon-multiplier-parent-size: 8;
57
81
  }
58
82
 
59
83
  .kit-chip[breakpoint]kit-chip--size-md {
60
- --chip-height: 2rem;
61
- --chip-multiplier-y: 4;
62
- --chip-gap: 0.5rem;
63
- font-size: 0.875rem;
64
- gap: var(--chip-gap);
84
+ --chip-multiplier-x: 16;
85
+ --chip-multiplier-y: 3;
86
+ --chip-multiplier-gap: 4;
87
+ --chip-multiplier-font-size: 7;
88
+ }
89
+ .kit-chip[breakpoint]kit-chip--size-md .kit-icon[class*='kit-icon--size-md'] {
90
+ --icon-multiplier-parent-size: 9;
65
91
  }
66
92
 
67
93
  .kit-chip[breakpoint]kit-chip--size-lg {
68
- --chip-height: 2.375rem;
69
- --chip-multiplier-y: 5;
70
- --chip-gap: 0.5rem;
71
- font-size: 1rem;
72
- gap: var(--chip-gap);
94
+ --chip-multiplier-x: 18;
95
+ --chip-multiplier-y: 3;
96
+ --chip-multiplier-gap: 4;
97
+ --chip-multiplier-font-size: 8;
98
+ }
99
+ .kit-chip[breakpoint]kit-chip--size-lg .kit-icon[class*='kit-icon--size-md'] {
100
+ --icon-multiplier-parent-size: 10;
73
101
  }
74
102
 
75
103
  .kit-chip[breakpoint]kit-chip--size-xl {
76
- --chip-height: 2.75rem;
77
- --chip-multiplier-y: 6;
78
- --chip-gap: 0.675rem;
79
- font-size: 1.125rem;
80
- gap: var(--chip-gap);
104
+ --chip-multiplier-x: 20;
105
+ --chip-multiplier-y: 4;
106
+ --chip-multiplier-gap: 4;
107
+ --chip-multiplier-font-size: 9;
108
+ }
109
+ .kit-chip[breakpoint]kit-chip--size-xl .kit-icon[class*='kit-icon--size-md'] {
110
+ --icon-multiplier-parent-size: 11;
81
111
  }
82
112
 
83
113
  /* variant */
114
+ .kit-chip[breakpoint]kit-chip--variant-filled {
115
+ background-color: var(--chip-background);
116
+ }
117
+
84
118
  .kit-chip[breakpoint]kit-chip--variant-outline {
85
- --chip-color: var(--base, var(--kit-neutral));
86
- background-color: transparent;
119
+ --chip-color: var(--on, var(--kit-on-container));
120
+ background-color: var(--chip-background);
121
+ }
122
+ .kit-chip[breakpoint]kit-chip--variant-outline::before {
123
+ content: '';
124
+ position: absolute;
125
+ inset: 0;
87
126
  border: 1px solid currentColor;
127
+ pointer-events: none;
128
+ border-radius: inherit;
88
129
  }
89
130
 
90
131
  /* density */
91
132
  .kit-chip[breakpoint]kit-chip--density-default {
92
- height: calc(var(--chip-height));
93
- min-width: calc(var(--chip-height));
133
+ height: calc(var(--kit-spacing) * var(--chip-multiplier-x));
94
134
  --chip-spacing-x: 0;
95
135
  --chip-spacing-y: calc(var(--kit-spacing) * var(--chip-multiplier-y));
96
136
  }
97
137
 
98
138
  .kit-chip[breakpoint]kit-chip--density-compact {
99
- height: calc(var(--chip-height) - 0.25rem);
100
- min-width: calc(var(--chip-height - 0.25rem));
139
+ height: calc(var(--kit-spacing) * var(--chip-multiplier-x) - 0.25rem);
101
140
  --chip-spacing-x: 0;
102
141
  --chip-spacing-y: calc(var(--kit-spacing) * var(--chip-multiplier-y) - 0.25rem);
103
142
  }
104
143
 
105
144
  .kit-chip[breakpoint]kit-chip--density-comfortable {
106
- height: calc(var(--chip-height) + 0.25rem);
107
- min-width: calc(var(--chip-height) + 0.25rem);
145
+ height: calc(var(--kit-spacing) * var(--chip-multiplier-x) + 0.25rem);
108
146
  --chip-spacing-x: 0;
109
147
  --chip-spacing-y: calc(var(--kit-spacing) * var(--chip-multiplier-y) + 0.25rem);
110
148
  }
111
149
 
112
150
  /* state */
113
- .kit-chip.kit-chip--info:not([class*='chip--variant-']) {
151
+ .kit-chip.kit-chip--info[class*='chip--variant-filled'] {
114
152
  --on: var(--kit-on-info);
115
153
  --base: var(--kit-info);
116
154
  }
117
- .kit-chip.kit-chip--info[class*='chip--variant-'] {
155
+ .kit-chip.kit-chip--info[class*='chip--variant-']:not([class*='variant-filled']) {
118
156
  --base: var(--kit-info);
119
157
  }
120
158
 
121
- .kit-chip.kit-chip--success:not([class*='chip--variant-']) {
159
+ .kit-chip.kit-chip--success[class*='chip--variant-filled'] {
122
160
  --on: var(--kit-on-success);
123
161
  --base: var(--kit-success);
124
162
  }
125
- .kit-chip.kit-chip--success[class*='chip--variant-'] {
163
+ .kit-chip.kit-chip--success[class*='chip--variant-']:not([class*='variant-filled']) {
126
164
  --base: var(--kit-success);
127
165
  }
128
166
 
129
- .kit-chip.kit-chip--warning:not([class*='chip--variant-']) {
167
+ .kit-chip.kit-chip--warning[class*='chip--variant-filled'] {
130
168
  --on: var(--kit-on-warning);
131
169
  --base: var(--kit-warning);
132
170
  }
133
- .kit-chip.kit-chip--warning[class*='chip--variant-'] {
171
+ .kit-chip.kit-chip--warning[class*='chip--variant-']:not([class*='variant-filled']) {
134
172
  --base: var(--kit-warning);
135
173
  }
136
174
 
137
- .kit-chip.kit-chip--error:not([class*='chip--variant-']) {
175
+ .kit-chip.kit-chip--error[class*='chip--variant-filled'] {
138
176
  --on: var(--kit-on-error);
139
177
  --base: var(--kit-error);
140
178
  }
141
- .kit-chip.kit-chip--error[class*='chip--variant-'] {
179
+ .kit-chip.kit-chip--error[class*='chip--variant-']:not([class*='variant-filled']) {
142
180
  --base: var(--kit-error);
143
181
  }
144
182
 
145
183
  /* events */
146
- .kit-chip.kit-chip--active:not([class*='chip--variant-']) {
184
+ .kit-chip[class*='chip--variant-filled']:active,
185
+ .kit-chip.kit-chip--active[class*='chip--variant-filled'] {
147
186
  background-color: color-mix(in oklab, var(--chip-background) 90%, var(--kit-scrim));
148
- border-color: color-mix(in oklab, var(--chip-background) 90%, var(--kit-scrim));
149
187
  }
150
- .kit-chip.kit-chip--active[class*='chip--variant-'] {
188
+ .kit-chip.kit-chip--active[class*='chip--variant-']:not([class*='variant-filled']):active,
189
+ .kit-chip.kit-chip--active[class*='chip--variant-']:not([class*='variant-filled']) {
151
190
  background-color: color-mix(in oklab, currentColor 15%, transparent);
152
- border-color: color-mix(in oklab, currentColor 15%, transparent);
153
- }
154
-
155
- .kit-chip:hover:not([class*='chip--variant-']) {
156
- background-color: color-mix(in oklab, var(--chip-background) 85%, var(--kit-scrim));
157
- border-color: color-mix(in oklab, var(--chip-background) 85%, var(--kit-scrim));
158
- }
159
- .kit-chip:hover[class*='chip--variant-'] {
160
- background-color: color-mix(in oklab, currentColor 25%, transparent);
161
191
  }
162
192
 
163
193
  /* disabled */
164
194
  .kit-chip.kit-chip--disabled,
165
- .kit-chip[disabled] {
195
+ .kit-chip[disabled],
196
+ .kit-chip.kit-chip--loading {
166
197
  pointer-events: none;
167
198
  user-select: none;
168
199
  cursor: default;
169
200
  }
170
- .kit-chip:not([class*='chip--variant-']).kit-chip--disabled {
201
+ .kit-chip[class*='chip--variant-filled'].kit-chip--disabled {
171
202
  color: color-mix(in oklab, var(--chip-color) 40%, transparent) !important;
172
203
  background-color: color-mix(in oklab, var(--chip-background) 70%, transparent) !important;
173
- border-color: color-mix(in oklab, var(--chip-background) 70%, transparent) !important;
174
204
  }
175
- .kit-chip:not([class*='chip--variant-']).kit-chip--disabled i:before {
205
+ .kit-chip[class*='chip--variant-filled'].kit-chip--disabled i:before {
176
206
  color: color-mix(in oklab, var(--chip-color) 40%, transparent) !important;
177
207
  }
178
- .kit-chip[class*='chip--variant-'].kit-chip--disabled,
179
- .kit-chip[class*='chip--variant-'].kit-chip--disabled i:before {
208
+ .kit-chip[class*='chip--variant-']:not([class*='variant-filled']).kit-chip--disabled,
209
+ .kit-chip[class*='chip--variant-']:not([class*='variant-filled']).kit-chip--disabled i::before {
180
210
  color: color-mix(in oklab, var(--chip-background) 40%, transparent) !important;
181
211
  }
182
212
 
183
- /* loading */
184
- .kit-chip.kit-chip--loading {
185
- pointer-events: none;
186
- user-select: none;
187
- cursor: default;
213
+ /* icon */
214
+ .kit-chip i::before,
215
+ .kit-chip .kit-icon {
216
+ --base-parent: var(--chip-color);
188
217
  }
189
- .kit-chip.kit-chip--loading > .kit-chip-content {
190
- color: transparent;
191
- opacity: 0;
218
+
219
+ /* loading */
220
+ .kit-chip.kit-chip--loading > .kit-chip-content,
221
+ .kit-chip.kit-chip--loading > .kit-chip-append,
222
+ .kit-chip.kit-chip--loading > .kit-chip-prepend {
223
+ visibility: hidden;
192
224
  }
193
225
  .kit-chip.kit-chip--loading > .kit-chip-loading {
194
226
  position: absolute;
@@ -6,6 +6,7 @@
6
6
  // external
7
7
  import LoadingFill from '../../assets/icons/loading-fill.svelte';
8
8
  import Close from '../../assets/icons/close-fill.svelte';
9
+ import { ripple } from '../../internal/ripple.js';
9
10
 
10
11
  let {
11
12
  children,
@@ -20,7 +21,7 @@
20
21
  dark,
21
22
  light,
22
23
  active,
23
- variant,
24
+ variant = 'filled',
24
25
  error,
25
26
  info,
26
27
  success,
@@ -35,10 +36,17 @@
35
36
  loading,
36
37
  rounded,
37
38
  closable,
39
+ noRipple,
40
+ readonly = false,
38
41
  ...rest
39
42
  }: ChipProps = $props();
40
43
 
41
44
  const assets = getAssets();
45
+
46
+ $effect(() => {
47
+ const refProps = { ...rest };
48
+ if (refProps?.onclick && !readonly) is = 'button';
49
+ });
42
50
  </script>
43
51
 
44
52
  {#if !closable || (open && closable)}
@@ -61,6 +69,7 @@
61
69
  disabled && 'kit-chip--disabled',
62
70
  active && 'kit-chip--active',
63
71
  loading && 'kit-chip--loading',
72
+ readonly && 'kit-chip--readonly',
64
73
  rest.class
65
74
  ]}
66
75
  tabindex={href && disabled ? -1 : 0}
@@ -68,6 +77,10 @@
68
77
  aria-label={type !== 'button' ? label : undefined}
69
78
  disabled={href ? undefined : disabled}
70
79
  type={href ? undefined : type}
80
+ use:ripple={{
81
+ component: 'chip',
82
+ disabled: noRipple || readonly || disabled || is === 'div' || is === 'span'
83
+ }}
71
84
  style:--base={assets.color(background)}
72
85
  style:--on={assets.color(color)}
73
86
  style:--shape={assets.shape(rounded)}
@@ -85,20 +98,20 @@
85
98
  {/if}
86
99
 
87
100
  {#if prepend}
88
- <span class="kit-chip-prepend">
101
+ <div class="kit-chip-prepend">
89
102
  {@render prepend?.()}
90
- </span>
103
+ </div>
91
104
  {/if}
92
- <span class="kit-chip-content">
105
+ <div class="kit-chip-content">
93
106
  {@render children?.()}
94
- </span>
107
+ </div>
95
108
  {#if append}
96
- <span class="kit-chip-append">
109
+ <div class="kit-chip-append">
97
110
  {@render append?.()}
98
- </span>
111
+ </div>
99
112
  {/if}
100
113
 
101
- {#if closable}
114
+ {#if closable && !readonly}
102
115
  <button
103
116
  class="kit-chip--close"
104
117
  type="button"
@@ -10,7 +10,7 @@ export interface ChipProps extends Component {
10
10
  dark?: boolean;
11
11
  light?: boolean;
12
12
  href?: string;
13
- variant?: 'outline';
13
+ variant?: 'outline' | 'filled';
14
14
  density?: 'compact' | 'comfortable' | 'default';
15
15
  active?: boolean;
16
16
  loading?: boolean;
@@ -27,4 +27,6 @@ export interface ChipProps extends Component {
27
27
  type?: 'button';
28
28
  label?: string;
29
29
  closable?: boolean;
30
+ noRipple?: boolean;
31
+ readonly?: boolean;
30
32
  }
@@ -23,8 +23,8 @@
23
23
  }
24
24
 
25
25
  .kit-dialog .kit-dialog-container {
26
- --dialog-color: var(--on, var(--kit-on-neutral));
27
- --dialog-background: var(--base, var(--kit-neutral));
26
+ --dialog-color: var(--on, var(--kit-on-surface));
27
+ --dialog-background: var(--base, var(--kit-surface));
28
28
  --dialog-radius: var(--shape, var(--kit-radius-md));
29
29
 
30
30
  border-radius: var(--dialog-radius);
@@ -60,7 +60,9 @@
60
60
  }
61
61
 
62
62
  .kit-dialog[breakpoint]kit-dialog--position-center {
63
- margin: auto;
63
+ /* margin: auto; */
64
+ margin-top: auto;
65
+ margin-bottom: auto;
64
66
  }
65
67
 
66
68
  .kit-dialog[breakpoint]kit-dialog--size-xs {
@@ -1,6 +1,6 @@
1
1
  .kit-dropdown-content {
2
- --dropdown-color: var(--on, var(--kit-on-neutral));
3
- --dropdown-background: var(--base, var(--kit-neutral));
2
+ --dropdown-color: var(--on, var(--kit-on-surface));
3
+ --dropdown-background: var(--base, var(--kit-surface));
4
4
  --dropdown-radius: var(--shape, var(--kit-radius-md));
5
5
 
6
6
  inset: 0px auto auto 0px;
@@ -11,9 +11,9 @@
11
11
  width: auto;
12
12
  opacity: 1;
13
13
  transition-property: opacity, transform;
14
- transition:
14
+ /* transition:
15
15
  color 0.5s,
16
- background-color 0.5s;
16
+ background-color 0.5s; */
17
17
 
18
18
  /* theme */
19
19
  background-color: var(--dropdown-background);
@@ -4,7 +4,7 @@
4
4
  display: inline-flex;
5
5
  align-items: center;
6
6
  justify-content: center;
7
- transition: color 0.5s;
7
+ /* transition: color 0.5s; */
8
8
  text-indent: 0;
9
9
  font-size: calc(
10
10
  var(--icon-multiplier-parent-size, var(--icon-multiplier-size)) * var(--kit-spacing)
@@ -19,3 +19,4 @@ export { default as Card } from './card/card.svelte';
19
19
  export { default as Toolbar } from './toolbar/toolbar.svelte';
20
20
  export { default as Appbar } from './appbar/appbar.svelte';
21
21
  export { default as Spacer } from './spacer/spacer.svelte';
22
+ export { default as Textfield } from './textfield/textfield.svelte';
@@ -20,3 +20,4 @@ export { default as Card } from './card/card.svelte';
20
20
  export { default as Toolbar } from './toolbar/toolbar.svelte';
21
21
  export { default as Appbar } from './appbar/appbar.svelte';
22
22
  export { default as Spacer } from './spacer/spacer.svelte';
23
+ export { default as Textfield } from './textfield/textfield.svelte';