From bf53af8364efa19fda61da90cf4058f0eddf5b12 Mon Sep 17 00:00:00 2001 From: soxepo Date: Wed, 2 Oct 2019 01:03:42 +0300 Subject: [PATCH 1/7] try to run --- clients/web/ui/plugins/components.js | 4 ++-- tools/styleguide/package.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/clients/web/ui/plugins/components.js b/clients/web/ui/plugins/components.js index 48b14546c..1027ffe0e 100644 --- a/clients/web/ui/plugins/components.js +++ b/clients/web/ui/plugins/components.js @@ -7,7 +7,7 @@ import { Block, Toggle, Checkbox, - InfiniteContent, + // InfiniteContent, Icon, Input, InputSearcher, @@ -30,7 +30,7 @@ Vue.component('Toggle', Toggle) Vue.component('Checkbox', Checkbox) Vue.component('JsonView', JsonView) Vue.component('ArrayView', ArrayView) -Vue.component('InfiniteContent', InfiniteContent) +// Vue.component('InfiniteContent', InfiniteContent) Vue.component('Icon', Icon) Vue.component('Input', Input) Vue.component('InputSearcher', InputSearcher) diff --git a/tools/styleguide/package.json b/tools/styleguide/package.json index 834031b21..a318cad85 100644 --- a/tools/styleguide/package.json +++ b/tools/styleguide/package.json @@ -47,5 +47,6 @@ }, "gitHead": "8b0cc820fab428ce26626f6720dbd6450114a734", "dependencies": { + "vue-awesome-swiper": "^3.1.3" } } From 71cc2a80dda97ffad977aaf742302f47ffd01df2 Mon Sep 17 00:00:00 2001 From: soxepo Date: Sun, 6 Oct 2019 23:20:06 +0300 Subject: [PATCH 2/7] fix --- tools/styleguide/stories/components-data.js | 6 ++- tools/styleguide/stories/index.stories.js | 44 ++++++++++----------- 2 files changed, 26 insertions(+), 24 deletions(-) diff --git a/tools/styleguide/stories/components-data.js b/tools/styleguide/stories/components-data.js index a3f038e81..e9f3aaa22 100644 --- a/tools/styleguide/stories/components-data.js +++ b/tools/styleguide/stories/components-data.js @@ -360,7 +360,7 @@ export const SendingFunds = {
- + - +
` } + + export const ImagesExplorer = { images: [ "https://steamcdn-a.akamaihd.net/steam/apps/377160/ss_f7861bd71e6c0c218d8ff69fb1c626aec0d187cf.1920x1080.jpg?t=1533676954", diff --git a/tools/styleguide/stories/index.stories.js b/tools/styleguide/stories/index.stories.js index 142ff2ff2..66ef7718b 100644 --- a/tools/styleguide/stories/index.stories.js +++ b/tools/styleguide/stories/index.stories.js @@ -2822,26 +2822,26 @@ storiesOf('Project Card', module) ` })) -storiesOf('Sending Funds(not finished)', module) - .add('default', () => ({ - components: { - SendingFundsPopup: () => - import ('@ericmuyser/hyper-ui').then(m => m.SendingFundsPopup), - Button: () => - import ('@ericmuyser/hyper-ui').then(m => m.Button) - }, - data() { - return { - modalActive: false - } - }, - methods: { - showModalHandler: function() { - this.modalActive = !this.modalActive - } - }, - template: data.SendingFunds.template - })) +// storiesOf('Sending Funds(not finished)', module) +// .add('default', () => ({ +// components: { +// SendingFundsPopup: () => +// import ('@ericmuyser/hyper-ui').then(m => m.SendingFundsPopup), +// Button: () => +// import ('@ericmuyser/hyper-ui').then(m => m.Button) +// }, +// data() { +// return { +// modalActive: false +// } +// }, +// methods: { +// showModalHandler: function() { +// this.modalActive = !this.modalActive +// } +// }, +// template: data.SendingFunds.template +// })) storiesOf('User Card', module) .add('default', () => ({ @@ -2967,7 +2967,7 @@ storiesOf('Product Card', module) .add('basic', () => ({ components: { ProductCard: () => - import ('@ericmuyser/hyper-ui').then(m => m.PromotionBoxItem) + import ('@ericmuyser/hyper-ui').then(m => m.ProductCard) }, data: () => ({ products: productsCardsData @@ -2989,7 +2989,7 @@ storiesOf('Product Card', module) .add('dynamic', () => ({ components: { ProductCardDynamic: () => - import ('@ericmuyser/hyper-ui').then(m => m.PromotionBoxItem) + import ('@ericmuyser/hyper-ui').then(m => m.ProductCardDynamic) }, data: () => ({ products: productsCardsData From 198b482c8eb6209dba08426ae9db92dd1f06cd19 Mon Sep 17 00:00:00 2001 From: soxepo Date: Mon, 7 Oct 2019 17:55:48 +0300 Subject: [PATCH 3/7] fix components --- tools/styleguide/stories/index.stories.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tools/styleguide/stories/index.stories.js b/tools/styleguide/stories/index.stories.js index 66ef7718b..91555d42c 100644 --- a/tools/styleguide/stories/index.stories.js +++ b/tools/styleguide/stories/index.stories.js @@ -2687,7 +2687,9 @@ storiesOf('Product Community', module) .add('post', () => ({ components: { ProductCommunityPost: () => - import ('@ericmuyser/hyper-ui').then(m => m.ProductCommunityPost) + import ('@ericmuyser/hyper-ui').then(m => m.ProductCommunityPost), + Img: () => + import ('@ericmuyser/hyper-ui').then(m => m.Img) }, data: () => data.ProductCommunity, template: ` @@ -2880,7 +2882,7 @@ storiesOf('Gallery', module) .add('screen-gallery', () => ({ components: { ScreenGallery: () => - import ('@ericmuyser/hyper-ui').then(m => m.PromotionBoxItem) + import ('@ericmuyser/hyper-ui').then(m => m.ScreenGallery) }, data() { return { From b17b09d1d9cc474a2ca8882fde3e7b1ba7eba88c Mon Sep 17 00:00:00 2001 From: soxepo Date: Sun, 13 Oct 2019 17:56:57 +0300 Subject: [PATCH 4/7] fix components(Product Review) --- tools/styleguide/stories/index.stories.js | 35 ++++++++++++----------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/tools/styleguide/stories/index.stories.js b/tools/styleguide/stories/index.stories.js index 91555d42c..157d12ce9 100644 --- a/tools/styleguide/stories/index.stories.js +++ b/tools/styleguide/stories/index.stories.js @@ -3061,7 +3061,7 @@ storiesOf('Curators Reviews', module) .add('review', () => ({ components: { CuratorReview: () => - import ('@ericmuyser/hyper-ui').then(m => m.PromotionBoxItem) + import ('@ericmuyser/hyper-ui').then(m => m.CuratorReview) }, data: () => ({ review: curatorReview @@ -3092,14 +3092,14 @@ storiesOf('Images Explorer', module) components: { ImagesExplorer: () => import ('@ericmuyser/hyper-ui').then(m => m.ImagesExplorer), - ModalList: () => - import ('@ericmuyser/hyper-ui').then(m => m.ModalList) + Modal: () => + import ('@ericmuyser/hyper-ui').then(m => m.Modal) }, data: () => object('Data', data.ImagesExplorer), template: ` - + - + ` })) @@ -3201,7 +3201,8 @@ storiesOf('Game Series', module) tags: ['Nunc', 'Praesent', 'Vestibulum'], images: ['https://via.placeholder.com/400x250', 'https://via.placeholder.com/400x250'], price: 33.49, - list: [{ + list: [ + { title: 'Dragon Age: Inquisition', company: 'BioWare', stars: 5, @@ -3498,7 +3499,9 @@ storiesOf('Progress Bar', module) .add('fancy', () => ({ components: { ProgressBarFancy: () => - import ('@ericmuyser/hyper-ui').then(m => m.ProgressBarFancy) + import ('@ericmuyser/hyper-ui').then(m => m.ProgressBarFancy), + Input: () => + import ('@ericmuyser/hyper-ui').then(m => m.Input), }, data() { return { @@ -3582,8 +3585,8 @@ storiesOf('Community Spotlight', module) storiesOf('Product Review', module) .add('default', () => ({ components: { - Review: () => - import ('@ericmuyser/hyper-ui').then(m => m.Review) + ProductReview: () => + import ('@ericmuyser/hyper-ui').then(m => m.ProductReview) }, data() { return { @@ -3609,23 +3612,23 @@ storiesOf('Product Review', module) }, template: `
- +
` })) .add('form', () => ({ components: { - ReviewForm: () => - import ('@ericmuyser/hyper-ui').then(m => m.ReviewForm) + ProductReviewForm: () => + import ('@ericmuyser/hyper-ui').then(m => m.ProductReviewForm) }, - template: `
` + template: `
` })) .add('view review', () => ({ components: { - ViewReview: () => - import ('@ericmuyser/hyper-ui').then(m => m.ViewReview), + ProductViewReview: () => + import ('@ericmuyser/hyper-ui').then(m => m.ProductViewReview), }, - template: `
` + template: `
` })) storiesOf('Banner', module) From da7a443cce2f941411b2af9847bfd7ea71242dd5 Mon Sep 17 00:00:00 2001 From: soxepo Date: Sat, 26 Oct 2019 15:54:17 +0300 Subject: [PATCH 5/7] fix components(Timeline) --- tools/styleguide/stories/index.stories.js | 56 +---------------------- 1 file changed, 1 insertion(+), 55 deletions(-) diff --git a/tools/styleguide/stories/index.stories.js b/tools/styleguide/stories/index.stories.js index 157d12ce9..2879ad315 100644 --- a/tools/styleguide/stories/index.stories.js +++ b/tools/styleguide/stories/index.stories.js @@ -3660,60 +3660,6 @@ storiesOf('Banner', module) } }, template: `
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
` })) @@ -3881,7 +3827,7 @@ storiesOf('Timeline', module) }, template: `
- +
` From bbf2ca2882c6e82a16c2d77f0862d7714b68c184 Mon Sep 17 00:00:00 2001 From: soxepo Date: Sun, 27 Oct 2019 16:46:09 +0200 Subject: [PATCH 6/7] fix components(Guide) --- tools/styleguide/stories/index.stories.js | 531 +--------------------- 1 file changed, 12 insertions(+), 519 deletions(-) diff --git a/tools/styleguide/stories/index.stories.js b/tools/styleguide/stories/index.stories.js index 2879ad315..0adbf738e 100644 --- a/tools/styleguide/stories/index.stories.js +++ b/tools/styleguide/stories/index.stories.js @@ -3827,7 +3827,7 @@ storiesOf('Timeline', module) }, template: `
- +
` @@ -4338,8 +4338,8 @@ storiesOf('List', module) storiesOf('Game Installer Modal', module) .add('default', () => ({ components: { - GameInstaller: () => - import ('@ericmuyser/hyper-ui').then(m => m.GameInstaller) + GameInstallerModal: () => + import ('@ericmuyser/hyper-ui').then(m => m.GameInstallerModal) }, data() { return { @@ -4369,7 +4369,7 @@ storiesOf('Game Installer Modal', module) template: `
- +
` @@ -4402,509 +4402,17 @@ storiesOf('Emoji', module) EmojiSingle: () => import ('@ericmuyser/hyper-ui').then(m => m.EmojiSingle) }, - template: ` -
- -
` - })) - -storiesOf('Landing Page', module) - .add('block title', () => ({ - components: { - LandingBlockTitle: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBlockTitle) - }, - template: ` -
- - Mutation Mode - -
- ` - })) - .add('block title with shadow', () => ({ - components: { - LandingBlockTitleShadow: () => - import ('@ericmuyser/hyper-ui').then(m => m.shadow) - }, - template: ` -
- - Mutation Mode - -
- ` - })) - .add('block title with gradient', () => ({ - components: { - LandingBlockTitleGradient: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBlockTitleGradient), - LandingBlockTitle: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBlockTitle), - LandingBlockTitleShadow: () => - import ('@ericmuyser/hyper-ui').then(m => m.shadow) - }, - template: ` -
- - - NEW - - Mutation Mode - -
- - Mutation Mode - - Before title text - - -
- - Mutation Mode - -
- ` - })) - .add('divider', () => ({ - components: { - LandingDivider: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingDivider), - }, - template: ` -
- -
- ` - })) - .add('level', () => ({ - components: { - BlockContentLevel: () => - import ('@ericmuyser/hyper-ui').then(m => m.BlockContentLevel), - }, - template: ` -
- - Caster Pack 5 (2017) - -
- - Caster Pack 5 (2017) - -
- - Caster Pack 5 (2017) - -
-
- ` - })) - .add('feature item', () => ({ - components: { - BlockContentWithFeatureItem: () => - import ('@ericmuyser/hyper-ui').then(m => m.BlockContentWithFeatureItem), - }, - data() { - return { - items: [{ - img: 'https://i.ytimg.com/vi/6ki31hkQk8c/maxresdefault.jpg', - title: 'Donec placerat turpis est', - text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi in nulla sed ante maximus fringilla id at mi. Aenean nec elit ac ex porta volutpat. In porta porttitor purus a congue. Aenean sit amet lectus ac purus fringilla rutrum lobortis eu lorem. Quisque accumsan et odio vel ullamcorper.' - }, - { - img: 'http://cdn.dota2.com/apps/dota2/images/blog/play/dota_heroes.png', - title: 'Aenean suscipit', - text: 'Nulla facilisi. Donec eu ligula a massa accumsan dignissim a quis orci. Aenean suscipit, turpis eget tempor mattis, turpis tellus tristique nibh, eu lobortis eros libero quis nisl. Donec in maximus tellus.' - }, - { - img: 'https://dota2.pl/wp-content/uploads/2017/09/dota_2_clash_of_heroes_by_agussw-d8yukg0.jpg', - title: 'Donec sodales in dui nec vestibulum', - text: 'Nulla ultrices fermentum tristique. Integer a venenatis lacus, eget pretium lectus. Suspendisse potenti. Vestibulum sodales ultricies mattis. Donec sodales in dui nec vestibulum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.' - } - ] + data(){ + return{ + count: 87 } }, template: ` -
-
- - {{ item.text }} - -
-
- ` - })) - .add('benefactor', () => ({ - components: { - LandingBenefactor: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBenefactor), - }, - data() { - return { - items: [{ - src: 'http://dotafun.su/images/aeee/b_keeperofthelight.png', - name: 'Immortal I' - }, - - { - src: 'https://u.kanobu.ru/editor/images/82/c2a25ffa-c77c-44e2-a616-c6d5e0e6d4a3.png', - name: 'Immortal II' - }, - { - src: 'https://i.pinimg.com/originals/44/61/88/44618879e898abbbec878eda26551d52.png', - name: 'Immortal III', - includesList: ['200 x Fire Lotus Belt', '200 x Golden Ornithomancer Mantle', '200 x Dragonclaw Hook', '200 x Rainmaker', '200 x Pipe of Dezun', '200 x Perceptions of the Eternal Mind', - '200 x Kantusa the Script Sword', '200 x Shattered Greatsword', '200 x Golden Gravelmaw', '100 x Golden Grasping Bludgeon', '100 x Golden Shards of Exile', '100 x Golden Staff of Perplex', - '100 x Golden Huntling', '100 x Golden Severing Crest', '100 x Golden Sullen Hollow', '100 x Golden Lamb to the Slaughter', '100 x Lockjaw the Boxhound' - ] - }, - - { - src: 'http://cdn.dota2.com/apps/dota2/images/international2017/battlepass/immortals/c_legioncommander.png?v=4054578', - name: 'Immortal IV' - } - ] - } - }, - template: ` -
- -
- ` - })) - .add('reward list', () => ({ - components: { - LandingRewardList: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingRewardList), - }, - data() { - return {} - }, - template: ` -
- - - -
- ` +
+ +
` })) - .add('page', () => ({ - components: { - LandingBlock: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBlock), - LandingBlockTitle: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBlockTitle), - LandingBlockTitleShadow: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBlockTitleShadow), - LandingBlockTitleGradient: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBlockTitleGradient), - LandingFeatureItem: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingFeatureItem), - LandingTabs: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingTabs), - LandingTab: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingTab), - LandingSlider: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingSlider), - LandingGradientBlock: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingGradientBlock), - LandingBenefactor: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingBenefactor), - LandingLevel: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingLevel), - LandingRewardList: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingRewardList), - LandingDivider: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingDivider), - LandingButton: () => - import ('@ericmuyser/hyper-ui').then(m => m.LandingButton), - }, - data() { - return { - items: [{ - img: 'https://i.ytimg.com/vi/6ki31hkQk8c/maxresdefault.jpg', - title: 'Donec placerat turpis est', - text: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi in nulla sed ante maximus fringilla id at mi. Aenean nec elit ac ex porta volutpat. In porta porttitor purus a congue. Aenean sit amet lectus ac purus fringilla rutrum lobortis eu lorem. Quisque accumsan et odio vel ullamcorper.' - }, - { - img: 'http://cdn.dota2.com/apps/dota2/images/blog/play/dota_heroes.png', - title: 'Aenean suscipit', - text: 'Nulla facilisi. Donec eu ligula a massa accumsan dignissim a quis orci. Aenean suscipit, turpis eget tempor mattis, turpis tellus tristique nibh, eu lobortis eros libero quis nisl. Donec in maximus tellus.' - }, - { - img: 'https://dota2.pl/wp-content/uploads/2017/09/dota_2_clash_of_heroes_by_agussw-d8yukg0.jpg', - title: 'Donec sodales in dui nec vestibulum', - text: 'Nulla ultrices fermentum tristique. Integer a venenatis lacus, eget pretium lectus. Suspendisse potenti. Vestibulum sodales ultricies mattis. Donec sodales in dui nec vestibulum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.' - } - ], - slides: [{ - id: 1, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.webm?v=4806847', - title: 'Span of sorrow', - subtitle: 'Back item with custom Sunder effect' - }, - { - id: 2, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.webm?v=4806847', - subtitle: 'Emereld Conquest', - title: 'Nulla ultrices fermentum tristique' - }, - { - id: 3, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.webm?v=4806847', - subtitle: 'Emereld Conquest', - title: 'Morbi in nulla sed' - }, - { - id: 4, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.webm?v=4806847', - subtitle: 'Emereld Conquest', - title: 'Donec eu ligula a massa accumsan dignissim' - }, - { - id: 5, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.webm?v=4806847', - subtitle: 'Emereld Conquest', - title: 'Aenean suscipit' - }, - { - id: 6, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.webm?v=4806847', - subtitle: 'Emereld Conquest', - title: 'Vestibulum dignissim tincidunt' - }, - { - id: 7, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_abyssal_underlord.webm?v=4806847', - subtitle: 'Emereld Conquest', - title: 'Proin efficitur ut ipsum' - }, - { - id: 8, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_emblem.webm?v=4806847', - subtitle: 'Emereld Conquest', - title: 'Mauris ex massa' - }, - { - id: 9, - type: 'video', - poster: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.jpg', - thumbnail: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.jpg', - src: 'https://steamcdn-a.akamaihd.net/apps/dota2/videos/international2018/battlepass/immortals/a_vengeful_spirit.webm?v=4806847', - subtitle: 'Emereld Conquest', - title: 'Maecenas suscipit ante' - } - ], - benefactorItems: [{ - src: 'http://dotafun.su/images/aeee/b_keeperofthelight.png', - name: 'Immortal I' - }, - { - src: 'https://u.kanobu.ru/editor/images/82/c2a25ffa-c77c-44e2-a616-c6d5e0e6d4a3.png', - name: 'Immortal II' - }, - { - src: 'https://i.pinimg.com/originals/44/61/88/44618879e898abbbec878eda26551d52.png', - name: 'Immortal III', - includesList: ['200 x Fire Lotus Belt', '200 x Golden Ornithomancer Mantle', '200 x Dragonclaw Hook', '200 x Rainmaker', '200 x Pipe of Dezun', '200 x Perceptions of the Eternal Mind', - '200 x Kantusa the Script Sword', '200 x Shattered Greatsword', '200 x Golden Gravelmaw', '100 x Golden Grasping Bludgeon', '100 x Golden Shards of Exile', '100 x Golden Staff of Perplex', - '100 x Golden Huntling', '100 x Golden Severing Crest', '100 x Golden Sullen Hollow', '100 x Golden Lamb to the Slaughter', '100 x Lockjaw the Boxhound' - ] - }, - - { - src: 'http://cdn.dota2.com/apps/dota2/images/international2017/battlepass/immortals/c_legioncommander.png?v=4054578', - name: 'Immortal IV' - } - ], - rewardList: [ - '1 - Immortal Treasure I 2018', - '1 - Immortal Treasure II 2018', - '1 - Immortal Treasure III 2018', - '1 - The International 2018 Music Pack', - '1 - The International 2018 Cursor Pack', - '1 - Eimer Hillburrow Courier', - '1 - Trailgazer Ward Set', - '1 - Taunt: Cold Breakfast', - '1 - International 2018 Player Card Pack x5', - '1 - Pro Circuit Predictions Unlocked', - '1 - Ranked Match Team Challenge Token', - '5 - Ranked Match Team Challenge Token', - '8 - International 2018 Battle Point Tribute - 250 Tokens x2', - '12 - International 2018 Player Card Pack x5', - '24 - Chat Wheel: Crash and burn', - '36 - Ranked Match Team Challenge Token' - ] - } - }, - template: ` -
- -
- - Battle level rewards - - -

Aliquam quis magna at diam convallis congue. Vestibulum dignissim tincidunt sapien quis consequat. - Mauris vel metus dui. Donec vitae sagittis mauris. Nam semper pretium sapien, quis dictum odio. - Cras id nisl sed neque luctus ultrices ut ut elit. Maecenas suscipit ante a leo convallis ornare. - Proin efficitur ut ipsum a egestas. Nunc gravida placerat erat, ac pharetra felis malesuada id. - Mauris ex massa, dictum id eros quis, sodales maximus nibh. Morbi tempus erat vitae tempus euismod.

-
-
- - The 2018 immortals - - - -

- Nunc gravida placerat erat, ac pharetra felis malesuada id.
- Mauris ex massa, dictum id eros quis, sodales maximus nibh. Morbi tempus erat vitae tempus euismod. -

- - Maecenas suscipit ante a leo convallis ornare. - Proin efficitur ut ipsum a egestas. Nunc gravida placerat erat, ac pharetra felis malesuada id. - Mauris ex massa, dictum id eros quis, sodales maximus nibh. Morbi tempus erat vitae tempus euismod. - - - - - - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi at condimentum risus. - Integer viverra quam in ipsum posuere lobortis. Integer rhoncus gravida ante a aliquam. In aliquet ex eu nibh pulvinar varius. Suspendisse maximus a arcu at sagittis. Etiam et mauris volutpat diam consequat accumsan vitae non nisi. Sed dignissim odio metus, sit amet ullamcorper ligula blandit et. Donec ac justo a erat lacinia venenatis id eu nisl. - - - -
TREASURE I: 1 - 10 - 22 - 34 - 46 - 80 - 220 (repeats every 30 levels)
-
TREASURE II: 1 - 98 - 112 - 132 - 152 - 230 (repeats every 30 levels)
-
TREASURE III: 1 - 164 - 178 - 194 - 206 - 240 (repeats every 30 levels)
-
- - - - LIMITED MARKETABILITY - -

- Maecenas suscipit ante a leo convallis ornare. - Proin efficitur ut ipsum a egestas. Nunc gravida placerat erat, ac pharetra felis malesuada id. - Mauris ex massa, dictum id eros quis, sodales maximus nibh. Morbi tempus erat vitae tempus euismod. -

-
-
-
-
- - - - -
- - TRUST OF THE BENEFACTOR - - - - -
-
- - LEVEL - -
-
-

Aliquam quis magna at diam convallis congue. Vestibulum dignissim tincidunt sapien quis consequat. - Mauris vel metus dui. Donec vitae sagittis mauris. Nam semper pretium sapien, quis dictum odio. - Cras id nisl sed neque luctus ultrices ut ut elit. Maecenas suscipit ante a leo convallis ornare. - Proin efficitur ut ipsum a egestas. Nunc gravida placerat erat, ac pharetra felis malesuada id. - Mauris ex massa, dictum id eros quis, sodales maximus nibh. Morbi tempus erat vitae tempus euismod.

-
-
- - - - -
- -
-
- - Buy Battle Pass - - - LEVEL 1 $9.99 USD - - - LEVEL 75 $36.99 USD - -
-
- - Buy Levels - - - 5 LEVELS $2.49 USD - - - 11 LEVELS $4.99 USD - - - 24 LEVELS $9.99 USD - -
-
- -
-
-
-
- ` - })) storiesOf('Token Sale Box', module) .add('default', () => ({ @@ -4921,22 +4429,7 @@ storiesOf('Token Sale Box', module) :soldDollars="23455424" :soldTokens="243424234" /> ` - })) - .add('type 2', () => ({ - components: { - TokenSale2: () => - import ('@ericmuyser/hyper-ui').then(m => m.TokenSale2), - }, - template: ` -
- -
` - })) + })); storiesOf('Guide', module) .add('default', () => ({ From 42ad97cc5d1b0737af1f721488437e2de9d30dd6 Mon Sep 17 00:00:00 2001 From: soxepo Date: Sun, 27 Oct 2019 21:41:43 +0200 Subject: [PATCH 7/7] fix components(Wallet) --- tools/styleguide/stories/index.stories.js | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/tools/styleguide/stories/index.stories.js b/tools/styleguide/stories/index.stories.js index 0adbf738e..84f4bf62b 100644 --- a/tools/styleguide/stories/index.stories.js +++ b/tools/styleguide/stories/index.stories.js @@ -4446,15 +4446,17 @@ storiesOf('Video Popup', module) VideoPopup: () => import ('@ericmuyser/hyper-ui').then(m => m.VideoPopup), Author: () => - import ('@ericmuyser/hyper-ui').then(m => m.Author) + import ('@ericmuyser/hyper-ui').then(m => m.Author), + 'Button': () => import('@ericmuyser/hyper-ui').then(m => m.Button), }, data() { return { - video: [{ + video: { src: 'https://static.videezy.com/system/resources/previews/000/004/944/original/Magical_Tree_4K_Living_Background.mp4', format: 'mp4' - }], - comments: [{ + }, + comments: [ + { text: 'Lorem ipsum dolor si', author: { name: 'Satoshi', @@ -4696,6 +4698,7 @@ storiesOf('Wallet', module) import ('@ericmuyser/hyper-ui').then(m => m.WalletEdit), WalletToken: () => import ('@ericmuyser/hyper-ui').then(m => m.WalletToken), + 'Button': () => import('@ericmuyser/hyper-ui').then(m => m.Button), }, data: () => data.WalletData, template: `