@bryntum/scheduler-vue-3-thin 7.1.3 → 7.2.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/README.md +8 -8
- package/lib/chunks/BIDAJ9KI.js.map +1 -1
- package/lib/chunks/{6EoHCTY_.js → Bbpvg_hf.js} +43 -23
- package/lib/chunks/Bbpvg_hf.js.map +1 -0
- package/lib/chunks/COu_0bRA.js.map +1 -1
- package/lib/chunks/{C8aIKZog.js → CQl8vwrU.js} +4 -2
- package/lib/chunks/CQl8vwrU.js.map +1 -0
- package/lib/chunks/{V0ER-Huj.js → DgB_l35T.js} +6 -4
- package/lib/chunks/DgB_l35T.js.map +1 -0
- package/lib/chunks/{fiUsZcET.js → DxeM4HUm.js} +3 -3
- package/lib/chunks/DxeM4HUm.js.map +1 -0
- package/lib/chunks/{w9YPCarT.js → FtY3iMiN.js} +43 -23
- package/lib/chunks/FtY3iMiN.js.map +1 -0
- package/lib/chunks/ga9EWphl.js.map +1 -1
- package/lib/chunks/{CS2Ou_bo.js → qTXsCzE5.js} +5 -1
- package/lib/chunks/qTXsCzE5.js.map +1 -0
- package/lib/components/BryntumResourceFilter.js +1 -1
- package/lib/components/BryntumScheduler.js +1 -1
- package/lib/components/BryntumSchedulerBase.js +1 -1
- package/lib/components/BryntumSchedulerDatePicker.js +1 -1
- package/lib/components/BryntumTimelineHistogram.js +1 -1
- package/lib/components/BryntumUndoRedo.js +1 -1
- package/lib/index.js +6 -6
- package/package.json +1 -1
- package/src/components/BryntumProjectCombo.vue +2 -2
- package/src/components/BryntumProjectComboProps.ts +2 -2
- package/src/components/BryntumResourceCombo.vue +2 -2
- package/src/components/BryntumResourceComboProps.ts +2 -2
- package/src/components/BryntumResourceFilter.vue +4 -4
- package/src/components/BryntumResourceFilterProps.ts +2 -2
- package/src/components/BryntumScheduler.vue +133 -4
- package/src/components/BryntumSchedulerBase.vue +133 -4
- package/src/components/BryntumSchedulerBaseProps.ts +29 -4
- package/src/components/BryntumSchedulerDatePicker.vue +8 -3
- package/src/components/BryntumSchedulerDatePickerProps.ts +6 -2
- package/src/components/BryntumSchedulerProps.ts +29 -4
- package/src/components/BryntumTimelineHistogram.vue +19 -4
- package/src/components/BryntumTimelineHistogramProps.ts +17 -4
- package/src/components/BryntumUndoRedo.vue +5 -0
- package/src/components/BryntumUndoRedoProps.ts +4 -0
- package/src/components/BryntumViewPresetCombo.vue +2 -2
- package/src/components/BryntumViewPresetComboProps.ts +2 -2
- package/lib/chunks/6EoHCTY_.js.map +0 -1
- package/lib/chunks/C8aIKZog.js.map +0 -1
- package/lib/chunks/CS2Ou_bo.js.map +0 -1
- package/lib/chunks/V0ER-Huj.js.map +0 -1
- package/lib/chunks/fiUsZcET.js.map +0 -1
- package/lib/chunks/w9YPCarT.js.map +0 -1
|
@@ -65,6 +65,10 @@ defineProps<{
|
|
|
65
65
|
* Update assigned [record](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-record) automatically on field changes
|
|
66
66
|
*/
|
|
67
67
|
autoUpdateRecord ? : Boolean
|
|
68
|
+
/**
|
|
69
|
+
* Set `true` to add a border to this container's element.
|
|
70
|
+
*/
|
|
71
|
+
border ? : Boolean
|
|
68
72
|
/**
|
|
69
73
|
* An object where property names with a truthy value indicate which events should bubble up the ownership
|
|
70
74
|
* hierarchy when triggered.
|
|
@@ -792,6 +796,7 @@ const widgetData = {
|
|
|
792
796
|
'ariaDescription',
|
|
793
797
|
'ariaLabel',
|
|
794
798
|
'autoUpdateRecord',
|
|
799
|
+
'border',
|
|
795
800
|
'bubbleEvents',
|
|
796
801
|
'centered',
|
|
797
802
|
'color',
|
|
@@ -50,6 +50,10 @@ export declare type BryntumUndoRedoProps = {
|
|
|
50
50
|
* Update assigned [record](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-record) automatically on field changes
|
|
51
51
|
*/
|
|
52
52
|
autoUpdateRecord ? : Boolean
|
|
53
|
+
/**
|
|
54
|
+
* Set `true` to add a border to this container's element.
|
|
55
|
+
*/
|
|
56
|
+
border ? : Boolean
|
|
53
57
|
/**
|
|
54
58
|
* An object where property names with a truthy value indicate which events should bubble up the ownership
|
|
55
59
|
* hierarchy when triggered.
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
import { getCurrentInstance, onBeforeUnmount, onMounted, provide, ref, watch, toRaw } from 'vue';
|
|
12
12
|
|
|
13
|
-
import type { AlignSpec, Base, Combo, ComboModel, Duration, DurationConfig, Field, KeyMapConfig, MaskConfig, Model, Rectangle, TabConfig, Widget } from '@bryntum/core-thin';
|
|
13
|
+
import type { AlignSpec, Base, Color, Combo, ComboModel, Duration, DurationConfig, Field, KeyMapConfig, MaskConfig, Model, Rectangle, TabConfig, Widget } from '@bryntum/core-thin';
|
|
14
14
|
import type { TimelineBase, ViewPresetComboListeners } from '@bryntum/scheduler-thin';
|
|
15
15
|
import { ViewPresetCombo } from '@bryntum/scheduler-thin';
|
|
16
16
|
|
|
@@ -116,7 +116,7 @@ defineProps<{
|
|
|
116
116
|
* ...
|
|
117
117
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-color)
|
|
118
118
|
*/
|
|
119
|
-
color ? :
|
|
119
|
+
color ? : Color
|
|
120
120
|
/**
|
|
121
121
|
* Programmatic control over which column to start in when used in a grid layout.
|
|
122
122
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { AlignSpec, Base, ComboModel, Duration, DurationConfig, Field, KeyMapConfig, MaskConfig, Model, Rectangle, TabConfig, Widget } from '@bryntum/core-thin';
|
|
1
|
+
import type { AlignSpec, Base, Color, ComboModel, Duration, DurationConfig, Field, KeyMapConfig, MaskConfig, Model, Rectangle, TabConfig, Widget } from '@bryntum/core-thin';
|
|
2
2
|
import type { TimelineBase, ViewPresetComboListeners } from '@bryntum/scheduler-thin';
|
|
3
3
|
|
|
4
4
|
export declare type BryntumViewPresetComboProps = {
|
|
@@ -101,7 +101,7 @@ export declare type BryntumViewPresetComboProps = {
|
|
|
101
101
|
* ...
|
|
102
102
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-color)
|
|
103
103
|
*/
|
|
104
|
-
color ? :
|
|
104
|
+
color ? : Color
|
|
105
105
|
/**
|
|
106
106
|
* Programmatic control over which column to start in when used in a grid layout.
|
|
107
107
|
*/
|