@salutejs/plasma-new-hope 0.322.0-canary.1944.14662885061.0 → 0.322.0-canary.1947.14664713311.0
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/emotion/cjs/components/PaginationDots/PaginationDots.js +321 -0
- package/emotion/cjs/components/PaginationDots/PaginationDots.styles.js +44 -0
- package/emotion/cjs/components/PaginationDots/PaginationDots.template-doc.mdx +95 -0
- package/emotion/cjs/components/PaginationDots/PaginationDots.tokens.js +30 -0
- package/emotion/cjs/components/PaginationDots/PaginationDots.types.js +5 -0
- package/emotion/cjs/components/PaginationDots/hooks/useAnimation.js +108 -0
- package/emotion/cjs/components/PaginationDots/index.js +31 -0
- package/emotion/cjs/components/PaginationDots/utils/getDotSize.js +46 -0
- package/emotion/cjs/components/PaginationDots/variations/_size/base.js +8 -0
- package/emotion/cjs/components/PaginationDots/variations/_size/tokens.json +1 -0
- package/emotion/cjs/components/PaginationDots/variations/_view/base.js +8 -0
- package/emotion/cjs/components/PaginationDots/variations/_view/tokens.json +1 -0
- package/emotion/cjs/examples/plasma_b2c/components/PaginationDots/PaginationDots.config.js +23 -0
- package/emotion/cjs/examples/plasma_b2c/components/PaginationDots/PaginationDots.js +11 -0
- package/emotion/cjs/examples/plasma_b2c/components/PaginationDots/PaginationDots.stories.tsx +87 -0
- package/emotion/cjs/examples/plasma_web/components/PaginationDots/PaginationDots.config.js +24 -0
- package/emotion/cjs/examples/plasma_web/components/PaginationDots/PaginationDots.js +11 -0
- package/emotion/cjs/examples/plasma_web/components/PaginationDots/PaginationDots.stories.tsx +68 -0
- package/emotion/es/components/PaginationDots/PaginationDots.js +311 -0
- package/emotion/es/components/PaginationDots/PaginationDots.styles.js +37 -0
- package/emotion/es/components/PaginationDots/PaginationDots.template-doc.mdx +95 -0
- package/emotion/es/components/PaginationDots/PaginationDots.tokens.js +24 -0
- package/emotion/es/components/PaginationDots/PaginationDots.types.js +1 -0
- package/emotion/es/components/PaginationDots/hooks/useAnimation.js +102 -0
- package/emotion/es/components/PaginationDots/index.js +2 -0
- package/emotion/es/components/PaginationDots/utils/getDotSize.js +40 -0
- package/emotion/es/components/PaginationDots/variations/_size/base.js +2 -0
- package/emotion/es/components/PaginationDots/variations/_size/tokens.json +1 -0
- package/emotion/es/components/PaginationDots/variations/_view/base.js +2 -0
- package/emotion/es/components/PaginationDots/variations/_view/tokens.json +1 -0
- package/emotion/es/examples/plasma_b2c/components/PaginationDots/PaginationDots.config.js +17 -0
- package/emotion/es/examples/plasma_b2c/components/PaginationDots/PaginationDots.js +5 -0
- package/emotion/es/examples/plasma_b2c/components/PaginationDots/PaginationDots.stories.tsx +87 -0
- package/emotion/es/examples/plasma_web/components/PaginationDots/PaginationDots.config.js +18 -0
- package/emotion/es/examples/plasma_web/components/PaginationDots/PaginationDots.js +5 -0
- package/emotion/es/examples/plasma_web/components/PaginationDots/PaginationDots.stories.tsx +68 -0
- package/package.json +4 -4
- package/styled-components/cjs/components/PaginationDots/PaginationDots.js +321 -0
- package/styled-components/cjs/components/PaginationDots/PaginationDots.styles.js +26 -0
- package/styled-components/cjs/components/PaginationDots/PaginationDots.template-doc.mdx +95 -0
- package/styled-components/cjs/components/PaginationDots/PaginationDots.tokens.js +30 -0
- package/styled-components/cjs/components/PaginationDots/PaginationDots.types.js +5 -0
- package/styled-components/cjs/components/PaginationDots/hooks/useAnimation.js +108 -0
- package/styled-components/cjs/components/PaginationDots/index.js +31 -0
- package/styled-components/cjs/components/PaginationDots/utils/getDotSize.js +46 -0
- package/styled-components/cjs/components/PaginationDots/variations/_size/base.js +8 -0
- package/styled-components/cjs/components/PaginationDots/variations/_size/tokens.json +1 -0
- package/styled-components/cjs/components/PaginationDots/variations/_view/base.js +8 -0
- package/styled-components/cjs/components/PaginationDots/variations/_view/tokens.json +1 -0
- package/styled-components/cjs/examples/plasma_b2c/components/PaginationDots/PaginationDots.config.js +23 -0
- package/styled-components/cjs/examples/plasma_b2c/components/PaginationDots/PaginationDots.js +11 -0
- package/styled-components/cjs/examples/plasma_b2c/components/PaginationDots/PaginationDots.stories.tsx +87 -0
- package/styled-components/cjs/examples/plasma_web/components/PaginationDots/PaginationDots.config.js +24 -0
- package/styled-components/cjs/examples/plasma_web/components/PaginationDots/PaginationDots.js +11 -0
- package/styled-components/cjs/examples/plasma_web/components/PaginationDots/PaginationDots.stories.tsx +68 -0
- package/styled-components/es/components/PaginationDots/PaginationDots.js +311 -0
- package/styled-components/es/components/PaginationDots/PaginationDots.styles.js +18 -0
- package/styled-components/es/components/PaginationDots/PaginationDots.template-doc.mdx +95 -0
- package/styled-components/es/components/PaginationDots/PaginationDots.tokens.js +24 -0
- package/styled-components/es/components/PaginationDots/PaginationDots.types.js +1 -0
- package/styled-components/es/components/PaginationDots/hooks/useAnimation.js +102 -0
- package/styled-components/es/components/PaginationDots/index.js +2 -0
- package/styled-components/es/components/PaginationDots/utils/getDotSize.js +40 -0
- package/styled-components/es/components/PaginationDots/variations/_size/base.js +2 -0
- package/styled-components/es/components/PaginationDots/variations/_size/tokens.json +1 -0
- package/styled-components/es/components/PaginationDots/variations/_view/base.js +2 -0
- package/styled-components/es/components/PaginationDots/variations/_view/tokens.json +1 -0
- package/styled-components/es/examples/plasma_b2c/components/PaginationDots/PaginationDots.config.js +17 -0
- package/styled-components/es/examples/plasma_b2c/components/PaginationDots/PaginationDots.js +5 -0
- package/styled-components/es/examples/plasma_b2c/components/PaginationDots/PaginationDots.stories.tsx +87 -0
- package/styled-components/es/examples/plasma_web/components/PaginationDots/PaginationDots.config.js +18 -0
- package/styled-components/es/examples/plasma_web/components/PaginationDots/PaginationDots.js +5 -0
- package/styled-components/es/examples/plasma_web/components/PaginationDots/PaginationDots.stories.tsx +68 -0
- package/types/components/PaginationDots/PaginationDots.d.ts +31 -0
- package/types/components/PaginationDots/PaginationDots.d.ts.map +1 -0
- package/types/components/PaginationDots/PaginationDots.styles.d.ts +9 -0
- package/types/components/PaginationDots/PaginationDots.styles.d.ts.map +1 -0
- package/types/components/PaginationDots/PaginationDots.tokens.d.ts +25 -0
- package/types/components/PaginationDots/PaginationDots.tokens.d.ts.map +1 -0
- package/types/components/PaginationDots/PaginationDots.types.d.ts +46 -0
- package/types/components/PaginationDots/PaginationDots.types.d.ts.map +1 -0
- package/types/components/PaginationDots/hooks/useAnimation.d.ts +23 -0
- package/types/components/PaginationDots/hooks/useAnimation.d.ts.map +1 -0
- package/types/components/PaginationDots/index.d.ts +4 -0
- package/types/components/PaginationDots/index.d.ts.map +1 -0
- package/types/components/PaginationDots/utils/getDotSize.d.ts +2 -0
- package/types/components/PaginationDots/utils/getDotSize.d.ts.map +1 -0
- package/types/components/PaginationDots/variations/_size/base.d.ts +2 -0
- package/types/components/PaginationDots/variations/_size/base.d.ts.map +1 -0
- package/types/components/PaginationDots/variations/_view/base.d.ts +2 -0
- package/types/components/PaginationDots/variations/_view/base.d.ts.map +1 -0
@@ -0,0 +1,4 @@
|
|
1
|
+
export { paginationDotsRoot, paginationDotsConfig } from './PaginationDots';
|
2
|
+
export type { PaginationDotsProps } from './PaginationDots.types';
|
3
|
+
export { tokens as paginationDotsTokens, classes as paginationDotsClasses } from './PaginationDots.tokens';
|
4
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/PaginationDots/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,YAAY,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAClE,OAAO,EAAE,MAAM,IAAI,oBAAoB,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"getDotSize.d.ts","sourceRoot":"","sources":["../../../../src/components/PaginationDots/utils/getDotSize.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,SACb,MAAM,GAAG,SAAS,SACjB,MAAM,UACL,MAAM,SACP,MAAM,gBACC,MAAM,qBAiDvB,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../../src/components/PaginationDots/variations/_size/base.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,0CAAQ,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../../../../src/components/PaginationDots/variations/_view/base.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,0CAAQ,CAAC"}
|