lorgg-v2-components 0.0.124 → 0.0.125
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/index.d.ts +1 -0
- package/dist/components/library/DeckButtonsDropdown/DeckButtonsDropdown.vue.d.ts +115 -0
- package/dist/components/library/DeckButtonsDropdown/DeckButtonsDropdown.vue.d.ts.map +1 -0
- package/dist/components/main.d.ts +1 -1
- package/dist/lorgg-components.cjs.js +37 -37
- package/dist/lorgg-components.css +1 -1
- package/dist/lorgg-components.es.js +3971 -3937
- package/dist/lorgg-components.umd.js +38 -38
- package/package.json +1 -1
|
@@ -140,4 +140,5 @@ export { default as ProfileArchetypeRow } from './library/ProfileArchetypeRow/Pr
|
|
|
140
140
|
export { default as DeckBuilderSidePanel } from './library/DeckBuilderSidePanel/DeckBuilderSidePanel.vue';
|
|
141
141
|
export { default as RegionDistributionChart } from './library/Charts/RegionDistributionChart/RegionDistributionChart.vue';
|
|
142
142
|
export { default as Spinner } from './library/icons/Spinner/Spinner.vue';
|
|
143
|
+
export { default as DeckButtonsDropdown } from './library/DeckButtonsDropdown/DeckButtonsDropdown.vue';
|
|
143
144
|
export { default as SimpleDoughnutChart } from './library/Charts/SimpleDoughnutChart/SimpleDoughnutChart.vue';
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
isPrivate: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: boolean;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
showUploaded: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
required: boolean;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
deckBuilderRouterLink: {
|
|
13
|
+
type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
|
|
14
|
+
required: boolean;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
archetypeRouterLink: {
|
|
18
|
+
type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
|
|
19
|
+
required: boolean;
|
|
20
|
+
default: undefined;
|
|
21
|
+
};
|
|
22
|
+
deckName: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
required: boolean;
|
|
25
|
+
default: undefined;
|
|
26
|
+
};
|
|
27
|
+
deckCode: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: boolean;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
deckId: {
|
|
33
|
+
type: NumberConstructor;
|
|
34
|
+
required: boolean;
|
|
35
|
+
default: undefined;
|
|
36
|
+
};
|
|
37
|
+
showButtons: {
|
|
38
|
+
type: import("vue").PropType<import('../DeckButtons/types').ShowDeckButtons>;
|
|
39
|
+
required: boolean;
|
|
40
|
+
default: {
|
|
41
|
+
deleteDeck: boolean;
|
|
42
|
+
updateDeckPrivacy: boolean;
|
|
43
|
+
editDeckName: boolean;
|
|
44
|
+
gemsCost: boolean;
|
|
45
|
+
openArchetypePage: boolean;
|
|
46
|
+
simulateMulligan: boolean;
|
|
47
|
+
openInDeckBuilder: boolean;
|
|
48
|
+
copyDeckCode: boolean;
|
|
49
|
+
uploadDeckToLor: boolean;
|
|
50
|
+
shareDeck: boolean;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
|
+
isPrivate: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
required: boolean;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
showUploaded: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
required: boolean;
|
|
62
|
+
default: boolean;
|
|
63
|
+
};
|
|
64
|
+
deckBuilderRouterLink: {
|
|
65
|
+
type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
|
|
66
|
+
required: boolean;
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
69
|
+
archetypeRouterLink: {
|
|
70
|
+
type: import("vue").PropType<import("vue-router").RouteLocationRaw>;
|
|
71
|
+
required: boolean;
|
|
72
|
+
default: undefined;
|
|
73
|
+
};
|
|
74
|
+
deckName: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
required: boolean;
|
|
77
|
+
default: undefined;
|
|
78
|
+
};
|
|
79
|
+
deckCode: {
|
|
80
|
+
type: StringConstructor;
|
|
81
|
+
required: boolean;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
deckId: {
|
|
85
|
+
type: NumberConstructor;
|
|
86
|
+
required: boolean;
|
|
87
|
+
default: undefined;
|
|
88
|
+
};
|
|
89
|
+
showButtons: {
|
|
90
|
+
type: import("vue").PropType<import('../DeckButtons/types').ShowDeckButtons>;
|
|
91
|
+
required: boolean;
|
|
92
|
+
default: {
|
|
93
|
+
deleteDeck: boolean;
|
|
94
|
+
updateDeckPrivacy: boolean;
|
|
95
|
+
editDeckName: boolean;
|
|
96
|
+
gemsCost: boolean;
|
|
97
|
+
openArchetypePage: boolean;
|
|
98
|
+
simulateMulligan: boolean;
|
|
99
|
+
openInDeckBuilder: boolean;
|
|
100
|
+
copyDeckCode: boolean;
|
|
101
|
+
uploadDeckToLor: boolean;
|
|
102
|
+
shareDeck: boolean;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
}>>, {
|
|
106
|
+
deckCode: string;
|
|
107
|
+
showUploaded: boolean;
|
|
108
|
+
deckId: number;
|
|
109
|
+
archetypeRouterLink: import("vue-router").RouteLocationRaw;
|
|
110
|
+
deckBuilderRouterLink: import("vue-router").RouteLocationRaw;
|
|
111
|
+
isPrivate: boolean;
|
|
112
|
+
deckName: string;
|
|
113
|
+
showButtons: import('../DeckButtons/types').ShowDeckButtons;
|
|
114
|
+
}, {}>;
|
|
115
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DeckButtonsDropdown.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/library/DeckButtonsDropdown/DeckButtonsDropdown.vue"],"names":[],"mappings":"AACA,cAAc,gKAAgK,CAAC;AAC/K,OAAO,6KAA6K,CAAC;;AAErL,wBAA0F"}
|
|
@@ -3,4 +3,4 @@ declare const _default: {
|
|
|
3
3
|
install: (app: App) => Promise<void>;
|
|
4
4
|
};
|
|
5
5
|
export default _default;
|
|
6
|
-
export { AdvancedFilterItem, ArchetypeSidePanel, ArchetypeSidePanelHighlight, ArchetypesRow, ArchetypesTable, BuiltDecksTable, CardCarousel, CardItem, CardItem3d, CardItemLinkWrapper, CardLottery, CardMultiselect, CardOverview, CardQuantityBarChart, CardSimilarCards, CardSliceItem, CardTogglePage, CardsRow, CardsTable, ChampionIcon, CheckboxItem, CheckboxItemManaCost, CircleCardItem, ColorPicker, CopyDeckButton, DashboardCardRow, DashboardCardTable, DashboardLeaderboardRow, DashboardLeaderboardTable, DashboardNewCards, DashboardProfile, DashboardSignUp, DeckBlock, DeckBuilderSummary, DeckBuilderSummaryType, DeckButtons, DeckDifferenceItem, DeckDifferences, DeckHighlight, DeckHighlightCards, DeckHighlightEye, DeckHighlightRegions, DeckIcon, DeckPreview, DeckSidePanel, DeckSummary, DecksRow, DecksTable, DeleteDeckButton, EditDeckNameButton, EquipmentIcon, EternalIcon, FilterAdvanced, FilterCardCodes, FilterCards, FilterDecks, FilterProfile, FilterText, FilterKeywords, FilterManaCost, FilterRanks, FilterRarities, FilterRegions, FilterSampleSize, FilterServers, FilterSets, FilterTime, FilterTypes, FollowerIcon, GauntletIcon, GemsCost, InfoDoughnutChart, InfoIcon, LandmarkIcon, LanguageSelection, LargeTable, LeaderboardChart, LeaderboardDetailRow, LeaderboardDetailTable, LeaderboardOptions, LeaderboardTop, LeaderboardTop10Region, LineChart, LogoIcon, ManaCurveChart, ManaHexagonIcon, MatchItem, ModalItem, NavigationSide, NavigationTop, NavigationTopDesktop, NavigationTopMobile, OpenArchetypePageButton, OpenInDeckBuilderButton, ProfileArchetypeRow, ProfileArchetypeTable, ProfileDropdown, ProfileGameTypeWinrate, ProfileRegionRow, ProfileRegionTable, RegionItem, RegionsLine, RevealCarousel, RevealDayOption, RevealDayOptions, RoundCardInfoBarChart, RuneterraIcon, SearchBar, ShardsIcon, ShareButton, SidePanelSectionPane, SimilarDecksTable, SimulateMulligan, SimulateMulliganButton, SmallTable, SocialLinks, SocialMediaLinks, SpellIcon, StandardIcon, StatisticsPaneContainer, TestComponent, TippyText, ToggleSwitch, UpdateDeckPrivacyButton, UploadDeckToLorButton, WinrateDoughnutChart, WinsLossesBarChart, WinsLossesLine, ZoomSlider, SimpleDoughnutChart, RegionDistributionChart, Spinner, setupi18n, useCardJsonObjectStore, useCardJsonStore, useDataJsonStore, useUserStore, useCallbacksStore, importIcons, DeckBuilderSidePanel, getDeckObjectFromCode, setDescription, setTitle, getCardsFromDeck, getMostImportantCards, getDate, keyDayjs, regionOfCard, getRegionNameOfRegionRef } from '../components';
|
|
6
|
+
export { AdvancedFilterItem, ArchetypeSidePanel, ArchetypeSidePanelHighlight, ArchetypesRow, ArchetypesTable, BuiltDecksTable, CardCarousel, CardItem, CardItem3d, CardItemLinkWrapper, CardLottery, CardMultiselect, CardOverview, CardQuantityBarChart, CardSimilarCards, CardSliceItem, CardTogglePage, CardsRow, CardsTable, ChampionIcon, CheckboxItem, CheckboxItemManaCost, CircleCardItem, ColorPicker, CopyDeckButton, DashboardCardRow, DashboardCardTable, DashboardLeaderboardRow, DashboardLeaderboardTable, DashboardNewCards, DashboardProfile, DashboardSignUp, DeckBlock, DeckBuilderSummary, DeckBuilderSummaryType, DeckButtons, DeckDifferenceItem, DeckDifferences, DeckHighlight, DeckHighlightCards, DeckHighlightEye, DeckHighlightRegions, DeckIcon, DeckPreview, DeckSidePanel, DeckSummary, DecksRow, DecksTable, DeleteDeckButton, EditDeckNameButton, EquipmentIcon, EternalIcon, FilterAdvanced, FilterCardCodes, FilterCards, FilterDecks, FilterProfile, FilterText, FilterKeywords, FilterManaCost, FilterRanks, FilterRarities, FilterRegions, FilterSampleSize, FilterServers, FilterSets, FilterTime, FilterTypes, FollowerIcon, GauntletIcon, GemsCost, InfoDoughnutChart, InfoIcon, LandmarkIcon, LanguageSelection, LargeTable, LeaderboardChart, LeaderboardDetailRow, LeaderboardDetailTable, LeaderboardOptions, LeaderboardTop, LeaderboardTop10Region, LineChart, LogoIcon, ManaCurveChart, ManaHexagonIcon, MatchItem, ModalItem, NavigationSide, NavigationTop, NavigationTopDesktop, NavigationTopMobile, OpenArchetypePageButton, OpenInDeckBuilderButton, ProfileArchetypeRow, ProfileArchetypeTable, ProfileDropdown, ProfileGameTypeWinrate, ProfileRegionRow, ProfileRegionTable, RegionItem, RegionsLine, RevealCarousel, RevealDayOption, RevealDayOptions, RoundCardInfoBarChart, RuneterraIcon, SearchBar, ShardsIcon, ShareButton, SidePanelSectionPane, SimilarDecksTable, SimulateMulligan, SimulateMulliganButton, SmallTable, SocialLinks, SocialMediaLinks, SpellIcon, StandardIcon, StatisticsPaneContainer, TestComponent, TippyText, ToggleSwitch, UpdateDeckPrivacyButton, UploadDeckToLorButton, WinrateDoughnutChart, WinsLossesBarChart, WinsLossesLine, ZoomSlider, SimpleDoughnutChart, RegionDistributionChart, Spinner, DeckButtonsDropdown, setupi18n, useCardJsonObjectStore, useCardJsonStore, useDataJsonStore, useUserStore, useCallbacksStore, importIcons, DeckBuilderSidePanel, getDeckObjectFromCode, setDescription, setTitle, getCardsFromDeck, getMostImportantCards, getDate, keyDayjs, regionOfCard, getRegionNameOfRegionRef } from '../components';
|