@bryntum/scheduler-vue 7.1.1

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.
Files changed (77) hide show
  1. package/README.md +51 -0
  2. package/index.d.ts +74 -0
  3. package/index.js +148 -0
  4. package/license.pdf +0 -0
  5. package/licenses.md +310 -0
  6. package/package.json +22 -0
  7. package/src/BryntumAIFilterField.vue +382 -0
  8. package/src/BryntumButton.vue +342 -0
  9. package/src/BryntumButtonGroup.vue +354 -0
  10. package/src/BryntumChatPanel.vue +406 -0
  11. package/src/BryntumCheckbox.vue +384 -0
  12. package/src/BryntumCheckboxGroup.vue +414 -0
  13. package/src/BryntumChecklistFilterCombo.vue +457 -0
  14. package/src/BryntumChipView.vue +350 -0
  15. package/src/BryntumCodeEditor.vue +400 -0
  16. package/src/BryntumColorField.vue +384 -0
  17. package/src/BryntumCombo.vue +451 -0
  18. package/src/BryntumContainer.vue +339 -0
  19. package/src/BryntumDateField.vue +402 -0
  20. package/src/BryntumDatePicker.vue +480 -0
  21. package/src/BryntumDateRangeField.vue +404 -0
  22. package/src/BryntumDateTimeField.vue +362 -0
  23. package/src/BryntumDemoCodeEditor.vue +406 -0
  24. package/src/BryntumDemoHeader.vue +145 -0
  25. package/src/BryntumDisplayField.vue +372 -0
  26. package/src/BryntumDurationField.vue +396 -0
  27. package/src/BryntumEditor.vue +385 -0
  28. package/src/BryntumEventColorField.vue +384 -0
  29. package/src/BryntumFieldFilterPicker.vue +366 -0
  30. package/src/BryntumFieldFilterPickerGroup.vue +373 -0
  31. package/src/BryntumFieldSet.vue +396 -0
  32. package/src/BryntumFileField.vue +374 -0
  33. package/src/BryntumFilePicker.vue +351 -0
  34. package/src/BryntumFilterField.vue +388 -0
  35. package/src/BryntumFullscreenButton.vue +41 -0
  36. package/src/BryntumGrid.vue +819 -0
  37. package/src/BryntumGridBase.vue +816 -0
  38. package/src/BryntumGridChartDesigner.vue +295 -0
  39. package/src/BryntumGridFieldFilterPicker.vue +368 -0
  40. package/src/BryntumGridFieldFilterPickerGroup.vue +371 -0
  41. package/src/BryntumGroupBar.vue +350 -0
  42. package/src/BryntumHint.vue +417 -0
  43. package/src/BryntumLabel.vue +293 -0
  44. package/src/BryntumList.vue +344 -0
  45. package/src/BryntumMenu.vue +425 -0
  46. package/src/BryntumMonthPicker.vue +396 -0
  47. package/src/BryntumNumberField.vue +386 -0
  48. package/src/BryntumPagingToolbar.vue +358 -0
  49. package/src/BryntumPanel.vue +388 -0
  50. package/src/BryntumPasswordField.vue +370 -0
  51. package/src/BryntumProjectCombo.vue +453 -0
  52. package/src/BryntumRadio.vue +384 -0
  53. package/src/BryntumRadioGroup.vue +404 -0
  54. package/src/BryntumResourceCombo.vue +453 -0
  55. package/src/BryntumResourceFilter.vue +355 -0
  56. package/src/BryntumScheduler.vue +1563 -0
  57. package/src/BryntumSchedulerBase.vue +1561 -0
  58. package/src/BryntumSchedulerDatePicker.vue +486 -0
  59. package/src/BryntumSchedulerProjectModel.vue +211 -0
  60. package/src/BryntumSlideToggle.vue +384 -0
  61. package/src/BryntumSlider.vue +327 -0
  62. package/src/BryntumSplitter.vue +304 -0
  63. package/src/BryntumTabPanel.vue +406 -0
  64. package/src/BryntumTextAreaField.vue +374 -0
  65. package/src/BryntumTextAreaPickerField.vue +386 -0
  66. package/src/BryntumTextField.vue +378 -0
  67. package/src/BryntumTimeField.vue +396 -0
  68. package/src/BryntumTimePicker.vue +352 -0
  69. package/src/BryntumTimelineHistogram.vue +1083 -0
  70. package/src/BryntumToolbar.vue +356 -0
  71. package/src/BryntumTreeCombo.vue +451 -0
  72. package/src/BryntumTreeGrid.vue +818 -0
  73. package/src/BryntumUndoRedo.vue +347 -0
  74. package/src/BryntumViewPresetCombo.vue +362 -0
  75. package/src/BryntumWidget.vue +294 -0
  76. package/src/BryntumYearPicker.vue +403 -0
  77. package/src/WrapperHelper.js +487 -0
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ # Vue wrapper for Bryntum Scheduler
2
+
3
+ This package contains a wrapper that encapsulates Bryntum Scheduler and turns it into a Vue component, exposing
4
+ configuration options, properties, features, and events.
5
+
6
+ # Bryntum repository access setup
7
+
8
+ This npm package requires access to the private Bryntum npm repository.
9
+ You must be logged in to this repository as a licensed or trial user to access it.
10
+ Please check the [Online npm repository guide](https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm-repository) for detailed information on the sign-up/login
11
+ process.
12
+
13
+ # Installation
14
+
15
+ The installation is performed by issuing the installation command in the root of the application folder. The specific
16
+ command depends on the package manager used by the application.
17
+
18
+ The following are most frequently used:
19
+
20
+ Install using `npm`:
21
+
22
+ ```shell
23
+ npm install @bryntum/scheduler-vue@7.1.1
24
+ ```
25
+
26
+ Install using `yarn`:
27
+
28
+ ```shell
29
+ yarn add @bryntum/scheduler-vue@7.1.1
30
+ ```
31
+
32
+ # Integration guide
33
+
34
+ For details on installing and using this package, see the
35
+ [Vue Integration Guide](https://bryntum.com/products/scheduler/docs/guide/Scheduler/integration/vue/guide).
36
+
37
+ # Online references
38
+
39
+ * [Bryntum npm repository guide](https://bryntum.com/products/scheduler/docs/guide/Scheduler/npm-repository)
40
+ * [Bryntum Scheduler documentation](https://bryntum.com/products/scheduler/docs/)
41
+ * [Bryntum Scheduler examples](https://bryntum.com/products/scheduler/examples/)
42
+ * [Bryntum Support Forum](https://forum.bryntum.com/)
43
+ * [Contact us](https://bryntum.com/contact/)
44
+
45
+ # License and copyright
46
+
47
+ This wrapper depends on Bryntum Scheduler, which is commercial software and requires a paid license.
48
+ Please visit the [Bryntum Scheduler End User License](https://bryntum.com/products/scheduler/license/) for the full text of the license.
49
+
50
+ Copyright © 2009-2026, Bryntum
51
+ All rights reserved.
package/index.d.ts ADDED
@@ -0,0 +1,74 @@
1
+ import Vue from 'vue';
2
+ declare module '@bryntum/scheduler-vue'
3
+
4
+ export class BryntumFullscreenButton extends Vue {}
5
+ export class BryntumDemoHeader extends Vue {}
6
+
7
+ export class BryntumAIFilterField extends Vue {}
8
+ export class BryntumButton extends Vue {}
9
+ export class BryntumButtonGroup extends Vue {}
10
+ export class BryntumChatPanel extends Vue {}
11
+ export class BryntumCheckbox extends Vue {}
12
+ export class BryntumCheckboxGroup extends Vue {}
13
+ export class BryntumChecklistFilterCombo extends Vue {}
14
+ export class BryntumChipView extends Vue {}
15
+ export class BryntumCodeEditor extends Vue {}
16
+ export class BryntumColorField extends Vue {}
17
+ export class BryntumCombo extends Vue {}
18
+ export class BryntumContainer extends Vue {}
19
+ export class BryntumDateField extends Vue {}
20
+ export class BryntumDatePicker extends Vue {}
21
+ export class BryntumDateRangeField extends Vue {}
22
+ export class BryntumDateTimeField extends Vue {}
23
+ export class BryntumDemoCodeEditor extends Vue {}
24
+ export class BryntumDisplayField extends Vue {}
25
+ export class BryntumDurationField extends Vue {}
26
+ export class BryntumEditor extends Vue {}
27
+ export class BryntumEventColorField extends Vue {}
28
+ export class BryntumFieldFilterPicker extends Vue {}
29
+ export class BryntumFieldFilterPickerGroup extends Vue {}
30
+ export class BryntumFieldSet extends Vue {}
31
+ export class BryntumFileField extends Vue {}
32
+ export class BryntumFilePicker extends Vue {}
33
+ export class BryntumFilterField extends Vue {}
34
+ export class BryntumGrid extends Vue {}
35
+ export class BryntumGridBase extends Vue {}
36
+ export class BryntumGridChartDesigner extends Vue {}
37
+ export class BryntumGridFieldFilterPicker extends Vue {}
38
+ export class BryntumGridFieldFilterPickerGroup extends Vue {}
39
+ export class BryntumGroupBar extends Vue {}
40
+ export class BryntumHint extends Vue {}
41
+ export class BryntumLabel extends Vue {}
42
+ export class BryntumList extends Vue {}
43
+ export class BryntumMenu extends Vue {}
44
+ export class BryntumMonthPicker extends Vue {}
45
+ export class BryntumNumberField extends Vue {}
46
+ export class BryntumPagingToolbar extends Vue {}
47
+ export class BryntumPanel extends Vue {}
48
+ export class BryntumPasswordField extends Vue {}
49
+ export class BryntumProjectCombo extends Vue {}
50
+ export class BryntumSchedulerProjectModel extends Vue {}
51
+ export class BryntumRadio extends Vue {}
52
+ export class BryntumRadioGroup extends Vue {}
53
+ export class BryntumResourceCombo extends Vue {}
54
+ export class BryntumResourceFilter extends Vue {}
55
+ export class BryntumScheduler extends Vue {}
56
+ export class BryntumSchedulerBase extends Vue {}
57
+ export class BryntumSchedulerDatePicker extends Vue {}
58
+ export class BryntumSlider extends Vue {}
59
+ export class BryntumSlideToggle extends Vue {}
60
+ export class BryntumSplitter extends Vue {}
61
+ export class BryntumTabPanel extends Vue {}
62
+ export class BryntumTextAreaField extends Vue {}
63
+ export class BryntumTextAreaPickerField extends Vue {}
64
+ export class BryntumTextField extends Vue {}
65
+ export class BryntumTimeField extends Vue {}
66
+ export class BryntumTimelineHistogram extends Vue {}
67
+ export class BryntumTimePicker extends Vue {}
68
+ export class BryntumToolbar extends Vue {}
69
+ export class BryntumTreeCombo extends Vue {}
70
+ export class BryntumTreeGrid extends Vue {}
71
+ export class BryntumUndoRedo extends Vue {}
72
+ export class BryntumViewPresetCombo extends Vue {}
73
+ export class BryntumWidget extends Vue {}
74
+ export class BryntumYearPicker extends Vue {}
package/index.js ADDED
@@ -0,0 +1,148 @@
1
+ /**
2
+ * Exports Bryntum Scheduler Vue 2 wrappers
3
+ */
4
+
5
+ import './src/WrapperHelper.js';
6
+ import BryntumFullscreenButton from './src/BryntumFullscreenButton.vue';
7
+ import BryntumDemoHeader from './src/BryntumDemoHeader.vue';
8
+ import BryntumAIFilterField from './src/BryntumAIFilterField.vue';
9
+ import BryntumButton from './src/BryntumButton.vue';
10
+ import BryntumButtonGroup from './src/BryntumButtonGroup.vue';
11
+ import BryntumChatPanel from './src/BryntumChatPanel.vue';
12
+ import BryntumCheckbox from './src/BryntumCheckbox.vue';
13
+ import BryntumCheckboxGroup from './src/BryntumCheckboxGroup.vue';
14
+ import BryntumChecklistFilterCombo from './src/BryntumChecklistFilterCombo.vue';
15
+ import BryntumChipView from './src/BryntumChipView.vue';
16
+ import BryntumCodeEditor from './src/BryntumCodeEditor.vue';
17
+ import BryntumColorField from './src/BryntumColorField.vue';
18
+ import BryntumCombo from './src/BryntumCombo.vue';
19
+ import BryntumContainer from './src/BryntumContainer.vue';
20
+ import BryntumDateField from './src/BryntumDateField.vue';
21
+ import BryntumDatePicker from './src/BryntumDatePicker.vue';
22
+ import BryntumDateRangeField from './src/BryntumDateRangeField.vue';
23
+ import BryntumDateTimeField from './src/BryntumDateTimeField.vue';
24
+ import BryntumDemoCodeEditor from './src/BryntumDemoCodeEditor.vue';
25
+ import BryntumDisplayField from './src/BryntumDisplayField.vue';
26
+ import BryntumDurationField from './src/BryntumDurationField.vue';
27
+ import BryntumEditor from './src/BryntumEditor.vue';
28
+ import BryntumEventColorField from './src/BryntumEventColorField.vue';
29
+ import BryntumFieldFilterPicker from './src/BryntumFieldFilterPicker.vue';
30
+ import BryntumFieldFilterPickerGroup from './src/BryntumFieldFilterPickerGroup.vue';
31
+ import BryntumFieldSet from './src/BryntumFieldSet.vue';
32
+ import BryntumFileField from './src/BryntumFileField.vue';
33
+ import BryntumFilePicker from './src/BryntumFilePicker.vue';
34
+ import BryntumFilterField from './src/BryntumFilterField.vue';
35
+ import BryntumGrid from './src/BryntumGrid.vue';
36
+ import BryntumGridBase from './src/BryntumGridBase.vue';
37
+ import BryntumGridChartDesigner from './src/BryntumGridChartDesigner.vue';
38
+ import BryntumGridFieldFilterPicker from './src/BryntumGridFieldFilterPicker.vue';
39
+ import BryntumGridFieldFilterPickerGroup from './src/BryntumGridFieldFilterPickerGroup.vue';
40
+ import BryntumGroupBar from './src/BryntumGroupBar.vue';
41
+ import BryntumHint from './src/BryntumHint.vue';
42
+ import BryntumLabel from './src/BryntumLabel.vue';
43
+ import BryntumList from './src/BryntumList.vue';
44
+ import BryntumMenu from './src/BryntumMenu.vue';
45
+ import BryntumMonthPicker from './src/BryntumMonthPicker.vue';
46
+ import BryntumNumberField from './src/BryntumNumberField.vue';
47
+ import BryntumPagingToolbar from './src/BryntumPagingToolbar.vue';
48
+ import BryntumPanel from './src/BryntumPanel.vue';
49
+ import BryntumPasswordField from './src/BryntumPasswordField.vue';
50
+ import BryntumProjectCombo from './src/BryntumProjectCombo.vue';
51
+ import BryntumSchedulerProjectModel from './src/BryntumSchedulerProjectModel.vue';
52
+ import BryntumRadio from './src/BryntumRadio.vue';
53
+ import BryntumRadioGroup from './src/BryntumRadioGroup.vue';
54
+ import BryntumResourceCombo from './src/BryntumResourceCombo.vue';
55
+ import BryntumResourceFilter from './src/BryntumResourceFilter.vue';
56
+ import BryntumScheduler from './src/BryntumScheduler.vue';
57
+ import BryntumSchedulerBase from './src/BryntumSchedulerBase.vue';
58
+ import BryntumSchedulerDatePicker from './src/BryntumSchedulerDatePicker.vue';
59
+ import BryntumSlider from './src/BryntumSlider.vue';
60
+ import BryntumSlideToggle from './src/BryntumSlideToggle.vue';
61
+ import BryntumSplitter from './src/BryntumSplitter.vue';
62
+ import BryntumTabPanel from './src/BryntumTabPanel.vue';
63
+ import BryntumTextAreaField from './src/BryntumTextAreaField.vue';
64
+ import BryntumTextAreaPickerField from './src/BryntumTextAreaPickerField.vue';
65
+ import BryntumTextField from './src/BryntumTextField.vue';
66
+ import BryntumTimeField from './src/BryntumTimeField.vue';
67
+ import BryntumTimelineHistogram from './src/BryntumTimelineHistogram.vue';
68
+ import BryntumTimePicker from './src/BryntumTimePicker.vue';
69
+ import BryntumToolbar from './src/BryntumToolbar.vue';
70
+ import BryntumTreeCombo from './src/BryntumTreeCombo.vue';
71
+ import BryntumTreeGrid from './src/BryntumTreeGrid.vue';
72
+ import BryntumUndoRedo from './src/BryntumUndoRedo.vue';
73
+ import BryntumViewPresetCombo from './src/BryntumViewPresetCombo.vue';
74
+ import BryntumWidget from './src/BryntumWidget.vue';
75
+ import BryntumYearPicker from './src/BryntumYearPicker.vue';
76
+
77
+ export {
78
+ BryntumFullscreenButton,
79
+ BryntumDemoHeader,
80
+ BryntumAIFilterField,
81
+ BryntumButton,
82
+ BryntumButtonGroup,
83
+ BryntumChatPanel,
84
+ BryntumCheckbox,
85
+ BryntumCheckboxGroup,
86
+ BryntumChecklistFilterCombo,
87
+ BryntumChipView,
88
+ BryntumCodeEditor,
89
+ BryntumColorField,
90
+ BryntumCombo,
91
+ BryntumContainer,
92
+ BryntumDateField,
93
+ BryntumDatePicker,
94
+ BryntumDateRangeField,
95
+ BryntumDateTimeField,
96
+ BryntumDemoCodeEditor,
97
+ BryntumDisplayField,
98
+ BryntumDurationField,
99
+ BryntumEditor,
100
+ BryntumEventColorField,
101
+ BryntumFieldFilterPicker,
102
+ BryntumFieldFilterPickerGroup,
103
+ BryntumFieldSet,
104
+ BryntumFileField,
105
+ BryntumFilePicker,
106
+ BryntumFilterField,
107
+ BryntumGrid,
108
+ BryntumGridBase,
109
+ BryntumGridChartDesigner,
110
+ BryntumGridFieldFilterPicker,
111
+ BryntumGridFieldFilterPickerGroup,
112
+ BryntumGroupBar,
113
+ BryntumHint,
114
+ BryntumLabel,
115
+ BryntumList,
116
+ BryntumMenu,
117
+ BryntumMonthPicker,
118
+ BryntumNumberField,
119
+ BryntumPagingToolbar,
120
+ BryntumPanel,
121
+ BryntumPasswordField,
122
+ BryntumProjectCombo,
123
+ BryntumSchedulerProjectModel,
124
+ BryntumRadio,
125
+ BryntumRadioGroup,
126
+ BryntumResourceCombo,
127
+ BryntumResourceFilter,
128
+ BryntumScheduler,
129
+ BryntumSchedulerBase,
130
+ BryntumSchedulerDatePicker,
131
+ BryntumSlider,
132
+ BryntumSlideToggle,
133
+ BryntumSplitter,
134
+ BryntumTabPanel,
135
+ BryntumTextAreaField,
136
+ BryntumTextAreaPickerField,
137
+ BryntumTextField,
138
+ BryntumTimeField,
139
+ BryntumTimelineHistogram,
140
+ BryntumTimePicker,
141
+ BryntumToolbar,
142
+ BryntumTreeCombo,
143
+ BryntumTreeGrid,
144
+ BryntumUndoRedo,
145
+ BryntumViewPresetCombo,
146
+ BryntumWidget,
147
+ BryntumYearPicker
148
+ };
package/license.pdf ADDED
Binary file
package/licenses.md ADDED
@@ -0,0 +1,310 @@
1
+ # Third Party Notices
2
+
3
+ Bryntum uses the following third party libraries:
4
+
5
+ * [Font Awesome 6 Free](https://fontawesome.com/license/free) (MIT/SIL OFL 1.1)
6
+ * [Roboto font (for Material theme only)](https://github.com/google/roboto) (Apache-2.0)
7
+ * [Styling Cross-Browser Compatible Range Inputs with Sass](https://github.com/darlanrod/input-range-sass) (MIT)
8
+ * [Tree Walker polyfill (only applies to Salesforce)](https://github.com/Krinkle/dom-TreeWalker-polyfill) (MIT)
9
+ * [chronograph](https://github.com/bryntum/chronograph) (MIT)
10
+ * [later.js](https://github.com/bunkat/later) (MIT)
11
+ * [Monaco editor (only used in our demos)](https://microsoft.github.io/monaco-editor) (MIT)
12
+ * Map/Set polyfill to fix performance issues for Salesforce LWS (MIT)
13
+ * [Chart.js (when using Chart package)](https://github.com/chartjs/Chart.js) (MIT)
14
+
15
+ Note: the **chronograph** and **later.js** libraries are used in Bryntum Scheduler Pro and Bryntum Gantt, but they are
16
+ listed for all Bryntum products since the distribution contains trial versions of the thin bundles for all other
17
+ products. TreeWalker is only used in the LWC bundle for Salesforce. Roboto font is only used in the material theme.
18
+
19
+ ## Font Awesome 6 Free
20
+
21
+ [Font Awesome Free 6 by @fontawesome](https://fontawesome.com/)
22
+
23
+ Font Awesome Free is free, open source, and GPL friendly. You can use it for commercial projects, open source projects,
24
+ or really almost whatever you want.
25
+
26
+ [Full Font Awesome Free license](https://fontawesome.com/license/free)
27
+
28
+ ## Roboto font
29
+
30
+ [Apache License Version 2.0, January 2004](https://www.apache.org/licenses/LICENSE-2.0)
31
+
32
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
33
+
34
+ 1. Definitions.
35
+
36
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9
37
+ of this document.
38
+
39
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
40
+
41
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are
42
+ under common control with that entity. For the purposes of this definition,
43
+ "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by
44
+ contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial
45
+ ownership of such entity.
46
+
47
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
48
+
49
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code,
50
+ documentation source, and configuration files.
51
+
52
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including
53
+ but not limited to compiled object code, generated documentation, and conversions to other media types.
54
+
55
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as
56
+ indicated by a copyright notice that is included in or attached to the work
57
+ (an example is provided in the Appendix below).
58
+
59
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work
60
+ and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an
61
+ original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain
62
+ separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
63
+
64
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or
65
+ additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the
66
+ Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner.
67
+ For the purposes of this definition, "submitted"
68
+ means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including
69
+ but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems
70
+ that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding
71
+ communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a
72
+ Contribution."
73
+
74
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received
75
+ by Licensor and subsequently incorporated within the Work.
76
+
77
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to
78
+ You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce,
79
+ prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such
80
+ Derivative Works in Source or Object form.
81
+
82
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a
83
+ perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
84
+ (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise
85
+ transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are
86
+ necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s)
87
+ with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (
88
+ including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within
89
+ the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this
90
+ License for that Work shall terminate as of the date such litigation is filed.
91
+
92
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with
93
+ or without modifications, and in Source or Object form, provided that You meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
98
+
99
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark,
100
+ and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the
101
+ Derivative Works; and
102
+
103
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute
104
+ must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that
105
+ do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file
106
+ distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the
107
+ Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices
108
+ normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You
109
+ may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the
110
+ NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the
111
+ License.
112
+
113
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and
114
+ conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole,
115
+ provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this
116
+ License.
117
+
118
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for
119
+ inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any
120
+ additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any
121
+ separate license agreement you may have executed with Licensor regarding such Contributions.
122
+
123
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product
124
+ names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and
125
+ reproducing the content of the NOTICE file.
126
+
127
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and
128
+ each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
129
+ either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT,
130
+ MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness
131
+ of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this
132
+ License.
133
+
134
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or
135
+ otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing,
136
+ shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or
137
+ consequential damages of any character arising as a result of this License or out of the use or inability to use the
138
+ Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or
139
+ any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such
140
+ damages.
141
+
142
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose
143
+ to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or
144
+ rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and
145
+ on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and
146
+ hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason
147
+ of your accepting any such warranty or additional liability.
148
+
149
+ END OF TERMS AND CONDITIONS
150
+
151
+ APPENDIX: How to apply the Apache License to your work.
152
+
153
+ To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by
154
+ brackets "[]"
155
+ replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the
156
+ appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose
157
+ be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
158
+
159
+ Copyright [yyyy] [name of copyright owner]
160
+
161
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the
162
+ License. You may obtain a copy of the License at
163
+
164
+ [APACHE LICENSE, VERSION 2.0](http://www.apache.org/licenses/LICENSE-2.0)
165
+
166
+ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "
167
+ AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
168
+ language governing permissions and limitations under the License.
169
+
170
+ ## Styling Cross-Browser Compatible Range Inputs with Sass
171
+
172
+ Github: [input-range-sass](https://github.com/darlanrod/input-range-sass)
173
+
174
+ Author: [Darlan Rod](https://github.com/darlanrod)
175
+
176
+ Version 1.4.1
177
+
178
+ The MIT License (MIT)
179
+
180
+ Copyright (c) 2016 Darlan Rod
181
+
182
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
183
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
184
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
185
+ persons to whom the Software is furnished to do so, subject to the following conditions:
186
+
187
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
188
+ Software.
189
+
190
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
191
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
192
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
193
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
194
+
195
+ ## Tree Walker polyfill
196
+
197
+ The MIT License (MIT)
198
+
199
+ [Copyright 2013–2017 Timo Tijhof](https://github.com/Krinkle/dom-TreeWalker-polyfill)
200
+
201
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
202
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
203
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
204
+ persons to whom the Software is furnished to do so, subject to the following conditions:
205
+
206
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
207
+ Software.
208
+
209
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
210
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
211
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
212
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
213
+
214
+ ## chronograph
215
+
216
+ GitHub: [chronograph](https://github.com/bryntum/chronograph)
217
+
218
+ The MIT License (MIT)
219
+
220
+ Copyright (c) 2023 Bryntum
221
+
222
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
223
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
224
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
225
+ persons to whom the Software is furnished to do so, subject to the following conditions:
226
+
227
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
228
+ Software.
229
+
230
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
231
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
232
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
233
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
234
+
235
+ ## later.js
236
+
237
+ GitHub: [later.js](https://github.com/bunkat/later)
238
+
239
+ The MIT License (MIT)
240
+
241
+ Copyright © 2013 BunKat
242
+
243
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
244
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
245
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
246
+ persons to whom the Software is furnished to do so, subject to the following conditions:
247
+
248
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
249
+ Software.
250
+
251
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
252
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
253
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
254
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
255
+
256
+ ## Monaco editor
257
+
258
+ GitHub: [Monaco editor](https://microsoft.github.io/monaco-editor) (MIT)
259
+
260
+ The MIT License (MIT)
261
+
262
+ Copyright (c) 2016 - present Microsoft Corporation
263
+
264
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
265
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation the
266
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit
267
+ persons to whom the Software is furnished to do so, subject to the following conditions:
268
+
269
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
270
+ Software.
271
+
272
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
273
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
274
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
275
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
276
+
277
+ ## Map/Set polyfill to fix performance issues for Salesforce LWS
278
+
279
+ Copyright © 2024 Certinia Inc.
280
+
281
+ Permission is hereby granted, free of charge, to any person obtaining a copy
282
+ of this software and associated documentation files (the "Software"), to deal
283
+ in the Software without restriction, including without limitation the rights
284
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
285
+ copies of the Software, and to permit persons to whom the Software is
286
+ furnished to do so, subject to the following conditions:
287
+
288
+ The above copyright notice and this permission notice shall be included in all
289
+ copies or substantial portions of the Software.
290
+
291
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
292
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
293
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
294
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
295
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
296
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
297
+ SOFTWARE.
298
+
299
+ ## Chart.js
300
+
301
+ GitHub: [Chart.js](https://github.com/chartjs/Chart.js)
302
+
303
+ The MIT License (MIT)
304
+
305
+ Copyright (c) 2014-2022 Chart.js Contributors
306
+
307
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
308
+ WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
309
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
310
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@bryntum/scheduler-vue",
3
+ "description": "Vue 2 wrappers for Bryntum Scheduler JavaScript component",
4
+ "author": {
5
+ "name": "Bryntum",
6
+ "url": "https://bryntum.com",
7
+ "email": "info@bryntum.com"
8
+ },
9
+ "homepage": "https://bryntum.com/",
10
+ "keywords": [
11
+ "bryntum",
12
+ "scheduler",
13
+ "vue",
14
+ "wrapper"
15
+ ],
16
+ "license": "Commercial",
17
+ "version": "7.1.1",
18
+ "bugs": "https://github.com/bryntum/support/issues",
19
+ "main": "index.js",
20
+ "dependencies": {},
21
+ "devDependencies": {}
22
+ }