nuxt-hs-ui 2.0.36 → 2.0.37

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/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=3.15.0"
6
6
  },
7
- "version": "2.0.36",
7
+ "version": "2.0.37",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "0.8.4",
10
10
  "unbuild": "2.0.0"
@@ -14,8 +14,8 @@ const alertTv = tv({
14
14
  base: [
15
15
  //
16
16
  `p-2`,
17
- "bg-white border-2 border-[var(--main-color)] text-[color-mix(in_srgb,_var(--main-color)_,_#000_30%)]",
18
- "rounded-xl overflow-hidden",
17
+ "bg-white border border-[var(--main-color)] text-[color-mix(in_srgb,_var(--main-color)_,_#000_30%)]",
18
+ "rounded overflow-hidden",
19
19
  ],
20
20
  bg: "absolute inset-0 bg-[var(--main-color)] opacity-10",
21
21
  inner: "",
@@ -40,7 +40,7 @@ export declare const TabulatorInitEmitFunc: () => {
40
40
  tableRefreshStopToggle: () => void;
41
41
  };
42
42
  export declare const Option: (option?: any) => any;
43
- export declare const TabulatorFunc: {
43
+ export declare const Func: {
44
44
  cellMouseOut: (e: any) => void;
45
45
  cellMouseUp: (e: any) => void;
46
46
  cellMouseDown: (e: any) => void;
@@ -75,19 +75,7 @@ export declare const GetListTableBtnSetting: (arg: {
75
75
  TabulatorFunc: typeof TabulatorFunc;
76
76
  emit: any;
77
77
  size: string;
78
- }) => {
79
- title: string;
80
- formatter: (cell: any) => string;
81
- cellClick: (e: any, cell: any) => void;
82
- cellMouseUp: (e: any) => void;
83
- cellMouseOut: (e: any) => void;
84
- cellMouseDown: (e: any) => void;
85
- headerSort: boolean;
86
- download: boolean;
87
- field: string | undefined;
88
- width: string | undefined;
89
- minWidth: string | undefined;
90
- };
78
+ }) => any;
91
79
  /** List用 並べ替え処理 */
92
80
  export declare const ListOriginSortItems: <T>(arg: {
93
81
  a: T;
@@ -125,15 +125,15 @@ export const Option = (option) => {
125
125
  pagination: {
126
126
  page_size: "Page Size ",
127
127
  page_title: "Show Page",
128
- first: "",
128
+ first: "<<",
129
129
  // text for the first page button
130
130
  first_title: "First",
131
131
  // tooltip text for the first page button
132
- last: "",
132
+ last: ">>",
133
133
  last_title: "Last",
134
- prev: "",
134
+ prev: "<",
135
135
  prev_title: "Prev ",
136
- next: "",
136
+ next: ">",
137
137
  next_title: "Next",
138
138
  all: "All",
139
139
  counter: {
@@ -167,7 +167,7 @@ export const Option = (option) => {
167
167
  option
168
168
  );
169
169
  };
170
- export const TabulatorFunc = {
170
+ export const Func = {
171
171
  cellMouseOut,
172
172
  cellMouseUp,
173
173
  cellMouseDown,
@@ -206,14 +206,14 @@ export const GetListTableBtnSetting = (arg) => {
206
206
  mode,
207
207
  actionBtnTheme,
208
208
  componentName,
209
- TabulatorFunc: TabulatorFunc2,
209
+ TabulatorFunc,
210
210
  emit,
211
211
  size
212
212
  } = arg;
213
213
  const storeMultiLang = useHsMultiLang();
214
214
  const tx = storeMultiLang.tx;
215
215
  return {
216
- ...TabulatorFunc2.ColumnsDisplay("", 100),
216
+ ...TabulatorFunc.ColumnsDisplay("", 100),
217
217
  title: ``,
218
218
  formatter: (cell) => {
219
219
  const row = cell.getRow().getData();
@@ -249,9 +249,9 @@ ${icon}${caption}
249
249
  emit("select-private-id", row.pId);
250
250
  }
251
251
  },
252
- cellMouseUp: TabulatorFunc2.cellMouseUp,
253
- cellMouseOut: TabulatorFunc2.cellMouseOut,
254
- cellMouseDown: TabulatorFunc2.cellMouseDown
252
+ cellMouseUp: TabulatorFunc.cellMouseUp,
253
+ cellMouseOut: TabulatorFunc.cellMouseOut,
254
+ cellMouseDown: TabulatorFunc.cellMouseDown
255
255
  };
256
256
  };
257
257
  export const ListOriginSortItems = (arg) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-hs-ui",
3
- "version": "2.0.36",
3
+ "version": "2.0.37",
4
4
  "description": "My new Nuxt module",
5
5
  "repository": "https://github.com/hare-systems-ryo/nuxt-hs-ui",
6
6
  "license": "MIT",