laif-ds 0.1.5 → 0.1.7
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/_virtual/_cloneBuffer.js +5 -0
- package/dist/_virtual/dayjs.min.js +8 -0
- package/dist/_virtual/dayjs.min2.js +5 -0
- package/dist/_virtual/debounce.js +8 -0
- package/dist/_virtual/index5.js +5 -2
- package/dist/_virtual/index6.js +5 -0
- package/dist/_virtual/index7.js +5 -0
- package/dist/_virtual/localizedFormat.js +8 -0
- package/dist/_virtual/localizedFormat2.js +5 -0
- package/dist/_virtual/omit.js +8 -0
- package/dist/components/ui/data-table.js +122 -0
- package/dist/components/ui/gantt/assets/icons/MinusSquareOutlined.js +36 -0
- package/dist/components/ui/gantt/assets/icons/PlusSquareOutlined.js +45 -0
- package/dist/components/ui/gantt/components/Chart/Bars/Bars.js +115 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarItem/BarItem.js +158 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarsItems/BarItems.js +36 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarsRow.js +26 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/BarsRowContext.js +14 -0
- package/dist/components/ui/gantt/components/Chart/Bars/BarsRow/RepeteadBars/RepeteadBars.js +75 -0
- package/dist/components/ui/gantt/components/Chart/Chart.js +66 -0
- package/dist/components/ui/gantt/components/Chart/Scale/Scale.js +88 -0
- package/dist/components/ui/gantt/components/Chart/Tree/Tree.js +72 -0
- package/dist/components/ui/gantt/components/Controls/Controls.js +82 -0
- package/dist/components/ui/gantt/components/Gantt/Gantt.js +58 -0
- package/dist/components/ui/gantt/components/Gantt/GanttContext.js +35 -0
- package/dist/components/ui/gantt/constants/DimensionsSettings.js +89 -0
- package/dist/components/ui/gantt/constants/DragStepOptions.js +43 -0
- package/dist/components/ui/gantt/constants/GanttConsts.js +17 -0
- package/dist/components/ui/gantt/constants/colors.json.js +106 -0
- package/dist/components/ui/gantt/enums/DataRepeatTimes.js +5 -0
- package/dist/components/ui/gantt/enums/DragStepSizes.js +5 -0
- package/dist/components/ui/gantt/enums/DragTypes.js +5 -0
- package/dist/components/ui/gantt/enums/GanttDimensions.js +5 -0
- package/dist/components/ui/gantt/enums/GanttUnitOfTimes.js +5 -0
- package/dist/components/ui/gantt/hooks/useForwardRef.js +11 -0
- package/dist/components/ui/gantt/hooks/useGanttCalculate.js +30 -0
- package/dist/components/ui/gantt/utils/getInitialScrollOffset.js +11 -0
- package/dist/components/ui/gantt/utils/getScaleDates.js +14 -0
- package/dist/components/ui/gantt/utils/getScaleItems.js +33 -0
- package/dist/components/ui/gantt/utils/getWholeWidth.js +7 -0
- package/dist/components/ui/gantt/utils/transformData.js +36 -0
- package/dist/components/ui/toaster.js +26 -0
- package/dist/dist/_virtual/jsx-runtime.js +6 -0
- package/dist/dist/_virtual/jsx-runtime2.js +5 -0
- package/dist/dist/_virtual/react-jsx-runtime.development.js +5 -0
- package/dist/dist/_virtual/react-jsx-runtime.production.js +5 -0
- package/dist/dist/components/ui/checkbox.js +32 -0
- package/dist/dist/components/ui/scroll-area.js +61 -0
- package/dist/dist/components/ui/table.js +87 -0
- package/dist/dist/lib/utils.js +9 -0
- package/dist/dist/node_modules/@radix-ui/number/dist/index.js +7 -0
- package/dist/dist/node_modules/@radix-ui/primitive/dist/index.js +10 -0
- package/dist/dist/node_modules/@radix-ui/react-checkbox/dist/index.js +136 -0
- package/dist/dist/node_modules/@radix-ui/react-compose-refs/dist/index.js +30 -0
- package/dist/dist/node_modules/@radix-ui/react-context/dist/index.js +56 -0
- package/dist/dist/node_modules/@radix-ui/react-direction/dist/index.js +10 -0
- package/dist/dist/node_modules/@radix-ui/react-presence/dist/index.js +72 -0
- package/dist/dist/node_modules/@radix-ui/react-primitive/dist/index.js +32 -0
- package/dist/dist/node_modules/@radix-ui/react-scroll-area/dist/index.js +534 -0
- package/dist/dist/node_modules/@radix-ui/react-slot/dist/index.js +50 -0
- package/dist/dist/node_modules/@radix-ui/react-use-callback-ref/dist/index.js +14 -0
- package/dist/dist/node_modules/@radix-ui/react-use-controllable-state/dist/index.js +33 -0
- package/dist/dist/node_modules/@radix-ui/react-use-layout-effect/dist/index.js +7 -0
- package/dist/dist/node_modules/@radix-ui/react-use-previous/dist/index.js +9 -0
- package/dist/dist/node_modules/@radix-ui/react-use-size/dist/index.js +28 -0
- package/dist/dist/node_modules/clsx/dist/clsx.js +18 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/Icon.js +41 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +28 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +21 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/icons/check.js +13 -0
- package/dist/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +20 -0
- package/dist/dist/node_modules/react/cjs/react-jsx-runtime.development.js +248 -0
- package/dist/dist/node_modules/react/cjs/react-jsx-runtime.production.js +36 -0
- package/dist/dist/node_modules/react/jsx-runtime.js +11 -0
- package/dist/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +2732 -0
- package/dist/index.d.ts +191 -1
- package/dist/index.js +303 -295
- package/dist/laif-ds.css +1 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +8 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/extends.js +13 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +8 -0
- package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +9 -0
- package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.js +57 -0
- package/dist/node_modules/@dnd-kit/core/dist/core.esm.js +2150 -0
- package/dist/node_modules/@dnd-kit/modifiers/dist/modifiers.esm.js +27 -0
- package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.js +184 -0
- package/dist/node_modules/@tanstack/react-table/build/lib/index.js +103 -0
- package/dist/node_modules/@tanstack/table-core/build/lib/index.js +1896 -0
- package/dist/node_modules/classnames/index.js +43 -0
- package/dist/node_modules/dayjs/dayjs.min.js +283 -0
- package/dist/node_modules/dayjs/plugin/localizedFormat.js +30 -0
- package/dist/node_modules/lodash/_arrayEach.js +15 -0
- package/dist/node_modules/lodash/_assignValue.js +17 -0
- package/dist/node_modules/lodash/_baseAssign.js +16 -0
- package/dist/node_modules/lodash/_baseAssignIn.js +16 -0
- package/dist/node_modules/lodash/_baseAssignValue.js +20 -0
- package/dist/node_modules/lodash/_baseClone.js +71 -0
- package/dist/node_modules/lodash/_baseCreate.js +24 -0
- package/dist/node_modules/lodash/_baseIsMap.js +16 -0
- package/dist/node_modules/lodash/_baseIsSet.js +16 -0
- package/dist/node_modules/lodash/_baseKeysIn.js +22 -0
- package/dist/node_modules/lodash/_baseUnset.js +18 -0
- package/dist/node_modules/lodash/_cloneArrayBuffer.js +16 -0
- package/dist/node_modules/lodash/_cloneBuffer.js +20 -0
- package/dist/node_modules/lodash/_cloneDataView.js +16 -0
- package/dist/node_modules/lodash/_cloneRegExp.js +15 -0
- package/dist/node_modules/lodash/_cloneSymbol.js +15 -0
- package/dist/node_modules/lodash/_cloneTypedArray.js +16 -0
- package/dist/node_modules/lodash/_copyArray.js +16 -0
- package/dist/node_modules/lodash/_copyObject.js +22 -0
- package/dist/node_modules/lodash/_copySymbols.js +16 -0
- package/dist/node_modules/lodash/_copySymbolsIn.js +16 -0
- package/dist/node_modules/lodash/_customOmitClone.js +15 -0
- package/dist/node_modules/lodash/_flatRest.js +17 -0
- package/dist/node_modules/lodash/_getAllKeysIn.js +17 -0
- package/dist/node_modules/lodash/_getPrototype.js +12 -0
- package/dist/node_modules/lodash/_getSymbolsIn.js +19 -0
- package/dist/node_modules/lodash/_initCloneArray.js +15 -0
- package/dist/node_modules/lodash/_initCloneByTag.js +49 -0
- package/dist/node_modules/lodash/_initCloneObject.js +17 -0
- package/dist/node_modules/lodash/_nativeKeysIn.js +17 -0
- package/dist/node_modules/lodash/_parent.js +16 -0
- package/dist/node_modules/lodash/flatten.js +16 -0
- package/dist/node_modules/lodash/isMap.js +14 -0
- package/dist/node_modules/lodash/isPlainObject.js +23 -0
- package/dist/node_modules/lodash/isSet.js +14 -0
- package/dist/node_modules/lodash/keysIn.js +17 -0
- package/dist/node_modules/lodash/last.js +14 -0
- package/dist/node_modules/lodash/omit.js +30 -0
- package/dist/node_modules/memoize-one/dist/memoize-one.esm.js +28 -0
- package/dist/node_modules/react-window/dist/index.esm.js +375 -0
- package/dist/node_modules/style-to-object/cjs/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +16 -7
- package/dist/components/ui/sonner.js +0 -23
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
function t() {
|
|
3
|
+
return t = Object.assign ? Object.assign.bind() : function(r) {
|
|
4
|
+
for (var n = 1; n < arguments.length; n++) {
|
|
5
|
+
var a = arguments[n];
|
|
6
|
+
for (var e in a) ({}).hasOwnProperty.call(a, e) && (r[e] = a[e]);
|
|
7
|
+
}
|
|
8
|
+
return r;
|
|
9
|
+
}, t.apply(null, arguments);
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
t as default
|
|
13
|
+
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import a, { useState as c, useCallback as r } from "react";
|
|
3
|
+
const l = {
|
|
4
|
+
display: "none"
|
|
5
|
+
};
|
|
6
|
+
function u(e) {
|
|
7
|
+
let {
|
|
8
|
+
id: n,
|
|
9
|
+
value: t
|
|
10
|
+
} = e;
|
|
11
|
+
return a.createElement("div", {
|
|
12
|
+
id: n,
|
|
13
|
+
style: l
|
|
14
|
+
}, t);
|
|
15
|
+
}
|
|
16
|
+
function s(e) {
|
|
17
|
+
let {
|
|
18
|
+
id: n,
|
|
19
|
+
announcement: t,
|
|
20
|
+
ariaLiveType: i = "assertive"
|
|
21
|
+
} = e;
|
|
22
|
+
const o = {
|
|
23
|
+
position: "fixed",
|
|
24
|
+
top: 0,
|
|
25
|
+
left: 0,
|
|
26
|
+
width: 1,
|
|
27
|
+
height: 1,
|
|
28
|
+
margin: -1,
|
|
29
|
+
border: 0,
|
|
30
|
+
padding: 0,
|
|
31
|
+
overflow: "hidden",
|
|
32
|
+
clip: "rect(0 0 0 0)",
|
|
33
|
+
clipPath: "inset(100%)",
|
|
34
|
+
whiteSpace: "nowrap"
|
|
35
|
+
};
|
|
36
|
+
return a.createElement("div", {
|
|
37
|
+
id: n,
|
|
38
|
+
style: o,
|
|
39
|
+
role: "status",
|
|
40
|
+
"aria-live": i,
|
|
41
|
+
"aria-atomic": !0
|
|
42
|
+
}, t);
|
|
43
|
+
}
|
|
44
|
+
function p() {
|
|
45
|
+
const [e, n] = c("");
|
|
46
|
+
return {
|
|
47
|
+
announce: r((i) => {
|
|
48
|
+
i != null && n(i);
|
|
49
|
+
}, []),
|
|
50
|
+
announcement: e
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
export {
|
|
54
|
+
u as HiddenText,
|
|
55
|
+
s as LiveRegion,
|
|
56
|
+
p as useAnnouncement
|
|
57
|
+
};
|