@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/components/form/inputs/ColorPicker.vue.d.ts +45 -0
- package/dist/components/form/inputs/ColorPicker.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/DynamicLinkField.vue.d.ts +56 -0
- package/dist/components/form/inputs/DynamicLinkField.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/PlainText.vue.d.ts +47 -0
- package/dist/components/form/inputs/PlainText.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/TextArea.vue.d.ts +57 -0
- package/dist/components/form/inputs/TextArea.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/index.d.ts +5 -0
- package/dist/components/form/inputs/index.d.ts.map +1 -1
- package/dist/index.cjs +674 -405
- package/dist/index.mjs +674 -405
- package/dist/style.css +25 -0
- package/package.json +1 -1
- package/src/components/form/inputs/DynamicLinkField.vue +0 -2
- package/src/components/form/inputs/index.ts +5 -0
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
|
@@ -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';
|