@codemonster-ru/vueforge 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.
Files changed (35) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +7 -0
  3. package/dist/components/button.vue.d.ts +43 -0
  4. package/dist/components/card.vue.d.ts +20 -0
  5. package/dist/components/container.vue.d.ts +17 -0
  6. package/dist/components/content.vue.d.ts +17 -0
  7. package/dist/components/demo.vue.d.ts +17 -0
  8. package/dist/components/footer.vue.d.ts +17 -0
  9. package/dist/components/header.vue.d.ts +18 -0
  10. package/dist/components/link.vue.d.ts +40 -0
  11. package/dist/components/logo.vue.d.ts +20 -0
  12. package/dist/components/menu.vue.d.ts +10 -0
  13. package/dist/components/popover.vue.d.ts +29 -0
  14. package/dist/config/index.d.ts +5 -0
  15. package/dist/index.css +1 -0
  16. package/dist/index.d.ts +15 -0
  17. package/dist/index.ts.mjs +1047 -0
  18. package/dist/index.ts.umd.js +6 -0
  19. package/dist/layouts/defaultLayout.vue.d.ts +19 -0
  20. package/dist/layouts/leftSidebarLayout.vue.d.ts +17 -0
  21. package/dist/themes/default/base.d.ts +33 -0
  22. package/dist/themes/default/components/button.d.ts +142 -0
  23. package/dist/themes/default/components/card.d.ts +6 -0
  24. package/dist/themes/default/components/codeBlock.d.ts +2 -0
  25. package/dist/themes/default/components/container.d.ts +4 -0
  26. package/dist/themes/default/components/content.d.ts +2 -0
  27. package/dist/themes/default/components/demo.d.ts +2 -0
  28. package/dist/themes/default/components/footer.d.ts +7 -0
  29. package/dist/themes/default/components/header.d.ts +8 -0
  30. package/dist/themes/default/components/link.d.ts +5 -0
  31. package/dist/themes/default/components/logo.d.ts +2 -0
  32. package/dist/themes/default/components/menu.d.ts +18 -0
  33. package/dist/themes/default/components/popover.d.ts +4 -0
  34. package/dist/themes/default/index.d.ts +257 -0
  35. package/package.json +61 -0
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024-present Kirill Kolesnikov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # VueForge
2
+
3
+ Open source UI components for Vue.js.
4
+
5
+ ## Author
6
+
7
+ [@KolesnikovKirill](https://github.com/kolesnikovKirill)
@@ -0,0 +1,43 @@
1
+ interface Props {
2
+ to?: string | object;
3
+ icon?: string;
4
+ type?: string;
5
+ size?: string;
6
+ label?: string;
7
+ loading?: boolean;
8
+ rounded?: boolean;
9
+ iconPos?: 'top' | 'right' | 'bottom' | 'left';
10
+ variant?: string;
11
+ severity?: string;
12
+ disabled?: boolean;
13
+ }
14
+ declare function __VLS_template(): {
15
+ attrs: Partial<{}>;
16
+ slots: {
17
+ default?(_: {}): any;
18
+ default?(_: {}): any;
19
+ };
20
+ refs: {};
21
+ rootEl: any;
22
+ };
23
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
24
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
25
+ label: string;
26
+ to: string | object;
27
+ type: string;
28
+ disabled: boolean;
29
+ icon: string;
30
+ size: string;
31
+ loading: boolean;
32
+ rounded: boolean;
33
+ iconPos: "top" | "right" | "bottom" | "left";
34
+ variant: string;
35
+ severity: string;
36
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
37
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
38
+ export default _default;
39
+ type __VLS_WithTemplateSlots<T, S> = T & {
40
+ new (): {
41
+ $slots: S;
42
+ };
43
+ };
@@ -0,0 +1,20 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ header?(_: {}): any;
6
+ body?(_: {}): any;
7
+ footer?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ rootEl: HTMLDivElement;
11
+ };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
14
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
15
+ export default _default;
16
+ type __VLS_WithTemplateSlots<T, S> = T & {
17
+ new (): {
18
+ $slots: S;
19
+ };
20
+ };
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: HTMLDivElement;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: HTMLDivElement;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: HTMLDivElement;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,17 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ rootEl: HTMLElement;
8
+ };
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
11
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
12
+ export default _default;
13
+ type __VLS_WithTemplateSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
@@ -0,0 +1,18 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ left?(_: {}): any;
5
+ right?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ rootEl: HTMLElement;
9
+ };
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLElement>;
12
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
+ export default _default;
14
+ type __VLS_WithTemplateSlots<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ };
@@ -0,0 +1,40 @@
1
+ import { RouteLocationAsRelativeGeneric, RouteLocationAsPathGeneric } from 'vue-router';
2
+ interface Props {
3
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
4
+ url?: string;
5
+ type: string;
6
+ label?: string;
7
+ active?: boolean;
8
+ disabled?: boolean;
9
+ }
10
+ declare function __VLS_template(): {
11
+ attrs: Partial<{}>;
12
+ slots: {
13
+ default?(_: {}): any;
14
+ default?(_: {}): any;
15
+ };
16
+ refs: {
17
+ link: any;
18
+ };
19
+ rootEl: any;
20
+ };
21
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
23
+ onActive: (...args: any[]) => void;
24
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
25
+ onOnActive?: ((...args: any[]) => any) | undefined;
26
+ }>, {
27
+ label: string;
28
+ to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
29
+ url: string;
30
+ type: string;
31
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
32
+ link: any;
33
+ }, any>;
34
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
+ export default _default;
36
+ type __VLS_WithTemplateSlots<T, S> = T & {
37
+ new (): {
38
+ $slots: S;
39
+ };
40
+ };
@@ -0,0 +1,20 @@
1
+ import { RouteLocationAsPathGeneric, RouteLocationAsRelativeGeneric } from 'vue-router';
2
+ interface Props {
3
+ to?: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
4
+ url?: string;
5
+ src: string | Array<string>;
6
+ alt?: string;
7
+ type?: string;
8
+ dark?: boolean;
9
+ width?: string;
10
+ height?: string;
11
+ }
12
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
13
+ to: string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric;
14
+ url: string;
15
+ type: string;
16
+ alt: string;
17
+ width: string;
18
+ height: string;
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
20
+ export default _default;
@@ -0,0 +1,10 @@
1
+ declare function __VLS_template(): any;
2
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
3
+ declare const __VLS_component: any;
4
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
5
+ export default _default;
6
+ type __VLS_WithTemplateSlots<T, S> = T & {
7
+ new (): {
8
+ $slots: S;
9
+ };
10
+ };
@@ -0,0 +1,29 @@
1
+ declare function __VLS_template(): {
2
+ attrs: Partial<{}>;
3
+ slots: {
4
+ button?(_: {}): any;
5
+ default?(_: {}): any;
6
+ popoverHeader?(_: {}): any;
7
+ popoverBody?(_: {}): any;
8
+ popoverFooter?(_: {}): any;
9
+ };
10
+ refs: {};
11
+ rootEl: HTMLDivElement;
12
+ };
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: import('vue').DefineComponent<{}, {
15
+ show: () => boolean;
16
+ hide: () => boolean;
17
+ toggle: () => boolean;
18
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
+ onClick: (...args: any[]) => void;
20
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
21
+ onOnClick?: ((...args: any[]) => any) | undefined;
22
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
23
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
+ export default _default;
25
+ type __VLS_WithTemplateSlots<T, S> = T & {
26
+ new (): {
27
+ $slots: S;
28
+ };
29
+ };
@@ -0,0 +1,5 @@
1
+ import { App } from 'vue';
2
+ declare const _default: {
3
+ install(_app: App, options: object): void;
4
+ };
5
+ export default _default;
package/dist/index.css ADDED
@@ -0,0 +1 @@
1
+ .cm-demo{display:flex;align-items:center;justify-content:center;padding:24px;border-radius:6px;margin-bottom:12px;background-color:var(--cm-bg-soft-color)}.cm-link{color:inherit;cursor:pointer;text-decoration:none}.cm-link:hover{color:var(--cm-link-hover-color)}.cm-link:active{color:var(--cm-link-active-color)}.cm-link.cm-link_disabled{cursor:not-allowed}.cm-link_active,.cm-link_partially-active{color:var(--cm-link-active-color)}.cm-card{border:1px solid var(--cm-card-border-color);border-radius:var(--cm-card-border-radius)}.cm-card__default{padding:var(--cm-card-padding)}.cm-logo{position:relative}.cm-icon_animations_spin[data-v-e8b1cecb]{animation-name:cm-spin-e8b1cecb;animation-delay:0s;animation-duration:2s;animation-direction:normal;animation-iteration-count:infinite;animation-timing-function:linear}@keyframes cm-spin-e8b1cecb{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.cm-menu{display:flex}.cm-menu_horizontal>.cm-menu__list{flex-direction:row}.cm-menu_horizontal>.cm-menu__list>.cm-menu__item{align-items:center}.cm-menu_horizontal>.cm-menu__list>.cm-menu__item:not(:first-child){margin-left:var(--cm-menu-item-margin-left)}.cm-menu_horizontal>.cm-menu__list>.cm-menu__item:not(:last-child){margin-right:var(--cm-menu-item-margin-right)}.cm-menu_horizontal>.cm-menu__list>.cm-menu__item>.cm-menu__separator{height:1rem;border-top:none;border-right:none;border-left:1px solid var(--cm-menu-separator-color);border-bottom:none}.cm-menu_vertical>.cm-menu__list{width:100%;flex-direction:column}.cm-menu_vertical>.cm-menu__list>.cm-menu__item{flex-direction:column}.cm-menu_vertical>.cm-menu__list>.cm-menu__item:not(:first-child){margin-top:var(--cm-menu-item-margin-top)}.cm-menu_vertical>.cm-menu__list>.cm-menu__item:not(:last-child){margin-bottom:var(--cm-menu-item-margin-bottom)}.cm-menu_vertical>.cm-menu__list>.cm-menu__item>.cm-menu{overflow:hidden}.cm-menu__list{margin:0;padding:0;display:flex;list-style:none}.cm-menu__item{display:flex;font-weight:500}.cm-menu__link{display:flex;align-items:center;text-decoration:none}.cm-menu__link:hover{color:var(--cm-menu-link-hover-color)}.cm-menu__parent{cursor:pointer;display:flex;align-items:center;justify-content:space-between}.cm-menu__parent:hover{color:var(--cm-menu-parent-hover-color)}.cm-menu__icon{margin-right:6px}.cm-menu__submenu.cm-menu__submenu_visible{margin-top:12px;margin-left:12px}.cm-menu__submenu:not(.cm-menu__submenu_visible){height:0}.cm-header{height:var(--cm-header-height);min-height:var(--cm-header-min-height);display:flex;padding-top:var(--cm-header-padding);border-bottom:1px solid var(--cm-header-border-color);margin-bottom:24px;padding-bottom:var(--cm-header-padding);background-color:var(--cm-header-background-color)}.cm-header .cm-container{align-items:center;justify-content:space-between}.cm-header__left,.cm-header__right{display:flex;align-items:center}.cm-footer{flex:0 0 auto;color:var(--cm-footer-color);margin-top:24px;padding-top:var(--cm-footer-padding);padding-bottom:var(--cm-footer-padding);background-color:var(--cm-footer-background-color);border-top:1px solid var(--cm-footer-border-color)}.cm-footer .cm-container{display:flex;align-items:center;justify-content:space-between}.cm-button{display:inline-flex;position:relative;cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;justify-content:center;padding:var(--cm-button-padding);font-size:1rem;font-family:inherit;border-radius:var(--cm-button-border-radius);overflow:hidden}.cm-button_text{border:1px solid transparent;background-color:transparent}.cm-button_outlined{background-color:transparent}.cm-button_primary.cm-button_text{color:var(--cm-button-text-primary-color)}.cm-button_primary.cm-button_text:not(.cm-button_disabled):hover{background-color:var(--cm-button-text-primary-hover-background-color)}.cm-button_primary.cm-button_outlined{color:var(--cm-button-outlined-primary-color);border:1px solid var(--cm-button-outlined-primary-border-color)}.cm-button_primary.cm-button_outlined:not(.cm-button_disabled):hover{background-color:var(--cm-button-outlined-primary-hover-background-color)}.cm-button_primary:not(.cm-button_text):not(.cm-button_outlined){color:var(--cm-button-primary-color);border:1px solid var(--cm-button-primary-border-color);background-color:var(--cm-button-primary-background-color)}.cm-button_primary:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):hover{color:var(--cm-button-primary-hover-color);border:1px solid var(--cm-button-primary-hover-border-color);background-color:var(--cm-button-primary-hover-background-color)}.cm-button_primary:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):active{color:var(--cm-button-primary-active-color);border:1px solid var(--cm-button-primary-active-border-color);background-color:var(var(--cm-button-primary-active-border-color))}.cm-button_secondary.cm-button_text{color:var(--cm-button-text-secondary-color)}.cm-button_secondary.cm-button_text:not(.cm-button_disabled):hover{background-color:var(--cm-button-text-secondary-hover-background-color)}.cm-button_secondary.cm-button_outlined{color:var(--cm-button-outlined-secondary-color);border:1px solid var(--cm-button-outlined-secondary-border-color)}.cm-button_secondary.cm-button_outlined:not(.cm-button_disabled):hover{background-color:var(--cm-button-outlined-secondary-hover-background-color)}.cm-button_secondary:not(.cm-button_text):not(.cm-button_outlined){color:var(--cm-button-secondary-color);border:1px solid var(--cm-button-secondary-border-color);background-color:var(--cm-button-secondary-background-color)}.cm-button_secondary:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):hover{color:var(--cm-button-secondary-hover-color);border:1px solid var(--cm-button-secondary-hover-border-color);background-color:var(--cm-button-secondary-hover-background-color)}.cm-button_secondary:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):active{color:var(--cm-button-secondary-active-color);border:1px solid var(--cm-button-secondary-active-border-color);background-color:var(--cm-button-secondary-active-background-color)}.cm-button_success.cm-button_text{color:var(--cm-button-text-success-color)}.cm-button_success.cm-button_text:not(.cm-button_disabled):hover{background-color:var(--cm-button-text-success-hover-background-color)}.cm-button_success.cm-button_outlined{color:var(--cm-button-outlined-success-color);border:1px solid var(--cm-button-outlined-success-border-color)}.cm-button_success.cm-button_outlined:not(.cm-button_disabled):hover{background-color:var(--cm-button-outlined-success-hover-background-color)}.cm-button_success:not(.cm-button_text):not(.cm-button_outlined){color:var(--cm-button-success-color);border:1px solid var(--cm-button-success-border-color);background-color:var(--cm-button-success-background-color)}.cm-button_success:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):hover{color:var(--cm-button-success-hover-color);border:1px solid var(--cm-button-success-hover-border-color);background-color:var(--cm-button-success-hover-background-color)}.cm-button_success:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):active{color:var(--cm-button-success-active-color);border:1px solid var(--cm-button-success-active-border-color);background-color:var(--cm-button-success-active-background-color)}.cm-button_info.cm-button_text{color:var(--cm-button-text-info-color)}.cm-button_info.cm-button_text:not(.cm-button_disabled):hover{background-color:var(--cm-button-text-info-hover-background-color)}.cm-button_info.cm-button_outlined{color:var(--cm-button-outlined-info-color);border:1px solid var(--cm-button-outlined-info-border-color)}.cm-button_info.cm-button_outlined:not(.cm-button_disabled):hover{background-color:var(--cm-button-outlined-info-hover-background-color)}.cm-button_info:not(.cm-button_text):not(.cm-button_outlined){color:var(--cm-button-info-color);border:1px solid var(--cm-button-info-border-color);background-color:var(--cm-button-info-background-color)}.cm-button_info:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):hover{color:var(--cm-button-info-hover-color);border:1px solid var(--cm-button-info-hover-border-color);background-color:var(--cm-button-info-hover-background-color)}.cm-button_info:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):active{color:var(--cm-button-info-active-color);border:1px solid var(--cm-button-info-active-border-color);background-color:var(--cm-button-info-active-background-color)}.cm-button_warning.cm-button_text{color:var(--cm-button-text-warning-color)}.cm-button_warning.cm-button_text:not(.cm-button_disabled):hover{background-color:var(--cm-button-text-warning-hover-background-color)}.cm-button_warning.cm-button_outlined{color:var(--cm-button-outlined-warning-color);border:1px solid var(--cm-button-outlined-warning-border-color)}.cm-button_warning.cm-button_outlined:not(.cm-button_disabled):hover{background-color:var(--cm-button-outlined-warning-hover-background-color)}.cm-button_warning:not(.cm-button_text):not(.cm-button_outlined){color:var(--cm-button-warning-color);border:1px solid var(--cm-button-warning-border-color);background-color:var(--cm-button-warning-background-color)}.cm-button_warning:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):hover{color:var(--cm-button-warning-hover-color);border:1px solid var(--cm-button-warning-hover-border-color);background-color:var(--cm-button-warning-hover-background-color)}.cm-button_warning:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):active{color:var(--cm-button-warning-active-color);border:1px solid var(--cm-button-warning-active-border-color);background-color:var(--cm-button-warning-active-background-color)}.cm-button_danger.cm-button_text{color:var(--cm-button-text-danger-color)}.cm-button_danger.cm-button_text:not(.cm-button_disabled):hover{background-color:var(--cm-button-text-danger-hover-background-color)}.cm-button_danger.cm-button_outlined{color:var(--cm-button-outlined-danger-color);border:1px solid var(--cm-button-outlined-danger-border-color)}.cm-button_danger.cm-button_outlined:not(.cm-button_disabled):hover{background-color:var(--cm-button-outlined-danger-hover-background-color)}.cm-button_danger:not(.cm-button_text):not(.cm-button_outlined){color:var(--cm-button-danger-color);border:1px solid var(--cm-button-danger-border-color);background-color:var(--cm-button-danger-background-color)}.cm-button_danger:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):hover{color:var(--cm-button-danger-hover-color);border:1px solid var(--cm-button-danger-hover-border-color);background-color:var(--cm-button-danger-hover-background-color)}.cm-button_danger:not(.cm-button_text):not(.cm-button_outlined):not(.cm-button_disabled):active{color:var(--cm-button-danger-active-color);border:1px solid var(--cm-button-danger-active-border-color);background-color:var(--cm-button-danger-active-background-color)}.cm-button_vertical{flex-direction:column}.cm-button__icon{display:inline-block}.cm-button__icon_top+.cm-button__label{margin-top:6px}.cm-button__icon_right{order:1}.cm-button__icon_right+.cm-button__label{margin-right:6px}.cm-button__icon_bottom{order:1}.cm-button__icon_bottom+.cm-button__label{margin-bottom:6px}.cm-button__icon_left+.cm-button__label{margin-left:6px}.cm-button_disabled{opacity:.6;cursor:default}.cm-button_rounded{border-radius:var(--cm-button-rounded-border-radius)}.cm-button_small{font-size:var(--cm-button-small-font-size);padding:var(--cm-button-small-padding)}.cm-button_large{font-size:var(--cm-button-large-font-size);padding:var(--cm-button-large-padding)}.cm-content{display:flex;flex:1}.cm-content .cm-container{display:flex}.cm-popover{position:relative}.cm-popover__button{cursor:pointer;-webkit-user-select:none;user-select:none}.cm-popover__wrapper{position:absolute;background-color:var(--cm-popover-background-color)}.cm-container{width:100%;display:flex;margin-right:auto;margin-left:auto;padding-right:var(--cm-container-padding);padding-left:var(--cm-container-padding)}@media (min-width: 640px){.cm-container{max-width:calc(640px - var(--cm-container-padding) * 2)}}@media (min-width: 768px){.cm-container{max-width:calc(768px - var(--cm-container-padding) * 2)}}@media (min-width: 1024px){.cm-container{max-width:calc(1024px - var(--cm-container-padding) * 2)}}@media (min-width: 1280px){.cm-container{max-width:calc(1280px - var(--cm-container-padding) * 2)}}@media (min-width: 1536px){.cm-container{max-width:calc(1536px - var(--cm-container-padding) * 2)}}.cm-left-sidebar-flexbox{width:100%;display:flex;flex-wrap:wrap}.cm-left-sidebar{width:250px;margin-right:48px}.cm-main-content{width:calc(100% - 298px)}
@@ -0,0 +1,15 @@
1
+ export { default as Demo } from './components/demo.vue';
2
+ export { default as Link } from './components/link.vue';
3
+ export { default as Card } from './components/card.vue';
4
+ export { default as Logo } from './components/logo.vue';
5
+ export { default as Menu } from './components/menu.vue';
6
+ export { default as Header } from './components/header.vue';
7
+ export { default as Footer } from './components/footer.vue';
8
+ export { default as Button } from './components/button.vue';
9
+ export { default as Content } from './components/content.vue';
10
+ export { default as Popover } from './components/popover.vue';
11
+ export { default as Container } from './components/container.vue';
12
+ export { default as DefaultLayout } from './layouts/defaultLayout.vue';
13
+ export { default as LeftSidebarLayout } from './layouts/leftSidebarLayout.vue';
14
+ export { default as VueForge } from './config/index';
15
+ export { default as DefaultTheme } from './themes/default';