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/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +48 -6
- package/dist/tide-design-system.esm.js +2043 -944
- package/index.ts +2 -0
- package/package.json +1 -1
- package/src/components/TideInputCheckbox.vue +1 -1
- package/src/components/TideInputSelect.vue +7 -1
- package/src/components/TideInputText.vue +1 -1
- package/src/components/TideInputTextarea.vue +1 -1
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
|
@@ -105,7 +105,13 @@
|
|
|
105
105
|
</label>
|
|
106
106
|
|
|
107
107
|
<select
|
|
108
|
-
:class="[
|
|
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"
|