@fewangsit/wangsvue-presets 1.0.85-alpha.4 → 1.0.85-alpha.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1777,6 +1777,10 @@
1777
1777
  min-width: 272px !important;
1778
1778
  }
1779
1779
 
1780
+ .min-w-0{
1781
+ min-width: 0px;
1782
+ }
1783
+
1780
1784
  .min-w-52{
1781
1785
  min-width: 13rem;
1782
1786
  }
@@ -2258,6 +2262,10 @@
2258
2262
  justify-content: space-between;
2259
2263
  }
2260
2264
 
2265
+ .justify-items-start{
2266
+ justify-items: start;
2267
+ }
2268
+
2261
2269
  .gap-0\.5{
2262
2270
  gap: 0.125rem;
2263
2271
  }
@@ -2278,6 +2286,10 @@
2278
2286
  gap: 0.75rem;
2279
2287
  }
2280
2288
 
2289
+ .gap-4{
2290
+ gap: 1rem;
2291
+ }
2292
+
2281
2293
  .gap-6{
2282
2294
  gap: 1.5rem;
2283
2295
  }
@@ -2308,6 +2320,11 @@
2308
2320
  column-gap: 0.125rem;
2309
2321
  }
2310
2322
 
2323
+ .gap-x-3{
2324
+ -moz-column-gap: 0.75rem;
2325
+ column-gap: 0.75rem;
2326
+ }
2327
+
2311
2328
  .gap-x-6{
2312
2329
  -moz-column-gap: 1.5rem;
2313
2330
  column-gap: 1.5rem;
@@ -2914,6 +2931,11 @@
2914
2931
  background-color: rgb(235 234 240 / var(--tw-bg-opacity));
2915
2932
  }
2916
2933
 
2934
+ .bg-general-500{
2935
+ --tw-bg-opacity: 1;
2936
+ background-color: rgb(78 75 102 / var(--tw-bg-opacity));
2937
+ }
2938
+
2917
2939
  .bg-gray-500{
2918
2940
  --tw-bg-opacity: 1;
2919
2941
  background-color: rgb(107 114 128 / var(--tw-bg-opacity));
@@ -5896,6 +5918,10 @@ h6,
5896
5918
  background-color: rgb(46 130 255 / var(--tw-bg-opacity)) !important;
5897
5919
  }
5898
5920
 
5921
+ .\[\&\>\*\]\:w-full>*{
5922
+ width: 100%;
5923
+ }
5924
+
5899
5925
  .\[\&\>\[data-pc-name\=badge\]\]\:h-4>[data-pc-name=badge]{
5900
5926
  height: 1rem;
5901
5927
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fewangsit/wangsvue-presets",
3
- "version": "1.0.85-alpha.4",
3
+ "version": "1.0.85-alpha.5",
4
4
  "author": "Wangsit FE Developer",
5
5
  "description": "Wangsit VueJS Component Library Presets",
6
6
  "main": "index.js",
@@ -7,6 +7,7 @@ declare namespace _default {
7
7
  let icon: {
8
8
  class: string;
9
9
  'data-wv-section': string;
10
+ severity: string;
10
11
  };
11
12
  }
12
13
  export default _default;
@@ -9,5 +9,6 @@ exports.default = {
9
9
  icon: {
10
10
  'class': 'text-2xl',
11
11
  'data-wv-section': 'icon',
12
+ 'severity': 'secondary',
12
13
  },
13
14
  };
@@ -1,11 +1,12 @@
1
1
  declare namespace _default {
2
- let root: {
2
+ function root(): {
3
3
  class: string;
4
4
  'data-wv-name': string;
5
5
  'data-wv-section': string;
6
6
  };
7
- let icon: {
7
+ function icon(): {
8
8
  class: string;
9
+ severity: string;
9
10
  'data-wv-section': string;
10
11
  };
11
12
  }
@@ -1,13 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
- root: {
4
+ root: function () { return ({
5
5
  'class': 'focus-within:ring-2 focus-within:ring-primary-400 focus-within:outline-none rounded-sm',
6
6
  'data-wv-name': 'buttonfilter',
7
7
  'data-wv-section': 'root',
8
- },
9
- icon: {
8
+ }); },
9
+ icon: function () { return ({
10
10
  'class': 'text-2xl',
11
+ 'severity': 'secondary',
11
12
  'data-wv-section': 'icon',
12
- },
13
+ }); },
13
14
  };
@@ -149,6 +149,7 @@ exports.default = {
149
149
  'class': [
150
150
  'text-xs px-2 py-0.5',
151
151
  'border-0 !border-b !border-solid border-primary-100',
152
+ 'justify-items-start',
152
153
  '[&:has([data-wv-section=rowcheckbox])]:text-center',
153
154
  '[&:has([data-wv-section=rowcheckbox])]:text-center',
154
155
  ],
@@ -0,0 +1,7 @@
1
+ declare namespace _default {
2
+ namespace root {
3
+ let _class: string[];
4
+ export { _class as class };
5
+ }
6
+ }
7
+ export default _default;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.default = {
4
+ root: {
5
+ class: [
6
+ 'bg-primary-50 rounded-[7px] [&>*]:w-full [&>*]min-w-0',
7
+ 'grid items-end p-3 gap-4',
8
+ ],
9
+ },
10
+ };
@@ -3,6 +3,7 @@ declare namespace wangsvue {
3
3
  export { global };
4
4
  export { directives };
5
5
  export { form };
6
+ export { filtercontainer };
6
7
  export { autocomplete };
7
8
  export { dropdown };
8
9
  export { inputnumber };
@@ -100,6 +101,7 @@ declare namespace directives {
100
101
  export { tooltip };
101
102
  }
102
103
  import form from './form/index';
104
+ import filtercontainer from './filtercontainer';
103
105
  import autocomplete from './autocomplete/index.js';
104
106
  import dropdown from './dropdown/index.js';
105
107
  import inputnumber from './inputnumber/index.js';
package/wangsvue/index.js CHANGED
@@ -94,6 +94,7 @@ var index_js_87 = require("./breadcrumb/index.js");
94
94
  var inputcurrency_1 = require("./inputcurrency");
95
95
  var fileupload_1 = require("./fileupload");
96
96
  var workcalendar_1 = require("./workcalendar");
97
+ var filtercontainer_1 = require("./filtercontainer");
97
98
  var directives = {
98
99
  badge: index_js_6.default,
99
100
  ripple: index_js_62.default,
@@ -104,6 +105,7 @@ var wangsvue = {
104
105
  directives: directives,
105
106
  // Forms
106
107
  form: index_1.default,
108
+ filtercontainer: filtercontainer_1.default,
107
109
  autocomplete: index_js_2.default,
108
110
  dropdown: index_js_30.default,
109
111
  inputnumber: index_js_39.default,