kempo-ui 0.0.7 → 0.0.9
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/src/components/Icon.js +1 -1
- package/dist/src/components/ShadowComponent.js +1 -1
- package/dist/src/components/Tree.js +37 -0
- package/docs/components/accordion.html +3 -9
- package/docs/components/card.html +3 -9
- package/docs/components/collapsible.html +3 -9
- package/docs/components/content-slider.html +4 -9
- package/docs/components/dialog.html +157 -72
- package/docs/components/focus-capture.html +3 -7
- package/docs/components/hybrid-component.html +3 -7
- package/docs/components/icon.html +3 -8
- package/docs/components/import.html +1 -6
- package/docs/components/init.js +7 -0
- package/docs/components/light-component.html +3 -7
- package/docs/components/persistant-collapsible.html +1 -8
- package/docs/components/photo-viewer.html +1 -8
- package/docs/components/resize.html +3 -9
- package/docs/components/shadow-component.html +3 -7
- package/docs/components/show-more.html +3 -9
- package/docs/components/side-menu.html +1 -6
- package/docs/components/sortable.html +3 -7
- package/docs/components/split.html +3 -7
- package/docs/components/table.html +3 -7
- package/docs/components/tableControls.html +3 -7
- package/docs/components/tableCustomFields.html +3 -7
- package/docs/components/tableFetchRecords.html +3 -7
- package/docs/components/tableFieldSortHide.html +3 -7
- package/docs/components/tablePagination.html +3 -7
- package/docs/components/tableRecordEditing.html +3 -7
- package/docs/components/tableRecordFiltering.html +3 -7
- package/docs/components/tableRecordHiding.html +3 -7
- package/docs/components/tableRecordSearching.html +3 -7
- package/docs/components/tableRecordSelection.html +3 -7
- package/docs/components/tableRowControls.html +3 -7
- package/docs/components/tableSorting.html +3 -7
- package/docs/components/tabs.html +3 -9
- package/docs/components/tags.html +3 -9
- package/docs/components/theme-switcher.html +3 -9
- package/docs/components/timestamp.html +3 -9
- package/docs/components/toast.html +80 -42
- package/docs/components/toggle.html +3 -9
- package/docs/components/tree.html +108 -21
- package/docs/index.html +10 -6
- package/docs/init.js +7 -0
- package/docs/src/components/Icon.js +1 -1
- package/docs/src/components/ShadowComponent.js +1 -1
- package/docs/src/components/Tree.js +37 -0
- package/docs/utils/debounce.html +1 -6
- package/docs/utils/drag.html +1 -6
- package/docs/utils/formatTimestamp.html +1 -6
- package/docs/utils/init.js +7 -0
- package/docs/utils/propConverters.html +1 -6
- package/docs/utils/toTitleCase.html +1 -6
- package/docs/utils/watchWindowSize.html +1 -6
- package/package.json +1 -1
- package/scripts/build.js +12 -2
- package/src/components/Card.js +2 -5
- package/src/components/Dialog.js +48 -34
- package/src/components/Icon.js +25 -18
- package/src/components/Tree.js +64 -72
|
@@ -7,12 +7,7 @@
|
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
8
|
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
9
|
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
-
<script type="module">
|
|
11
|
-
import Import from '../src/components/Import.js';
|
|
12
|
-
import Icon from '../src/components/Icon.js';
|
|
13
|
-
Import.replacements.root = '../';
|
|
14
|
-
Icon.pathToIcons = ['../icons'];
|
|
15
|
-
</script>
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
16
11
|
</head>
|
|
17
12
|
<body>
|
|
18
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import Import from '../src/components/Import.js';
|
|
2
|
+
import Icon from '../src/components/Icon.js';
|
|
3
|
+
import ShadowComponent from '../src/components/ShadowComponent.js';
|
|
4
|
+
|
|
5
|
+
Import.replacements.root = '../';
|
|
6
|
+
Icon.pathToIcons = ['../icons'];
|
|
7
|
+
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
@@ -5,13 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>LightComponent - Base Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Icon from '../src/components/Icon.js';
|
|
12
|
-
Import.replacements.root = '../';
|
|
13
|
-
Icon.pathToIcons = ['../icons'];
|
|
14
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
15
11
|
</head>
|
|
16
12
|
<body>
|
|
17
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -7,14 +7,7 @@
|
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
8
|
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
9
|
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
-
<script type="module">
|
|
11
|
-
import ShadowComponent from '../src/components/ShadowComponent.js';
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
15
|
-
Import.replacements.root = '../';
|
|
16
|
-
Icon.pathToIcons = ['../icons'];
|
|
17
|
-
</script>
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
18
11
|
</head>
|
|
19
12
|
<body>
|
|
20
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -7,14 +7,7 @@
|
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
8
|
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
9
|
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
-
<script type="module">
|
|
11
|
-
import ShadowComponent from '../src/components/ShadowComponent.js';
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
15
|
-
Import.replacements.root = '../';
|
|
16
|
-
Icon.pathToIcons = ['../icons'];
|
|
17
|
-
</script>
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
18
11
|
</head>
|
|
19
12
|
<body>
|
|
20
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -5,15 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Resize - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Import from '../src/components/Import.js';
|
|
12
|
-
import Icon from '../src/components/Icon.js';
|
|
13
|
-
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
17
11
|
</head>
|
|
18
12
|
<body>
|
|
19
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -5,13 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>ShadowComponent - Base Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Icon from '../src/components/Icon.js';
|
|
12
|
-
Import.replacements.root = '../';
|
|
13
|
-
Icon.pathToIcons = ['../icons'];
|
|
14
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
15
11
|
</head>
|
|
16
12
|
<body>
|
|
17
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -5,15 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Show More - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Import from '../src/components/Import.js';
|
|
12
|
-
import Icon from '../src/components/Icon.js';
|
|
13
|
-
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
17
11
|
</head>
|
|
18
12
|
<body>
|
|
19
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -8,12 +8,7 @@
|
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
9
|
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
10
|
<link rel="stylesheet" href="../styles.css" />
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
11
|
+
<script type="module" src="./init.js"></script>
|
|
17
12
|
</head>
|
|
18
13
|
<body>
|
|
19
14
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -5,13 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Sortable - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Icon from '../src/components/Icon.js';
|
|
12
|
-
Import.replacements.root = '../';
|
|
13
|
-
Icon.pathToIcons = ['../icons'];
|
|
14
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
15
11
|
</head>
|
|
16
12
|
<body>
|
|
17
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -5,13 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Split - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Icon from '../src/components/Icon.js';
|
|
12
|
-
Import.replacements.root = '../';
|
|
13
|
-
Icon.pathToIcons = ['../icons'];
|
|
14
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
15
11
|
</head>
|
|
16
12
|
<body>
|
|
17
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Table - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
|
|
19
15
|
window.contacts = [];
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Top and Bottom Controls - Table - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Custom Fields - Table - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Table - Fetch Records - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Field Sort and Hide - Table - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Pagination - Table - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Record Editing - Table - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Record Filtering - Table - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Row Controls - Table - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Record Searching - Table - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Record Selection - Table - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Row Controls - Table - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -6,14 +6,10 @@
|
|
|
6
6
|
<title>Sorting - Table - Kempo Docs</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" />
|
|
8
8
|
<link rel="stylesheet" href="../kempo.min.css" />
|
|
9
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
10
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
11
|
<script type="module" src="../src/components/Table.js"></script>
|
|
11
|
-
<script type="module">
|
|
12
|
-
import Import from '../src/components/Import.js';
|
|
13
|
-
import Icon from '../src/components/Icon.js';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
12
|
+
<script type="module" src="./init.js"></script>
|
|
17
13
|
<script>
|
|
18
14
|
window.contacts = [];
|
|
19
15
|
function generateContact(){
|
|
@@ -5,15 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Tabs - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Import from '../src/components/Import.js';
|
|
12
|
-
import Icon from '../src/components/Icon.js';
|
|
13
|
-
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
17
11
|
</head>
|
|
18
12
|
<body>
|
|
19
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -5,15 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Tags - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Import from '../src/components/Import.js';
|
|
12
|
-
import Icon from '../src/components/Icon.js';
|
|
13
|
-
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
17
11
|
</head>
|
|
18
12
|
<body>
|
|
19
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -5,15 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>ThemeSwitcher - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Import from '../src/components/Import.js';
|
|
12
|
-
import Icon from '../src/components/Icon.js';
|
|
13
|
-
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
17
11
|
</head>
|
|
18
12
|
<body>
|
|
19
13
|
<k-import src="../nav.inc.html"></k-import>
|
|
@@ -5,15 +5,9 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
6
|
<title>Timestamp - Components - Kempo Docs - A Web Components Solution</title>
|
|
7
7
|
<link rel="stylesheet" href="../src/kempo-vars.css" /><link rel="stylesheet" href="../kempo.min.css" />
|
|
8
|
-
<link rel="stylesheet" href="../src/kempo-hljs.css"
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
import Import from '../src/components/Import.js';
|
|
12
|
-
import Icon from '../src/components/Icon.js';
|
|
13
|
-
ShadowComponent.stylesheetPath = '../kempo.min.css';
|
|
14
|
-
Import.replacements.root = '../';
|
|
15
|
-
Icon.pathToIcons = ['../icons'];
|
|
16
|
-
</script>
|
|
8
|
+
<link rel="stylesheet" href="../src/kempo-hljs.css" />
|
|
9
|
+
<link rel="stylesheet" href="../styles.css" />
|
|
10
|
+
<script type="module" src="./init.js"></script>
|
|
17
11
|
</head>
|
|
18
12
|
<body>
|
|
19
13
|
<k-import src="../nav.inc.html"></k-import>
|