@cocreate/organizations 1.1.60 → 1.1.64
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,31 @@
|
|
|
1
|
+
## [1.1.64](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.1.63...v1.1.64) (2022-02-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* bump dependency versions ([2e16b78](https://github.com/CoCreate-app/CoCreate-organizations/commit/2e16b781643067155ac4fba41ee23aaa4579ccaa))
|
|
7
|
+
|
|
8
|
+
## [1.1.63](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.1.62...v1.1.63) (2022-02-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* replaced show and hide class hidden with attribute hidden ([7140dbc](https://github.com/CoCreate-app/CoCreate-organizations/commit/7140dbc743177a027e321ecf88ec01f13abdc866))
|
|
14
|
+
|
|
15
|
+
## [1.1.62](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.1.61...v1.1.62) (2022-02-01)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* update dependency versions ([01c5da2](https://github.com/CoCreate-app/CoCreate-organizations/commit/01c5da285c9d395513b157752ae82fc874a0f0af))
|
|
21
|
+
|
|
22
|
+
## [1.1.61](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.1.60...v1.1.61) (2022-01-16)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* update class overflow:overlay to overflow:auto ([1994a67](https://github.com/CoCreate-app/CoCreate-organizations/commit/1994a6754c5d29e858dac18e6fe4f4e7f01229d0))
|
|
28
|
+
|
|
1
29
|
## [1.1.60](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.1.59...v1.1.60) (2022-01-01)
|
|
2
30
|
|
|
3
31
|
|
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>
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
|
|
11
|
-
<div id="modal-viewport"
|
|
11
|
+
<div id="modal-viewport" hidden></div>
|
|
12
12
|
<div class="nav display:flex align-items:center background:whitesmoke"
|
|
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/docs/index.html
CHANGED
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
<div class="container svColumn overflow:hidden card position:relative border-radius:2px width:auto height:100%" id="sandbox">
|
|
104
104
|
<div class="font-size:20px position:absolute top:10px right:10px opacity:0.6">
|
|
105
105
|
<a class="margin-right:10px" id="code" show="#preview" hide="#code, #view"><i class="far fa-eye"></i></a>
|
|
106
|
-
<a class="margin-right:10px
|
|
106
|
+
<a class="margin-right:10px" id="preview" show="#code, #view" hide="#preview" hidden><i class="fas fa-code"></i></a>
|
|
107
107
|
<a class="margin-right:5px" fullscreen target="#playground"><i class="fas fa-expand"></i></a>
|
|
108
108
|
</div>
|
|
109
109
|
<div class="svRow">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/organizations",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.64",
|
|
4
4
|
"description": "A simple organizations component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"organizations",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"webpack-log": "^3.0.1"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@cocreate/actions": "^1.3.
|
|
65
|
-
"@cocreate/crud-client": "^1.4.
|
|
66
|
-
"@cocreate/docs": "^1.2.
|
|
67
|
-
"@cocreate/elements": "^1.
|
|
64
|
+
"@cocreate/actions": "^1.3.30",
|
|
65
|
+
"@cocreate/crud-client": "^1.4.45",
|
|
66
|
+
"@cocreate/docs": "^1.2.67",
|
|
67
|
+
"@cocreate/elements": "^1.6.8"
|
|
68
68
|
}
|
|
69
69
|
}
|