@elmethis/qwik 0.0.27 → 0.0.28
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/lib/index.qwik.cjs +145 -120
- package/lib/index.qwik.mjs +145 -120
- package/lib/style.css +36 -0
- package/lib-types/components/icon/elm-square-loading-icon.d.ts +6 -0
- package/lib-types/components/icon/elm-square-loading-icon.stories.d.ts +6 -0
- package/lib-types/index.d.ts +1 -0
- package/package.json +1 -1
package/lib/style.css
CHANGED
|
@@ -959,6 +959,42 @@
|
|
|
959
959
|
color: #b0b5be;
|
|
960
960
|
border-radius: 50%;
|
|
961
961
|
cursor: pointer;
|
|
962
|
+
}@keyframes _appear_13xd3_1 {
|
|
963
|
+
0% {
|
|
964
|
+
transform: scale(0);
|
|
965
|
+
}
|
|
966
|
+
20% {
|
|
967
|
+
transform: scale(0);
|
|
968
|
+
}
|
|
969
|
+
80% {
|
|
970
|
+
transform: scale(1);
|
|
971
|
+
}
|
|
972
|
+
100% {
|
|
973
|
+
transform: scale(1);
|
|
974
|
+
}
|
|
975
|
+
}
|
|
976
|
+
._wrapper_13xd3_15 {
|
|
977
|
+
margin: 0;
|
|
978
|
+
padding: 0;
|
|
979
|
+
display: grid;
|
|
980
|
+
grid-template-columns: repeat(var(--dimensions), auto);
|
|
981
|
+
grid-template-rows: repeat(var(--dimensions), auto);
|
|
982
|
+
justify-content: start;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
._square_13xd3_24 {
|
|
986
|
+
width: calc(var(--size) / var(--dimensions));
|
|
987
|
+
height: calc(var(--size) / var(--dimensions));
|
|
988
|
+
animation-name: _appear_13xd3_1;
|
|
989
|
+
animation-iteration-count: infinite;
|
|
990
|
+
animation-fill-mode: both;
|
|
991
|
+
animation-direction: alternate;
|
|
992
|
+
animation-duration: var(--duration);
|
|
993
|
+
animation-delay: var(--delay);
|
|
994
|
+
background-color: #606875;
|
|
995
|
+
}
|
|
996
|
+
[data-theme=dark] ._square_13xd3_24 {
|
|
997
|
+
background-color: #b0b5be;
|
|
962
998
|
}._block-image_sf1wj_1 {
|
|
963
999
|
margin-block: var(--margin-block, 0);
|
|
964
1000
|
margin-inline: 0;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Meta, StoryObj } from "storybook-framework-qwik";
|
|
2
|
+
import { ElmSquareLoadingIcon } from "./elm-square-loading-icon";
|
|
3
|
+
declare const meta: Meta<typeof ElmSquareLoadingIcon>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
export declare const Primary: Story;
|
package/lib-types/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export { ElmInlineIcon, type ElmInlineIconProps, } from "./components/icon/elm-i
|
|
|
16
16
|
export { ElmLanguageIcon, type ElmLanguageIconProps, } from "./components/icon/elm-language-icon";
|
|
17
17
|
export { ElmMdiIcon, type ElmMdiIconProps, } from "./components/icon/elm-mdi-icon";
|
|
18
18
|
export { ElmToggleTheme, type ElmToggleThemeProps, } from "./components/icon/elm-toggle-theme";
|
|
19
|
+
export { ElmSquareLoadingIcon, type ElmSquareLoadingIconProps, } from "./components/icon/elm-square-loading-icon";
|
|
19
20
|
export { ElmBlockImage, type ElmBlockImageProps, } from "./components/media/elm-block-image";
|
|
20
21
|
export { ElmFile, type ElmFileProps } from "./components/media/elm-file";
|
|
21
22
|
export { ElmBookmark, type ElmBookmarkProps, } from "./components/navigation/elm-bookmark";
|