@tiddh/brave-vue 1.9.13 → 1.9.16
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/README.md +18 -18
- package/dist/brave-vue.esm.js +69 -58
- package/dist/brave-vue.min.js +1 -1
- package/dist/brave-vue.ssr.js +120 -109
- package/dist/icons/alert.svg +3 -3
- package/dist/icons/arrow-down.svg +3 -3
- package/dist/icons/arrow-left.svg +3 -3
- package/dist/icons/arrow-right.svg +3 -3
- package/dist/icons/arrow-up.svg +3 -3
- package/dist/icons/big-card.svg +4 -4
- package/dist/icons/blog.svg +3 -3
- package/dist/icons/book-dedicatoria.svg +3 -3
- package/dist/icons/book.svg +3 -3
- package/dist/icons/calendar.svg +3 -3
- package/dist/icons/cart.svg +3 -3
- package/dist/icons/caution.svg +3 -3
- package/dist/icons/change.svg +4 -4
- package/dist/icons/check.svg +3 -3
- package/dist/icons/chevron-down.svg +3 -3
- package/dist/icons/chevron-left.svg +3 -3
- package/dist/icons/chevron-right.svg +3 -3
- package/dist/icons/chevron-up.svg +3 -3
- package/dist/icons/close.svg +3 -3
- package/dist/icons/collapse-minus.svg +3 -3
- package/dist/icons/collapse.svg +3 -3
- package/dist/icons/crown.svg +3 -3
- package/dist/icons/delivery.svg +6 -6
- package/dist/icons/doubt.svg +3 -3
- package/dist/icons/edit.svg +5 -5
- package/dist/icons/exit.svg +4 -4
- package/dist/icons/filter.svg +5 -5
- package/dist/icons/gender-boy.svg +5 -5
- package/dist/icons/gender-girl.svg +7 -7
- package/dist/icons/gift.svg +3 -3
- package/dist/icons/group.svg +3 -3
- package/dist/icons/home.svg +3 -3
- package/dist/icons/info.svg +3 -3
- package/dist/icons/lock.svg +3 -3
- package/dist/icons/menu-hamb.svg +3 -3
- package/dist/icons/money.svg +3 -3
- package/dist/icons/multipage.svg +4 -4
- package/dist/icons/one-page.svg +3 -3
- package/dist/icons/open-in-new.svg +4 -4
- package/dist/icons/pause.svg +3 -3
- package/dist/icons/payment-agiplan.svg +0 -0
- package/dist/icons/payment-amex.svg +0 -0
- package/dist/icons/payment-boleto.svg +0 -0
- package/dist/icons/payment-card.svg +0 -0
- package/dist/icons/payment-diners.svg +0 -0
- package/dist/icons/payment-elo.svg +0 -0
- package/dist/icons/payment-hipercard.svg +0 -0
- package/dist/icons/payment-jcb.svg +0 -0
- package/dist/icons/payment-mastercard.svg +0 -0
- package/dist/icons/payment-visa.svg +0 -0
- package/dist/icons/payment-zcredez.svg +0 -0
- package/dist/icons/perfil.svg +3 -3
- package/dist/icons/person.svg +4 -4
- package/dist/icons/pin.svg +3 -3
- package/dist/icons/settings.svg +3 -3
- package/dist/icons/shop-bag.svg +3 -3
- package/dist/icons/small-card.svg +6 -6
- package/dist/icons/social-email-icon.svg +0 -0
- package/dist/icons/social-facebook-icon.svg +0 -0
- package/dist/icons/social-facebook.svg +0 -0
- package/dist/icons/social-google.svg +0 -0
- package/dist/icons/social-instagram.svg +0 -0
- package/dist/icons/social-pinterest.svg +0 -0
- package/dist/icons/social-telegram-icon.svg +0 -0
- package/dist/icons/social-twitter-icon.svg +0 -0
- package/dist/icons/social-whatsapp-icon.svg +0 -0
- package/dist/icons/social-youtube.svg +0 -0
- package/dist/icons/star.svg +3 -3
- package/dist/icons/store.svg +3 -3
- package/dist/icons/ticket-check.svg +5 -5
- package/dist/icons/ticket.svg +3 -3
- package/dist/icons/zoom.svg +4 -4
- package/package.json +117 -117
- package/src/App.vue +28 -28
- package/src/components/Avatar/Avatar.vue +370 -357
- package/src/components/Avatar/elements/CategoryCustomizations.vue +492 -492
- package/src/components/Avatar/elements/CustomizationPanel.vue +1085 -1010
- package/src/components/Avatar/elements/CustomizationPreview.vue +151 -88
- package/src/components/Avatar/elements/CustomizationView.vue +800 -737
- package/src/components/Avatar/elements/ToggleColor.vue +104 -104
- package/src/components/Avatar/elements/ToggleSubcategory.vue +133 -133
- package/src/components/Buttons/Button.vue +1675 -1675
- package/src/components/Card/Card.vue +119 -119
- package/src/components/Card/CardLink.vue +229 -229
- package/src/components/Card/CardOption.vue +262 -262
- package/src/components/Form/Checkbox.vue +193 -193
- package/src/components/Form/GenderSelect.vue +271 -271
- package/src/components/Form/Input.vue +907 -907
- package/src/components/Form/InputAddress.vue +624 -624
- package/src/components/Form/InputAddressBilling.vue +624 -624
- package/src/components/Form/InputAddressNumber.vue +598 -598
- package/src/components/Form/InputCardNumber.vue +489 -489
- package/src/components/Form/InputEdit.vue +223 -223
- package/src/components/Form/InputEmail.vue +235 -235
- package/src/components/Form/InputName.vue +291 -291
- package/src/components/Form/Options.vue +352 -352
- package/src/components/Form/PickerBirthday.vue +567 -567
- package/src/components/Form/Radius.vue +159 -159
- package/src/components/Form/Select.vue +344 -344
- package/src/components/Form/SelectBirthday.vue +382 -382
- package/src/components/Form/TextArea.vue +254 -254
- package/src/components/HelloWorld.vue +59 -59
- package/src/components/Icons/Icon.vue +46 -46
- package/src/components/Images/Images.vue +49 -49
- package/src/components/Loading/Loading.vue +99 -99
- package/src/components/Modal/Modal.vue +378 -378
- package/src/components/Navigation/Tabs.vue +187 -187
- package/src/components/Preview/Preview.vue +943 -938
- package/src/components/Preview/PreviewFull.vue +198 -190
- package/src/components/Preview/PreviewMobile.vue +1101 -1096
- package/src/components/Preview/PreviewTools.vue +1171 -1171
- package/src/components/Preview/PreviewWithTools.vue +254 -254
- package/src/components/Tooltip/Tooltip.vue +186 -186
- package/src/components/Typography/Caption.vue +67 -67
- package/src/components/Typography/Heading.vue +102 -102
- package/src/components/Typography/Paragraph.vue +91 -91
- package/src/components/Utils/{FeedBack.vue → Feedback.vue} +313 -313
- package/src/components/Utils/HR.vue +67 -67
- package/src/components/Utils/Spinner.vue +82 -82
- package/dist/icons/Teste Dani2.zip +0 -0
- package/dist/icons/copy.svg +0 -3
- package/dist/icons/discount.svg +0 -3
- package/dist/icons/perfil-plus.svg +0 -4
- package/dist/icons/play.svg +0 -3
package/README.md
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
# brave-vue
|
|
2
|
-
|
|
3
|
-
## Project setup
|
|
4
|
-
```
|
|
5
|
-
npm install
|
|
6
|
-
```
|
|
7
|
-
|
|
8
|
-
### Compile Storybook
|
|
9
|
-
```
|
|
10
|
-
npm run storybook
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
### Build Storybook
|
|
14
|
-
```
|
|
15
|
-
npm run build-storybook
|
|
16
|
-
```
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
# brave-vue
|
|
2
|
+
|
|
3
|
+
## Project setup
|
|
4
|
+
```
|
|
5
|
+
npm install
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
### Compile Storybook
|
|
9
|
+
```
|
|
10
|
+
npm run storybook
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Build Storybook
|
|
14
|
+
```
|
|
15
|
+
npm run build-storybook
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
|