react-table-edit 0.1.5 → 0.1.6

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/index.js CHANGED
@@ -103,7 +103,7 @@ var messageHtmlBoxConfirm = (t, message, handle, data, title = "Important", btnO
103
103
  cancelButtonText: t(btnCancel),
104
104
  customClass: {
105
105
  confirmButton: "btn btn-primary",
106
- cancelButton: "btn btn-danger ms-1"
106
+ cancelButton: "btn btn-outline-danger ms-1"
107
107
  },
108
108
  buttonsStyling: false
109
109
  }).then(async (result) => {
@@ -124,7 +124,7 @@ var messageHtmlBoxError = (t, message, title = "Important", btnCancel = "Ok") =>
124
124
  cancelButtonText: t(btnCancel),
125
125
  width: "auto",
126
126
  customClass: {
127
- cancelButton: "btn btn-danger ms-1"
127
+ cancelButton: "btn btn-outline-danger ms-1"
128
128
  },
129
129
  buttonsStyling: false
130
130
  });
@@ -139,7 +139,7 @@ var messageBoxConfirmDelete = (t, handle, data) => {
139
139
  cancelButtonText: t("Cancel"),
140
140
  customClass: {
141
141
  confirmButton: "btn btn-primary",
142
- cancelButton: "btn btn-danger ms-1"
142
+ cancelButton: "btn btn-outline-danger ms-1"
143
143
  },
144
144
  buttonsStyling: false
145
145
  }).then(async (result) => {
@@ -158,7 +158,7 @@ var messageBoxConfirm = (t, handle, data, message, title = "Important", btnOk =
158
158
  cancelButtonText: t(btnCancel),
159
159
  customClass: {
160
160
  confirmButton: "btn btn-primary",
161
- cancelButton: "btn btn-danger ms-1"
161
+ cancelButton: "btn btn-outline-danger ms-1"
162
162
  },
163
163
  buttonsStyling: false
164
164
  }).then(async (result) => {
@@ -176,7 +176,7 @@ var messageBoxError = (t, message, title = "Important", btnCancel = "Ok") => {
176
176
  showConfirmButton: false,
177
177
  cancelButtonText: t(btnCancel),
178
178
  customClass: {
179
- cancelButton: "btn btn-danger ms-1"
179
+ cancelButton: "btn btn-outline-danger ms-1"
180
180
  },
181
181
  buttonsStyling: false
182
182
  });
@@ -208,7 +208,7 @@ var messageBoxConfirm2 = async (t, data, data2, message) => {
208
208
  cancelButtonText: t("Cancel"),
209
209
  customClass: {
210
210
  confirmButton: "btn btn-primary",
211
- cancelButton: "btn btn-danger ms-1"
211
+ cancelButton: "btn btn-outline-danger ms-1"
212
212
  },
213
213
  buttonsStyling: false
214
214
  }).then((result) => {
package/dist/index.mjs CHANGED
@@ -59,7 +59,7 @@ var messageHtmlBoxConfirm = (t, message, handle, data, title = "Important", btnO
59
59
  cancelButtonText: t(btnCancel),
60
60
  customClass: {
61
61
  confirmButton: "btn btn-primary",
62
- cancelButton: "btn btn-danger ms-1"
62
+ cancelButton: "btn btn-outline-danger ms-1"
63
63
  },
64
64
  buttonsStyling: false
65
65
  }).then(async (result) => {
@@ -80,7 +80,7 @@ var messageHtmlBoxError = (t, message, title = "Important", btnCancel = "Ok") =>
80
80
  cancelButtonText: t(btnCancel),
81
81
  width: "auto",
82
82
  customClass: {
83
- cancelButton: "btn btn-danger ms-1"
83
+ cancelButton: "btn btn-outline-danger ms-1"
84
84
  },
85
85
  buttonsStyling: false
86
86
  });
@@ -95,7 +95,7 @@ var messageBoxConfirmDelete = (t, handle, data) => {
95
95
  cancelButtonText: t("Cancel"),
96
96
  customClass: {
97
97
  confirmButton: "btn btn-primary",
98
- cancelButton: "btn btn-danger ms-1"
98
+ cancelButton: "btn btn-outline-danger ms-1"
99
99
  },
100
100
  buttonsStyling: false
101
101
  }).then(async (result) => {
@@ -114,7 +114,7 @@ var messageBoxConfirm = (t, handle, data, message, title = "Important", btnOk =
114
114
  cancelButtonText: t(btnCancel),
115
115
  customClass: {
116
116
  confirmButton: "btn btn-primary",
117
- cancelButton: "btn btn-danger ms-1"
117
+ cancelButton: "btn btn-outline-danger ms-1"
118
118
  },
119
119
  buttonsStyling: false
120
120
  }).then(async (result) => {
@@ -132,7 +132,7 @@ var messageBoxError = (t, message, title = "Important", btnCancel = "Ok") => {
132
132
  showConfirmButton: false,
133
133
  cancelButtonText: t(btnCancel),
134
134
  customClass: {
135
- cancelButton: "btn btn-danger ms-1"
135
+ cancelButton: "btn btn-outline-danger ms-1"
136
136
  },
137
137
  buttonsStyling: false
138
138
  });
@@ -164,7 +164,7 @@ var messageBoxConfirm2 = async (t, data, data2, message) => {
164
164
  cancelButtonText: t("Cancel"),
165
165
  customClass: {
166
166
  confirmButton: "btn btn-primary",
167
- cancelButton: "btn btn-danger ms-1"
167
+ cancelButton: "btn btn-outline-danger ms-1"
168
168
  },
169
169
  buttonsStyling: false
170
170
  }).then((result) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-table-edit",
3
3
  "license": "MIT",
4
- "version": "0.1.5",
4
+ "version": "0.1.6",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",