namirasoft-site-react 1.3.149 → 1.3.151
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/App.js +45 -158
- package/dist/App.js.map +1 -1
- package/dist/components/NSBox.module.css +1 -1
- package/dist/components/NSBoxDate.module.css +1 -1
- package/dist/components/NSBoxTextArea.d.ts +23 -0
- package/dist/components/NSBoxTextArea.js +35 -0
- package/dist/components/NSBoxTextArea.js.map +1 -0
- package/dist/components/NSBoxTextArea.module.css +38 -0
- package/dist/components/NSFilterBox.d.ts +3 -0
- package/dist/components/NSFilterBox.js +43 -23
- package/dist/components/NSFilterBox.js.map +1 -1
- package/dist/components/NSGroupedList.js +1 -1
- package/dist/components/NSGroupedList.js.map +1 -1
- package/dist/components/NSGroupedList.module.css +1 -1
- package/dist/components/NSLayoutAction.js.map +1 -1
- package/dist/components/NSPanel.module.css +1 -0
- package/dist/components/NSTable.module.css +3 -1
- package/dist/main.d.ts +1 -0
- package/dist/main.js +1 -0
- package/dist/main.js.map +1 -1
- package/package.json +4 -4
- package/src/App.tsx +71 -176
- package/src/components/NSBox.module.css +1 -1
- package/src/components/NSBoxDate.module.css +1 -1
- package/src/components/NSBoxTextArea.module.css +38 -0
- package/src/components/NSBoxTextArea.tsx +96 -0
- package/src/components/NSFilterBox.tsx +70 -35
- package/src/components/NSGroupedList.module.css +1 -1
- package/src/components/NSGroupedList.tsx +3 -5
- package/src/components/NSLayoutAction.tsx +0 -4
- package/src/components/NSPanel.module.css +1 -0
- package/src/components/NSTable.module.css +3 -1
- package/src/main.ts +1 -0
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
content: attr(data-label);
|
|
42
42
|
font-weight: bold;
|
|
43
43
|
float: left;
|
|
44
|
+
min-width: 30%;
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
/* Button Group */
|
|
@@ -113,11 +114,12 @@
|
|
|
113
114
|
margin: 0;
|
|
114
115
|
padding: 0;
|
|
115
116
|
}
|
|
116
|
-
|
|
117
|
+
|
|
117
118
|
.ns_table td::before {
|
|
118
119
|
content: "";
|
|
119
120
|
float: left;
|
|
120
121
|
font-weight: bold;
|
|
122
|
+
min-width: unset;
|
|
121
123
|
}
|
|
122
124
|
|
|
123
125
|
/* Button Group */
|
package/src/main.ts
CHANGED
|
@@ -16,6 +16,7 @@ export * from "./components/NSBoxPrice";
|
|
|
16
16
|
export * from "./components/NSBoxString";
|
|
17
17
|
export * from "./components/NSBoxSearch";
|
|
18
18
|
export * from "./components/NSBoxText";
|
|
19
|
+
export * from "./components/NSBoxTextArea";
|
|
19
20
|
export * from "./components/NSBoxTime";
|
|
20
21
|
export * from "./components/NSButtonBlue";
|
|
21
22
|
export * from "./components/NSButtonGreen";
|