@ttoss/components 2.0.12 → 2.0.14
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/esm/Menu/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
|
-
import
|
|
2
|
+
import "../chunk-ESDEGKXL.js";
|
|
3
3
|
|
|
4
4
|
// src/components/Menu/Menu.tsx
|
|
5
5
|
import { Box as Box2, Flex, Image, Text, useResponsiveValue } from "@ttoss/ui";
|
|
@@ -1834,24 +1834,24 @@ function defineIconifyIcon(name = "iconify-icon") {
|
|
|
1834
1834
|
// Customisations
|
|
1835
1835
|
"width", "height", "rotate", "flip"];
|
|
1836
1836
|
const IconifyIcon3 = class extends ParentClass {
|
|
1837
|
+
// Root
|
|
1838
|
+
_shadowRoot;
|
|
1839
|
+
// Initialised
|
|
1840
|
+
_initialised = false;
|
|
1841
|
+
// Icon state
|
|
1842
|
+
_state;
|
|
1843
|
+
// Attributes check queued
|
|
1844
|
+
_checkQueued = false;
|
|
1845
|
+
// Connected
|
|
1846
|
+
_connected = false;
|
|
1847
|
+
// Observer
|
|
1848
|
+
_observer = null;
|
|
1849
|
+
_visible = true;
|
|
1837
1850
|
/**
|
|
1838
1851
|
* Constructor
|
|
1839
1852
|
*/
|
|
1840
1853
|
constructor() {
|
|
1841
1854
|
super();
|
|
1842
|
-
// Root
|
|
1843
|
-
__publicField(this, "_shadowRoot");
|
|
1844
|
-
// Initialised
|
|
1845
|
-
__publicField(this, "_initialised", false);
|
|
1846
|
-
// Icon state
|
|
1847
|
-
__publicField(this, "_state");
|
|
1848
|
-
// Attributes check queued
|
|
1849
|
-
__publicField(this, "_checkQueued", false);
|
|
1850
|
-
// Connected
|
|
1851
|
-
__publicField(this, "_connected", false);
|
|
1852
|
-
// Observer
|
|
1853
|
-
__publicField(this, "_observer", null);
|
|
1854
|
-
__publicField(this, "_visible", true);
|
|
1855
1855
|
const root = this._shadowRoot = this.attachShadow({
|
|
1856
1856
|
mode: "open"
|
|
1857
1857
|
});
|
package/dist/esm/Modal/index.js
CHANGED
package/dist/esm/Search/index.js
CHANGED
package/dist/esm/Table/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
|
-
import { __export, __reExport } from "../chunk-
|
|
2
|
+
import { __export, __reExport } from "../chunk-ESDEGKXL.js";
|
|
3
3
|
|
|
4
4
|
// src/components/Table/index.ts
|
|
5
5
|
var Table_exports2 = {};
|
package/dist/esm/Toast/index.js
CHANGED
|
@@ -3,12 +3,6 @@ var __defProp = Object.defineProperty;
|
|
|
3
3
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, {
|
|
7
|
-
enumerable: true,
|
|
8
|
-
configurable: true,
|
|
9
|
-
writable: true,
|
|
10
|
-
value
|
|
11
|
-
}) : obj[key] = value;
|
|
12
6
|
var __export = (target, all) => {
|
|
13
7
|
for (var name in all) __defProp(target, name, {
|
|
14
8
|
get: all[name],
|
|
@@ -25,5 +19,4 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
25
19
|
return to;
|
|
26
20
|
};
|
|
27
21
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
28
|
-
|
|
29
|
-
export { __export, __reExport, __publicField };
|
|
22
|
+
export { __export, __reExport };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.14",
|
|
4
4
|
"description": "React components for ttoss ecosystem.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"react": ">=16.8.0",
|
|
77
|
-
"@ttoss/react-hooks": "^2.0.
|
|
78
|
-
"@ttoss/ui": "^5.0.
|
|
77
|
+
"@ttoss/react-hooks": "^2.0.6",
|
|
78
|
+
"@ttoss/ui": "^5.0.12"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@types/jest": "^29.5.14",
|
|
@@ -84,11 +84,11 @@
|
|
|
84
84
|
"react": "^18.3.1",
|
|
85
85
|
"tsup": "^8.3.5",
|
|
86
86
|
"tsx": "^4.6.2",
|
|
87
|
-
"@ttoss/config": "^1.
|
|
88
|
-
"@ttoss/react-
|
|
89
|
-
"@ttoss/
|
|
90
|
-
"@ttoss/
|
|
91
|
-
"@ttoss/
|
|
87
|
+
"@ttoss/config": "^1.35.0",
|
|
88
|
+
"@ttoss/react-hooks": "^2.0.6",
|
|
89
|
+
"@ttoss/react-icons": "^0.4.6",
|
|
90
|
+
"@ttoss/ui": "^5.0.12",
|
|
91
|
+
"@ttoss/test-utils": "^2.1.19"
|
|
92
92
|
},
|
|
93
93
|
"keywords": [
|
|
94
94
|
"React",
|