@ziky/ui 0.1.7 → 0.1.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/components/ActivityList.d.ts +15 -0
- package/dist/components/ActivityList.d.ts.map +1 -0
- package/dist/components/ActivityList.js +8 -0
- package/dist/components/ActivityList.js.map +1 -0
- package/dist/components/DashboardPanel.d.ts +10 -0
- package/dist/components/DashboardPanel.d.ts.map +1 -0
- package/dist/components/DashboardPanel.js +8 -0
- package/dist/components/DashboardPanel.js.map +1 -0
- package/dist/components/DashboardStatCard.d.ts +16 -0
- package/dist/components/DashboardStatCard.d.ts.map +1 -0
- package/dist/components/DashboardStatCard.js +15 -0
- package/dist/components/DashboardStatCard.js.map +1 -0
- package/dist/components/FilePicker.d.ts +22 -0
- package/dist/components/FilePicker.d.ts.map +1 -0
- package/dist/components/FilePicker.js +93 -0
- package/dist/components/FilePicker.js.map +1 -0
- package/dist/components/ImageUploadField.d.ts +18 -0
- package/dist/components/ImageUploadField.d.ts.map +1 -0
- package/dist/components/ImageUploadField.js +34 -0
- package/dist/components/ImageUploadField.js.map +1 -0
- package/dist/components/SectionHeader.d.ts +9 -0
- package/dist/components/SectionHeader.d.ts.map +1 -0
- package/dist/components/SectionHeader.js +8 -0
- package/dist/components/SectionHeader.js.map +1 -0
- package/dist/components/SmartDataTable/SmartDataTable.d.ts +24 -0
- package/dist/components/SmartDataTable/SmartDataTable.d.ts.map +1 -0
- package/dist/components/SmartDataTable/SmartDataTable.js +104 -0
- package/dist/components/SmartDataTable/SmartDataTable.js.map +1 -0
- package/dist/components/SmartDataTable/applyClientQuery.d.ts +9 -0
- package/dist/components/SmartDataTable/applyClientQuery.d.ts.map +1 -0
- package/dist/components/SmartDataTable/applyClientQuery.js +52 -0
- package/dist/components/SmartDataTable/applyClientQuery.js.map +1 -0
- package/dist/components/SmartDataTable/types.d.ts +17 -0
- package/dist/components/SmartDataTable/types.d.ts.map +1 -0
- package/dist/components/SmartDataTable/types.js +3 -0
- package/dist/components/SmartDataTable/types.js.map +1 -0
- package/dist/components/SmartDataTable/urlState.d.ts +20 -0
- package/dist/components/SmartDataTable/urlState.d.ts.map +1 -0
- package/dist/components/SmartDataTable/urlState.js +117 -0
- package/dist/components/SmartDataTable/urlState.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/menu/adminMenu.d.ts.map +1 -1
- package/dist/menu/adminMenu.js +5 -0
- package/dist/menu/adminMenu.js.map +1 -1
- package/dist/styles/components/filepicker.css +69 -0
- package/dist/styles/index.d.ts +1 -1
- package/dist/styles/index.d.ts.map +1 -1
- package/dist/styles/index.js +1 -1
- package/dist/styles/index.js.map +1 -1
- package/dist/styles/index.ts +1 -1
- package/dist/styles/layout/_dashboard.scss +279 -0
- package/dist/styles/layout/_dialog.scss +63 -0
- package/dist/styles/layout/_smartdatatable.scss +38 -0
- package/dist/styles/layout/layout.scss +11 -8
- package/package.json +1 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.rd-smart-table__header {
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: space-between;
|
|
4
|
+
gap: 1rem;
|
|
5
|
+
flex-wrap: wrap;
|
|
6
|
+
align-items: center;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.rd-smart-table__header-left {
|
|
10
|
+
display: flex;
|
|
11
|
+
gap: 0.75rem;
|
|
12
|
+
flex-wrap: wrap;
|
|
13
|
+
align-items: center;
|
|
14
|
+
min-width: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.rd-smart-table__header-right {
|
|
18
|
+
display: flex;
|
|
19
|
+
gap: 0.5rem;
|
|
20
|
+
flex-wrap: wrap;
|
|
21
|
+
align-items: center;
|
|
22
|
+
justify-content: flex-end;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.rd-smart-table__title {
|
|
26
|
+
font-weight: 700;
|
|
27
|
+
color: var(--text-color, #111827);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.rd-smart-table__search .p-inputtext {
|
|
31
|
+
width: min(360px, 72vw);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.rd-smart-table__error {
|
|
35
|
+
margin-bottom: 0.5rem;
|
|
36
|
+
color: var(--red-600, #dc2626);
|
|
37
|
+
}
|
|
38
|
+
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
@use './_variables' as *;
|
|
2
|
-
@use './_mixins' as *;
|
|
3
|
-
@use './_main' as *;
|
|
4
|
-
@use './_topbar' as *;
|
|
5
|
-
@use './_menu' as *;
|
|
6
|
-
@use './_config' as *;
|
|
7
|
-
@use './_content' as *;
|
|
8
|
-
@use './_footer' as *;
|
|
1
|
+
@use './_variables' as *;
|
|
2
|
+
@use './_mixins' as *;
|
|
3
|
+
@use './_main' as *;
|
|
4
|
+
@use './_topbar' as *;
|
|
5
|
+
@use './_menu' as *;
|
|
6
|
+
@use './_config' as *;
|
|
7
|
+
@use './_content' as *;
|
|
8
|
+
@use './_footer' as *;
|
|
9
|
+
@use './_dialog' as *;
|
|
9
10
|
@use './_responsive' as *;
|
|
10
11
|
@use './_utils' as *;
|
|
11
12
|
@use './_typography' as *;
|
|
13
|
+
@use './_dashboard' as *;
|
|
14
|
+
@use './_smartdatatable' as *;
|