@bigbinary/neeto-commons-frontend 4.13.39 → 4.13.41
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.
|
@@ -26,11 +26,34 @@ module.exports = {
|
|
|
26
26
|
src: srcPath,
|
|
27
27
|
neetoui: "@bigbinary/neetoui",
|
|
28
28
|
neetocommons: "@bigbinary/neeto-commons-frontend",
|
|
29
|
+
neetointegrations: "@bigbinary/neeto-integrations-frontend",
|
|
30
|
+
neetothemes: "@bigbinary/neeto-themes-frontend",
|
|
31
|
+
neetoslack: "@bigbinary/neeto-slack-frontend",
|
|
32
|
+
neetoRules: "@bigbinary/neeto-rules-frontend",
|
|
33
|
+
neetoapprovals: "@bigbinary/neeto-approvals-frontend",
|
|
34
|
+
neetofields: "@bigbinary/neeto-fields-frontend",
|
|
35
|
+
neetofolders: "@bigbinary/neeto-folders-frontend",
|
|
36
|
+
neetoredirecturls: "@bigbinary/neeto-redirect-urls-frontend",
|
|
37
|
+
neetogithub: "@bigbinary/neeto-github-frontend",
|
|
38
|
+
neetoratelimit: "@bigbinary/neeto-rate-limit-frontend",
|
|
39
|
+
neetoaccesscontrol: "@bigbinary/neeto-access-control-frontend",
|
|
40
|
+
neetotags: "@bigbinary/neeto-tags-frontend",
|
|
41
|
+
neetoactivities: "@bigbinary/neeto-activities-frontend",
|
|
42
|
+
neetotemplates: "@bigbinary/neeto-templates-frontend",
|
|
43
|
+
neetoapikeys: "@bigbinary/neeto-api-keys-frontend",
|
|
44
|
+
neetoemailnotifications: "@bigbinary/neeto-email-notifications-frontend",
|
|
45
|
+
neetothankyou: "@bigbinary/neeto-thank-you-frontend",
|
|
46
|
+
neetoimageuploader: "@bigbinary/neeto-image-uploader-frontend",
|
|
47
|
+
neetowebhooks: "@bigbinary/neeto-webhooks-frontend",
|
|
48
|
+
neetoform: "@bigbinary/neeto-form-frontend",
|
|
49
|
+
neetoprojects: "@bigbinary/neeto-projects-frontend",
|
|
50
|
+
neetomessagetemplates: "@bigbinary/neeto-message-templates-frontend",
|
|
29
51
|
neetoicons: "@bigbinary/neeto-icons",
|
|
30
52
|
neetoteam: "@bigbinary/neeto-team-members-frontend",
|
|
31
53
|
neetoeditor: "@bigbinary/neeto-editor",
|
|
32
54
|
neetofilters: "@bigbinary/neeto-filters-frontend",
|
|
33
55
|
neetomolecules: "@bigbinary/neeto-molecules",
|
|
56
|
+
neetopayments: "@bigbinary/neeto-payments-frontend",
|
|
34
57
|
neetocist: "@bigbinary/neeto-cist",
|
|
35
58
|
neetohotkeys: "@bigbinary/neeto-hotkeys",
|
|
36
59
|
},
|
|
@@ -58,7 +58,7 @@ var timeFormat = {
|
|
|
58
58
|
return utils_dayjs(time).format(getDefaultFormat());
|
|
59
59
|
},
|
|
60
60
|
defaultWithTime: function defaultWithTime(time) {
|
|
61
|
-
return utils_dayjs(time).format("".concat(getDefaultFormat(), "
|
|
61
|
+
return utils_dayjs(time).format("".concat(getDefaultFormat(), " LT"));
|
|
62
62
|
}
|
|
63
63
|
};
|
|
64
64
|
var dateFormat = timeFormat;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datetime.js","sources":["../../../src/utils/datetime.js"],"sourcesContent":["/* eslint-disable @bigbinary/neeto/use-standard-date-time-formats */\nimport dayjs from \"./dayjs\";\n\nconst getDefaultFormat = () => globalProps?.user?.dateFormat ?? \"DD/MM/YYYY\";\n\nexport const timeFormat = {\n fromNow: time => dayjs(time).fromNow(),\n time: time => dayjs(time).format(\"LT\"),\n timeWithSeconds: time => dayjs(time).format(\"LTS\"),\n date: time => dayjs(time).format(\"ll\"),\n dateWeek: time => dayjs(time).format(\"ll ddd\"),\n dateWeekDayExtended: time => dayjs(time).format(\"ll dddd\"),\n dateWeekWithoutYear: time => dayjs(time).format(\"MMM D, ddd\"),\n dateWeekWithoutYearDayExtended: time => dayjs(time).format(\"MMM D, dddd\"),\n dateTime: time => dayjs(time).format(\"ll LT\"),\n dateTimeWithSeconds: time => dayjs(time).format(\"ll LTS\"),\n dateWeekTime: time => dayjs(time).format(\"ll ddd LT\"),\n dateWeekTimeDayExtended: time => dayjs(time).format(\"ll dddd LT\"),\n extended: time => {\n const dateTime = dayjs(time).format(\"dddd LL LT\");\n const fromNow = dayjs(time).fromNow();\n\n return `${dateTime} (${fromNow})`;\n },\n default: time => dayjs(time).format(getDefaultFormat()),\n defaultWithTime: time => dayjs(time).format(`${getDefaultFormat()}
|
|
1
|
+
{"version":3,"file":"datetime.js","sources":["../../../src/utils/datetime.js"],"sourcesContent":["/* eslint-disable @bigbinary/neeto/use-standard-date-time-formats */\nimport dayjs from \"./dayjs\";\n\nconst getDefaultFormat = () => globalProps?.user?.dateFormat ?? \"DD/MM/YYYY\";\n\nexport const timeFormat = {\n fromNow: time => dayjs(time).fromNow(),\n time: time => dayjs(time).format(\"LT\"),\n timeWithSeconds: time => dayjs(time).format(\"LTS\"),\n date: time => dayjs(time).format(\"ll\"),\n dateWeek: time => dayjs(time).format(\"ll ddd\"),\n dateWeekDayExtended: time => dayjs(time).format(\"ll dddd\"),\n dateWeekWithoutYear: time => dayjs(time).format(\"MMM D, ddd\"),\n dateWeekWithoutYearDayExtended: time => dayjs(time).format(\"MMM D, dddd\"),\n dateTime: time => dayjs(time).format(\"ll LT\"),\n dateTimeWithSeconds: time => dayjs(time).format(\"ll LTS\"),\n dateWeekTime: time => dayjs(time).format(\"ll ddd LT\"),\n dateWeekTimeDayExtended: time => dayjs(time).format(\"ll dddd LT\"),\n extended: time => {\n const dateTime = dayjs(time).format(\"dddd LL LT\");\n const fromNow = dayjs(time).fromNow();\n\n return `${dateTime} (${fromNow})`;\n },\n default: time => dayjs(time).format(getDefaultFormat()),\n defaultWithTime: time => dayjs(time).format(`${getDefaultFormat()} LT`),\n};\n\nexport const dateFormat = timeFormat;\n"],"names":["getDefaultFormat","_globalProps$user$dat","_globalProps","globalProps","user","dateFormat","timeFormat","fromNow","time","dayjs","format","timeWithSeconds","date","dateWeek","dateWeekDayExtended","dateWeekWithoutYear","dateWeekWithoutYearDayExtended","dateTime","dateTimeWithSeconds","dateWeekTime","dateWeekTimeDayExtended","extended","concat","default","defaultWithTime"],"mappings":"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"}
|
package/dist/utils/datetime.js
CHANGED
|
@@ -56,7 +56,7 @@ var timeFormat = {
|
|
|
56
56
|
return dayjs(time).format(getDefaultFormat());
|
|
57
57
|
},
|
|
58
58
|
defaultWithTime: function defaultWithTime(time) {
|
|
59
|
-
return dayjs(time).format("".concat(getDefaultFormat(), "
|
|
59
|
+
return dayjs(time).format("".concat(getDefaultFormat(), " LT"));
|
|
60
60
|
}
|
|
61
61
|
};
|
|
62
62
|
var dateFormat = timeFormat;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datetime.js","sources":["../../src/utils/datetime.js"],"sourcesContent":["/* eslint-disable @bigbinary/neeto/use-standard-date-time-formats */\nimport dayjs from \"./dayjs\";\n\nconst getDefaultFormat = () => globalProps?.user?.dateFormat ?? \"DD/MM/YYYY\";\n\nexport const timeFormat = {\n fromNow: time => dayjs(time).fromNow(),\n time: time => dayjs(time).format(\"LT\"),\n timeWithSeconds: time => dayjs(time).format(\"LTS\"),\n date: time => dayjs(time).format(\"ll\"),\n dateWeek: time => dayjs(time).format(\"ll ddd\"),\n dateWeekDayExtended: time => dayjs(time).format(\"ll dddd\"),\n dateWeekWithoutYear: time => dayjs(time).format(\"MMM D, ddd\"),\n dateWeekWithoutYearDayExtended: time => dayjs(time).format(\"MMM D, dddd\"),\n dateTime: time => dayjs(time).format(\"ll LT\"),\n dateTimeWithSeconds: time => dayjs(time).format(\"ll LTS\"),\n dateWeekTime: time => dayjs(time).format(\"ll ddd LT\"),\n dateWeekTimeDayExtended: time => dayjs(time).format(\"ll dddd LT\"),\n extended: time => {\n const dateTime = dayjs(time).format(\"dddd LL LT\");\n const fromNow = dayjs(time).fromNow();\n\n return `${dateTime} (${fromNow})`;\n },\n default: time => dayjs(time).format(getDefaultFormat()),\n defaultWithTime: time => dayjs(time).format(`${getDefaultFormat()}
|
|
1
|
+
{"version":3,"file":"datetime.js","sources":["../../src/utils/datetime.js"],"sourcesContent":["/* eslint-disable @bigbinary/neeto/use-standard-date-time-formats */\nimport dayjs from \"./dayjs\";\n\nconst getDefaultFormat = () => globalProps?.user?.dateFormat ?? \"DD/MM/YYYY\";\n\nexport const timeFormat = {\n fromNow: time => dayjs(time).fromNow(),\n time: time => dayjs(time).format(\"LT\"),\n timeWithSeconds: time => dayjs(time).format(\"LTS\"),\n date: time => dayjs(time).format(\"ll\"),\n dateWeek: time => dayjs(time).format(\"ll ddd\"),\n dateWeekDayExtended: time => dayjs(time).format(\"ll dddd\"),\n dateWeekWithoutYear: time => dayjs(time).format(\"MMM D, ddd\"),\n dateWeekWithoutYearDayExtended: time => dayjs(time).format(\"MMM D, dddd\"),\n dateTime: time => dayjs(time).format(\"ll LT\"),\n dateTimeWithSeconds: time => dayjs(time).format(\"ll LTS\"),\n dateWeekTime: time => dayjs(time).format(\"ll ddd LT\"),\n dateWeekTimeDayExtended: time => dayjs(time).format(\"ll dddd LT\"),\n extended: time => {\n const dateTime = dayjs(time).format(\"dddd LL LT\");\n const fromNow = dayjs(time).fromNow();\n\n return `${dateTime} (${fromNow})`;\n },\n default: time => dayjs(time).format(getDefaultFormat()),\n defaultWithTime: time => dayjs(time).format(`${getDefaultFormat()} LT`),\n};\n\nexport const dateFormat = timeFormat;\n"],"names":["getDefaultFormat","_globalProps$user$dat","_globalProps","globalProps","user","dateFormat","timeFormat","fromNow","time","dayjs","format","timeWithSeconds","date","dateWeek","dateWeekDayExtended","dateWeekWithoutYear","dateWeekWithoutYearDayExtended","dateTime","dateTimeWithSeconds","dateWeekTime","dateWeekTimeDayExtended","extended","concat","default","defaultWithTime"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-commons-frontend",
|
|
3
|
-
"version": "4.13.
|
|
3
|
+
"version": "4.13.41",
|
|
4
4
|
"description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
|
|
5
5
|
"repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
|
|
6
6
|
"author": "Amaljith K <amaljith.k@bigbinary.com>",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"@babel/types": "^7.20.7",
|
|
85
85
|
"@bigbinary/babel-preset-neeto": "1.0.8",
|
|
86
86
|
"@bigbinary/eslint-plugin-neeto": "^1.6.0",
|
|
87
|
-
"@bigbinary/neeto-audit-frontend": "^2.
|
|
87
|
+
"@bigbinary/neeto-audit-frontend": "^2.2.0",
|
|
88
88
|
"@bigbinary/neeto-cist": "1.0.11",
|
|
89
89
|
"@bigbinary/neeto-commons-frontend": "4.4.6",
|
|
90
90
|
"@bigbinary/neeto-editor": "1.38.1",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"babel-preset-typescript": "^7.0.0-alpha.19",
|
|
143
143
|
"css-loader": "4.3.0",
|
|
144
144
|
"dayjs": "1.11.13",
|
|
145
|
-
"dompurify": "^2.4
|
|
145
|
+
"dompurify": "^3.2.4",
|
|
146
146
|
"esbuild": "0.24.0",
|
|
147
147
|
"esbuild-plugin-svgr": "^3.1.0",
|
|
148
148
|
"esbuild-plugin-yaml": "^0.0.1",
|
|
@@ -235,7 +235,7 @@
|
|
|
235
235
|
"avvvatars-react": "0.4.2",
|
|
236
236
|
"axios": "1.8.2",
|
|
237
237
|
"dayjs": "1.11.13",
|
|
238
|
-
"dompurify": "^2.4
|
|
238
|
+
"dompurify": "^3.2.4",
|
|
239
239
|
"dotenv-webpack": "^8.0.1",
|
|
240
240
|
"esbuild": "0.24.0",
|
|
241
241
|
"esbuild-plugin-svgr": "^3.1.0",
|
|
@@ -269,5 +269,8 @@
|
|
|
269
269
|
"webpack": "^5.75.0",
|
|
270
270
|
"yup": "0.32.11",
|
|
271
271
|
"zustand": "4.3.2"
|
|
272
|
+
},
|
|
273
|
+
"resolutions": {
|
|
274
|
+
"dompurify": "^3.2.4"
|
|
272
275
|
}
|
|
273
276
|
}
|