vue3-time-duration 0.0.9 → 0.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.
package/README.md CHANGED
@@ -13,7 +13,6 @@ npm install --save vue3-time-duration
13
13
  ```html
14
14
  <template>
15
15
  <div>
16
- <!-- INPUTS -->
17
16
  <vue3-time-duration v-model="duration" />
18
17
  </div>
19
18
  </template>
@@ -28,7 +27,6 @@ npm install --save vue3-time-duration
28
27
 
29
28
  data() {
30
29
  return {
31
- // Phone
32
30
  duration: {
33
31
  start: "10:00",
34
32
  end: "10:05"
@@ -50,7 +48,6 @@ npm install --save vue3-time-duration
50
48
 
51
49
  <template>
52
50
  <div>
53
- <!-- INPUTS -->
54
51
  <vue3-time-duration v-model="duration" />
55
52
  </div>
56
53
  </template>
@@ -65,7 +62,7 @@ npm install --save vue3-time-duration
65
62
  --bg-selected: #f3f3f3;
66
63
  --color-font: #333;
67
64
  --color-border: rgb(223, 230, 238);
68
- --size-font: '14px';
65
+ --size-font: 14px;
69
66
  }
70
67
  ```
71
68
 
@@ -1 +1 @@
1
- .icon-x-mark[data-v-7f1f4e49]{display:flex}.ui-widget-time[data-v-157c9b55]{position:relative}.ui-widget-time__w[data-v-157c9b55]{display:flex;align-items:center;justify-content:space-between;border:1px solid var(--color-border);border-radius:12px;padding:8px 8px 8px 2px;background-color:var(--bg-element);height:24px}.ui-widget-time__w-input[data-v-157c9b55]{background-color:var(--bg-element);border:1px solid var(--bg-element);color:var(--color-font);font-size:var(--size-font);margin-left:3px;width:100%}.ui-widget-time__w-input[data-v-157c9b55]:focus{outline-color:var(--bg-element);outline-style:solid}.ui-widget-time__w-icon[data-v-157c9b55]{cursor:pointer}.ui-widget-time__dropdown[data-v-157c9b55]{position:absolute;left:0;right:0;max-height:150px;margin:4px;padding:6px;background:#fff;z-index:1;border:1px solid #f5f5f5;border-radius:6px;box-shadow:0 0 8px 4px #0000000a;overflow-y:auto}.ui-widget-time__dropdown-item[data-v-157c9b55]{padding:6px 4px;cursor:pointer;font-size:var(--size-font)}.ui-widget-time__dropdown-item_selected[data-v-157c9b55]{background:var(--bg-selected);border-radius:6px}body{margin:0;padding:0;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vue3-time-duration{--bg-element: #ffffff;--bg-selected: #f3f3f3;--color-border: rgb(223, 230, 238);--color-font: #333;--size-font: "14px"}.vue3-time-duration__t{display:flex;align-items:center}.vue3-time-duration__t-left{margin-right:6px}.vue3-time-duration__t-right{margin-left:6px}
1
+ .icon-x-mark[data-v-7f1f4e49]{display:flex}.ui-widget-time[data-v-157c9b55]{position:relative}.ui-widget-time__w[data-v-157c9b55]{display:flex;align-items:center;justify-content:space-between;border:1px solid var(--color-border);border-radius:12px;padding:8px 8px 8px 2px;background-color:var(--bg-element);height:24px}.ui-widget-time__w-input[data-v-157c9b55]{background-color:var(--bg-element);border:1px solid var(--bg-element);color:var(--color-font);font-size:var(--size-font);margin-left:3px;width:100%}.ui-widget-time__w-input[data-v-157c9b55]:focus{outline-color:var(--bg-element);outline-style:solid}.ui-widget-time__w-icon[data-v-157c9b55]{cursor:pointer}.ui-widget-time__dropdown[data-v-157c9b55]{position:absolute;left:0;right:0;max-height:150px;margin:4px;padding:6px;background:#fff;z-index:1;border:1px solid #f5f5f5;border-radius:6px;box-shadow:0 0 8px 4px #0000000a;overflow-y:auto}.ui-widget-time__dropdown-item[data-v-157c9b55]{padding:6px 4px;cursor:pointer;font-size:var(--size-font)}.ui-widget-time__dropdown-item_selected[data-v-157c9b55]{background:var(--bg-selected);border-radius:6px}body{margin:0;padding:0;font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vue3-time-duration{--bg-element: #ffffff;--bg-selected: #f3f3f3;--color-border: rgb(223, 230, 238);--color-font: #333;--size-font: 14px}.vue3-time-duration__t{display:flex;align-items:center}.vue3-time-duration__t-left{margin-right:6px}.vue3-time-duration__t-right{margin-left:6px}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vue3-time-duration",
3
3
  "description": "UI Widget to set a time duration. This is a component for vue 3",
4
- "version": "0.0.9",
4
+ "version": "0.1.1",
5
5
  "private": false,
6
6
  "author": "Egor Lentarev",
7
7
  "license": "MIT",