@univerjs/design 0.1.12 → 0.1.13
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/lib/cjs/index.js +12 -12
- package/lib/es/index.js +4835 -4779
- package/lib/index.css +1 -1
- package/lib/locale/en-US.json +64 -0
- package/lib/locale/ru-RU.json +86 -0
- package/lib/locale/zh-CN.json +123 -0
- package/lib/types/components/config-provider/ConfigProvider.d.ts +2 -2
- package/lib/types/components/dialog/Dialog.d.ts +1 -0
- package/lib/types/components/message/Message.d.ts +20 -12
- package/lib/types/components/message/index.d.ts +1 -1
- package/lib/types/components/switch/Switch.d.ts +8 -0
- package/lib/types/{locale → components/switch}/index.d.ts +1 -4
- package/lib/types/index.d.ts +5 -2
- package/lib/umd/index.js +12 -12
- package/package.json +5 -4
|
@@ -13,7 +13,4 @@
|
|
|
13
13
|
* See the License for the specific language governing permissions and
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
|
-
export {
|
|
17
|
-
export { type ILocale } from './interface';
|
|
18
|
-
export { default as zhCN } from './zh-CN';
|
|
19
|
-
export { default as ruRU } from './ru-RU';
|
|
16
|
+
export { Switch } from './Switch';
|
package/lib/types/index.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export { FormDualColumnLayout, type IFormDualColumnLayoutProps, FormLayout, type
|
|
|
29
29
|
export { type IInputProps, type IInputWithSlotProps, Input, InputWithSlot } from './components/input';
|
|
30
30
|
export { type IInputNumberProps, InputNumber } from './components/input-number';
|
|
31
31
|
export { type MenuRef, Menu, MenuItem, MenuItemGroup, SubMenu } from './components/menu';
|
|
32
|
-
export { type
|
|
32
|
+
export { type IMessageOptions, type IMessageProps, Message, MessageType } from './components/message';
|
|
33
33
|
export { type IPagerProps, Pager } from './components/pager';
|
|
34
34
|
export { type IPopupProps, Popup, RectPopup, type IRectPopupProps } from './components/popup';
|
|
35
35
|
export { type IRadioProps, Radio } from './components/radio';
|
|
@@ -41,7 +41,10 @@ export { type ISegmentedProps, Segmented } from './components/segmented';
|
|
|
41
41
|
export { type ISliderProps, Slider } from './components/slider';
|
|
42
42
|
export { type ITooltipProps, Tooltip, resizeObserverCtor } from './components/tooltip';
|
|
43
43
|
export { type ITreeNodeProps, type ITreeProps, Tree, TreeSelectionMode, mergeTreeSelected, findSubTreeFromPath, findNodePathFromTree, filterLeafNode } from './components/tree';
|
|
44
|
-
export
|
|
44
|
+
export * as enUS from './locale/en-US';
|
|
45
|
+
export * as ruRU from './locale/ru-RU';
|
|
46
|
+
export * as zhCN from './locale/zh-CN';
|
|
47
|
+
export { Switch } from './components/switch';
|
|
45
48
|
export { type ILocale } from './locale/interface';
|
|
46
49
|
export { defaultTheme, greenTheme, themeInstance } from './themes';
|
|
47
50
|
export { DraggableList, type IDraggableListProps } from './components/draggable-list';
|