@winchsa/ui 0.1.9 → 0.1.11

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
@@ -120,28 +120,13 @@ This script compiles the UI package, generates a tarball, and installs it into y
120
120
 
121
121
  ## Release Process
122
122
 
123
- This project uses a **tag-based release system** that automatically publishes to npm only when you push version tags. This ensures you have full control over when releases are published.
123
+ The `bump` command in `package.json` does the following:
124
124
 
125
+ 1. `pnpm version patch`: Increments the patch version of the package (e.g., from `0.1.9` to `0.1.10`).
126
+ 2. `pnpm run build`: Builds the project.
127
+ 3. `git add .`: Stages all changes for commit.
128
+ 4. `git commit -m "chore: release v$(node -p \"require('./package.json').version\")"`: Creates a new commit with a message indicating a release, including the new version number.
125
129
 
126
- ### **Option 1: Using the Release Script (Recommended)**
127
- ```bash
128
- # Complete automated release process
129
- pnpm run release
130
- ```
131
-
132
- ### **Option 2: Manual Tag-Based Release**
133
- ```bash
134
- # 1. Update version in package.json
135
- # 2. Build the package
136
- pnpm run build
137
-
138
- # 3. Commit your changes
139
- git add .
140
- git commit -m "feat: new features"
141
-
142
- # 4. Create and push a tag
143
- git tag v1.2.3
144
- git push origin master --tags
130
+ **Publishing**
145
131
 
146
- # GitHub Actions will automatically trigger and publish to npm
147
- ```
132
+ After running `pnpm run bump`, go to **GitHub** **Releases** and create a new release based on the commit generated. This will trigger the `publish.yaml` GitHub Actions workflow, which handles the actual publishing process
@@ -36,7 +36,7 @@ const itemsBreadcrumb = computed(() => props.items.map((item) => {
36
36
 
37
37
  <style scoped>
38
38
  :deep(.v-breadcrumbs-item--active.v-breadcrumbs-item--disabled) a {
39
- pointer-events: all;
39
+ pointer-events: all !important;
40
40
  user-select: text !important;
41
41
  cursor: text !important;
42
42
  }
@@ -43,15 +43,15 @@ const editModal = defineModel("editModal", { type: Boolean });
43
43
 
44
44
  <style scoped>
45
45
  :deep(.v-overlay__content) {
46
- margin: 0px;
47
- max-height: 100%;
48
- height: 100%;
46
+ margin: 0px !important;
47
+ max-height: 100% !important;
48
+ height: 100% !important;
49
49
  }
50
50
  :deep(.v-overlay__content).left {
51
- left: 0;
51
+ left: 0 !important;
52
52
  }
53
53
  :deep(.v-overlay__content).right {
54
- right: 0;
54
+ right: 0 !important;
55
55
  }
56
56
 
57
57
  :deep(.v-tabs) {
@@ -32,8 +32,8 @@ const scrollToTop = () => {
32
32
  <style>
33
33
  .scroll-to-top {
34
34
  position: fixed !important;
35
- z-index: 999;
36
- inset-block-end: 5%;
37
- inset-inline-end: 25px;
35
+ z-index: 999 !important;
36
+ inset-block-end: 5% !important;
37
+ inset-inline-end: 25px !important;
38
38
  }
39
39
  </style>
@@ -39,12 +39,12 @@ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
39
39
  triggerRefresh: typeof triggerRefresh;
40
40
  triggeredRemove: typeof triggeredRemove;
41
41
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
42
- collapsed: (isContentCollapsed: boolean) => any;
43
42
  refresh: (hideOverlay: () => void) => any;
43
+ collapsed: (isContentCollapsed: boolean) => any;
44
44
  trash: () => any;
45
45
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
46
- onCollapsed?: ((isContentCollapsed: boolean) => any) | undefined;
47
46
  onRefresh?: ((hideOverlay: () => void) => any) | undefined;
47
+ onCollapsed?: ((isContentCollapsed: boolean) => any) | undefined;
48
48
  onTrash?: (() => any) | undefined;
49
49
  }>, {
50
50
  title: string;
@@ -55,12 +55,12 @@ declare const __VLS_self: import("vue").DefineComponent<__VLS_Props, {
55
55
  actionRemove: boolean;
56
56
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
57
57
  declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
58
- collapsed: (isContentCollapsed: boolean) => any;
59
58
  refresh: (hideOverlay: () => void) => any;
59
+ collapsed: (isContentCollapsed: boolean) => any;
60
60
  trash: () => any;
61
61
  }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
62
- onCollapsed?: ((isContentCollapsed: boolean) => any) | undefined;
63
62
  onRefresh?: ((hideOverlay: () => void) => any) | undefined;
63
+ onCollapsed?: ((isContentCollapsed: boolean) => any) | undefined;
64
64
  onTrash?: (() => any) | undefined;
65
65
  }>, {
66
66
  title: string;
@@ -550,7 +550,7 @@ declare const refSearchList: import("vue").Ref<({
550
550
  } & {
551
551
  item: unknown;
552
552
  }) => import("vue").VNodeChild) | undefined;
553
- append?: ((arg: {
553
+ prepend?: ((arg: {
554
554
  isActive: boolean;
555
555
  isSelected: boolean;
556
556
  isIndeterminate: boolean;
@@ -558,7 +558,7 @@ declare const refSearchList: import("vue").Ref<({
558
558
  } & {
559
559
  item: unknown;
560
560
  }) => import("vue").VNodeChild) | undefined;
561
- prepend?: ((arg: {
561
+ append?: ((arg: {
562
562
  isActive: boolean;
563
563
  isSelected: boolean;
564
564
  isIndeterminate: boolean;
@@ -607,7 +607,7 @@ declare const refSearchList: import("vue").Ref<({
607
607
  } & {
608
608
  item: unknown;
609
609
  }) => import("vue").VNodeChild) | undefined;
610
- append?: false | ((arg: {
610
+ prepend?: false | ((arg: {
611
611
  isActive: boolean;
612
612
  isSelected: boolean;
613
613
  isIndeterminate: boolean;
@@ -615,7 +615,7 @@ declare const refSearchList: import("vue").Ref<({
615
615
  } & {
616
616
  item: unknown;
617
617
  }) => import("vue").VNodeChild) | undefined;
618
- prepend?: false | ((arg: {
618
+ append?: false | ((arg: {
619
619
  isActive: boolean;
620
620
  isSelected: boolean;
621
621
  isIndeterminate: boolean;
@@ -664,7 +664,7 @@ declare const refSearchList: import("vue").Ref<({
664
664
  } & {
665
665
  item: unknown;
666
666
  }) => import("vue").VNodeChild) | undefined;
667
- "v-slot:append"?: false | ((arg: {
667
+ "v-slot:prepend"?: false | ((arg: {
668
668
  isActive: boolean;
669
669
  isSelected: boolean;
670
670
  isIndeterminate: boolean;
@@ -672,7 +672,7 @@ declare const refSearchList: import("vue").Ref<({
672
672
  } & {
673
673
  item: unknown;
674
674
  }) => import("vue").VNodeChild) | undefined;
675
- "v-slot:prepend"?: false | ((arg: {
675
+ "v-slot:append"?: false | ((arg: {
676
676
  isActive: boolean;
677
677
  isSelected: boolean;
678
678
  isIndeterminate: boolean;
@@ -721,7 +721,7 @@ declare const refSearchList: import("vue").Ref<({
721
721
  } & {
722
722
  item: unknown;
723
723
  }) => import("vue").VNode[];
724
- append: (arg: {
724
+ prepend: (arg: {
725
725
  isActive: boolean;
726
726
  isSelected: boolean;
727
727
  isIndeterminate: boolean;
@@ -729,7 +729,7 @@ declare const refSearchList: import("vue").Ref<({
729
729
  } & {
730
730
  item: unknown;
731
731
  }) => import("vue").VNode[];
732
- prepend: (arg: {
732
+ append: (arg: {
733
733
  isActive: boolean;
734
734
  isSelected: boolean;
735
735
  isIndeterminate: boolean;
@@ -1299,7 +1299,7 @@ declare const refSearchList: import("vue").Ref<({
1299
1299
  } & {
1300
1300
  item: unknown;
1301
1301
  }) => import("vue").VNodeChild) | undefined;
1302
- append?: ((arg: {
1302
+ prepend?: ((arg: {
1303
1303
  isActive: boolean;
1304
1304
  isSelected: boolean;
1305
1305
  isIndeterminate: boolean;
@@ -1307,7 +1307,7 @@ declare const refSearchList: import("vue").Ref<({
1307
1307
  } & {
1308
1308
  item: unknown;
1309
1309
  }) => import("vue").VNodeChild) | undefined;
1310
- prepend?: ((arg: {
1310
+ append?: ((arg: {
1311
1311
  isActive: boolean;
1312
1312
  isSelected: boolean;
1313
1313
  isIndeterminate: boolean;
@@ -1356,7 +1356,7 @@ declare const refSearchList: import("vue").Ref<({
1356
1356
  } & {
1357
1357
  item: unknown;
1358
1358
  }) => import("vue").VNodeChild) | undefined;
1359
- append?: false | ((arg: {
1359
+ prepend?: false | ((arg: {
1360
1360
  isActive: boolean;
1361
1361
  isSelected: boolean;
1362
1362
  isIndeterminate: boolean;
@@ -1364,7 +1364,7 @@ declare const refSearchList: import("vue").Ref<({
1364
1364
  } & {
1365
1365
  item: unknown;
1366
1366
  }) => import("vue").VNodeChild) | undefined;
1367
- prepend?: false | ((arg: {
1367
+ append?: false | ((arg: {
1368
1368
  isActive: boolean;
1369
1369
  isSelected: boolean;
1370
1370
  isIndeterminate: boolean;
@@ -1413,7 +1413,7 @@ declare const refSearchList: import("vue").Ref<({
1413
1413
  } & {
1414
1414
  item: unknown;
1415
1415
  }) => import("vue").VNodeChild) | undefined;
1416
- "v-slot:append"?: false | ((arg: {
1416
+ "v-slot:prepend"?: false | ((arg: {
1417
1417
  isActive: boolean;
1418
1418
  isSelected: boolean;
1419
1419
  isIndeterminate: boolean;
@@ -1421,7 +1421,7 @@ declare const refSearchList: import("vue").Ref<({
1421
1421
  } & {
1422
1422
  item: unknown;
1423
1423
  }) => import("vue").VNodeChild) | undefined;
1424
- "v-slot:prepend"?: false | ((arg: {
1424
+ "v-slot:append"?: false | ((arg: {
1425
1425
  isActive: boolean;
1426
1426
  isSelected: boolean;
1427
1427
  isIndeterminate: boolean;
@@ -1470,7 +1470,7 @@ declare const refSearchList: import("vue").Ref<({
1470
1470
  } & {
1471
1471
  item: unknown;
1472
1472
  }) => import("vue").VNode[];
1473
- append: (arg: {
1473
+ prepend: (arg: {
1474
1474
  isActive: boolean;
1475
1475
  isSelected: boolean;
1476
1476
  isIndeterminate: boolean;
@@ -1478,7 +1478,7 @@ declare const refSearchList: import("vue").Ref<({
1478
1478
  } & {
1479
1479
  item: unknown;
1480
1480
  }) => import("vue").VNode[];
1481
- prepend: (arg: {
1481
+ append: (arg: {
1482
1482
  isActive: boolean;
1483
1483
  isSelected: boolean;
1484
1484
  isIndeterminate: boolean;
@@ -93,6 +93,6 @@ const handleMenuToggle = ($event) => {
93
93
 
94
94
  <style scoped>
95
95
  .hide-arrow :deep(.v-field__append-inner) {
96
- display: none;
96
+ display: none !important;
97
97
  }
98
98
  </style>
@@ -224,5 +224,5 @@ watch(zoomLevel, async (newZoom) => {
224
224
  </template>
225
225
 
226
226
  <style scoped>
227
- :deep(.cropper-container){width:auto!important}:global(.cropper-line),:global(.cropper-point){background-color:rgb(var(--v-theme-primary))}:global(.cropper-view-box){outline-color:rgba(var(--v-theme-primary),.75)}
227
+ :deep(.cropper-container){width:auto!important}:global(.cropper-line),:global(.cropper-point){background-color:rgb(var(--v-theme-primary))!important}:global(.cropper-view-box){outline-color:rgba(var(--v-theme-primary),.75)!important}
228
228
  </style>
@@ -755,5 +755,5 @@ defineExpose({
755
755
  </style>
756
756
 
757
757
  <style scoped>
758
- :deep(.v-list-item){min-height:auto}
758
+ :deep(.v-list-item){min-height:auto!important}
759
759
  </style>
@@ -262,10 +262,10 @@ onBeforeUnmount(() => {
262
262
 
263
263
  <style scoped>
264
264
  :deep(.v-input__control) .v-field__input {
265
- padding-inline-start: 14px;
265
+ padding-inline-start: 14px !important;
266
266
  }
267
267
  :deep(.v-input__control) .v-field__input input {
268
- padding-inline-start: 0px;
268
+ padding-inline-start: 0px !important;
269
269
  font-size: 13px !important;
270
270
  }
271
271
  :deep(.v-input__control) .v-field .v-field__clearable {
@@ -116,28 +116,28 @@ onUpdated(() => {
116
116
 
117
117
  <style scoped>
118
118
  .secondary-table table {
119
- width: 100%;
120
- border-collapse: collapse;
121
- border-spacing: 0;
122
- border: 1px solid rgb(var(--v-theme-silver));
123
- font-size: 13px;
119
+ width: 100% !important;
120
+ border-collapse: collapse !important;
121
+ border-spacing: 0 !important;
122
+ border: 1px solid rgb(var(--v-theme-silver)) !important;
123
+ font-size: 13px !important;
124
124
  }
125
125
  .secondary-table table th {
126
- padding: 12px 16px;
127
- border: 1px solid rgb(var(--v-theme-silver));
126
+ padding: 12px 16px !important;
127
+ border: 1px solid rgb(var(--v-theme-silver)) !important;
128
128
  background-color: rgb(var(--v-theme-gray-200)) !important;
129
- text-align: start;
129
+ text-align: start !important;
130
130
  color: rgb(var(--v-theme-on-surface)) !important;
131
131
  }
132
132
  .secondary-table table td {
133
- padding: 16px;
134
- border: 1px solid rgb(var(--v-theme-silver));
135
- text-align: start;
133
+ padding: 16px !important;
134
+ border: 1px solid rgb(var(--v-theme-silver)) !important;
135
+ text-align: start !important;
136
136
  color: rgb(var(--v-theme-on-surface)) !important;
137
137
  }
138
138
 
139
139
  .active-cell {
140
- background-color: rgba(var(--v-theme-primary), 0.15);
140
+ background-color: rgba(var(--v-theme-primary), 0.15) !important;
141
141
  }
142
142
 
143
143
  .responsive-table table th {
@@ -147,6 +147,6 @@ onUpdated(() => {
147
147
  }
148
148
 
149
149
  .static-table-header-first-column {
150
- width: 50px;
150
+ width: 50px !important;
151
151
  }
152
152
  </style>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@winchsa/ui",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -64,6 +64,6 @@
64
64
  "build": "unbuild",
65
65
  "lint": "eslint \"**/*.{ts,vue,mjs,json}\"",
66
66
  "lint:fix": "eslint \"**/*.{ts,vue,mjs,json}\" --fix",
67
- "release": "pnpm version patch && pnpm run build && git add . && git commit -m \"chore: release v$(node -p \"require('./package.json').version\")\" && git tag v$(node -p \"require('./package.json').version\") && git push origin master --tags && pnpm publish"
67
+ "bump": "pnpm version patch && pnpm run build && git add . && git commit -m \"chore: release v$(node -p \"require('./package.json').version\")\""
68
68
  }
69
69
  }