@demos-europe/demosplan-ui 0.3.21 → 0.3.23

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 (37) hide show
  1. package/.idea/workspace.xml +110 -49
  2. package/.yarn/install-state.gz +0 -0
  3. package/CHANGELOG.md +10 -0
  4. package/dist/demosplan-ui.umd.js +1 -1
  5. package/package.json +1 -1
  6. package/src/components/DpDataTable/DpDataTable.vue +6 -2
  7. package/src/components/DpDataTable/DpTableHeader.vue +6 -2
  8. package/src/lib/DpApi.js +2 -2
  9. package/tokens/dist/js/boxShadow.js +1 -1
  10. package/tokens/dist/js/breakpoints.js +1 -1
  11. package/tokens/dist/js/color.brand.js +1 -1
  12. package/tokens/dist/js/color.data.js +1 -1
  13. package/tokens/dist/js/color.palette.js +1 -1
  14. package/tokens/dist/js/color.ui-tailwind.js +1 -1
  15. package/tokens/dist/js/color.ui.js +1 -1
  16. package/tokens/dist/js/fontSize.js +1 -1
  17. package/tokens/dist/js/rounded.js +1 -1
  18. package/tokens/dist/js/space.js +1 -1
  19. package/tokens/dist/js/zIndex.js +1 -1
  20. package/tokens/dist/scss/_boxShadow.scss +1 -1
  21. package/tokens/dist/scss/_breakpoints.scss +1 -1
  22. package/tokens/dist/scss/_color.brand.scss +1 -1
  23. package/tokens/dist/scss/_color.data.scss +1 -1
  24. package/tokens/dist/scss/_color.palette.scss +1 -1
  25. package/tokens/dist/scss/_color.ui.scss +1 -1
  26. package/tokens/dist/scss/_fontSize.scss +1 -1
  27. package/tokens/dist/scss/_rounded.scss +1 -1
  28. package/tokens/dist/scss/_space.scss +1 -1
  29. package/tokens/dist/scss/_zIndex.scss +1 -1
  30. package/tokens/dist/tailwind/boxShadow.js +6 -0
  31. package/tokens/dist/tailwind/breakpoints.js +6 -0
  32. package/tokens/dist/tailwind/fontSize.js +16 -0
  33. package/tokens/dist/tailwind/rounded.js +8 -0
  34. package/tokens/dist/tailwind/space.js +20 -0
  35. package/tokens/dist/tailwind/zIndex.js +10 -0
  36. package/.idea/shelf/Uncommitted_changes_before_Update_at_17_07_2024_15_21_[Changes]/shelved.patch +0 -36
  37. package/.idea/shelf/Uncommitted_changes_before_Update_at_17_07_2024_15_21__Changes_.xml +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@demos-europe/demosplan-ui",
3
- "version": "0.3.21",
3
+ "version": "0.3.23",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "description": "Vue components, Vue directives, Design Token and Scss files to build interfaces for demosPlan.",
@@ -34,8 +34,12 @@
34
34
  @toggle-expand-all="toggleExpandAll"
35
35
  @toggle-select-all="toggleSelectAll"
36
36
  @toggle-wrap-all="toggleWrapAll">
37
- <template v-slot:[`header-${field}`] v-for="field in fields">
38
- <slot :name="`header-${field}`" />
37
+ <template
38
+ v-for="field in headerFields"
39
+ v-slot:[`header-${field.field}`]="field">
40
+ <slot
41
+ :name="`header-${field.field}`"
42
+ v-bind="field" />
39
43
  </template>
40
44
  </dp-table-header>
41
45
  </thead>
@@ -33,14 +33,18 @@
33
33
  :header-field="hf"
34
34
  :next-header="headerFields[idx + 1]"
35
35
  :idx="idx">
36
- <slot :name="`header-${hf.field}`">
36
+ <slot
37
+ :name="`header-${hf.field}`"
38
+ v-bind="hf">
37
39
  <span v-if="hf.label" v-text="hf.label" />
38
40
  </slot>
39
41
  </dp-resizable-column>
40
42
  <th
41
43
  v-else
42
44
  scope="col">
43
- <slot :name="`header-${hf.field}`">
45
+ <slot
46
+ :name="`header-${hf.field}`"
47
+ v-bind="hf">
44
48
  <span v-if="hf.label" v-text="hf.label" />
