@bexis2/bexis2-core-ui 0.3.0 → 0.3.1
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/README.md +4 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4 -0
- package/dist/themes/theme-bexis2.d.ts +1 -1
- package/dist/themes/theme-bexis2.js +2 -2
- package/package.json +1 -1
- package/src/lib/index.ts +6 -0
- package/src/lib/themes/theme-bexis2.ts +2 -2
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ import type { TableConfig, Columns, Column } from './models/Models';
|
|
|
22
22
|
import CodeEditor from './components/CodeEditor/CodeEditor.svelte';
|
|
23
23
|
import Notification from './components/page/Notification.svelte';
|
|
24
24
|
import TablePlaceholder from './components/page/TablePlaceholder.svelte';
|
|
25
|
+
import { bexis2theme } from './themes/theme-bexis2';
|
|
25
26
|
export { Checkbox, CheckboxKVPList, CheckboxList, DateInput, DropdownKVP, MultiSelect, NumberInput, TextArea, TextInput };
|
|
26
27
|
export { FileInfo, FileIcon, FileUploader };
|
|
27
28
|
export { Spinner, Page, Alert, Menu, ErrorMessage };
|
|
@@ -39,3 +40,4 @@ export { positionType, pageContentLayoutType, decimalCharacterType, orientationT
|
|
|
39
40
|
export { Table, TableFilter, columnFilter, searchFilter };
|
|
40
41
|
export { CodeEditor };
|
|
41
42
|
export type { TableConfig, Columns, Column };
|
|
43
|
+
export { bexis2theme };
|
package/dist/index.js
CHANGED
|
@@ -30,6 +30,8 @@ import CodeEditor from './components/CodeEditor/CodeEditor.svelte';
|
|
|
30
30
|
import Notification from './components/page/Notification.svelte';
|
|
31
31
|
//table placeholder
|
|
32
32
|
import TablePlaceholder from './components/page/TablePlaceholder.svelte';
|
|
33
|
+
// theme
|
|
34
|
+
import { bexis2theme } from './themes/theme-bexis2';
|
|
33
35
|
//Form
|
|
34
36
|
export { Checkbox, CheckboxKVPList, CheckboxList, DateInput, DropdownKVP, MultiSelect, NumberInput, TextArea, TextInput };
|
|
35
37
|
//File
|
|
@@ -53,3 +55,5 @@ export { positionType, pageContentLayoutType, decimalCharacterType, orientationT
|
|
|
53
55
|
export { Table, TableFilter, columnFilter, searchFilter };
|
|
54
56
|
// CodeEditor
|
|
55
57
|
export { CodeEditor };
|
|
58
|
+
// theme
|
|
59
|
+
export { bexis2theme };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { CustomThemeConfig } from '@skeletonlabs/tw-plugin';
|
|
2
|
-
export declare const
|
|
2
|
+
export declare const bexis2theme: CustomThemeConfig;
|
package/package.json
CHANGED
package/src/lib/index.ts
CHANGED
|
@@ -39,6 +39,9 @@ import Notification from './components/page/Notification.svelte';
|
|
|
39
39
|
//table placeholder
|
|
40
40
|
import TablePlaceholder from './components/page/TablePlaceholder.svelte';
|
|
41
41
|
|
|
42
|
+
// theme
|
|
43
|
+
import { bexis2theme } from './themes/theme-bexis2';
|
|
44
|
+
|
|
42
45
|
//Form
|
|
43
46
|
export {
|
|
44
47
|
Checkbox,
|
|
@@ -104,3 +107,6 @@ export { Table, TableFilter, columnFilter, searchFilter };
|
|
|
104
107
|
export { CodeEditor };
|
|
105
108
|
|
|
106
109
|
export type { TableConfig, Columns, Column };
|
|
110
|
+
|
|
111
|
+
// theme
|
|
112
|
+
export { bexis2theme }
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
2
|
import type { CustomThemeConfig } from '@skeletonlabs/tw-plugin';
|
|
3
3
|
|
|
4
|
-
export const
|
|
5
|
-
name: '
|
|
4
|
+
export const bexis2theme: CustomThemeConfig = {
|
|
5
|
+
name: 'bexis2theme',
|
|
6
6
|
properties: {
|
|
7
7
|
// =~= Theme Properties =~=
|
|
8
8
|
"--theme-font-family-base": `system-ui`,
|