lau-ecom-design-system 1.0.0
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 +16 -0
- package/dist/lau-ecom-design-system.esm.js +1486 -0
- package/dist/lau-ecom-design-system.min.js +1 -0
- package/dist/lau-ecom-design-system.ssr.js +1456 -0
- package/dist/style.css +2001 -0
- package/package.json +78 -0
- package/src/assets/Grotesk/SharpGrotesk-Bold15.otf +0 -0
- package/src/assets/Grotesque/Brandon_bld.otf +0 -0
- package/src/components/LauEcomBannerCookies/LauEcomBannerCookies.vue +106 -0
- package/src/components/LauEcomBannerCookies/LauEcomBannerCookiesConfig.vue +159 -0
- package/src/components/LauEcomBannerCookies/LauEcomBannerCookiesConfigAccordion.vue +66 -0
- package/src/components/LauEcomButton/LauEcomButton.vue +160 -0
- package/src/components/LauEcomCheckbox/LauEcomCheckbox.vue +133 -0
- package/src/components/LauEcomDropdown/LauEcomDropdown.vue +203 -0
- package/src/components/LauEcomIcon/LauEcomCoreIconNavClose.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconArrowDown.vue +49 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconCheck.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconExclamationTriangle.vue +31 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconNavArrow.vue +29 -0
- package/src/components/LauEcomIcon/LauEcomUpcIconNavCheckmark.vue +29 -0
- package/src/components/LauEcomInput/LauEcomInput.vue +208 -0
- package/src/components/LauEcomRadioButton/LauEcomRadioButton.vue +87 -0
- package/src/components/LauEcomStepbar/LauEcomStepbar.vue +45 -0
- package/src/components/LauEcomStepbar/LauEcomStepbarItem.vue +129 -0
- package/src/components/LauEcomSwitch/LauEcomSwitch.vue +94 -0
- package/src/enums/index.ts +2 -0
- package/src/enums/instance.ts +5 -0
- package/src/enums/size.ts +6 -0
package/README.md
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# Design System LAUREATE E-COMMERCE
|
2
|
+
|
3
|
+
- Name: Design System LAUREATE E-COMMERCE
|
4
|
+
- Package name: lau-ecom-design-system
|
5
|
+
|
6
|
+
## Development
|
7
|
+
|
8
|
+
```bash
|
9
|
+
# Instalar dependencias
|
10
|
+
|
11
|
+
yarn install
|
12
|
+
|
13
|
+
# Levantar storybook
|
14
|
+
|
15
|
+
yarn storybook
|
16
|
+
```
|