lorgg-v2-components 0.0.157 → 0.0.159
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/CardItem/CardItem.vue.d.ts +0 -17
- package/dist/components/library/CardItem/types.d.ts +0 -9
- package/dist/components/library/CardItemLinkWrapper/CardItemLinkWrapper.vue.d.ts +0 -17
- package/dist/components/library/CardItemLinkWrapper/types.d.ts +0 -7
- package/dist/components/main.d.ts +1 -1
- package/dist/lorgg-components.cjs.js +32 -32
- package/dist/lorgg-components.css +1 -1
- package/dist/lorgg-components.es.js +1488 -1493
- package/dist/lorgg-components.umd.js +33 -33
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export { setupi18n } from './setup/i18n';
|
|
|
5
5
|
export { importIcons } from './setup/icons';
|
|
6
6
|
export { useCardJsonObjectStore } from './setup/stores/cardJsonObject';
|
|
7
7
|
export { useDataJsonStore } from './setup/stores/dataJson';
|
|
8
|
+
export { useAcquiredCardsStore } from './setup/stores/acquiredCards';
|
|
8
9
|
export { useCardJsonStore } from './setup/stores/cardJson';
|
|
9
10
|
export { useUserStore } from './setup/stores/user';
|
|
10
11
|
export { useCallbacksStore } from './setup/stores/callbacks';
|
|
@@ -31,13 +31,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
31
31
|
required: boolean;
|
|
32
32
|
default: boolean;
|
|
33
33
|
};
|
|
34
|
-
userCardQuantity: {
|
|
35
|
-
type: import("vue").PropType<{
|
|
36
|
-
[key: string]: number;
|
|
37
|
-
}>;
|
|
38
|
-
required: boolean;
|
|
39
|
-
default: undefined;
|
|
40
|
-
};
|
|
41
34
|
showTippyLocation: {
|
|
42
35
|
type: import("vue").PropType<import("./types").ShowTippyLocation>;
|
|
43
36
|
required: boolean;
|
|
@@ -75,13 +68,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
75
68
|
required: boolean;
|
|
76
69
|
default: boolean;
|
|
77
70
|
};
|
|
78
|
-
userCardQuantity: {
|
|
79
|
-
type: import("vue").PropType<{
|
|
80
|
-
[key: string]: number;
|
|
81
|
-
}>;
|
|
82
|
-
required: boolean;
|
|
83
|
-
default: undefined;
|
|
84
|
-
};
|
|
85
71
|
showTippyLocation: {
|
|
86
72
|
type: import("vue").PropType<import("./types").ShowTippyLocation>;
|
|
87
73
|
required: boolean;
|
|
@@ -96,9 +82,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
96
82
|
[key: string]: number;
|
|
97
83
|
};
|
|
98
84
|
isDeckBuilder: boolean;
|
|
99
|
-
userCardQuantity: {
|
|
100
|
-
[key: string]: number;
|
|
101
|
-
};
|
|
102
85
|
showTippyLocation: import("./types").ShowTippyLocation;
|
|
103
86
|
}, {}>;
|
|
104
87
|
export default _sfc_main;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ObjectWithNumber } from '../../types/helpers';
|
|
2
1
|
import { Deck, CardJsonCard } from '../../types/jsons';
|
|
3
2
|
import { PropType } from 'vue';
|
|
4
3
|
export type ShowTippyLocation = 'left-start' | 'right-start' | null;
|
|
@@ -10,7 +9,6 @@ export type CardItemProps = {
|
|
|
10
9
|
isRoot: boolean;
|
|
11
10
|
quantityNeeded?: number;
|
|
12
11
|
showTippyLocation?: ShowTippyLocation;
|
|
13
|
-
userCardQuantity?: ObjectWithNumber;
|
|
14
12
|
};
|
|
15
13
|
export declare const cardItemProps: {
|
|
16
14
|
cardProp: {
|
|
@@ -44,13 +42,6 @@ export declare const cardItemProps: {
|
|
|
44
42
|
required: boolean;
|
|
45
43
|
default: boolean;
|
|
46
44
|
};
|
|
47
|
-
userCardQuantity: {
|
|
48
|
-
type: PropType<{
|
|
49
|
-
[key: string]: number;
|
|
50
|
-
}>;
|
|
51
|
-
required: boolean;
|
|
52
|
-
default: undefined;
|
|
53
|
-
};
|
|
54
45
|
showTippyLocation: {
|
|
55
46
|
type: PropType<ShowTippyLocation>;
|
|
56
47
|
required: boolean;
|
|
@@ -37,13 +37,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
37
|
required: boolean;
|
|
38
38
|
default: boolean;
|
|
39
39
|
};
|
|
40
|
-
userCardQuantity: {
|
|
41
|
-
type: import("vue").PropType<{
|
|
42
|
-
[key: string]: number;
|
|
43
|
-
}>;
|
|
44
|
-
required: boolean;
|
|
45
|
-
default: undefined;
|
|
46
|
-
};
|
|
47
40
|
showTippyLocation: {
|
|
48
41
|
type: import("vue").PropType<import("../CardItem/types").ShowTippyLocation>;
|
|
49
42
|
required: boolean;
|
|
@@ -88,13 +81,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
88
81
|
required: boolean;
|
|
89
82
|
default: boolean;
|
|
90
83
|
};
|
|
91
|
-
userCardQuantity: {
|
|
92
|
-
type: import("vue").PropType<{
|
|
93
|
-
[key: string]: number;
|
|
94
|
-
}>;
|
|
95
|
-
required: boolean;
|
|
96
|
-
default: undefined;
|
|
97
|
-
};
|
|
98
84
|
showTippyLocation: {
|
|
99
85
|
type: import("vue").PropType<import("../CardItem/types").ShowTippyLocation>;
|
|
100
86
|
required: boolean;
|
|
@@ -110,9 +96,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
110
96
|
[key: string]: number;
|
|
111
97
|
};
|
|
112
98
|
isDeckBuilder: boolean;
|
|
113
|
-
userCardQuantity: {
|
|
114
|
-
[key: string]: number;
|
|
115
|
-
};
|
|
116
99
|
showTippyLocation: import("../CardItem/types").ShowTippyLocation;
|
|
117
100
|
}, {}>;
|
|
118
101
|
export default _sfc_main;
|
|
@@ -43,13 +43,6 @@ export declare const cardItemLinkWrapperProps: {
|
|
|
43
43
|
required: boolean;
|
|
44
44
|
default: boolean;
|
|
45
45
|
};
|
|
46
|
-
userCardQuantity: {
|
|
47
|
-
type: PropType<{
|
|
48
|
-
[key: string]: number;
|
|
49
|
-
}>;
|
|
50
|
-
required: boolean;
|
|
51
|
-
default: undefined;
|
|
52
|
-
};
|
|
53
46
|
showTippyLocation: {
|
|
54
47
|
type: PropType<import('../CardItem/types').ShowTippyLocation>;
|
|
55
48
|
required: boolean;
|
|
@@ -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, SpellIcon, StandardIcon, StatisticsPaneContainer, TestComponent, TippyText, ToggleSwitch, ToastContainer, UpdateDeckPrivacyButton, UploadDeckToLorButton, WinrateDoughnutChart, WinsLossesBarChart, WinsLossesLine, ZoomSlider, SimpleDoughnutChart, RegionDistributionChart, Spinner, DeckButtonsDropdown, setupi18n, useCardJsonObjectStore, useCardJsonStore, useDataJsonStore, useUserStore, useCallbacksStore, useToastsStore, importIcons, DeckBuilderSidePanel, getDeckObjectFromCode, setDescription, setTitle, getCardsFromDeck, getMostImportantCards, getDate, keyDayjs, regionOfCard, getRegionNameOfRegionRef, CardImageType } 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, SpellIcon, StandardIcon, StatisticsPaneContainer, TestComponent, TippyText, ToggleSwitch, ToastContainer, UpdateDeckPrivacyButton, UploadDeckToLorButton, WinrateDoughnutChart, WinsLossesBarChart, WinsLossesLine, ZoomSlider, SimpleDoughnutChart, RegionDistributionChart, Spinner, DeckButtonsDropdown, setupi18n, useCardJsonObjectStore, useCardJsonStore, useDataJsonStore, useUserStore, useCallbacksStore, useToastsStore, useAcquiredCardsStore, importIcons, DeckBuilderSidePanel, getDeckObjectFromCode, setDescription, setTitle, getCardsFromDeck, getMostImportantCards, getDate, keyDayjs, regionOfCard, getRegionNameOfRegionRef, CardImageType } from '../components';
|