@alexochihua/exos-library-components 2.16.16 → 2.16.17

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.
Files changed (2) hide show
  1. package/dist/style.css +24 -4
  2. package/package.json +3 -3
package/dist/style.css CHANGED
@@ -4005,16 +4005,12 @@ video {
4005
4005
  .exos-peer:-moz-placeholder-shown ~ .e-input__label__container--transition {
4006
4006
  top: 50%;
4007
4007
  --tw-translate-y: -50%;
4008
- --tw-scale-x: 1;
4009
- --tw-scale-y: 1;
4010
4008
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
4011
4009
  }
4012
4010
 
4013
4011
  .exos-peer:placeholder-shown ~ .e-input__label__container--transition {
4014
4012
  top: 50%;
4015
4013
  --tw-translate-y: -50%;
4016
- --tw-scale-x: 1;
4017
- --tw-scale-y: 1;
4018
4014
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
4019
4015
  }
4020
4016
 
@@ -4030,6 +4026,30 @@ video {
4030
4026
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
4031
4027
  }
4032
4028
 
4029
+ div.e-input__input__container
4030
+ textarea.e-input__input
4031
+ ~ div.e-input__label__container--transition {
4032
+ top: 0.625rem;
4033
+ }
4034
+
4035
+ div.e-input__input__container
4036
+ textarea.e-input__input:-moz-placeholder-shown
4037
+ ~ div.e-input__label__container--transition {
4038
+ top: 1em;
4039
+ }
4040
+
4041
+ div.e-input__input__container
4042
+ textarea.e-input__input:placeholder-shown
4043
+ ~ div.e-input__label__container--transition {
4044
+ top: 1em;
4045
+ }
4046
+
4047
+ div.e-input__input__container
4048
+ textarea.e-input__input:focus
4049
+ ~ div.e-input__label__container--transition {
4050
+ top: 0.625rem;
4051
+ }
4052
+
4033
4053
  .e-input__label {
4034
4054
  z-index: 10;
4035
4055
  display: flex;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexochihua/exos-library-components",
3
- "version": "2.16.16",
3
+ "version": "2.16.17",
4
4
  "description": "## Componentes base Vue 3 y Tailwind",
5
5
  "author": "Exos",
6
6
  "scripts": {
@@ -8,11 +8,11 @@
8
8
  "build": "vue-cli-service build",
9
9
  "lint": "vue-cli-service lint",
10
10
  "lib": "vue-cli-service build --target lib --name exos-library-components src/index.js",
11
- "libmac": "vue-cli-service build --target lib --name exos-library-components src/index.js && cp -R ./public/icon-css ./dist/icon-css && cp -R ./changelog.md ./dist && cp -r ./src/assets/fonts dist/assets/fonts",
11
+ "libmac": "vue-cli-service build --target lib --name exos-library-components src/index.js && cp -R ./public/icon-css ./dist/icon-css && cp -R ./changelog.md ./dist && cp -r ./src/assets/fonts dist/assets/fonts && npm run tailwind",
12
12
  "libwin": "vue-cli-service build --target lib --name exos-library-components src/index.js&&xcopy /s /e /i ./public/icon-css ./dist/icon-css",
13
13
  "styleguide": "vue-cli-service styleguidist",
14
14
  "styleguide:build": "vue-cli-service styleguidist:build",
15
- "tailwind": "tailwindcss -i ./src/index.css -o ./dist/style.css --watch",
15
+ "tailwind": "tailwindcss -i ./src/index.css -o ./dist/style.css",
16
16
  "documentation": "tailwindcss -i ./src/index.css -o ./style.css && vue-cli-service styleguidist",
17
17
  "documentation:build": "tailwindcss -i ./src/index.css -o ./style.css && vue-cli-service styleguidist:build"
18
18
  },