@cocreate/organizations 1.1.60 → 1.1.61
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [1.1.61](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.1.60...v1.1.61) (2022-01-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update class overflow:overlay to overflow:auto ([1994a67](https://github.com/CoCreate-app/CoCreate-organizations/commit/1994a6754c5d29e858dac18e6fe4f4e7f01229d0))
|
|
7
|
+
|
|
1
8
|
## [1.1.60](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.1.59...v1.1.60) (2022-01-01)
|
|
2
9
|
|
|
3
10
|
|
package/demo/index.html
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
</head>
|
|
25
25
|
<body>
|
|
26
26
|
|
|
27
|
-
<div class="main-container justify-content:center align-items:center overflow:
|
|
27
|
+
<div class="main-container justify-content:center align-items:center overflow:auto display:flex flex-wrap:wrap position:absolute width:100% height:100%">
|
|
28
28
|
<div class="display:flex flex-wrap:wrap align-items:flex-end justify-content:center align-items:center">
|
|
29
29
|
<div class="flex-grow:1 height:fit-content width:55% min-width:300px max-width:600px margin:10px">
|
|
30
30
|
<form realtime="false">
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
<input placeholder="Search" template_id="industries">
|
|
76
76
|
<ul fetch-collection="industries"
|
|
77
77
|
template_id="industries"
|
|
78
|
-
class="options overflow:
|
|
78
|
+
class="options overflow:auto">
|
|
79
79
|
<li class="template option" template_id="industries" value="{{data._id}}">
|
|
80
80
|
<h4 collection="industries" document_id="{{data._id}}" name="name">industry name</h4>
|
|
81
81
|
</li>
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
content_id="content"
|
|
14
14
|
scroll="sticky-nav, hide-nav" scroll-up="5" scroll-down="5">
|
|
15
15
|
|
|
16
|
-
<ul class="overflow:
|
|
16
|
+
<ul class="overflow:auto display:inline-flex direction:rtl font-size:20px align-items:center list-style-type:none width:100% height:50px">
|
|
17
17
|
<li class="margin-right:15px">
|
|
18
18
|
<a class="btn-modal-close"><i class="fas fa-times"></i></a>
|
|
19
19
|
</li>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<!-- CoCreate Favicon -->
|
|
7
7
|
<link rel="icon" href="https://cdn.cocreate.app/favicon.ico" type="image/ico" sizes="16x16">
|
|
8
8
|
</head>
|
|
9
|
-
<body class="width:fit-content overflow:
|
|
9
|
+
<body class="width:fit-content overflow:auto">
|
|
10
10
|
|
|
11
11
|
<!-- Main Content -->
|
|
12
12
|
<div content_id="content" class="padding:5px">
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<!-- CoCreate Favicon -->
|
|
7
7
|
<link rel="icon" href="https://cdn.cocreate.app/favicon.ico" type="image/ico" sizes="16x16">
|
|
8
8
|
</head>
|
|
9
|
-
<body class="width:fit-content overflow:
|
|
9
|
+
<body class="width:fit-content overflow:auto">
|
|
10
10
|
|
|
11
11
|
<!-- Main Content -->
|
|
12
12
|
<div content_id="content" class="padding:5px">
|
package/package.json
CHANGED