lapikit 0.6.6 → 0.6.7
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/dist/components/appbar/appbar.svelte +2 -2
- package/dist/components/chip/chip.svelte +1 -0
- package/dist/components/list/list.svelte +1 -2
- package/dist/hooks/accordion.svelte.d.ts +5 -0
- package/dist/hooks/actions.d.ts +1 -1
- package/dist/hooks/actions.js +1 -1
- package/package.json +1 -1
- /package/dist/{components/accordion → hooks}/accordion.svelte.js +0 -0
|
@@ -146,10 +146,10 @@
|
|
|
146
146
|
--kit-appbar-density-offset: var(--kit-density-compact);
|
|
147
147
|
}
|
|
148
148
|
.kit-appbar[data-density='default'] {
|
|
149
|
-
--kit-appbar-density-offset: var(--kit-density-
|
|
149
|
+
--kit-appbar-density-offset: var(--kit-density-default);
|
|
150
150
|
}
|
|
151
151
|
.kit-appbar[data-density='comfortable'] {
|
|
152
|
-
--kit-appbar-density-offset: var(--kit-density-
|
|
152
|
+
--kit-appbar-density-offset: var(--kit-density-comfortable);
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
/**
|
|
@@ -181,8 +181,7 @@
|
|
|
181
181
|
border-bottom-left-radius: var(--kit-list-item-radius);
|
|
182
182
|
border-bottom-right-radius: var(--kit-list-item-radius);
|
|
183
183
|
}
|
|
184
|
-
.kit-list:not([data-nav='true']) :global(.kit-list-item:not(:first-child))
|
|
185
|
-
.kit-list:not([data-nav='true']) :global(.kit-list-item:not(:last-child)) {
|
|
184
|
+
.kit-list:not([data-nav='true']) :global(.kit-list-item:not(:first-child):not(:last-child)) {
|
|
186
185
|
--kit-list-item-radius: 0;
|
|
187
186
|
}
|
|
188
187
|
|
package/dist/hooks/actions.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './themes.svelte.js';
|
|
2
|
-
export * from '
|
|
2
|
+
export * from './accordion.svelte.js';
|
package/dist/hooks/actions.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from './themes.svelte.js';
|
|
2
|
-
export * from '
|
|
2
|
+
export * from './accordion.svelte.js';
|
package/package.json
CHANGED
|
File without changes
|