tide-design-system 2.1.13 → 2.1.14

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/index.ts CHANGED
@@ -26,6 +26,7 @@ import TideInputTextarea from '@/components/TideInputTextarea.vue';
26
26
  import TideLink from '@/components/TideLink.vue';
27
27
  import TideModal from '@/components/TideModal.vue';
28
28
  import TidePagination from '@/components/TidePagination.vue';
29
+ import TidePopover from '@/components/TidePopover.vue';
29
30
  import TideSeoLinks from '@/components/TideSeoLinks.vue';
30
31
  import TideSwitch from '@/components/TideSwitch.vue';
31
32
  import { ALERT } from '@/types/Alert';
@@ -208,6 +209,7 @@ export {
208
209
  TideLink,
209
210
  TideModal,
210
211
  TidePagination,
212
+ TidePopover,
211
213
  TideSeoLinks,
212
214
  TideSwitch,
213
215
  };
package/package.json CHANGED
@@ -61,7 +61,7 @@
61
61
  "main": "dist/tide-design-system.cjs",
62
62
  "module": "dist/tide-design-system.esm.js",
63
63
  "types": "dist/tide-design-system.esm.d.ts",
64
- "version": "2.1.13",
64
+ "version": "2.1.14",
65
65
  "dependencies": {
66
66
  "@floating-ui/vue": "^1.1.6"
67
67
  }
@@ -81,7 +81,7 @@
81
81
  :class="[
82
82
  CSS.DISPLAY.FLEX,
83
83
  CSS.GAP.HALF,
84
- CSS.FONT.ROLE.LABEL_1,
84
+ CSS.FONT.ROLE.BODY_1,
85
85
  disabled ? CSS.CURSOR.NOT_ALLOWED : CSS.CURSOR.POINTER,
86
86
  ]"
87
87
  :for="props.inputId"
@@ -105,7 +105,13 @@
105
105
  </label>
106
106
 
107
107
  <select
108
- :class="[CSS.PADDING.BOTTOM.HALF, CSS.PADDING.X.ONE, CSS.WIDTH.FULL, disabled && CSS.CURSOR.NOT_ALLOWED]"
108
+ :class="[
109
+ CSS.PADDING.BOTTOM.HALF,
110
+ CSS.PADDING.X.ONE,
111
+ CSS.WIDTH.FULL,
112
+ disabled && CSS.CURSOR.NOT_ALLOWED,
113
+ CSS.FONT.ROLE.BODY_1,
114
+ ]"
109
115
  :disabled="disabled"
110
116
  :name="name"
111
117
  ref="input"
@@ -199,7 +199,7 @@
199
199
 
200
200
  <input
201
201
  :autocomplete="autocomplete ? 'on' : 'off'"
202
- :class="[CSS.WIDTH.FULL, disabled && CSS.CURSOR.NOT_ALLOWED]"
202
+ :class="[CSS.WIDTH.FULL, disabled && CSS.CURSOR.NOT_ALLOWED, CSS.FONT.ROLE.BODY_1]"
203
203
  :data-track="props.dataTrack"
204
204
  :disabled="props.disabled"
205
205
  :maxlength="props.maxlength"
@@ -120,7 +120,7 @@
120
120
  </label>
121
121
 
122
122
  <textarea
123
- :class="[CSS.WIDTH.FULL]"
123
+ :class="[CSS.WIDTH.FULL, CSS.FONT.ROLE.BODY_1]"
124
124
  :data-track="props.dataTrack"
125
125
  :maxlength="props.maxlength"
126
126
  :minlength="props.minlength"