45
49
  </slot>
46
50
  </th>
package/src/lib/DpApi.js CHANGED
@@ -190,9 +190,9 @@ const checkResponse = function (response, messages) {
190
190
  if (response.status >= 400) {
191
191
  // @improve handle 404, 500 specially?
192
192
  reject(response.data)
193
- } else if (response.status === 200) {
193
+ } else if (response.status >= 200 && response.status < 400) {
194
194
  // Got data!
195
- resolve(response.data)
195
+ resolve(response.data ? response.data : null)
196
196
  } else {
197
197
  // Got no data
198
198
  resolve(null)
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ * Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
  */
5
5
 
6
6
  module.exports = {
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-box-shadow-xl: 0 0 16px rgb(0 0 0 / 20%), 0 0 3px rgb(0 0 0 / 50%) !default;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-breakpoints-xl: 1400px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-color-highlight-contrast: $dp-color-white !default;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-color-11-11: #313695;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-color-magenta-dark-2: #650324 !default;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-color-background-medium: $dp-color-neutral-light-3 !default;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-font-size-7: 50px !default;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-rounded-full: 9999px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-space-1_5: 9px;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Mon, 22 Jul 2024 09:37:27 GMT
3
+ // Generated on Fri, 26 Jul 2024 12:15:45 GMT
4
4
 
5
5
 
6
6
  $dp-z-ultimate: 10000;
@@ -0,0 +1,6 @@
1
+ module.exports = {
2
+ "DEFAULT": "var(--dp-boxShadow, 0 1px 4px rgb(0 0 0 / 22%), 0 1px 2px rgb(0 0 0 / 26%));",
3
+ "md": "var(--dp-boxShadow-md, 0 4px 10px rgb(0 0 0 / 24%), 0 3px 4px rgb(0 0 0 / 25%));",
4
+ "lg": "var(--dp-boxShadow-lg, 0 8px 20px rgb(0 0 0 / 26%), 0 5px 7px rgb(0 0 0 / 24%));",
5
+ "xl": "var(--dp-boxShadow-xl, 0 0 16px rgb(0 0 0 / 20%), 0 0 3px rgb(0 0 0 / 50%));"
6
+ };
@@ -0,0 +1,6 @@
1
+ module.exports = {
2
+ "sm": "var(--dp-breakpoints-sm, 620px);",
3
+ "md": "var(--dp-breakpoints-md, 904px);",
4
+ "lg": "var(--dp-breakpoints-lg, 1200px);",
5
+ "xl": "var(--dp-breakpoints-xl, 1400px);"
6
+ };
@@ -0,0 +1,16 @@
1
+ module.exports = {
2
+ "hero": "var(--dp-fontSize-hero, var(--dp-fontSize-7, 50px));",
3
+ "header": "var(--dp-fontSize-header, var(--dp-fontSize-5, 23px));",
4
+ "h1": "var(--dp-fontSize-h1, var(--dp-fontSize-6, 27.65px));",
5
+ "h2": "var(--dp-fontSize-h2, var(--dp-fontSize-5, 23px));",
6
+ "h3": "var(--dp-fontSize-h3, var(--dp-fontSize-4, 19.2px));",
7
+ "h4": "var(--dp-fontSize-h4, var(--dp-fontSize-3, 16px));",
8
+ "h5": "var(--dp-fontSize-h5, var(--dp-fontSize-2, 14px));",
9
+ "h6": "var(--dp-fontSize-h6, var(--dp-fontSize-1, 12px));",
10
+ "xl": "var(--dp-fontSize-xl, var(--dp-fontSize-5, 23px));",
11
+ "lg": "var(--dp-fontSize-lg, var(--dp-fontSize-4, 19.2px));",
12
+ "base": "var(--dp-fontSize-base, var(--dp-fontSize-3, 16px));",
13
+ "sm": "var(--dp-fontSize-sm, var(--dp-fontSize-2, 14px));",
14
+ "xs": "var(--dp-fontSize-xs, var(--dp-fontSize-1, 12px));",
15
+ "xxs": "var(--dp-fontSize-xxs, var(--dp-fontSize-0, 11px));"
16
+ };
@@ -0,0 +1,8 @@
1
+ module.exports = {
2
+ "none": "var(--dp-rounded-none, 0);",
3
+ "sm": "var(--dp-rounded-sm, 2px);",
4
+ "DEFAULT": "var(--dp-rounded, 3px);",
5
+ "md": "var(--dp-rounded-md, 4px);",
6
+ "lg": "var(--dp-rounded-lg, 5px);",
7
+ "full": "var(--dp-rounded-full, 9999px);"
8
+ };
@@ -0,0 +1,20 @@
1
+ module.exports = {
2
+ "0": "var(--dp-space-0, 0px);",
3
+ "1": "var(--dp-space-1, 6px);",
4
+ "2": "var(--dp-space-2, 12px);",
5
+ "3": "var(--dp-space-3, 18px);",
6
+ "4": "var(--dp-space-4, 24px);",
7
+ "5": "var(--dp-space-5, 36px);",
8
+ "6": "var(--dp-space-6, 48px);",
9
+ "7": "var(--dp-space-7, 65px);",
10
+ "8": "var(--dp-space-8, 90px);",
11
+ "9": "var(--dp-space-9, 125px);",
12
+ "10": "var(--dp-space-10, 170px);",
13
+ "11": "var(--dp-space-11, 230px);",
14
+ "12": "var(--dp-space-12, 320px);",
15
+ "13": "var(--dp-space-13, 440px);",
16
+ "14": "var(--dp-space-14, 600px);",
17
+ "px": "var(--dp-space-px, 1px);",
18
+ "0.5": "var(--dp-space-0-5, 3px);",
19
+ "1.5": "var(--dp-space-1-5, 9px);"
20
+ };
@@ -0,0 +1,10 @@
1
+ module.exports = {
2
+ "below-zero": "var(--dp-zIndex-below-zero, -10);",
3
+ "zero": "var(--dp-zIndex-zero, 0);",
4
+ "above-zero": "var(--dp-zIndex-above-zero, 10);",
5
+ "tooltip": "var(--dp-zIndex-tooltip, 2000);",
6
+ "flyout": "var(--dp-zIndex-flyout, 2100);",
7
+ "fixed": "var(--dp-zIndex-fixed, 2200);",
8
+ "modal": "var(--dp-zIndex-modal, 2300);",
9
+ "ultimate": "var(--dp-zIndex-ultimate, 10000);"
10
+ };
@@ -1,36 +0,0 @@
1
- Index: package.json
2
- IDEA additional info:
3
- Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
4
- <+>{\n \"name\": \"@demos-europe/demosplan-ui\",\n \"version\": \"0.3.19\",\n \"license\": \"MIT\",\n \"private\": false,\n \"description\": \"Vue components, Vue directives, Design Token and Scss files to build interfaces for demosPlan.\",\n \"main\": \"./dist/demosplan-ui.umd.js\",\n \"dependencies\": {\n \"@braintree/sanitize-url\": \"^7.0.0\",\n \"@floating-ui/dom\": \"^1.4.5\",\n \"@tiptap/core\": \"^2.0.3\",\n \"@tiptap/extension-bold\": \"^2.0.3\",\n \"@tiptap/extension-bullet-list\": \"^2.0.3\",\n \"@tiptap/extension-document\": \"^2.0.3\",\n \"@tiptap/extension-hard-break\": \"^2.0.3\",\n \"@tiptap/extension-heading\": \"^2.0.3\",\n \"@tiptap/extension-history\": \"^2.0.3\",\n \"@tiptap/extension-italic\": \"^2.0.3\",\n \"@tiptap/extension-link\": \"^2.0.3\",\n \"@tiptap/extension-list-item\": \"^2.0.3\",\n \"@tiptap/extension-mention\": \"^2.0.3\",\n \"@tiptap/extension-ordered-list\": \"^2.0.3\",\n \"@tiptap/extension-paragraph\": \"^2.0.3\",\n \"@tiptap/extension-strike\": \"^2.0.3\",\n \"@tiptap/extension-table\": \"^2.0.3\",\n \"@tiptap/extension-table-cell\": \"^2.0.3\",\n \"@tiptap/extension-table-header\": \"^2.0.3\",\n \"@tiptap/extension-table-row\": \"^2.0.3\",\n \"@tiptap/extension-text\": \"^2.0.3\",\n \"@tiptap/extension-underline\": \"^2.0.3\",\n \"@tiptap/pm\": \"^2.0.3\",\n \"@tiptap/suggestion\": \"^2.0.3\",\n \"@tiptap/vue-2\": \"^2.0.3\",\n \"@uppy/core\": \"^3.0.1\",\n \"@uppy/drag-drop\": \"^3.0.0\",\n \"@uppy/progress-bar\": \"^3.0.0\",\n \"@uppy/tus\": \"^3.0.1\",\n \"a11y-datepicker\": \" ^0.9.0\",\n \"dayjs\": \"^1.11.5\",\n \"dompurify\": \"^3.0.0\",\n \"fscreen\": \"^1.2.0\",\n \"ismobilejs\": \"^1.1.1\",\n \"lscache\": \"^1.3.2\",\n \"plyr\": \"^3.7.2\",\n \"qs\": \"^6.11.0\",\n \"tippy.js\": \"^6.3.7\",\n \"uuid\": \"^9.0.0\",\n \"v-tooltip\": \"2.1.3\",\n \"vue-click-outside\": \"^1.1.0\",\n \"vue-multiselect\": \"^2.1.6\",\n \"vue-omnibox\": \"^0.3.7\",\n \"vue-sliding-pagination\": \"^1.3.2\",\n \"vuedraggable\": \"^2.24.3\",\n \"vuex\": \"^3.6.2\"\n },\n \"devDependencies\": {\n \"@babel/core\": \"^7.21.4\",\n \"@babel/preset-env\": \"^7.21.4\",\n \"@babel/preset-react\": \"^7.23.3\",\n \"@babel/preset-typescript\": \"^7.21.4\",\n \"@jest/globals\": \"^29.5.0\",\n \"@jest/transform\": \"^29.5.0\",\n \"@storybook/addon-actions\": \"7.6.17\",\n \"@storybook/addon-docs\": \"7.6.17\",\n \"@storybook/addon-essentials\": \"7.6.17\",\n \"@storybook/addon-links\": \"7.6.17\",\n \"@storybook/addon-styling-webpack\": \"^0.0.6\",\n \"@storybook/vue\": \"7.6.17\",\n \"@storybook/vue-webpack5\": \"7.6.17\",\n \"@types/jest\": \"^29.5.1\",\n \"@types/qs\": \"^6.9.7\",\n \"@typescript-eslint/eslint-plugin\": \"^5.4.0\",\n \"@typescript-eslint/parser\": \"^5.4.0\",\n \"@vue/cli-plugin-typescript\": \"~5.0.0\",\n \"@vue/eslint-config-typescript\": \"^12.0.0\",\n \"@vue/test-utils\": \"^1.3.5\",\n \"@vue/vue2-jest\": \"^29.2.4\",\n \"@webpack-cli/generators\": \"^3.0.0\",\n \"autoprefixer\": \"^10.4.14\",\n \"babel-core\": \"^7.0.0-bridge.0\",\n \"babel-jest\": \"^29.5.0\",\n \"babel-loader\": \"^9.1.2\",\n \"babel-plugin-syntax-jsx\": \"^6.18.0\",\n \"babel-plugin-transform-vue-jsx\": \"^3.7.0\",\n \"css-loader\": \"^7.0.0\",\n \"glob\": \"^10.3.1\",\n \"jest\": \"^29.5.0\",\n \"jest-environment-jsdom\": \"^29.3.1\",\n \"jest-junit\": \"^16.0.0\",\n \"jest-transform-stub\": \"^2.0.0\",\n \"js-beautify\": \"^1.14.7\",\n \"mini-css-extract-plugin\": \"^2.7.0\",\n \"path\": \"^0.12.7\",\n \"postcss\": \"^8.4.26\",\n \"postcss-loader\": \"^8.0.0\",\n \"react\": \"^18.2.0\",\n \"react-dom\": \"^18.2.0\",\n \"storybook\": \"7.6.17\",\n \"storybook-addon-vue-slots\": \"^0.9.21\",\n \"string-width\": \"7.1.0\",\n \"style-dictionary\": \"^3.9.2\",\n \"style-loader\": \"^4.0.0\",\n \"tailwindcss\": \"^3.2.1\",\n \"ts-jest\": \"^29.1.0\",\n \"ts-loader\": \"^9.4.4\",\n \"typescript\": \"~5.4.2\",\n \"vue-jest\": \"^3.0.7\",\n \"vue-loader\": \"^15\",\n \"vue-template-compiler\": \"^2.7.15\",\n \"webpack\": \"^5.75.0\",\n \"webpack-bundle-analyzer\": \"^4.7.0\",\n \"webpack-cli\": \"^5.0.0\"\n },\n \"engines\": {\n \"node\": \">= 18.13.0\"\n },\n \"peerDependencies\": {\n \"prosemirror-history\": \"^1.3.0\",\n \"prosemirror-model\": \"^1.18.1\",\n \"prosemirror-schema-basic\": \"^1.2.0\",\n \"prosemirror-schema-list\": \"^1.2.2\",\n \"prosemirror-state\": \"^1.4.1\",\n \"prosemirror-tables\": \"^1.3.0\",\n \"prosemirror-utils\": \"^1.2.0\",\n \"prosemirror-view\": \"^1.28.2\",\n \"vue\": \"^2.7.15\"\n },\n \"peerDependenciesMeta\": {\n \"prosemirror-history\": {\n \"optional\": true\n },\n \"prosemirror-model\": {\n \"optional\": true\n },\n \"prosemirror-schema-basic\": {\n \"optional\": true\n },\n \"prosemirror-schema-list\": {\n \"optional\": true\n },\n \"prosemirror-state\": {\n \"optional\": true\n },\n \"prosemirror-tables\": {\n \"optional\": true\n },\n \"prosemirror-utils\": {\n \"optional\": true\n },\n \"prosemirror-view\": {\n \"optional\": true\n }\n },\n \"scripts\": {\n \"build:storybook\": \"storybook build\",\n \"build:tokens\": \"node buildTokens.js\",\n \"prepack\": \"yarn build && yarn build:tokens\",\n \"storybook\": \"storybook dev -p 6006\",\n \"build\": \"yarn test && yarn build:prod\",\n \"build:dev\": \"webpack --mode=development\",\n \"build:prod\": \"webpack --mode=production --define-process-env-node-env=production\",\n \"test\": \"jest\",\n \"watch\": \"webpack --watch\"\n }\n}\n
5
- Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
6
- <+>UTF-8
7
- ===================================================================
8
- diff --git a/package.json b/package.json
9
- --- a/package.json (revision 5c74b3474bb044112bc8eb7b0c99ecedada54235)
10
- +++ b/package.json (date 1721222454849)
11
- @@ -1,6 +1,6 @@
12
- {
13
- "name": "@demos-europe/demosplan-ui",
14
- - "version": "0.3.19",
15
- + "version": "0.3.18",
16
- "license": "MIT",
17
- "private": false,
18
- "description": "Vue components, Vue directives, Design Token and Scss files to build interfaces for demosPlan.",
19
- @@ -44,7 +44,7 @@
20
- "plyr": "^3.7.2",
21
- "qs": "^6.11.0",
22
- "tippy.js": "^6.3.7",
23
- - "uuid": "^9.0.0",
24
- + "uuid": "^10.0.0",
25
- "v-tooltip": "2.1.3",
26
- "vue-click-outside": "^1.1.0",
27
- "vue-multiselect": "^2.1.6",
28
- @@ -103,7 +103,7 @@
29
- "tailwindcss": "^3.2.1",
30
- "ts-jest": "^29.1.0",
31
- "ts-loader": "^9.4.4",
32
- - "typescript": "~5.4.2",
33
- + "typescript": "~5.5.3",
34
- "vue-jest": "^3.0.7",
35
- "vue-loader": "^15",
36
- "vue-template-compiler": "^2.7.15",
@@ -1,4 +0,0 @@
1
- <changelist name="Uncommitted_changes_before_Update_at_17_07_2024_15_21_[Changes]" date="1721222513247" recycled="true" deleted="true">
2
- <option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Update_at_17_07_2024_15_21_[Changes]/shelved.patch" />
3
- <option name="DESCRIPTION" value="Uncommitted changes before Update at 17 07 2024 15:21 [Changes]" />
4
- </changelist>