coject 1.3.12 → 1.3.13
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/cjs/index.d.ts +1 -0
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/rtl_style.css +108 -0
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/rtl_style.css +108 -0
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
package/dist/cjs/index.js
CHANGED
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../resources/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,UAAU;AACV,4CAA0B;AAE1B,aAAa;AACb,+CAA6B;AAE7B,WAAW;AACX,6CAA2B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../resources/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,UAAU;AACV,4CAA0B;AAE1B,aAAa;AACb,+CAA6B;AAE7B,WAAW;AACX,6CAA2B;AAE3B,YAAY;AACZ,2BAAyB"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/* Global */
|
|
2
|
+
body {
|
|
3
|
+
width: 100vw;
|
|
4
|
+
height: 100vh;
|
|
5
|
+
overflow: auto;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* Labels */
|
|
9
|
+
html[dir="rtl"] fieldset {
|
|
10
|
+
text-align: right;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
html[dir="rtl"] .MuiFormLabel-root {
|
|
14
|
+
right: 0;
|
|
15
|
+
left: initial;
|
|
16
|
+
transform-origin: top right;
|
|
17
|
+
transform: translate(-14px, 16px) scale(1);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
html[dir="rtl"] .MuiFormLabel-root.MuiInputLabel-shrink {
|
|
21
|
+
transform: translate(-14px, -9px) scale(0.75);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* Grid */
|
|
25
|
+
html[dir="rtl"] .MuiButton-startIcon {
|
|
26
|
+
margin: 0 0 0 8px !important
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
html[dir="rtl"] .MuiTablePagination-toolbar {
|
|
30
|
+
padding-left: 2px;
|
|
31
|
+
padding-right: 24px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
html[dir="rtl"] .MuiTablePagination-actions {
|
|
35
|
+
margin-left: 0;
|
|
36
|
+
margin-right: 20px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
html[dir="rtl"] .MuiTablePagination-actions svg {
|
|
40
|
+
transform: scaleX(-1);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
html[dir="rtl"] .MuiDataGrid-toolbarContainer {
|
|
44
|
+
direction: ltr;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
html[dir="rtl"] .MuiDataGrid-toolbarContainer button {
|
|
48
|
+
direction: rtl;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Select */
|
|
52
|
+
html[dir="rtl"] .MuiAutocomplete-inputRoot {
|
|
53
|
+
padding-left: 65px;
|
|
54
|
+
padding-right: 0 !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
html[dir="rtl"] .MuiAutocomplete-endAdornment {
|
|
58
|
+
left: 13px;
|
|
59
|
+
right: initial !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* DatePicker */
|
|
63
|
+
html[dir="rtl"] .MuiPickersCalendarHeader-labelContainer {
|
|
64
|
+
margin-left: auto;
|
|
65
|
+
margin-right: 0 !important;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
html[dir="rtl"] .MuiPickersArrowSwitcher-root svg {
|
|
69
|
+
transform: scaleX(-1);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/* Checkbox & Switch */
|
|
73
|
+
html[dir="rtl"] .MuiFormControlLabel-root {
|
|
74
|
+
margin-left: 16px;
|
|
75
|
+
margin-right: -11px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* Sidebar */
|
|
79
|
+
html[dir="rtl"] .minMenuList .MuiPaper-elevation {
|
|
80
|
+
left: auto !important;
|
|
81
|
+
right: 70px !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
html[dir="rtl"] .maxMenuList li a {
|
|
85
|
+
padding-left: 0;
|
|
86
|
+
padding-right: 32px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* Header */
|
|
90
|
+
html[dir="rtl"] .mobSearchBtn {
|
|
91
|
+
left: 25px;
|
|
92
|
+
right: auto;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
html[dir="rtl"] .mobMenuList .MuiPaper-root {
|
|
96
|
+
right: 0 !important;
|
|
97
|
+
left: auto !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
html[dir="rtl"] .mobMenuList .MuiPaper-root h6 svg {
|
|
101
|
+
margin-right: 0;
|
|
102
|
+
margin-left: 10px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
html[dir="rtl"] .mobMenuClose {
|
|
106
|
+
right: 300px !important;
|
|
107
|
+
left: auto !important;
|
|
108
|
+
}
|
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../resources/index.tsx"],"names":[],"mappings":"AAAA,UAAU;AACV,cAAc,WAAW,CAAC;AAE1B,aAAa;AACb,cAAc,cAAc,CAAC;AAE7B,WAAW;AACX,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../resources/index.tsx"],"names":[],"mappings":"AAAA,UAAU;AACV,cAAc,WAAW,CAAC;AAE1B,aAAa;AACb,cAAc,cAAc,CAAC;AAE7B,WAAW;AACX,cAAc,YAAY,CAAC;AAE3B,YAAY;AACZ,OAAO,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/* Global */
|
|
2
|
+
body {
|
|
3
|
+
width: 100vw;
|
|
4
|
+
height: 100vh;
|
|
5
|
+
overflow: auto;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* Labels */
|
|
9
|
+
html[dir="rtl"] fieldset {
|
|
10
|
+
text-align: right;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
html[dir="rtl"] .MuiFormLabel-root {
|
|
14
|
+
right: 0;
|
|
15
|
+
left: initial;
|
|
16
|
+
transform-origin: top right;
|
|
17
|
+
transform: translate(-14px, 16px) scale(1);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
html[dir="rtl"] .MuiFormLabel-root.MuiInputLabel-shrink {
|
|
21
|
+
transform: translate(-14px, -9px) scale(0.75);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* Grid */
|
|
25
|
+
html[dir="rtl"] .MuiButton-startIcon {
|
|
26
|
+
margin: 0 0 0 8px !important
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
html[dir="rtl"] .MuiTablePagination-toolbar {
|
|
30
|
+
padding-left: 2px;
|
|
31
|
+
padding-right: 24px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
html[dir="rtl"] .MuiTablePagination-actions {
|
|
35
|
+
margin-left: 0;
|
|
36
|
+
margin-right: 20px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
html[dir="rtl"] .MuiTablePagination-actions svg {
|
|
40
|
+
transform: scaleX(-1);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
html[dir="rtl"] .MuiDataGrid-toolbarContainer {
|
|
44
|
+
direction: ltr;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
html[dir="rtl"] .MuiDataGrid-toolbarContainer button {
|
|
48
|
+
direction: rtl;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/* Select */
|
|
52
|
+
html[dir="rtl"] .MuiAutocomplete-inputRoot {
|
|
53
|
+
padding-left: 65px;
|
|
54
|
+
padding-right: 0 !important;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
html[dir="rtl"] .MuiAutocomplete-endAdornment {
|
|
58
|
+
left: 13px;
|
|
59
|
+
right: initial !important;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/* DatePicker */
|
|
63
|
+
html[dir="rtl"] .MuiPickersCalendarHeader-labelContainer {
|
|
64
|
+
margin-left: auto;
|
|
65
|
+
margin-right: 0 !important;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
html[dir="rtl"] .MuiPickersArrowSwitcher-root svg {
|
|
69
|
+
transform: scaleX(-1);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/* Checkbox & Switch */
|
|
73
|
+
html[dir="rtl"] .MuiFormControlLabel-root {
|
|
74
|
+
margin-left: 16px;
|
|
75
|
+
margin-right: -11px;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
/* Sidebar */
|
|
79
|
+
html[dir="rtl"] .minMenuList .MuiPaper-elevation {
|
|
80
|
+
left: auto !important;
|
|
81
|
+
right: 70px !important;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
html[dir="rtl"] .maxMenuList li a {
|
|
85
|
+
padding-left: 0;
|
|
86
|
+
padding-right: 32px;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* Header */
|
|
90
|
+
html[dir="rtl"] .mobSearchBtn {
|
|
91
|
+
left: 25px;
|
|
92
|
+
right: auto;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
html[dir="rtl"] .mobMenuList .MuiPaper-root {
|
|
96
|
+
right: 0 !important;
|
|
97
|
+
left: auto !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
html[dir="rtl"] .mobMenuList .MuiPaper-root h6 svg {
|
|
101
|
+
margin-right: 0;
|
|
102
|
+
margin-left: 10px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
html[dir="rtl"] .mobMenuClose {
|
|
106
|
+
right: 300px !important;
|
|
107
|
+
left: auto !important;
|
|
108
|
+
}
|