@bagelink/vue 0.0.145 → 0.0.147

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 CHANGED
@@ -2191,6 +2191,31 @@ input[type='email'][data-v-ed81a514] {
2191
2191
  box-shadow: 0 0 10px 0 rgb(0 0 0 /20%);
2192
2192
  }
2193
2193
 
2194
+ .bagel-input[data-v-a5b28c58] {
2195
+ height: 100%;
2196
+ margin: 0;
2197
+ }
2198
+ .bagel-input label[data-v-a5b28c58] {
2199
+ margin-bottom: 0;
2200
+ }
2201
+ .bagel-input textarea[data-v-a5b28c58] {
2202
+ height: 100%;
2203
+ resize: none;
2204
+ background: var(--input-bg);
2205
+ margin-bottom: 0.5rem;
2206
+ }
2207
+ .character-limit[data-v-a5b28c58] {
2208
+ font-size: 0.6rem;
2209
+ color: var(--input-color);
2210
+ position: absolute;
2211
+ top: 0.25rem;
2212
+ inset-inline-end: 0;
2213
+ }
2214
+
2215
+ .no-edit[data-v-188270a2] {
2216
+ cursor: not-allowed;
2217
+ }
2218
+
2194
2219
  .chart-line {
2195
2220
  width: 100%;
2196
2221
  height: 300px;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/vue",
3
3
  "type": "module",
4
- "version": "0.0.145",
4
+ "version": "0.0.147",
5
5
  "description": "Bagel core sdk packages",
6
6
  "author": {
7
7
  "name": "Neveh Allon",
@@ -96,8 +96,6 @@ interface ListItem {
96
96
  description?: string;
97
97
  }
98
98
 
99
- const initialized = ref(false);
100
-
101
99
  async function initList(e: Event) {
102
100
  await getLinkOptions(getElValue(e));
103
101
  showList.value = true;
@@ -15,3 +15,8 @@ export { default as RichTextEditor } from './RichTextEditor.vue';
15
15
  export { default as TableField } from './TableField.vue';
16
16
  export { default as DurationInput } from './DurationInput.vue';
17
17
  export { default as TextInput } from './TextInput.vue';
18
+ export { default as TextArea } from './TextArea.vue';
19
+ export { default as Checkbox } from './Checkbox.vue';
20
+ export { default as ColorPicker } from './ColorPicker.vue';
21
+ export { default as DynamicLinkField } from './DynamicLinkField.vue';
22
+ export { default as PlainText } from './PlainText.vue';