@tak-ps/vue-tabler 4.29.2 → 5.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/CHANGELOG.md CHANGED
@@ -10,6 +10,14 @@
10
10
 
11
11
  ## Version History
12
12
 
13
+ ### v5.0.0
14
+
15
+ - :rocket: Remove `TablerList` as it used an outdated `window.std` requirement for fetching data
16
+
17
+ ### v4.29.3
18
+
19
+ - :bug: Fix incorrect border when using pre or post icons in TablerInput
20
+
13
21
  ### v4.29.2
14
22
 
15
23
  - :bug: Upstream styling of label dropdowns
@@ -341,6 +341,32 @@ input:autofill {
341
341
  background-color: var(--tabler-input-bg, var(--tblr-bg-forms, var(--tblr-bg-surface, var(--tblr-body-bg))));
342
342
  }
343
343
 
344
+ /*
345
+ * Tabler's input-group-flat strips the seam borders from the .form-control but
346
+ * not from the .input-group-text spans (icon, clear button, end adornment), so
347
+ * their inner borders survive as dividers - and get repainted blue by
348
+ * `.input-group-flat:focus-within .input-group-text` on focus. Drop every
349
+ * inner-facing span border, keeping only the group's outer outline.
350
+ */
351
+ .input-group :deep(.input-group-text:not(:last-child)) {
352
+ border-right: 0;
353
+ }
354
+
355
+ .input-group :deep(.input-group-text:not(:first-child)) {
356
+ border-left: 0;
357
+ }
358
+
359
+ /*
360
+ * The .form-control also carries the standard 1px input drop shadow
361
+ * (--tblr-shadow-input) which the spans lack, leaving a faint horizontal line
362
+ * that starts only where the input does. A flat group should be flat - remove
363
+ * it inside the group entirely.
364
+ */
365
+ .input-group :deep(.form-control),
366
+ .input-group :deep(.input-group-text) {
367
+ box-shadow: none;
368
+ }
369
+
344
370
  .tabler-input-with-end {
345
371
  padding-right: 3rem;
346
372
  }
package/lib.ts CHANGED
@@ -20,7 +20,6 @@ export { default as TablerSlidedown } from './components/Slidedown.vue'
20
20
  export { default as TablerPager } from './components/Pager.vue'
21
21
  export { default as TablerNone } from './components/None.vue'
22
22
  export { default as TablerError } from './components/Err.vue'
23
- export { default as TablerList } from './components/List.vue'
24
23
  export { default as TablerHelp } from './components/Help.vue'
25
24
  export { default as TablerModal } from './components/Modal.vue'
26
25
  export { default as TablerProgress } from './components/Progress.vue'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tak-ps/vue-tabler",
3
3
  "type": "module",
4
- "version": "4.29.2",
4
+ "version": "5.0.0",
5
5
  "lib": "lib.ts",
6
6
  "main": "lib.ts",
7
7
  "module": "lib.ts",
@@ -1,148 +0,0 @@
1
- <template>
2
- <div class='dropdown'>
3
- <label
4
- v-if='label'
5
- class='form-label'
6
- :class='{
7
- "required": required
8
- }'
9
- v-text='label'
10
- />
11
- <div
12
- id='list-menu-button'
13
- ref='button'
14
- type='button'
15
- data-bs-toggle='dropdown'
16
- aria-expanded='false'
17
- class='border rounded'
18
- style='height: 36px;'
19
- >
20
- <div class='d-flex mx-2'>
21
- <span
22
- v-if='ele && namekey'
23
- style='padding-top: 6px;'
24
- v-text='ele[namekey]'
25
- />
26
- <span
27
- v-else
28
- style='padding-top: 6px;'
29
- >Select <span v-text='label' /></span>
30
-
31
- <div class='ms-auto'>
32
- <IconSettings
33
- :size='32'
34
- stroke='1'
35
- style='margin-top: 4px;'
36
- />
37
- </div>
38
- </div>
39
- </div>
40
- <ul
41
- class='dropdown-menu'
42
- aria-labelledby='list-menu-button'
43
- :style='{
44
- "width": `${buttonHeight}px`
45
- }'
46
- >
47
- <div class='m-1'>
48
- <TablerInput
49
- v-model='filter'
50
- :disabled='disabled'
51
- placeholder='Name'
52
- />
53
- <div
54
- v-for='ele in (listkey ? list[listkey] : [])'
55
- :key='ele.id'
56
- @click='select(ele)'
57
- >
58
- <div
59
- v-if='namekey'
60
- class='d-flex align-items-center my-1 cursor-pointer'
61
- v-text='ele[namekey]'
62
- />
63
- </div>
64
- </div>
65
- </ul>
66
- </div>
67
- </template>
68
-
69
- <script setup lang="ts">
70
- import { ref, computed, watch, onMounted } from 'vue'
71
- import TablerInput from './input/Input.vue';
72
- import {
73
- IconSettings
74
- } from '@tabler/icons-vue';
75
-
76
- export interface ListProps {
77
- url?: string;
78
- listkey?: string;
79
- namekey?: string;
80
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
81
- initial?: Record<string, any>;
82
- label?: string;
83
- required?: boolean;
84
- disabled?: boolean;
85
- limit?: number;
86
- }
87
-
88
- const props = withDefaults(defineProps<ListProps>(), {
89
- label: '',
90
- required: false,
91
- disabled: false,
92
- limit: 10
93
- });
94
-
95
- const emit = defineEmits<{
96
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
97
- (e: 'selected', ele: any): void
98
- }>()
99
-
100
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
101
- const ele = ref<any>(null)
102
- const isMounted = ref(false)
103
- const filter = ref('')
104
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
105
- const list = ref<any>({})
106
- const button = ref<HTMLElement | null>(null)
107
-
108
- const buttonHeight = computed(() => {
109
- if(!isMounted.value) return 100;
110
- const buttonDOM = button.value
111
- return buttonDOM ? buttonDOM.offsetWidth : 100;
112
- })
113
-
114
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
115
- const select = (selectedEle: any) => {
116
- ele.value = selectedEle;
117
- if (props.namekey) {
118
- filter.value = selectedEle[props.namekey];
119
- }
120
- emit("selected", selectedEle)
121
- }
122
-
123
- const fetchList = async () => {
124
- if (!props.url) return;
125
- // @ts-expect-error: Global window function
126
- const url = window.stdurl(props.url);
127
- url.searchParams.append('filter', filter.value);
128
- url.searchParams.append('limit', String(props.limit));
129
- // @ts-expect-error: Global window function
130
- list.value = await window.std(url);
131
- }
132
-
133
- // Watchers
134
- watch(ele, () => {
135
- filter.value = '';
136
- })
137
-
138
- watch(filter, async () => {
139
- await fetchList();
140
- })
141
-
142
- // Mounted lifecycle
143
- onMounted(async () => {
144
- if (props.initial && props.namekey && props.initial[props.namekey]) ele.value = props.initial;
145
- await fetchList();
146
- isMounted.value = true;
147
- })
148
- </script>