react-luminus-components 1.3.185 → 1.3.186
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/.vite/manifest.json +38 -28
- package/dist/{Loading-ClfDUtqs.js → Loading-t5uR0uRd.js} +1 -1
- package/dist/components/ShortcutLinks/ShortcutLinks/ShortcutLinks.d.ts +3 -1
- package/dist/components/ShortcutLinks/ShortcutLinks/comps/ShortcutLink/ShortcutLink.d.ts +2 -2
- package/dist/components/ShortcutLinks/ShortcutLinks/comps/ShortcutLinkCreate/ShortcutLinkCreate.d.ts +12 -0
- package/dist/components/ShortcutLinks/ShortcutLinks/comps/ShortcutLinkCreate/comps/ShortcutLinkCreateModal/ShortcutLinkCreateModal.d.ts +14 -0
- package/dist/components/ShortcutLinks/ShortcutLinks/comps/ShortcutLinkCreate/comps/index.d.ts +1 -0
- package/dist/components/ShortcutLinks/ShortcutLinks/comps/index.d.ts +1 -0
- package/dist/components/ShortcutLinks/ShortcutLinksContext/ShortcutLinksContext.d.ts +6 -4
- package/dist/components/ShortcutLinks/ShortcutLinksContext/ShortcutLinksProvider.d.ts +2 -1
- package/dist/components/ShortcutLinks/ShortcutLinksContext/hooks/useShortcutLinksApi.d.ts +8 -0
- package/dist/components/ShortcutLinks/ShortcutLinksSetup/ShortcutLinksSetup.d.ts +8 -0
- package/dist/components/ShortcutLinks/ShortcutLinksSetup/comps/ShortcutLinkSetupItem/ShortcutLinkSetupItem.d.ts +13 -0
- package/dist/components/ShortcutLinks/ShortcutLinksSetup/comps/ShortcutLinkSetupItem/comps/ShortcutLinkItemEdit/ShortcutLinkItemEdit.d.ts +12 -0
- package/dist/components/ShortcutLinks/index.d.ts +1 -1
- package/dist/contexts.cjs.js +1 -1
- package/dist/contexts.es.js +18 -17
- package/dist/hooks.cjs.js +1 -1
- package/dist/hooks.es.js +23 -22
- package/dist/layout.es.js +3 -3
- package/dist/main.cjs.js +2 -2
- package/dist/main.d.ts +1 -1
- package/dist/main.es.js +1866 -1805
- package/dist/models/api/shortcutLinks/ShortcutLinkCreateModel.d.ts +4 -0
- package/dist/models/api/shortcutLinks/ShortcutLinkModel.d.ts +8 -0
- package/dist/models/index.d.ts +4 -0
- package/dist/models/texts/ShortcutLinkTexts.d.ts +2 -0
- package/dist/models/ui/shortcutLinks/ShortcutLinkCreateUiModel.d.ts +4 -0
- package/dist/models/ui/shortcutLinks/ShortcutLinkUiModel.d.ts +4 -0
- package/dist/{nivo-bar.es-dpxJHky8.js → nivo-bar.es-i2iP31eh.js} +0 -1
- package/dist/{searchUtils-D3hbf2-a.js → searchUtils-CcPSNrZS.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{useClipboard-B-kckvnR.js → useClipboard-CBARkaX7.js} +1 -1
- package/dist/useGetApiData-AaXTZWej.js +52 -0
- package/dist/useGetApiData-B63nxUBd.cjs +1 -0
- package/dist/useLocalStorageState-BFc8Gc8H.cjs +1 -0
- package/dist/useLocalStorageState-Bt99kkCr.js +17 -0
- package/dist/{usePermissions-CQBhLlye.js → usePermissions-_Qk_9OJC.js} +1 -1
- package/dist/utils.es.js +3 -3
- package/package.json +1 -1
- package/dist/components/ShortcutLinks/ShortcutLinksSetupModal/ShortcutLinksSetupModal.d.ts +0 -11
- package/dist/components/ShortcutLinks/ShortcutLinksSetupModal/comps/ShortcutLinkSetupItem/ShortcutLinkSetupItem.d.ts +0 -13
- package/dist/components/ShortcutLinks/ShortcutLinksSetupModal/comps/ShortcutLinkSetupItem/comps/ShortcutLinkItemEdit/ShortcutLinkItemEdit.d.ts +0 -12
- package/dist/components/ShortcutLinks/common/types/ShortcutLinkObject.d.ts +0 -7
- package/dist/useLocalStorageState-Dk99sIDN.cjs +0 -1
- package/dist/useLocalStorageState-UeBFsOvS.js +0 -65
- /package/dist/components/ShortcutLinks/{ShortcutLinksSetupModal → ShortcutLinksSetup}/comps/ShortcutLinkSetupItem/comps/index.d.ts +0 -0
- /package/dist/components/ShortcutLinks/{ShortcutLinksSetupModal → ShortcutLinksSetup}/comps/index.d.ts +0 -0
package/dist/main.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export { Tabs, Tab, TabPanel } from './components/NewTabs';
|
|
|
52
52
|
export { default as ResponsiveTabs } from './components/ResponsiveTabs/ResponsiveTabs';
|
|
53
53
|
export { FloatingLabelInput, RowLabelInput, NoInputContainer } from './components/InputContainers';
|
|
54
54
|
export { default as IconPicker } from './components/IconPicker/IconPicker';
|
|
55
|
-
export {
|
|
55
|
+
export { ShortcutLinksSetup } from './components/ShortcutLinks';
|
|
56
56
|
export { ShortcutLinks } from './components/ShortcutLinks';
|
|
57
57
|
export { ShortcutLinksProvider } from './components/ShortcutLinks';
|
|
58
58
|
export { useShortcutLinksContext } from './components/ShortcutLinks';
|