Skip to content

Commit 24e6aec

Browse files
committed
Updated some components to jComponent v20
1 parent 611562f commit 24e6aec

File tree

114 files changed

+472
-533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+472
-533
lines changed

Tangular-Color/component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"datecreated": "2020-02-20T15:37:01.000Z",
3-
"dateupdated": null,
3+
"dateupdated": "2024-06-20T15:37:01.000Z",
44
"name": "Tangular-Color",
55
"jcomponent": "19|20",
66
"color": "transparent",

Tangular-Color/example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div id="output"></div>
22

33
<script>
4-
$('#output').html('<i class="fa fa-circle" style="color:{0}"></i> <i class="fa fa-circle" style="color:{1}"></i> <i class="fa fa-circle" style="color:{2}"></i>'.format(Thelpers.color('Avengers'), Thelpers.color('jComponent'), Thelpers.color('Total.js')));
4+
$('#output').html('<i class="ti ti-circle-alt" style="color:{0}"></i> <i class="ti ti-circle-alt" style="color:{1}"></i> <i class="ti ti-circle-alt" style="color:{2}"></i>'.format(Thelpers.color('Avengers'), Thelpers.color('jComponent'), Thelpers.color('Total.js')));
55
</script>

j-AjaxLoading/component.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ COMPONENT('ajaxloading', 'icon:true', function(self) {
3535

3636
self.init = function() {
3737
ON('request', function(req) {
38-
SETTER('ajaxloading', 'apply', 'req', req.url);
38+
SETTER('ajaxloading/apply', 'req', req.url);
3939
});
4040
ON('response', function(res) {
41-
SETTER('ajaxloading', 'apply', 'res', res.url);
41+
SETTER('ajaxloading/apply', 'res', res.url);
4242
});
4343
};
4444
});

j-AjaxLoading/component.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
{
22
"datecreated": "2018-10-28T21:35:44.000Z",
3-
"dateupdated": "2023-01-23T09:05:46.000Z",
3+
"dateupdated": "2023-01-23T09:05:47.000Z",
44
"name": "j-AjaxLoading",
5-
"tags": [
6-
"loading"
7-
],
5+
"jcomponent": "19|20",
86
"color": "white",
97
"version": 1,
108
"responsive": true,

j-AjaxLoading/readme.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ This component can show a loading text for async AJAX operations.
44

55
- works with `AJAX()` method only
66

7+
- jComponent `v19|v20`
8+
79
__Configuration__:
810

9-
- `url` {String} a pattern for URL is evaluated as RegExp, __must be defined__
10-
- `label` {String} optional (default: `HTML content`)
11-
- `icon` {Boolean} adds __spinner__ icon (default: `true`)
11+
- `url {String}` a pattern for URL is evaluated as RegExp, __must be defined__
12+
- `label {String}` optional (default: `HTML content`)
13+
- `icon {Boolean}` adds __spinner__ icon (default: `true`)
1214

1315
### Author
1416

j-ChunkyScroll/component.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
{
22
"datecreated": "2019-11-30T18:43:06.000Z",
3-
"dateupdated": "2023-01-31T11:17:00.000Z",
3+
"dateupdated": "2023-01-31T11:17:01.000Z",
44
"name": "j-ChunkyScroll",
5-
"tags": [
6-
"scroll",
7-
"chunked",
8-
"clusterized",
9-
"clusterize"
10-
],
5+
"jcomponent": "19|20",
116
"darkmode": true,
127
"color": "transparent",
138
"version": 1,

j-ChunkyScroll/readme.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
- can handle thousands items/elements
44

5+
- jComponent `v19|v20`
6+
57
__Configuration__:
68

7-
- `rowheight` {Number} __Important__, a row height (default: `30` with auto obtaining of size)
8-
- `parent` {String} optional, a container with fixed height, can be `window`. Default value: `parent` element.
9-
- `margin` {Number} optional, a top/bottom margin together (default: `0`)
10-
- `scrolltop` {Boolean} scrolls to top automatically if the `path` is changed (default: `false`)
11-
- `marginxs` {Number} optional, a top/bottom margin together for `xs` screen width
9+
- `rowheight {Number}` __Important__, a row height (default: `30` with auto obtaining of size)
10+
- `parent {String}` optional, a container with fixed height, can be `window`. Default value: `parent` element.
11+
- `margin {Number}` optional, a top/bottom margin together (default: `0`)
12+
- `scrolltop {Boolean}` scrolls to top automatically if the `path` is changed (default: `false`)
13+
- `marginxs {Number}` optional, a top/bottom margin together for `xs` screen width
1214
- `marginsm` optional, a top/bottom margin together for `sm` screen width
1315
- `marginmd` optional, a top/bottom margin together for `md` screen width
1416
- `marginlg` optional, a top/bottom margin together for `lg` screen width

j-ColorPicker/component.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
{
22
"datecreated": "2019-03-25T13:47:01.000Z",
3-
"dateupdated": "2024-05-02T15:41:00.000Z",
3+
"dateupdated": "2024-05-02T15:41:01.000Z",
44
"name": "j-ColorPicker",
5-
"tags": [
6-
"colors",
7-
"picker",
8-
"colorpicker"
9-
],
5+
"jcomponent": "19|20",
106
"color": "white",
117
"version": 1,
128
"responsive": true,

j-ColorPicker/example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
opt.callback = function(color) {
1818
alert(color);
1919
};
20-
SETTER('colorpicker', 'show', opt);
20+
SETTER('colorpicker/show', opt);
2121
});
2222
</script>

j-ColorPicker/readme.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
- Simple color picker
55
- Supports __Dark theme__
66

7+
- jComponent `v19|v20`
8+
79
## Usage
810

911
```javascript
@@ -24,7 +26,7 @@ opt.callback = function(color) {
2426
console.log(color); // callback parameter has string with HEX color (like #bada55)
2527
};
2628

27-
SETTER('colorpicker', 'show', opt);
29+
SETTER('colorpicker/show', opt);
2830
```
2931

3032

0 commit comments

Comments
 (0)