anysystem-design 0.0.30 → 0.0.31

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.
Files changed (51) hide show
  1. package/dist/components/AutoComplete/AutoCompleteMultiple.js +1 -1
  2. package/dist/components/Checkbox/CheckboxBase.js +1 -1
  3. package/dist/components/Column/Column.d.ts +1 -1
  4. package/dist/components/Column/Column.js +20 -10
  5. package/dist/components/DataTable/components/FieldSelectbox.js +1 -1
  6. package/dist/components/DatePicker/DatePicker.js +95 -6656
  7. package/dist/components/FormControl/FormComponent.js +23 -14
  8. package/dist/components/FormControl/FormContent.d.ts +5 -0
  9. package/dist/components/FormControl/FormContent.js +81 -47
  10. package/dist/components/FormControl/index.d.ts +2 -0
  11. package/dist/components/FormControl/index.js +6 -4
  12. package/dist/components/FormControl/type.d.ts +1 -0
  13. package/dist/components/Icon/Icon.js +1 -1
  14. package/dist/components/Row/Row.d.ts +1 -0
  15. package/dist/components/Row/Row.js +2 -1
  16. package/dist/components/Row/index.js +3 -2
  17. package/dist/components/index.js +43 -40
  18. package/dist/core.esm-Cdxdv0vp.js +2718 -0
  19. package/dist/features/FormBuilder/FormBuilder.d.ts +8 -0
  20. package/dist/features/FormBuilder/FormBuilder.js +190 -0
  21. package/dist/features/FormBuilder/components/BuilderColumn.d.ts +10 -0
  22. package/dist/features/FormBuilder/components/BuilderColumn.js +14 -0
  23. package/dist/features/FormBuilder/components/BuilderRow.d.ts +10 -0
  24. package/dist/features/FormBuilder/components/BuilderRow.js +56 -0
  25. package/dist/features/FormBuilder/components/Controller.d.ts +8 -0
  26. package/dist/features/FormBuilder/components/Controller.js +63 -0
  27. package/dist/features/FormBuilder/components/Draggable.d.ts +10 -0
  28. package/dist/features/FormBuilder/components/Draggable.js +36 -0
  29. package/dist/features/FormBuilder/components/DraggableFormControl.d.ts +8 -0
  30. package/dist/features/FormBuilder/components/DraggableFormControl.js +35 -0
  31. package/dist/features/FormBuilder/components/Droppable.d.ts +9 -0
  32. package/dist/features/FormBuilder/components/Droppable.js +22 -0
  33. package/dist/features/FormBuilder/components/RowController.d.ts +9 -0
  34. package/dist/features/FormBuilder/components/RowController.js +24 -0
  35. package/dist/features/FormBuilder/constants/component_type.d.ts +106 -0
  36. package/dist/features/FormBuilder/constants/component_type.js +227 -0
  37. package/dist/features/FormBuilder/contexts/FormBuilderContext.d.ts +15 -0
  38. package/dist/features/FormBuilder/contexts/FormBuilderContext.js +29 -0
  39. package/dist/features/FormBuilder/index.d.ts +3 -0
  40. package/dist/features/FormBuilder/index.js +4 -0
  41. package/dist/features/FormBuilder/type.d.ts +13 -0
  42. package/dist/features/FormBuilder/type.js +1 -0
  43. package/dist/features/index.d.ts +2 -0
  44. package/dist/features/index.js +4 -0
  45. package/dist/headless-datepicker-BV7tOa5a.js +6568 -0
  46. package/dist/{index-DUypCuzD.js → index-CHNNgawm.js} +3 -3
  47. package/dist/index.css +1 -1
  48. package/dist/index.d.ts +1 -0
  49. package/dist/index.js +53 -48
  50. package/dist/sortable.esm-CtIsNNOX.js +406 -0
  51. package/package.json +34 -31
@@ -4,7 +4,7 @@ import { _ as x } from "../../lodash-DH2GRwR5.js";
4
4
  import { t as E } from "../../bundle-mjs-SHnj3fHy.js";
5
5
  import { H as C } from "../../index-BVp57yIc.js";
6
6
  import { c as w } from "../../index-CBEJ8A3p.js";
7
- import { d as N } from "../../index-DUypCuzD.js";
7
+ import { f as N } from "../../index-CHNNgawm.js";
8
8
  import { getValue as o } from "../Selectbox/helper.js";
9
9
  import { N as L, G as S, H as T, z as q, K as A } from "../../combobox-DcjIgW1K.js";
10
10
  import { X as R } from "../../transition-6o20faRl.js";
@@ -1,6 +1,6 @@
1
1
  import { jsxs as i, jsx as r } from "react/jsx-runtime";
2
2
  import d from "react";
3
- import { b as s, c as u } from "../../index-DUypCuzD.js";
3
+ import { b as s, c as u } from "../../index-CHNNgawm.js";
4
4
  import { t as f } from "../../bundle-mjs-SHnj3fHy.js";
5
5
  const w = ({
6
6
  className: n,
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { ResponsiveColumn } from '../Row';
3
3
 
4
- export type ColumnProps = {
4
+ export type ColumnProps = React.HtmlHTMLAttributes<HTMLDivElement> & {
5
5
  className?: string;
6
6
  span?: ResponsiveColumn;
7
7
  children: React.ReactNode;
@@ -1,6 +1,6 @@
1
- import { jsx as p } from "react/jsx-runtime";
2
- import { t as l } from "../../bundle-mjs-SHnj3fHy.js";
3
- const o = (a) => {
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import { t as r } from "../../bundle-mjs-SHnj3fHy.js";
3
+ const n = (a) => {
4
4
  if (!a)
5
5
  return "";
6
6
  const s = [];
@@ -119,14 +119,24 @@ const o = (a) => {
119
119
  break;
120
120
  }
121
121
  return s.join(" ");
122
- }, u = ({
123
- span: a = { sm: 1, md: 1 },
124
- className: s,
125
- children: e
122
+ }, h = ({
123
+ id: a,
124
+ span: s = { sm: 1, md: 1 },
125
+ className: e,
126
+ children: c,
127
+ ...p
126
128
  }) => {
127
- const c = o(a);
128
- return /* @__PURE__ */ p("div", { className: l("my-col", c, s), children: e });
129
+ const l = n(s);
130
+ return /* @__PURE__ */ o(
131
+ "div",
132
+ {
133
+ className: r("my-col", l, e),
134
+ id: a,
135
+ ...p,
136
+ children: c
137
+ }
138
+ );
129
139
  };
130
140
  export {
131
- u as default
141
+ h as default
132
142
  };
@@ -1,6 +1,6 @@
1
1
  import { jsxs as n, jsx as s, Fragment as F } from "react/jsx-runtime";
2
2
  import w, { Fragment as k } from "react";
3
- import { A as N, a as T } from "../../../index-DUypCuzD.js";
3
+ import { A as N, a as T } from "../../../index-CHNNgawm.js";
4
4
  import { t as c } from "../../../bundle-mjs-SHnj3fHy.js";
5
5
  import { u as C, a as D, b as S, c as j, d as M, e as R } from "../../../calculate-active-index-xXUBsarF.js";
6
6
  import { DataTableContext as A } from "../contexts/DataTableContext.js";