@dative-gpi/foundation-shared-components 1.0.79 → 1.0.80
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.
|
@@ -832,7 +832,7 @@ export default defineComponent({
|
|
|
832
832
|
mode: {
|
|
833
833
|
type: String as PropType<"table" | "iterator">,
|
|
834
834
|
required: false,
|
|
835
|
-
default: "
|
|
835
|
+
default: "table"
|
|
836
836
|
},
|
|
837
837
|
disableTable: {
|
|
838
838
|
type: Boolean,
|
|
@@ -894,7 +894,7 @@ export default defineComponent({
|
|
|
894
894
|
const innerSearch: Ref<string | null> = ref(null);
|
|
895
895
|
const innerRowsPerPage = ref(props.rowsPerPage);
|
|
896
896
|
const innerSortBy = ref(props.sortBy);
|
|
897
|
-
const innerMode = ref(props.mode);
|
|
897
|
+
const innerMode = ref(props.disableTable ? "iterator" : props.disableIterator ? "table" : props.mode);
|
|
898
898
|
const innerPage = ref(props.page);
|
|
899
899
|
const showFilters = ref(false);
|
|
900
900
|
const resetable = ref(false);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dative-gpi/foundation-shared-components",
|
|
3
3
|
"sideEffects": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.80",
|
|
5
5
|
"description": "",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@dative-gpi/foundation-shared-domain": "1.0.
|
|
14
|
-
"@dative-gpi/foundation-shared-services": "1.0.
|
|
13
|
+
"@dative-gpi/foundation-shared-domain": "1.0.80",
|
|
14
|
+
"@dative-gpi/foundation-shared-services": "1.0.80"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
17
|
"@dative-gpi/bones-ui": "^1.0.0",
|
|
@@ -35,5 +35,5 @@
|
|
|
35
35
|
"sass": "1.71.1",
|
|
36
36
|
"sass-loader": "13.3.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "4a15362451742764c98999b9eace312e162cd193"
|
|
39
39
|
}
|