@bagelink/vue 0.0.52 → 0.0.56
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bagelink/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.56",
|
|
5
5
|
"description": "Bagel core sdk packages",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Neveh Allon",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"prosemirror-state": "^1.4.3",
|
|
65
65
|
"prosemirror-view": "^1.32.4",
|
|
66
66
|
"@vue-macros/reactivity-transform": "^0.4.0",
|
|
67
|
-
"@bagelink/sdk": "0.0.
|
|
67
|
+
"@bagelink/sdk": "0.0.56"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@bagelink/sdk": "*"
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export * from './CheckInput.vue';
|
|
2
|
-
export * from './CurrencyInput.vue';
|
|
3
|
-
export * from './DateInput.vue';
|
|
4
|
-
export * from './DatetimeInput.vue';
|
|
5
|
-
export * from './EmailInput.vue';
|
|
6
|
-
export * from './FloatInput.vue';
|
|
7
|
-
export * from './IntInput.vue';
|
|
8
|
-
export * from './JSONInput.vue';
|
|
9
|
-
export * from './LinkField.vue';
|
|
10
|
-
export * from './PasswordInput.vue';
|
|
11
|
-
export * from './Password.vue';
|
|
12
|
-
export * from './ReadOnlyInput.vue';
|
|
13
|
-
export * from './SelectField.vue';
|
|
14
|
-
export * from './TextInput.vue';
|
|
15
|
-
export * from './RichTextEditor.vue';
|
|
16
|
-
export * from './TableField.vue';
|
|
17
|
-
export * from './DurationInput.vue';
|
|
1
|
+
export * as CheckInput from './CheckInput.vue';
|
|
2
|
+
export * as CurrencyInput from './CurrencyInput.vue';
|
|
3
|
+
export * as DateInput from './DateInput.vue';
|
|
4
|
+
export * as DatetimeInput from './DatetimeInput.vue';
|
|
5
|
+
export * as EmailInput from './EmailInput.vue';
|
|
6
|
+
export * as FloatInput from './FloatInput.vue';
|
|
7
|
+
export * as IntInput from './IntInput.vue';
|
|
8
|
+
export * as JSONInput from './JSONInput.vue';
|
|
9
|
+
export * as LinkField from './LinkField.vue';
|
|
10
|
+
export * as PasswordInput from './PasswordInput.vue';
|
|
11
|
+
export * as Password from './Password.vue';
|
|
12
|
+
export * as ReadOnlyInput from './ReadOnlyInput.vue';
|
|
13
|
+
export * as SelectField from './SelectField.vue';
|
|
14
|
+
export * as TextInput from './TextInput.vue';
|
|
15
|
+
export * as RichTextEditor from './RichTextEditor.vue';
|
|
16
|
+
export * as TableField from './TableField.vue';
|
|
17
|
+
export * as DurationInput from './DurationInput.vue';
|
package/src/components/index.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export * as RTXEditor from './RTXEditor.vue';
|
|
2
2
|
export * as MaterialIcon from './MaterialIcon.vue';
|
|
3
|
-
export * as BagelForm from './BagelForm.vue';
|
|
4
3
|
export * as NavBar from './NavBar.vue';
|
|
5
4
|
export * as Btn from './Btn.vue';
|
|
6
5
|
export * as Modal from './Modal.vue';
|
|
@@ -14,7 +13,6 @@ export * as PageTitle from './PageTitle.vue';
|
|
|
14
13
|
export * as ModalForm from './ModalForm.vue';
|
|
15
14
|
export * as TextInput from './form/inputs/TextInput.vue';
|
|
16
15
|
export * as DataPreview from './DataPreview.vue';
|
|
17
|
-
export * as SubscriptionCharges from './SubscriptionCharges.vue';
|
|
18
16
|
export * as FormSchema from './FormSchema.vue';
|
|
19
17
|
export * as TableSchema from './TableSchema.vue';
|
|
20
18
|
export * as TopBar from './TopBar.vue';
|