@code-coaching/vuetiful 0.23.0 → 0.23.2
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/style.css +1 -1
- package/dist/types/components/VBootstrap.vue.d.ts +1 -1
- package/dist/types/components/atoms/VAvatar.vue.d.ts +1 -1
- package/dist/types/components/atoms/VLightSwitch.vue.d.ts +2 -2
- package/dist/types/components/atoms/index.d.ts +13 -13
- package/dist/types/components/index.d.ts +2 -2
- package/dist/types/components/molecules/VAlert.vue.d.ts +1 -1
- package/dist/types/components/molecules/VCodeBlock.vue.d.ts +2 -2
- package/dist/types/components/molecules/VDrawer.vue.d.ts +1 -1
- package/dist/types/components/molecules/VListbox/VListbox.vue.d.ts +1 -1
- package/dist/types/components/molecules/VRail/VRail.vue.d.ts +1 -1
- package/dist/types/components/molecules/VRail/VRailTile.vue.d.ts +1 -1
- package/dist/types/components/molecules/index.d.ts +21 -21
- package/dist/types/directives/clipboard.d.ts +1 -1
- package/dist/types/directives/index.d.ts +1 -1
- package/dist/types/index.d.ts +6 -6
- package/dist/types/props/props.d.ts +1 -1
- package/dist/types/services/dark-mode.service.d.ts +1 -1
- package/dist/types/services/drawer.service.d.ts +1 -1
- package/dist/types/services/index.d.ts +5 -5
- package/dist/types/types/index.d.ts +1 -1
- package/dist/types/utils/index.d.ts +2 -2
- package/dist/types/utils/theme/theme-switcher.vue.d.ts +23 -63
- package/dist/types/utils/theme/theme.service.d.ts +1 -1
- package/dist/vuetiful.es.mjs +82 -150
- package/dist/vuetiful.umd.js +7 -15
- package/package.json +1 -1
- package/src/assets/main.css +6 -6
- package/src/components/VBootstrap.vue +43 -43
- package/src/components/atoms/VAvatar.test.ts +71 -71
- package/src/components/atoms/VAvatar.vue +22 -23
- package/src/components/atoms/VBadge.test.ts +11 -11
- package/src/components/atoms/VBadge.vue +2 -2
- package/src/components/atoms/VButton.test.ts +82 -82
- package/src/components/atoms/VButton.vue +20 -21
- package/src/components/atoms/VChip.test.ts +11 -11
- package/src/components/atoms/VChip.vue +3 -3
- package/src/components/atoms/VLightSwitch.test.ts +6 -6
- package/src/components/atoms/VLightSwitch.vue +26 -31
- package/src/components/atoms/VRadio/VRadioDescription.test.ts +13 -13
- package/src/components/atoms/VRadio/VRadioDescription.vue +2 -2
- package/src/components/atoms/VRadio/VRadioGroup.test.ts +40 -40
- package/src/components/atoms/VRadio/VRadioGroup.vue +19 -22
- package/src/components/atoms/VRadio/VRadioItem.test.ts +67 -67
- package/src/components/atoms/VRadio/VRadioItem.vue +10 -13
- package/src/components/atoms/VRadio/VRadioLabel.test.ts +13 -13
- package/src/components/atoms/VRadio/VRadioLabel.vue +5 -3
- package/src/components/atoms/VSwitch/VSwitch.test.ts +33 -33
- package/src/components/atoms/VSwitch/VSwitch.vue +24 -27
- package/src/components/atoms/VSwitch/VSwitchDescription.test.ts +13 -13
- package/src/components/atoms/VSwitch/VSwitchDescription.vue +2 -2
- package/src/components/atoms/VSwitch/VSwitchGroup.test.ts +9 -9
- package/src/components/atoms/VSwitch/VSwitchGroup.vue +2 -2
- package/src/components/atoms/VSwitch/VSwitchLabel.test.ts +19 -19
- package/src/components/atoms/VSwitch/VSwitchLabel.vue +2 -2
- package/src/components/atoms/index.ts +13 -13
- package/src/components/index.test.ts +3 -3
- package/src/components/index.ts +2 -2
- package/src/components/molecules/VAccordion/VAccordion.test.ts +11 -17
- package/src/components/molecules/VAccordion/VAccordion.vue +3 -3
- package/src/components/molecules/VAccordion/VAccordionItem.test.ts +55 -55
- package/src/components/molecules/VAccordion/VAccordionItem.vue +9 -22
- package/src/components/molecules/VAlert.test.ts +38 -38
- package/src/components/molecules/VAlert.vue +25 -47
- package/src/components/molecules/VCard/VCard.test.ts +25 -25
- package/src/components/molecules/VCard/VCard.vue +13 -15
- package/src/components/molecules/VCard/VCardBody.test.ts +14 -14
- package/src/components/molecules/VCard/VCardBody.vue +4 -8
- package/src/components/molecules/VCard/VCardFooter.test.ts +22 -22
- package/src/components/molecules/VCard/VCardFooter.vue +10 -8
- package/src/components/molecules/VCard/VCardHeader.test.ts +25 -25
- package/src/components/molecules/VCard/VCardHeader.vue +7 -8
- package/src/components/molecules/VCodeBlock.test.ts +63 -63
- package/src/components/molecules/VCodeBlock.vue +27 -34
- package/src/components/molecules/VDrawer.test.ts +5 -5
- package/src/components/molecules/VDrawer.vue +10 -10
- package/src/components/molecules/VListbox/VListbox.test.ts +53 -53
- package/src/components/molecules/VListbox/VListbox.vue +31 -32
- package/src/components/molecules/VListbox/VListboxButton.test.ts +13 -13
- package/src/components/molecules/VListbox/VListboxButton.vue +5 -5
- package/src/components/molecules/VListbox/VListboxItem.test.ts +25 -25
- package/src/components/molecules/VListbox/VListboxItem.vue +7 -8
- package/src/components/molecules/VListbox/VListboxItems.test.ts +14 -14
- package/src/components/molecules/VListbox/VListboxItems.vue +9 -11
- package/src/components/molecules/VListbox/VListboxLabel.test.ts +10 -10
- package/src/components/molecules/VListbox/VListboxLabel.vue +2 -2
- package/src/components/molecules/VPreview.test.ts +26 -26
- package/src/components/molecules/VPreview.vue +22 -27
- package/src/components/molecules/VRail/VRail.test.ts +5 -5
- package/src/components/molecules/VRail/VRail.vue +7 -7
- package/src/components/molecules/VRail/VRailTile.test.ts +26 -28
- package/src/components/molecules/VRail/VRailTile.vue +13 -11
- package/src/components/molecules/VShell.test.ts +5 -5
- package/src/components/molecules/VShell.vue +11 -20
- package/src/components/molecules/VTabs/VTab.test.ts +48 -52
- package/src/components/molecules/VTabs/VTab.vue +13 -17
- package/src/components/molecules/VTabs/VTabPanel.test.ts +8 -8
- package/src/components/molecules/VTabs/VTabPanel.vue +1 -1
- package/src/components/molecules/VTabs/VTabs.test.ts +36 -36
- package/src/components/molecules/VTabs/VTabs.vue +18 -22
- package/src/components/molecules/index.ts +21 -21
- package/src/directives/clipboard.test.ts +9 -9
- package/src/directives/clipboard.ts +2 -2
- package/src/directives/index.ts +1 -1
- package/src/env.d.ts +2 -2
- package/src/index.test.ts +6 -6
- package/src/index.ts +7 -7
- package/src/props/index.ts +1 -1
- package/src/props/props.ts +44 -44
- package/src/services/dark-mode.service.test.ts +115 -93
- package/src/services/dark-mode.service.ts +9 -9
- package/src/services/drawer.service.test.ts +21 -21
- package/src/services/drawer.service.ts +10 -10
- package/src/services/highlight.service.test.ts +12 -12
- package/src/services/highlight.service.ts +1 -1
- package/src/services/index.ts +5 -5
- package/src/services/rail.service.test.ts +7 -7
- package/src/services/rail.service.ts +2 -2
- package/src/services/settings.service.test.ts +5 -5
- package/src/services/settings.service.ts +1 -1
- package/src/styles/all.css +7 -7
- package/src/styles/elements/buttons.css +1 -1
- package/src/styles/elements/forms.css +7 -7
- package/src/styles/elements.css +13 -13
- package/src/styles/transitions.css +2 -2
- package/src/styles/typography.css +5 -5
- package/src/themes/theme-rocket.css +10 -10
- package/src/themes/theme-sahara.css +13 -13
- package/src/themes/theme-seafoam.css +13 -13
- package/src/themes/theme-seasonal.css +4 -4
- package/src/themes/theme-skeleton.css +7 -7
- package/src/themes/theme-vintage.css +12 -12
- package/src/themes/theme-vuetiful-0.0.1.css +13 -13
- package/src/types/index.ts +46 -46
- package/src/types/tailwind.ts +2 -21
- package/src/utils/index.test.ts +3 -3
- package/src/utils/index.ts +2 -2
- package/src/utils/platform/platform.service.test.ts +6 -6
- package/src/utils/platform/platform.service.ts +1 -1
- package/src/utils/theme/callback.test.ts +6 -6
- package/src/utils/theme/remove.test.ts +8 -8
- package/src/utils/theme/theme-switcher.vue +58 -131
- package/src/utils/theme/theme.service.test.ts +69 -61
- package/src/utils/theme/theme.service.ts +19 -20
package/dist/style.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.icon[data-v-
|
|
1
|
+
.icon[data-v-ef253f90],.icon[data-v-31089628]{@apply my-1 h-4 w-4 fill-current;}.icon[data-v-513d21fc]{@apply my-1 h-4 min-h-[1rem] w-4 min-w-[1rem] fill-current;}.icon[data-v-5d6982bd]{@apply my-1 h-6 min-h-[1.5rem] w-6 min-w-[1.5rem] fill-current;}.vuetiful-card-header{border-top-left-radius:inherit;border-top-right-radius:inherit}.vuetiful-card-header>*{border-top-left-radius:inherit;border-top-right-radius:inherit}pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
|
|
2
2
|
Theme: GitHub Dark
|
|
3
3
|
Description: Dark theme as seen on github.com
|
|
4
4
|
Author: github.com
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PropType } from
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
3
|
variant: {
|
|
4
4
|
type: PropType<"" | "variant-filled" | "variant-filled-surface" | "variant-filled-primary" | "variant-filled-secondary" | "variant-filled-tertiary" | "variant-filled-success" | "variant-filled-warning" | "variant-filled-error" | "variant-ringed" | "variant-ringed-primary" | "variant-ringed-secondary" | "variant-ringed-tertiary" | "variant-ringed-success" | "variant-ringed-warning" | "variant-ringed-error" | "variant-ringed-surface" | "variant-ghost" | "variant-ghost-primary" | "variant-ghost-secondary" | "variant-ghost-tertiary" | "variant-ghost-success" | "variant-ghost-warning" | "variant-ghost-error" | "variant-ghost-surface" | "variant-soft" | "variant-soft-primary" | "variant-soft-secondary" | "variant-soft-tertiary" | "variant-soft-success" | "variant-soft-warning" | "variant-soft-error" | "variant-soft-surface" | "variant-glass" | "variant-glass-primary" | "variant-glass-secondary" | "variant-glass-tertiary" | "variant-glass-success" | "variant-glass-warning" | "variant-glass-error" | "variant-glass-surface">;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import VAvatar from
|
|
2
|
-
import VBadge from
|
|
3
|
-
import VButton from
|
|
4
|
-
import VChip from
|
|
5
|
-
import VLightSwitch from
|
|
6
|
-
import VRadioDescription from
|
|
7
|
-
import VRadioGroup from
|
|
8
|
-
import VRadioItem from
|
|
9
|
-
import VRadioLabel from
|
|
10
|
-
import VSwitch from
|
|
11
|
-
import VSwitchDescription from
|
|
12
|
-
import VSwitchGroup from
|
|
13
|
-
import VSwitchLabel from
|
|
1
|
+
import VAvatar from './VAvatar.vue';
|
|
2
|
+
import VBadge from './VBadge.vue';
|
|
3
|
+
import VButton from './VButton.vue';
|
|
4
|
+
import VChip from './VChip.vue';
|
|
5
|
+
import VLightSwitch from './VLightSwitch.vue';
|
|
6
|
+
import VRadioDescription from './VRadio/VRadioDescription.vue';
|
|
7
|
+
import VRadioGroup from './VRadio/VRadioGroup.vue';
|
|
8
|
+
import VRadioItem from './VRadio/VRadioItem.vue';
|
|
9
|
+
import VRadioLabel from './VRadio/VRadioLabel.vue';
|
|
10
|
+
import VSwitch from './VSwitch/VSwitch.vue';
|
|
11
|
+
import VSwitchDescription from './VSwitch/VSwitchDescription.vue';
|
|
12
|
+
import VSwitchGroup from './VSwitch/VSwitchGroup.vue';
|
|
13
|
+
import VSwitchLabel from './VSwitch/VSwitchLabel.vue';
|
|
14
14
|
export { VAvatar, VButton, VBadge, VChip, VLightSwitch, VRadioGroup, VRadioItem, VRadioLabel, VRadioDescription, VSwitchGroup, VSwitchLabel, VSwitchDescription, VSwitch, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
1
|
+
export * from './atoms';
|
|
2
|
+
export * from './molecules';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CssClasses } from
|
|
2
|
-
import
|
|
1
|
+
import { CssClasses } from '@/index';
|
|
2
|
+
import 'highlight.js/styles/github-dark.css';
|
|
3
3
|
declare const _default: import("vue").DefineComponent<{
|
|
4
4
|
language: {
|
|
5
5
|
type: StringConstructor;
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import VDrawer from
|
|
2
|
-
import VPreview from
|
|
3
|
-
import VRail from
|
|
4
|
-
import VRailTile from
|
|
5
|
-
import VShell from
|
|
6
|
-
import VListbox from
|
|
7
|
-
import VListboxButton from
|
|
8
|
-
import VListboxItem from
|
|
9
|
-
import VListboxItems from
|
|
10
|
-
import VListboxLabel from
|
|
11
|
-
import VTab from
|
|
12
|
-
import VTabPanel from
|
|
13
|
-
import VTabs from
|
|
14
|
-
import VAccordion from
|
|
15
|
-
import VAccordionItem from
|
|
16
|
-
import VAlert from
|
|
17
|
-
import VCard from
|
|
18
|
-
import VCardBody from
|
|
19
|
-
import VCardFooter from
|
|
20
|
-
import VCardHeader from
|
|
21
|
-
import VCodeBlock from
|
|
1
|
+
import VDrawer from './VDrawer.vue';
|
|
2
|
+
import VPreview from './VPreview.vue';
|
|
3
|
+
import VRail from './VRail/VRail.vue';
|
|
4
|
+
import VRailTile from './VRail/VRailTile.vue';
|
|
5
|
+
import VShell from './VShell.vue';
|
|
6
|
+
import VListbox from './VListbox/VListbox.vue';
|
|
7
|
+
import VListboxButton from './VListbox/VListboxButton.vue';
|
|
8
|
+
import VListboxItem from './VListbox/VListboxItem.vue';
|
|
9
|
+
import VListboxItems from './VListbox/VListboxItems.vue';
|
|
10
|
+
import VListboxLabel from './VListbox/VListboxLabel.vue';
|
|
11
|
+
import VTab from './VTabs/VTab.vue';
|
|
12
|
+
import VTabPanel from './VTabs/VTabPanel.vue';
|
|
13
|
+
import VTabs from './VTabs/VTabs.vue';
|
|
14
|
+
import VAccordion from './VAccordion/VAccordion.vue';
|
|
15
|
+
import VAccordionItem from './VAccordion/VAccordionItem.vue';
|
|
16
|
+
import VAlert from './VAlert.vue';
|
|
17
|
+
import VCard from './VCard/VCard.vue';
|
|
18
|
+
import VCardBody from './VCard/VCardBody.vue';
|
|
19
|
+
import VCardFooter from './VCard/VCardFooter.vue';
|
|
20
|
+
import VCardHeader from './VCard/VCardHeader.vue';
|
|
21
|
+
import VCodeBlock from './VCodeBlock.vue';
|
|
22
22
|
export { VAccordion, VAccordionItem, VAlert, VCard, VCardBody, VCardFooter, VCardHeader, VCodeBlock, VDrawer, VListbox, VListboxButton, VListboxItem, VListboxItems, VListboxLabel, VPreview, VRail, VRailTile, VShell, VTab, VTabPanel, VTabs, };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import vClipboard from
|
|
1
|
+
import vClipboard from './clipboard';
|
|
2
2
|
export { vClipboard };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare function install(app: any): void;
|
|
2
|
-
import
|
|
3
|
-
import
|
|
2
|
+
import './assets/main.css';
|
|
3
|
+
import './styles/tailwind.css';
|
|
4
4
|
declare const _default: {
|
|
5
5
|
install: typeof install;
|
|
6
6
|
};
|
|
7
7
|
export default _default;
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
8
|
+
export * from './components';
|
|
9
|
+
export * from './utils';
|
|
10
|
+
export * from './directives';
|
|
11
|
+
export * from './services';
|
|
12
12
|
export declare type CssClasses = string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { useDarkMode } from
|
|
2
|
-
import { useDrawer } from
|
|
3
|
-
import { useHighlight } from
|
|
4
|
-
import { useRail } from
|
|
5
|
-
import { useSettings, VuetifulSettings } from
|
|
1
|
+
import { useDarkMode } from './dark-mode.service';
|
|
2
|
+
import { useDrawer } from './drawer.service';
|
|
3
|
+
import { useHighlight } from './highlight.service';
|
|
4
|
+
import { useRail } from './rail.service';
|
|
5
|
+
import { useSettings, VuetifulSettings } from './settings.service';
|
|
6
6
|
export { useDarkMode, useDrawer, useHighlight, useRail, useSettings };
|
|
7
7
|
export type { VuetifulSettings };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import ThemeSwitcher from
|
|
2
|
-
import { useTheme } from
|
|
1
|
+
import ThemeSwitcher from './theme/theme-switcher.vue';
|
|
2
|
+
import { useTheme } from './theme/theme.service';
|
|
3
3
|
export { ThemeSwitcher, useTheme };
|
|
@@ -1,109 +1,69 @@
|
|
|
1
|
-
import { CssClasses } from
|
|
1
|
+
import { CssClasses } from '@/index';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
|
|
3
|
+
background: {
|
|
4
4
|
type: () => CssClasses;
|
|
5
5
|
default: string;
|
|
6
6
|
};
|
|
7
|
-
|
|
7
|
+
text: {
|
|
8
8
|
type: () => CssClasses;
|
|
9
9
|
default: string;
|
|
10
10
|
};
|
|
11
|
-
|
|
11
|
+
widthPopup: {
|
|
12
12
|
type: () => CssClasses;
|
|
13
13
|
default: string;
|
|
14
14
|
};
|
|
15
|
-
|
|
15
|
+
heightList: {
|
|
16
16
|
type: () => CssClasses;
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
19
|
-
|
|
19
|
+
classButton: {
|
|
20
20
|
type: () => CssClasses;
|
|
21
21
|
default: string;
|
|
22
22
|
};
|
|
23
|
-
|
|
23
|
+
classList: {
|
|
24
24
|
type: () => CssClasses;
|
|
25
25
|
default: string;
|
|
26
26
|
};
|
|
27
|
-
|
|
27
|
+
classListItem: {
|
|
28
28
|
type: () => CssClasses;
|
|
29
29
|
default: string;
|
|
30
30
|
};
|
|
31
|
-
|
|
31
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
|
+
background: {
|
|
32
33
|
type: () => CssClasses;
|
|
33
34
|
default: string;
|
|
34
35
|
};
|
|
35
|
-
|
|
36
|
+
text: {
|
|
36
37
|
type: () => CssClasses;
|
|
37
38
|
default: string;
|
|
38
39
|
};
|
|
39
|
-
|
|
40
|
+
widthPopup: {
|
|
40
41
|
type: () => CssClasses;
|
|
41
42
|
default: string;
|
|
42
43
|
};
|
|
43
|
-
|
|
44
|
-
onKeyDown: (event: KeyboardEvent) => void;
|
|
45
|
-
loadTheme: (themeName: string, callback?: Function | undefined) => void;
|
|
46
|
-
currentMode: Readonly<import("vue").Ref<boolean>>;
|
|
47
|
-
classes: import("vue").ComputedRef<string>;
|
|
48
|
-
chosenTheme: Readonly<import("vue").Ref<string>>;
|
|
49
|
-
themes: Readonly<import("vue").Ref<readonly {
|
|
50
|
-
readonly name: string;
|
|
51
|
-
readonly url: string;
|
|
52
|
-
}[]>>;
|
|
53
|
-
showPopup: import("vue").Ref<boolean>;
|
|
54
|
-
listClasses: import("vue").ComputedRef<string>;
|
|
55
|
-
listItemClasses: import("vue").ComputedRef<string>;
|
|
56
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
57
|
-
bgLight: {
|
|
44
|
+
heightList: {
|
|
58
45
|
type: () => CssClasses;
|
|
59
46
|
default: string;
|
|
60
47
|
};
|
|
61
|
-
|
|
48
|
+
classButton: {
|
|
62
49
|
type: () => CssClasses;
|
|
63
50
|
default: string;
|
|
64
51
|
};
|
|
65
|
-
|
|
52
|
+
classList: {
|
|
66
53
|
type: () => CssClasses;
|
|
67
54
|
default: string;
|
|
68
55
|
};
|
|
69
|
-
|
|
70
|
-
type: () => CssClasses;
|
|
71
|
-
default: string;
|
|
72
|
-
};
|
|
73
|
-
width: {
|
|
74
|
-
type: () => CssClasses;
|
|
75
|
-
default: string;
|
|
76
|
-
};
|
|
77
|
-
height: {
|
|
78
|
-
type: () => CssClasses;
|
|
79
|
-
default: string;
|
|
80
|
-
};
|
|
81
|
-
ring: {
|
|
82
|
-
type: () => CssClasses;
|
|
83
|
-
default: string;
|
|
84
|
-
};
|
|
85
|
-
rounded: {
|
|
86
|
-
type: () => CssClasses;
|
|
87
|
-
default: string;
|
|
88
|
-
};
|
|
89
|
-
roundedContainer: {
|
|
90
|
-
type: () => CssClasses;
|
|
91
|
-
default: string;
|
|
92
|
-
};
|
|
93
|
-
buttonClasses: {
|
|
56
|
+
classListItem: {
|
|
94
57
|
type: () => CssClasses;
|
|
95
58
|
default: string;
|
|
96
59
|
};
|
|
97
60
|
}>>, {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
textOnDark: string;
|
|
106
|
-
roundedContainer: string;
|
|
107
|
-
buttonClasses: string;
|
|
61
|
+
background: string;
|
|
62
|
+
text: string;
|
|
63
|
+
classButton: string;
|
|
64
|
+
widthPopup: string;
|
|
65
|
+
heightList: string;
|
|
66
|
+
classList: string;
|
|
67
|
+
classListItem: string;
|
|
108
68
|
}>;
|
|
109
69
|
export default _default;
|